-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdalbitpetroleum.sql
3248 lines (3110 loc) · 979 KB
/
dalbitpetroleum.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.9.7
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jan 19, 2023 at 12:49 AM
-- Server version: 5.6.51-cll-lve
-- PHP Version: 7.4.30
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!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 */;
--
-- Database: `dalbitpetroleum`
--
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE `categories` (
`id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `title`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Dalbit Affiliates', '2021-12-05 19:15:01', '2021-12-05 19:15:01', NULL),
(2, 'Dalbit Trading', '2021-12-05 19:15:52', '2021-12-05 19:15:52', NULL),
(3, 'Dalbit Licensees', '2021-12-05 19:16:08', '2021-12-05 19:16:08', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `contacts`
--
CREATE TABLE `contacts` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`telephone_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `contacts`
--
INSERT INTO `contacts` (`id`, `name`, `email`, `telephone_number`, `message`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'VZnXgNlh', 'aidenhogunst543@gmail.com', '8786449078', 'sYHTGNVFKCtiJLl', '2022-02-12 01:40:57', '2022-02-12 01:40:57', NULL),
(2, 'yilpYIjfHQPScuOw', 'aidenhogunst543@gmail.com', '5684339889', 'XdfEophFsQzAJaP', '2022-02-12 01:41:03', '2022-02-12 01:41:03', NULL),
(3, 'Dianna Swafford', 'swafford.dianna@hotmail.com', '(03) 5365 7734', 'I called you 2 times. WHy didn\'t you pick up? I\'m horny.. Please call me.\r\n\r\nI\'m online. You can chat with me by clicking this link.\r\n\r\nhttps://sexlovers.club/', '2022-02-12 02:07:30', '2022-02-12 02:07:30', NULL),
(4, 'Login', 'elmira.razuvaeva.81@list.ru', '87419382719', 'Мы вынуждены принять меры \r\n \r\nПодробнее по ссылке: https://forms.yandex.ru/u/610fe0c0a7a9d9645645/success/52416?AAAAAdalbitpetroleum.comBBBBB', '2022-02-12 05:46:40', '2022-02-12 05:46:40', NULL),
(5, 'vak', 'k3h06ulo@icloud.com', '81883446584', 'Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/y8jwkmmr', '2022-02-12 16:01:42', '2022-02-12 16:01:42', NULL),
(6, 'Bismark Kipngetich', 'kipbismark09@gmail.com', '+254797373080', 'I am writing to apply for the job,due to my online search I found that you are the company of my dream,in the field of geoscience.\r\n I study on diploma petroleum geoscience \r\nat Eldoret National Polytechnic and I get a grade of pass,I request for the opportunity so that I can acquire more skill as I have study on the theory part.\r\n Should you be interested in my qualification, please do not hesitate to contact me 0797373080', '2022-02-12 23:18:52', '2022-02-12 23:18:52', NULL),
(7, 'Bismark Kipngetich', 'kipbismark09@gmail.com', NULL, 'I am writing to apply for the job,due to my online search I found that you are the company of my dream,in the field of geoscience.\r\n I study on diploma petroleum geoscience \r\nat Eldoret National Polytechnic and I get a grade of pass,I request for the opportunity so that I can acquire more skill as I have study on the theory part.\r\n Should you be interested in my qualification, please do not hesitate to contact me 0797373080', '2022-02-12 23:19:16', '2022-02-12 23:19:16', NULL),
(8, 'Bismark Kipngetich', 'kipbismark09@gmail.com', '+254797373080', 'I am writing to apply for the job,due to my online search I found that you are the company of my dream,in the field of geoscience.\r\n I study on diploma petroleum geoscience \r\nat Eldoret National Polytechnic and I get a grade of pass,I request for the opportunity so that I can acquire more skill as I have study on the theory part.\r\n Should you be interested in my qualification, please do not hesitate to contact me 0797373080', '2022-02-12 23:19:43', '2022-02-12 23:19:43', NULL),
(9, 'Bismark Kipngetich', 'kipbismark09@gmail.com', '+254797373080', 'I am writing to apply for the job,due to my online search I found that you are the company of my dream,in the field of geoscience.\r\n I study on diploma petroleum geoscience \r\nat Eldoret National Polytechnic and I get a grade of pass,I request for the opportunity so that I can acquire more skill as I have study on the theory part.\r\n Should you be interested in my qualification, please do not hesitate to contact me 0797373080', '2022-02-12 23:21:52', '2022-02-12 23:21:52', NULL),
(10, 'Karen Keene', 'karen.keene@outlook.com', '69 613 72 29', 'The world\'s best fantasy sex game is here.\r\n\r\nYou will never find such an amazing sex game anywhere.\r\n\r\nClick here to start playing.\r\n\r\nhttps://sexlovers.club/game/play', '2022-02-14 02:19:44', '2022-02-14 02:19:44', NULL),
(11, 'Horny Shriya', 'tudor.eugenio@googlemail.com', '9043558989', 'I called you 2 times yesterday. I\'m very horny. I need a guy to satisfy me. \r\n\r\nCall me by clicking the link below.\r\n\r\nhttps://sexlovers.club/', '2022-02-15 03:32:30', '2022-02-15 03:32:30', NULL),
(12, 'vak', 'v693ni4w@icloud.com', '85992259836', 'Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/ydy2m2b3', '2022-02-15 05:11:02', '2022-02-15 05:11:02', NULL),
(13, 'Login5627', 'b.kosterina@inbox.ru', '85721728378', 'Aктивaция счета \r\nПодробнее по ссылке: https://forms.yandex.ru/u/610fe0c0a7a9d9645645/success/08441?AAAAAdalbitpetroleum.comBBBBB', '2022-02-15 23:53:02', '2022-02-15 23:53:02', NULL),
(14, 'Lynette Wyselaskie', 'lynette.wyselaskie43@hotmail.com', '(03) 5327 1142', 'I called you 2 times. WHy didn\'t you pick up? I\'m horny.. Please call me.\r\n\r\nI\'m online. You can chat with me by clicking this link.\r\n\r\nhttps://sexlovers.club/', '2022-02-16 04:03:30', '2022-02-16 04:03:30', NULL),
(15, 'bs.eh5@freeallapp.com', '4mfarhani42@suppm.site', '04.31.24.40.34', 'Submit your site to over 1000 directories all with one click here> https://1mdr.short.gy/submityoursite', '2022-02-16 23:37:44', '2022-02-16 23:37:44', NULL),
(16, 'Jere D\'Albertis', 'dalbertis.jere@googlemail.com', '0351 3554794', 'I called you 2 times. WHy didn\'t you pick up? I\'m horny.. Please call me.\r\n\r\nI\'m online. You can chat with me by clicking this link.\r\n\r\nhttps://sexlovers.club/', '2022-02-17 11:40:12', '2022-02-17 11:40:12', NULL),
(17, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hi, Eric here with a quick thought about your website dalbitpetroleum.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-02-17 23:53:52', '2022-02-17 23:53:52', NULL),
(18, 'Olivia Jackson', 'olivia@backlinkpro.club', '081 937 56 53', 'Hi, \r\n\r\nWe\'re wondering if you\'d be interested in a \'dofollow\' backlink to dalbitpetroleum.com from our website that has a Moz Domain Authority of 50?\r\n\r\nWe charge just $30 (USD) to be paid via Paypal, card, or Payoneer. This is a one-time fee, so there are no extra charges and the link is permanent.\r\n\r\nIf you\'d like to know more about the site, please reply to this email and we can discuss further.\r\n\r\nKind Regards,\r\nOlivia', '2022-02-19 01:01:22', '2022-02-19 01:01:22', NULL),
(19, 'RcIXPEWDsUjbMod', 'gerardogemma82@gmail.com', '4512341114', 'UMNviGbfgLR', '2022-02-20 12:58:45', '2022-02-20 12:58:45', NULL),
(20, 'ZfnJeuBd', 'gerardogemma82@gmail.com', '9373350866', 'gMyNGisbq', '2022-02-20 12:58:52', '2022-02-20 12:58:52', NULL),
(21, 'Leif Humffray', 'leif.humffray@gmail.com', NULL, 'If you ever need more social audience for dalbitpetroleum.com, we can run Facebook Traffic campaigns with this service: https://www.seo-treff.de/product/country-targeted-traffic/', '2022-02-21 00:07:35', '2022-02-21 00:07:35', NULL),
(22, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hi, my name is Eric and I’m betting you’d like your website dalbitpetroleum.com to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at dalbitpetroleum.com.\r\n\r\nTalk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-02-22 02:25:55', '2022-02-22 02:25:55', NULL),
(23, '4mfarhani42@suppm.site', '4mfarhani42@suppm.site', '617-599-5179', 'You can submit your site to over 1000 different business/advertising directories for free with one click https://1mdr.short.gy/submityoursite', '2022-02-23 12:36:35', '2022-02-23 12:36:35', NULL),
(24, 'Van Holliman', 'van.holliman@gmail.com', '06-61161670', 'I called you 2 times. WHy didn\'t you pick up? I\'m horny.. Please call me.\r\n\r\nI\'m online. You can chat with me by clicking this link.\r\n\r\nhttps://sexlovers.club/', '2022-02-24 07:18:50', '2022-02-24 07:18:50', NULL),
(25, 'Mario', 'mario.macandie@hotmail.com', '077 1999 8211', 'New Multifunction Anti-theft Waterproof Sling Bag\r\n\r\nThe best ever SUPER Sling Bag: Drop-proof/Anti-theft/Scratch-resistant/USB Charging\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: fashiondaily.online\r\n\r\nBest regards, \r\n\r\nMario\r\nDalbit Petroleum — Fuel Supply & Distribution', '2022-02-24 16:55:21', '2022-02-24 16:55:21', NULL),
(26, 'SonyaMap', 'woodthighgire1988@gmail.com', '85939552373', 'Hey, I\'m bored! My contacts: https://buktrk.com/click?o=6&a=1036', '2022-02-24 20:48:29', '2022-02-24 20:48:29', NULL),
(27, 'Ranker SEO', 'rhoads.declan@yahoo.com', '0457-6695581', 'Hello, \r\n\r\nGreetings from Ranker SEO.\r\n\r\nAre you looking for a genuine SEO service to rank your website top on Google? Are you cheated by fake SEO companies? \r\n\r\nYou have found an affordable legitimate SEO agency to rank your website.\r\n\r\nWe have ranked 100s of websites such as blogs, shopify stores, ecommerce websites, adult websites, saas websites, etc. You can reach more customers by utilizing our backlinks.\r\n\r\nFor real proof, you can visit our website and check out. Contact us for more details.\r\n\r\nOur Skype ID: support@ranker.one\r\nOur Website: https://www.ranker.one\r\n\r\nThanks & Regards\r\nRanker SEO\r\n\r\nIf you don\'t like to receive our messages, you can unsubscribe by click here https://www.ranker.one/unsubscribe/?site=dalbitpetroleum.com', '2022-02-26 04:02:53', '2022-02-26 04:02:53', NULL),
(28, 'asdasda', 'asdasdas@dasdasdas.asdas', '123123123123123', '12312312312312312', '2022-02-26 16:31:58', '2022-02-26 16:31:58', NULL),
(29, 'KaymotdDracy', 'bruk.epetweson543@gmail.com', '88773637261', 'Hi. My new naked video, I enlarged my tits and ass, as you asked https://datingtorrid.top/robot/?u=wh5kd06&o=qxpp80k', '2022-02-27 19:33:29', '2022-02-27 19:33:29', NULL),
(30, 'Ranker SEO', 'jocelyn.musselman97@gmail.com', '09931 77 49 63', 'Hello, Greetings from Ranker SEO.\r\n\r\nAre you looking for a genuine SEO service to rank your website top on Google? Are you cheated by fake SEO companies? \r\n\r\nYou have found an affordable legitimate SEO agency to rank your website.\r\n\r\nWe have ranked 100s of websites such as blogs, shopify stores, ecommerce websites, adult websites, saas websites, etc. You can reach more customers by utilizing our backlinks.\r\n\r\nFor real proof, you can visit our website and check out. Contact us for more details.\r\n\r\nOur Skype ID: live:.cid.b33532543daf017b\r\nOur Website: https://www.rankerseo.one\r\n\r\nThanks & Regards\r\nRanker SEO', '2022-03-01 20:18:03', '2022-03-01 20:18:03', NULL),
(31, 'hregina.mugue@fwhyhs.com', 'bs.eh5@freeallapp.com', '06-50749914', 'Free submission of your new website to over 1000 business directories here https://1mdr.short.gy/submityoursite', '2022-03-02 01:02:25', '2022-03-02 01:02:25', NULL),
(32, 'Ricardo', 'mcmichael.ricardo@gmail.com', '078 8983 9411', 'Hey there \r\n \r\nCAREDOGBEST™ - Personalized Dog Harness. All sizes from XS to XXL. Easy ON/OFF in just 2 seconds. LIFETIME WARRANTY.\r\n\r\nClick here: https://caredogbest.com\r\n \r\nMany Thanks, \r\n \r\nRicardo\r\nDalbit Petroleum — Fuel Supply & Distribution', '2022-03-02 11:25:13', '2022-03-02 11:25:13', NULL),
(33, 'vak', 'fxq4646i@gmail.com', '82598216635', 'Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/y879mo3d', '2022-03-04 05:41:44', '2022-03-04 05:41:44', NULL),
(34, 'xlpweGZImPtCWX', 'bijoykhanshhx@gmail.com', '4983885328', 'viroUphAl', '2022-03-04 09:10:12', '2022-03-04 09:10:12', NULL),
(35, 'MFGSiyAPYLk', 'bijoykhanshhx@gmail.com', '4294092822', 'UbHkunhwVmWKO', '2022-03-04 09:10:39', '2022-03-04 09:10:39', NULL),
(36, 'eMzcUnCyH', 'bijoykhanshhx@gmail.com', '6952247921', 'iMJquZBtAKF', '2022-03-04 09:11:01', '2022-03-04 09:11:01', NULL),
(37, 'GxkwnlbhTJIH', 'bijoykhanshhx@gmail.com', '6007437503', 'KeQrLUhiTmD', '2022-03-04 09:11:08', '2022-03-04 09:11:08', NULL),
(38, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hi, Eric here with a quick thought about your website dalbitpetroleum.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-03-05 02:28:44', '2022-03-05 02:28:44', NULL),
(39, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with dalbitpetroleum.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out dalbitpetroleum.com.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-03-05 07:44:40', '2022-03-05 07:44:40', NULL),
(40, 'nsamuelvale101@yaungshop.com', 'umonircio@joinm3.com', '0318 7380384', 'Add your site to 1000 business directories with one click here-> https://bit.ly/submityoursite1000', '2022-03-05 10:10:05', '2022-03-05 10:10:05', NULL),
(41, 'vak', 'mf2qhxov@icloud.com', '84632857226', 'Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/ybmsfjnw', '2022-03-07 05:25:57', '2022-03-07 05:25:57', NULL),
(42, 'Ramgopal Malav', 'ramgopalmalav94@gmail.com', '8158292191', 'Dear Sir,\r\nI am RamGopal Malav,Currently I am working in Sterling Oil Exploration Energy Production Corporation Limited Nigeria in Crude Operations,If any vacancy available in Oil and Gas please let me know.', '2022-03-07 11:17:54', '2022-03-07 11:17:54', NULL),
(43, 'Ramgopal Malav', 'ramgopalmalav94@gmail.com', '8158292191', 'Dear Sir,\r\nI am RamGopal Malav,Currently I am working in Sterling Oil Exploration Energy Production Corporation Limited Nigeria in Crude Operations,If any vacancy available in Oil and Gas please let me know.', '2022-03-07 11:18:01', '2022-03-07 11:18:01', NULL),
(44, 'Nancy Osullivan', 'nancy@datalist.biz', '(03) 9256 0130', 'Hello,\r\n\r\nIt is with sad regret to inform you that DataList.biz is shutting down. We have made all our databases available for you at a one-time fee.\r\n\r\nYou can visit us on DataList.biz\r\n\r\nRegards.\r\nNancy', '2022-03-10 01:36:25', '2022-03-10 01:36:25', NULL),
(45, 'nsamuelvale101@yaungshop.com', '3chawki.berrada@onlyu.link', '67 174 62 34', 'You can submit your site to over 1000 different business/advertising directories for free with one click https://1mdr.short.gy/add-your-website', '2022-03-10 14:17:04', '2022-03-10 14:17:04', NULL),
(46, 'vak', 'qsvjo3bl@gmail.com', '84335572744', 'Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/yacu3wzd', '2022-03-10 15:02:41', '2022-03-10 15:02:41', NULL),
(47, 'Fidelia', 'fidelia.swinford@hotmail.com', '310-896-5706', 'Hey\r\n\r\nOur Medical-Grade Toenail Clippers is the safest and especially recommended for those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, thickened nails etc..\r\n\r\nGet yours: thepodiatrist.store\r\n\r\nBest Wishes,\r\n\r\nFidelia', '2022-03-10 21:50:53', '2022-03-10 21:50:53', NULL),
(48, 'bBvFrEULTuaP', 'leek05089@gmail.com', '5559631873', 'ASqocGJPB', '2022-03-11 00:13:21', '2022-03-11 00:13:21', NULL),
(49, 'shzVBfTNturYIL', 'leek05089@gmail.com', '4273789066', 'JBLZmTIVRYqtew', '2022-03-11 00:13:32', '2022-03-11 00:13:32', NULL),
(50, 'nyloBwqkzTvI', 'leek05089@gmail.com', '7230023528', 'GWNUwglkqDjMPuH', '2022-03-11 00:14:17', '2022-03-11 00:14:17', NULL),
(51, 'gVnZswTBICdzy', 'leek05089@gmail.com', '9163765283', 'RdgfYNnpwit', '2022-03-11 00:14:28', '2022-03-11 00:14:28', NULL),
(52, 'Dana', 'boren.dana36@gmail.com', '0660 906 17 37', 'Hello there\r\n\r\nOur Medical-Grade Toenail Clippers is the safest and especially recommended for those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, thickened nails etc..\r\n\r\nGet yours: thepodiatrist.store\r\n\r\nThank You,\r\n\r\nDana', '2022-03-11 21:42:15', '2022-03-11 21:42:15', NULL),
(53, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found dalbitpetroleum.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-03-13 04:24:32', '2022-03-13 04:24:32', NULL),
(54, 'vak', '48il4r8i@yahoo.com', '82398858488', 'Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/y7gpf9gu', '2022-03-14 13:46:49', '2022-03-14 13:46:49', NULL),
(55, 'Cortez', 'info@dalbitpetroleum.com', '023-5188793', 'Hello there \r\n\r\nBody Revolution - Medico Postura™ Body Posture Corrector\r\n\r\nImprove Your Posture INSTANTLY!\r\n\r\nGet it while it\'s still 60% OFF! FREE Worldwide Shipping!\r\n\r\nGet yours here: https://medicopostura.com\r\n\r\nTo your success, \r\n \r\nCortez\r\nDalbit Petroleum — Fuel Supply & Distribution', '2022-03-15 02:22:49', '2022-03-15 02:22:49', NULL),
(56, 'NataliaRit', 'nataliaRit@aol.com', '+380 2620389552', 'Ηеllо аll, guуѕ! Ι know, my mеѕѕage may bе too ѕресifiс,\r\nВut my sіster fоund nіcе mаn һere and tһеу married, ѕo һоw about mе?ǃ :)\r\nI аm 23 уеarѕ old, Νаtаlіa, frоm Ukraіnе, I knоw Еnglіѕh and Gеrmаn languagеѕ alѕо\r\nAnd... I һavе spесіfiс dіsease, namеd nymphоmаnіa. Wһо knоw wһat іѕ thіs, cаn understаnd me (bеttеr to say it іmmеdiatеlу)\r\nΑh yеѕ, Ι cооk vеrу tаstуǃ аnd Ι love not оnlу cоok ;))\r\nIm reаl gіrl, not рrоѕtіtutе, аnd looking for ѕerіouѕ аnd hоt rеlationshір...\r\nΑnywaу, уou cаn find mу prоfile һеre: #lіnk', '2022-03-15 12:46:34', '2022-03-15 12:46:34', NULL),
(57, 'bchakka111975s@ronell.me', 'umonircio@joinm3.com', '0486 81 95 02', 'Submit your site to over 1000 advertising websites for free now https://1mdr.short.gy/submit-your-site', '2022-03-15 20:48:32', '2022-03-15 20:48:32', NULL),
(58, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with dalbitpetroleum.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out dalbitpetroleum.com.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-03-17 19:17:10', '2022-03-17 19:17:10', NULL),
(59, 'Rusty Stallcup', 'rusty@datalist.biz', '0386 3501944', 'Hello,\r\n\r\nIt is with sad regret to inform you that DataList.biz is shutting down. We have made all our databases available for you at a one-time fee.\r\n\r\nYou can visit us on DataList.biz\r\n\r\nRegards.\r\nRusty', '2022-03-17 20:05:20', '2022-03-17 20:05:20', NULL),
(60, 'Gilbertscups', 'rabchat213@yandex.ru', '83769343385', 'Best Online Сasinos \r\nSlоts, Frееspin, Рoker, and many games. \r\nBig bonus to everyone! \r\n \r\nhttps://tinyurl.com/22eh8bne', '2022-03-19 21:40:08', '2022-03-19 21:40:08', NULL),
(61, 'Login3345', 'ilya.grumkov@list.ru', '83281529851', 'Выплата на карту № 2992 **** **** **** ЗАВЕРШЕНА \r\n \r\nПодробнее по ссылке: https://forms.yandex.ru/u/jfsz2f687d1pb48rfks4/success/?AAAAAdalbitpetroleum.comBBBBB', '2022-03-21 11:25:45', '2022-03-21 11:25:45', NULL),
(62, 'vnatasha.sunaina4@tahugejrot.buzz', 'roussama.ararouci@ldwdkj.com', '0472 40 55 41', 'Congrats on your new site, get it listed here for free and we\'ll start sending people to your site https://bit.ly/submityoursite1000', '2022-03-22 01:35:54', '2022-03-22 01:35:54', NULL),
(63, 'Steve -', 'info@reallygreatdigital.marketing', '555 555 1212', 'I was reading your site at dalbitpetroleum.com...\r\n\r\nI thought your website was very beautiful (nice job!) but I noticed that you weren\'t ranking well for some or all of your keywords. Because you aren\'t ranking for all of your keywords you are missing out on business and opportunities because peopel can\'t find you when they type in those keywords into Google.\r\n\r\nI\'m part of a team of leading digital marketing experts with over 25 years experience. Combined, we have hundreds of years of experience. We have more experience than almost anyone in the business and have worked with hundreds of major companies, universities, celebrities, non-profits, and mom and pop businesses, including Fortune 50 and Fortune 500 corporations. We are looking for businesses, organizations, and people who want to improve their Google ranking so that more of whoever/whatever you want to find you, can find you.\r\n\r\nIt\'s not enough in 2022 to just rank for your name or company name. To get new customers and for people to find your website you need to rank for the keywords in your niche, that customers are typing into Google every second. In fact, in 2022 there are over 99,000 searches every second! And if you are not ranked then you are losing this business, money, and opportunity to your competitors.\r\n\r\n\r\nForbes Magazine states that:\r\n\r\n***91% of online adults use search engines to find information on the web.\r\n\r\n***65 percent of people see online search as the most trusted source of information about people and companies. That’s a higher level of trust than any other online or offline source.\r\n\r\n***Nearly 50% of US adults who Google themselves say the results aren’t positive.\r\n\r\n***93% of searchers never go past the first page, instead using only the first 10 search results to form their impression.\r\n\r\n\r\nJust read these articles in the Wall Street Journal to see how important Google ranking is, especially after the pandemic.\r\nhttps://www.wsj.com/articles/how-covid-19-supercharged-the-advertising-triopoly-of-google-facebook-and-amazon-11616163738\r\nhttps://www.wsj.com/articles/SB117856222924394753\r\n\r\nAs you probably know, it\'s become a very competitive world in the Google ranking and digital marketing arena, but we are here to help you stand above the rest and achieve your website goals. We have more experience than nearly anyone out there so we can help you defeat your competitors and get the success you deserve.\r\n\r\nSo, if you are serious about your online presence, and why wouldn\'t you be if you went to all the work to create a website, and want to rank higher I can offer you a free ranking review of your website to go over the mistakes and errors and omissions we saw when visiting your site that prevents you from ranking well in Google. Then, just to prove ourselves to you, we will rank your Facebook page on the 1st page of Google, for a keyword of our choosing, for absolutely free. Then, after we have proved ourselves to you with an easy keyword, you can decide if you want to work with us for your actual keywords. We will also help you select better keywords so you aren\'t trying to rank for impossible keywords.\r\n\r\nWe have generated millions for our customers over the years and are only looking for those who are serious and looking to compete and succeed right now with their online presence and want to rank higher and are ready to get started today. We only have a limited number of new customer spots, so if you are not serious about ranking higher and earning more then you can remove your URLs from our system at https://unsubscribeblockade.com/ (Only enter your website URL/link since we do not send emails.) But if you are serious, keep reading.\r\n\r\nWe succeed by making you succeed.\r\n\r\nJust hit reply, or contact us via email at info@reallygreatdigital.marketing, or fill out the form on our website at https://reallygreatdigital.marketing to take advantage of this valuable free, no obligation, SEO ranking review to go over how to make your website rank better in Google and rank your Facebook page for free.', '2022-03-22 04:43:03', '2022-03-22 04:43:03', NULL),
(64, 'Rupesh Kumar Sharma', 'rupesh19772003@yahoo.co.in', '09998013159', 'Dear Sir,\r\n\r\nGreetings,\r\n\r\nI had received a job offer from this overseas job consultant in name of Your Company,\r\n\r\nPlease verify is it real or fake.\r\n\r\nPlease see the trail mail attached. \r\n\r\n Regards, \r\n Rupesh Kumar Sharma\r\n Surat-395009,\r\n Gujarat.\r\n INDIA. \r\n Mob.: +91 9998013159\r\n\r\n\r\n\r\nHide original message\r\n----- Forwarded message -----\r\nFrom: ocean khurana <ocean.elexesoverseas@gmail.com>\r\nTo: \"rupesh19772003@yahoo.co.in\" <rupesh19772003@yahoo.co.in>\r\nSent: Tuesday, 22 March, 2022, 02:12:49 pm IST\r\nSubject: SHORTLISTED FOR TANZANIA\r\n\r\nELEXES OVERSEAS\r\n\r\nLOCATION - Indore, Madhya Pradesh\r\n\r\nWe are pleased to inform you that we would like to offer you the [QA/QC ENGINEER] position. We believe your past experience and strong specific skills will be an asset to our company.\r\n\r\nWEB SITE - https://www.elexesoverseas.com/\r\n\r\nABOUT COMPANY\r\n\r\nEstablished in 2002, Dalbit supplies and distributes petroleum products and services across East, Central and Southern Africa.\r\n\r\n\r\nLOCATION - TANZANIA\r\n\r\nWEB SITE - www.dalbitpetroleum.com\r\n\r\n\r\n\r\n\r\nSALARY PACKAGE OFFER - 2000 US Dollar- 6000 US Dollar (depends on your interview and experience. Rate shall be paid for scheduled work days in which associates perform work.\r\n\r\nfirst you forward the all required documents on my mail id and after your documents verification you get a call from our side for the next procedure.\r\n\r\nRequired Documents are mentioned below:\r\n\r\nv Updated CV\r\n\r\nv Academic Certificates (10th, 12th, \r\nGraduation/Professional).\r\n\r\nv Passport Scan Copy\r\n\r\nv Experience Letter\r\n\r\nv Offer letter of previous company\r\n\r\nv Salary Slips\r\n\r\n \r\n\r\nPlease respond to this email to let us know if you would like to accept the position and all the process about this job.\r\n\r\nI look forward to hearing from you.\r\n\r\nOCEAN KHURANA\r\nweb-mail:- elexesoverseas.com\r\ncontact No.:- 8699968228\r\nE-mail:- info@elexesoverseas.com', '2022-03-22 19:11:50', '2022-03-22 19:11:50', NULL),
(65, 'Rupesh Kumar Sharma', 'rupesh19772003@yahoo.co.in', '09998013159', 'Dear Sir,\r\n\r\nGreetings,\r\n\r\nI had received a job offer from this overseas job consultant in name of Your Company,\r\n\r\nPlease verify is it real or fake.\r\n\r\nPlease see the trail mail attached. \r\n\r\n Regards, \r\n Rupesh Kumar Sharma\r\n Surat-395009,\r\n Gujarat.\r\n INDIA. \r\n Mob.: +91 9998013159\r\n\r\n\r\n\r\nHide original message\r\n----- Forwarded message -----\r\nFrom: ocean khurana <ocean.elexesoverseas@gmail.com>\r\nTo: \"rupesh19772003@yahoo.co.in\" <rupesh19772003@yahoo.co.in>\r\nSent: Tuesday, 22 March, 2022, 02:12:49 pm IST\r\nSubject: SHORTLISTED FOR TANZANIA\r\n\r\nELEXES OVERSEAS\r\n\r\nLOCATION - Indore, Madhya Pradesh\r\n\r\nWe are pleased to inform you that we would like to offer you the [QA/QC ENGINEER] position. We believe your past experience and strong specific skills will be an asset to our company.\r\n\r\nWEB SITE - https://www.elexesoverseas.com/\r\n\r\nABOUT COMPANY\r\n\r\nEstablished in 2002, Dalbit supplies and distributes petroleum products and services across East, Central and Southern Africa.\r\n\r\n\r\nLOCATION - TANZANIA\r\n\r\nWEB SITE - www.dalbitpetroleum.com\r\n\r\n\r\n\r\n\r\nSALARY PACKAGE OFFER - 2000 US Dollar- 6000 US Dollar (depends on your interview and experience. Rate shall be paid for scheduled work days in which associates perform work.\r\n\r\nfirst you forward the all required documents on my mail id and after your documents verification you get a call from our side for the next procedure.\r\n\r\nRequired Documents are mentioned below:\r\n\r\nv Updated CV\r\n\r\nv Academic Certificates (10th, 12th, \r\nGraduation/Professional).\r\n\r\nv Passport Scan Copy\r\n\r\nv Experience Letter\r\n\r\nv Offer letter of previous company\r\n\r\nv Salary Slips\r\n\r\n \r\n\r\nPlease respond to this email to let us know if you would like to accept the position and all the process about this job.\r\n\r\nI look forward to hearing from you.\r\n\r\nOCEAN KHURANA\r\nweb-mail:- elexesoverseas.com\r\ncontact No.:- 8699968228\r\nE-mail:- info@elexesoverseas.com', '2022-03-22 19:12:05', '2022-03-22 19:12:05', NULL),
(66, 'Rupesh Kumar Sharma', 'rupesh19772003@yahoo.co.in', '09998013159', 'Dear Sir,\r\n\r\nGreetings,\r\n\r\nI had received a job offer from this overseas job consultant in name of Your Company,\r\n\r\nPlease verify is it real or fake.\r\n\r\nPlease see the trail mail attached. \r\n\r\n Regards, \r\n Rupesh Kumar Sharma\r\n Surat-395009,\r\n Gujarat.\r\n INDIA. \r\n Mob.: +91 9998013159\r\n\r\n\r\n\r\nHide original message\r\n----- Forwarded message -----\r\nFrom: ocean khurana <ocean.elexesoverseas@gmail.com>\r\nTo: \"rupesh19772003@yahoo.co.in\" <rupesh19772003@yahoo.co.in>\r\nSent: Tuesday, 22 March, 2022, 02:12:49 pm IST\r\nSubject: SHORTLISTED FOR TANZANIA\r\n\r\nELEXES OVERSEAS\r\n\r\nLOCATION - Indore, Madhya Pradesh\r\n\r\nWe are pleased to inform you that we would like to offer you the [QA/QC ENGINEER] position. We believe your past experience and strong specific skills will be an asset to our company.\r\n\r\nWEB SITE - https://www.elexesoverseas.com/\r\n\r\nABOUT COMPANY\r\n\r\nEstablished in 2002, Dalbit supplies and distributes petroleum products and services across East, Central and Southern Africa.\r\n\r\n\r\nLOCATION - TANZANIA\r\n\r\nWEB SITE - www.dalbitpetroleum.com\r\n\r\n\r\n\r\n\r\nSALARY PACKAGE OFFER - 2000 US Dollar- 6000 US Dollar (depends on your interview and experience. Rate shall be paid for scheduled work days in which associates perform work.\r\n\r\nfirst you forward the all required documents on my mail id and after your documents verification you get a call from our side for the next procedure.\r\n\r\nRequired Documents are mentioned below:\r\n\r\nv Updated CV\r\n\r\nv Academic Certificates (10th, 12th, \r\nGraduation/Professional).\r\n\r\nv Passport Scan Copy\r\n\r\nv Experience Letter\r\n\r\nv Offer letter of previous company\r\n\r\nv Salary Slips\r\n\r\n \r\n\r\nPlease respond to this email to let us know if you would like to accept the position and all the process about this job.\r\n\r\nI look forward to hearing from you.\r\n\r\nOCEAN KHURANA\r\nweb-mail:- elexesoverseas.com\r\ncontact No.:- 8699968228\r\nE-mail:- info@elexesoverseas.com', '2022-03-22 19:12:24', '2022-03-22 19:12:24', NULL),
(67, 'Jessie Montenegro', 'jessie', '+1 304-873-4360', 'It is with sad regret to inform you DataList.biz is shutting down on 25 March 2022. \r\n\r\nWe have made available databases per country for all companies available.. \r\n\r\nYou can view our samples and download databases instantly on our website DataList.biz', '2022-03-23 00:55:38', '2022-03-23 00:55:38', NULL),
(68, 'MichaelPlefe', 'chubenkodaniiaz+134g@mail.ru', '82724637783', 'dalbitpetroleum.com uriefeodeighrkfldjiijofofjmvkdnsisdiehiusfiajfhweiuioidjsjsbfiadjasifaijdfifijsaaiwghifadja', '2022-03-23 05:56:16', '2022-03-23 05:56:16', NULL),
(69, 'vak', 'ismo2zwv@hotmail.com', '86862357147', 'Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/y9nshbbj', '2022-03-23 08:27:22', '2022-03-23 08:27:22', NULL),
(70, 'Reta Kemper', 'reta', '+1 304-873-4360', 'It is with sad regret to inform you DataList.biz is shutting down on 25 March 2022. \r\n\r\nWe have made available databases per country for all companies available.. \r\n\r\nYou can view our samples and download databases instantly on our website DataList.biz', '2022-03-26 02:01:02', '2022-03-26 02:01:02', NULL),
(71, 'vak', '9dlm0qs1@gmail.com', '84766272575', 'Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/y9uze7ck', '2022-03-26 11:41:10', '2022-03-26 11:41:10', NULL),
(72, 'Steve -', 'info@reallygreatdigital.marketing', '555 555 1212', 'I was browsing your site at dalbitpetroleum.com and really liked it!\r\nI am a local Google ranking and lead generation expert\r\nand wondered if you\'d like a free ranking review\r\nto go over some ways you could improve\r\nyour site to get more leads, traffic, customers,\r\nor whatever it is you are trying to get from your site?\r\n\r\nIf you\'d like this 100% free, no obligation website ranking\r\nreview just reply with your best phone number \r\nand the best time to call.\r\n\r\nThanks so much.', '2022-03-26 16:56:48', '2022-03-26 16:56:48', NULL),
(73, '5hoss@gmailup.com', 'umonircio@joinm3.com', '613-724-0491', 'Submit your site to over 1000 directories all with one click here> https://bit.ly/submityoursite1000', '2022-03-29 13:51:45', '2022-03-29 13:51:45', NULL),
(74, 'dalahicu@mailinator.com', 'waluwyno@mailinator.com', '+1 (244) 129-6604', 'Qui consequuntur atq', '2022-03-30 02:15:27', '2022-03-30 02:15:27', NULL),
(75, 'Sandeep Agarwal', 'ssrpharma@envipro.co.in', '+917977575732', 'Sir,\r\nOur patented formula based oil additive supplement ENVIPRO™️ enhances mileage upto 80% in petrol and 70% in diesel, clean injectors, increases Octane numbers & Cetane values. It increases engine life, power and pick up and reduces harmful emissions upto 98%.\r\n\r\nIt would be of mutual benefit if we could consider working together on a business solution and take your country forward in keeping the environment green & clean, as well as boost your nation’s health and economic stability.\r\n\r\nALL RESULTS ARE TESTED & PROVEN.\r\n\r\nYou may request us for a DEMO.\r\n\r\nPlease contact us on the mail id: ssrpharma@envipro.co.in\r\ncall on +91-7977575732\r\n Sandeep Agarwal', '2022-03-30 09:27:37', '2022-03-30 09:27:37', NULL),
(76, 'Sandeep Agarwal', 'ssrpharma@envipro.co.in', NULL, 'Sir,\r\nOur patented formula based oil additive supplement ENVIPRO™️ enhances mileage upto 80% in petrol and 70% in diesel, and reduces harmful emissions upto 98%.\r\n\r\nIt would be of mutual benefit if we could consider working together on a business solution and take your country forward in keeping the environment green & clean, as well as boost your nation’s health and economic stability.\r\n\r\nALL RESULTS ARE TESTED & PROVEN.\r\n\r\nYou may request us for a DEMO.\r\n\r\nPlease contact us on the mail id: ssrpharma@envipro.co.in\r\ncall on +91-7977575732\r\n Sandeep Agarwal', '2022-03-30 09:28:07', '2022-03-30 09:28:07', NULL),
(77, 'Sandeep Agarwal', 'ssrpharma@envipro.co.in', NULL, 'Sir,\r\nOFFERING (USA PATENTED) FUEL SUPPLEMENT FORMULA, INCREASE MILEAGE UPTO 80% & REDUCE POLLUTION UPTO 98 %.\r\n\r\nIt would be of mutual benefit if we could consider working together on a business solution and take your country forward in keeping the environment green & clean, as well as boost your nation’s health and economic stability.\r\n\r\nALL RESULTS ARE TESTED & PROVEN.\r\n\r\nYou may request us for a DEMO.\r\n\r\nPlease contact us on the mail id: ssrpharma@envipro.co.in\r\ncall on +91-7977575732\r\n Sandeep Agarwal', '2022-03-30 09:28:46', '2022-03-30 09:28:46', NULL),
(78, 'Sandeep Agarwal', 'ssrpharma@envipro.co.in', NULL, 'Sir,\r\nOFFERING (USA PATENTED) FUEL SUPPLEMENT FORMULA, INCREASE MILEAGE UPTO 80% & REDUCE POLLUTION UPTO 98 %.\r\n\r\nIt would be of mutual benefit if we could consider working together on a business solution and take your country forward in keeping the environment green & clean, as well as boost your nation’s health and economic stability.\r\n\r\nALL RESULTS ARE TESTED & PROVEN.\r\n\r\nYou may request us for a DEMO.', '2022-03-30 09:29:01', '2022-03-30 09:29:01', NULL),
(79, 'Sandeep Agarwal', 'ssrpharma@envipro.co.in', NULL, 'Sir,\r\nOFFERING (USA PATENTED) FUEL SUPPLEMENT FORMULA, INCREASE MILEAGE UPTO 80% & REDUCE POLLUTION UPTO 98 %.\r\n\r\nALL RESULTS ARE TESTED & PROVEN.\r\n\r\nYou may request us for a DEMO.', '2022-03-30 09:29:32', '2022-03-30 09:29:32', NULL),
(80, 'Sandeep Agarwal', 'ssrpharma@envipro.co.in', '+917977575732', 'Sir,\r\nOFFERING (USA PATENTED) FUEL SUPPLEMENT FORMULA, INCREASE MILEAGE UPTO 80% & REDUCE POLLUTION UPTO 98 %.\r\n\r\nALL RESULTS ARE TESTED & PROVEN.\r\n\r\nYou may request us for a DEMO.', '2022-03-30 09:30:13', '2022-03-30 09:30:13', NULL),
(81, 'Kellee Bunting', 'kellee@businessleads101.com', '032 740 89 18', 'It is with sad regret to inform you that BusinessLeads101.com is shutting down.\r\n\r\nWe have over 300 million records available for a one time fee of $149.\r\n\r\nPlease visit our website BusinessLeads101.com\r\n\r\nRegards,\r\nKellee', '2022-03-31 03:32:42', '2022-03-31 03:32:42', NULL),
(82, 'Tyreeken', 'm.rizziero@tin.it', '87845128326', 'SMM premium quality cheap and without intermediaries https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FccgQZt&sa=D&sntz=1&usg=AOvVaw07lL_kc7zZcksNSSYY3kMA', '2022-03-31 09:38:36', '2022-03-31 09:38:36', NULL),
(83, 'Ken P', 'kenp38491@aol.com', '+18149737130', 'Hey this is Ken. I lost your number but I remembered your site. Need you to contact me ASAP regarding that one issue you were having +18149737130 \r\nAtwCDWz8V3pBzRHs', '2022-04-01 08:12:23', '2022-04-01 08:12:23', NULL),
(84, 'Steven', 'maccarthy.steven79@googlemail.com', '(02) 4977 9015', 'Hey \r\n\r\nAre you Scrambling while opening Jars, Bottles, and Cans?\r\n\r\nThis Jar Opener Takes The Strain & Frustration Out Of Opening Jars & Bottles! Never Struggle with opening a jar again!\r\n\r\nClick Now & GET 50% OFF → https://kitchenopener.biz\r\n\r\nBest Wishes, \r\nSteven', '2022-04-01 16:08:56', '2022-04-01 16:08:56', NULL),
(85, 'vak', 'hul8240e@icloud.com', '86762886316', 'Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/y8d2nh5a', '2022-04-01 18:38:56', '2022-04-01 18:38:56', NULL);
INSERT INTO `contacts` (`id`, `name`, `email`, `telephone_number`, `message`, `created_at`, `updated_at`, `deleted_at`) VALUES
(86, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with dalbitpetroleum.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out dalbitpetroleum.com.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-01 22:22:58', '2022-04-01 22:22:58', NULL),
(87, 'Edgar Joris', 'edgar@starleads.org', '079 6325 2594', 'It is with sad regret to inform you that StarLeads.org is shutting down.\r\n\r\nWe have made available over 300 million records for $149.\r\n\r\nRegards,\r\nStarLeads.org', '2022-04-02 12:05:44', '2022-04-02 12:05:44', NULL),
(88, 'Syedahamed', 'syedjan1980@gmail.com', '+919942470577', 'Assalamu Alaikum Sir / Madam,\r\nMy name is Ahmed, plumbing Supervisor . I have received an offer letter from your Dalbit petroleum Fuelling Regional Growth. I have attached a copy of it in the mail. Let me know the true status of this.\r\nThanks,\r\nyours truly,\r\nSyed Ahamed,\r\nPlumbing Supervisor \r\nCon. Number : 00919942470577', '2022-04-02 20:58:16', '2022-04-02 20:58:16', NULL),
(89, 'Syedahamed', 'syedjan1980@gmail.com', '+919942470577', 'Assalamu Alaikum Sir / Madam,\r\nMy name is Ahmed, plumbing Supervisor . I have received an offer letter from your Dalbit petroleum Fuelling Regional Growth. I have attached a copy of it in the mail. Let me know the true status of this.\r\nThanks,\r\nyours truly,\r\nSyed Ahamed,\r\nPlumbing Supervisor \r\nCon. Number : 00919942470577', '2022-04-02 20:58:17', '2022-04-02 20:58:17', NULL),
(90, 'Syedahamed', 'syedjan1980@gmail.com', '+919942470577', 'Assalamu Alaikum Sir / Madam,\r\nMy name is Ahmed, plumbing Supervisor . I have received an offer letter from your Dalbit petroleum Fuelling Regional Growth. I have attached a copy of it in the mail. Let me know the true status of this.\r\nThanks,\r\nyours truly,\r\nSyed Ahamed,\r\nPlumbing Supervisor \r\nCon. Number : 00919942470577', '2022-04-02 20:58:34', '2022-04-02 20:58:34', NULL),
(91, 'Syedahamed', 'syedjan1980@gmail.com', '+919942470577', 'Assalamu Alaikum Sir / Madam,\r\nMy name is Ahmed, plumbing Supervisor . I have received an offer letter from your Dalbit petroleum Fuelling Regional Growth. I have attached a copy of it in the mail. Let me know the true status of this.\r\nThanks,\r\nyours truly,\r\nSyed Ahamed,\r\nPlumbing Supervisor', '2022-04-02 20:58:57', '2022-04-02 20:58:57', NULL),
(92, 'Syedahamed', 'syedjan1980@gmail.com', '+919942470577', 'Assalamu Alaikum Sir / Madam,\r\nMy name is Ahmed, plumbing Supervisor . I have received an offer letter from your Dalbit petroleum Fuelling Regional Growth. I have attached a copy of it in the mail. Let me know the true status of this.\r\nThanks,\r\nyours truly,\r\nSyed Ahamed,\r\nPlumbing Supervisor', '2022-04-02 20:58:58', '2022-04-02 20:58:58', NULL),
(93, 'Syedahamed', 'syedjan1980@gmail.com', '+919942470577', 'Assalamu Alaikum Sir / Madam,\r\nMy name is Ahmed, plumbing Supervisor . I have received an offer letter from your Dalbit petroleum Fuelling Regional Growth. I have attached a copy of it in the mail. Let me know the true status of this.\r\nThanks,\r\nyours truly,\r\nSyed Ahamed,', '2022-04-02 20:59:12', '2022-04-02 20:59:12', NULL),
(94, 'Syedahamed', 'syedjan1980@gmail.com', '+919942470577', 'Assalamu Alaikum Sir / Madam,\r\nMy name is Ahmed, plumbing Supervisor . I have received an offer letter from your Dalbit petroleum Fuelling Regional Growth. I have attached a copy of it in the mail. Let me know the true status of this.\r\nThanks,\r\nyours truly,', '2022-04-02 20:59:24', '2022-04-02 20:59:24', NULL),
(95, 'Syedahamed', 'syedjan1980@gmail.com', '+919942470577', 'Assalamu Alaikum Sir / Madam,\r\nMy name is Ahmed, plumbing Supervisor . I have received an offer letter from your Dalbit petroleum Fuelling Regional Growth. I have attached a copy of it in the mail. Let me know the true status of this.\r\nThanks,', '2022-04-02 20:59:35', '2022-04-02 20:59:35', NULL),
(96, 'Syedahamed', 'syedjan1980@gmail.com', '+919942470577', 'Assalamu Alaikum Sir / Madam,\r\nMy name is Ahmed, plumbing Supervisor . I have received an offer letter from your Dalbit petroleum Fuelling Regional Growth. I have attached a copy of it in the mail. Let me know the true status of this.', '2022-04-02 20:59:47', '2022-04-02 20:59:47', NULL),
(97, 'Colleen Burges', 'burges.colleen@outlook.com', '03431 47 67 67', 'I called you 2 times. Why didn\'t you pick up? I\'m horny.. Please call me.\r\n\r\nI\'m online. You can chat with me by clicking this link.\r\n\r\nhttps://telegra.ph/Chat-With-Me-04-02', '2022-04-03 01:13:07', '2022-04-03 01:13:07', NULL),
(98, 'AnthonyRen', 'andreimorozovskii@rambler.ru', '84862979918', 'Bеst оnlinе cаsino \r\nwith signup bоnus \r\nSlоts, Frееspin, Роker, and many gаmуs. \r\nget your bоnus right now \r\nhttps://tinyurl.com/2p8a8nv6', '2022-04-03 06:44:27', '2022-04-03 06:44:27', NULL),
(99, 'nsamuelvale101@yaungshop.com', 'jaouadhifarah0@bebekpenyet.buzz', '06-40317261', 'You can submit your site to over 1000 different business/advertising directories for free with one click https://bit.ly/submityoursite1000', '2022-04-03 18:19:15', '2022-04-03 18:19:15', NULL),
(100, 'Jessicabus', 'holidahon.mnt@gmail.com', '88178717322', 'Hey, hope you are well! I\'m sexy hot girl just want a guy or girl, I love sex. Look at me and your mind will be blown! http://x-tube.one', '2022-04-03 22:07:18', '2022-04-03 22:07:18', NULL),
(101, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'My name’s Eric and I just came across your website - dalbitpetroleum.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like dalbitpetroleum.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n \r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-04 09:07:28', '2022-04-04 09:07:28', NULL),
(102, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Cool website!\r\n\r\nMy name’s Eric, and I just found your site - dalbitpetroleum.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across dalbitpetroleum.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-05 02:07:54', '2022-04-05 02:07:54', NULL),
(103, 'SteveAvoix', 'isabellaaviles2@gmail.es', '86566694137', 'Make 1578 USDT per day in 17 days https://telegra.ph/More-than-1500-USDT-per-day-on-automated-cryptocurrency-trading-04-02-3?az4', '2022-04-05 14:23:48', '2022-04-05 14:23:48', NULL),
(104, 'JITHIN SREEKANTAN NAIR', 'jithinsreekantan@gmail.com', '9447646698', 'I got an interview call From DALPIT petroleum ltd Tanazania\r\nIs it true or fake\r\nCan you please reply', '2022-04-05 19:16:14', '2022-04-05 19:16:14', NULL),
(105, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hi, my name is Eric and I’m betting you’d like your website dalbitpetroleum.com to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at dalbitpetroleum.com.\r\n\r\nTalk With Web Visitor – CLICK HERE http://talkwithwebtraffic.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-07 23:07:12', '2022-04-07 23:07:12', NULL),
(106, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found dalbitpetroleum.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-08 14:48:10', '2022-04-08 14:48:10', NULL),
(107, 'Williamhic', 'shahrukh_akhter@yahoo.com', '88288698676', 'From $50,000,000 from Twitter https://telegra.ph/55-million-a-year-in-affiliate-marketing-with-twitter-04-07-4?axz2', '2022-04-08 18:50:51', '2022-04-08 18:50:51', NULL),
(108, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hello, my name’s Eric and I just ran across your website at dalbitpetroleum.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-10 10:43:41', '2022-04-10 10:43:41', NULL),
(109, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Cool website!\r\n\r\nMy name’s Eric, and I just found your site - dalbitpetroleum.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across dalbitpetroleum.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-10 12:59:00', '2022-04-10 12:59:00', NULL),
(110, 'Max', 'armitage.max@msn.com', '714-554-8951', 'New Multifunction Waterproof Backpack\r\n\r\nThe best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://thebackpack.sale\r\n\r\nBest Wishes, \r\n\r\nMax', '2022-04-10 21:38:12', '2022-04-10 21:38:12', NULL),
(111, 'Albertina Vaughn', 'albertina@bulletproofsmtp.org', '06262 19 65 56', 'Hello.\r\n\r\nWe are offering Bullet Proof SMTP servers that never get suspended. Email as much as you want.\r\n\r\nDMCA ignored, bulletproof locations, 100% uptime guaranteed, unlimited data transfer, and 24/7/365 support.\r\n\r\n100 Spots available. BulletProofSMTP.org', '2022-04-13 01:48:40', '2022-04-13 01:48:40', NULL),
(112, 'Simon Lawes', 'simon@bulletproofsmtp.org', '67 445 17 62', 'Hello.\r\n\r\nWe are offering Bullet Proof SMTP servers that never get suspended. Email as much as you want.\r\n\r\nDMCA ignored, bulletproof locations, 100% uptime guaranteed, unlimited data transfer, and 24/7/365 support.\r\n\r\n100 Spots available. BulletProofSMTP.org', '2022-04-13 11:53:06', '2022-04-13 11:53:06', NULL),
(113, 'Siddharth Mohanty', 'siddharthm99@gmail.com', '8135966767', 'I recieved offer letter want to know if it\'s legit', '2022-04-13 16:34:37', '2022-04-13 16:34:37', NULL),
(114, 'Siddharth Mohanty', 'siddharthm99@gmail.com', NULL, 'I recieved offer letter want to know if it\'s legit', '2022-04-13 16:34:47', '2022-04-13 16:34:47', NULL),
(115, 'yasir idris', 'yasir.arefat444@gmail.com', '+919852404328', 'Respected sir/madam\r\ni am yasir idris ,i beg to say that i have got offer letter form dalbit limited company ,i want to know that this offer letter is genuine or not ,and also i have mail tanzania mail id but no any got response.\r\nso i kindly request you to please give me right desicion like offer letter is genuine or not .\r\nThanks $ regards\r\nyasir idris\r\n+919852404328', '2022-04-13 21:49:18', '2022-04-13 21:49:18', NULL),
(116, 'yasir idris', 'yasir.arefat444@gmail.com', '+919852404328', 'Respected sir/madam\r\ni am yasir idris ,i beg to say that i have got offer letter form dalbit limited company ,i want to know that this offer letter is genuine or not ,and also i have mail tanzania mail id but no any got response.\r\nso i kindly request you to please give me right desicion like offer letter is genuine or not .\r\nThanks $ regards\r\nyasir idris\r\n+919852404328', '2022-04-13 21:49:24', '2022-04-13 21:49:24', NULL),
(117, 'yasir idris', 'yasir.arefat444@gmail.com', '+919852404328', 'Respected sir/madam\r\ni am yasir idris ,i beg to say that i have got offer letter form dalbit limited company ,i want to know that this offer letter is genuine or not ,and also i have mail tanzania mail id but no any got response.\r\nso i kindly request you to please give me right desicion like offer letter is genuine or not .\r\nThanks $ regards\r\nyasir idris\r\n+919852404328', '2022-04-13 21:49:24', '2022-04-13 21:49:24', NULL),
(118, 'yasir idris', 'yasir.arefat444@gmail.com', '+919852404328', 'Respected sir/madam\r\ni am yasir idris ,i beg to say that i have got offer letter form dalbit limited company ,i want to know that this offer letter is genuine or not ,and also i have mail tanzania mail id but no any got response.\r\nso i kindly request you to please give me right desicion like offer letter is genuine or not .\r\nThanks $ regards\r\nyasir idris\r\n+919852404328', '2022-04-13 21:49:37', '2022-04-13 21:49:37', NULL),
(119, 'yasir idris', 'yasir.arefat444@gmail.com', '+919852404328', 'Respected sir/madam\r\ni am yasir idris ,i beg to say that i have got offer letter form dalbit limited company ,i want to know that this offer letter is genuine or not ,and also i have mail tanzania mail id but no any got response.\r\nso i kindly request you to please give me right desicion like offer letter is genuine or not .\r\nThanks $ regards\r\nyasir idris\r\n+919852404328', '2022-04-13 21:50:11', '2022-04-13 21:50:11', NULL),
(120, 'yasir idris', 'yasir.arefat444@gmail.com', '+919852404328', 'Respected sir/madam\r\ni am yasir idris ,i beg to say that i have got offer letter form dalbit limited company ,i want to know that this offer letter is genuine or not ,and also i have mail tanzania mail id but no any got response.\r\nso i kindly request you to please give me right desicion like offer letter is genuine or not .\r\nThanks $ regards\r\nyasir idris\r\n+919852404328', '2022-04-13 21:50:31', '2022-04-13 21:50:31', NULL),
(121, 'yasir idris', 'yasir.arefat444@gmail.com', NULL, 'Respected sir/madam\r\ni am yasir idris ,i beg to say that i have got offer letter form dalbit limited company ,i want to know that this offer letter is genuine or not ,and also i have mail tanzania mail id but no any got response.\r\nso i kindly request you to please give me right desicion like offer letter is genuine or not .\r\nThanks $ regards\r\nyasir idris\r\n+919852404328', '2022-04-13 22:01:36', '2022-04-13 22:01:36', NULL),
(122, 'yasir idris', 'yasir.arefat444@gmail.com', '+919852404328', 'Respected sir/madam\r\ni am yasir idris ,i beg to say that i have got offer letter form dalbit limited company ,i want to know that this offer letter is genuine or not ,and also i have mail tanzania mail id but no any got response.\r\nso i kindly request you to please give me right desicion like offer letter is genuine or not .\r\nThanks $ regards\r\nyasir idris\r\n+919852404328', '2022-04-13 22:03:14', '2022-04-13 22:03:14', NULL),
(123, 'sethuraman', 'sethu_2005@yahoo.co.in', '91 9965895404', 'Dear Sr,\r\n\r\nI got a offer from Elexes overseas consultancy from IndIa. Now they are askIng securtIty depost money. KIndly confIrm wheteher can Pay or not?\r\nKndly confrm. \r\n\r\n\r\nSubject : Offer of Employment.\r\nDalbit Petroleum Ltd Azania Plaza, 2nd Floor pugu,Nyerere road,9122,Dar Es Salaam,Tanzania.takes great\r\npride in informing you that you have been offer as “QA/QC ENGINEER” in our organization. Your\r\nappointment shall be subject to the following term and conditions:-\r\nYour Date of joining- 27.04.2022', '2022-04-15 18:49:39', '2022-04-15 18:49:39', NULL),
(124, 'sethuraman', 'sethu_2005@yahoo.co.in', '9965895404', 'Dear Sir,\r\n\r\nI got a offer from Elexes overseas consultancy from IndIa. Now they are askIng securtIty depost money. KIndly confIrm wheteher can Pay or not?\r\nKindly confrm. Offer letter enclosed please check t and confrm as early.\r\n\r\n\r\n\r\nSubject : Offer of Employment.\r\nDalbit Petroleum Ltd Azania Plaza, 2nd Floor pugu,Nyerere road,9122,Dar Es Salaam,Tanzania.takes great\r\npride in informing you that you have been offer as “QA/QC ENGINEER” in our organization. Your\r\nappointment shall be subject to the following term and conditions:-\r\nYour Date of joining- 27.04.2022', '2022-04-15 19:00:31', '2022-04-15 19:00:31', NULL),
(125, 'Laurinda', 'laurindahalfey@gmail.com', '0355 6307639', 'Hello there \r\n \r\nPawSafer™ Can Safely Trim Your Dog\'S Nails In No Time From Home.\r\n\r\nGet it while it\'s still 50% OFF + FREE Shipping\r\n\r\nBuy here: https://pawsafer.shop\r\n \r\nCheers, \r\n \r\nLaurinda', '2022-04-15 19:26:55', '2022-04-15 19:26:55', NULL),
(126, 'HenryISods', 'aulia_store@yahoo.com', '89032214195', 'No need to work anymore while you have the Robot launched! \r\nhttps://profit-gold-strategy.life/?u=bdlkd0x&o=x7t8nng', '2022-04-16 18:51:22', '2022-04-16 18:51:22', NULL),
(127, 'gemooboy.lovej@bucol.net', 'roussama.ararouci@ldwdkj.com', '0660 220 20 69', 'Congrats on your new site, get it listed here for free and we\'ll start sending people to your site https://bit.ly/submityoursite1000', '2022-04-16 21:37:26', '2022-04-16 21:37:26', NULL),
(128, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hey, this is Eric and I ran across dalbitpetroleum.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-18 11:49:50', '2022-04-18 11:49:50', NULL),
(129, 'Muhammad Hamza Saleem', 'hamzasaleemkz@gmail.com', '03409117737', 'Dear Sir,\r\nI am Hamza Saleem currently working as Planning and Preventive Maintenance Engineer at Power Cement Ltd. Pakistan. I am looking for new roles and opportunities. Please share the email id so i can drop my CV for your consideration.\r\n \r\nRegards', '2022-04-18 14:35:34', '2022-04-18 14:35:34', NULL),
(130, 'Shad Frye', 'shad@zippyleads.org', 'NA', 'ZippyLeads.org is running an easter special till the 18th of April.\r\n\r\nGet all the leads you need for your company with our easter special.', '2022-04-19 00:35:13', '2022-04-19 00:35:13', NULL),
(131, 'vak', 'zqhm0ptx@icloud.com', '88997451485', 'Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/y43nhrpb', '2022-04-19 07:29:00', '2022-04-19 07:29:00', NULL),
(132, 'Marlon Triggs', 'triggs.marlon@hotmail.com', '02241 81 81 57', 'I called you 2 times. Why didn\'t you pick up? I\'m horny.. Please call me.\r\n\r\nI\'m online. You can chat with me by clicking this link.\r\n\r\nhttps://live-sex-chat.club/', '2022-04-19 13:31:26', '2022-04-19 13:31:26', NULL),
(133, 'Hortense Darker', 'hortense@topdatalist.com', 'NA', 'Hello.\r\n\r\nIt is with sad regret to inform you TopDataList.com is shutting down.\r\n\r\nWe have made all our databases available for you for a once off fee.\r\n\r\nVisit us on TopDataList.com', '2022-04-20 00:57:08', '2022-04-20 00:57:08', NULL),
(134, 'Idoudtejpn', 'stas.batulin.83@inbox.ru', '84356459759', 'НА ВАШ СЧЕТ ЗАЧИСЛЕНО +13677.00 \r\n \r\nПодробнее: https://forms.yandex.ru/u/v51g561wbug8dyxfvei3/success/?AAAAAdalbitpetroleum.comBBBBB', '2022-04-20 06:21:37', '2022-04-20 06:21:37', NULL),
(135, 'Roma Grayson', 'roma@topdatalist.com', 'NA', 'Hello.\r\n\r\nIt is with sad regret to inform you TopDataList.com is shutting down.\r\n\r\nWe have made all our databases available for you for a once off fee.\r\n\r\nVisit us on TopDataList.com', '2022-04-20 09:06:26', '2022-04-20 09:06:26', NULL),
(136, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hi, my name is Eric and I’m betting you’d like your website dalbitpetroleum.com to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at dalbitpetroleum.com.\r\n\r\nTalk With Web Visitor – CLICK HERE https://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-20 09:43:42', '2022-04-20 09:43:42', NULL),
(137, 'ChristinaSax', 'christinaSax@aol.com', '+380 2336452709', 'Неllо аll, guуѕ! Ι know, mу meѕsаgе mау be tоо sрecіfіc,\r\nВut my sіѕter fоund nісe mаn hеre аnd thеу married, sо hоw аbout me?ǃ :)\r\nI аm 25 уearѕ оld, Сhriѕtinа, frоm Ukraіne, Ι knоw Engliѕh and Gеrman lаnguаgеs аlѕо\r\nАnd... I hаvе speсifiс dіѕеaѕe, nаmеd nymphоmаnia. Ԝhо know what іs thіѕ, саn understаnd me (better tо ѕау it immediatеlу)\r\nАh yes, Ι соok verу taѕty! and Ι lovе not only сооk ;))\r\nΙm reаl girl, not рroѕtitutе, and lоokіng for sеriоuѕ аnd hot relаtiоnshір...\r\nAnуwаy, уоu cаn fіnd mу рrofile here: http://omspamab.tk/user/39818/', '2022-04-20 11:22:21', '2022-04-20 11:22:21', NULL),
(138, 'Bret Gregg', 'bret.gregg@gmail.com', '070 5626 4328', 'I called you 2 times. Why didn\'t you pick up? I\'m horny.. Please call me.\r\n\r\nI\'m online. You can chat with me by clicking this link.\r\n\r\nhttps://live-sex-chat.club/', '2022-04-20 15:58:20', '2022-04-20 15:58:20', NULL),
(139, 'Claribel Condon', 'claribel@topdatalist.com', 'NA', 'Hello.\r\n\r\nIt is with sad regret to inform you TopDataList.com is shutting down.\r\n\r\nWe have made all our databases available for you for a once off fee.\r\n\r\nVisit us on TopDataList.com', '2022-04-21 03:51:37', '2022-04-21 03:51:37', NULL),
(140, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found dalbitpetroleum.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-21 16:39:28', '2022-04-21 16:39:28', NULL),
(141, 'Shayan Nisar Ahmad Mulla', 'hseshayan@gmail.com', '+918055767254', 'Dear Sir / Mam,\r\n\r\nMy name is Shayan Nisar Ahmad Mulla. I got a job opportunity in Dalbit Petroleum Tanzania as i recieved interview call from +255 22 286 5234.\r\nI want to verify offer letter please tell me how to verify I\'m trying to contact you but i didn\'t get any response from your side. \r\n\r\nAppreciate your kind action.\r\n\r\nThank & regards\r\n\r\nShayan Nisar Ahmad Mulla', '2022-04-21 20:20:43', '2022-04-21 20:20:43', NULL),
(142, 'Shayan Nisar Ahmad Mulla', 'hseshayan@gmail.com', '+918055767254', 'Dear Sir / Mam,\r\n\r\nMy name is Shayan Nisar Ahmad Mulla. I got a job opportunity in Dalbit Petroleum Tanzania as i recieved interview call from +255 22 286 5234.\r\nI want to verify offer letter please tell me how to verify I\'m trying to contact you but i didn\'t get any response from your side. \r\n\r\nAppreciate your kind action.\r\n\r\nThank & regards\r\n\r\nShayan Nisar Ahmad Mulla', '2022-04-21 20:20:52', '2022-04-21 20:20:52', NULL),
(143, 'Shayan Nisar Ahmad Mulla', 'hseshayan@gmail.com', NULL, 'Dear Sir / Mam,\r\n\r\nMy name is Shayan Nisar Ahmad Mulla. I got a job opportunity in Dalbit Petroleum Tanzania as i recieved interview call from +255 22 286 5234.\r\nI want to verify offer letter please tell me how to verify I\'m trying to contact you but i didn\'t get any response from your side. \r\n\r\nAppreciate your kind action.\r\n\r\nThank & regards\r\n\r\nShayan Nisar Ahmad Mulla', '2022-04-21 20:21:03', '2022-04-21 20:21:03', NULL),
(144, 'roussama.ararouci@ldwdkj.com', 'bchakka111975s@ronell.me', '312-691-6952', 'Good job on the new site! Now go ahead and submit it to our free directory here https://bit.ly/submityoursite1000', '2022-04-21 20:32:56', '2022-04-21 20:32:56', NULL),
(145, 'Caro kalenga', 'carofmikalenga@gmail.com', NULL, 'Manifeste l\'intérêt de travail au sein de votre entreprise , avec l\'expérience que je dans la logistique pétrolier .', '2022-04-21 21:59:26', '2022-04-21 21:59:26', NULL),
(146, 'HenryISods', 'ashontayegadson2@yahoo.com', '89030366227', 'Only one click can grow up your money really fast. \r\nhttps://get-profitshere.life/?u=bdlkd0x&o=x7t8nng', '2022-04-22 02:36:45', '2022-04-22 02:36:45', NULL),
(147, 'HenryISods', 'jakm714@yahoo.com', '89030800921', 'Feel free to buy everything you want with the additional income. \r\nhttps://get-profitshere.life/?u=bdlkd0x&o=x7t8nng', '2022-04-22 07:27:02', '2022-04-22 07:27:02', NULL),
(148, 'HenryISods', 'scastro65@hotmail.com', '89035600142', 'Need money? Get it here easily? \r\nhttps://get-profitshere.life/?u=bdlkd0x&o=x7t8nng', '2022-04-22 12:21:04', '2022-04-22 12:21:04', NULL),
(149, 'vak', 'a68a480t@yahoo.com', '82195355131', 'Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/y378z3f8', '2022-04-22 15:00:39', '2022-04-22 15:00:39', NULL),
(150, 'PANKAJ CHAITRAM BAWANE', 'pankajbawane@rediffmail.com', '00917016801658', 'Dear sir, please guide me as I received offer letter on my name PANKAJ CHAITRAM BAWANE from your company for the post of Piping Engineer, \r\nSo,kindly check and verify and give me feedback as early as possible. \r\nThanking you!', '2022-04-22 15:02:02', '2022-04-22 15:02:02', NULL),
(151, 'PANKAJ CHAITRAM BAWANE', 'pankajbawane@rediffmail.com', NULL, 'Dear sir, please guide me as I received offer letter on my name PANKAJ CHAITRAM BAWANE from your company for the post of Piping Engineer, \r\nSo,kindly check and verify and give me feedback as early as possible. \r\nThanking you!', '2022-04-22 15:02:17', '2022-04-22 15:02:17', NULL),
(152, 'PANKAJ CHAITRAM BAWANE', 'pankajbawane@rediffmail.com', '00917016801658', 'Dear sir, please guide me as I received offer letter on my name PANKAJ CHAITRAM BAWANE from your company for the post of Piping Engineer, \r\nSo,kindly check and verify and give me feedback as early as possible. \r\nThanking you!', '2022-04-22 15:02:39', '2022-04-22 15:02:39', NULL),
(153, 'HenryISods', 'peattyhot0o@hotmail.com', '89034894674', 'Financial Robot is #1 investment tool ever. Launch it! \r\nhttps://get-profitshere.life/?u=bdlkd0x&o=x7t8nng', '2022-04-22 17:13:22', '2022-04-22 17:13:22', NULL),
(154, 'HenryISods', 'ana_bok@yahoo.com', '89039292745', 'Financial independence is what this robot guarantees. \r\nhttps://get-profitshere.life/?u=bdlkd0x&o=x7t8nng', '2022-04-22 22:08:27', '2022-04-22 22:08:27', NULL),
(155, 'HenryISods', 'michaelhepler32@comcast.net', '89031923521', 'Your computer can bring you additional income if you use this Robot. \r\nhttps://get-profitshere.life/?u=bdlkd0x&o=x7t8nng', '2022-04-23 04:03:35', '2022-04-23 04:03:35', NULL),
(156, 'HenryISods', 'carepaula@icloud.com', '89039785536', 'Make yourself rich in future using this financial robot. \r\nhttps://get-profitshere.life/?u=bdlkd0x&o=x7t8nng', '2022-04-23 08:56:51', '2022-04-23 08:56:51', NULL),
(157, 'Squase', 'slgpacyq@yahoo.com', '81372856884', 'Cryptocurrency rates are breaking records, which means you have the opportunity to make money on cryptocurrencies. Join our system and start making money with us. Go to system: https://telegra.ph/Chaos-in-Vancouver-Unemployed-citizens-no-longer-plan-to-find-a-job-04-22', '2022-04-23 09:25:30', '2022-04-23 09:25:30', NULL),
(158, 'HenryISods', 'joshricespam@gmail.com', '89032421405', 'This robot will help you to make hundreds of dollars each day. \r\nhttps://get-profitshere.life/?u=bdlkd0x&o=x7t8nng', '2022-04-23 13:59:42', '2022-04-23 13:59:42', NULL),
(159, 'HenryISods', '4gloribea@comcast.net', '89039524763', 'Trust the financial Bot to become rich. \r\nhttps://get-profitshere.life/?u=bdlkd0x&o=x7t8nng', '2022-04-23 18:49:32', '2022-04-23 18:49:32', NULL),
(160, 'HenryISods', 'chadsing15@yahoo.com', '89031380878', 'Invest $1 today to make $1000 tomorrow. https://take-profitnow.life/?u=bdlkd0x&o=x7t8nng', '2022-04-23 22:21:22', '2022-04-23 22:21:22', NULL),
(161, 'HenryISods', 'jr75087@gmail.com', '89038012372', 'Robot never sleeps. It makes money for you 24/7. https://take-profitnow.life/?u=bdlkd0x&o=x7t8nng', '2022-04-24 03:09:18', '2022-04-24 03:09:18', NULL),
(162, 'HenryISods', 'cdkasinger@comcast.net', '89036063537', 'This robot will help you to make hundreds of dollars each day. https://take-profitnow.life/?u=bdlkd0x&o=x7t8nng', '2022-04-24 07:59:08', '2022-04-24 07:59:08', NULL),
(163, 'HenryISods', 'JDHOWELL21@YAHOO.COM', '89035980538', 'Need money? Get it here easily? https://take-profitnow.life/?u=bdlkd0x&o=x7t8nng', '2022-04-24 12:50:55', '2022-04-24 12:50:55', NULL),
(164, 'BTC Giveaway', 'info@btcgiveaways.xyz', '056 342 41 23', 'You have been chosen to participate in one of the biggest bitcoin giveaways. I have accumulated roughly around $100,000,000 in profits from multiple tech startups over the past decade. Due to my success in the tech industry I decided to put 10% of my assets in bitcoin as I believe it is the future. You can see here https://i.postimg.cc/qvFXT8wv/giveaway.jpg Out of good faith I\'m giving away $1,000,000 of that to select individuals for a short period of time. Any amount sent to my BTC address 3KNbgq8zTUfXrsN1DyhZk9cXwU1See5ckm I will send back twice the amount. Minimum amount is $10,000 and maximum amount is $500,000. 3qy23ZBs', '2022-04-24 17:29:55', '2022-04-24 17:29:55', NULL),
(165, 'HenryISods', 'remyjm85@yahoo.com', '89039320954', 'Have no financial skills? Let Robot make money for you. https://take-profitnow.life/?u=bdlkd0x&o=x7t8nng', '2022-04-24 17:44:31', '2022-04-24 17:44:31', NULL),
(166, 'Sheila Jewett', 'sheila.jewett@hotmail.com', '(07) 4017 7712', 'I called you 2 times. Why didn\'t you pick up? I\'m horny.. Please call me.\r\n\r\nI\'m online. You can chat with me by clicking this link.\r\n\r\nhttps://live-sex-chat.club/', '2022-04-24 22:09:44', '2022-04-24 22:09:44', NULL),
(167, 'HenryISods', 'fresh13ms@aol.com', '89032502036', 'Check out the automatic Bot, which works for you 24/7. https://take-profitnow.life/?u=bdlkd0x&o=x7t8nng', '2022-04-24 22:38:41', '2022-04-24 22:38:41', NULL);
INSERT INTO `contacts` (`id`, `name`, `email`, `telephone_number`, `message`, `created_at`, `updated_at`, `deleted_at`) VALUES
(168, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at dalbitpetroleum.com.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-25 00:26:43', '2022-04-25 00:26:43', NULL),
(169, 'HenryISods', 'bpbrass@verizon.net', '89038881302', 'Check out the newest way to make a fantastic profit. https://take-profitnow.life/?u=bdlkd0x&o=x7t8nng', '2022-04-25 03:44:39', '2022-04-25 03:44:39', NULL),
(170, 'vak', 'q9o4097i@yahoo.com', '83266596811', 'Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/yyq5np86', '2022-04-25 12:11:12', '2022-04-25 12:11:12', NULL),
(171, 'HenryISods', 'gprantil72@live.com', '89033054147', 'Making money can be extremely easy if you use this Robot. https://take-profitnow.life/?u=bdlkd0x&o=x7t8nng', '2022-04-25 19:47:02', '2022-04-25 19:47:02', NULL),
(172, 'HenryISods', 'CROWE004@GMAIL.COM', '89033730094', 'There is no need to look for a job anymore. Work online. https://breweriana.it/gotodate/promo', '2022-04-26 00:47:33', '2022-04-26 00:47:33', NULL),
(173, 'Denis', 'denisdeus02@gmail.com', '+255787139597', 'Greeting..\r\n\r\nOpen Land Project for Sale at Kikatiti,Kikwe and Karatu Arusha..\r\n\r\nKIKATITI..\r\n\r\nProjects are Located in Arumeru District,Kikatiti Ward Sakila Chini Village Arusha..\r\n\r\nPROJECT A..\r\n\r\nThe Project has 6 Acres Of Land that equivalent to 29400 square meters..\r\n\r\nThe Land is Located 75 Meters from Moshi Arusha road and 550 Meters from Lodhia Industry.\r\n\r\nPROJECT B..\r\n\r\nThe Project has 10 Acres of Land that equivalent to 49000 square meters..\r\n\r\nThe Land Located 75 Meters from Moshi Arusha road and 700 Meters from Lodhia Industry..\r\n\r\nPROJECT C..\r\n\r\nThe Project has 15 Acres of land kikatiti main road that equivalent to 73500 square meters..\r\n\r\nPROJECT D..\r\n\r\nThe Project has 18 Acres of land that equivalent to 88200 square meters..\r\n\r\nThe Land Located 100 meters from Moshi Arusha road and 75 from Tanga Arusha Railway..\r\n\r\nDISTANCE..\r\n\r\nDistance from KIA 15 KM..\r\n\r\nDistance from Arusha City 32 KM..\r\n\r\nDistance from Tanzanite Mining 32 KM..\r\n\r\nKIKWE..\r\n\r\nProject is Located at Purpose Area Called Kikwe11 to 15 km from Arusha town..\r\n\r\nThere are 8 acres of land that has clean Tittle Deed..\r\n\r\nThe Land its Located at East African road, 3 km from Nelson Mandela University Road, 3 km from East Africa Road and 1 Km before Dashir Lodge..\r\n\r\nThe Land is bordered by River Nganana that Separates it from Gomba Estates,Also tap water and electricity that can easily be connected from the Neighbourhood..\r\n\r\nVIEW : Both Kilimanjaro and Meru Mountain are clearly viewed from the Land..\r\n\r\nGoogle Map Coordinates for the land are -3.431489,36.812572\r\n\r\nKARATU..\r\nThere are 8 Acres of Land that Located at Manyara Kibaoni nearby Serena Hotel and Kirurumo Lodge..\r\n\r\nThere are 13 acres of land nearby Rhotia Valley lodge..\r\n\r\nThere are 20 acres of land nearby Marera Camp 4 kilometers from town..\r\n\r\nThere are 4 acres of land in a place called Tloma 7 kilometers from town..\r\n\r\nThere are 4 acres of land in a place Called Kinihe,6 kilometers from town..\r\n\r\nThe land Project are on Good Site that suitable for :-\r\n\r\nInvestment like Hotels,Lodges and Farming..\r\n\r\nInvestment like Schools Business Services..\r\n\r\nInvestment like Petrol Station to serve Arusha Moshi,Tanga,Holili Vehicles..\r\n\r\nInvestment in building for Car Yard for Various purpose..\r\n\r\nInvestment like Hospital for Health Centres..\r\n\r\nInvestment like Industry as power station nearly..\r\n\r\nInvestment in building Modern Apartments for both Residential and Commercial purposes..\r\n\r\nInvestment in building Malls to serve Arusha Moshi and Tanga road users..\r\n\r\nPlease don\'t Hesitate to contact Us for Price and more Clarifications if you will be Interested to invest in Land on Arusha Tanzania..\r\n\r\nTel:- +255 787139597 or +255 719177201..\r\n\r\nE-mail:-Denisdeus02@gmail.com.\r\n\r\nYour Warmly Welcome to invest at our land..\r\n\r\nAt the RIGHT PRICE..\r\nAt the RIGHT PLACE..\r\nAt the RIGHT TIME..\r\n\r\nRegards,\r\n\r\nDenis Deus.\r\n\r\nAlso, We have 60 acres and 150 acres of farm land..\r\n\r\nLocation Losinyaiii Kastam 35 to 40 kilometers from Kiserian Round about..\r\n\r\nIn Singida 500 acres of land in a place called Misung\'aa 56 km from singida town..\r\n\r\nFor Price of 3 million\'s per 1 acre of farm land...\r\n\r\nFor those 150 acres,We cut the land starts from 50 acres of land..', '2022-04-26 05:14:21', '2022-04-26 05:14:21', NULL),
(174, 'Denis', 'denisdeus02@gmail.com', NULL, 'Greeting..\r\n\r\nOpen Land Project for Sale at Kikatiti,Kikwe and Karatu Arusha..\r\n\r\nKIKATITI..\r\n\r\nProjects are Located in Arumeru District,Kikatiti Ward Sakila Chini Village Arusha..\r\n\r\nPROJECT A..\r\n\r\nThe Project has 6 Acres Of Land that equivalent to 29400 square meters..\r\n\r\nThe Land is Located 75 Meters from Moshi Arusha road and 550 Meters from Lodhia Industry.\r\n\r\nPROJECT B..\r\n\r\nThe Project has 10 Acres of Land that equivalent to 49000 square meters..\r\n\r\nThe Land Located 75 Meters from Moshi Arusha road and 700 Meters from Lodhia Industry..\r\n\r\nPROJECT C..\r\n\r\nThe Project has 15 Acres of land kikatiti main road that equivalent to 73500 square meters..\r\n\r\nPROJECT D..\r\n\r\nThe Project has 18 Acres of land that equivalent to 88200 square meters..\r\n\r\nThe Land Located 100 meters from Moshi Arusha road and 75 from Tanga Arusha Railway..\r\n\r\nDISTANCE..\r\n\r\nDistance from KIA 15 KM..\r\n\r\nDistance from Arusha City 32 KM..\r\n\r\nDistance from Tanzanite Mining 32 KM..\r\n\r\nKIKWE..\r\n\r\nProject is Located at Purpose Area Called Kikwe11 to 15 km from Arusha town..\r\n\r\nThere are 8 acres of land that has clean Tittle Deed..\r\n\r\nThe Land its Located at East African road, 3 km from Nelson Mandela University Road, 3 km from East Africa Road and 1 Km before Dashir Lodge..\r\n\r\nThe Land is bordered by River Nganana that Separates it from Gomba Estates,Also tap water and electricity that can easily be connected from the Neighbourhood..\r\n\r\nVIEW : Both Kilimanjaro and Meru Mountain are clearly viewed from the Land..\r\n\r\nGoogle Map Coordinates for the land are -3.431489,36.812572\r\n\r\nKARATU..\r\nThere are 8 Acres of Land that Located at Manyara Kibaoni nearby Serena Hotel and Kirurumo Lodge..\r\n\r\nThere are 13 acres of land nearby Rhotia Valley lodge..\r\n\r\nThere are 20 acres of land nearby Marera Camp 4 kilometers from town..\r\n\r\nThere are 4 acres of land in a place called Tloma 7 kilometers from town..\r\n\r\nThere are 4 acres of land in a place Called Kinihe,6 kilometers from town..\r\n\r\nThe land Project are on Good Site that suitable for :-\r\n\r\nInvestment like Hotels,Lodges and Farming..\r\n\r\nInvestment like Schools Business Services..\r\n\r\nInvestment like Petrol Station to serve Arusha Moshi,Tanga,Holili Vehicles..\r\n\r\nInvestment in building for Car Yard for Various purpose..\r\n\r\nInvestment like Hospital for Health Centres..\r\n\r\nInvestment like Industry as power station nearly..\r\n\r\nInvestment in building Modern Apartments for both Residential and Commercial purposes..\r\n\r\nInvestment in building Malls to serve Arusha Moshi and Tanga road users..\r\n\r\nPlease don\'t Hesitate to contact Us for Price and more Clarifications if you will be Interested to invest in Land on Arusha Tanzania..\r\n\r\nTel:- +255 787139597 or +255 719177201..\r\n\r\nE-mail:-Denisdeus02@gmail.com.\r\n\r\nYour Warmly Welcome to invest at our land..\r\n\r\nAt the RIGHT PRICE..\r\nAt the RIGHT PLACE..\r\nAt the RIGHT TIME..\r\n\r\nRegards,\r\n\r\nDenis Deus.\r\n\r\nAlso, We have 60 acres and 150 acres of farm land..\r\n\r\nLocation Losinyaiii Kastam 35 to 40 kilometers from Kiserian Round about..\r\n\r\nIn Singida 500 acres of land in a place called Misung\'aa 56 km from singida town..\r\n\r\nFor Price of 3 million\'s per 1 acre of farm land...\r\n\r\nFor those 150 acres,We cut the land starts from 50 acres of land..', '2022-04-26 05:17:56', '2022-04-26 05:17:56', NULL),
(175, 'Denis', 'denisdeus02@gmail.com', NULL, 'Greeting..\r\n\r\nOpen Land Project for Sale at Kikatiti,Kikwe and Karatu Arusha..\r\n\r\nKIKATITI..\r\n\r\nProjects are Located in Arumeru District,Kikatiti Ward Sakila Chini Village Arusha..\r\n\r\nPROJECT A..\r\n\r\nThe Project has 6 Acres Of Land that equivalent to 29400 square meters..\r\n\r\nThe Land is Located 75 Meters from Moshi Arusha road and 550 Meters from Lodhia Industry.\r\n\r\nPROJECT B..\r\n\r\nThe Project has 10 Acres of Land that equivalent to 49000 square meters..\r\n\r\nThe Land Located 75 Meters from Moshi Arusha road and 700 Meters from Lodhia Industry..\r\n\r\nPROJECT C..\r\n\r\nThe Project has 15 Acres of land kikatiti main road that equivalent to 73500 square meters..\r\n\r\nPROJECT D..\r\n\r\nThe Project has 18 Acres of land that equivalent to 88200 square meters..\r\n\r\nThe Land Located 100 meters from Moshi Arusha road and 75 from Tanga Arusha Railway..\r\n\r\nDISTANCE..\r\n\r\nDistance from KIA 15 KM..\r\n\r\nDistance from Arusha City 32 KM..\r\n\r\nDistance from Tanzanite Mining 32 KM..\r\n\r\nKIKWE..\r\n\r\nProject is Located at Purpose Area Called Kikwe11 to 15 km from Arusha town..\r\n\r\nThere are 8 acres of land that has clean Tittle Deed..\r\n\r\nThe Land its Located at East African road, 3 km from Nelson Mandela University Road, 3 km from East Africa Road and 1 Km before Dashir Lodge..\r\n\r\nThe Land is bordered by River Nganana that Separates it from Gomba Estates,Also tap water and electricity that can easily be connected from the Neighbourhood..\r\n\r\nVIEW : Both Kilimanjaro and Meru Mountain are clearly viewed from the Land..\r\n\r\nGoogle Map Coordinates for the land are -3.431489,36.812572\r\n\r\nKARATU..\r\nThere are 8 Acres of Land that Located at Manyara Kibaoni nearby Serena Hotel and Kirurumo Lodge..\r\n\r\nThere are 13 acres of land nearby Rhotia Valley lodge..\r\n\r\nThere are 20 acres of land nearby Marera Camp 4 kilometers from town..\r\n\r\nThere are 4 acres of land in a place called Tloma 7 kilometers from town..\r\n\r\nThere are 4 acres of land in a place Called Kinihe,6 kilometers from town..\r\n\r\nThe land Project are on Good Site that suitable for :-\r\n\r\nInvestment like Hotels,Lodges and Farming..\r\n\r\nInvestment like Schools Business Services..\r\n\r\nInvestment like Petrol Station to serve Arusha Moshi,Tanga,Holili Vehicles..\r\n\r\nInvestment in building for Car Yard for Various purpose..\r\n\r\nInvestment like Hospital for Health Centres..\r\n\r\nInvestment like Industry as power station nearly..\r\n\r\nInvestment in building Modern Apartments for both Residential and Commercial purposes..\r\n\r\nInvestment in building Malls to serve Arusha Moshi and Tanga road users..\r\n\r\nPlease don\'t Hesitate to contact Us for Price and more Clarifications if you will be Interested to invest in Land on Arusha Tanzania..\r\n\r\nTel:- +255 787139597 or +255 719177201..\r\n\r\nE-mail:-Denisdeus02@gmail.com.\r\n\r\nYour Warmly Welcome to invest at our land..\r\n\r\nAt the RIGHT PRICE..\r\nAt the RIGHT PLACE..\r\nAt the RIGHT TIME..\r\n\r\nRegards,\r\n\r\nDenis Deus.\r\n\r\nAlso, We have 60 acres and 150 acres of farm land..\r\n\r\nLocation Losinyaiii Kastam 35 to 40 kilometers from Kiserian Round about..\r\n\r\nIn Singida 500 acres of land in a place called Misung\'aa 56 km from singida town..\r\n\r\nFor Price of 3 million\'s per 1 acre of farm land...\r\n\r\nFor those 150 acres,We cut the land starts from 50 acres of land..', '2022-04-26 05:18:01', '2022-04-26 05:18:01', NULL),
(176, 'HenryISods', 'siglow@sbcglobal.net', '89038628942', 'Have no money? Earn it online. https://breweriana.it/gotodate/promo', '2022-04-26 05:44:24', '2022-04-26 05:44:24', NULL),
(177, 'HenryISods', 'boydtrucking@netzero.com', '89035064810', 'Everyone can earn as much as he wants suing this Bot. https://breweriana.it/gotodate/promo', '2022-04-26 10:36:02', '2022-04-26 10:36:02', NULL),
(178, 'BTC Giveaway', 'info@btcgiveaways.xyz', '06835 67 91 61', 'You have been chosen to participate in one of the biggest bitcoin giveaways. I have accumulated roughly around $100,000,000 in profits from multiple tech startups over the past decade. Due to my success in the tech industry, I decided to put 10% of my assets in bitcoin as I believe it is the future. You can see it here https://i.postimg.cc/qvFXT8wv/giveaway.jpg Out of good faith I’m giving away $1,000,000 of that to select individuals for a short period of time. Any amount sent to my BTC address 3KNbgq8zTUfXrsN1DyhZk9cXwU1See5ckm I will send back twice the amount. The minimum amount is $5,000 and the maximum amount is $500,000. 3qy23ZBs', '2022-04-27 00:52:04', '2022-04-27 00:52:04', NULL),
(179, '3chawki.berrada@onlyu.link', 'jaouadhifarah0@bebekpenyet.buzz', NULL, 'Submit your site to over 1000 advertising websites for free now https://bit.ly/submityoursite1000', '2022-04-27 10:17:24', '2022-04-27 10:17:24', NULL),
(180, 'Iesha', 'coordinacion@teslacapacitaciones.com', '(07) 5696 4607', 'World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\n\r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.online\r\n\r\nTo your success,\r\n\r\nIesha\r\nContact Us', '2022-04-28 02:28:53', '2022-04-28 02:28:53', NULL),
(181, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'My name’s Eric and I just found your site dalbitpetroleum.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE http://talkwithwebtraffic.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-28 13:57:50', '2022-04-28 13:57:50', NULL),
(182, 'HenryISods', 'naqvi.kahkashan@gmail.com', '89033976582', 'The huge income without investments is available, now! https://2f-2f.de/gotodate/promo', '2022-04-28 20:31:42', '2022-04-28 20:31:42', NULL),
(183, 'Hannelore', 'ciullo-nicola@hotmail.com', '0211 85 66 19', 'World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.shop\r\n\r\nBest,\r\n\r\nHannelore\r\nContact Us', '2022-04-28 21:34:58', '2022-04-28 21:34:58', NULL),
(184, 'HenryISods', 'yazwimmer@hotmail.com', '89039449232', 'Trust the financial Bot to become rich. https://2f-2f.de/gotodate/promo', '2022-04-29 01:27:06', '2022-04-29 01:27:06', NULL),
(185, 'HenryISods', 'aczcrdcjq@msn.com', '89035209327', 'Financial Robot is #1 investment tool ever. Launch it! https://2f-2f.de/gotodate/promo', '2022-04-29 06:25:44', '2022-04-29 06:25:44', NULL),
(186, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Cool website!\r\n\r\nMy name’s Eric, and I just found your site - dalbitpetroleum.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across dalbitpetroleum.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-29 06:32:56', '2022-04-29 06:32:56', NULL),
(187, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'My name’s Eric and I just came across your website - dalbitpetroleum.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like dalbitpetroleum.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n \r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-04-29 11:07:28', '2022-04-29 11:07:28', NULL),
(188, 'HenryISods', 'arielbickel@gmail.com', '89036915363', 'Check out the new financial tool, which can make you rich. https://2f-2f.de/gotodate/promo', '2022-04-29 11:49:59', '2022-04-29 11:49:59', NULL),
(189, 'HenryISods', 'dianhernandez108@yahoo.com', '89031999701', 'Check out the newest way to make a fantastic profit. https://2f-2f.de/gotodate/promo', '2022-04-29 17:04:16', '2022-04-29 17:04:16', NULL),
(190, 'HenryISods', 'suecedc@hotmail.com', '89039035128', 'Try out the best financial robot in the Internet. https://2f-2f.de/gotodate/promo', '2022-04-29 22:08:52', '2022-04-29 22:08:52', NULL),
(191, 'HenryISods', 'telladm12@gmail.com', '89030510575', 'Financial robot guarantees everyone stability and income. https://2f-2f.de/gotodate/promo', '2022-04-30 03:12:38', '2022-04-30 03:12:38', NULL),
(192, 'Earlene', 'thesharpercut@gmail.com', '0321 3144602', 'Hello there \r\n\r\nDon\'t you hate carrying a big bulky backpack when you are only going out for the day? This high quality shoulder bag solves that problem. \r\nCarry enough without bogging yourself down! Perfect for that fishing trip or day hike!\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://fashionbag.sale\r\n\r\nAll the best, \r\n\r\nEarlene', '2022-04-30 05:14:39', '2022-04-30 05:14:39', NULL),
(193, 'HenryISods', 'capitalsfreak@yahoo.com', '89030441356', 'No need to work anymore while you have the Robot launched! https://2f-2f.de/gotodate/promo', '2022-04-30 08:32:03', '2022-04-30 08:32:03', NULL),
(194, 'HenryISods', 'lillianmehaffey@trash-mail.com', '89037089414', 'Financial robot guarantees everyone stability and income. https://2f-2f.de/gotodate/promo', '2022-04-30 13:34:27', '2022-04-30 13:34:27', NULL),
(195, 'Gary', 'info@beautymarble.com', '30-65-40-47', 'Hello \r\n\r\nDon\'t you hate carrying a big bulky backpack when you are only going out for the day? This high quality shoulder bag solves that problem. \r\nCarry enough without bogging yourself down! Perfect for that fishing trip or day hike!\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://fashionbag.sale\r\n\r\nBest, \r\n\r\nGary', '2022-04-30 15:02:14', '2022-04-30 15:02:14', NULL),
(196, 'HenryISods', 'serc90@gmail.com', '89037359340', 'Online job can be really effective if you use this Robot. https://2f-2f.de/gotodate/promo', '2022-04-30 18:53:54', '2022-04-30 18:53:54', NULL),
(197, 'HenryISods', 'sara.siddique88@gmail.com', '89036234032', 'Robot is the best solution for everyone who wants to earn. https://2f-2f.de/gotodate/promo', '2022-05-01 00:17:48', '2022-05-01 00:17:48', NULL),
(198, 'Idhlzxufhn', 'bevz_1979@inbox.ru', '84394969852', 'Аккаунт активирован! Ответ на обращение № 1713 доступен в личном кабинете \r\n \r\nПодробнее по ссылке: https://forms.yandex.ru/u/2z3ox0h36x8l2va6lh4l/success/?AAAAAdalbitpetroleum.comBBBBB', '2022-05-01 01:21:19', '2022-05-01 01:21:19', NULL),
(199, 'HenryISods', 'suryabayu29@yahoo.com', '89031091193', 'No worries if you are fired. Work online. https://2f-2f.de/gotodate/promo', '2022-05-01 05:12:10', '2022-05-01 05:12:10', NULL),
(200, 'HenryISods', 'deborahjean31@yahoo.com', '89035376905', 'The best way for everyone who rushes for financial independence. https://2f-2f.de/gotodate/promo', '2022-05-01 10:32:00', '2022-05-01 10:32:00', NULL),
(201, 'HenryISods', 'shlandermitchell@yahoo.com', '89036689436', 'Let the financial Robot be your companion in the financial market. https://2f-2f.de/gotodate/promo', '2022-05-01 15:38:01', '2022-05-01 15:38:01', NULL),
(202, 'MichaelGuppy', 'KsenofontMaidanov+4r8d@mail.ru', '83496961316', '<html> \r\n<a href=\"https://google.com\"><img src=\"https://blogger.googleusercontent.com/img/a/AVvXsEgXM4xrSRAnQQOLZImSaLdACcB-BosbLfsYEsXB-lLBl71Ma4AFA4xbB22ruqkub9W8nQCJVUXuXvJQeNLG2yoUL-OxTbhSvuyduxRSQI5RsQSu6DbfkMCVMuCuRB1uzs4KNkp3gZjcKQeubD_3RZ6p3xDAEpOwy6LnNnGhSa3h4V04dq3zc3oZajp_=s16000\"></a> \r\n</br> \r\ndalbitpetroleum.com griufheufhruifejyut5784467489rfugrgjedw0ooegjokoeghtitg3r94tuirjgoerfkeoghiytgjierjtirhyj \r\n</html>', '2022-05-01 16:25:55', '2022-05-01 16:25:55', NULL),
(203, 'HenryISods', 'ajtanner924@yahoo.com', '89038332017', 'Start your online work using the financial Robot. https://2f-2f.de/gotodate/promo', '2022-05-01 20:52:46', '2022-05-01 20:52:46', NULL),
(204, 'HenryISods', 'greghouseaddict@hotmail.com', '89036565672', 'Even a child knows how to make money. Do you? https://2f-2f.de/gotodate/promo', '2022-05-02 02:29:44', '2022-05-02 02:29:44', NULL),
(205, 'vak', 'nva8r38l@gmail.com', '84282444418', 'Hi, this is Jenny. I am sending you my intimate photos as I promised. https://bit.ly/3KCCpjc', '2022-05-02 09:34:08', '2022-05-02 09:34:08', NULL),
(206, 'Idt4xpx83f', 'bevz_1979@inbox.ru', '82123482161', 'Начисление бонуса по одному из ваших счетов. \r\n \r\nПодробнее по ссылке: https://forms.yandex.ru/u/gzzo2sns0svl5yydzljq/success/?AAAAAdalbitpetroleum.comBBBBB', '2022-05-02 10:30:51', '2022-05-02 10:30:51', NULL),
(207, 'Martin', 'info@yourwinningcampaign.com', '719-821-6419', 'Hey \r\n \r\nDefrost frozen foods in minutes safely and naturally with our THAW KING™. \r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED \r\n\r\nBuy now: https://thawking.store\r\n \r\nBest, \r\n \r\nMartin', '2022-05-04 00:05:02', '2022-05-04 00:05:02', NULL),
(208, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hi, Eric here with a quick thought about your website dalbitpetroleum.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-05-04 04:22:40', '2022-05-04 04:22:40', NULL),
(209, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hi, Eric here with a quick thought about your website dalbitpetroleum.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-05-04 04:50:58', '2022-05-04 04:50:58', NULL),
(210, 'HenryISods', 'bba@bellsouth.net', '89032059451', 'Financial Robot is #1 investment tool ever. Launch it! https://2f-2f.de/gotodate/promo', '2022-05-04 08:34:30', '2022-05-04 08:34:30', NULL),
(211, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hello, my name’s Eric and I just ran across your website at dalbitpetroleum.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-05-04 09:09:35', '2022-05-04 09:09:35', NULL),
(212, 'RichardVoxia', 'bureaurooze@online.nl', '83833475149', 'This application will earn you from $336 in 10 minutes https://352usdin25minutes.blogspot.gr/?id9193', '2022-05-04 11:07:29', '2022-05-04 11:07:29', NULL),
(213, 'HenryISods', 'm7md_07@hotmail.com', '89031279872', 'Attention! Financial robot may bring you millions! https://2f-2f.de/gotodate/promo', '2022-05-04 13:32:57', '2022-05-04 13:32:57', NULL),
(214, 'HenryISods', 'sliccshitmoney@yahoo.com', '89030232107', 'Every your dollar can turn into $100 after you lunch this Robot. https://ISods.187sued.de/gotodate/promo', '2022-05-04 18:29:17', '2022-05-04 18:29:17', NULL),
(215, 'HenryISods', 'blitzgrain@gmail.com', '89038041034', 'The online income is the easiest ways to make you dream come true. https://ISods.187sued.de/gotodate/promo', '2022-05-04 23:28:52', '2022-05-04 23:28:52', NULL),
(216, 'HenryISods', 'n.i.h.aob.u.h5.67.23.4@gmail.com', '89030429386', 'We know how to become rich and do you? https://ISods.187sued.de/gotodate/promo', '2022-05-05 04:25:29', '2022-05-05 04:25:29', NULL),
(217, 'HenryISods', 'kmac223@gmail.com', '89038710631', 'Everyone can earn as much as he wants suing this Bot. https://ISods.187sued.de/gotodate/promo', '2022-05-05 09:16:49', '2022-05-05 09:16:49', NULL),
(218, 'HenryISods', 'Steincam@aol.com', '89031985733', 'Looking forward for income? Get it online. https://ISods.187sued.de/gotodate/promo', '2022-05-05 14:08:53', '2022-05-05 14:08:53', NULL),
(219, 'HenryISods', 'kunalkuaq@gmx.com', '89032244015', 'The online income is your key to success. https://ISods.187sued.de/gotodate/promo', '2022-05-05 19:25:52', '2022-05-05 19:25:52', NULL),
(220, 'Minnie Carnevale', 'minnie@customdata.click', '0155-8609034', 'Hello, from CustomData.click we are a provider of unique databases that could help your business.\r\n\r\nPlease visit us at CustomData.click to see if we can help you.\r\n\r\nRegards,\r\nMinnie', '2022-05-05 22:27:07', '2022-05-05 22:27:07', NULL),
(221, 'omaima.1919w@lokasur.com', 'jaouadhifarah0@bebekpenyet.buzz', '0390 5892164', 'Congrats on your new site, get it listed here for free and we\'ll start sending people to your site https://bit.ly/submityoursite1000', '2022-05-05 23:25:37', '2022-05-05 23:25:37', NULL),
(222, 'HenryISods', 'trinabryant96@yahoo.com', '89034186261', 'Check out the automatic Bot, which works for you 24/7. https://ISods.187sued.de/gotodate/promo', '2022-05-06 00:25:59', '2022-05-06 00:25:59', NULL),
(223, 'HenryISods', 'shmikabrown30@yahoo.com', '89031888033', 'Online Bot will bring you wealth and satisfaction. https://ISods.187sued.de/gotodate/promo', '2022-05-06 05:19:24', '2022-05-06 05:19:24', NULL),
(224, 'HenryISods', 'sandy.231174@hotmail.com', '89034104051', 'Make dollars staying at home and launched this Bot. https://ISods.187sued.de/gotodate/promo', '2022-05-06 10:20:15', '2022-05-06 10:20:15', NULL),
(225, 'HenryISods', 'keithmoonrocks7@hotmail.com', '89031802522', 'Robot is the best solution for everyone who wants to earn. https://ISods.187sued.de/gotodate/promo', '2022-05-06 15:12:53', '2022-05-06 15:12:53', NULL),
(226, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hey, this is Eric and I ran across dalbitpetroleum.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-05-06 17:08:52', '2022-05-06 17:08:52', NULL),
(227, 'Eloise Hancock', 'eloise@customdata.click', '077 8971 8892', 'Hello, from CustomData.click we are a provider of unique databases that could help your business.\r\n\r\nPlease visit us at CustomData.click to see if we can help you.\r\n\r\nRegards,\r\nEloise', '2022-05-06 20:05:14', '2022-05-06 20:05:14', NULL),
(228, 'HenryISods', 'mij_it24@hotmail.com', '89038957577', 'Earning $1000 a day is easy if you use this financial Robot. https://ISods.187sued.de/gotodate/promo', '2022-05-06 20:20:57', '2022-05-06 20:20:57', NULL),
(229, 'Georgeplulk', 'enrica.medugno@wanadoo.nl', '83294122949', 'Stable income on Pinterest from $15,000 per month https://telegra.ph/How-to-make-money-on-pinterest-from-15000-per-month---id438374-05-05', '2022-05-06 22:27:53', '2022-05-06 22:27:53', NULL),
(230, 'HenryISods', 'varon.alan@gmail.com', '89034178271', 'Financial robot guarantees everyone stability and income. https://ISods.187sued.de/gotodate/promo', '2022-05-07 01:14:10', '2022-05-07 01:14:10', NULL),
(231, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at dalbitpetroleum.com.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-05-07 02:30:35', '2022-05-07 02:30:35', NULL),
(232, 'vak', 'ckttw0cd@hotmail.com', '87831239619', 'Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/y6lqxe7k', '2022-05-07 04:40:20', '2022-05-07 04:40:20', NULL),
(233, 'HenryISods', 'lilkee11@yhaoo.com', '89030859822', 'Buy everything you want earning money online. https://ISods.187sued.de/gotodate/promo', '2022-05-07 06:07:55', '2022-05-07 06:07:55', NULL),
(234, 'HenryISods', 'valeishadean@hotmail.com', '89034018789', 'No need to work anymore. Just launch the robot. https://ISods.187sued.de/gotodate/promo', '2022-05-07 11:10:52', '2022-05-07 11:10:52', NULL),
(235, 'Ofelia', 'info@dawsonjacklin.com', '040 83 12 76', 'Hello \r\n \r\nDefrost frozen foods in minutes safely and naturally with our THAW KING™. \r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED \r\n\r\nBuy now: https://thawking.store\r\n \r\nKind Regards, \r\n \r\nOfelia', '2022-05-07 13:21:03', '2022-05-07 13:21:03', NULL),
(236, 'HenryISods', 'johnphilipdacalcap@yahoo.com', '89036524796', 'Need money? Get it here easily? https://ISods.187sued.de/gotodate/promo', '2022-05-07 16:06:57', '2022-05-07 16:06:57', NULL),
(237, 'HenryISods', 'jabe916@gmail.com', '89034405476', 'Start your online work using the financial Robot. https://ISods.187sued.de/gotodate/promo', '2022-05-07 21:15:13', '2022-05-07 21:15:13', NULL),
(238, 'vak', 'yg3a453k@hotmail.com', '81998411963', 'Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/y4glal4z', '2022-05-08 18:52:31', '2022-05-08 18:52:31', NULL),
(239, 'Ranker SEO', 'luann.bigham@googlemail.com', '27-43-01-17', 'Hello, \r\n\r\nGreetings from Ranker SEO.\r\n\r\nAre you looking for a genuine SEO service to rank your website top on Google? Are you cheated by fake SEO companies? \r\n\r\nYou have found an affordable legitimate SEO agency to rank your website.\r\n\r\nWe have ranked 100s of websites such as blogs, shopify stores, ecommerce websites, adult websites, saas websites, etc. You can reach more customers by utilizing our backlinks.\r\n\r\nFor real proof, you can visit our website and check out. Contact us for more details.\r\n\r\nOur Skype ID: support@ranker.one\r\nOur Website: https://www.ranker.one\r\n\r\nThanks & Regards\r\nRanker SEO\r\n\r\nIf you don\'t like to receive our messages, you can unsubscribe by click here https://www.ranker.one/unsubscribe/?site=dalbitpetroleum.com', '2022-05-09 04:43:25', '2022-05-09 04:43:25', NULL),
(240, 'vak', '76xo2oj1@yahoo.com', '81947847669', 'Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/y2dvbhrp', '2022-05-09 22:46:56', '2022-05-09 22:46:56', NULL),
(241, 'HenryISods', 'tanya_28462@yahoo.com', '89033625614', 'Financial robot is a great way to manage and increase your income. https://ISods.187sued.de/gotodate/promo', '2022-05-10 01:06:37', '2022-05-10 01:06:37', NULL),
(242, 'Gaston Eagar', 'gaston@customdata.click', '858-277-0956', 'Hello, from CustomData.click we are a provider of unique databases that could help your business.\r\n\r\nPlease visit us at CustomData.click to see if we can help you.\r\n\r\nRegards,\r\nGaston', '2022-05-10 04:45:13', '2022-05-10 04:45:13', NULL),
(243, 'Kenny Blesing', 'kenny@customdata.click', '0381-6547379', 'Hello, from CustomData.click we are a provider of unique databases that could help your business.\r\n\r\nPlease visit us at CustomData.click to see if we can help you.\r\n\r\nRegards,\r\nKenny', '2022-05-10 05:01:06', '2022-05-10 05:01:06', NULL),
(244, 'HenryISods', 'lisajpaul@gmail.com', '89030241952', 'The financial Robot works for you even when you sleep. https://ISods.187sued.de/gotodate/promo', '2022-05-10 06:22:06', '2022-05-10 06:22:06', NULL),
(245, 'Squase', 't0b2hy4i@gmail.com', '89186471614', 'We have prepared a special offer for you. Take your 500$ https://tinyurl.com/y55ljuxe', '2022-05-10 08:11:04', '2022-05-10 08:11:04', NULL),
(246, 'HenryISods', 'yogo.saputra@gmail.com', '89038138059', 'One click of the robot can bring you thousands of bucks. https://ISods.187sued.de/gotodate/promo', '2022-05-10 11:22:26', '2022-05-10 11:22:26', NULL),
(247, 'Trudy', 'mail@andreaskube.com', '81-66-75-89', 'Good day, \r\n\r\nI hope you\'re doing well. I wanted to let you know about our new BANGE backpacks and sling bags that just released.\r\n\r\nThe bags are waterproof and anti-theft, and have a built-in USB cable that can recharge your phone while you\'re on the go.\r\n\r\nBoth bags are made of durable and high-quality materials, and are perfect for everyday use or travel.\r\n\r\nOrder yours now at 50% OFF with FREE Shipping: https://bangeonline.shop\r\n\r\nBest regards,\r\n\r\nTrudy', '2022-05-10 14:24:54', '2022-05-10 14:24:54', NULL),
(248, 'HenryISods', 'therealjeffgebert@gmail.com', '89031437283', 'Find out about the easiest way of money earning. https://ISods.187sued.de/gotodate/promo', '2022-05-10 16:33:40', '2022-05-10 16:33:40', NULL),
(249, 'HenryISods', 'mssunshine_1967@yahoo.com', '89034542767', 'The financial Robot is your future wealth and independence. https://ISods.187sued.de/gotodate/promo', '2022-05-10 21:37:11', '2022-05-10 21:37:11', NULL),
(250, 'HenryISods', 'A13bng@gmail.com', '89033783598', 'Let the Robot bring you money while you rest. https://ISods.187sued.de/gotodate/promo', '2022-05-11 02:32:21', '2022-05-11 02:32:21', NULL);
INSERT INTO `contacts` (`id`, `name`, `email`, `telephone_number`, `message`, `created_at`, `updated_at`, `deleted_at`) VALUES
(251, 'Valorie', 'info@arestec.com', '06359 88 59 03', 'Hey there, \r\n\r\nI hope you\'re doing well. I wanted to let you know about our new BANGE backpacks and sling bags that just released.\r\n\r\nThe bags are waterproof and anti-theft, and have a built-in USB cable that can recharge your phone while you\'re on the go.\r\n\r\nBoth bags are made of durable and high-quality materials, and are perfect for everyday use or travel.\r\n\r\nOrder yours now at 50% OFF with FREE Shipping: https://bangeonline.shop\r\n\r\nBest,\r\n\r\nValorie', '2022-05-11 02:56:49', '2022-05-11 02:56:49', NULL),
(252, 'HenryISods', 'thewaterboy78@hotmail.com', '89039593163', 'Start making thousands of dollars every week. https://ISods.187sued.de/gotodate/promo', '2022-05-11 07:23:17', '2022-05-11 07:23:17', NULL),
(253, 'HenryISods', 'srcastillo0405@gmail.com', '89035526814', 'Let your money grow into the capital with this Robot. https://ISods.187sued.de/gotodate/promo', '2022-05-11 12:21:09', '2022-05-11 12:21:09', NULL),
(254, 'Squase', '88eae4ph@icloud.com', '86981442317', 'We have prepared a special offer for you. Take your 500$ https://tinyurl.com/y4gtshdj', '2022-05-11 13:08:34', '2022-05-11 13:08:34', NULL),
(255, 'HenryISods', 'Kristin.l.e.cook@gmail.com', '89030004908', 'Everyone who needs money should try this Robot out. https://ISods.187sued.de/gotodate/promo', '2022-05-11 17:14:10', '2022-05-11 17:14:10', NULL),
(256, 'Emelia Johnson', 'julietteemelia@gmail.com', '06-38091875', 'Hi, \r\n\r\nWe\'re wondering if you\'d be interested in a backlink to dalbitpetroleum.com from our website that has a Moz Domain Authority of 50?\r\n\r\nWe charge just $30 (USD) to be paid via Paypal, card, or Payoneer. This is a one-time fee, so there are no extra charges and the link is permanent.\r\n\r\nIf you\'d like to know more about the site, please reply to this email and we can discuss further.\r\n\r\nKind Regards,\r\nEmelia\r\n\r\nIf you are not interested, opt out here: https://unsubscribe.contact/', '2022-05-11 21:21:18', '2022-05-11 21:21:18', NULL),
(257, 'HenryISods', 'Irdlyal@aol.com', '89033729839', 'Start making thousands of dollars every week just using this robot. https://ISods.187sued.de/gotodate/promo', '2022-05-11 22:06:16', '2022-05-11 22:06:16', NULL),
(258, 'Emelia Johnson', 'julietteemelia@gmail.com', NULL, 'Hi, \r\n\r\nWe\'re wondering if you\'d be interested in a \'dofollow\' backlink to dalbitpetroleum.com from our website that has a Moz Domain Authority of 50?\r\n\r\nWe charge just $40 (USD) to be paid via Paypal, card, or Payoneer. This is a one-time fee, so there are no extra charges and the link is permanent.\r\n\r\nIf you\'d like to know more about the site, please reply to this email and we can discuss further.\r\n\r\nKind Regards,\r\nEmelia\r\n\r\nIf you are not interested, opt out here: https://unsubscribe.contact/', '2022-05-11 23:51:24', '2022-05-11 23:51:24', NULL),
(259, 'HenryISods', 'TWOLF4124@AOL.COM', '89039222759', 'Let your money grow into the capital with this Robot. https://ISods.187sued.de/gotodate/promo', '2022-05-12 03:02:57', '2022-05-12 03:02:57', NULL),
(260, 'HenryISods', 'pink_shake@hotmail.com', '89031818249', 'Wow! This Robot is a great start for an online career. https://ISods.187sued.de/gotodate/promo', '2022-05-12 07:53:25', '2022-05-12 07:53:25', NULL),
(261, 'Robbqrm', 'ro.b.ert.br.ow.nm.o.on.m.a.ns@gmail.com', '83483535817', '<a href=https://bit.ly/3we9uwW>A new video is waiting! Click to watch!</a> \r\n<a href=https://bit.ly/3we9uwW><img src=\"https://i.ibb.co/qyXwBDc/beautiful-people-2.png\"></a>', '2022-05-12 12:01:32', '2022-05-12 12:01:32', NULL),
(262, 'vak', '3v0qh24h@icloud.com', '81614425693', 'Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/yy67zlsd', '2022-05-12 12:32:58', '2022-05-12 12:32:58', NULL),
(263, 'HenryISods', 'bearsrdiane@cox.net', '89036792694', 'The online income is your key to success. https://ISods.187sued.de/gotodate/promo', '2022-05-12 12:46:40', '2022-05-12 12:46:40', NULL),
(264, 'ohora@somitata.com', 'bchakka111975s@ronell.me', '819-460-0768', 'Congrats on your new site, get it listed here for free and we\'ll start sending people to your site https://bit.ly/submityoursite1000', '2022-05-12 17:08:14', '2022-05-12 17:08:14', NULL),
(265, 'HenryISods', 'krazedevil2009@aol.com', '89033998818', 'Need cash? Launch this robot and see what it can. https://ISods.187sued.de/gotodate/promo', '2022-05-12 20:15:59', '2022-05-12 20:15:59', NULL),
(266, 'HenryISods', 'Thekidres94@gmail.com', '89030661429', 'Financial robot keeps bringing you money while you sleep. https://ISods.187sued.de/gotodate/promo', '2022-05-13 01:11:23', '2022-05-13 01:11:23', NULL),
(267, 'HenryISods', 'carlson192@yahoo.com', '89035039312', 'Wow! This is a fastest way for a financial independence. https://ISods.187sued.de/gotodate/promo', '2022-05-13 06:28:48', '2022-05-13 06:28:48', NULL),
(268, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hello, my name’s Eric and I just ran across your website at dalbitpetroleum.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-05-13 09:59:19', '2022-05-13 09:59:19', NULL),
(269, 'HenryISods', 'GummyBear447@yahoo.com', '89032994753', 'The success formula is found. Learn more about it. https://ISods.187sued.de/gotodate/promo', '2022-05-13 11:19:34', '2022-05-13 11:19:34', NULL),
(270, 'vak', 'vyy1grd9@yahoo.com', '81262698117', 'Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/y3ekveqz', '2022-05-13 11:53:47', '2022-05-13 11:53:47', NULL),
(271, 'HenryISods', 'mariewdani25@gmail.com', '89034348323', 'Turn $1 into $100 instantly. Use the financial Robot. https://ISods.187sued.de/gotodate/promo', '2022-05-13 16:07:39', '2022-05-13 16:07:39', NULL),
(272, 'HenryISods', 'profesorrene@hotmail.com', '89030819811', 'Everyone can earn as much as he wants suing this Bot. https://ISods.187sued.de/gotodate/promo', '2022-05-13 20:59:44', '2022-05-13 20:59:44', NULL),
(273, 'HenryISods', 'joanne1962@windstream.net', '89039833805', 'The online job can bring you a fantastic profit. https://ISods.187sued.de/gotodate/promo', '2022-05-14 02:13:40', '2022-05-14 02:13:40', NULL),
(274, 'HenryISods', 'yours_mimi@hotmail.com', '89038405832', 'Need money? Earn it without leaving your home. https://ISods.187sued.de/gotodate/promo', '2022-05-14 07:40:07', '2022-05-14 07:40:07', NULL),
(275, 'Steve Watson', 'steve@explainervideos4u.info', '078 4938 0361', 'Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site dalbitpetroleum.com.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=ivTmAwuli14\r\nhttps://www.youtube.com/watch?v=uywKJQvfeAM\r\nhttps://www.youtube.com/watch?v=oPNdmMo40pI\r\nhttps://www.youtube.com/watch?v=6gRb-HPo_ck\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian/Canadian accents.\r\nWe can also produce voice overs in languages other than English.\r\n\r\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include an engaging, captivating video with full script and voice-over.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nSteve', '2022-05-14 09:22:45', '2022-05-14 09:22:45', NULL),
(276, 'HenryISods', 'baburr@live.com', '89036969046', 'Everyone can earn as much as he wants now. https://ISods.187sued.de/gotodate/promo', '2022-05-14 12:27:59', '2022-05-14 12:27:59', NULL),
(277, 'HenryISods', 'ru64@hotmail.com', '89037888005', 'Let the financial Robot be your companion in the financial market. https://ISods.187sued.de/gotodate/promo', '2022-05-14 17:43:39', '2022-05-14 17:43:39', NULL),
(278, 'HenryISods', 'otmanmoussa@gmail.com', '89032917984', 'Need money? The financial robot is your solution. https://ISods.187sued.de/gotodate/promo', '2022-05-14 22:40:59', '2022-05-14 22:40:59', NULL),
(279, 'HenryISods', 'maihobbsmppnxuks@hotmail.com', '89030694111', 'Make dollars just sitting home. https://ISods.187sued.de/gotodate/promo', '2022-05-15 03:32:38', '2022-05-15 03:32:38', NULL),
(280, 'KjabutiDracy', 'sanja.fila.t.o.vy.g.99.s@gmail.com', '85332976925', 'Thank you for registering. Follow the link and choose a girl for sex next to you https://your-dating-place.life/?u=wh5kd06&o=qxpp80k&m=1', '2022-05-15 06:44:59', '2022-05-15 06:44:59', NULL),
(281, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hey, this is Eric and I ran across dalbitpetroleum.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-05-15 07:25:31', '2022-05-15 07:25:31', NULL),
(282, 'CegeicuDracy', 'sanja.fila.t.o.vy.g.99s@gmail.com', '81285772573', 'Fuck me right now. How much longer to wait here https://your-dating-place.life/?u=wh5kd06&o=qxpp80k&m=1', '2022-05-15 07:50:36', '2022-05-15 07:50:36', NULL),
(283, 'HenryISods', 'milo_6399@yahoo.com', '89031154101', 'Financial robot keeps bringing you money while you sleep. https://ISods.187sued.de/gotodate/promo', '2022-05-15 08:23:40', '2022-05-15 08:23:40', NULL),
(284, 'HenryISods', 'bryantamberissa@yahoo.com', '89036556653', 'We know how to make our future rich and do you? https://ISods.187sued.de/gotodate/promo', '2022-05-15 13:19:20', '2022-05-15 13:19:20', NULL),
(285, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'My name’s Eric and I just found your site dalbitpetroleum.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE https://jumboleadmagnet.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-05-15 13:51:34', '2022-05-15 13:51:34', NULL),
(286, 'HenryISods', 'Laddysown@yahoo.com', '89036890897', 'Robot never sleeps. It makes money for you 24/7. https://ISods.187sued.de/gotodate/promo', '2022-05-15 19:26:44', '2022-05-15 19:26:44', NULL),
(287, 'HenryISods', 'lafemme_nicole@yahoo.com', '89032170193', 'The fastest way to make your wallet thick is found. https://ISods.187sued.de/gotodate/promo', '2022-05-16 00:19:05', '2022-05-16 00:19:05', NULL),
(288, 'Dick', 'info@heartfire-yoga.com', '845-265-4348', 'Morning \r\n\r\nI wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nThank You, \r\n\r\nDick', '2022-05-16 04:06:06', '2022-05-16 04:06:06', NULL),
(289, 'HenryISods', 'chrishaun322@aol.com', '89038609244', 'Even a child knows how to make money. This robot is what you need! https://ISods.187sued.de/gotodate/promo', '2022-05-16 05:07:59', '2022-05-16 05:07:59', NULL),
(290, 'HenryISods', 'joann@ehlinsurance.com', '89035991483', 'Every your dollar can turn into $100 after you lunch this Robot. https://ISods.187sued.de/gotodate/promo', '2022-05-16 10:14:15', '2022-05-16 10:14:15', NULL),
(291, 'vak', 'lrydtgq6@gmail.com', '83429244991', 'Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/y5mbg7u3', '2022-05-16 12:25:48', '2022-05-16 12:25:48', NULL),
(292, 'Nidia', 'info@backpackergirls.com.au', '(03) 5373 5984', 'Hi there \r\n\r\nI wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nBest, \r\n\r\nNidia', '2022-05-16 22:08:06', '2022-05-16 22:08:06', NULL),
(293, 'HenryISods', 'bohemia3810@gmail.com', '89034507027', 'Trust the financial Bot to become rich. https://ISods.187sued.de/gotodate/promo', '2022-05-17 04:41:05', '2022-05-17 04:41:05', NULL),
(294, 'HenryISods', 'ccooperman@mac.com', '89031115319', 'Money, money! Make more money with financial robot! https://ISods.187sued.de/gotodate/promo', '2022-05-17 09:31:38', '2022-05-17 09:31:38', NULL),
(295, 'HenryISods', 'rose322015@msn.com', '89036428416', 'Making money in the net is easier now. https://ISods.187sued.de/gotodate/promo', '2022-05-17 14:21:09', '2022-05-17 14:21:09', NULL),
(296, 'Alfred Ariaro', 'ogwenoariaro@gmail.com', '0701686181', 'I am a Petroleum Engineering trainee at Kenyatta University Kenya. I am awaiting graduation in July of this year having completed my coursework and would like to join your organization as I feel this is an opportunity to showcase my skills as well as acquire immense knowledge and skills from you. Thank you in advance for your response.', '2022-05-17 17:45:19', '2022-05-17 17:45:19', NULL),
(297, 'HenryISods', 'jpetsrock@aol.com', '89037195880', 'Financial independence is what everyone needs. https://ISods.187sued.de/gotodate/promo', '2022-05-17 19:13:01', '2022-05-17 19:13:01', NULL),
(298, 'ntoukirhasan7860@jaypetfood.com', 'gemooboy.lovej@bucol.net', '21-11-85-69', 'Free submission of your new website to over 1000 business directories here https://bit.ly/submityoursite1000', '2022-05-17 21:40:33', '2022-05-17 21:40:33', NULL),
(299, 'vak', '7mkaxoia@icloud.com', '82889945677', 'Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/y48qrk9x', '2022-05-17 22:53:18', '2022-05-17 22:53:18', NULL),
(300, 'HenryISods', 'kantaramian@att.net', '89032749652', 'Online earnings are the easiest way for financial independence. https://ISods.187sued.de/gotodate/promo', '2022-05-17 23:57:31', '2022-05-17 23:57:31', NULL),
(301, 'Mohamed Bermudez', 'mohamed@topdatalist.com', 'NA', 'Hi, my name is Mohamed from TopDataList.com\r\n\r\nWe are ceasing operations on TopDataList.com and have made our leads available at a discounted price.\r\n\r\nVisit us on TopDataList.com\r\nRegards,\r\nMohamed', '2022-05-18 00:43:47', '2022-05-18 00:43:47', NULL),
(302, 'HenryISods', 'tulips56@comcast.net', '89032695740', 'Find out about the easiest way of money earning. https://ISods.187sued.de/gotodate/link', '2022-05-18 04:47:49', '2022-05-18 04:47:49', NULL),
(303, 'HenryISods', 'Whatjmb@gmail.com', '89033456580', 'There is no need to look for a job anymore. Work online. https://ISods.187sued.de/gotodate/link', '2022-05-18 08:54:51', '2022-05-18 08:54:51', NULL),
(304, 'HenryISods', 'djburton93@yahoo.com', '89030019680', 'We have found the fastest way to be rich. Find it out here. https://ISods.187sued.de/gotodate/link', '2022-05-18 13:46:17', '2022-05-18 13:46:17', NULL),
(305, 'HenryISods', 'queenparanoid0812@yahoo.com', '89037209312', 'We know how to increase your financial stability. https://ISods.187sued.de/gotodate/link', '2022-05-18 18:41:04', '2022-05-18 18:41:04', NULL),
(306, 'HenryISods', 'mirza.aksamic@gmail.com', '89037894738', 'Everyone can earn as much as he wants now. https://ISods.187sued.de/gotodate/link', '2022-05-18 23:34:07', '2022-05-18 23:34:07', NULL),
(307, 'HenryISods', 'celodorvern@outlook.com', '89031009334', 'Financial robot is your success formula is found. Learn more about it. https://ISods.187sued.de/gotodate/link', '2022-05-19 04:38:57', '2022-05-19 04:38:57', NULL),
(308, 'vak', 'sp4dxhh5@gmail.com', '86637488645', 'Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/y27vq2dd', '2022-05-19 04:40:17', '2022-05-19 04:40:17', NULL),
(309, 'Robthd', NULL, '81555226473', '<a href=https://ukrainatoday.com.ua/s/VOJMN>Interactive map of Hostilities in Ukraine on May 4, 2022 Update every Day</a> \r\n<a href=https://ukrainatoday.com.ua/s/VOJMN><img src=\"https://i.ibb.co/BsVRk5b/karta-boevyh-dejstvij-5maya-1.jpg\"></a>', '2022-05-19 11:22:59', '2022-05-19 11:22:59', NULL),
(310, 'HenryISods', 'anthonymclendon28@yahoo.com', '89034085968', 'Financial independence is what everyone needs. https://ISods.187sued.de/gotodate/link', '2022-05-19 11:38:59', '2022-05-19 11:38:59', NULL),
(311, 'JamesPut', 'adalaidecruz1996@gmail.com', '82349258269', 'QUICK INCOME FROM $599458 PER WEEK https://157usd-for-3-minutes.blogspot.ro/p/online-income-up-to-5000-per-day.html?id50096', '2022-05-19 13:46:03', '2022-05-19 13:46:03', NULL),
(312, 'HenryISods', 'ibsexylbnva@yahoo.com', '89032406950', 'Need some more money? Robot will earn them really fast. https://ISods.187sued.de/gotodate/link', '2022-05-19 16:33:24', '2022-05-19 16:33:24', NULL),
(313, 'HenryISods', 'josephinebalderama1980@yahoo.com', '89033100669', 'Small investments can bring tons of dollars fast. https://ISods.bookeat.es/gotodate/promo', '2022-05-19 21:25:02', '2022-05-19 21:25:02', NULL),
(314, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'My name’s Eric and I just came across your website - dalbitpetroleum.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like dalbitpetroleum.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n \r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-05-20 23:29:58', '2022-05-20 23:29:58', NULL),
(315, 'HenryISods', 'corky66@sbcglobal.net', '89030433410', 'We have found the fastest way to be rich. Find it out here. https://ISods.bookeat.es/gotodate/promo', '2022-05-20 23:57:16', '2022-05-20 23:57:16', NULL),
(316, 'Reina', 'mamitaisou@mami-taisou.com', '(08) 8257 6653', 'Hi there!\r\n\r\nI understand that you are looking for ways to improve your posture and contribute to a healthy lifestyle. I think our product, Medico Postura™ Body Posture Corrector, can be of great help.\r\n\r\nMedico Postura™ helps improve your posture INSTANTLY. It is an easy-to-use device that you can wear at home, work, or even when you are sleeping.\r\n\r\nIt is made of lightweight and breathable fabric, making it comfortable to wear all day long.\r\n\r\nGet it today while it\'s still 60% OFF: https://medicopostura.com \r\n\r\nFREE Shipping - TODAY ONLY!\r\n\r\nThanks and Best Regards, \r\n\r\nReina', '2022-05-21 04:18:58', '2022-05-21 04:18:58', NULL),
(317, 'Ranker SEO', 'timothy.bunting23@hotmail.com', '51 401 78 88', 'Hello, \r\n\r\nGreetings from Ranker SEO.\r\n\r\nAre you looking for a genuine SEO service to rank your website top on Google? Are you cheated by fake SEO companies? \r\n\r\nYou have found an affordable legitimate SEO agency to rank your website.\r\n\r\nWe have ranked 100s of websites such as blogs, shopify stores, ecommerce websites, adult websites, saas websites, etc. You can reach more customers by utilizing our backlinks.\r\n\r\nFor real proof, you can visit our website and check out. Contact us for more details.\r\n\r\nOur Skype ID: support@ranker.one\r\nOur Website: https://www.ranker.one\r\n\r\nThanks & Regards\r\nRanker SEO\r\n\r\nIf you don\'t like to receive our messages, you can unsubscribe by click here https://www.ranker.one/unsubscribe/?site=dalbitpetroleum.com', '2022-05-21 07:21:08', '2022-05-21 07:21:08', NULL),
(318, 'HenryISods', 'tawniaremmell@msn.com', '89035179475', 'Let your money grow into the capital with this Robot. https://ISods.bookeat.es/gotodate/promo', '2022-05-21 23:38:21', '2022-05-21 23:38:21', NULL),
(319, 'vak', '6axvwh1u@yahoo.com', '88186198313', 'Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/y282evar', '2022-05-22 03:11:29', '2022-05-22 03:11:29', NULL),
(320, 'HenryISods', 'amgems@live.com', '89037724827', 'Every your dollar can turn into $100 after you lunch this Robot. https://ISods.bookeat.es/gotodate/promo', '2022-05-22 04:49:25', '2022-05-22 04:49:25', NULL),
(321, 'HenryISods', 'nxsgt03@yahoo.com', '89031818169', 'Let your money grow into the capital with this Robot. https://ISods.bookeat.es/gotodate/promo', '2022-05-22 08:06:30', '2022-05-22 08:06:30', NULL),
(322, 'HenryISods', 'trw.70@knology.net', '89031281897', 'Launch the financial Bot now to start earning. https://ISods.bookeat.es/gotodate/promo', '2022-05-22 13:03:35', '2022-05-22 13:03:35', NULL),
(323, 'HenryISods', 'ssgmullins@gmail.com', '89035917987', 'Trust your dollar to the Robot and see how it grows to $100. https://ISods.bookeat.es/gotodate/promo', '2022-05-22 17:57:40', '2022-05-22 17:57:40', NULL),
(324, 'HenryISods', 'mrs.quik1005@yahoo.com', '89036868655', 'Let the Robot bring you money while you rest. https://ISods.bookeat.es/gotodate/promo', '2022-05-22 23:10:23', '2022-05-22 23:10:23', NULL),
(325, 'HenryISods', 'Wooleychad@yahoo.com', '89034327472', 'Everyone can earn as much as he wants now. https://ISods.bookeat.es/gotodate/promo', '2022-05-23 04:02:06', '2022-05-23 04:02:06', NULL),
(326, 'HenryISods', 'sidra777@gmail.com', '89039427192', 'Your computer can bring you additional income if you use this Robot. https://ISods.bookeat.es/gotodate/promo', '2022-05-23 08:52:36', '2022-05-23 08:52:36', NULL),
(327, 'JamesPut', 'johnman961979@gmail.com', '86668972428', 'TOP in Google for 2 weeks https://telegra.ph/Your-site-is-in-the-TOP-of-Google-in-2-weeks-safely-05-20?id95860', '2022-05-23 12:35:15', '2022-05-23 12:35:15', NULL),
(328, 'HenryISods', 'nannie50@sbcglobal.net', '89034525758', 'Even a child knows how to make money. This robot is what you need! https://ISods.bookeat.es/gotodate/promo', '2022-05-23 13:59:54', '2022-05-23 13:59:54', NULL),
(329, 'Idzz1h7412', 'axmanova.vera@inbox.ru', '87957951659', 'Выплатa пoлучена \r\nПодробнее: https://forms.yandex.ru/u/AAAAAdalbitpetroleum.comBBBBB/success/', '2022-05-23 15:50:51', '2022-05-23 15:50:51', NULL),
(330, 'HenryISods', 'c.indycra99@gmail.com', '89035817980', 'Attention! Financial robot may bring you millions! https://ISods.bookeat.es/gotodate/promo', '2022-05-23 18:49:58', '2022-05-23 18:49:58', NULL),
(331, 'HenryISods', 'artur4566@gmail.com', '89034495475', 'Looking forward for income? Get it online. https://ISods.bookeat.es/gotodate/promo', '2022-05-23 23:45:02', '2022-05-23 23:45:02', NULL),
(332, 'HenryISods', 'wlfpack777@hotmail.com', '89034220391', 'The financial Robot works for you even when you sleep. https://ISods.bookeat.es/gotodate/promotion', '2022-05-24 04:37:34', '2022-05-24 04:37:34', NULL),
(333, 'HenryISods', 'aew_alw120108@yahoo.com', '89039837249', 'Robot is the best way for everyone who looks for financial independence. https://ISods.bookeat.es/gotodate/promotion', '2022-05-24 07:19:58', '2022-05-24 07:19:58', NULL),
(334, 'HenryISods', 'z.s.w.fxoq.ro.xl.j@gmail.com', '89039021916', 'Making money can be extremely easy if you use this Robot. https://ISods.bookeat.es/gotodate/promotion', '2022-05-24 07:24:49', '2022-05-24 07:24:49', NULL),
(335, 'HenryISods', 'hazel_dreamer@yahoo.com', '89030072910', 'The huge income without investments is available. https://ISods.bookeat.es/gotodate/promotion', '2022-05-24 09:32:51', '2022-05-24 09:32:51', NULL),
(336, 'HenryISods', 'u.np.ac.kwrr.q.v.gm@gmail.com', '89030380878', 'The fastest way to make you wallet thick is here. https://ISods.bookeat.es/gotodate/promotion', '2022-05-24 14:25:21', '2022-05-24 14:25:21', NULL),
(337, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Cool website!\r\n\r\nMy name’s Eric, and I just found your site - dalbitpetroleum.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across dalbitpetroleum.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-05-24 17:45:45', '2022-05-24 17:45:45', NULL),
(338, 'HenryISods', 'wayneswayne6237@mmmmail.com', '89034328163', 'Make money online, staying at home this cold winter. https://ISods.bookeat.es/gotodate/promotion', '2022-05-24 19:26:34', '2022-05-24 19:26:34', NULL),
(339, 'HenryISods', 'megan_ngragg@yahoo.com', '89030671091', 'The online income is your key to success. https://ISods.bookeat.es/gotodate/promotion', '2022-05-24 21:32:45', '2022-05-24 21:32:45', NULL),
(340, 'HenryISods', 'qazplak_11@yahoo.com', '89037052315', 'Financial robot is the best companion of rich people. https://ISods.bookeat.es/gotodate/promotion', '2022-05-24 22:04:52', '2022-05-24 22:04:52', NULL),
(341, 'nam918995tetcher', 'h4h81vmd5d72@snapmail.ru', '81857514935', 'mis918995rttyneg XT9fkoH qOx6 SVgAzqR', '2022-05-24 23:57:28', '2022-05-24 23:57:28', NULL),
(342, 'Charlottaxwn', 'c.h.a.rlo.t.t.e.a.nd.er.so.n.367@gmail.com', '84525174437', '<a href=https://bit.ly/3wBTcOw>I can\'t wait to show you an unusual pose. In the meantime, pretend I\'m doing it right now. Just don\'t go crazy with desire.</a> \r\n<a href=https://bit.ly/3wBTcOw><img src=\"https://i.ibb.co/VmRJCSZ/17.jpg\"></a>', '2022-05-25 00:14:51', '2022-05-25 00:14:51', NULL),
(343, '5hoss@gmailup.com', 'vnatasha.sunaina4@tahugejrot.buzz', '0328 6698435', 'Submit your site to over 1000 advertising websites for free now https://bit.ly/submityoursite1000', '2022-05-25 00:23:01', '2022-05-25 00:23:01', NULL),
(344, 'HenryISods', 'ddrennen@bedford.k12.va.us', '89034464274', 'Start making thousands of dollars every week just using this robot. https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 00:47:34', '2022-05-25 00:47:34', NULL),
(345, 'HenryISods', 'klsnooks@hotmail.com', '89032507847', 'Make thousands of bucks. Pay nothing. https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 02:25:58', '2022-05-25 02:25:58', NULL),
(346, 'HenryISods', 'mimiarnatt@yahoo.com', '89037493423', 'Financial robot is your success formula is found. Learn more about it. https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 04:13:33', '2022-05-25 04:13:33', NULL),
(347, 'HenryISods', 'geoffrey.richardson62@gmail.com', '89031076511', 'The best online job for retirees. Make your old ages rich. https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 05:48:38', '2022-05-25 05:48:38', NULL),
(348, 'HenryISods', 'sandals1314@aol.com', '89033262753', 'Make thousands every week working online here. https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 07:20:53', '2022-05-25 07:20:53', NULL),
(349, 'HenryISods', 'bill.edwards@douglasmurphy.com', '89034246628', 'The online income is your key to success. https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 09:40:59', '2022-05-25 09:40:59', NULL),
(350, 'HenryISods', 'skipali@msn.com', '89031017240', 'Launch the financial Bot now to start earning. https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 09:54:57', '2022-05-25 09:54:57', NULL),
(351, 'HenryISods', 'kittynicole2004@sbcglobal.net', '89035822435', 'Start making thousands of dollars every week. https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 12:16:36', '2022-05-25 12:16:36', NULL),
(352, 'HenryISods', 'zinvascar@yahoo.com', '89039477309', 'One dollar is nothing, but it can grow into $100 here. https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 14:38:33', '2022-05-25 14:38:33', NULL),
(353, 'HenryISods', 'Juliemartinez60@yahoo.com', '89036826832', 'Still not a millionaire? Fix it now! https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 15:50:07', '2022-05-25 15:50:07', NULL),
(354, 'HenryISods', 'jnlharthur@aol.com', '89035325386', 'The fastest way to make you wallet thick is here. https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 19:29:00', '2022-05-25 19:29:00', NULL),
(355, 'HenryISods', 'abdul_manager@yahoo.com', '89031503050', 'Launch the financial Robot and do your business. https://ISods.bookeat.es/gotodate/promotion', '2022-05-25 21:20:51', '2022-05-25 21:20:51', NULL),
(356, 'nem918995flebno', 'h4h81vmd5d72@snapmail.ru', '86856391188', 'mes918995uttjr S2UEvPE 0hxx laGWFIJ', '2022-05-26 00:45:43', '2022-05-26 00:45:43', NULL),
(357, 'Domenic', 'mgiraldo@eyecatch.co', '42-96-41-28', 'Good day\r\n\r\nOur Medical-Grade Toenail Clippers is the safest and especially recommended for those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, thickened nails etc..\r\n\r\nGet yours: https://thepodiatrist.shop\r\n\r\nMany Thanks,\r\n\r\nDomenic', '2022-05-26 19:16:25', '2022-05-26 19:16:25', NULL),
(358, 'vak', '5vo8t06s@yahoo.com', '82959944978', 'Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/2fyc63px', '2022-05-27 02:05:16', '2022-05-27 02:05:16', NULL),
(359, 'Olisacog', NULL, '88441293289', '<a href=https://bit.ly/3sFQ5DS>Let\'s play a little Tonight, shall We? I can\'t hold back Anymore!!!</a>', '2022-05-28 00:20:08', '2022-05-28 00:20:08', NULL),
(360, 'HenryISods', 'ambiguousdesperca1973@yahoo.com', '89031595334', 'The financial Robot is your future wealth and independence. https://ISods.battletech-newsletter.de/gotodate/promo', '2022-05-28 01:01:08', '2022-05-28 01:01:08', NULL),
(361, 'HenryISods', 'vitorfonseca17@hotmail.com', '89030010639', 'Wow! This is a fastest way for a financial independence. https://ISods.battletech-newsletter.de/ISods', '2022-05-28 02:15:50', '2022-05-28 02:15:50', NULL),
(362, 'HenryISods', 'autan3412@hotmail.com', '89038194893', 'No worries if you are fired. Work online. https://ISods.battletech-newsletter.de/ISods', '2022-05-28 03:31:47', '2022-05-28 03:31:47', NULL),
(363, 'HenryISods', 'carriere315@hotmail.com', '89034895774', 'Online job can be really effective if you use this Robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-28 05:48:27', '2022-05-28 05:48:27', NULL),
(364, 'HenryISods', 'desireejean3672@aim.com', '89031791471', 'Let your money grow into the capital with this Robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-28 07:55:31', '2022-05-28 07:55:31', NULL),
(365, 'HenryISods', 'mmpalanza@gmail.com', '89035199903', 'The best online investment tool is found. Learn more! https://ISods.battletech-newsletter.de/ISods', '2022-05-28 08:25:48', '2022-05-28 08:25:48', NULL),
(366, 'HenryISods', 'shawn.hicks@comcast.net', '89036062812', 'Start making thousands of dollars every week. https://ISods.battletech-newsletter.de/ISods', '2022-05-28 11:20:28', '2022-05-28 11:20:28', NULL),
(367, 'Charlotteykv', 'ch.a.r.l.ottea.n.de.rson.36.7@gmail.com', '84912817634', '<a href=https://bit.ly/3L7KkFE>I know what to offer you tonight. Do you want this night to be unforgettable?</a>', '2022-05-28 12:46:08', '2022-05-28 12:46:08', NULL),
(368, 'HenryISods', 'dotlines@lineone.net', '89033381842', 'Need money? Get it here easily? https://ISods.battletech-newsletter.de/ISods', '2022-05-28 13:19:45', '2022-05-28 13:19:45', NULL),
(369, 'HenryISods', 'wlby5@msn.com', '89035774349', 'Make dollars just sitting home. https://ISods.battletech-newsletter.de/ISods', '2022-05-28 13:32:00', '2022-05-28 13:32:00', NULL),
(370, 'Bonface otieno Oluoch', 'oluochbonnie@gmail.com', NULL, 'Am well trained tank erector and pipe fitter...Incase of any opportunity of such duty please contact me..Here are my contacts 0701495578,0737974538', '2022-05-28 14:36:56', '2022-05-28 14:36:56', NULL),
(371, 'Bonface otieno Oluoch', 'oluochbonnie@gmail.com', NULL, 'Am well trained tank erector and pipe fitter...Incase of any opportunity of such duty please contact me..Here are my contacts 0701495578,0737974538', '2022-05-28 14:37:13', '2022-05-28 14:37:13', NULL),
(372, 'Bonface otieno Oluoch', 'oluochbonnie@gmail.com', NULL, 'Am well trained tank erector and pipe fitter...Incase of any opportunity of such duty please contact me..Here are my contacts 0701495578,0737974538', '2022-05-28 14:37:26', '2022-05-28 14:37:26', NULL),
(373, 'Bonface otieno Oluoch', 'oluochbonnie@gmail.com', '+254701495578', 'Am well trained tank erector and pipe fitter...Incase of any opportunity of such duty please contact me..Here are my contacts 0701495578,0737974538', '2022-05-28 14:38:11', '2022-05-28 14:38:11', NULL),
(374, 'HenryISods', 'piearekay@yahoo.com', '89036468003', 'Learn how to make hundreds of backs each day. https://ISods.battletech-newsletter.de/ISods', '2022-05-28 16:52:51', '2022-05-28 16:52:51', NULL),
(375, 'HenryISods', 'PEREZJR.GILBERT88@YAHOO.COM', '89035923382', 'Making money is very easy if you use the financial Robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-28 18:17:56', '2022-05-28 18:17:56', NULL),
(376, 'HenryISods', 'afields338@gmail.com', '89032525055', 'Financial robot guarantees everyone stability and income. https://ISods.battletech-newsletter.de/ISods', '2022-05-28 19:09:44', '2022-05-28 19:09:44', NULL),
(377, 'HenryISods', 'TABOOBRUCE4444@GMAIL.COM', '89031374749', 'The huge income without investments is available. https://ISods.battletech-newsletter.de/ISods', '2022-05-28 21:42:12', '2022-05-28 21:42:12', NULL),
(378, 'vak', 'xs8usbov@hotmail.com', '85167391519', 'Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/2o5622l2', '2022-05-28 22:51:54', '2022-05-28 22:51:54', NULL),
(379, 'Buck Kohlmeier', 'kohlmeier.buck@outlook.com', '0479 88 71 03', 'Hi there\r\nDo you want to get backlinks from domains that have tons of ranking keywords?\r\n\r\nhttps://www.monkeydigital.co/semrush-backlinks/', '2022-05-29 00:01:22', '2022-05-29 00:01:22', NULL),
(380, 'HenryISods', 'bellscouture@yahoo.com', '89030405721', 'Launch the financial Robot and do your business. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 00:47:13', '2022-05-29 00:47:13', NULL),
(381, 'HenryISods', 'jazzfresh@gmail.com', '89035047085', 'Wow! This Robot is a great start for an online career. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 00:55:51', '2022-05-29 00:55:51', NULL),
(382, 'HenryISods', 'ronjan1989@aol.com', '89031101571', 'Your computer can bring you additional income if you use this Robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 02:33:43', '2022-05-29 02:33:43', NULL),
(383, 'HenryISods', 'wmbransom@aol.com', '89039637353', 'The best way for everyone who rushes for financial independence. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 04:37:23', '2022-05-29 04:37:23', NULL),
(384, 'HenryISods', 'jacksonpayroll@nctv.com', '89037455738', 'Buy everything you want earning money online. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 06:27:20', '2022-05-29 06:27:20', NULL),
(385, 'HenryISods', 'www.getemgirl@yahoo.com', '89035252405', 'Making money in the net is easier now. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 07:21:25', '2022-05-29 07:21:25', NULL),
(386, 'HenryISods', 'sdeniseparker@yahoo.com', '89039848583', 'Earn additional money without efforts. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 12:06:19', '2022-05-29 12:06:19', NULL),
(387, 'HenryISods', 'uncannilyology@hotmail.com', '89037001688', 'Wow! This Robot is a great start for an online career. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 14:37:50', '2022-05-29 14:37:50', NULL),
(388, 'HenryISods', 'jfipande@hotmail.com', '89034717574', 'Most successful people already use Robot. Do you? https://ISods.battletech-newsletter.de/ISods', '2022-05-29 17:44:16', '2022-05-29 17:44:16', NULL),
(389, 'HenryISods', 'mollyymo@aol.com', '89033866004', 'Let the financial Robot be your companion in the financial market. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 17:57:06', '2022-05-29 17:57:06', NULL),
(390, 'HenryISods', 'couchpotato92@msn.com', '89032515130', 'Turn $1 into $100 instantly. Use the financial Robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 19:27:10', '2022-05-29 19:27:10', NULL),
(391, 'HenryISods', 'jessicajsalloum@icloud.com', '89036382155', '# 1 financial expert in the net! Check out the new Robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 22:53:24', '2022-05-29 22:53:24', NULL),
(392, 'HenryISods', 'frissi9324@gmail.com', '89034414326', 'Everyone can earn as much as he wants now. https://ISods.battletech-newsletter.de/ISods', '2022-05-29 23:17:17', '2022-05-29 23:17:17', NULL),
(393, 'HenryISods', 'keller0@yahoo.com', '89032916263', 'Invest $1 today to make $1000 tomorrow. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 00:14:45', '2022-05-30 00:14:45', NULL),
(394, 'HenryISods', 'emmaleepriscilla2@gmail.com', '89039086400', 'Most successful people already use Robot. Do you? https://ISods.battletech-newsletter.de/ISods', '2022-05-30 03:53:38', '2022-05-30 03:53:38', NULL),
(395, 'HenryISods', 'terrygill6564@yahoo.com', '89030562227', 'Turn $1 into $100 instantly. Use the financial Robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 04:56:53', '2022-05-30 04:56:53', NULL),
(396, 'HenryISods', 'greg.jackson1972@yahoo.com', '89031626317', 'Turn $1 into $100 instantly. Use the financial Robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 04:57:19', '2022-05-30 04:57:19', NULL),
(397, 'HenryISods', 'ccmarsolek@msn.com', '89034251537', 'The additional income is available for everyone using this robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 09:07:37', '2022-05-30 09:07:37', NULL),
(398, 'HenryISods', 'glassbeads_1983@yahoo.com', '89031157000', 'Your computer can bring you additional income if you use this Robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 10:24:49', '2022-05-30 10:24:49', NULL),
(399, 'HenryISods', 'castingme2003@yahoo.com', '89039267741', 'Rich people are rich because they use this robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 11:19:39', '2022-05-30 11:19:39', NULL),
(400, 'HenryISods', 'tech_n9ne_95@yahoo.com', '89039402757', 'The additional income for everyone. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 14:24:11', '2022-05-30 14:24:11', NULL),
(401, 'HenryISods', 'amercedes809@gmail.com', '89033385286', 'Let your money grow into the capital with this Robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 16:00:16', '2022-05-30 16:00:16', NULL),
(402, 'HenryISods', 'ggirl8869@yahoo.com', '89036070821', 'We have found the fastest way to be rich. Find it out here. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 16:00:41', '2022-05-30 16:00:41', NULL),
(403, 'HenryISods', 'tearsofanangel7@gmail.com', '89036838717', 'Buy everything you want earning money online. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 18:42:09', '2022-05-30 18:42:09', NULL),
(404, 'HenryISods', 'ouantadi-imane@hotmail.com', '89037624914', 'Launch the financial Bot now to start earning. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 20:49:10', '2022-05-30 20:49:10', NULL),
(405, 'HenryISods', 'mervweb58@cpws.net', '89035833236', 'Check out the newest way to make a fantastic profit. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 22:01:04', '2022-05-30 22:01:04', NULL),
(406, 'Silvia Reis', 'silvia.sirial@gmail.com', '+244924480858', 'Cordiais Saudações. \r\nPrezados Senhores.\r\nMeu nome é Silvia Reis, representante da Empresa Sirial, Lda.\r\nPesquisei vossa empresa pela internet. \r\nGostaria de saber que tipo de serviço, a Dalbit presta em Mozambique.\r\nEstamos a procura de uma empresa que presta serviços de aluguel de tanques para reservar gasolina.\r\nAguardo vossa resposta com maior brevidade possível. \r\nGrata pra atenção dispensada. \r\nCumprimentos, \r\nSílvia Reis', '2022-05-30 22:25:34', '2022-05-30 22:25:34', NULL),
(407, 'Silvia Reis', 'silvia.sirial@gmail.com', '+244924480858', 'Cordiais Saudações. \r\nPrezados Senhores.\r\nMeu nome é Silvia Reis, representante da Empresa Sirial, Lda.\r\nPesquisei vossa empresa pela internet. \r\nGostaria de saber que tipo de serviço, a Dalbit presta em Mozambique.\r\nEstamos a procura de uma empresa que presta serviços de aluguel de tanques para reservar gasolina.\r\nAguardo vossa resposta com maior brevidade possível. \r\nGrata pra atenção dispensada. \r\nCumprimentos, \r\nSílvia Reis', '2022-05-30 22:25:36', '2022-05-30 22:25:36', NULL);
INSERT INTO `contacts` (`id`, `name`, `email`, `telephone_number`, `message`, `created_at`, `updated_at`, `deleted_at`) VALUES
(408, 'Silvia Reis', 'silvia.sirial@gmail.com', NULL, 'Cordiais Saudações. \r\nPrezados Senhores.\r\nMeu nome é Silvia Reis, representante da Empresa Sirial, Lda.\r\nPesquisei vossa empresa pela internet. \r\nGostaria de saber que tipo de serviço, a Dalbit presta em Mozambique.\r\nEstamos a procura de uma empresa que presta serviços de aluguel de tanques para reservar gasolina.\r\nAguardo vossa resposta com maior brevidade possível. \r\nGrata pra atenção dispensada. \r\nCumprimentos, \r\nSílvia Reis', '2022-05-30 22:25:45', '2022-05-30 22:25:45', NULL),
(409, 'Silvia Reis', 'silvia.sirial@gmail.com', NULL, 'Cordiais Saudações. \r\nPrezados Senhores.\r\nMeu nome é Silvia Reis, representante da Empresa Sirial, Lda.\r\nPesquisei vossa empresa pela internet. \r\nGostaria de saber que tipo de serviço, a Dalbit presta em Mozambique.\r\nEstamos a procura de uma empresa que presta serviços de aluguel de tanques para reservar gasolina.\r\nAguardo vossa resposta com maior brevidade possível. \r\nGrata pra atenção dispensada. \r\nCumprimentos, \r\nSílvia Reis', '2022-05-30 22:26:56', '2022-05-30 22:26:56', NULL),
(410, 'HenryISods', 'exquisite.melody@gmail.com', '89030938822', 'Trust your dollar to the Robot and see how it grows to $100. https://ISods.battletech-newsletter.de/ISods', '2022-05-30 23:38:52', '2022-05-30 23:38:52', NULL),
(411, 'HenryISods', 'twilightbaby264@yahoo.com', '89037804589', 'Start making thousands of dollars every week just using this robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-31 01:39:11', '2022-05-31 01:39:11', NULL),
(412, 'HenryISods', 'amberr1227@hotmail.com', '89032224061', 'Check out the new financial tool, which can make you rich. https://ISods.battletech-newsletter.de/ISods', '2022-05-31 03:40:41', '2022-05-31 03:40:41', NULL),
(413, 'HenryISods', 'gemmaszk@msn.com', '89036278229', 'Let the Robot bring you money while you rest. https://ISods.battletech-newsletter.de/ISods', '2022-05-31 04:29:22', '2022-05-31 04:29:22', NULL),
(414, 'HenryISods', 'marilyn@odzbodkins.com', '89039860651', 'Turn $1 into $100 instantly. Use the financial Robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-31 06:26:46', '2022-05-31 06:26:46', NULL),
(415, 'HenryISods', 'azraglovesillegals@yahoo.com', '89030026105', 'Start making thousands of dollars every week. https://ISods.battletech-newsletter.de/ISods', '2022-05-31 09:23:02', '2022-05-31 09:23:02', NULL),
(416, 'HenryISods', 'carrie.longley@gmail.com', '89030901051', 'Most successful people already use Robot. Do you? https://ISods.battletech-newsletter.de/ISods', '2022-05-31 11:33:15', '2022-05-31 11:33:15', NULL),
(417, 'vak', 'bxnxp623@icloud.com', '88456995558', 'Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/2hanhc87', '2022-05-31 11:47:01', '2022-05-31 11:47:01', NULL),
(418, 'HenryISods', 'guera_23@tmail.com', '89037805966', 'Make your money work for you all day long. https://ISods.battletech-newsletter.de/ISods', '2022-05-31 14:18:01', '2022-05-31 14:18:01', NULL),
(419, 'HenryISods', 'lirahv@gmail.com', '89032845312', 'Need some more money? Robot will earn them really fast. https://ISods.battletech-newsletter.de/ISods', '2022-05-31 14:56:50', '2022-05-31 14:56:50', NULL),
(420, 'HenryISods', 'shaunamcelhaney1926@bund.us', '89032207266', 'The online income is your key to success. https://ISods.battletech-newsletter.de/ISods', '2022-05-31 16:47:13', '2022-05-31 16:47:13', NULL),
(421, 'Samual', 'kshaw@cherokeefund.com', '956-242-6850', 'EASE YOUR PAIN IN 10 MINUTES EFFORTLESSLY\r\n\r\nBe Free from Neck Pain\r\nTry NeckFlexer & Relieve Neck Pain Effortlessly In 10 Min!\r\nSave 50% OFF + FREE Worldwide Shipping\r\n\r\nShop Now: neckflexer.online\r\n\r\nSamual \r\nDalbit Petroleum — Fuel Supply & Distribution', '2022-05-31 18:41:02', '2022-05-31 18:41:02', NULL),
(422, 'Charlotkeo', 'charlot.t.ea.nde.rso.n.367@gmail.com', '84378653611', '<a href=https://bit.ly/3GyAhZq>I figured out how to get revenge on the neighbors. Make me scream as loud as You can today, You always do well!!!</a>', '2022-05-31 18:48:49', '2022-05-31 18:48:49', NULL),
(423, 'HenryISods', 'gtropper@hotmail.com', '89033151471', 'Need money? Get it here easily! Just press this to launch the robot. https://ISods.battletech-newsletter.de/ISods', '2022-05-31 20:28:17', '2022-05-31 20:28:17', NULL),
(424, 'HenryISods', 'jonholt2@attbi.com', '89039544184', 'Just one click can turn you dollar into $1000. https://ISods.battletech-newsletter.de/ISods', '2022-05-31 21:49:23', '2022-05-31 21:49:23', NULL),
(425, '5hoss@gmailup.com', 'gemooboy.lovej@bucol.net', '06-49353596', 'Free submission of your new website to over 1000 business directories here https://bit.ly/submityoursite1000', '2022-05-31 22:40:54', '2022-05-31 22:40:54', NULL),
(426, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with dalbitpetroleum.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out dalbitpetroleum.com.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-06-01 16:06:01', '2022-06-01 16:06:01', NULL),
(427, 'Olisgpr', 'rod.r.i.g.uezoli.via19.7.2@gmail.com', '82578636589', '<a href=https://sylnaukraina.com.ua/d/wEaes>Russian combat losses in Ukraine officially Update Every Day. Comparison with other wars</a> \r\n<a href=https://sylnaukraina.com.ua/d/wEaes><img src=\"https://i.ibb.co/XXzR4tg/voina.png\"></a> \r\n<a href=https://sylnaukraina.com.ua/d/wEaes>Read more...</a>', '2022-06-03 00:37:44', '2022-06-03 00:37:44', NULL),
(428, 'HenryISods', 'RookTessa9292@o2.pl', '89038177914', 'Your money work even when you sleep. https://ISods.bode-roesch.de/ISods', '2022-06-03 10:06:53', '2022-06-03 10:06:53', NULL),
(429, 'MioDracy', 'unmasksisado.r.e.4.8@gmail.com', '83956712671', 'Fuck me right now. How much longer to wait here https://u.to/ne8sHA', '2022-06-04 08:11:14', '2022-06-04 08:11:14', NULL),
(430, 'Steve -', 'info@reallygreatdigital.marketing', '555 555 1212', 'I was browsing your site at dalbitpetroleum.com and really liked it!\r\nI\'m a leading Google ranking and lead generation expert\r\nwith over 20 years experience and I wondered if you\'d like\r\na free ranking review to go over some ways you could improve\r\nyour website and business to get more leads, traffic, customers,\r\nor whatever it is you are trying to get from your site?\r\n\r\nIf you\'d like this 100% free, no obligation, website ranking\r\nreview just reply via email at info@reallygreatdigital.marketing\r\nwith 3-5 keywords that you want to rank for in Google and\r\nyour website URL.\r\n\r\nThanks so much.', '2022-06-04 13:27:32', '2022-06-04 13:27:32', NULL),
(431, 'KqoDracy', 'unmasksisad.ore4.8@gmail.com', '88569147854', 'My tits and pussy are flowing right now. Lick them up, I can\'t wait anymore, squirt soon well, ohhhhhh https://xbebz.sweetmlif.net/c/da57dc555e50572d?s1=12179&s2=1471083&j1=1', '2022-06-04 14:40:21', '2022-06-04 14:40:21', NULL),
(432, 'HenryISods', 'RookTessa9292@o2.pl', '89033817830', 'Make money, not war! Financial Robot is what you need. https://ISods.bode-roesch.de/ISods', '2022-06-04 20:57:26', '2022-06-04 20:57:26', NULL),
(433, 'LioDracy', 'unmasksisad.ore48@gmail.com', '81582255317', 'My cunt is wet.. Put your dick in me right now https://xbebz.sweetmlif.net/c/da57dc555e50572d?s1=12179&s2=1471083&j1=1', '2022-06-04 22:18:12', '2022-06-04 22:18:12', NULL),
(434, 'Carlton Kiprono', 'carltonkiprono83@gmail.com', '0743310823', 'Hello, I am inquiring whether your company is offering attachment/internship to students.\r\nThanks in advance.', '2022-06-06 00:41:22', '2022-06-06 00:41:22', NULL),
(435, 'SWALEH MOHAMED', 'swalehmagazeti@gmail.com', '+254 725 433 142', 'Please quote the following for a buyer in LUMBUMBASHI- CIF PORT DAR ES-SALAAM.\r\n\r\n SUPER:2000MT\r\n GEO:18000MT\r\n\r\nDENSITY\r\n\r\nSUPER:0.700-0.770\r\nGEO:0.800-0.850\r\n\r\nSPECS.\r\nSUPER:ULP3\r\nGEO:50PPM\r\n\r\nPlease note the final destination for these products is LUMBUBASHI.The buyer\'s need CIF DAR-ES -SALAAM,THEN FROM DAR-ES-SALAAM the products need to be transported by road to LUMBUMBASHI.\r\n\r\n Do you have any storage facilities in LUBUMBASHI.?', '2022-06-06 04:53:23', '2022-06-06 04:53:23', NULL),
(436, 'SWALEH MOHAMED', 'swalehmagazeti@gmail.com', '+254 725 433 142', 'Please quote the following for a buyer in LUMBUMBASHI- CIF PORT DAR ES-SALAAM.\r\n\r\n SUPER:2000MT\r\n GEO:18000MT\r\n\r\nDENSITY\r\n\r\nSUPER:0.700-0.770\r\nGEO:0.800-0.850\r\n\r\nSPECS.\r\nSUPER:ULP3\r\nGEO:50PPM\r\n\r\nPlease note the final destination for these products is LUMBUBASHI.The buyer\'s need CIF DAR-ES -SALAAM,THEN FROM DAR-ES-SALAAM the products need to be transported by road to LUMBUMBASHI.\r\n\r\n Do you have any storage facilities in LUBUMBASHI.?', '2022-06-06 04:54:08', '2022-06-06 04:54:08', NULL),
(437, 'HenryISods', 'RookTessa9292@o2.pl', '89032260700', 'The best way for everyone who rushes for financial independence. https://ISods.bode-roesch.de/ISods', '2022-06-06 04:54:36', '2022-06-06 04:54:36', NULL),
(438, 'HenryISods', 'folo@mailme.dk:321321q214062orav', '89036502954', 'Earning $1000 a day is easy if you use this financial Robot. https://ISods.bode-roesch.de/ISods', '2022-06-06 08:06:31', '2022-06-06 08:06:31', NULL),
(439, 'HenryISods', 'kandis98@forum.dk', '89036274699', 'Looking for additional money? Try out the best financial instrument. https://ISods.bode-roesch.de/ISods', '2022-06-06 10:35:11', '2022-06-06 10:35:11', NULL),
(440, 'Mabel', 'info@mircotugnoli.com', '03522 29 35 97', 'Morning,\r\n\r\nI hope you\'re well. I am excited to tell you about our Full Body Resistance Band Kit that can help you get an amazing workout without having to go to the gym.\r\nThis is the best and cheapest athletic gear on the market. You can do a full body workout from the comfort of your home.\r\n\r\nI believe that this product can help you reach your fitness goals. \r\n\r\nSave 50% OFF + FREE Worldwide Shipping\r\nShop Now: https://ametathletics.sale\r\n\r\nHave a great time, \r\n\r\nMabel', '2022-06-06 12:18:43', '2022-06-06 12:18:43', NULL),
(441, 'HenryISods', 'hornythaimis@forum.dk', '89036167152', 'The online income is the easiest ways to make you dream come true. https://ISods.bode-roesch.de/ISods', '2022-06-06 13:17:45', '2022-06-06 13:17:45', NULL),
(442, 'HenryISods', 'jesper2640@forum.dk', '89035543545', 'The additional income is available for everyone using this robot. https://ISods.bode-roesch.de/ISods', '2022-06-06 15:57:14', '2022-06-06 15:57:14', NULL),
(443, 'HenryISods', 'jaras94@forum.dk', '89039975219', 'The best way for everyone who rushes for financial independence. https://ISods.bode-roesch.de/ISods', '2022-06-06 18:37:01', '2022-06-06 18:37:01', NULL),
(444, 'ohora@somitata.com', 'bchakka111975s@ronell.me', '04.10.44.05.39', 'Congrats on your new site, get it listed here for free and we\'ll start sending people to your site https://bit.ly/submityoursite1000', '2022-06-06 22:57:41', '2022-06-06 22:57:41', NULL),
(445, 'Robnifx', 'r.ob.ertb.rownm.oon.m.ans@gmail.com', '87571547458', '<a href=https://ukr-life.com.ua/s/gI49x>It\'s fantastic!!! Boy, 11, catches world’s biggest carp that’s just a few lbs lighter than him</a> \r\n<a href=https://ukr-life.com.ua/s/gI49x><img src=\"https://i.ibb.co/F56Zk64/fish-2.webp\"></a> \r\n<a href=https://ukr-life.com.ua/s/gI49x>Read More...</a>', '2022-06-07 01:54:05', '2022-06-07 01:54:05', NULL),
(446, 'Steve Watson', 'steve@explainervideos4u.info', '078 4938 0361', 'Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site dalbitpetroleum.com.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=zvGF7uRfH04\r\nhttps://www.youtube.com/watch?v=cZPsp217Iik\r\nhttps://www.youtube.com/watch?v=JHfnqS2zpU8\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian/Canadian accents.\r\nWe can also produce voice overs in languages other than English.\r\n\r\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include an engaging, captivating video with full script and voice-over.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nSteve', '2022-06-07 20:58:30', '2022-06-07 20:58:30', NULL),
(447, 'Chase Reiner', 'antoinette.le@outlook.com', '02646 40 61 08', 'Hey, are you still in business? I used a tool to run a free website report and noticed a ton of major issues! If you want to see for yourself go to https://shineranker.com', '2022-06-08 10:19:13', '2022-06-08 10:19:13', NULL),
(448, 'HenryISods', 'ole.lindskov@forum.dk', '89039252487', 'The financial Robot is your future wealth and independence. https://ISods.blueliners07.de/ISods', '2022-06-09 01:17:40', '2022-06-09 01:17:40', NULL),
(449, 'HenryISods', 'ziegland@forum.dk', '89030849210', 'Looking for additional money? Try out the best financial instrument. https://ISods.blueliners07.de/ISods', '2022-06-09 03:42:23', '2022-06-09 03:42:23', NULL),
(450, 'HenryISods', 'sortesylvester@mail-online.dk', '89032869977', 'The additional income is available for everyone using this robot. https://ISods.blueliners07.de/ISods', '2022-06-09 06:17:07', '2022-06-09 06:17:07', NULL),
(451, 'HenryISods', 'netteturn@aol.com', '89032260282', 'Still not a millionaire? Fix it now! https://ISods.blueliners07.de/ISods', '2022-06-09 08:44:12', '2022-06-09 08:44:12', NULL),
(452, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Cool website!\r\n\r\nMy name’s Eric, and I just found your site - dalbitpetroleum.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across dalbitpetroleum.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-06-09 09:27:26', '2022-06-09 09:27:26', NULL),
(453, 'HenryISods', 'micla@forum.dk', '89033252896', 'Looking for additional money? Try out the best financial instrument. https://ISods.blueliners07.de/ISods', '2022-06-09 11:20:52', '2022-06-09 11:20:52', NULL),
(454, 'HenryISods', 'demonixkill@mailme.dk', '89032235269', 'Online Bot will bring you wealth and satisfaction. https://ISods.blueliners07.de/ISods', '2022-06-09 13:58:47', '2022-06-09 13:58:47', NULL),
(455, 'Laurence Simmonds', 'simmonds.laurence@gmail.com', '78 522 66 04', 'Hi there,\r\n\r\nHave you ever wondered why new tokens listed on Uniswap, Pancakeswap or any decentralized exchange are always subject to insane price volatility?\r\n\r\nDid you know that front running bots have been dominating the market and profiting due to that?\r\n\r\nCheck out our new Youtube video for a free and detailed tutorial on how to deploy your own front running bot:\r\nhttps://youtu.be/SQHFveYdjV8\r\n\r\nKind Regards,\r\nLaurence', '2022-06-09 15:08:15', '2022-06-09 15:08:15', NULL),
(456, 'HenryISods', 'abcfolde@forum.dk', '89033166402', 'Every your dollar can turn into $100 after you lunch this Robot. https://ISods.blueliners07.de/ISods', '2022-06-09 16:25:23', '2022-06-09 16:25:23', NULL),
(457, 'HenryISods', 'pooleast@mailme.dk', '89036060804', 'Try out the best financial robot in the Internet. https://ISods.blueliners07.de/ISods', '2022-06-09 18:59:36', '2022-06-09 18:59:36', NULL),
(458, 'HenryISods', 'leiftt@mailme.dk', '89030718304', 'The online job can bring you a fantastic profit. https://ISods.blueliners07.de/ISods', '2022-06-09 21:24:48', '2022-06-09 21:24:48', NULL),
(459, 'HenryISods', 'bangbus455@forum.dk', '89038181777', 'Make money 24/7 without any efforts and skills. https://ISods.blueliners07.de/ISods', '2022-06-10 00:07:14', '2022-06-10 00:07:14', NULL),
(460, 'HenryISods', 'jh123@forum.dk', '89030056621', 'Looking forward for income? Get it online. https://ISods.blueliners07.de/ISods', '2022-06-10 02:38:52', '2022-06-10 02:38:52', NULL),
(461, 'HenryISods', 'georgejohnson5656@mailme.dk', '89038830605', 'Start making thousands of dollars every week. https://ISods.blueliners07.de/ISods', '2022-06-10 05:00:55', '2022-06-10 05:00:55', NULL),
(462, 'HenryISods', 'doryl@mailme.dk', '89032662021', 'No worries if you are fired. Work online. https://ISods.blueliners07.de/ISods', '2022-06-10 08:28:41', '2022-06-10 08:28:41', NULL),
(463, 'vak', 'i51qyhjv@yahoo.com', '88826592275', 'Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/25gbyroa', '2022-06-10 09:03:49', '2022-06-10 09:03:49', NULL),
(464, 'HenryISods', 'elsberg@forum.dk', '89037504452', 'Making money can be extremely easy if you use this Robot. https://ISods.blueliners07.de/ISods', '2022-06-10 13:18:52', '2022-06-10 13:18:52', NULL),
(465, '3chawki.berrada@onlyu.link', 'gemooboy.lovej@bucol.net', '077 6422 6983', 'Free submission of your new website to over 1000 business directories here https://bit.ly/submityoursite1000', '2022-06-10 13:36:43', '2022-06-10 13:36:43', NULL),
(466, 'HenryISods', 'larsg@mail-online.dk', '89037378566', 'Have no money? It’s easy to earn them online here. https://ISods.blueliners07.de/ISods', '2022-06-10 15:17:17', '2022-06-10 15:17:17', NULL),
(467, 'HenryISods', 'christianlykke@mail-online.dk', '89038431381', 'This robot can bring you money 24/7. https://ISods.blueliners07.de/ISods', '2022-06-10 16:21:42', '2022-06-10 16:21:42', NULL),
(468, 'HenryISods', 'loucou@forum.dk', '89036863146', 'Attention! Here you can earn money online! https://ISods.blueliners07.de/ISods', '2022-06-10 18:56:23', '2022-06-10 18:56:23', NULL),
(469, 'HenryISods', 'shakir@forum.dk', '89038546041', 'Make your computer to be you earning instrument. https://ISods.blueliners07.de/ISods', '2022-06-10 21:29:12', '2022-06-10 21:29:12', NULL),
(470, 'HenryISods', 'v_v_plachotnik@mailme.dk', '89039987692', 'Attention! Here you can earn money online! https://ISods.blueliners07.de/ISods', '2022-06-11 00:11:56', '2022-06-11 00:11:56', NULL),
(471, 'HenryISods', 'sjovsaadanspil@forum.dk', '89033388102', 'Check out the automatic Bot, which works for you 24/7. https://ISods.blueliners07.de/ISods', '2022-06-11 02:44:57', '2022-06-11 02:44:57', NULL),
(472, 'Marylyn', 'a.fortier@lancaster.ac.uk', '032 880 81 79', 'New Multifunction Anti-theft Waterproof Sling Bag\r\n\r\nThe best ever SUPER Sling Bag: Drop-proof/Anti-theft/Scratch-resistant/USB Charging\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://fashiondaily.shop\r\n\r\nBest regards, \r\n\r\nMarylyn\r\nDalbit Petroleum — Fuel Supply & Distribution', '2022-06-12 02:20:52', '2022-06-12 02:20:52', NULL),
(473, 'HenryISods', 'little_vester@forum.dk', '89032395559', 'Make money 24/7 without any efforts and skills. https://ISods.coronect.de/ISods', '2022-06-13 05:13:52', '2022-06-13 05:13:52', NULL),
(474, 'HenryISods', 'emil@jubiipost.dk', '89039178204', 'Everyone who needs money should try this Robot out. https://ISods.coronect.de/ISods', '2022-06-13 08:00:57', '2022-06-13 08:00:57', NULL),
(475, 'HenryISods', 'viktor@forum.dk', '89039206619', 'We have found the fastest way to be rich. Find it out here. https://ISods.coronect.de/ISods', '2022-06-13 10:31:36', '2022-06-13 10:31:36', NULL),
(476, 'HenryISods', 'ford8600@forum.dk', '89036556035', 'No worries if you are fired. Work online. https://ISods.coronect.de/ISods', '2022-06-13 13:10:53', '2022-06-13 13:10:53', NULL),
(477, 'HenryISods', 'josephinehamoe@forum.dk', '89036602336', 'Rich people are rich because they use this robot. https://ISods.coronect.de/ISods', '2022-06-13 15:31:46', '2022-06-13 15:31:46', NULL),
(478, 'HenryISods', 'garn@mailme.dk', '89034903499', 'Feel free to buy everything you want with the additional income. https://ISods.coronect.de/ISods', '2022-06-13 17:49:48', '2022-06-13 17:49:48', NULL),
(479, 'HenryISods', 'mistergrizli@mailme.dk', '89039993238', 'Financial independence is what everyone needs. https://ISods.coronect.de/ISods', '2022-06-13 20:14:26', '2022-06-13 20:14:26', NULL),
(480, 'Frankie', 'angie.jackson@sandbergvolvocars.com', '06-39599782', 'New Multifunction Anti-theft Waterproof Sling Bag\r\n\r\nThe best ever SUPER Sling Bag: Drop-proof/Anti-theft/Scratch-resistant/USB Charging\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://fashiondaily.shop\r\n\r\nThe Best, \r\n\r\nFrankie\r\nDalbit Petroleum — Fuel Supply & Distribution', '2022-06-13 20:21:00', '2022-06-13 20:21:00', NULL),
(481, 'HenryISods', 'andrei.pahuchii@mailme.dk', '89033391577', 'Make $1000 from $1 in a few minutes. Launch the financial robot now. https://ISods.coronect.de/ISods', '2022-06-13 22:53:46', '2022-06-13 22:53:46', NULL),
(482, 'HenryISods', 'fiddel@jubiipost.dk', '89037413722', 'Let the financial Robot be your companion in the financial market. https://ISods.coronect.de/ISods', '2022-06-14 01:35:26', '2022-06-14 01:35:26', NULL),
(483, 'HenryISods', 'tessie@forum.dk', '89035243572', 'One dollar is nothing, but it can grow into $100 here. https://ISods.coronect.de/ISods', '2022-06-14 04:14:55', '2022-06-14 04:14:55', NULL),
(484, 'HenryISods', 'goldenguy@mail-online.dk', '89034487902', 'Earn additional money without efforts and skills. https://ISods.coronect.de/ISods', '2022-06-14 06:54:18', '2022-06-14 06:54:18', NULL),
(485, 'HenryISods', 'stuph@mailme.dk', '89035986675', 'Still not a millionaire? The financial robot will make you him! https://ISods.coronect.de/ISods', '2022-06-14 09:32:09', '2022-06-14 09:32:09', NULL),
(486, 'Larry Morehead', 'larry.morehead@gmail.com', '06827 70 48 02', 'Horny Shriya called you 2 times. She is online. Click the below link to chat with her. She is very horny now.\r\n\r\nhttps://live-sex-chat.club/', '2022-06-14 10:44:02', '2022-06-14 10:44:02', NULL),
(487, 'HenryISods', 'icelady@jubiipost.dk', '89039397310', '# 1 financial expert in the net! Check out the new Robot. https://ISods.coronect.de/ISods', '2022-06-14 12:07:12', '2022-06-14 12:07:12', NULL),
(488, 'Margaretecr', 'ma.r.g.arelov.e.tro.be.rt.s@gmail.com', '85664617369', '<a href=https://is.gd/ds0hp6>I strongly suggest that you become an actor in my first porn film.</a> \r\n<a href=https://is.gd/ds0hp6><img src=\"https://i.ibb.co/m0zMVq0/807305.jpg\"></a>', '2022-06-14 14:38:26', '2022-06-14 14:38:26', NULL),
(489, 'HenryISods', 'rtlcmcarthur@mailme.dk', '89039956391', 'There is no need to look for a job anymore. Work online. https://ISods.coronect.de/ISods', '2022-06-14 14:55:46', '2022-06-14 14:55:46', NULL),
(490, 'HenryISods', 'michael2303@forum.dk', '89037868652', 'Make money 24/7 without any efforts and skills. https://ISods.coronect.de/ISods', '2022-06-14 17:39:18', '2022-06-14 17:39:18', NULL),
(491, 'HenryISods', 'mwnj@mail-online.dk', '89039576056', 'Even a child knows how to make money. Do you? https://ISods.coronect.de/ISods', '2022-06-14 20:19:25', '2022-06-14 20:19:25', NULL),
(492, 'vnatasha.sunaina4@tahugejrot.buzz', 'gemooboy.lovej@bucol.net', '(03) 5311 1419', 'You can submit your site to over 1000 different business/advertising directories for free with one click https://bit.ly/submityoursite1000', '2022-06-14 21:56:48', '2022-06-14 21:56:48', NULL),
(493, 'HenryISods', 'kiyonkilduy@mailme.dk', '89038791328', 'Start making thousands of dollars every week just using this robot. https://ISods.coronect.de/ISods', '2022-06-14 22:56:50', '2022-06-14 22:56:50', NULL),
(494, 'HenryISods', 'lunan@forum.dk', '89038418831', 'The fastest way to make you wallet thick is here. https://ISods.coronect.de/ISods', '2022-06-15 01:34:16', '2022-06-15 01:34:16', NULL),
(495, 'HenryISods', 'stinejensen@forum.dk', '89038331749', 'The financial Robot is your future wealth and independence. https://ISods.coronect.de/ISods', '2022-06-16 00:55:56', '2022-06-16 00:55:56', NULL),
(496, 'HenryISods', '72@forum.dk', '89030654173', 'Watch your money grow while you invest with the Robot. https://ISods.coronect.de/ISods', '2022-06-16 03:36:43', '2022-06-16 03:36:43', NULL),
(497, 'HenryISods', 'par044@forum.dk', '89030117941', 'Find out about the easiest way of money earning. https://ISods.coronect.de/ISods', '2022-06-16 06:15:30', '2022-06-16 06:15:30', NULL),
(498, 'HenryISods', 'jc123@forum.dk', '89030637902', 'Making money in the net is easier now. https://ISods.coronect.de/ISods', '2022-06-16 08:36:18', '2022-06-16 08:36:18', NULL),
(499, 'HenryISods', 'gromborisovsiti@mailme.dk', '89033780797', 'Your computer can bring you additional income if you use this Robot. https://ISods.coronect.de/ISods', '2022-06-16 11:15:28', '2022-06-16 11:15:28', NULL),
(500, 'HenryISods', 'natascha.jylland@forum.dk', '89030640932', 'The online income is the easiest ways to make you dream come true. https://ISods.coronect.de/ISods', '2022-06-16 13:38:46', '2022-06-16 13:38:46', NULL),
(501, 'HenryISods', 'piat@forum.dk', '89030250163', 'The online income is your key to success. https://ISods.coronect.de/ISods', '2022-06-16 16:19:15', '2022-06-16 16:19:15', NULL),
(502, 'HenryISods', 'deltafo@forum.dk', '89031709247', 'Making money can be extremely easy if you use this Robot. https://ISods.coronect.de/ISods', '2022-06-16 18:56:26', '2022-06-16 18:56:26', NULL),
(503, 'HenryISods', 'mitchko@mailme.dk', '89033175235', 'Financial robot is the best companion of rich people. https://ISods.coronect.de/ISods', '2022-06-16 21:54:40', '2022-06-16 21:54:40', NULL),
(504, 'HenryISods', 'beritjuel@mail-online.dk', '89031129223', 'The best way for everyone who rushes for financial independence. https://ISods.bode-roesch.de/ISods', '2022-06-17 02:53:36', '2022-06-17 02:53:36', NULL),
(505, 'HenryISods', 'hvdlogdhl@forum.dk', '89032771948', 'Money, money! Make more money with financial robot! https://ISods.bode-roesch.de/ISods', '2022-06-17 05:20:17', '2022-06-17 05:20:17', NULL),
(506, 'HenryISods', 'mark_christ23@mailme.dk', '89030468732', 'The online financial Robot is your key to success. https://ISods.bode-roesch.de/ISods', '2022-06-17 07:54:55', '2022-06-17 07:54:55', NULL),
(507, 'HenryISods', 'srh_85@yahoo.com', '89032346180', 'Have no money? Earn it online. https://ISods.bode-roesch.de/ISods', '2022-06-17 10:18:55', '2022-06-17 10:18:55', NULL),
(508, 'HenryISods', 'tfkr2009@mailme.dk', '89036827510', 'There is no need to look for a job anymore. Work online. https://ISods.bode-roesch.de/ISods', '2022-06-17 12:31:29', '2022-06-17 12:31:29', NULL),
(509, 'Kristopher', 'egypt@egyptrc.com', NULL, 'Get The Worlds Greatest Magic Sand Free Beach Mat!\r\n\r\nWatch sand, dirt & dust disappear right before your eyes! It\'s perfect for beach, picnic, camping or hiking.\r\n\r\nAct Now And Receive A Special Discount For Our Magic Mat!\r\n\r\nGet Yours Here: https://magicmat.biz\r\n\r\nBest, \r\n \r\nKristopher', '2022-06-17 13:26:07', '2022-06-17 13:26:07', NULL),
(510, 'HenryISods', 'kristiansens@forum.dk', '89030056822', 'Start your online work using the financial Robot. https://ISods.bode-roesch.de/ISods', '2022-06-17 15:16:50', '2022-06-17 15:16:50', NULL),
(511, 'HenryISods', 'eda5b9f0c0ce3ef7d471@mail-online.dk', '89033483830', 'No need to stay awake all night long to earn money. Launch the robot. https://ISods.bode-roesch.de/ISods', '2022-06-17 17:58:10', '2022-06-17 17:58:10', NULL),
(512, 'HenryISods', 'hannemort@mail-online.dk', '89039612165', 'No need to work anymore. Just launch the robot. https://ISods.bode-roesch.de/ISods', '2022-06-17 20:40:29', '2022-06-17 20:40:29', NULL),
(513, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with dalbitpetroleum.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out dalbitpetroleum.com.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-06-18 13:55:14', '2022-06-18 13:55:14', NULL),
(514, 'Shelton Schutt', 'shelton.schutt94@gmail.com', '0523-7267901', 'What would you do if you make a million dollars?\r\n\r\nYou have 5 minute opportunity to change your life FOREVER.\r\nIf you had invested a mere $10 in Crypto Trading few years ago, today you would be a Millionaire! ... DO NOT miss this chance again!!!\r\n\r\nClick the below link to start earning $1000 a day without any risk.\r\n\r\nhttps://www.unlimitedoffers.one/', '2022-06-18 18:03:52', '2022-06-18 18:03:52', NULL),
(515, 'nsamuelvale101@yaungshop.com', 'vnatasha.sunaina4@tahugejrot.buzz', '06-38588206', 'Free submission of your new website to over 1000 business directories here https://bit.ly/submityoursite1000', '2022-06-19 11:22:56', '2022-06-19 11:22:56', NULL),
(516, 'Charlotteikl', 'jes.s.i.c.ag.i.rl.pe.t.erson@gmail.com', '86172384536', '<a href=https://goo.su/2ypP30>I know what to offer you tonight. Do you want this night to be unforgettable?</a>', '2022-06-20 00:17:01', '2022-06-20 00:17:01', NULL),
(517, 'Dee', 'marilyn@ilovebombshell.com', '03.62.34.03.36', 'Get The Worlds Greatest Magic Sand Free Beach Mat!\r\n\r\nWatch sand, dirt & dust disappear right before your eyes! It\'s perfect for beach, picnic, camping or hiking.\r\n\r\nAct Now And Receive A Special Discount For Our Magic Mat!\r\n\r\nGet Yours Here: https://magicmat.biz\r\n\r\nHave a great time, \r\n \r\nDee', '2022-06-20 02:09:28', '2022-06-20 02:09:28', NULL),
(518, 'HenryISods', 'potaman5@mailme.dk', '89039379786', 'Everyone who needs money should try this Robot out. https://ISods.fannyberlin.se/ISods', '2022-06-20 03:21:05', '2022-06-20 03:21:05', NULL),
(519, 'HenryISods', 'hearpe@forum.dk', '89034868090', 'Money, money! Make more money with financial robot! https://ISods.fannyberlin.se/ISods', '2022-06-20 06:20:08', '2022-06-20 06:20:08', NULL),
(520, 'HenryISods', 'annika3blomst@mailme.dk', '89034389564', '# 1 financial expert in the net! Check out the new Robot. https://amalgamas.es/ISods', '2022-06-20 09:10:55', '2022-06-20 09:10:55', NULL),
(521, 'HenryISods', 'tihan1@mailme.dk', '89030829546', 'Looking forward for income? Get it online. https://ISods.baleti-design.fr/ISods', '2022-06-20 11:51:19', '2022-06-20 11:51:19', NULL),
(522, 'HenryISods', 'bsh1952@forum.dk', '89033019816', 'Learn how to make hundreds of backs each day. https://ISods.collectif-hameb.fr/ISods', '2022-06-20 14:35:58', '2022-06-20 14:35:58', NULL),
(523, 'HenryISods', 'lennimeggi@yahoo.de', '89036740932', 'Trust the financial Bot to become rich. https://baleti-design.fr/ISods', '2022-06-20 17:13:15', '2022-06-20 17:13:15', NULL),
(524, 'HenryISods', 'knightrider@forum.dk', '89039383338', 'The best online investment tool is found. Learn more! https://compras2u.es/ISods', '2022-06-20 19:49:45', '2022-06-20 19:49:45', NULL),
(525, 'HenryISods', 'sexsjov@forum.dk', '89032376309', 'We know how to increase your financial stability. https://ISods.baleti-design.fr/ISods', '2022-06-20 22:11:21', '2022-06-20 22:11:21', NULL),
(526, 'HenryISods', 'mosesemail@forum.dk', '89032902139', 'Launch the best investment instrument to start making money today. https://collectif-hameb.fr/ISods', '2022-06-21 00:50:16', '2022-06-21 00:50:16', NULL),
(527, 'HenryISods', 'sonmort2@forum.dk', '89037938561', 'The online income is the easiest ways to make you dream come true. https://compras2u.es/ISods', '2022-06-21 03:10:54', '2022-06-21 03:10:54', NULL),
(528, 'HenryISods', 'tallinen@forum.dk', '89030194613', 'Financial robot is a great way to manage and increase your income. https://fannyberlin.se/ISods', '2022-06-21 05:49:53', '2022-06-21 05:49:53', NULL),
(529, 'HenryISods', '2aa@forum.dk', '89036840130', 'Make thousands of bucks. Financial robot will help you to do it! https://ISods.compras2u.es/ISods', '2022-06-21 08:28:41', '2022-06-21 08:28:41', NULL),
(530, 'Bella Lance', 'bella@getlisted.directory', '800-946-0995', 'Hello, did you know that there are 241,120 internet directories in the world. \r\n\r\nThese websites are what drive traffic to YOUR business.\r\n\r\nWant more traffic? Want more Sales? We can help - today.\r\n\r\nYour website dalbitpetroleum.com is listed in only 81 of these directories. \r\n\r\nGet more traffic for your Global audience.\r\n\r\nOur automated system adds your website to all of the directories.\r\n\r\nYou can find it here: getlisted.directory/dalbitpetroleum.com\r\n\r\nAct today, and we will expedite your listings and waive the processing charge!', '2022-06-21 10:26:29', '2022-06-21 10:26:29', NULL),
(531, 'HenryISods', 'inzir-k@mailme.dk', '89032171322', '# 1 financial expert in the net! Check out the new Robot. https://fannyberlin.se/ISods', '2022-06-21 11:11:13', '2022-06-21 11:11:13', NULL),
(532, 'HenryISods', 'warpigs@forum.dk', '89034118077', 'The best way for everyone who rushes for financial independence. https://collectif-hameb.fr/ISods', '2022-06-21 13:51:15', '2022-06-21 13:51:15', NULL),
(533, 'HenryISods', 'smariar@forum.dk', '89039438123', 'Financial robot is the best companion of rich people. https://compras2u.es/ISods', '2022-06-21 16:31:29', '2022-06-21 16:31:29', NULL),
(534, 'HenryISods', 'thonara@forum.dk', '89039025616', 'Launch the robot and let it bring you money. https://ISods.collectif-hameb.fr/ISods', '2022-06-21 18:51:17', '2022-06-21 18:51:17', NULL),
(535, 'HenryISods', 'feinsmekkers@forum.dk', '89035353646', 'The online income is the easiest ways to make you dream come true. https://ISods.borisvonsmercek.de/ISods', '2022-06-21 21:12:12', '2022-06-21 21:12:12', NULL),
(536, 'HenryISods', 'nello120@forum.dk', '89036469480', 'Need money? Earn it without leaving your home. https://ISods.fannyberlin.se/ISods', '2022-06-21 23:52:02', '2022-06-21 23:52:02', NULL),
(537, 'HenryISods', 'keicrypto@coremail.ru', '89038827406', 'The online financial Robot is your key to success. http://go.afalobo.com/0ide', '2022-06-22 02:16:43', '2022-06-22 02:16:43', NULL),
(538, 'HenryISods', 'sltrechtjamee78979@coremail.ru', '89032564645', 'Join the society of successful people who make money here. http://go.afalobo.com/0ide', '2022-06-22 04:52:16', '2022-06-22 04:52:16', NULL),
(539, 'HenryISods', 'jasonsitslerl@coremail.ru', '89039402689', 'Making money is very easy if you use the financial Robot. http://go.afalobo.com/0ide', '2022-06-22 07:33:47', '2022-06-22 07:33:47', NULL),
(540, 'HenryISods', 'kathrynl.taylor1991@gmail.com', '89032503910', 'Try out the automatic robot to keep earning all day long. http://go.afalobo.com/0ide', '2022-06-22 10:17:14', '2022-06-22 10:17:14', NULL),
(541, 'GcoDracy', 'weqterwers@gmail.com', '81484339346', 'My cunt is horny right now. Make me squirt https://xbebz.astonlshingdate.net/c/da57dc555e50572d?s1=12179&s2=1471083&j1=1', '2022-06-22 10:46:35', '2022-06-22 10:46:35', NULL),
(542, 'HenryISods', 'marcusgriffith5903@gmail.com', '89036204278', 'Earning money in the Internet is easy if you use Robot. http://go.afalobo.com/0ide', '2022-06-22 12:53:07', '2022-06-22 12:53:07', NULL),
(543, 'HenryISods', 'murphykhoimy@gmail.com', '89035190967', 'Need money? Earn it without leaving your home. http://go.afalobo.com/0ide', '2022-06-22 15:19:57', '2022-06-22 15:19:57', NULL),
(544, 'HenryISods', 'doggy200119@gmail.com', '89039198266', 'No need to stay awake all night long to earn money. Launch the robot. http://go.afalobo.com/0ide', '2022-06-22 17:57:30', '2022-06-22 17:57:30', NULL),
(545, 'HenryISods', 'mihai.culeafa@gmail.com', '89031277543', 'Looking forward for income? Get it online. http://go.cufasez.com/0ie5', '2022-06-22 20:36:11', '2022-06-22 20:36:11', NULL),
(546, 'HenryISods', 'arianamacdonald1995598@list.ru', '89037737747', 'Try out the automatic robot to keep earning all day long. http://go.cufasez.com/0ie5', '2022-06-22 23:15:02', '2022-06-22 23:15:02', NULL),
(547, 'HenryISods', 'armandom.sutton1982@gmail.com', '89038111891', 'Launch the robot and let it bring you money. https://ISods.nanolabs.es/ISods', '2022-06-23 01:53:50', '2022-06-23 01:53:50', NULL),
(548, 'HenryISods', 'jordanbridjet96@list.ru', '89032463376', 'The financial Robot is your future wealth and independence. https://ISods.nanolabs.es/ISods', '2022-06-23 04:16:26', '2022-06-23 04:16:26', NULL),
(549, 'HenryISods', 'rtj_684_2w@163.com', '89033416838', 'Financial independence is what everyone needs. https://ISods.nanolabs.es/ISods', '2022-06-23 06:37:11', '2022-06-23 06:37:11', NULL),
(550, 'HenryISods', 'efpait@coremail.ru', '89034418181', 'It is the best time to launch the Robot to get more money. https://ISods.nanolabs.es/ISods', '2022-06-23 09:15:36', '2022-06-23 09:15:36', NULL),
(551, 'HenryISods', 'truongphuc8299@gmail.com', '89037741536', 'The success formula is found. Learn more about it. https://ISods.nanolabs.es/ISods', '2022-06-23 11:55:55', '2022-06-23 11:55:55', NULL),
(552, 'HenryISods', 'chayka062@aol.com', '89033142873', 'Most successful people already use Robot. Do you? https://ISods.nanolabs.es/ISods', '2022-06-23 14:17:21', '2022-06-23 14:17:21', NULL),
(553, 'LkkaDracy', 'getesksisad.ore4.8@gmail.com', '89464312721', 'I am currently masturbating my pussy and ass very hard. Need your help https://xbebz.speciaidating.com/c/da57dc555e50572d?s1=12179&s2=1471083&j1=1', '2022-06-23 16:12:00', '2022-06-23 16:12:00', NULL),
(554, 'HenryISods', 'purgazzz@coremail.ru', '89038221981', 'Online earnings are the easiest way for financial independence. https://ISods.nanolabs.es/ISods', '2022-06-23 16:52:28', '2022-06-23 16:52:28', NULL),
(555, 'Sheree Tipton', 'omaima.1919w@lokasur.com', '06-93868477', 'Give your new site a boost, submit your site now to our free directory and start getting more clients https://bit.ly/submityoursite1000', '2022-06-23 19:15:01', '2022-06-23 19:15:01', NULL),
(556, 'HenryISods', 'nastena_ekim2va@aol.com', '89037795622', 'Additional income is now available for anyone all around the world. https://ISods.nanolabs.es/ISods', '2022-06-23 19:22:17', '2022-06-23 19:22:17', NULL),
(557, 'HenryISods', 'greerw913@gmail.com', '89036310790', 'Earn additional money without efforts and skills. https://ISods.nanolabs.es/ISods', '2022-06-23 21:55:59', '2022-06-23 21:55:59', NULL),
(558, 'BnooDracy', 'rreksisad.ore48@gmail.com', '86844312441', 'My cunt is wet.. Put your dick in me right now https://xbebz.astonlshingdate.net/c/da57dc555e50572d?s1=12179&s2=1471083&j1=1', '2022-06-24 00:04:35', '2022-06-24 00:04:35', NULL),
(559, 'Milagros', 'iveldi3@googlemail.com', '079 3198 9151', 'Hi \r\n\r\nThe New Powerful LED Flashlight is The Perfect Flashlight For Any Situation!\r\n\r\nThe 3,000 Lumens & Adjustable Zoom gives you the wide field of view and brightness other flashlights don’t have.\r\n\r\n50% OFF + Free Shipping! Get it Now: linterna.store\r\n\r\nHave a great time, \r\n\r\nMilagros', '2022-06-24 00:17:31', '2022-06-24 00:17:31', NULL),
(560, 'HenryISods', 'valentinoangeloni@libero.it', '89038089174', 'Check out the automatic Bot, which works for you 24/7. https://ISods.nanolabs.es/ISods', '2022-06-24 00:43:07', '2022-06-24 00:43:07', NULL),
(561, 'HenryISods', 'edmundhenderson769@gmail.com', '89030263151', 'Financial robot is your success formula is found. Learn more about it. https://ISods.nanolabs.es/ISods', '2022-06-24 05:56:48', '2022-06-24 05:56:48', NULL),
(562, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'My name’s Eric and I just found your site dalbitpetroleum.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE https://jumboleadmagnet.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-06-24 20:12:20', '2022-06-24 20:12:20', NULL),
(563, 'HenryISods', 'echris1414@gmail.com', '89038512193', 'Try out the best financial robot in the Internet. https://ISods.nanolabs.es/ISods', '2022-06-24 21:57:43', '2022-06-24 21:57:43', NULL),
(564, 'HenryISods', 'funeralwreaths@gmail.com', '89037797504', 'Attention! Financial robot may bring you millions! https://ISods.nanolabs.es/ISods', '2022-06-25 00:51:22', '2022-06-25 00:51:22', NULL),
(565, 'Megan Wentz', 'nsamuelvale101@yaungshop.com', '215-823-7109', 'I was wondering if you wanted to submit your new site to our free business directory? https://bit.ly/submityoursite1000', '2022-06-25 02:45:13', '2022-06-25 02:45:13', NULL),
(566, 'HenryISods', 'juliaalrajaz@coremail.ru', '89036142297', 'Financial robot is a great way to manage and increase your income. https://ISods.nanolabs.es/ISods', '2022-06-25 03:13:11', '2022-06-25 03:13:11', NULL),
(567, 'HenryISods', 'dorothyromero6@list.ru', '89033563748', 'Everyone who needs money should try this Robot out. https://ISods.nanolabs.es/ISods', '2022-06-25 05:37:10', '2022-06-25 05:37:10', NULL),
(568, 'HenryISods', 'luealethea39281@coremail.ru', '89037937961', 'Have no financial skills? Let Robot make money for you. https://ISods.nanolabs.es/ISods', '2022-06-25 08:13:32', '2022-06-25 08:13:32', NULL),
(569, 'HenryISods', 'linkousmichael6@gmail.com', '89032391959', 'Earning $1000 a day is easy if you use this financial Robot. https://ISods.nanolabs.es/ISods', '2022-06-25 10:34:36', '2022-06-25 10:34:36', NULL),
(570, 'HenryISods', 'elijahrasmusseneng@outlook.com', '89032313580', 'Financial robot guarantees everyone stability and income. https://ISods.nanolabs.es/ISods', '2022-06-25 13:14:29', '2022-06-25 13:14:29', NULL),
(571, 'HenryISods', 'smolpachol@centrum.cz', '89038463376', 'Let the financial Robot be your companion in the financial market. https://ISods.nanolabs.es/ISods', '2022-06-25 15:35:37', '2022-06-25 15:35:37', NULL),
(572, 'HenryISods', 'clementsdeborah95@inbox.ru', '89035252408', 'Launch the financial Robot and do your business. https://ISods.nanolabs.es/ISods', '2022-06-25 17:54:46', '2022-06-25 17:54:46', NULL),
(573, 'HenryISods', 'varlakhinaines6@gmail.com', '89039994576', 'Financial robot guarantees everyone stability and income. https://startupers.se/promo', '2022-06-25 20:17:21', '2022-06-25 20:17:21', NULL);
INSERT INTO `contacts` (`id`, `name`, `email`, `telephone_number`, `message`, `created_at`, `updated_at`, `deleted_at`) VALUES
(574, 'MyBusinessFundedNow', 'noreply@mybusinessfundednow.com', NULL, 'Hi, do you know that http://MyBusinessFundedNow.com can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://MyBusinessFundedNow.com \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 120K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://MyBusinessFundedNow.com \r\n \r\nHave a good day, \r\nThe My Business Funded Now Team \r\n \r\nunsubscribe/remove - http://MyBusinessFundedNow.com/r.php?url=dalbitpetroleum.com&id=113', '2022-06-26 03:47:02', '2022-06-26 03:47:02', NULL),
(575, 'JoshuaZew', 'alisia723@mail.ru', '82348426638', '>>> ? I have a small question? Where can I pick up my gift? Here?: https://u.to/gvQzHA', '2022-06-26 06:17:26', '2022-06-26 06:17:26', NULL),
(576, 'Aretha Aultman', 'aultman.aretha@hotmail.com', '0421 78 96 87', 'Horny Shriya called you 2 times. She is online. Click the below link to chat with her. She is very horny now.\r\n\r\nhttps://live-sex-chat.club/', '2022-06-26 06:33:28', '2022-06-26 06:33:28', NULL),
(577, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hi, my name is Eric and I’m betting you’d like your website dalbitpetroleum.com to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at dalbitpetroleum.com.\r\n\r\nTalk With Web Visitor – CLICK HERE https://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-06-26 16:16:58', '2022-06-26 16:16:58', NULL),
(578, 'vak', 'ogkf5eks@hotmail.com', '89213787582', 'Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/24o9r4xq', '2022-06-29 05:38:16', '2022-06-29 05:38:16', NULL),
(579, 'FastCapitalAdvisors', 'noreply@fastcapitaladvisors.info', NULL, 'Hi, do you know that http://FastCapitalAdvisors.info can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://FastCapitalAdvisors.info \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 120K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://FastCapitalAdvisors.info \r\n \r\nHave a good day, \r\nThe Fast Capital Advisors Team \r\n \r\nunsubscribe/remove - http://FastCapitalAdvisors.info/r.php?url=dalbitpetroleum.com&id=114', '2022-06-29 16:54:57', '2022-06-29 16:54:57', NULL),
(580, 'Kathy', 'info@praxismomentum.at', '070 4749 9290', 'New Multifunction Waterproof Backpack\r\n\r\nThe best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://thebackpack.sale\r\n\r\nThe Best, \r\n\r\nKathy', '2022-06-30 01:52:59', '2022-06-30 01:52:59', NULL),
(581, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hello, my name’s Eric and I just ran across your website at dalbitpetroleum.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-07-01 04:40:46', '2022-07-01 04:40:46', NULL),
(582, 'Joanna Ricks', 'joanna@makemysitemobile.com', '01.52.19.15.56', 'Convert dalbitpetroleum.com to an app with one click!\r\n\r\n80% of users browse websites from their phones. \r\n\r\nHave the App send out push notifications without any extra marketing costs!\r\n\r\nMakeMySiteMobile.com', '2022-07-01 10:12:06', '2022-07-01 10:12:06', NULL),
(583, 'Gordonhot', 'alexsomename931@gmail.com', '85372795427', '>>> ? I have a small question! Where can I pick up my prize? Here? https://lnk.do/Y29WUf', '2022-07-02 10:15:18', '2022-07-02 10:15:18', NULL),
(584, 'GloDracy', 'weqtrtewers@gmail.com', '82914437338', 'My pussy is not just flowing heavily, I\'m pouring all over. If you don\'t fuck her, she squirts https://lovelydatings.com/18plus/?u=wh5kd06&o=qxpp80k', '2022-07-02 17:26:36', '2022-07-02 17:26:36', NULL),
(585, 'CrytoISods', 'linshibo0828@gmail.com', '89032191933', 'The online income is the easiest ways to make you dream come true. https://Leli.dkworld.de/gotodate/go', '2022-07-03 14:18:02', '2022-07-03 14:18:02', NULL),
(586, 'CrytoISods', 'dgayle45@yahoo.com', '89030516404', 'Need money? Earn it without leaving your home. https://Leli.dkworld.de/gotodate/go', '2022-07-04 04:05:42', '2022-07-04 04:05:42', NULL),
(587, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hello, my name’s Eric and I just ran across your website at dalbitpetroleum.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-07-04 05:35:53', '2022-07-04 05:35:53', NULL),
(588, 'CrytoISods', 'hyperviper38@yahoo.com', '89031611299', 'Just one click can turn you dollar into $1000. https://Leli.dkworld.de/gotodate/go', '2022-07-04 06:57:55', '2022-07-04 06:57:55', NULL),
(589, 'CrytoISods', 'pozutuq@hotmail.com', '89038235416', 'Making money is very easy if you use the financial Robot. https://Leli.dkworld.de/gotodate/go', '2022-07-04 09:33:02', '2022-07-04 09:33:02', NULL),
(590, 'BnoohDracy', 'rreksisyuyuad.ore48@gmail.com', '87324228724', 'My cunt smells a lot now, I haven\'t washed for a week. Come in and smell it https://lovelydatings.com/18plus/?u=wh5kd06&o=qxpp80k', '2022-07-04 10:04:05', '2022-07-04 10:04:05', NULL),
(591, 'LkkatDracy', 'getesksisau.tuuore4.8@gmail.com', '85115623616', 'I\'m out in nature right now and masturbating my pussy and rubbing my tits. Look at this https://lovelydatings.com/18plus/?u=wh5kd06&o=qxpp80k', '2022-07-04 10:04:22', '2022-07-04 10:04:22', NULL),
(592, 'Osheokwu Elonanjo Fabian', 'griphorn19@gmail.com', '+2348036292264', 'Dear /madam, \r\nWe are Grip horn Venture\r\nWe are a multi diverse business entity, into Oil Gas, Real E state, Solid Minerals etc. We shall write you officially. Thanks', '2022-07-04 12:02:09', '2022-07-04 12:02:09', NULL),
(593, 'Osheokwu Elonanjo Fabian', 'griphorn19@gmail.com', NULL, 'Dear /madam, \r\nWe are Grip horn Venture\r\nWe are a multi diverse business entity, into Oil Gas, Real E state, Solid Minerals etc. We shall write you officially. Thanks', '2022-07-04 12:02:35', '2022-07-04 12:02:35', NULL),
(594, 'CrytoISods', 'skbehera.091@gmail.com', '89039410942', 'Have no money? Earn it online. https://Leli.dkworld.de/gotodate/go', '2022-07-04 12:15:15', '2022-07-04 12:15:15', NULL),
(595, 'CrytoISods', 'jnr18sharp@hotmail.com', '89037398148', 'Only one click can grow up your money really fast. https://Leli.dkworld.de/gotodate/go', '2022-07-04 15:03:29', '2022-07-04 15:03:29', NULL),
(596, 'CrytoISods', 'rodriguinho_vnoc@hotmail.com', '89035435924', 'Even a child knows how to make money. Do you? https://Leli.dkworld.de/gotodate/go', '2022-07-04 17:45:58', '2022-07-04 17:45:58', NULL),
(597, 'CrytoISods', 'colombianito0806@aim.com', '89038729906', 'Financial robot is your success formula is found. Learn more about it. https://Leli.dkworld.de/gotodate/go', '2022-07-04 20:29:59', '2022-07-04 20:29:59', NULL),
(598, 'Kerri Murph', 'murph.kerri@googlemail.com', '08721 53 20 57', '►►► ✅ Where can I get my gift? Here? https://lnk.do/oRLXPN', '2022-07-04 20:49:53', '2022-07-04 20:49:53', NULL),
(599, 'CrytoISods', 'nicole.gunning16@gmail.com', '89034778366', 'Join the society of successful people who make money here. https://Leli.dkworld.de/gotodate/go', '2022-07-04 23:12:08', '2022-07-04 23:12:08', NULL),
(600, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hello, my name’s Eric and I just ran across your website at dalbitpetroleum.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-07-05 00:11:23', '2022-07-05 00:11:23', NULL),
(601, 'CrytoISods', 'indorecity2009@sify.com', '89036804359', 'Need money? Earn it without leaving your home. https://Leli.dkworld.de/gotodate/go', '2022-07-05 01:55:26', '2022-07-05 01:55:26', NULL),
(602, 'CrytoISods', 'nikkojazzsinger@yahoo.com', '89032105289', 'One click of the robot can bring you thousands of bucks. https://Leli.dkworld.de/gotodate/go', '2022-07-05 04:38:58', '2022-07-05 04:38:58', NULL),
(603, 'CrytoISods', 'Dinaminsky@gmail.com', '89035303580', 'The financial Robot is your # 1 expert of making money. https://Leli.dkworld.de/gotodate/go', '2022-07-05 07:15:12', '2022-07-05 07:15:12', NULL),
(604, 'CrytoISods', 'jkmjbl@gmail.com', '89036257455', 'Even a child knows how to make $100 today. https://Leli.dkworld.de/gotodate/go', '2022-07-05 10:22:51', '2022-07-05 10:22:51', NULL),
(605, 'CrytoISods', 'mguerena@msn.com', '89030382854', 'Even a child knows how to make money. Do you? https://Leli.dkworld.de/gotodate/go', '2022-07-05 13:07:52', '2022-07-05 13:07:52', NULL),
(606, 'CrytoISods', 'casharevansjr@gmail.com', '89037523344', 'Trust the financial Bot to become rich. https://Leli.dkworld.de/gotodate/go', '2022-07-05 15:49:26', '2022-07-05 15:49:26', NULL),
(607, 'CrytoISods', 'hotgirl130772002@yahoo.com', '89034438683', 'It is the best time to launch the Robot to get more money. https://Leli.dkworld.de/gotodate/go', '2022-07-05 18:33:04', '2022-07-05 18:33:04', NULL),
(608, 'CrytoISods', 'sekarwulan@ymail.com', '89030380038', 'Looking for additional money? Try out the best financial instrument. https://Leli.dkworld.de/gotodate/go', '2022-07-05 21:11:34', '2022-07-05 21:11:34', NULL),
(609, 'Usman Hassan', 'husman07@gmail.com', '+2347039417233', 'Dear Sir;\r\n\r\nCurrently, we can offer Euro 4 diesel, Jet A1 and LPG to Mozambique. Pleased to have your firm enquiry to discuss further. \r\n\r\nThank you and looking forward to your reply.\r\n\r\nSincerely,\r\nUsman Hassan.\r\nAuthorized Representive', '2022-07-05 23:39:33', '2022-07-05 23:39:33', NULL),
(610, 'CrytoISods', 'bkc2a@yahoo.com', '89037757081', 'Buy everything you want earning money online. https://Leli.dkworld.de/gotodate/go', '2022-07-05 23:43:29', '2022-07-05 23:43:29', NULL),
(611, 'CrytoISods', 'jorgeviana_94@hotmail.com', '89035747474', 'Make your laptop a financial instrument with this program. https://Leli.dkworld.de/gotodate/go', '2022-07-06 02:11:39', '2022-07-06 02:11:39', NULL),
(612, 'Boris Salmond', 'jaouadhifarah0@bebekpenyet.buzz', '(62) 3872-2351', 'Good job on the new site! Now go ahead and submit it to our free directory here https://bit.ly/submityoursite1000', '2022-07-06 02:39:19', '2022-07-06 02:39:19', NULL),
(613, 'Antwan Place', 'antwan.place@yahoo.com', '(21) 3305-4765', 'Hello\r\n\r\nIf you ever need Negative SEO or a de-rank strategy, you can hire us here\r\n\r\nhttps://www.speed-seo.net/product/negative-seo-service/', '2022-07-06 02:47:56', '2022-07-06 02:47:56', NULL),
(614, 'Audra Ballentine', 'audra@makemysitemobile.com', '459 16 889', 'Convert dalbitpetroleum.com to an app with one click!\r\n\r\n80% of users browse websites from their phones. \r\n\r\nHave the App send out push notifications without any extra marketing costs!\r\n\r\nMakeMySiteMobile.com', '2022-07-06 04:05:47', '2022-07-06 04:05:47', NULL),
(615, 'CrytoISods', 'foxy_ros@yahoo.com', '89031187575', 'Automatic robot is the best start for financial independence. https://Leli.dkworld.de/gotodate/go', '2022-07-06 04:42:36', '2022-07-06 04:42:36', NULL),
(616, 'CrytoISods', 'frostedflakez1998@gmail.com', '89036034584', 'Need some more money? Robot will earn them really fast. https://Leli.dkworld.de/gotodate/go', '2022-07-06 07:11:17', '2022-07-06 07:11:17', NULL),
(617, 'CrytoISods', 'Erin.M.Hickey@gmail.com', '89038339681', 'Make your laptop a financial instrument with this program. https://Leli.seamonkey.es/gotodate/go', '2022-07-06 09:47:54', '2022-07-06 09:47:54', NULL),
(618, 'CrytoISods', 'bcspring@yahoo.com', '89037175965', 'Robot is the best solution for everyone who wants to earn. https://Leli.seamonkey.es/gotodate/go', '2022-07-06 13:19:48', '2022-07-06 13:19:48', NULL),
(619, 'FastFundingAdvisors', 'noreply@fastfundingadvisors.info', NULL, 'Quicker and Simpler than the SBA, http://FastFundingAdvisors.info can get your business a loan for $2K-350,000 With low-credit and without collateral. \r\n \r\nUse our fast form to Find Out exactly how much you can get, No-Cost: \r\n \r\nhttp://FastFundingAdvisors.info \r\n \r\nIf you\'ve been established for at least 12 months you are already pre-qualified. Our Fast service means funding can be finished within 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get. \r\n \r\nThis is a free service from a qualified lender and the approval will be based on the annual revenue of your business. Funds have no Restrictions, allowing you to use the full amount in any way including bills, taxes, hiring, marketing, expansion, or Absolutely Any Other expense. \r\n \r\nThere are limited SBA and private funds available so please apply now if interested, \r\n \r\nClick Here: http://FastFundingAdvisors.info \r\n \r\nHave a great day, \r\nThe Fast Funding Advisors Team \r\n \r\nunsubscribe here - http://FastFundingAdvisors.info/r.php?url=dalbitpetroleum.com&id=115', '2022-07-06 15:37:37', '2022-07-06 15:37:37', NULL),
(620, 'CrytoISods', 'frankli87@hotmail.com', '89036906277', 'Need cash? Launch this robot and see what it can. https://Leli.seamonkey.es/gotodate/go', '2022-07-06 16:18:45', '2022-07-06 16:18:45', NULL),
(621, 'CrytoISods', 'nathan.c.fuller@gmail.com', '89032357308', 'Need money? Earn it without leaving your home. https://Leli.seamonkey.es/gotodate/go', '2022-07-06 18:50:34', '2022-07-06 18:50:34', NULL),
(622, 'CrytoISods', 'alleaus@hotmail.com', '89034269071', 'Robot never sleeps. It makes money for you 24/7. https://Leli.seamonkey.es/gotodate/go', '2022-07-06 21:22:08', '2022-07-06 21:22:08', NULL),
(623, 'Johnson Hursey', 'hursey.johnson@gmail.com', '28-84-58-16', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://lnk.do/sL9YR4 ✅. Thanks! Viktoria', '2022-07-07 02:34:00', '2022-07-07 02:34:00', NULL),
(624, 'CrytoISods', 'cmop644664@gmail.com', '89030600713', 'Everyone who needs money should try this Robot out. https://Leli.seamonkey.es/gotodate/go', '2022-07-09 00:47:01', '2022-07-09 00:47:01', NULL),
(625, 'Anthony Kung\'u', 'anthonykungu69@gmail.com', '0713859069', 'Hello, I am kindly asking if the company has a graduate engineering program. I\'d like to submit my information for review. Thank you.', '2022-07-09 02:41:00', '2022-07-09 02:41:00', NULL),
(626, 'Anthony Kung\'u', 'anthonykungu69@gmail.com', '0713859069', 'Hello, I am kindly asking if the company has a graduate engineering program. I\'d like to submit my information for review. Thank you.', '2022-07-09 02:41:02', '2022-07-09 02:41:02', NULL),
(627, 'Anthony Kung\'u', 'anthonykungu69@gmail.com', '0713859069', 'Hello, I am kindly asking if the company has a graduate engineering program. I\'d like to submit my information for review. Thank you.', '2022-07-09 02:41:10', '2022-07-09 02:41:10', NULL),
(628, 'Anthony Kung\'u', 'anthonykungu69@gmail.com', '0713859069', 'Hello, I am kindly asking if the company has a graduate engineering program. I\'d like to submit my information for review. Thank you.', '2022-07-09 02:41:19', '2022-07-09 02:41:19', NULL),
(629, 'CrytoISods', 'rafa0672@hotmail.com', '89038123767', 'No worries if you are fired. Work online. https://Leli.seamonkey.es/gotodate/go', '2022-07-09 03:17:07', '2022-07-09 03:17:07', NULL),
(630, 'CrytoISods', 'jacobstobias72+556255925@gmail.com', '89036259683', 'Automatic robot is the best start for financial independence. https://Leli.seamonkey.es/gotodate/go', '2022-07-09 05:47:03', '2022-07-09 05:47:03', NULL),
(631, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hi, my name is Eric and I’m betting you’d like your website dalbitpetroleum.com to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at dalbitpetroleum.com.\r\n\r\nTalk With Web Visitor – CLICK HERE https://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-07-09 07:28:27', '2022-07-09 07:28:27', NULL),
(632, 'CrytoISods', 'mazloum_yar82@yahoo.com', '89032814214', 'Earning money in the Internet is easy if you use Robot. https://Leli.seamonkey.es/gotodate/go', '2022-07-09 08:13:29', '2022-07-09 08:13:29', NULL),
(633, 'CrytoISods', 'marlysfernandes@googlemail.com', '89035979553', 'One dollar is nothing, but it can grow into $100 here. https://Leli.seamonkey.es/gotodate/go', '2022-07-09 10:41:42', '2022-07-09 10:41:42', NULL),
(634, 'CrytoISods', 'tjs1756@hotmail.com', '89035422005', 'Make thousands every week working online here. https://Leli.seamonkey.es/gotodate/go', '2022-07-09 13:12:06', '2022-07-09 13:12:06', NULL),
(635, 'CrytoISods', 'poonpoon26@hotmail.com', '89037482310', 'No need to work anymore. Just launch the robot. https://Leli.seamonkey.es/gotodate/go', '2022-07-09 15:40:31', '2022-07-09 15:40:31', NULL),
(636, 'CrytoISods', 'xashleeeysays@aim.com', '89036507572', 'Check out the newest way to make a fantastic profit. https://Leli.seamonkey.es/gotodate/go', '2022-07-09 18:09:18', '2022-07-09 18:09:18', NULL),
(637, 'CrytoISods', 'hotshotz1129@yahoo.com', '89034634296', 'Let the financial Robot be your companion in the financial market. https://Leli.seamonkey.es/gotodate/go', '2022-07-09 20:36:13', '2022-07-09 20:36:13', NULL),
(638, 'CrytoISods', 'nicko@aistechnology.com', '89035380711', 'Trust your dollar to the Robot and see how it grows to $100. https://Leli.seamonkey.es/gotodate/go', '2022-07-09 23:07:01', '2022-07-09 23:07:01', NULL),
(639, 'CrytoISods', 'granados_ramon@yahoo.com', '89034942376', 'Make thousands of bucks. Financial robot will help you to do it! https://Leli.seamonkey.es/gotodate/go', '2022-07-10 01:35:34', '2022-07-10 01:35:34', NULL),
(640, 'CrytoISods', 'jeffreyreynolds3@yahoo.com', '89036840711', 'Buy everything you want earning money online. https://Leli.seamonkey.es/gotodate/go', '2022-07-10 04:03:00', '2022-07-10 04:03:00', NULL),
(641, 'Patrick', 'info@deutsch-andreas.de', '540-747-1776', 'Hi \r\n\r\nI wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nBest, \r\n\r\nPatrick', '2022-07-10 04:28:20', '2022-07-10 04:28:20', NULL),
(642, 'CrytoISods', 'rockingandy@yahoo.com', '89033983948', 'Automatic robot is the best start for financial independence. https://Leli.seamonkey.es/gotodate/go', '2022-07-10 06:31:38', '2022-07-10 06:31:38', NULL),
(643, 'CrytoISods', 'liss.rian@yahoo.com', '89033782948', 'Launch the financial Bot now to start earning. https://Leli.seamonkey.es/gotodate/go', '2022-07-10 09:20:22', '2022-07-10 09:20:22', NULL),
(644, 'CrytoISods', 'OP_INJ', '89030874494', 'Need money? The financial robot is your solution. https://Leli.seamonkey.es/gotodate/go', '2022-07-10 11:48:49', '2022-07-10 11:48:49', NULL),
(645, 'CrytoISods', 'austin.loeppke@gmail.com', '89035522068', 'Robot is the best way for everyone who looks for financial independence. https://Leli.seamonkey.es/gotodate/go', '2022-07-10 14:15:24', '2022-07-10 14:15:24', NULL),
(646, 'CrytoISods', 'leynalee@163.com', '89037452477', 'Make money in the internet using this Bot. It really works! https://Leli.seamonkey.es/gotodate/go', '2022-07-10 16:42:02', '2022-07-10 16:42:02', NULL),
(647, 'CrytoISods', 'mahmoud.bahei@gmail.com', '89038237416', 'No need to worry about the future if your use this financial robot. https://Leli.seamonkey.es/gotodate/go', '2022-07-10 19:12:27', '2022-07-10 19:12:27', NULL),
(648, 'CrytoISods', 'dupleix1@yahoo.com', '89034640664', 'Try out the best financial robot in the Internet. https://Leli.seamonkey.es/gotodate/go', '2022-07-10 21:40:05', '2022-07-10 21:40:05', NULL),
(649, 'CrytoISods', 'kathy_hello@yahoo.com', '89039359461', 'No need to stay awake all night long to earn money. Launch the robot. https://Leli.seamonkey.es/gotodate/go', '2022-07-11 00:11:48', '2022-07-11 00:11:48', NULL),
(650, 'CrytoISods', 'boobookitty665@aol.com', '89035639944', 'See how Robot makes $1000 from $1 of investment. https://Leli.seamonkey.es/gotodate/go', '2022-07-11 02:44:08', '2022-07-11 02:44:08', NULL),
(651, 'CrytoISods', 'biohard03@marmotmail.com', '89039403421', 'Watch your money grow while you invest with the Robot. https://Leli.seamonkey.es/gotodate/go', '2022-07-11 05:34:22', '2022-07-11 05:34:22', NULL),
(652, 'CrytoISods', 'Miku000Hatsune@gmail.com', '89033320177', 'The fastest way to make your wallet thick is found. https://Leli.seamonkey.es/gotodate/go', '2022-07-11 08:02:22', '2022-07-11 08:02:22', NULL),
(653, 'CrytoISods', 'pr.yade.i.n3cril@gmail.com', '89039970010', 'The online income is your key to success. https://Leli.seamonkey.es/gotodate/go', '2022-07-11 10:31:18', '2022-07-11 10:31:18', NULL),
(654, 'Shellie Kippax', 'shellie.kippax@msn.com', '678-823-6253', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://lnk.do/sgudib ✅. Thanks! Elena', '2022-07-11 11:07:34', '2022-07-11 11:07:34', NULL),
(655, 'CrytoISods', 'jandhtracey@comcast.net', '89033268050', 'Earning $1000 a day is easy if you use this financial Robot. https://Leli.seamonkey.es/gotodate/go', '2022-07-11 12:59:40', '2022-07-11 12:59:40', NULL),
(656, 'CrytoISods', 'awade703@comcast.net', '89031738447', 'Need money? Get it here easily? https://Leli.seamonkey.es/gotodate/go', '2022-07-11 15:26:47', '2022-07-11 15:26:47', NULL),
(657, 'CrytoISods', 'patricia.grant@tmcmed.org', '89031233667', 'Make thousands of bucks. Financial robot will help you to do it! https://Leli.seamonkey.es/gotodate/go', '2022-07-11 17:56:41', '2022-07-11 17:56:41', NULL),
(658, 'JoshuaZew', 'alisia027@hotmail.com', '86855359168', '>>> ? I have a small question? Where can I get my gift? Here?: https://lnk.do/sL9YR4', '2022-07-11 19:53:46', '2022-07-11 19:53:46', NULL),
(659, 'CrytoISods', 'eduardosong@chipmunkbox.com', '89035375285', 'Making money in the net is easier now. https://Leli.seamonkey.es/gotodate/go', '2022-07-11 20:29:09', '2022-07-11 20:29:09', NULL),
(660, 'CrytoISods', 'm1a1hawen@yahoo.com', '89036556363', 'There is no need to look for a job anymore. Work online. https://Leli.seamonkey.es/gotodate/go', '2022-07-11 23:00:29', '2022-07-11 23:00:29', NULL),
(661, 'CrytoISods', 'tublessd4stress@aol.com', '89039833422', 'It is the best time to launch the Robot to get more money. https://Leli.seamonkey.es/gotodate/go', '2022-07-12 01:28:22', '2022-07-12 01:28:22', NULL),
(662, 'Theda Sisson', 'theda@getlisted.directory', '800-946-0995', 'Hello, did you know that there are 241,120 internet directories in the world. \r\n\r\nThese websites are what drive traffic to YOUR business.\r\n\r\nWant more traffic? Want more Sales? We can help - today.\r\n\r\nYour website dalbitpetroleum.com is listed in only 81 of these directories. \r\n\r\nGet more traffic for your Global audience.\r\n\r\nOur automated system adds your website to all of the directories.\r\n\r\nYou can find it here: getlisted.directory/dalbitpetroleum.com\r\n\r\nAct today, and we will expedite your listings and waive the processing charge!\r\n\r\nWe have a special going on. Use \"FRIENDS\" on checkout for a 50% discount valid today.', '2022-07-12 02:46:01', '2022-07-12 02:46:01', NULL),
(663, 'CrytoISods', 'maniebhall@yahoo.com', '89036901094', 'Need cash? Launch this robot and see what it can. https://Leli.seamonkey.es/gotodate/go', '2022-07-12 03:55:13', '2022-07-12 03:55:13', NULL),
(664, 'CrytoISods', 'lyonellen@gmail.com', '89033639166', 'Find out about the fastest way for a financial independence. https://Leli.seamonkey.es/gotodate/go', '2022-07-12 06:23:01', '2022-07-12 06:23:01', NULL),
(665, 'CrytoISods', 'jmirante@southingtonschools.org', '89039439854', 'Feel free to buy everything you want with the additional income. https://Leli.seamonkey.es/gotodate/go', '2022-07-12 08:53:50', '2022-07-12 08:53:50', NULL),
(666, 'Selena Lavarack', 'selena@getlisted.directory', '800-946-0995', 'Hello, did you know that there are 241,120 internet directories in the world. \r\n\r\nThese websites are what drive traffic to YOUR business.\r\n\r\nWant more traffic? Want more Sales? We can help - today.\r\n\r\nYour website dalbitpetroleum.com is listed in only 65 of these directories. \r\n\r\nGet more traffic for your Global audience.\r\n\r\nOur automated system adds your website to all of the directories.\r\n\r\nYou can find it here: getlisted.directory/dalbitpetroleum.com\r\n\r\nAct today, and we will expedite your listings and waive the processing charge!\r\n\r\nWe have a special going on. Use \"FRIENDS\" on checkout for a 50% discount valid today.', '2022-07-12 19:39:50', '2022-07-12 19:39:50', NULL),
(667, 'Kattie Smithson', 'smithson.kattie@gmail.com', '05.28.64.07.62', 'We have selected the Best of the Best SEO masters for you! Including Article Writers, Backlink creator gurus, Guest Posters, Social Marketing ninjas, Onsite SEO geniuses and many-many more others. Belive me, worth it to check our collection, you will definitely find what you need, High Quality of service on Affordable Price!!!\r\nPlease check our site Masters of SEO, here: https://trusted.bu.edu/controls/login/sts.ashx?gid=2&returnUrl=http://bitly.ws/sKep\r\n\r\nHave a Nice Day!', '2022-07-12 22:30:10', '2022-07-12 22:30:10', NULL),
(668, 'Felicity Buckland', 'felicitybucklandg432@yahoo.com', '03.07.83.02.37', 'Hi there,\r\n\r\nAs you\'ll know, Guest Posts are one of the most powerful backlinks you can get for dalbitpetroleum.com - and they are easy to do yourself.\r\n\r\nOur list contains over 6,500 handpicked websites that accept guest posts, with each site\'s SEO metrics and contact details, allowing you to contact them all directly and save hundreds on paying overpriced agency fees.\r\n\r\nIf you\'d like more information, you can reply to this email or visit the page here: https://bit.ly/3Plt7el\r\n\r\nKind Regards,\r\nFelicity', '2022-07-13 15:13:24', '2022-07-13 15:13:24', NULL),
(669, 'Willian Baum', 'willian@getlisted.directory', '800-946-0995', 'Hello, did you know that there are 241,120 internet directories in the world. \r\n\r\nThese websites are what drive traffic to YOUR business.\r\n\r\nWant more traffic? Want more Sales? We can help - today.\r\n\r\nYour website dalbitpetroleum.com is listed in only 65 of these directories. \r\n\r\nGet more traffic for your Global audience.\r\n\r\nOur automated system adds your website to all of the directories.\r\n\r\nYou can find it here: getlisted.directory/dalbitpetroleum.com\r\n\r\nAct today, and we will expedite your listings and waive the processing charge!\r\n\r\nWe have a special going on. Use \"FRIENDS\" on checkout for a 50% discount valid today.', '2022-07-14 02:55:38', '2022-07-14 02:55:38', NULL),
(670, 'Ferne Beaumont', 'beaumont.ferne@yahoo.com', '419-851-3706', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://is.gd/qLkrU7 ✅. Thanks! Elena', '2022-07-14 04:45:46', '2022-07-14 04:45:46', NULL),
(671, 'CrytoISods', 'buddyisnice@yahoo.com', '89030969541', 'The online income is your key to success. https://Leli.startupers.se/gotodate/go', '2022-07-14 07:30:35', '2022-07-14 07:30:35', NULL),
(672, 'CrytoISods', 'basketballballstarr@yahoo.com', '89036649990', 'Need cash? Launch this robot and see what it can. https://Leli.startupers.se/gotodate/go', '2022-07-14 09:56:10', '2022-07-14 09:56:10', NULL),
(673, 'CrytoISods', 'sohail_28a@yahoo.com', '89032488937', 'Need money? Earn it without leaving your home. https://Leli.startupers.se/gotodate/go', '2022-07-14 12:25:35', '2022-07-14 12:25:35', NULL),
(674, 'CrytoISods', 'kadealexander71079@gmail.com', '89032627427', 'Launch the financial Robot and do your business. https://Leli.startupers.se/gotodate/go', '2022-07-14 14:53:21', '2022-07-14 14:53:21', NULL),
(675, 'CrytoISods', 'mlaguerr@gmail.com', '89037403114', 'Financial robot keeps bringing you money while you sleep. https://Leli.startupers.se/gotodate/go', '2022-07-14 17:21:01', '2022-07-14 17:21:01', NULL),
(676, 'Mckenzie Mohammad', 'bchakka111975s@ronell.me', '20-34-85-14', 'Add your site to 1000 business directories with one click here-> https://bit.ly/submityoursite1000', '2022-07-14 19:13:15', '2022-07-14 19:13:15', NULL),
(677, 'Eric Jones', 'eric.jones.z.mail@gmail.com', '555-555-1212', 'Hey, this is Eric and I ran across dalbitpetroleum.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-07-14 19:36:25', '2022-07-14 19:36:25', NULL),
(678, 'CrytoISods', 'slash_the_hedgie@yahoo.com', '89033316590', 'Wow! This is a fastest way for a financial independence. https://Leli.startupers.se/gotodate/go', '2022-07-14 19:49:59', '2022-07-14 19:49:59', NULL),
(679, 'CrytoISods', 'satelitw14@chainlinkthemovie.com', '89030806354', 'No need to work anymore. Just launch the robot. https://Leli.startupers.se/gotodate/go', '2022-07-14 22:19:31', '2022-07-14 22:19:31', NULL),
(680, 'CrytoISods', 'ansasbullhauler@yahoo.com', '89030477616', 'It is the best time to launch the Robot to get more money. https://Leli.startupers.se/gotodate/go', '2022-07-15 00:47:52', '2022-07-15 00:47:52', NULL),
(681, 'CrytoISods', 'jmooney7271@yahoo.com', '89037665920', 'Make yourself rich in future using this financial robot. https://Leli.startupers.se/gotodate/go', '2022-07-15 03:16:26', '2022-07-15 03:16:26', NULL),
(682, 'GetBusinessFundedNow', 'noreply@getbusinessfundednow.pro', NULL, 'Faster and Simpler than the SBA, http://GetBusinessFundedNow.pro can get your business a loan for $2K-350,000 With low-credit and without collateral. \r\n \r\nUse our short form to Find Out exactly how much you can get, No-Cost: \r\n \r\nhttp://GetBusinessFundedNow.pro \r\n \r\nIf you\'ve been established for at least one year you are already pre-qualified. Our Fast service means funding can be finished within 48hrs. Terms are specific for each business so I suggest applying to find out exactly how much you can get. \r\n \r\nThis is a free service from a qualified lender and the approval will be based on the annual revenue of your business. Funds have no Restrictions, allowing you to use the full amount in any way including bills, taxes, hiring, marketing, expansion, or Absolutely Any Other expense. \r\n \r\nThere are limited SBA and private funds available so please apply now if interested, \r\n \r\nClick Here: http://GetBusinessFundedNow.pro \r\n \r\nHave a great day, \r\nThe Get Business Funded Now Team \r\n \r\nunsubscribe here - http://GetBusinessFundedNow.pro/r.php?url=dalbitpetroleum.com&id=117', '2022-07-15 04:42:40', '2022-07-15 04:42:40', NULL),
(683, 'CrytoISods', 'parulagarwal85@gmail.com', '89039788742', 'Have no money? It’s easy to earn them online here. https://Leli.startupers.se/gotodate/go', '2022-07-15 05:43:59', '2022-07-15 05:43:59', NULL),
(684, 'CrytoISods', 'mailboxcontrol-cyclesportsuk@yahoo.com', '89039457326', 'Launch the financial Robot and do your business. https://Leli.startupers.se/gotodate/go', '2022-07-15 08:11:47', '2022-07-15 08:11:47', NULL),
(685, 'CrytoISods', 'jimbonyc@gmail.com', '89039445790', 'One click of the robot can bring you thousands of bucks. https://Leli.startupers.se/gotodate/go', '2022-07-15 10:41:11', '2022-07-15 10:41:11', NULL),
(686, 'CrytoISods', 'karlo.vrtar@gmail.com', '89034173088', 'This robot will help you to make hundreds of dollars each day. https://Leli.startupers.se/gotodate/go', '2022-07-15 13:09:43', '2022-07-15 13:09:43', NULL),
(687, 'CrytoISods', 'its.grace.r@gmail.com', '89030403073', 'We know how to increase your financial stability. https://Leli.startupers.se/gotodate/go', '2022-07-15 15:37:07', '2022-07-15 15:37:07', NULL),
(688, 'CrytoISods', 'holly.caretta@gmail.com', '89034672298', 'Even a child knows how to make money. This robot is what you need! https://Leli.startupers.se/gotodate/go', '2022-07-15 18:11:19', '2022-07-15 18:11:19', NULL),
(689, 'CrytoISods', 'airserviceexperts@yahoo.com', '89036083864', 'Make money, not war! Financial Robot is what you need. https://Leli.startupers.se/gotodate/go', '2022-07-15 20:39:14', '2022-07-15 20:39:14', NULL),
(690, 'CrytoISods', 'nancyshops1@me.com', '89030575919', 'Robot is the best solution for everyone who wants to earn. https://Leli.startupers.se/gotodate/go', '2022-07-15 23:09:31', '2022-07-15 23:09:31', NULL),
(691, 'CrytoISods', 'sleeper009@aol.com', '89037157510', 'Make dollars just sitting home. https://Leli.startupers.se/gotodate/go', '2022-07-16 01:38:10', '2022-07-16 01:38:10', NULL),
(692, 'Ardis Carnarvon', 'roussama.ararouci@ldwdkj.com', '03.56.10.50.56', 'Add your site to 1000 business directories with one click here-> https://bit.ly/submityoursite1000', '2022-07-16 03:33:57', '2022-07-16 03:33:57', NULL),
(693, 'CrytoISods', 'sami_4lahe@yahoo.com', '89030975735', 'The best way for everyone who rushes for financial independence. https://Leli.startupers.se/gotodate/go', '2022-07-16 04:07:05', '2022-07-16 04:07:05', NULL),
(694, 'CrytoISods', 'cslindrup@charter.net', '89030309642', 'Additional income is now available for anyone all around the world. https://Leli.startupers.se/gotodate/go', '2022-07-16 06:35:38', '2022-07-16 06:35:38', NULL),
(695, 'CrytoISods', 'gokellbo@yahoo.com', '89034894179', 'Financial independence is what this robot guarantees. https://Leli.startupers.se/gotodate/go', '2022-07-16 09:04:08', '2022-07-16 09:04:08', NULL),
(696, 'CrytoISods', 'stupid_nickle@hotmail.com', '89038822268', 'Financial robot is your success formula is found. Learn more about it. https://Leli.startupers.se/gotodate/go', '2022-07-16 11:50:08', '2022-07-16 11:50:08', NULL),
(697, 'CrytoISods', 'candylady_candaceh@yahoo.com', '89033709083', 'Online Bot will bring you wealth and satisfaction. https://Leli.startupers.se/gotodate/go', '2022-07-16 14:17:13', '2022-07-16 14:17:13', NULL),
(698, 'CrytoISods', 'ntews@hotmail.com', '89031567054', 'The huge income without investments is available. https://Leli.startupers.se/gotodate/go', '2022-07-16 16:47:31', '2022-07-16 16:47:31', NULL),
(699, 'CrytoISods', 'melonie.mossberg@gmail.com', '89036909053', 'Buy everything you want earning money online. https://Leli.startupers.se/gotodate/go', '2022-07-16 19:14:40', '2022-07-16 19:14:40', NULL),
(700, 'CrytoISods', 'imar9an@hotmail.com', '89038922753', 'Make money, not war! Financial Robot is what you need. https://Leli.elletvweb.it/gotodate/go', '2022-07-16 21:46:35', '2022-07-16 21:46:35', NULL),
(701, 'CrytoISods', 'doris.gordon@att.net', '89038495013', 'Check out the newest way to make a fantastic profit. https://Leli.elletvweb.it/gotodate/go', '2022-07-17 00:13:07', '2022-07-17 00:13:07', NULL),
(702, 'CrytoISods', 'catherinefshr@yahoo.com', '89037820275', 'Earning money in the Internet is easy if you use Robot. https://Leli.elletvweb.it/gotodate/go', '2022-07-17 02:41:02', '2022-07-17 02:41:02', NULL),
(703, 'Karl Shanahan', 'shanahan.karl@gmail.com', '0281-4039756', 'Hey there i wanted to introduce you to Project Serenity\r\nThis is the flagship crypto investment newsletter for serious speculators.\r\nThere are literally thousands of cryptocurrencies out there.\r\n Most of them are complete junk.\r\nIn Project Serenity they analyze the layers of the Blockchain Ecosystem where the crypto superstars of tomorrow are hiding.\r\nCutting-edge crypto projects that will form the foundation of our new, decentralized, self-sovereign world.\r\nThese little-known crypto projects can bring you profits of 100x your invested capital or even more! \r\nThe world is about to undergo major change\r\nBe on top of it. Check it out here \r\nhttps://www.digistore24.com/redir/307348/CunningSage/\r\nI wish you plentiful gains!', '2022-07-17 04:11:45', '2022-07-17 04:11:45', NULL),
(704, 'CrytoISods', 'mitarmehta@rediffmail.com', '89032086250', 'Making money is very easy if you use the financial Robot. https://Leli.elletvweb.it/gotodate/go', '2022-07-17 05:31:24', '2022-07-17 05:31:24', NULL),
(705, 'CrytoISods', 'grain53@yahoo.com', '89031670328', 'Even a child knows how to make money. Do you? https://Leli.elletvweb.it/gotodate/go', '2022-07-17 08:02:01', '2022-07-17 08:02:01', NULL),
(706, 'Ultimate', 'noreply@getmorebusinessleadsnow.com', '317-746-7144', 'Hi, would you like more business leads at a lower cost? Currently http://GetMoreBusinessLeadsNow.com is offering our popular unlimited lead generation software package - at a reduced price for a limited time. \r\n \r\nDownload and install now to be building databases of leads in minutes: \r\n \r\nhttp://GetMoreBusinessLeadsNow.com \r\n \r\nThe Ultimate Lead Generation Pack works by automatically visting yellow page directories and building a database according to your search terms. Other software in the pack then finds emails, phone numbers, and other details for that database. The results can be used for email, cold-calling, direct mail, or to sell immediately - priced per lead. Runs on Windows, Mac, and Linux with multiple job and VPN/proxy support. Similar software retails for over $100 with less features. \r\n \r\nThis pack is only available on sale as a short promotional offer, please download now if at all interested. \r\n \r\nClick Here: http://GetMoreBusinessLeadsNow.com \r\n \r\nHave a Great Day, \r\nThe Ultimate Lead Generation Pack Team \r\n \r\nunsubscribe/remove Here: http://getmorebusinessleadsnow.com/r.php?url=dalbitpetroleum.com&id=ulg368', '2022-07-17 09:58:07', '2022-07-17 09:58:07', NULL);
INSERT INTO `contacts` (`id`, `name`, `email`, `telephone_number`, `message`, `created_at`, `updated_at`, `deleted_at`) VALUES
(707, 'CrytoISods', 'duncan.south@talktalk.net', '89035295388', 'The additional income for everyone. https://Leli.elletvweb.it/gotodate/go', '2022-07-17 10:36:14', '2022-07-17 10:36:14', NULL),
(708, 'CrytoISods', 'tvuvxsnb52@gmail.com', '89034359394', 'Launch the best investment instrument to start making money today. https://Leli.elletvweb.it/gotodate/go', '2022-07-17 13:06:41', '2022-07-17 13:06:41', NULL),
(709, 'Johan Fourie', 'johanfourieltd@gmail.com', 'NA', 'Hi.\r\n\r\nMy name is Johan Fourie and I am independent provider of custom data.\r\n\r\nWhether it be teachers in Michigan, crypto users in Germany or Construction works in South Africa.\r\n\r\nWe cover all data and covers all countries. \r\n\r\nWe do custom scraping jobs for clients as well that are in need of data. \r\n\r\nYou can contact me on WhatsApp and we can talk about your needs.\r\n\r\nhttps://wa.me/+27722801952?text=Data%20Scraping', '2022-07-19 05:19:00', '2022-07-19 05:19:00', NULL),
(710, 'CrytoISods', 'aszislast@yahoo.com', '89037148088', 'We know how to make our future rich and do you? https://Leli.elletvweb.it/gotodate/go', '2022-07-19 22:44:26', '2022-07-19 22:44:26', NULL),
(711, 'CrytoISods', 'tpm1997@yahoo.com', '89038423805', 'Invest $1 today to make $1000 tomorrow. https://Leli.elletvweb.it/gotodate/go', '2022-07-20 01:10:45', '2022-07-20 01:10:45', NULL),
(712, 'CrytoISods', 'donahue.katherine@gmail.com', '89034882518', 'Make yourself rich in future using this financial robot. https://Leli.elletvweb.it/gotodate/go', '2022-07-20 03:39:11', '2022-07-20 03:39:11', NULL),
(713, 'CrytoISods', 'agni231@yahoo.com', '89032802509', 'The financial Robot is your future wealth and independence. https://Leli.elletvweb.it/gotodate/go', '2022-07-20 06:11:08', '2022-07-20 06:11:08', NULL),
(714, 'CrytoISods', 'rachael.sparks@yahoo.com', '89033693232', 'Financial robot guarantees everyone stability and income. https://Leli.elletvweb.it/gotodate/go', '2022-07-20 08:40:46', '2022-07-20 08:40:46', NULL),
(715, 'CrytoISods', 'maureenblair@earthlink.net', '89034117436', 'No need to work anymore. Just launch the robot. https://Leli.elletvweb.it/gotodate/go', '2022-07-20 11:06:26', '2022-07-20 11:06:26', NULL),
(716, 'CrytoISods', 'silvanita_1912@hotmail.com', '89038943837', 'Financial Robot is #1 investment tool ever. Launch it! https://Leli.elletvweb.it/gotodate/go', '2022-07-20 13:36:24', '2022-07-20 13:36:24', NULL),
(717, 'Whitney Griffie', 'umonircio@joinm3.com', '0692-3717189', 'Congrats on your new site, get it listed here for free and we\'ll start sending people to your site https://bit.ly/submityoursite1000', '2022-07-20 15:57:45', '2022-07-20 15:57:45', NULL),
(718, 'CrytoISods', 'tneccats@comcast.net', '89037457936', 'Try out the automatic robot to keep earning all day long. https://Leli.elletvweb.it/gotodate/go', '2022-07-20 16:07:03', '2022-07-20 16:07:03', NULL),
(719, 'CrytoISods', 'katherineacker@ymail.com', '89038150003', 'Money, money! Make more money with financial robot! https://Leli.elletvweb.it/gotodate/go', '2022-07-20 18:35:24', '2022-07-20 18:35:24', NULL),
(720, 'CrytoISods', 'tavinho.almeida@hotmail.com', '89034887646', 'Let your money grow into the capital with this Robot. https://Leli.elletvweb.it/gotodate/go', '2022-07-20 21:00:23', '2022-07-20 21:00:23', NULL),
(721, 'Michael Taggart', 'mt@bestecfs.co.za', NULL, 'Good day,\r\n\r\nWe would like to find out if your Company buys fuel or requires Fuel.\r\n\r\nThank you.\r\n\r\nKind regards,\r\n\r\nMichael Taggart', '2022-07-20 22:13:33', '2022-07-20 22:13:33', NULL),
(722, 'CrytoISods', 'poted16@mileupper.com', '89037386738', 'The huge income without investments is available, now! https://Leli.elletvweb.it/gotodate/go', '2022-07-20 23:27:42', '2022-07-20 23:27:42', NULL),
(723, 'CrytoISods', 'greghefly33@yahoo.com', '89032123607', 'Start your online work using the financial Robot. https://Leli.elletvweb.it/gotodate/go', '2022-07-21 01:54:45', '2022-07-21 01:54:45', NULL),
(724, 'CrytoISods', 'dulfermetal@yahoo.com', '89033468239', 'Even a child knows how to make $100 today. https://Leli.elletvweb.it/gotodate/go', '2022-07-21 04:20:04', '2022-07-21 04:20:04', NULL),
(725, 'CrytoISods', 'cookie.lover44@yahoo.com', '89039339293', 'Make thousands of bucks. Pay nothing. https://Leli.elletvweb.it/gotodate/go', '2022-07-21 06:47:29', '2022-07-21 06:47:29', NULL),
(726, 'CrytoISods', 'sue@cyberdietz.com', '89030337588', 'Even a child knows how to make money. This robot is what you need! https://Leli.elletvweb.it/gotodate/go', '2022-07-21 09:14:27', '2022-07-21 09:14:27', NULL),
(727, 'Curry', 'curry@maxwayvehicle.com', '18366111336', 'Hello, my name is Curry, we are semi trailer & tanker supplier in China, named Shandong Maxway Vehicle Co.,Ltd. Want to ask does your company has plan to purchase more fuel tankers this year? If you need, you can send me requirements, i quota you our price.', '2022-07-21 12:53:13', '2022-07-21 12:53:13', NULL),
(728, 'CrytoISods', 'lolaisfree@yahoo.com', '89035585675', 'Make your money work for you all day long. https://Leli.elletvweb.it/gotodate/go', '2022-07-21 12:58:58', '2022-07-21 12:58:58', NULL),
(729, 'GetBusinessFunded', 'noreply@getbusinessfunded.pro', NULL, 'Quicker and Easier than the SBA, http://GetBusinessFunded.pro can get your business a loan for $2K-350,000 With low-credit and no collateral. \r\n \r\nUse our quick form to Find Out exactly how much you can get, No-Cost: \r\n \r\nhttp://GetBusinessFunded.pro \r\n \r\nIf you\'ve been established for at least a year you are already pre-qualified. Our Quick service means funding can be finished within 48 hours. Terms are personalized for each business so I suggest applying to find out exactly how much you can get. \r\n \r\nThis is a free service from a qualified lender and the approval will be based on the annual revenue of your business. Funds are also Non-Restrictive, allowing you to use the whole amount in any way including bills, taxes, hiring, marketing, expansion, or Absolutely Any Other expense. \r\n \r\nThere are limited SBA and private funds available so please apply now if interested, \r\n \r\nClick Here: http://GetBusinessFunded.pro \r\n \r\nHave a great day, \r\nThe Get Business Funded Team \r\n \r\nremove here - http://GetBusinessFunded.pro/r.php?url=dalbitpetroleum.com&id=119', '2022-07-21 20:17:54', '2022-07-21 20:17:54', NULL),
(730, 'CrytoISods', 'timdnfg83@hotmail.com', '89037168497', 'Attention! Here you can earn money online! https://Leli.elletvweb.it/gotodate/go', '2022-07-21 22:26:39', '2022-07-21 22:26:39', NULL),
(731, 'CrytoISods', 'olga.zhdanova@bankofamerica.com', '89038722910', 'No need to worry about the future if your use this financial robot. https://Leli.elletvweb.it/gotodate/go', '2022-07-22 02:41:57', '2022-07-22 02:41:57', NULL),
(732, 'CrytoISods', 'rridic@hotmail.com', '89039990093', 'Financial Robot is #1 investment tool ever. Launch it! https://Leli.elletvweb.it/gotodate/go', '2022-07-22 06:53:32', '2022-07-22 06:53:32', NULL),
(733, 'CrytoISods', 'tempeslee@daum.net', '89037664154', 'Your computer can bring you additional income if you use this Robot. https://Leli.elletvweb.it/gotodate/go', '2022-07-22 11:07:57', '2022-07-22 11:07:57', NULL),
(734, 'CrytoISods', 'alo_max_fe@yahoo.com', '89032500682', 'Robot never sleeps. It makes money for you 24/7. https://Leli.elletvweb.it/gotodate/go', '2022-07-22 15:32:43', '2022-07-22 15:32:43', NULL),
(735, 'CrytoISods', 'santa.jessi@yahoo.com', '89039142087', 'Robot never sleeps. It makes money for you 24/7. https://Leli.elletvweb.it/gotodate/go', '2022-07-22 20:09:54', '2022-07-22 20:09:54', NULL),
(736, 'Della Deen', 'deen.della@gmail.com', '021 716 81 95', 'How do I restore access to my account? >>> https://u.to/kU8_HA', '2022-07-22 22:54:31', '2022-07-22 22:54:31', NULL),
(737, 'CrytoISods', 'saritahuman@gmail.com', '89037121081', 'Buy everything you want earning money online. https://Leli.elletvweb.it/gotodate/go', '2022-07-23 00:20:31', '2022-07-23 00:20:31', NULL),
(738, 'CrytoISods', 'jzmuscle6996@yahoo.com', '89037223729', 'Financial Robot is #1 investment tool ever. Launch it! https://Leli.elletvweb.it/gotodate/go', '2022-07-23 04:58:02', '2022-07-23 04:58:02', NULL),
(739, 'Ilídio Casimiro Nhamurravate', 'ilidiocn@boleiachain.com', '+258824678586', 'Saudações \r\n \r\nEscrevo da BoleiaChain Lda, uma empresa Moçambicana de economia partilhada (carpooling/ carsharing) que permite que condutores que buscam oferecer Boleia e pessoas que procuram por Boleia possam se conectar e partilhar a viagem de forma segura, confortável e a preço pré acordado. \r\n \r\nNós acreditamos que para o sucesso do projeto não bastaria apenas o engenho, a aderência pelos utilizadores e sua expansão. Acreditamos num eco- sistema que agrega valor para os atores diretos e operadores das áreas adjacentes, por meio de parcerias estratégicas, que é o que procuramos na DALBIT Moçambique. \r\n \r\nÉ certo que, quando um favor inicial não solicitado é feito, ele cria uma obrigação ao beneficiário e o ser humano tende a sempre pagar com gratidão aquilo que é lhe dado por outras pessoas, ou seja, não tem ninguém que colabora melhor que uma pessoa que se sente grata, sempre reside nela maior desejo em retribuir, importando que o favor seja significativo, inesperado e personalizado. \r\n\r\n\r\n \r\nA ser verdade, o combustível é a primeira coisa que se pensa quando o assunto é \"veículo/condutor vs bombas\", vende-lo \"barato\" seria de mais valia de tal forma que, não se faria sentir, o quão mais caro os outros produtos/ serviços são. Porém, os preços dos combustíveis são determinados por reguladores, facto que impossibilitaria que DALBIT estabelecesse preços baixo, não se tiver um recurso que sirva de objeto para o efeito, que é um papel que a BoleiaChain desempenharia melhor nesta parceria\r\n\r\n \r\n \r\nBom, acreditamos que DALBIT deve ter responsabilidade social para qual aplica um certo fundo. A mobilidade, é uma área que a DALBIT poderia incluir na sua carteira de responsabilidade social, abraçando a BoleiaChain como seu objecto de propaganda para conceder descontos aos condutores BoleiaChain, que é um público que daria maior relevância ao gesto, especialmente no abastecimento de combustível. A DALBIT estaria a aplicar sua responsabilidade social num público que lhe daria um retorno direto, podendo facilmente vender os demais serviços a estes. Os condutores procurariam se inscrever no BoleiaChain para ter o desconto, desconto este que não significa vender barato, mas sim uma \"isca para ratoeira\"... \r\n\r\nE em jeito de ganhos nesta parceria: \r\nDALBIT\r\n1. Responsabilidade social \r\na. Abraçar a mobilidade urbana, que representa um público que daria maior relevância ao gesto (combustível vs transporte)\r\n2. Comercial\r\na. Usar o BoleiaChain como recurso de propaganda para conceder descontos na distribuição de combustíveis e faturar com o número de vendas\r\nb. Usar os seus postos de distribuição de combustível como ponto de distribuição de BCT ( recargas BoleiaChain) e faturar sua margem\r\nc. Alargar sua procura e consequentemente facilidade de vender os demais serviços\r\nd. Possibilidade de dar visibilidade aos seus produtos e serviços nas potencias vias e vias mais movimentadas do dia aos utilizadores da plataforma BoleiaChain pela metade do preço estabelecido na nossa tabela de taxa de anúncios\r\nCondutores \r\n1. Abastecer a preço \"mais baixo\" do mercado \r\nOcupantes \r\n1. Viagem baixo custo \r\nBoleiaChain \r\n1. Alargar sua capacidade de resposta \r\n \r\nA BoleiaChain obedece uma estrutura de gamificação, que é dada pelos níveis de adesão e engajamento na plataforma, facto que poderá facilmente permitir a implementação desta parceria. \r\n \r\nDado entendimento sobre o negócio por vossa parte, outras estratégias de ganho comum, podem ser elaboradas e trazidas à mesa. \r\n \r\nUm encontro frente a frente é bem-vindo, igualmente poderemos fazer a apresentação do projeto no seu todo, onde acreditamos que outros acordos podem ser celebrados.\r\n\r\n\r\nAtenciosamente,\r\n\r\nIlídio Nhamurravate\r\nCo- Founder\r\n(+258) 82 4678586 | 87 9370719', '2022-07-23 18:40:53', '2022-07-23 18:40:53', NULL),
(740, 'Ilídio Casimiro Nhamurravate', 'ilidiocn@boleiachain.com', '+258824678586', 'Saudações \r\n \r\nEscrevo da BoleiaChain Lda, uma empresa Moçambicana de economia partilhada (carpooling/ carsharing) que permite que condutores que buscam oferecer Boleia e pessoas que procuram por Boleia possam se conectar e partilhar a viagem de forma segura, confortável e a preço pré acordado. \r\n \r\nNós acreditamos que para o sucesso do projeto não bastaria apenas o engenho, a aderência pelos utilizadores e sua expansão. Acreditamos num eco- sistema que agrega valor para os atores diretos e operadores das áreas adjacentes, por meio de parcerias estratégicas, que é o que procuramos na DALBIT Moçambique. \r\n \r\nÉ certo que, quando um favor inicial não solicitado é feito, ele cria uma obrigação ao beneficiário e o ser humano tende a sempre pagar com gratidão aquilo que é lhe dado por outras pessoas, ou seja, não tem ninguém que colabora melhor que uma pessoa que se sente grata, sempre reside nela maior desejo em retribuir, importando que o favor seja significativo, inesperado e personalizado. \r\n\r\n\r\n \r\nA ser verdade, o combustível é a primeira coisa que se pensa quando o assunto é \"veículo/condutor vs bombas\", vende-lo \"barato\" seria de mais valia de tal forma que, não se faria sentir, o quão mais caro os outros produtos/ serviços são. Porém, os preços dos combustíveis são determinados por reguladores, facto que impossibilitaria que DALBIT estabelecesse preços baixo, não se tiver um recurso que sirva de objeto para o efeito, que é um papel que a BoleiaChain desempenharia melhor nesta parceria\r\n\r\n \r\n \r\nBom, acreditamos que DALBIT deve ter responsabilidade social para qual aplica um certo fundo. A mobilidade, é uma área que a DALBIT poderia incluir na sua carteira de responsabilidade social, abraçando a BoleiaChain como seu objecto de propaganda para conceder descontos aos condutores BoleiaChain, que é um público que daria maior relevância ao gesto, especialmente no abastecimento de combustível. A DALBIT estaria a aplicar sua responsabilidade social num público que lhe daria um retorno direto, podendo facilmente vender os demais serviços a estes. Os condutores procurariam se inscrever no BoleiaChain para ter o desconto, desconto este que não significa vender barato, mas sim uma \"isca para ratoeira\"... \r\n\r\nE em jeito de ganhos nesta parceria: \r\nDALBIT\r\n1. Responsabilidade social \r\na. Abraçar a mobilidade urbana, que representa um público que daria maior relevância ao gesto (combustível vs transporte)\r\n2. Comercial\r\na. Usar o BoleiaChain como recurso de propaganda para conceder descontos na distribuição de combustíveis e faturar com o número de vendas\r\nb. Usar os seus postos de distribuição de combustível como ponto de distribuição de BCT ( recargas BoleiaChain) e faturar sua margem\r\nc. Alargar sua procura e consequentemente facilidade de vender os demais serviços\r\nd. Possibilidade de dar visibilidade aos seus produtos e serviços nas potencias vias e vias mais movimentadas do dia aos utilizadores da plataforma BoleiaChain pela metade do preço estabelecido na nossa tabela de taxa de anúncios\r\nCondutores \r\n1. Abastecer a preço \"mais baixo\" do mercado \r\nOcupantes \r\n1. Viagem baixo custo \r\nBoleiaChain \r\n1. Alargar sua capacidade de resposta \r\n \r\nA BoleiaChain obedece uma estrutura de gamificação, que é dada pelos níveis de adesão e engajamento na plataforma, facto que poderá facilmente permitir a implementação desta parceria. \r\n \r\nDado entendimento sobre o negócio por vossa parte, outras estratégias de ganho comum, podem ser elaboradas e trazidas à mesa. \r\n \r\nUm encontro frente a frente é bem-vindo, igualmente poderemos fazer a apresentação do projeto no seu todo, onde acreditamos que outros acordos podem ser celebrados.\r\n\r\n\r\nAtenciosamente,\r\n\r\nIlídio Nhamurravate\r\nCo- Founder\r\n(+258) 82 4678586 | 87 9370719', '2022-07-23 18:41:05', '2022-07-23 18:41:05', NULL),
(741, 'Collette', 'contact@lesessouffles.com', '030 94 92 51', 'Good Morning \r\n\r\nDo you have time to brush your dog\'s teeth every day?\r\n\r\nLet your dog clean his own teeth with our dog dental care brushing stick. Made of eco-friendly natural rubber, this toothbrush is sturdy. The soft design is safe for your dogs\' gums and helps to clean their teeth and protect them from oral diseases and dental decay. \r\n\r\nAct Now And Receive A Special Discount!\r\n\r\nClick here: https://dogcare.center\r\n\r\nAll the best, \r\n \r\nCollette', '2022-07-25 04:35:54', '2022-07-25 04:35:54', NULL),
(742, 'Otto Mandalis', '5hoss@gmailup.com', '06-96405457', 'Give your new site a boost, submit your site now to our free directory and start getting more clients https://bit.ly/submityoursite1000', '2022-07-25 16:17:28', '2022-07-25 16:17:28', NULL),
(743, 'FindFastBusinessFunds', 'noreply@findfastbusinessfunds.pro', NULL, 'Faster and Easier than the SBA, http://FindFastBusinessFunds.pro can get your business a loan for $2K-350,000 With low-credit and no collateral. \r\n \r\nUse our fast form to Find Out exactly how much you can get, No-Cost: \r\n \r\nhttp://FindFastBusinessFunds.pro \r\n \r\nIf you\'ve been in business for at least 12 months you are already pre-qualified. Our Quick service means funding can be completed within 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get. \r\n \r\nThis is a free service from a qualified lender and the approval will be based on the annual revenue of your business. Funds have no Restrictions, allowing you to use the full amount in any way including bills, taxes, hiring, marketing, expansion, or Absolutely Any Other expense. \r\n \r\nThere are limited SBA and private funds available so please apply now if interested, \r\n \r\nClick Here: http://FindFastBusinessFunds.pro \r\n \r\nHave a great day, \r\nThe Find Fast Business Funds Team \r\n \r\nremove here - http://FindFastBusinessFunds.pro/r.php?url=dalbitpetroleum.com&id=120', '2022-07-26 05:42:22', '2022-07-26 05:42:22', NULL),
(744, 'CrytoISods', 'richrem1951ral@hotmail.com', '89035328195', 'Let your money grow into the capital with this Robot. https://Leli.frostyelk.se/gotodate/go', '2022-07-26 11:25:57', '2022-07-26 11:25:57', NULL),
(745, 'CrytoISods', 'rvwszqdrbm@nbvepf.com', '89032400670', 'Every your dollar can turn into $100 after you lunch this Robot. https://Leli.frostyelk.se/gotodate/go', '2022-07-26 16:11:00', '2022-07-26 16:11:00', NULL),
(746, 'CrytoISods', 'gclevengercpa@sbcglobal.net', '89039825630', 'Financial robot is your success formula is found. Learn more about it. https://Leli.frostyelk.se/gotodate/go', '2022-07-26 20:26:14', '2022-07-26 20:26:14', NULL),
(747, 'CrytoISods', 'doulklofsoown@mainru.com', '89037420131', 'This robot will help you to make hundreds of dollars each day. https://Leli.frostyelk.se/gotodate/go', '2022-07-27 01:30:06', '2022-07-27 01:30:06', NULL),
(748, 'CrytoISods', 'reeschm@gmail.com', '89030714404', 'Looking for an easy way to make money? Check out the financial robot. https://Leli.frostyelk.se/gotodate/go', '2022-07-27 05:41:57', '2022-07-27 05:41:57', NULL),
(749, 'CrytoISods', 'sydneywang000@hotmail.com', '89033417987', 'Financial robot guarantees everyone stability and income. https://Leli.frostyelk.se/gotodate/go', '2022-07-27 09:54:17', '2022-07-27 09:54:17', NULL),
(750, 'CrytoISods', 'jmdjewelry@verizon.net', '89037362442', 'Make thousands of bucks. Financial robot will help you to do it! https://Leli.frostyelk.se/gotodate/go', '2022-07-27 14:30:02', '2022-07-27 14:30:02', NULL),
(751, 'CrytoISods', 'joshuaknack@gmail.com', '89030255880', 'Feel free to buy everything you want with the additional income. https://Leli.frostyelk.se/gotodate/go', '2022-07-27 18:41:12', '2022-07-27 18:41:12', NULL),
(752, 'CrytoISods', 'ksvjc01@gmail.com', '89035563479', 'Earn additional money without efforts. https://Leli.frostyelk.se/gotodate/go', '2022-07-27 22:52:45', '2022-07-27 22:52:45', NULL),
(753, 'CrytoISods', 'mommajo22@earthlink.net', '89036164140', 'There is no need to look for a job anymore. Work online. https://Leli.frostyelk.se/gotodate/go', '2022-07-28 03:00:14', '2022-07-28 03:00:14', NULL),
(754, 'CrytoISods', 'Emrys18@yahoo.com', '89031914979', 'Need money? Get it here easily! Just press this to launch the robot. https://Leli.frostyelk.se/gotodate/go', '2022-07-28 07:54:05', '2022-07-28 07:54:05', NULL),
(755, 'Emil Bone', 'gemooboy.lovej@bucol.net', '470 66 299', 'Add your site to 1000 business directories with one click here-> https://bit.ly/submit_site_9jxc1c6t8mpn', '2022-07-28 09:20:03', '2022-07-28 09:20:03', NULL),
(756, 'CrytoISods', 'khqnwgxqpa@kzezzo.com', '89031699138', 'Make thousands every week working online here. https://Leli.frostyelk.se/gotodate/go', '2022-07-28 12:05:58', '2022-07-28 12:05:58', NULL),
(757, 'ProBusinessFundedNow', 'noreply@probusinessfundednow.com', NULL, 'Hi, do you know that http://ProBusinessFundedNow.com can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://ProBusinessFundedNow.com \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 120K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://ProBusinessFundedNow.com \r\n \r\nHave a good day, \r\nThe Pro Business Funded Now Team \r\n \r\nunsubscribe/remove - http://ProBusinessFundedNow.com/r.php?url=dalbitpetroleum.com&id=121', '2022-07-28 13:32:06', '2022-07-28 13:32:06', NULL),
(758, 'Celesta Alvarado', 'alvarado.celesta71@yahoo.com', '06-90386761', 'Two days ago I received a message that I need to pick up my prize. But I lost the email with the data to access the site. How do I restore access? >>> https://is.gd/qBdPHD', '2022-07-28 14:28:30', '2022-07-28 14:28:30', NULL),
(759, 'CrytoISods', 'adinb4r+kp@gmail.com', '89036046569', 'The financial Robot is your # 1 expert of making money. https://Leli.frostyelk.se/gotodate/go', '2022-07-28 16:16:16', '2022-07-28 16:16:16', NULL),
(760, 'Hattie', 'info@ist-net.de', '06-13840507', 'Hey there \r\n\r\nI understand that you are looking for ways to improve your posture and contribute to a healthy lifestyle. I think our product, Medico Postura™ Body Posture Corrector, can be of great help.\r\n\r\nMedico Postura™ helps improve your posture INSTANTLY. It is an easy-to-use device that you can wear at home, work, or even when you are sleeping.\r\n\r\nIt is made of lightweight and breathable fabric, making it comfortable to wear all day long.\r\n\r\nGet it today while it\'s still 60% OFF: https://medicopostura.com \r\n\r\nFREE Shipping - TODAY ONLY!\r\n\r\nAll the best, \r\n\r\nHattie', '2022-07-29 00:12:21', '2022-07-29 00:12:21', NULL),
(761, 'Carmine Santiago', 'carmine.santiago@gmail.com', '032 995 10 96', 'Hi there\r\nDo you want to get backlinks from domains that have tons of ranking keywords?\r\n\r\nhttps://www.monkeydigital.co/semrush-backlinks/', '2022-07-29 00:53:13', '2022-07-29 00:53:13', NULL),
(762, 'Mari Levay', 'vnatasha.sunaina4@tahugejrot.buzz', '321-227-5744', 'I was wondering if you wanted to submit your new site to our free business directory? bit.ly/submit_site_1', '2022-07-29 12:12:35', '2022-07-29 12:12:35', NULL),
(763, 'CrytoISods', 'hernandezsuzzette@gmail.com', '89039775520', 'Everyone can earn as much as he wants now. https://Leli.qbe-medienhaus.de/Leli', '2022-07-30 22:56:34', '2022-07-30 22:56:34', NULL),
(764, 'CrytoISods', 'ajah4reall@yahoo.com', '89030703051', 'Your money keep grow 24/7 if you use the financial Robot. https://Leli.qbe-medienhaus.de/Leli', '2022-07-31 01:27:39', '2022-07-31 01:27:39', NULL),
(765, 'IssacTat', 'evalid.atortest@gmail.com', '88843952253', 'Salam, qiym?tinizi bilm?k ist?dim.', '2022-07-31 02:22:00', '2022-07-31 02:22:00', NULL),
(766, 'CrytoISods', 'bullardbdl@yahoo.com', '89034341433', 'One dollar is nothing, but it can grow into $100 here. https://Leli.qbe-medienhaus.de/Leli', '2022-07-31 03:54:50', '2022-07-31 03:54:50', NULL),
(767, 'CrytoISods', 'gingermarie92@gmail.com', '89036192080', 'Earn additional money without efforts and skills. https://Leli.qbe-medienhaus.de/Leli', '2022-07-31 06:24:11', '2022-07-31 06:24:11', NULL),
(768, 'CrytoISods', 'hawaiigirl527@yahoo.com', '89032712873', 'Have no financial skills? Let Robot make money for you. https://Leli.qbe-medienhaus.de/Leli', '2022-07-31 08:57:23', '2022-07-31 08:57:23', NULL),
(769, 'CrytoISods', 'tinababi11@yahoo.com', '89032837617', 'Earning $1000 a day is easy if you use this financial Robot. https://Leli.qbe-medienhaus.de/Leli', '2022-07-31 11:27:26', '2022-07-31 11:27:26', NULL),
(770, 'CrytoISods', 'bark@goshenbarkpark.com', '89033622855', 'Make thousands of bucks. Financial robot will help you to do it! https://Leli.qbe-medienhaus.de/Leli', '2022-07-31 13:55:29', '2022-07-31 13:55:29', NULL),
(771, 'CrytoISods', 'angiedin62@aol.com', '89036784525', 'Robot never sleeps. It makes money for you 24/7. https://Leli.qbe-medienhaus.de/Leli', '2022-07-31 16:25:39', '2022-07-31 16:25:39', NULL),
(772, 'CrytoISods', '9819151336@gmail.com', '89039848388', 'Looking for an easy way to make money? Check out the financial robot. https://Leli.qbe-medienhaus.de/Leli', '2022-07-31 18:53:35', '2022-07-31 18:53:35', NULL),
(773, 'CrytoISods', 'ilepaeyez@yandexmailserv.com', '89030860759', 'The best online investment tool is found. Learn more! https://Leli.qbe-medienhaus.de/Leli', '2022-07-31 22:17:22', '2022-07-31 22:17:22', NULL),
(774, 'CrytoISods', 'gautbrearesetju@placebod.com', '89039432785', 'Feel free to buy everything you want with the additional income. https://Leli.qbe-medienhaus.de/Leli', '2022-08-01 00:46:45', '2022-08-01 00:46:45', NULL),
(775, 'CrytoISods', 'jbecker@ellisdon.com', '89032734500', 'The additional income for everyone. https://Leli.qbe-medienhaus.de/Leli', '2022-08-01 03:13:24', '2022-08-01 03:13:24', NULL),
(776, 'CrytoISods', 'sandycony1806@hotmail.com', '89037139053', 'Need some more money? Robot will earn them really fast. https://Leli.qbe-medienhaus.de/Leli', '2022-08-01 06:00:20', '2022-08-01 06:00:20', NULL),
(777, 'CrytoISods', 'stephan.schneck@wrigley.com', '89039517834', 'The fastest way to make your wallet thick is found. https://Leli.qbe-medienhaus.de/Leli', '2022-08-01 08:30:17', '2022-08-01 08:30:17', NULL),
(778, 'CrytoISods', 'tie_domie17@hotmail.com', '89039128706', 'Need money? Earn it without leaving your home. https://Leli.qbe-medienhaus.de/Leli', '2022-08-01 10:58:33', '2022-08-01 10:58:33', NULL),
(779, 'CrytoISods', 'kitty6dbxbx@yahoo.com', '89035898698', 'The additional income is available for everyone using this robot. https://Leli.qbe-medienhaus.de/Leli', '2022-08-01 13:48:44', '2022-08-01 13:48:44', NULL),
(780, 'CrytoISods', 'halldanielle60@yahoo.com', '89030936895', 'Make thousands of bucks. Pay nothing. https://Leli.qbe-medienhaus.de/Leli', '2022-08-01 16:15:04', '2022-08-01 16:15:04', NULL),
(781, 'Eser Tumen', 'esertumen@tumenholding.com', '0532 477 83 83', 'Dear Colleague,\r\n\r\nTumen Holding is an international group of companies which performs in three continents Europe, Africa and Asia. We would like to expand our operations in new regions. We are actively working on the following fields:\r\n\r\n• Engineering & Construction\r\n- Tumen International Engineering and Construction Company\r\n- Tumen Project and Construction Management Services Company\r\n• Investment & Consultancy\r\n- Tumen Real Estate Development and Investment Company\r\n- Tumen Consultancy Services Company\r\n• Energy & Trading\r\n- Tumen Petroleum and Derivatives Trading Company\r\n- Tumen Import and Export General Trading Company\r\n- Tumen Renewable Energy Services Company\r\n- Tumen Agricultural Products Producing and Trading Company\r\n\r\nTumen Holding is presently active in Turkey, Saudi Arabia, UAE, Qatar, Kuwait, Oman, Iraq, Libya, Nigeria, Uganda, Sierra Leone, Azerbaijan, Georgia, Bulgaria, Cyprus, Netherlands, Switzerland and the UK.\r\n\r\nWe will be waiting for your positive reply to improve the relations between the organizations and evaluate the possible business opportunities together.\r\n\r\nThank You & Kind Regards\r\nTumen Holding\r\n\r\nContact Person : Mr. Eser Tumen\r\nAddress : Barbaros Avenue No: 149 Besiktas Istanbul Turkey\r\nOffice : +90 212 258 3030 \r\nFax : +90 212 259 94 44\r\nMobile : +90 532 477 83 83\r\nE-Mail : esertumen@tumenholding.com \r\nWeb : http://www.tumenholding.com (Under Development)\r\nD-U-N-S : 35-557-6688\r\nNCAGE : TE644\r\nRegistration : 3770427735', '2022-08-01 16:28:09', '2022-08-01 16:28:09', NULL),
(782, 'CrytoISods', 'Kelso_Family@msn.com', '89031364328', 'Financial robot keeps bringing you money while you sleep. https://Leli.qbe-medienhaus.de/Leli', '2022-08-01 18:42:51', '2022-08-01 18:42:51', NULL),
(783, 'CrytoISods', 'ter.dymakova@gmail.com', '89031682620', 'Thousands of bucks are guaranteed if you use this robot. https://Leli.qbe-medienhaus.de/Leli', '2022-08-01 21:13:08', '2022-08-01 21:13:08', NULL),
(784, 'CrytoISods', 'guadalupe9988@yahoo.com', '89030216532', 'Find out about the easiest way of money earning. https://Leli.qbe-medienhaus.de/Leli', '2022-08-01 23:40:51', '2022-08-01 23:40:51', NULL),
(785, 'CrytoISods', 'scorpy_dj88@hotmail.com', '89035309232', 'Still not a millionaire? The financial robot will make you him! https://Leli.qbe-medienhaus.de/Leli', '2022-08-02 02:09:53', '2022-08-02 02:09:53', NULL),
(786, 'CrytoISods', 'mirskyhugh@yahoo.com', '89036530721', 'Launch the best investment instrument to start making money today. https://Leli.qbe-medienhaus.de/Leli', '2022-08-02 04:40:09', '2022-08-02 04:40:09', NULL),
(787, 'CrytoISods', 'johnpfitzgerald@earthlink.net', '89034774159', 'Watch your money grow while you invest with the Robot. https://Leli.qbe-medienhaus.de/Leli', '2022-08-02 07:07:07', '2022-08-02 07:07:07', NULL),
(788, 'CrytoISods', 'mavia@monte.k12.co.us', '89032176001', 'This robot can bring you money 24/7. https://Leli.qbe-medienhaus.de/Leli', '2022-08-02 09:58:01', '2022-08-02 09:58:01', NULL),
(789, 'Kaylee', 'info@lahl-konzept.de', '(02) 9204 0546', 'Hey there,\r\n\r\nHave you ever wanted to change the color of your swim shorts without having to buy a new pair? With our new swim shorts, you can do just that!\r\n\r\nOur swim shorts are made with a special material that allows you to change the color of the shorts with just a few drops of water. So, if you\'re ever in the mood for a new color, you can just change it yourself! They are AMAZING! It could be a great addition to your summer line-up.\r\n\r\nGet yours today with 50% OFF: https://myshorts.shop\r\n\r\nFREE Shipping - TODAY ONLY!\r\n\r\nBest regards, \r\n\r\nKaylee', '2022-08-02 10:55:42', '2022-08-02 10:55:42', NULL),
(790, 'CrytoISods', 'whitneymurphy92@gmail.com', '89037028025', 'We have found the fastest way to be rich. Find it out here. https://Leli.qbe-medienhaus.de/Leli', '2022-08-02 12:47:10', '2022-08-02 12:47:10', NULL),
(791, 'CrytoISods', 'gcuwin@gmail.com', '89033763655', 'The best way for everyone who rushes for financial independence. https://Leli.qbe-medienhaus.de/Leli', '2022-08-02 15:16:58', '2022-08-02 15:16:58', NULL),
(792, 'CrytoISods', 'sanjeev.jeev@gmail.com', '89031545858', 'No need to stay awake all night long to earn money. Launch the robot. https://Leli.qbe-medienhaus.de/Leli', '2022-08-02 17:43:49', '2022-08-02 17:43:49', NULL),
(793, 'CrytoISods', 'qzhao99@yahoo.com', '89035737727', 'Making money in the net is easier now. https://Leli.qbe-medienhaus.de/Leli', '2022-08-02 20:13:09', '2022-08-02 20:13:09', NULL),
(794, 'GetABusinessLoanNow', 'noreply@getabusinessloannow.pro', NULL, 'Hi, do you know that http://GetABusinessLoanNow.pro can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://GetABusinessLoanNow.pro \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 120K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://GetABusinessLoanNow.pro \r\n \r\nHave a good day, \r\nThe Get A Business Loan Now Team \r\n \r\nunsubscribe/remove - http://GetABusinessLoanNow.pro/r.php?url=dalbitpetroleum.com&id=123', '2022-08-02 20:24:24', '2022-08-02 20:24:24', NULL),
(795, 'CrytoISods', 'jakeevans.police@outlook.com', '89036818568', 'Find out about the fastest way for a financial independence. https://Leli.baobab-erding.de/Leli', '2022-08-02 22:41:42', '2022-08-02 22:41:42', NULL),
(796, 'CrytoISods', 'sngltn_tim@yahoo.com', '89032755492', 'The financial Robot is your future wealth and independence. https://drive.google.com/file/d/1klikjyPA_gfcc5swGrEuYF6AC0AYt2dI/view?usp=sharing', '2022-08-03 01:07:29', '2022-08-03 01:07:29', NULL),
(797, 'CrytoISods', 'manofgod1124@yahoo.com', '89036139863', 'Provide your family with the money in age. Launch the Robot! https://drive.google.com/file/d/1iPHBY0ZdbiBAqS_jjakxVNLlSevtFd41/view?usp=sharing', '2022-08-03 03:56:50', '2022-08-03 03:56:50', NULL),
(798, 'CrytoISods', 'r25-momo@hotmail.com', '89033921969', 'The online income is your key to success. https://drive.google.com/file/d/1ZtpcAfZ5MIqMTOn0hOHHCykKbwSNPrmw/view?usp=sharing', '2022-08-03 06:25:04', '2022-08-03 06:25:04', NULL),
(799, 'CrytoISods', 'jalqatanani@gmail.com', '89030074347', 'Wow! This is a fastest way for a financial independence. https://drive.google.com/file/d/1ZtpcAfZ5MIqMTOn0hOHHCykKbwSNPrmw/view?usp=sharing', '2022-08-03 08:55:27', '2022-08-03 08:55:27', NULL),
(800, 'CrytoISods', 'sharma.sachinm@gmail.com', '89039952288', 'Make thousands every week working online here. https://drive.google.com/file/d/1HMRjvdPNeZ2W7wQLK2YHm_Q_pmRH4IzX/view?usp=sharing', '2022-08-03 11:28:28', '2022-08-03 11:28:28', NULL),
(801, 'CrytoISods', 'djwayhead@yahoo.com', '89032816781', 'Making money in the net is easier now. https://drive.google.com/file/d/16h--2NxCymIYLkRyC39ltIg-nBif8Ayz/view?usp=sharing', '2022-08-03 13:57:35', '2022-08-03 13:57:35', NULL),
(802, 'CrytoISods', 'guptarichee@gmail.com', '89030132891', 'Making money in the net is easier now. https://drive.google.com/file/d/16h--2NxCymIYLkRyC39ltIg-nBif8Ayz/view?usp=sharing', '2022-08-03 16:26:17', '2022-08-03 16:26:17', NULL),
(803, 'CrytoISods', 'rocketeer91@hotmail.com', '89034894565', 'The additional income for everyone. https://drive.google.com/file/d/1z2pZkAuKV9gLJURJKnMx-Tik7d1gjSUI/view', '2022-08-03 19:00:48', '2022-08-03 19:00:48', NULL),
(804, 'CrytoISods', 'pop_rockmasti@yahoo.com', '89035009230', 'Even a child knows how to make money. This robot is what you need! https://drive.google.com/file/d/1z2pZkAuKV9gLJURJKnMx-Tik7d1gjSUI/view', '2022-08-03 21:35:10', '2022-08-03 21:35:10', NULL),
(805, 'CrytoISods', 'marie.blackmore1@ntlworld.com', '89035415240', 'Need money? Get it here easily! Just press this to launch the robot. https://Leli.gizmo-inc.fr/Leli', '2022-08-04 00:02:38', '2022-08-04 00:02:38', NULL),
(806, 'CrytoISods', 'f.h.e.4.5gfsjtefx@gmail.com', '89032810558', 'Online Bot will bring you wealth and satisfaction. https://Leli.gizmo-inc.fr/Leli', '2022-08-04 02:31:08', '2022-08-04 02:31:08', NULL),
(807, 'CrytoISods', 's.u.b.mi.t.l.x.oh.g@gmail.com', '89030640664', 'We know how to make our future rich and do you? https://Leli.gizmo-inc.fr/Leli', '2022-08-04 05:00:43', '2022-08-04 05:00:43', NULL),
(808, 'CrytoISods', 'rpost3330@yahoo.com', '89032320330', 'Even a child knows how to make money. This robot is what you need! https://Leli.gizmo-inc.fr/Leli', '2022-08-04 07:28:26', '2022-08-04 07:28:26', NULL),
(809, 'CrytoISods', 'bil.l.mar.cus.s.e.n.jr@gmail.com', '89036427945', 'Try out the automatic robot to keep earning all day long. https://Leli.gizmo-inc.fr/Leli', '2022-08-04 09:58:18', '2022-08-04 09:58:18', NULL),
(810, 'CrytoISods', 'robbert_schuurman92@hotmail.com', '89036581865', 'Have no money? Earn it online. https://Leli.gizmo-inc.fr/Leli', '2022-08-04 12:25:40', '2022-08-04 12:25:40', NULL),
(811, 'CrytoISods', 'kmdqihmn@inboxsky.com', '89032362456', 'The success formula is found. Learn more about it. https://Leli.gizmo-inc.fr/Leli', '2022-08-04 14:56:08', '2022-08-04 14:56:08', NULL),
(812, 'CrytoISods', 't.m.coates@gmail.com', '89036990645', 'There is no need to look for a job anymore. Work online. https://Leli.gizmo-inc.fr/Leli', '2022-08-04 17:27:35', '2022-08-04 17:27:35', NULL),
(813, 'CrytoISods', 'tbradley1202@gmail.com', '89032140460', 'Try out the automatic robot to keep earning all day long. https://Leli.chronicleshardcore.de/Leli', '2022-08-04 19:56:45', '2022-08-04 19:56:45', NULL),
(814, 'Dorotbsm', 'an.de.r.so.n.d.or.o.thy67.12@gmail.com', '86858388939', '<a href=https://is.gd/uKryPr>Guess what we\'re going to do today?</a>', '2022-08-04 20:53:59', '2022-08-04 20:53:59', NULL),
(815, 'CrytoISods', 'aggie_grace@yahoo.com', '89033208725', 'The additional income for everyone. https://Leli.chronicleshardcore.de/Leli', '2022-08-04 22:24:24', '2022-08-04 22:24:24', NULL),
(816, 'CrytoISods', 'may5am@naver.com', '89031212335', 'Financial Robot is #1 investment tool ever. Launch it! https://Leli.chronicleshardcore.de/Leli', '2022-08-05 00:53:54', '2022-08-05 00:53:54', NULL),
(817, 'CrytoISods', 'oliverbalderia@gmail.com', '89033035642', 'Financial independence is what everyone needs. https://Leli.chronicleshardcore.de/Leli', '2022-08-05 03:24:29', '2022-08-05 03:24:29', NULL),
(818, 'CrytoISods', 'hwwyc8iey@yahoo.com', '89034032660', 'Wow! This Robot is a great start for an online career. https://Leli.chronicleshardcore.de/Leli', '2022-08-05 05:53:21', '2022-08-05 05:53:21', NULL),
(819, 'CrytoISods', 'uwavis@wertaret.com', '89036102080', 'Make money in the internet using this Bot. It really works! https://Leli.chronicleshardcore.de/Leli', '2022-08-05 08:23:31', '2022-08-05 08:23:31', NULL),
(820, 'BusinessLoansFunded', 'noreply@business-loans-funded.site', NULL, 'Quicker and Easier than the SBA, http://Business-Loans-Funded.site can get your business a loan for $2K-350,000 With low-credit and no collateral. \r\n \r\nUse our 1 minute form to See exactly how much you can get, No-Cost: \r\n \r\nhttp://Business-Loans-Funded.site \r\n \r\nIf you\'ve been in business for at least 12 months you are already pre-qualified. Our Fast service means funding can be completed within 48hrs. Terms are specific for each business so I suggest applying to find out exactly how much you can get. \r\n \r\nThis is a free service from a qualified lender and the approval will be based on the annual revenue of your business. Funds are also Non-Restrictive, allowing you to use the full amount in any way including bills, taxes, hiring, marketing, expansion, or Absolutely Any Other expense. \r\n \r\nThere are limited SBA and private funds available so please apply now if interested, \r\n \r\nClick Here: http://Business-Loans-Funded.site \r\n \r\nHave a great day, \r\nThe Business Loans Funded Team \r\n \r\nremove here - http://Business-Loans-Funded.site/r.php?url=dalbitpetroleum.com&id=124', '2022-08-05 10:43:21', '2022-08-05 10:43:21', NULL),
(821, 'CrytoISods', 'COUNTRYGURL1198@YAHOO.COM', '89036356050', 'Your computer can bring you additional income if you use this Robot. https://Leli.danceit.es/Leli', '2022-08-05 10:52:13', '2022-08-05 10:52:13', NULL),
(822, 'CrytoISods', 'ancope2004@yahoo.com', '89032574728', 'Financial robot is a great way to manage and increase your income. https://Leli.danceit.es/Leli', '2022-08-05 13:46:11', '2022-08-05 13:46:11', NULL),
(823, 'CrytoISods', 'davidnguyen704@hotmail.com', '89034205019', 'Make your money work for you all day long. https://Leli.danceit.es/Leli', '2022-08-05 16:12:05', '2022-08-05 16:12:05', NULL),
(824, 'CrytoISods', 'chaiyuthps@hotmail.com', '89037088959', 'Launch the financial Robot and do your business. https://Leli.danceit.es/Leli', '2022-08-05 18:40:00', '2022-08-05 18:40:00', NULL),
(825, 'CrytoISods', 'DaisB32@aol.com', '89033767851', 'Online earnings are the easiest way for financial independence. https://Leli.danceit.es/Leli', '2022-08-05 21:11:43', '2022-08-05 21:11:43', NULL),
(826, 'CrytoISods', 'uqinuj@emailertr.com', '89038363170', 'Rich people are rich because they use this robot. https://Leli.danceit.es/Leli', '2022-08-06 00:02:35', '2022-08-06 00:02:35', NULL),
(827, 'CrytoISods', 'd.deniece@yahoo.com', '89031732199', 'The financial Robot is your # 1 expert of making money. https://Leli.echinat.de/Leli', '2022-08-06 02:31:51', '2022-08-06 02:31:51', NULL),
(828, 'CrytoISods', 'gmantxvegas@att.net', '89031802098', 'Wow! This Robot is a great start for an online career. https://Leli.echinat.de/Leli', '2022-08-06 05:00:21', '2022-08-06 05:00:21', NULL),
(829, 'CrytoISods', 'amudaibro4sure@yahoo.com', '89033712399', 'Earn additional money without efforts. https://Leli.echinat.de/Leli', '2022-08-06 07:30:49', '2022-08-06 07:30:49', NULL),
(830, 'CrytoISods', 'evannmccalter@yahoo.com', '89030586029', 'The online income is your key to success. https://Leli.echinat.de/Leli', '2022-08-06 09:58:02', '2022-08-06 09:58:02', NULL),
(831, 'CrytoISods', 'dtorgie_ent@yahoo.com', '89034237244', 'Make thousands of bucks. Pay nothing. https://Leli.echinat.de/Leli', '2022-08-06 12:57:26', '2022-08-06 12:57:26', NULL),
(832, 'CrytoISods', 'archangel249@verizon.net', '89033741282', 'Making money is very easy if you use the financial Robot. https://Leli.echinat.de/Leli', '2022-08-06 15:26:18', '2022-08-06 15:26:18', NULL),
(833, 'CrytoISods', 'atbell420@yahoo.com', '89031938901', 'Earning money in the Internet is easy if you use Robot. https://Leli.echinat.de/Leli', '2022-08-06 17:54:19', '2022-08-06 17:54:19', NULL),
(834, 'CrytoISods', 'marcus.antione@yahoo.com', '89037036247', 'Make your computer to be you earning instrument. https://Leli.echinat.de/Leli', '2022-08-06 20:21:01', '2022-08-06 20:21:01', NULL),
(835, 'Corine', 'willkommen@fahrschule-flo.de', '(08) 8777 1183', 'Hey there, \r\n\r\nI hope you\'re doing well. I wanted to let you know about our new BANGE backpacks and sling bags that just released.\r\n\r\nBange is perfect for students, professionals and travelers. The backpacks and sling bags feature a built-in USB charging port, making it easy to charge your devices on the go. Also they are waterproof and anti-theft design, making it ideal for carrying your valuables.\r\n\r\nBoth bags are made of durable and high-quality materials, and are perfect for everyday use or travel.\r\n\r\nOrder yours now at 50% OFF with FREE Shipping: https://bangeonline.shop\r\n\r\nThe Best,\r\n\r\nCorine', '2022-08-06 23:01:39', '2022-08-06 23:01:39', NULL),
(836, 'CrytoISods', 'mrpirillo@yahoo.com', '89031546818', 'Financial independence is what this robot guarantees. https://Leli.echinat.de/Leli', '2022-08-07 00:54:15', '2022-08-07 00:54:15', NULL),
(837, 'CrytoISods', 'www.zeus9765@aol.com', '89034733539', 'Make $1000 from $1 in a few minutes. Launch the financial robot now. https://Leli.echinat.de/Leli', '2022-08-07 03:41:42', '2022-08-07 03:41:42', NULL),
(838, 'CrytoISods', 'sales@bestjammers.com', '89039738191', 'Make your laptop a financial instrument with this program. https://Leli.echinat.de/Leli', '2022-08-07 06:12:39', '2022-08-07 06:12:39', NULL),
(839, 'CrytoISods', 'Atticusbird1144@yahoo.com', '89031975489', 'This robot can bring you money 24/7. https://Leli.echinat.de/Leli', '2022-08-07 08:40:07', '2022-08-07 08:40:07', NULL),
(840, 'ChristinaLoca', 'christinaLoca@hotmail.com', '+420 2431171491', 'Helloǃ\r\nРеrhарѕ mу mesѕage іѕ toо ѕреcifіc.\r\nВut my оldеr sіster found а wondеrful man herе and theу havе a grеаt relаtiоnshiр, but whаt about mе?\r\nI am 25 yеarѕ old, Chrіstina, frоm thе Czeсh Republіс, knоw Εnglish lаnguаgе alѕo\r\nАnd... bеtter tо sаy іt immеdiаtelу. I аm bіsехuаl. I am nоt jеаlouѕ of аnother woman... esрeciаllу if we make lovе togеther.\r\nАh уеѕ, Ι cооk vеry tastyǃ and Ι lоve not оnlу coоk ;))\r\nΙm reаl girl and lookіng fоr ѕеrіouѕ and hоt rеlаtіonѕhір...\r\nAnуwaу, yоu сan find my рrofile here: http://senrena.tk/usr-77559/', '2022-08-07 11:06:54', '2022-08-07 11:06:54', NULL),
(841, 'CrytoISods', 'ndcrstc@aol.com', '89030927351', 'The financial Robot works for you even when you sleep. https://Leli.echinat.de/Leli', '2022-08-07 11:17:56', '2022-08-07 11:17:56', NULL),
(842, 'Email Influence', 'contact@emailinfluence.xyz', '0337 1978560', 'Are you missing out on email marketing for your site? Running a site is a full time job. With limited time and resources, it be difficult to put energy in marketing your business. But with email marketing, promoting your business becomes a whole lot easier. Receive your free guide here https://emailinfluence.xyz/email/?e8x2_nhzfps.io \r\n\r\nTo remove your site from our list visit https://emailinfluence.xyz/unsubscribe/', '2022-08-07 13:42:47', '2022-08-07 13:42:47', NULL),
(843, 'CrytoISods', 'shannon_m_ericson@hotmail.com', '89037873179', 'Your money work even when you sleep. https://Leli.echinat.de/Leli', '2022-08-07 14:29:44', '2022-08-07 14:29:44', NULL),
(844, 'CrytoISods', 'goy3ztov@expressemail.org', '89035426288', 'The financial Robot works for you even when you sleep. https://Leli.echinat.de/Leli', '2022-08-07 17:16:14', '2022-08-07 17:16:14', NULL),
(845, 'CrytoISods', 'prasad.udaya@gmail.com', '89035116482', 'Still not a millionaire? The financial robot will make you him! https://Leli.echinat.de/Leli', '2022-08-07 19:46:38', '2022-08-07 19:46:38', NULL),
(846, 'Ultimate', 'noreply@getmorebusinessleadsnow.com', '912-647-8699', 'Hi, would you like more business leads at a lower cost? Currently http://GetMoreBusinessLeadsNow.com is offering our popular unlimited lead generation software package - at a reduced price for a limited time. \r\n \r\nDownload and install now to be building databases of leads in minutes: \r\n \r\nhttp://GetMoreBusinessLeadsNow.com \r\n \r\nThe Ultimate Lead Generation Pack works by automatically visting yellow page directories and building a database according to your search terms. Other software in the pack then finds emails, phone numbers, and other details for that database. The results can be used for email, cold-calling, direct mail, or to sell immediately - priced per lead. Runs on Windows, Mac, and Linux with multiple job and VPN/proxy support. Similar software retails for over $100 with less features. \r\n \r\nThis pack is only available on sale as a short promotional offer, please download now if at all interested. \r\n \r\nClick Here: http://GetMoreBusinessLeadsNow.com \r\n \r\nHave a Great Day, \r\nThe Ultimate Lead Generation Pack Team \r\n \r\nunsubscribe/remove Here: http://getmorebusinessleadsnow.com/r.php?url=dalbitpetroleum.com&id=ulg37', '2022-08-07 19:56:27', '2022-08-07 19:56:27', NULL),
(847, 'CrytoISods', 'ruiparente02@hotmail.com', '89030266903', 'Make money, not war! Financial Robot is what you need. https://Leli.echinat.de/Leli', '2022-08-07 22:15:18', '2022-08-07 22:15:18', NULL),
(848, 'CrytoISods', 'ohhchristina@live.com', '89034175785', 'The huge income without investments is available. https://Leli.echinat.de/Leli', '2022-08-08 00:42:57', '2022-08-08 00:42:57', NULL),
(849, 'CrytoISods', '89111807@qq.com', '89035388662', 'The financial Robot is the most effective financial tool in the net! https://Leli.echinat.de/Leli', '2022-08-08 03:11:27', '2022-08-08 03:11:27', NULL),
(850, 'CrytoISods', 'lemantaskin@gmail.com', '89038316207', 'Find out about the fastest way for a financial independence. https://Leli.echinat.de/Leli', '2022-08-08 05:37:18', '2022-08-08 05:37:18', NULL),
(851, 'CrytoISods', 'scoober25@yahoo.com', '89034088478', 'Your computer can bring you additional income if you use this Robot. https://Leli.echinat.de/Leli', '2022-08-08 10:32:40', '2022-08-08 10:32:40', NULL),
(852, 'CrytoISods', 'girlbeth@yahoo.com', '89036534894', 'Making money is very easy if you use the financial Robot. https://Leli.echinat.de/Leli', '2022-08-08 13:00:15', '2022-08-08 13:00:15', NULL),
(853, 'CrytoISods', 'megangayle@comcast.net', '89036561834', 'Let the financial Robot be your companion in the financial market. https://Leli.echinat.de/Leli', '2022-08-08 15:27:39', '2022-08-08 15:27:39', NULL),
(854, 'CrytoISods', 'Hyabussa@gmail.com', '89035117803', 'The financial Robot is the most effective financial tool in the net! https://Leli.echinat.de/Leli', '2022-08-08 18:16:10', '2022-08-08 18:16:10', NULL);
INSERT INTO `contacts` (`id`, `name`, `email`, `telephone_number`, `message`, `created_at`, `updated_at`, `deleted_at`) VALUES
(855, 'CrytoISods', 'kenneth.dye99@gmail.com', '89034564486', 'Earning $1000 a day is easy if you use this financial Robot. https://Leli.echinat.de/Leli', '2022-08-08 23:05:56', '2022-08-08 23:05:56', NULL),
(856, 'CrytoISods', 'liss516@bellsouth.net', '89038942472', 'Check out the new financial tool, which can make you rich. https://Leli.echinat.de/Leli', '2022-08-09 01:34:27', '2022-08-09 01:34:27', NULL),
(857, 'CrytoISods', 'terrancemack@gmail.com', '89036058732', 'Find out about the easiest way of money earning. https://Leli.echinat.de/Leli', '2022-08-09 04:00:09', '2022-08-09 04:00:09', NULL),
(858, 'CrytoISods', 'oceanie000@gmail.com', '89038373836', 'Make money online, staying at home this cold winter. https://Leli.echinat.de/Leli', '2022-08-09 06:29:21', '2022-08-09 06:29:21', NULL),
(859, 'CrytoISods', 'fjptly044+kkdis024@gmail.com', '89038390410', 'Make your computer to be you earning instrument. https://Leli.echinat.de/Leli', '2022-08-09 08:57:01', '2022-08-09 08:57:01', NULL),
(860, 'GetBusinessFundingNow', 'noreply@getbusinessfundingnow.info', NULL, 'Hi, do you know that http://GetBusinessFundingNow.info can help your business get funding for $2,000 - $350K Without high credit or collateral. \r\n \r\nFind Out how much you can get by clicking here: \r\n \r\nhttp://GetBusinessFundingNow.info \r\n \r\nRequirements include your company being established for at least a year and with current gross revenue of at least 180K. Eligibility and funding can be completed in as fast as 48hrs. Terms are personalized for each business so I suggest applying to find out exactly how much you can get on various terms. \r\n \r\nThis is a completely free service from a qualified funder and the approval will be based on the annual revenue of your business. These funds are completely Non-Restrictive, allowing you to spend the full amount in any way you require including business debt consolidation, hiring, marketing, or Absolutely Any Other expense. \r\n \r\nIf you need fast and easy business funding take a look at these programs now as there is limited availability: \r\n \r\nhttp://GetBusinessFundingNow.info \r\n \r\nHave a good day, \r\nThe Get Business Funding Now Team \r\n \r\nunsubscribe/remove - http://GetBusinessFundingNow.info/r.php?url=dalbitpetroleum.com&id=124', '2022-08-09 10:11:39', '2022-08-09 10:11:39', NULL),
(861, 'CrytoISods', 'stalw.keleshi@hotmail.com', '89039668882', 'Make your laptop a financial instrument with this program. https://Leli.echinat.de/Leli', '2022-08-09 11:47:09', '2022-08-09 11:47:09', NULL),
(862, 'CrytoISods', 'sam@greenfolder.com', '89039045569', 'We know how to make our future rich and do you? https://Leli.echinat.de/Leli', '2022-08-09 14:13:50', '2022-08-09 14:13:50', NULL),
(863, 'CrytoISods', 'hammdamm@gmail.com', '89038571294', 'We know how to become rich and do you? https://Leli.echinat.de/Leli', '2022-08-09 16:42:01', '2022-08-09 16:42:01', NULL),
(864, 'Dena Leflore', 'leflore.dena84@outlook.com', '081 711 95 21', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://is.gd/HG2F7B ✅. Thanks! Helen', '2022-08-09 17:36:37', '2022-08-09 17:36:37', NULL),
(865, 'CrytoISods', 'stea.dygan.ehe@gmail.com', '89037261132', 'The best online job for retirees. Make your old ages rich. https://Leli.echinat.de/Leli', '2022-08-09 19:30:07', '2022-08-09 19:30:07', NULL),
(866, 'CrytoISods', 'sandraleigh99@yahoo.com', '89035956283', 'Invest $1 today to make $1000 tomorrow. https://Leli.echinat.de/Leli', '2022-08-09 22:02:26', '2022-08-09 22:02:26', NULL),
(867, 'CrytoISods', 'fullmer.mike@yahoo.com', '89039054004', 'Online Bot will bring you wealth and satisfaction. https://Leli.echinat.de/Leli', '2022-08-10 00:31:18', '2022-08-10 00:31:18', NULL),
(868, 'CrytoISods', 'mcsmorales@AOL.COM', '89031663158', 'The best way for everyone who rushes for financial independence. https://Leli.echinat.de/Leli', '2022-08-10 03:00:35', '2022-08-10 03:00:35', NULL),
(869, 'CrytoISods', 'rogersataubach12@msn.com', '89034731491', 'Your money work even when you sleep. https://Leli.echinat.de/Leli', '2022-08-10 05:32:40', '2022-08-10 05:32:40', NULL),
(870, 'CrytoISods', 'joevargas79@bellsouth.net', '89030465669', 'Check out the new financial tool, which can make you rich. https://Leli.echinat.de/Leli', '2022-08-10 08:05:22', '2022-08-10 08:05:22', NULL),
(871, 'CrytoISods', 'abah_pat@yahoo.com', '89037410897', 'Try out the automatic robot to keep earning all day long. https://Leli.echinat.de/Leli', '2022-08-10 10:35:20', '2022-08-10 10:35:20', NULL),
(872, 'CrytoISods', 'judasmage2004@asia.yahoo.com', '89037301031', 'Launch the financial Bot now to start earning. https://Leli.echinat.de/Leli', '2022-08-10 13:07:00', '2022-08-10 13:07:00', NULL),
(873, 'Georgianna Houchens', 'houchens.georgianna@gmail.com', '916-331-2654', 'How To Earn More Money With AI So You Can Avoid Your Current Money Pains\r\n\r\nhttps://voicesearch5.skin/ai/\r\n\r\n\r\nGeorgianna\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n9169 W State St #1614 Garden City, ID 83714\r\nAvoid Marketing Messages Here:\r\nhttps://voicesearch5.skin/unsubscribe.php/?site=dalbitpetroleum.com', '2022-08-10 14:19:04', '2022-08-10 14:19:04', NULL),
(874, 'CrytoISods', 'tiberian79@hotmail.com', '89031129349', 'Trust the financial Bot to become rich. https://Leli.echinat.de/Leli', '2022-08-10 15:34:47', '2022-08-10 15:34:47', NULL),
(875, 'CrytoISods', 'Dana_jefferson@hotmail.com', '89034381414', 'Let the Robot bring you money while you rest. https://Leli.echinat.de/Leli', '2022-08-10 18:05:57', '2022-08-10 18:05:57', NULL),
(876, 'CrytoISods', 'sarahlbac@gmail.com', '89035952316', 'Make your laptop a financial instrument with this program. https://Leli.echinat.de/Leli', '2022-08-10 21:13:58', '2022-08-10 21:13:58', NULL),
(877, 'CrytoISods', 'pistolpete9980@gmail.com', '89037548566', 'The best online investment tool is found. Learn more! https://Leli.echinat.de/Leli', '2022-08-10 23:43:04', '2022-08-10 23:43:04', NULL),
(878, 'CrytoISods', 'anthony@orlandopt.com', '89032096252', 'Have no financial skills? Let Robot make money for you. https://Leli.echinat.de/Leli', '2022-08-11 02:13:51', '2022-08-11 02:13:51', NULL),
(879, 'Colette Linn', 'colette.linn@gmail.com', NULL, 'Two days ago I received a message that I need to pick up my prize. But I lost the email with the data to access the site. How do I restore access? >>> https://bit.ly/3zP4jVE', '2022-08-11 09:13:41', '2022-08-11 09:13:41', NULL),
(880, 'Sabrina Lyke', 'sabrina.lyke@gmail.com', '060-3813881', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://bit.ly/3SRUHT9 ✅. Thanks! Elena', '2022-08-11 16:36:01', '2022-08-11 16:36:01', NULL),
(881, 'CrytoISods', 'p.r.o.to.t.y.p.er.ac.c@gmail.com', '89035834154', 'Every your dollar can turn into $100 after you lunch this Robot. https://Leli.rbertilsson.se/', '2022-08-12 04:00:47', '2022-08-12 04:00:47', NULL),
(882, 'CrytoISods', 'wtyler1@gmail.com', '89032344764', 'Join the society of successful people who make money here. https://Leli.rbertilsson.se/', '2022-08-13 05:11:36', '2022-08-13 05:11:36', NULL),
(883, 'Alexander Kostylev', 'alekskkost5@hotmail.com', '+79631818912', 'Dear Sirs & Ladies,\r\n\r\nGood evening.\r\n\r\nFirst of all, let me introduce myself briefly – I am Alexander Kostylev. Citizen of Russia. I sincerely thank you for the opportunity to write you my request. \r\nI ask you to accept my request from my personal email.\r\n\r\nBy this letter, I am contacting you and to yours a respected company and ask accept and to review my personal request with the possibility of employment in your company as Regional Manager Russia. I will be happy to be part of your esteemed company.\r\n\r\nOver many years of work in the oil industry, I have built a large network and professional, friendly relationships with major oil companies and oil product manufacturers in Russia, Europe, India. I built my work and communication only with responsible managers of large oil companies and oil product manufacturers.\r\n\r\nI fully compose and coordinate the registration and KYC process, coordinate the execution of legal translations of documents into Russian, when working with Russian oil companies. I have extensive experience in negotiating and purchasing products such as: (Crude oil, Naphtha, Diesel Fuel, Gas Oil, Gasoline, Jet Fuel) from oil and gas companies in Russia, Europe, India.\r\n\r\nI also perform functions. Such as: Coordination and formation of pricing, chartering of tankers, on the basis of FOB delivery, coordination of personal meetings, if necessary, search for potential customers for cooperation with the company.\r\n\r\nMy native Russian language. I have a poor command of English, but I continue to study. With manufacturers in Europe, I keep in touch in writing. We\'re doing a great job of negotiating.\r\n \r\nI work directly with companies and managers.\r\n\r\nRussia:\r\n\r\nRosneft Company: - Department for receiving and reviewing documents for the qualification assessment of a counterparty, for participation in tender purchases of Crude oil and oil products.\r\n \r\nGazprom-Neft Company: Department of export sales. Department of sales of petroleum products. Commercial Directorate.\r\n \r\nTatneft Company: - Oil Products Sales Department.\r\n \r\nEurope:\r\n \r\nCompany Galp (Portugal) - Department of Oil Products & Petrochemicals Trading. Oil Supply & Trading\r\n \r\nCompany INA (Croatia) - Department of Supply & Trading\r\n \r\nCompany LOTOS Oil Sp. z o.o. (Poland) - Foreign Trade Office by lubricants.\r\n \r\nCompany Motor Oil Hellas (Greece) - Department of Supply & Trading\r\n\r\nI maintain warm relations with all companies. We have friendly relations and they always accept registering a potential counterparty for the purchase of petroleum products.\r\n\r\nI ask you to pay your attention: \r\n\r\nI am very interested to work in your company. I have invaluable experience and knowledge in working with large exporters. Oil and gas companies of Russia, Europe, India.\r\n\r\nTrust needs to be earned. I am ready to earn the trust of your company and I ask you to give me the opportunity to realize my capabilities and earn your trust. I will be happy to be part of your esteemed company.\r\n \r\nI will be grateful for your decision.\r\n \r\nYour response is greatly appreciated.\r\n\r\nWith best regards,\r\n\r\nAlexander Kostylev\r\nRegional Manager Russia\r\n\r\nE-mail: alekskkost5@hotmail.com \r\nPhone: +7 963 181 89 12\r\nSkype ID: Alekskkost5.\r\n\r\nConfidentiality.\r\n\r\nThis communication (and any attachment) is intended exclusively for use by the addressee(s). The information contained may be confidential and/or privileged and may constitute the sender\'s commercial secret. If you receive this communication in error please immediately inform the sender by reply, permanently delete it from your system and do not copy this communication or disclose its contents to anyone.', '2022-08-13 22:00:27', '2022-08-13 22:00:27', NULL),
(884, 'CrytoISods', 'amjad.panthertyre@yahoo.com', '89035489956', 'Your computer can bring you additional income if you use this Robot. https://Leli.rbertilsson.se/', '2022-08-14 06:34:10', '2022-08-14 06:34:10', NULL),
(885, 'Winnie Duncan', 'support@smsit.ai', '+16504889899', 'Hello this is Mark,\r\n\r\nI visited your website and I wondered how many people fill out your contact form? Most websites don’t get traffic unless you buy paid ads. What if we can show you a way to increase your customers using smart marketing tools powered by Text and Voice messaging, where you also have unlimited messaging and 1 MONTH FREE TRIAL to make up your mind? \r\n\r\nI would be happy for you to visit our website smsit.ai and find out how your business could be having more sales without spending for expensive paid ads!\r\n\r\nSincerely,\r\n\r\nMark Heinz\r\nBusiness Development Specialist', '2022-08-14 13:54:10', '2022-08-14 13:54:10', NULL),
(886, 'Ariel Starns', 'starns.ariel@gmail.com', '077 8520 0219', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://bit.ly/3zP4jVE ✅. Thanks! Jenya', '2022-08-14 19:23:56', '2022-08-14 19:23:56', NULL),
(887, 'Eric Jones', 'ericjonesmyemail@gmail.com', '555-555-1212', 'Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with dalbitpetroleum.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out dalbitpetroleum.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-08-14 20:22:41', '2022-08-14 20:22:41', NULL),
(888, 'Eric Jones', 'ericjonesmyemail@gmail.com', '555-555-1212', 'Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with dalbitpetroleum.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out dalbitpetroleum.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-08-14 21:49:26', '2022-08-14 21:49:26', NULL),
(889, 'Desiree', 'appointments@oxleydental.com', '51 151 00 79', 'World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\n\r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.shop\r\n\r\nBest Wishes,\r\n\r\nDesiree\r\nContact Us', '2022-08-15 02:41:25', '2022-08-15 02:41:25', NULL),
(890, 'CrytoISods', 'Nachoguerrero44@live.com', '89032914979', 'Make money online, staying at home this cold winter. https://Leli.rbertilsson.se/', '2022-08-15 08:22:14', '2022-08-15 08:22:14', NULL),
(891, 'Ignacio Igo', 'igo.ignacio@gmail.com', '72 563 77 48', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://bit.ly/3zP4jVE ✅. Thanks! Donna', '2022-08-15 20:08:31', '2022-08-15 20:08:31', NULL),
(892, 'Hildegarde Carmack', 'carmack.hildegarde@gmail.com', '(11) 4811-8384', 'Two days ago I received a message that I need to pick up my prize. But I lost the email with the data to access the site. How do I restore access? >>> https://bit.ly/3SDw8ZO', '2022-08-16 03:41:54', '2022-08-16 03:41:54', NULL),
(893, 'Gerardo Wilkie', 'support@smsit.ai', '+16504889899', 'Hello this is Mark,\r\n\r\nI visited your website and I wondered how many people fill out your contact form? Most websites don’t get traffic unless you buy paid ads. What if we can show you a way to increase your customers using smart marketing tools powered by Text and Voice messaging, where you also have unlimited messaging and 1 MONTH FREE TRIAL to make up your mind? \r\n\r\nI would be happy for you to visit our website smsit.ai and find out how your business could be having more sales without spending for expensive paid ads!\r\n\r\nSincerely,\r\n\r\nMark Heinz\r\nBusiness Development Specialist', '2022-08-16 04:13:01', '2022-08-16 04:13:01', NULL),
(894, 'CrytoISods', 'roniandmiked@yahoo.com', '89036574352', 'This robot will help you to make hundreds of dollars each day. https://Leli.rbertilsson.se/', '2022-08-16 08:50:46', '2022-08-16 08:50:46', NULL),
(895, 'Dejan Dal Ponte', 'ddalponte@thermodesign.com', '+441661965602', 'Good Day,\r\n\r\nThere is a big project on hand which we are very kin to start immediately after we receive your confirmation. All we need are the best expertise from your company to suit our project requirements.\r\n\r\nWe will wait patiently for your company representative to contact us by email so we can submit the project requirements for proper review by team. We will love to be in contact with a representative if there is anyone available.\r\n\r\nYour prompt feedback will be appreciated.\r\n\r\nKind regards,\r\n\r\nDejan', '2022-08-16 09:59:47', '2022-08-16 09:59:47', NULL),
(896, 'Dejan Dal Ponte', 'ddalponte@thermodesign.com', '+441661965602', 'Good Day,\r\n\r\nThere is a big project on hand which we are very kin to start immediately after we receive your confirmation. All we need are the best expertise from your company to suit our project requirements.\r\n\r\nWe will wait patiently for your company representative to contact us by email so we can submit the project requirements for proper review by team. We will love to be in contact with a representative if there is anyone available.\r\n\r\nYour prompt feedback will be appreciated.\r\n\r\nKind regards,\r\n\r\nDejan', '2022-08-16 10:00:50', '2022-08-16 10:00:50', NULL),
(897, 'Alphonse Barta', 'barta.alphonse@msn.com', '778-839-6138', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://bit.ly/3SRUHT9 ✅. Thanks! Helen', '2022-08-16 11:06:57', '2022-08-16 11:06:57', NULL),
(898, 'Sarah Uy', 'sarah.uy@hotmail.com', '079 4219 0133', 'The day before yesterday I received a message that I need to collect my winnings. But I lost the email with the data to access the site. How do I restore access? >>> https://bit.ly/3zP4jVE', '2022-08-16 18:09:35', '2022-08-16 18:09:35', NULL),
(899, 'CrytoISods', 'Repre_02@yahoo.com', '89032814267', 'Try out the automatic robot to keep earning all day long. https://Leli.rbertilsson.se/', '2022-08-16 19:31:16', '2022-08-16 19:31:16', NULL),
(900, 'Mei Theodor', 'mei.theodor@gmail.com', '0379 0574907', 'Yesterday I received a message that I need to collect my winnings. But I lost the email with the data to access the site. How do I restore access? >>> https://bit.ly/3BXpXdm', '2022-08-17 00:55:48', '2022-08-17 00:55:48', NULL),
(901, 'Antoine Isabel', 'antoine.isabel17@gmail.com', '06-90473059', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://bit.ly/3SDw8ZO ✅. Thanks! Helen', '2022-08-17 20:18:14', '2022-08-17 20:18:14', NULL),
(902, 'Sonya', 'central_bank@securkey.net', '(03) 6245 9031', 'Hello \r\n \r\nDefrost frozen foods in minutes safely and naturally with our THAW KING™. \r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED \r\n\r\nBuy now: https://thawking.store\r\n \r\nThanks and Best Regards, \r\n \r\nSonya', '2022-08-20 22:43:51', '2022-08-20 22:43:51', NULL),
(903, 'Chas Mead', 'ohora@somitata.com', '(02) 4941 8343', 'Add your site to 1000 business directories with one click here-> https://bit.ly/submit_site_9jxc1c6t8mpn', '2022-08-24 15:28:51', '2022-08-24 15:28:51', NULL),
(904, 'Lavonda Darling', 'darling.lavonda@gmail.com', '0699 654 67 14', 'Two days ago I received a message that I need to pick up my prize. But I lost the email with the data to access the site. How do I restore access? >>> https://cutt.ly/cXGlY3C', '2022-08-24 20:45:21', '2022-08-24 20:45:21', NULL),
(905, 'Candida Claxton', 'claxton.candida@gmail.com', '0370 4373779', 'Two days ago I received a message that I need to pick up my prize. But I lost the email with the data to access the site. How do I restore access? >>> https://cutt.ly/cXGlY3C', '2022-08-25 07:25:03', '2022-08-25 07:25:03', NULL),
(906, 'Eric Jones', 'ericjonesmyemail@gmail.com', '555-555-1212', 'Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with dalbitpetroleum.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out dalbitpetroleum.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-08-26 00:53:11', '2022-08-26 00:53:11', NULL),
(907, 'Swen Brydon', '3chawki.berrada@onlyu.link', '(28) 2435-6474', 'Give your new site a boost, submit your site now to our free directory and start getting more clients bit.ly/submit_site_2', '2022-08-26 01:36:40', '2022-08-26 01:36:40', NULL),
(908, 'Eric Jones', 'ericjonesmyemail@gmail.com', '555-555-1212', 'Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with dalbitpetroleum.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out dalbitpetroleum.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-08-26 02:50:24', '2022-08-26 02:50:24', NULL),
(909, 'Tanisha Kiser', 'tanisha.kiser@gmail.com', '24-96-09-26', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://cutt.ly/XXKW1Va ✅. Thanks! Helen', '2022-08-26 12:40:52', '2022-08-26 12:40:52', NULL),
(910, 'Jeannie Hargett', 'jeannie.hargett@gmail.com', '0975-3586873', 'Two days ago I received a message that I need to collect my winnings. But I lost the email with the data to access the site. How do I restore access? >>> https://cutt.ly/uXKHR2T', '2022-08-26 14:14:22', '2022-08-26 14:14:22', NULL),
(911, 'Clement McLaurin', 'mclaurin.clement@msn.com', '464 31 912', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://cutt.ly/XXKW1Va ✅. Thanks! Diana', '2022-08-27 11:37:49', '2022-08-27 11:37:49', NULL),
(912, 'JamesPut', 'ustadz69@gmail.com', '85236871431', 'Get TOP-1 in Google in 1 month for all queries https://telegra.ph/TOP-1-of-Google-for-1-month-08-24-42032', '2022-08-27 23:12:23', '2022-08-27 23:12:23', NULL),
(913, 'CrytoISods', 'wayne.wagner@att.net', '89036415041', 'Additional income is now available for anyone all around the world. https://riviello.es/promo', '2022-08-28 19:02:19', '2022-08-28 19:02:19', NULL),
(914, 'Reyes Titsworth', 'titsworth.reyes@gmail.com', '22-13-91-41', 'I registered on the website last week and filled in my details. But since yesterday I can\'t log in to my profile. Help me fix everything. Here is a link to my page ►►► https://cutt.us/h5sfT ✅. Thanks! Anna', '2022-08-28 19:20:29', '2022-08-28 19:20:29', NULL),
(915, 'CrytoISods', 'doug.heaton88@gmail.com', '89031349196', 'Have no money? Earn it online. https://riviello.es/promo', '2022-08-28 21:14:12', '2022-08-28 21:14:12', NULL),
(916, 'CrytoISods', 'victororellena1234@gmail.com', '89030142597', 'Everyone who needs money should try this Robot out. https://riviello.es/promo', '2022-08-28 23:26:19', '2022-08-28 23:26:19', NULL),
(917, 'CrytoISods', 'himingrose@yahoo.com', '89039923970', 'This robot will help you to make hundreds of dollars each day. https://riviello.es/promo', '2022-08-29 01:40:13', '2022-08-29 01:40:13', NULL),
(918, 'CrytoISods', 'njk.fsdgkj.sf+damusemn@gmail.com', '89036341094', 'Make thousands of bucks. Pay nothing. https://riviello.es/promo', '2022-08-29 03:55:23', '2022-08-29 03:55:23', NULL),
(919, 'CrytoISods', 'elyse021@hotmail.com', '89033402451', 'Make money in the internet using this Bot. It really works! https://riviello.es/promo', '2022-08-29 06:08:23', '2022-08-29 06:08:23', NULL),
(920, 'Eric Jones', 'ericjonesmyemail@gmail.com', '555-555-1212', 'My name’s Eric and I just came across your website - dalbitpetroleum.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like dalbitpetroleum.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n \r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-08-29 07:19:06', '2022-08-29 07:19:06', NULL),
(921, 'CrytoISods', 'Nafis_choudhury@yahoo.com', '89034338873', 'Looking for an easy way to make money? Check out the financial robot. https://riviello.es/promo', '2022-08-29 08:18:28', '2022-08-29 08:18:28', NULL),
(922, 'Eric Jones', 'ericjonesmyemail@gmail.com', '555-555-1212', 'My name’s Eric and I just came across your website - dalbitpetroleum.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like dalbitpetroleum.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n \r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=dalbitpetroleum.com', '2022-08-29 08:48:30', '2022-08-29 08:48:30', NULL),
(923, 'Perry', 'biuro@planetadesign.pl', '08024 97 65 36', 'Good day,\r\n\r\nIf you are one of the sufferers of the common problems nails have, then you are in luck! Our Toenail Clippers is here to help. It has a specially designed clip that can help those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, and thickened nails.\r\n\r\nWe are confident that our Toenail Clippers will provide you with the results you are looking for.\r\n\r\nGet yours today with 60% OFF: https://thepodiatrist.shop\r\n\r\nCheers,\r\n\r\nPerry', '2022-08-29 09:37:05', '2022-08-29 09:37:05', NULL),
(924, 'CrytoISods', 'yayo760@gmail.com', '89035464974', 'No need to work anymore while you have the Robot launched! https://riviello.es/promo', '2022-08-29 10:28:17', '2022-08-29 10:28:17', NULL),