-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHistory 2023-2024.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
1947 lines (1947 loc) · 113 KB
/
History 2023-2024.csv
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
477339000000874830;Registered (paid);2023-02-20 13:46:01 +0100 CET
477339000000874830;Contract received;2023-02-14 13:44:21 +0100 CET
477339000000874830;Contract sent;2023-01-31 17:18:45 +0100 CET
477339000000874830;Answer yes sent;2023-01-31 16:57:23 +0100 CET
477339000000874830;Interview passed (obsolete);2022-11-21 14:32:21 +0100 CET
477339000000874830;Gamed passed;2022-09-13 15:29:56 +0200 CEST
477339000000874830;Potential (obsolete);2022-08-10 10:33:18 +0200 CEST
477339000000874843;Registered (paid);2023-01-24 16:03:07 +0100 CET
477339000000874843;Interview passed (obsolete);2022-12-19 16:02:46 +0100 CET
477339000000874843;Gamed passed;2022-12-07 16:59:06 +0100 CET
477339000000874843;Potential (obsolete);2022-08-10 10:34:30 +0200 CEST
477339000000874860;Gamed passed;2023-01-31 17:23:55 +0100 CET
477339000000874860;Meeting;2023-01-31 16:56:51 +0100 CET
477339000000874860;Gamed passed;2022-08-10 10:36:26 +0200 CEST
477339000000874890;Lost;2022-12-15 14:40:11 +0100 CET
477339000000874890;Potential (obsolete);2022-08-10 10:38:35 +0200 CEST
477339000000874924;Lost;2023-02-06 14:21:45 +0100 CET
477339000000874924;Meeting;2023-01-31 16:56:23 +0100 CET
477339000000874924;Potential (obsolete);2022-08-10 10:40:40 +0200 CEST
477339000000874938;Prospect;2023-01-31 16:55:58 +0100 CET
477339000000874938;Potential (obsolete);2022-08-10 10:41:24 +0200 CEST
477339000000874955;Lost;2023-01-31 17:05:00 +0100 CET
477339000000874955;Potential (obsolete);2022-08-10 10:44:13 +0200 CEST
477339000000874966;Lost;2022-12-15 13:55:05 +0100 CET
477339000000874966;Potential (obsolete);2022-08-10 10:44:46 +0200 CEST
477339000001281029;Lost;2023-02-09 16:04:52 +0100 CET
477339000001281029;Prospect;2023-01-31 16:49:46 +0100 CET
477339000001281029;Potential (obsolete);2022-09-05 12:18:02 +0200 CEST
477339000002064028;Registered (paid);2023-01-25 13:46:30 +0100 CET
477339000002064028;Interview passed (obsolete);2022-11-21 14:33:38 +0100 CET
477339000002064028;Gamed passed;2022-11-04 16:19:13 +0100 CET
477339000002064028;Potential (obsolete);2022-10-22 16:49:37 +0200 CEST
477339000002212007;Registered (paid);2023-01-31 16:43:19 +0100 CET
477339000002212007;Interview passed (obsolete);2022-12-16 17:55:00 +0100 CET
477339000002212007;Gamed passed;2022-12-13 14:23:17 +0100 CET
477339000002212007;Potential (obsolete);2022-11-04 10:49:02 +0100 CET
477339000002212080;Waiting List;2023-02-27 11:02:45 +0100 CET
477339000002212080;Contract sent;2023-01-31 17:20:19 +0100 CET
477339000002212080;Answer yes sent;2023-01-31 16:53:07 +0100 CET
477339000002212080;Interview passed (obsolete);2022-12-10 17:58:16 +0100 CET
477339000002212080;Gamed passed;2022-11-04 11:06:13 +0100 CET
477339000002259049;Lost;2022-12-10 17:59:40 +0100 CET
477339000002259049;Gamed passed;2022-11-09 15:13:56 +0100 CET
477339000002367003;Lost;2022-12-13 15:42:29 +0100 CET
477339000002367003;Gamed passed;2022-11-14 14:52:31 +0100 CET
477339000002469004;Registered (paid);2023-04-17 15:42:56 +0200 CEST
477339000002469004;Contract received;2023-04-13 08:49:41 +0200 CEST
477339000002469004;Waiting List;2023-03-24 14:13:07 +0100 CET
477339000002469004;Contract sent;2023-01-31 16:44:39 +0100 CET
477339000002469004;Interview passed (obsolete);2022-11-30 15:29:50 +0100 CET
477339000002469004;Gamed passed;2022-11-21 14:09:42 +0100 CET
477339000002469004;Potential (obsolete);2022-11-19 17:05:36 +0100 CET
477339000002469015;Registered (paid);2023-03-22 13:56:31 +0100 CET
477339000002469015;Contract sent;2023-01-31 16:42:01 +0100 CET
477339000002469015;Interview passed (obsolete);2022-11-30 15:29:46 +0100 CET
477339000002469015;Gamed passed;2022-11-21 08:43:22 +0100 CET
477339000002469015;Potential (obsolete);2022-11-19 17:13:21 +0100 CET
477339000002573004;Prospect;2023-01-31 16:41:37 +0100 CET
477339000002573004;Potential (obsolete);2022-11-24 11:45:11 +0100 CET
477339000002624032;Interaction;2023-01-31 16:33:59 +0100 CET
477339000002624032;Potential (obsolete);2022-11-28 10:42:54 +0100 CET
477339000002624058;Registered (paid);2023-02-06 11:21:53 +0100 CET
477339000002624058;Contract sent;2023-01-31 16:31:01 +0100 CET
477339000002624058;Interview passed (obsolete);2023-01-12 08:55:23 +0100 CET
477339000002624058;Potential (obsolete);2022-11-28 10:44:44 +0100 CET
477339000002624090;Prospect;2023-01-31 16:34:26 +0100 CET
477339000002624090;Potential (obsolete);2022-11-28 10:46:55 +0100 CET
477339000002624118;Lost;2023-01-27 17:28:52 +0100 CET
477339000002624118;Potential (obsolete);2022-11-28 10:48:49 +0100 CET
477339000002624144;Prospect;2023-01-31 16:34:57 +0100 CET
477339000002624144;Potential (obsolete);2022-11-28 10:50:19 +0100 CET
477339000002624196;Prospect;2023-01-31 16:35:19 +0100 CET
477339000002624196;Potential (obsolete);2022-11-28 10:53:39 +0100 CET
477339000002624273;Prospect;2023-01-31 16:35:39 +0100 CET
477339000002624273;Potential (obsolete);2022-11-28 11:02:38 +0100 CET
477339000002624328;Prospect;2023-01-31 16:36:05 +0100 CET
477339000002624328;Potential (obsolete);2022-11-28 11:09:25 +0100 CET
477339000002624354;Prospect;2023-01-31 16:36:24 +0100 CET
477339000002624354;Potential (obsolete);2022-11-28 11:12:17 +0100 CET
477339000002624435;Prospect;2023-01-31 16:37:35 +0100 CET
477339000002624435;Potential (obsolete);2022-11-28 11:17:34 +0100 CET
477339000002624528;Prospect;2023-01-31 16:38:33 +0100 CET
477339000002624528;Potential (obsolete);2022-11-28 11:22:57 +0100 CET
477339000002624554;Prospect;2023-01-31 16:38:57 +0100 CET
477339000002624554;Potential (obsolete);2022-11-28 11:25:01 +0100 CET
477339000002624632;Prospect;2023-01-31 16:39:26 +0100 CET
477339000002624632;Potential (obsolete);2022-11-28 11:31:47 +0100 CET
477339000002624687;Prospect;2023-01-31 16:39:44 +0100 CET
477339000002624687;Potential (obsolete);2022-11-28 11:35:45 +0100 CET
477339000002632002;Prospect;2023-01-31 16:37:49 +0100 CET
477339000002632002;Potential (obsolete);2022-11-28 12:20:51 +0100 CET
477339000002632156;Prospect;2023-01-31 16:36:45 +0100 CET
477339000002632156;Potential (obsolete);2022-11-28 12:29:17 +0100 CET
477339000002808008;Prospect;2023-01-31 15:52:09 +0100 CET
477339000002808008;Potential (obsolete);2022-12-07 10:51:45 +0100 CET
477339000002861097;Lost;2023-01-27 17:22:41 +0100 CET
477339000002861097;Potential (obsolete);2022-12-08 11:18:00 +0100 CET
477339000002881070;Registered (paid);2023-03-28 11:38:39 +0200 CEST
477339000002881070;Contract sent;2023-01-31 15:53:49 +0100 CET
477339000002881070;Interview passed (obsolete);2022-12-10 17:58:11 +0100 CET
477339000002881070;Gamed passed;2022-12-09 18:25:54 +0100 CET
477339000002882004;Rejected;2023-02-20 10:56:15 +0100 CET
477339000002882004;Interview scheduled;2023-02-06 10:08:37 +0100 CET
477339000002882004;Interaction;2023-01-31 16:41:15 +0100 CET
477339000002882004;Gamed passed;2022-12-16 16:31:49 +0100 CET
477339000002882004;Potential (obsolete);2022-12-10 10:03:51 +0100 CET
477339000002882057;Waiting List;2023-07-20 11:35:40 +0200 CEST
477339000002882057;Contract sent;2023-04-28 09:52:49 +0200 CEST
477339000002882057;Waiting List;2023-03-24 14:13:12 +0100 CET
477339000002882057;Answer yes sent;2023-01-31 16:45:39 +0100 CET
477339000002882057;Interview passed (obsolete);2022-12-21 15:35:22 +0100 CET
477339000002882057;Gamed passed;2022-12-10 17:58:38 +0100 CET
477339000002882057;Potential (obsolete);2022-12-10 10:23:14 +0100 CET
477339000002883070;Lost;2023-06-13 16:56:58 +0200 CEST
477339000002883070;Interaction;2023-01-31 15:55:00 +0100 CET
477339000002883070;Potential (obsolete);2022-12-12 12:16:12 +0100 CET
477339000002894037;Interaction;2023-01-31 15:55:39 +0100 CET
477339000002894037;Potential (obsolete);2022-12-13 09:53:47 +0100 CET
477339000002904031;Prospect;2023-01-31 15:56:31 +0100 CET
477339000002904031;Gamed passed;2022-12-13 10:44:36 +0100 CET
477339000002929124;Lost;2023-05-11 17:39:49 +0200 CEST
477339000002929124;Interaction;2023-01-31 15:54:29 +0100 CET
477339000002929124;Gamed passed;2022-12-14 16:47:56 +0100 CET
477339000002930036;Prospect;2023-01-31 15:51:26 +0100 CET
477339000002930036;Potential (obsolete);2022-12-15 09:41:14 +0100 CET
477339000002933012;Prospect;2023-01-31 15:50:34 +0100 CET
477339000002933012;Potential (obsolete);2022-12-15 09:22:00 +0100 CET
477339000002933027;Prospect;2023-01-31 15:50:51 +0100 CET
477339000002933027;Potential (obsolete);2022-12-15 09:40:14 +0100 CET
477339000002936042;Prospect;2023-01-31 15:51:08 +0100 CET
477339000002936042;Gamed passed;2023-01-05 15:14:56 +0100 CET
477339000002936042;Potential (obsolete);2022-12-15 10:31:11 +0100 CET
477339000002937017;Lost;2023-01-02 12:39:44 +0100 CET
477339000002937017;Potential (obsolete);2022-12-15 10:27:34 +0100 CET
477339000002947097;Rejected;2022-12-21 15:34:21 +0100 CET
477339000002947097;Potential (obsolete);2022-12-15 11:51:18 +0100 CET
477339000002971172;Prospect;2023-01-31 16:49:22 +0100 CET
477339000002971172;Gamed passed;2022-12-19 11:51:27 +0100 CET
477339000003007130;Lost;2023-05-11 17:32:43 +0200 CEST
477339000003007130;Interaction;2023-01-31 16:52:10 +0100 CET
477339000003007130;Gamed passed;2022-12-20 10:54:42 +0100 CET
477339000003007223;Interaction;2023-01-31 15:51:51 +0100 CET
477339000003007223;Potential (obsolete);2022-12-20 12:05:15 +0100 CET
477339000003007237;Prospect;2023-01-31 15:52:30 +0100 CET
477339000003007237;Gamed passed;2022-12-20 12:07:04 +0100 CET
477339000003007251;Lost;2023-01-27 17:08:45 +0100 CET
477339000003007251;Gamed passed;2022-12-20 12:09:31 +0100 CET
477339000003007265;Lost;2023-01-05 14:46:32 +0100 CET
477339000003007265;Potential (obsolete);2022-12-20 12:11:23 +0100 CET
477339000003042018;Prospect;2023-01-31 17:03:05 +0100 CET
477339000003042018;Potential (obsolete);2022-12-21 09:11:32 +0100 CET
477339000003347001;Waiting List;2023-03-24 14:13:24 +0100 CET
477339000003347001;Answer yes sent;2023-01-31 16:59:59 +0100 CET
477339000003347001;Interview passed (obsolete);2022-12-29 12:09:23 +0100 CET
477339000003347999;Lost;2023-02-09 14:13:46 +0100 CET
477339000003347999;Answer yes sent;2023-01-31 15:50:08 +0100 CET
477339000003347999;Interview passed (obsolete);2023-01-05 14:50:00 +0100 CET
477339000003347999;Gamed passed;2023-01-02 15:59:59 +0100 CET
477339000003378011;Rejected;2023-01-05 15:07:27 +0100 CET
477339000003378011;Gamed passed;2023-01-02 08:27:26 +0100 CET
477339000003420168;Lost;2023-01-05 15:21:42 +0100 CET
477339000003420168;Potential (obsolete);2023-01-03 14:05:13 +0100 CET
477339000003420258;Interaction;2023-01-31 15:49:30 +0100 CET
477339000003420258;Gamed passed;2023-01-03 14:38:28 +0100 CET
477339000003493051;Rejected;2023-01-31 17:24:49 +0100 CET
477339000003493051;Meeting;2023-01-31 17:12:00 +0100 CET
477339000003493051;Gamed passed;2023-01-05 15:26:29 +0100 CET
477339000003675029;Lost;2023-02-09 15:35:51 +0100 CET
477339000003675029;Prospect;2023-01-31 15:12:58 +0100 CET
477339000003675029;Potential (obsolete);2023-01-14 13:24:32 +0100 CET
477339000003676025;Lost;2023-02-09 09:35:52 +0100 CET
477339000003676025;Prospect;2023-01-31 15:15:53 +0100 CET
477339000003676025;Potential (obsolete);2023-01-14 16:19:56 +0100 CET
477339000003692002;Interaction;2023-01-31 15:14:53 +0100 CET
477339000003692002;Potential (obsolete);2023-01-14 09:18:05 +0100 CET
477339000003704028;Prospect;2023-01-31 15:12:38 +0100 CET
477339000003704028;Potential (obsolete);2023-01-16 09:45:38 +0100 CET
477339000003704042;Interaction;2023-01-31 15:12:13 +0100 CET
477339000003704042;Potential (obsolete);2023-01-16 09:47:09 +0100 CET
477339000003704082;Prospect;2023-01-31 15:13:44 +0100 CET
477339000003704082;Potential (obsolete);2023-01-16 09:50:25 +0100 CET
477339000003704108;Prospect;2023-01-31 15:14:28 +0100 CET
477339000003704108;Potential (obsolete);2023-01-16 09:53:06 +0100 CET
477339000003704131;Lost;2023-01-23 16:16:02 +0100 CET
477339000003704131;Potential (obsolete);2023-01-16 09:56:12 +0100 CET
477339000003704145;Rejected;2023-02-11 14:16:49 +0100 CET
477339000003704145;Meeting scheduled;2023-01-31 15:25:55 +0100 CET
477339000003704145;Interaction;2023-01-31 15:15:25 +0100 CET
477339000003704145;Potential (obsolete);2023-01-16 10:05:21 +0100 CET
477339000003704159;Prospect;2023-01-31 15:16:19 +0100 CET
477339000003704159;Potential (obsolete);2023-01-16 10:07:05 +0100 CET
477339000003704173;Prospect;2023-01-31 15:17:17 +0100 CET
477339000003704173;Potential (obsolete);2023-01-16 10:09:50 +0100 CET
477339000003704211;Prospect;2023-01-31 15:28:07 +0100 CET
477339000003704211;Potential (obsolete);2023-01-16 10:13:12 +0100 CET
477339000003704237;Lost;2023-01-20 11:21:32 +0100 CET
477339000003704237;Potential (obsolete);2023-01-16 10:15:25 +0100 CET
477339000003704263;Prospect;2023-01-31 15:30:08 +0100 CET
477339000003704263;Potential (obsolete);2023-01-16 10:17:35 +0100 CET
477339000003704289;Prospect;2023-01-31 15:30:27 +0100 CET
477339000003704289;Potential (obsolete);2023-01-16 10:19:57 +0100 CET
477339000003704315;Prospect;2023-01-31 15:30:48 +0100 CET
477339000003704315;Potential (obsolete);2023-01-16 10:23:09 +0100 CET
477339000003704341;Prospect;2023-01-31 15:31:32 +0100 CET
477339000003704341;Potential (obsolete);2023-01-16 10:27:49 +0100 CET
477339000003704367;Lost;2023-07-05 12:36:10 +0200 CEST
477339000003704367;Interaction;2023-01-31 15:32:03 +0100 CET
477339000003704367;Potential (obsolete);2023-01-16 10:31:01 +0100 CET
477339000003704849;Interaction;2023-01-31 15:31:14 +0100 CET
477339000003704849;Potential (obsolete);2023-01-16 13:38:41 +0100 CET
477339000003704999;Lost;2023-06-13 16:38:12 +0200 CEST
477339000003704999;Interaction;2023-01-31 15:28:30 +0100 CET
477339000003704999;Potential (obsolete);2023-01-16 15:54:52 +0100 CET
477339000003706025;Prospect;2023-01-31 15:14:06 +0100 CET
477339000003706025;Potential (obsolete);2023-01-16 16:00:01 +0100 CET
477339000003706075;Interaction;2023-01-31 15:16:52 +0100 CET
477339000003706075;Potential (obsolete);2023-01-16 16:07:30 +0100 CET
477339000003706188;Rejected;2023-06-12 15:22:09 +0200 CEST
477339000003706188;Interaction;2023-01-31 15:17:52 +0100 CET
477339000003706188;Potential (obsolete);2023-01-16 16:35:59 +0100 CET
477339000003710063;Prospect;2023-01-31 15:07:12 +0100 CET
477339000003710063;Potential (obsolete);2023-01-17 14:59:56 +0100 CET
477339000003710077;Contract sent;2023-02-20 09:41:51 +0100 CET
477339000003710077;Answer yes sent;2023-02-14 09:44:23 +0100 CET
477339000003710077;Interview done;2023-02-11 18:35:30 +0100 CET
477339000003710077;Meeting scheduled;2023-01-31 15:26:14 +0100 CET
477339000003710077;Interaction;2023-01-31 15:06:12 +0100 CET
477339000003710077;Gamed passed;2023-01-25 10:43:15 +0100 CET
477339000003710077;Potential (obsolete);2023-01-17 15:00:30 +0100 CET
477339000003710106;Interaction;2023-01-31 15:10:09 +0100 CET
477339000003710106;Gamed passed;2023-01-17 15:02:01 +0100 CET
477339000003710106;Potential (obsolete);2023-01-17 15:01:47 +0100 CET
477339000003710150;Interaction;2023-01-31 17:08:07 +0100 CET
477339000003710150;Gamed passed;2023-01-18 12:00:16 +0100 CET
477339000003710150;Potential (obsolete);2023-01-17 15:05:23 +0100 CET
477339000003710205;Lost;2023-03-15 19:21:45 +0100 CET
477339000003710205;Prospect;2023-01-31 15:11:00 +0100 CET
477339000003710205;Potential (obsolete);2023-01-17 15:10:51 +0100 CET
477339000003710260;Registered (paid);2023-04-26 12:21:00 +0200 CEST
477339000003710260;Contract sent;2023-03-17 09:49:14 +0100 CET
477339000003710260;Answer yes sent;2023-03-02 17:14:38 +0100 CET
477339000003710260;Meeting scheduled;2023-03-02 19:24:32 +0100 CET
477339000003710260;Interview done;2023-03-01 18:55:16 +0100 CET
477339000003710260;Interview scheduled;2023-02-15 14:15:42 +0100 CET
477339000003710260;Gamed passed;2023-02-11 13:47:05 +0100 CET
477339000003710260;Interaction;2023-01-31 15:18:30 +0100 CET
477339000003710260;Potential (obsolete);2023-01-17 15:17:49 +0100 CET
477339000003710288;Interaction;2023-01-31 15:19:04 +0100 CET
477339000003710288;Gamed passed;2023-01-17 15:27:22 +0100 CET
477339000003710314;Prospect;2023-01-31 15:19:31 +0100 CET
477339000003710314;Potential (obsolete);2023-01-17 15:28:57 +0100 CET
477339000003710340;Prospect;2023-01-31 15:20:16 +0100 CET
477339000003710340;Gamed passed;2023-01-17 15:30:43 +0100 CET
477339000003710340;Potential (obsolete);2023-01-17 15:30:31 +0100 CET
477339000003710372;Registered (paid);2023-06-23 14:19:19 +0200 CEST
477339000003710372;Waiting List;2023-05-10 11:01:23 +0200 CEST
477339000003710372;Contract sent;2023-04-24 15:31:40 +0200 CEST
477339000003710372;Interview done;2023-03-08 15:00:27 +0100 CET
477339000003710372;Answer yes sent;2023-03-08 17:24:19 +0100 CET
477339000003710372;Meeting scheduled;2023-03-02 19:28:35 +0100 CET
477339000003710372;Interview scheduled;2023-03-01 15:55:45 +0100 CET
477339000003710372;Gamed passed;2023-02-11 13:51:54 +0100 CET
477339000003710372;Meeting scheduled;2023-01-31 15:25:08 +0100 CET
477339000003710372;Gamed passed;2023-01-17 15:32:07 +0100 CET
477339000003710398;Lost;2023-03-06 17:18:34 +0100 CET
477339000003710398;Interaction;2023-01-31 15:26:56 +0100 CET
477339000003710398;Potential (obsolete);2023-01-17 15:39:45 +0100 CET
477339000003710424;Prospect;2023-01-31 15:27:20 +0100 CET
477339000003710424;Potential (obsolete);2023-01-17 15:41:46 +0100 CET
477339000003710441;Prospect;2023-01-31 15:27:45 +0100 CET
477339000003710441;Potential (obsolete);2023-01-17 15:42:54 +0100 CET
477339000003710467;Lost;2023-06-13 16:34:17 +0200 CEST
477339000003710467;Interaction;2023-01-31 15:32:25 +0100 CET
477339000003710467;Potential (obsolete);2023-01-17 15:51:26 +0100 CET
477339000003710530;Rejected;2023-01-31 15:33:36 +0100 CET
477339000003710530;Prospect;2023-01-31 15:32:46 +0100 CET
477339000003710530;Potential (obsolete);2023-01-17 16:49:50 +0100 CET
477339000003710556;Prospect;2023-01-31 15:34:38 +0100 CET
477339000003710556;Gamed passed;2023-01-17 16:59:26 +0100 CET
477339000003721001;Lost;2023-01-18 10:15:10 +0100 CET
477339000003721001;Gamed passed;2023-01-18 10:00:10 +0100 CET
477339000003721100;Prospect;2023-01-31 15:47:00 +0100 CET
477339000003721100;Potential (obsolete);2023-01-18 14:34:45 +0100 CET
477339000003721126;Prospect;2023-01-31 15:46:41 +0100 CET
477339000003721126;Potential (obsolete);2023-01-18 14:36:34 +0100 CET
477339000003721152;Prospect;2023-01-31 15:46:22 +0100 CET
477339000003721152;Potential (obsolete);2023-01-18 14:38:16 +0100 CET
477339000003721178;Prospect;2023-01-31 15:45:58 +0100 CET
477339000003721178;Potential (obsolete);2023-01-20 16:17:59 +0100 CET
477339000003721178;Gamed passed;2023-01-18 14:40:52 +0100 CET
477339000003733069;Prospect;2023-01-31 15:44:53 +0100 CET
477339000003733069;Gamed passed;2023-01-18 14:54:13 +0100 CET
477339000003733095;Prospect;2023-01-31 15:44:20 +0100 CET
477339000003733095;Potential (obsolete);2023-01-18 14:55:46 +0100 CET
477339000003733121;Lost;2023-03-20 15:48:58 +0100 CET
477339000003733121;Interaction;2023-01-31 15:44:04 +0100 CET
477339000003733121;Gamed passed;2023-01-18 14:57:59 +0100 CET
477339000003733153;Waiting List;2023-05-10 11:01:34 +0200 CEST
477339000003733153;Contract sent;2023-05-02 15:58:34 +0200 CEST
477339000003733153;Interview done;2023-03-09 15:20:10 +0100 CET
477339000003733153;Answer yes sent;2023-03-09 16:07:11 +0100 CET
477339000003733153;Interview scheduled;2023-03-08 19:28:38 +0100 CET
477339000003733153;Gamed passed;2023-03-08 19:09:07 +0100 CET
477339000003733153;Interaction;2023-01-31 15:43:41 +0100 CET
477339000003733153;Potential (obsolete);2023-01-18 15:12:22 +0100 CET
477339000003733215;Prospect;2023-01-31 15:35:45 +0100 CET
477339000003733215;Potential (obsolete);2023-01-18 15:20:13 +0100 CET
477339000003733253;Prospect;2023-01-31 15:35:28 +0100 CET
477339000003733253;Potential (obsolete);2023-01-20 12:05:14 +0100 CET
477339000003733253;Gamed passed;2023-01-18 15:24:16 +0100 CET
477339000003733253;Potential (obsolete);2023-01-18 15:23:52 +0100 CET
477339000003733285;Prospect;2023-01-31 15:35:04 +0100 CET
477339000003733285;Potential (obsolete);2023-01-18 15:25:48 +0100 CET
477339000003733387;Prospect;2023-01-31 15:05:12 +0100 CET
477339000003733387;Gamed passed;2023-01-18 15:58:07 +0100 CET
477339000003733387;Potential (obsolete);2023-01-18 15:57:53 +0100 CET
477339000003755083;Rejected;2023-01-31 15:02:23 +0100 CET
477339000003755083;Potential (obsolete);2023-01-19 10:28:42 +0100 CET
477339000003755094;Rejected;2023-01-31 15:00:35 +0100 CET
477339000003755094;Gamed passed;2023-01-19 10:29:12 +0100 CET
477339000003755161;Prospect;2023-01-31 15:04:28 +0100 CET
477339000003755161;Potential (obsolete);2023-01-19 10:44:27 +0100 CET
477339000003755212;Interaction;2023-01-31 15:08:43 +0100 CET
477339000003755212;Potential (obsolete);2023-01-19 11:00:54 +0100 CET
477339000003755377;Prospect;2023-01-31 15:13:19 +0100 CET
477339000003755377;Potential (obsolete);2023-01-19 12:18:57 +0100 CET
477339000003760033;Prospect;2023-01-31 15:29:00 +0100 CET
477339000003760033;Potential (obsolete);2023-01-19 15:05:06 +0100 CET
477339000003800066;Interaction;2023-01-31 14:58:11 +0100 CET
477339000003800066;Potential (obsolete);2023-01-20 09:54:46 +0100 CET
477339000003814070;Prospect;2023-01-31 14:57:42 +0100 CET
477339000003814070;Potential (obsolete);2023-01-20 11:29:19 +0100 CET
477339000003831227;Prospect;2023-01-31 15:45:11 +0100 CET
477339000003831227;Gamed passed;2023-01-20 11:34:28 +0100 CET
477339000003831319;Lost;2023-05-10 16:16:51 +0200 CEST
477339000003831319;Interaction;2023-01-31 15:47:43 +0100 CET
477339000003831319;Gamed passed;2023-01-20 11:58:41 +0100 CET
477339000003831355;Prospect;2023-01-31 15:36:34 +0100 CET
477339000003831355;Potential (obsolete);2023-01-20 12:04:18 +0100 CET
477339000003831385;Prospect;2023-01-31 15:47:21 +0100 CET
477339000003831385;Potential (obsolete);2023-01-20 12:09:00 +0100 CET
477339000003835006;Prospect;2023-01-31 14:50:14 +0100 CET
477339000003835006;Potential (obsolete);2023-01-20 14:44:04 +0100 CET
477339000003835035;Prospect;2023-01-31 14:49:24 +0100 CET
477339000003835035;Potential (obsolete);2023-01-21 12:28:12 +0100 CET
477339000003840006;Prospect;2023-01-31 14:55:56 +0100 CET
477339000003840006;Potential (obsolete);2023-01-21 10:37:29 +0100 CET
477339000003842268;Prospect;2023-01-31 15:45:31 +0100 CET
477339000003842268;Potential (obsolete);2023-01-20 17:04:33 +0100 CET
477339000003872287;Lost;2023-01-27 17:25:56 +0100 CET
477339000003872287;Potential (obsolete);2023-01-23 16:56:32 +0100 CET
477339000003872313;Interaction;2023-01-31 14:48:23 +0100 CET
477339000003872313;Potential (obsolete);2023-01-23 16:57:06 +0100 CET
477339000003872339;Prospect;2023-01-31 14:56:52 +0100 CET
477339000003872339;Potential (obsolete);2023-01-23 16:57:47 +0100 CET
477339000003872395;Prospect;2023-01-31 14:55:38 +0100 CET
477339000003872395;Potential (obsolete);2023-01-23 17:00:03 +0100 CET
477339000003872539;Prospect;2023-01-31 14:50:35 +0100 CET
477339000003872539;Potential (obsolete);2023-01-23 17:06:15 +0100 CET
477339000003872621;Prospect;2023-01-31 14:56:23 +0100 CET
477339000003872621;Potential (obsolete);2023-01-23 17:09:46 +0100 CET
477339000003882049;Waiting List;2023-05-25 10:46:13 +0200 CEST
477339000003882049;Contract sent;2023-03-29 12:37:05 +0200 CEST
477339000003882049;Interview done;2023-03-22 14:31:47 +0100 CET
477339000003882049;Answer yes sent;2023-03-22 17:53:45 +0100 CET
477339000003882049;Interview scheduled;2023-03-17 09:01:15 +0100 CET
477339000003882049;Gamed passed;2023-03-15 18:28:34 +0100 CET
477339000003882049;Gamed passed;2023-02-11 15:59:56 +0100 CET
477339000003882049;Meeting scheduled;2023-02-11 18:22:57 +0100 CET
477339000003882049;Meeting scheduled;2023-02-02 15:26:20 +0100 CET
477339000003882049;Interaction;2023-01-31 14:55:09 +0100 CET
477339000003882049;Potential (obsolete);2023-01-24 09:24:24 +0100 CET
477339000003882166;Lost;2023-01-24 14:16:41 +0100 CET
477339000003882166;Potential (obsolete);2023-01-24 13:54:42 +0100 CET
477339000003897031;Prospect;2023-01-31 14:46:19 +0100 CET
477339000003897031;Potential (obsolete);2023-01-27 13:58:09 +0100 CET
477339000003906051;Prospect;2023-01-31 14:46:43 +0100 CET
477339000003906051;Potential (obsolete);2023-01-28 10:50:10 +0100 CET
477339000003906067;Prospect;2023-01-31 14:47:28 +0100 CET
477339000003906067;Potential (obsolete);2023-01-28 12:51:33 +0100 CET
477339000003907049;Lost;2023-06-20 14:52:39 +0200 CEST
477339000003907049;Interaction;2023-02-16 12:09:34 +0100 CET
477339000003907049;Prospect;2023-01-31 14:47:10 +0100 CET
477339000003907049;Potential (obsolete);2023-01-26 17:55:51 +0100 CET
477339000003914041;Prospect;2023-01-31 14:47:46 +0100 CET
477339000003914041;Potential (obsolete);2023-01-27 15:49:13 +0100 CET
477339000003927094;Prospect;2023-01-31 17:06:45 +0100 CET
477339000003927094;Gamed passed;2023-01-26 16:12:38 +0100 CET
477339000003927108;Prospect;2023-01-31 17:06:12 +0100 CET
477339000003927108;Gamed passed;2023-01-26 16:20:02 +0100 CET
477339000003927119;Interaction;2023-02-16 09:30:09 +0100 CET
477339000003927119;Prospect;2023-01-31 17:01:55 +0100 CET
477339000003927119;Potential (obsolete);2023-01-26 16:51:25 +0100 CET
477339000003927147;Prospect;2023-01-31 17:01:29 +0100 CET
477339000003927147;Potential (obsolete);2023-01-26 17:49:24 +0100 CET
477339000004005022;Prospect;2023-01-30 17:49:39 +0100 CET
477339000004029351;Prospect;2023-02-01 15:04:02 +0100 CET
477339000004030404;Prospect;2023-02-01 16:04:01 +0100 CET
477339000004031170;Prospect;2023-01-31 16:51:22 +0100 CET
477339000004036156;Prospect;2023-01-31 22:04:00 +0100 CET
477339000004036290;Prospect;2023-02-01 11:04:01 +0100 CET
477339000004041051;Lost;2023-04-27 11:16:27 +0200 CEST
477339000004041051;Gamed passed;2023-02-01 17:49:01 +0100 CET
477339000004041051;Meeting scheduled;2023-02-01 09:17:17 +0100 CET
477339000004041051;Interaction;2023-01-31 11:21:28 +0100 CET
477339000004041062;Prospect;2023-01-31 11:22:28 +0100 CET
477339000004060519;Registered (paid);2023-05-09 08:28:32 +0200 CEST
477339000004060519;Contract received;2023-05-05 11:04:39 +0200 CEST
477339000004060519;Contract sent;2023-02-20 09:39:14 +0100 CET
477339000004060519;Answer yes sent;2023-02-14 09:41:59 +0100 CET
477339000004060519;Interview done;2023-02-10 17:58:14 +0100 CET
477339000004060519;Interview scheduled;2023-02-06 10:13:07 +0100 CET
477339000004060519;Gamed passed;2023-02-06 10:13:02 +0100 CET
477339000004060519;Meeting;2023-01-31 15:49:02 +0100 CET
477339000004060619;Registered (paid);2023-07-20 09:58:16 +0200 CEST
477339000004060619;Waiting List;2023-06-13 15:27:04 +0200 CEST
477339000004060619;Contract sent;2023-05-05 15:29:43 +0200 CEST
477339000004060619;Answer yes sent;2023-04-06 17:10:37 +0200 CEST
477339000004060619;Interview done;2023-04-05 14:21:30 +0200 CEST
477339000004060619;Gamed passed;2023-03-30 08:37:41 +0200 CEST
477339000004060619;Meeting scheduled;2023-03-25 11:16:53 +0100 CET
477339000004060619;Gamed passed;2023-02-07 08:34:37 +0100 CET
477339000004060619;Meeting;2023-02-06 14:56:36 +0100 CET
477339000004060619;Meeting scheduled;2023-01-31 16:14:32 +0100 CET
477339000004060720;Prospect;2023-01-31 16:40:32 +0100 CET
477339000004060749;Prospect;2023-01-31 16:42:39 +0100 CET
477339000004060766;Meeting;2023-01-31 16:44:00 +0100 CET
477339000004060791;Prospect;2023-01-31 16:46:19 +0100 CET
477339000004060807;Prospect;2023-01-31 16:47:19 +0100 CET
477339000004060818;Prospect;2023-01-31 16:48:00 +0100 CET
477339000004060829;Prospect;2023-01-31 16:48:35 +0100 CET
477339000004060840;Prospect;2023-01-31 16:49:00 +0100 CET
477339000004060863;Meeting;2023-01-31 16:50:28 +0100 CET
477339000004060886;Interaction;2023-01-31 16:53:49 +0100 CET
477339000004060897;Interaction;2023-01-31 16:54:20 +0100 CET
477339000004060908;Interaction;2023-01-31 16:55:17 +0100 CET
477339000004063001;Rejected;2023-02-20 13:48:15 +0100 CET
477339000004063001;Meeting scheduled;2023-02-01 09:04:10 +0100 CET
477339000004063012;Rejected;2023-02-11 09:35:35 +0100 CET
477339000004063012;Meeting scheduled;2023-02-01 09:05:07 +0100 CET
477339000004063023;Interaction;2023-03-21 12:09:44 +0100 CET
477339000004063023;Meeting scheduled;2023-02-01 09:05:36 +0100 CET
477339000004063034;Registered (paid);2023-06-13 11:12:19 +0200 CEST
477339000004063034;Waiting List;2023-05-02 17:26:09 +0200 CEST
477339000004063034;Contract sent;2023-03-20 09:46:45 +0100 CET
477339000004063034;Interview done;2023-03-02 16:55:16 +0100 CET
477339000004063034;Answer yes sent;2023-03-02 17:13:05 +0100 CET
477339000004063034;Interview scheduled;2023-02-17 17:18:58 +0100 CET
477339000004063034;Meeting;2023-02-11 18:10:21 +0100 CET
477339000004063034;Meeting scheduled;2023-02-01 09:06:13 +0100 CET
477339000004063045;Lost;2023-04-28 14:29:04 +0200 CEST
477339000004063045;Prospect;2023-04-27 12:33:40 +0200 CEST
477339000004063045;Meeting scheduled;2023-02-01 09:06:40 +0100 CET
477339000004063056;Gamed passed;2023-03-11 17:59:36 +0100 CET
477339000004063056;Meeting scheduled;2023-02-01 09:07:36 +0100 CET
477339000004063069;Rejected;2023-02-11 17:06:06 +0100 CET
477339000004063069;Meeting scheduled;2023-02-01 09:08:14 +0100 CET
477339000004063115;Lost;2023-02-09 15:03:54 +0100 CET
477339000004063115;Meeting;2023-02-01 09:12:24 +0100 CET
477339000004063126;Lost;2023-02-01 09:12:58 +0100 CET
477339000004063150;Waiting List;2023-03-24 14:13:26 +0100 CET
477339000004063150;Answer yes sent;2023-02-02 16:32:33 +0100 CET
477339000004063150;Interview done;2023-02-01 11:53:10 +0100 CET
477339000004063150;Interview passed (obsolete);2023-02-01 11:53:01 +0100 CET
477339000004063150;Interview scheduled;2023-02-01 09:15:51 +0100 CET
477339000004063150;Meeting scheduled;2023-02-01 09:15:41 +0100 CET
477339000004063167;Lost;2023-05-15 14:05:05 +0200 CEST
477339000004063167;Contract sent;2023-02-16 17:40:41 +0100 CET
477339000004063167;Answer yes sent;2023-02-02 16:32:35 +0100 CET
477339000004063167;Interview done;2023-02-01 16:37:07 +0100 CET
477339000004063167;Interview scheduled;2023-02-01 09:16:31 +0100 CET
477339000004063184;Prospect;2023-02-01 09:34:46 +0100 CET
477339000004063195;Lost;2023-05-11 17:46:44 +0200 CEST
477339000004063195;Interaction;2023-02-09 09:51:41 +0100 CET
477339000004063195;Prospect;2023-02-01 09:39:00 +0100 CET
477339000004063209;Prospect;2023-02-01 09:40:30 +0100 CET
477339000004063220;Lost;2023-02-15 13:47:24 +0100 CET
477339000004063220;Prospect;2023-02-01 09:41:00 +0100 CET
477339000004063234;Rejected;2023-02-01 09:42:47 +0100 CET
477339000004063245;Rejected;2023-02-01 09:44:16 +0100 CET
477339000004063259;Prospect;2023-02-01 09:44:56 +0100 CET
477339000004063270;Prospect;2023-02-01 09:45:22 +0100 CET
477339000004063281;Prospect;2023-02-01 09:45:46 +0100 CET
477339000004063292;Lost;2023-02-23 14:07:32 +0100 CET
477339000004063292;Prospect;2023-02-01 09:46:30 +0100 CET
477339000004063303;Prospect;2023-02-01 09:47:03 +0100 CET
477339000004063314;Lost;2023-02-21 09:59:47 +0100 CET
477339000004063314;Prospect;2023-02-01 09:47:55 +0100 CET
477339000004063336;Interaction;2023-02-16 11:59:52 +0100 CET
477339000004063336;Prospect;2023-02-01 09:52:18 +0100 CET
477339000004063358;Lost;2023-02-16 11:35:49 +0100 CET
477339000004063358;Prospect;2023-02-01 09:53:57 +0100 CET
477339000004063369;Prospect;2023-02-01 09:55:58 +0100 CET
477339000004063380;Prospect;2023-02-01 09:56:50 +0100 CET
477339000004063391;Interaction;2023-03-02 15:14:12 +0100 CET
477339000004063391;Prospect;2023-02-01 09:57:20 +0100 CET
477339000004063402;Prospect;2023-02-01 09:58:17 +0100 CET
477339000004063416;Prospect;2023-02-01 09:58:51 +0100 CET
477339000004063447;Prospect;2023-02-01 10:01:09 +0100 CET
477339000004063458;Prospect;2023-02-01 10:01:30 +0100 CET
477339000004063469;Prospect;2023-02-01 10:02:03 +0100 CET
477339000004063480;Lost;2023-02-23 14:23:10 +0100 CET
477339000004063480;Prospect;2023-02-01 10:02:32 +0100 CET
477339000004063491;Prospect;2023-02-01 10:03:07 +0100 CET
477339000004063502;Prospect;2023-02-01 10:03:41 +0100 CET
477339000004063513;Prospect;2023-02-01 10:04:09 +0100 CET
477339000004063524;Rejected;2023-02-01 10:05:19 +0100 CET
477339000004063538;Prospect;2023-02-01 10:06:18 +0100 CET
477339000004063549;Prospect;2023-02-01 10:06:55 +0100 CET
477339000004063560;Prospect;2023-02-01 10:07:26 +0100 CET
477339000004063571;Lost;2023-03-13 16:32:34 +0100 CET
477339000004063571;Prospect;2023-02-01 10:07:54 +0100 CET
477339000004063582;Rejected;2023-02-01 10:08:54 +0100 CET
477339000004063596;Prospect;2023-02-01 10:09:38 +0100 CET
477339000004063607;Prospect;2023-02-01 10:11:28 +0100 CET
477339000004063618;Prospect;2023-02-01 10:12:11 +0100 CET
477339000004063629;Prospect;2023-02-01 10:13:16 +0100 CET
477339000004063640;Rejected;2023-02-01 10:14:16 +0100 CET
477339000004063654;Lost;2023-07-20 14:00:02 +0200 CEST
477339000004063654;Interaction;2023-02-01 10:15:27 +0100 CET
477339000004063665;Lost;2023-02-16 10:17:43 +0100 CET
477339000004063665;Prospect;2023-02-01 10:15:59 +0100 CET
477339000004063702;Lost;2023-02-16 09:33:46 +0100 CET
477339000004063702;Prospect;2023-02-01 10:18:26 +0100 CET
477339000004063713;Prospect;2023-02-01 10:19:09 +0100 CET
477339000004063724;Prospect;2023-02-01 10:20:28 +0100 CET
477339000004063724;Interaction;2023-02-01 10:20:07 +0100 CET
477339000004063741;Prospect;2023-02-01 10:21:00 +0100 CET
477339000004063752;Interaction;2023-03-13 16:55:25 +0100 CET
477339000004063752;Prospect;2023-02-01 10:22:10 +0100 CET
477339000004063763;Prospect;2023-02-01 10:22:54 +0100 CET
477339000004063774;Prospect;2023-02-01 10:23:26 +0100 CET
477339000004063785;Prospect;2023-02-01 10:24:05 +0100 CET
477339000004063796;Prospect;2023-02-01 10:24:38 +0100 CET
477339000004063807;Prospect;2023-02-01 10:25:06 +0100 CET
477339000004063821;Rejected;2023-02-01 10:26:06 +0100 CET
477339000004063832;Lost;2023-02-16 09:19:36 +0100 CET
477339000004063832;Prospect;2023-02-01 10:26:54 +0100 CET
477339000004063843;Prospect;2023-02-01 10:27:18 +0100 CET
477339000004063854;Prospect;2023-02-01 10:27:44 +0100 CET
477339000004063868;Prospect;2023-02-01 10:28:35 +0100 CET
477339000004063879;Interaction;2023-02-06 10:36:39 +0100 CET
477339000004063879;Prospect;2023-02-01 10:29:22 +0100 CET
477339000004063890;Prospect;2023-02-01 10:29:50 +0100 CET
477339000004063901;Prospect;2023-02-01 10:30:28 +0100 CET
477339000004063912;Prospect;2023-02-01 10:30:55 +0100 CET
477339000004063923;Prospect;2023-02-01 10:31:21 +0100 CET
477339000004063934;Prospect;2023-02-01 10:31:50 +0100 CET
477339000004063945;Prospect;2023-02-01 10:32:21 +0100 CET
477339000004063956;Prospect;2023-02-01 10:32:45 +0100 CET
477339000004063970;Prospect;2023-02-01 10:33:19 +0100 CET
477339000004063981;Prospect;2023-02-01 10:34:16 +0100 CET
477339000004063992;Prospect;2023-02-01 10:35:01 +0100 CET
477339000004064003;Prospect;2023-02-01 10:35:42 +0100 CET
477339000004064014;Lost;2023-02-09 15:17:58 +0100 CET
477339000004064014;Prospect;2023-02-01 10:36:24 +0100 CET
477339000004064025;Prospect;2023-02-01 10:36:56 +0100 CET
477339000004064036;Prospect;2023-02-01 10:37:25 +0100 CET
477339000004064047;Prospect;2023-02-01 10:39:52 +0100 CET
477339000004064058;Prospect;2023-02-01 10:40:24 +0100 CET
477339000004064069;Prospect;2023-02-01 10:41:07 +0100 CET
477339000004064080;Prospect;2023-02-01 10:42:03 +0100 CET
477339000004064091;Prospect;2023-02-01 10:46:26 +0100 CET
477339000004064102;Prospect;2023-02-01 10:47:21 +0100 CET
477339000004064113;Prospect;2023-02-01 10:47:54 +0100 CET
477339000004064140;Prospect;2023-02-01 10:49:28 +0100 CET
477339000004064151;Prospect;2023-02-01 10:50:00 +0100 CET
477339000004064162;Rejected;2023-02-01 11:11:32 +0100 CET
477339000004064162;Prospect;2023-02-01 10:50:45 +0100 CET
477339000004064173;Rejected;2023-02-01 11:07:17 +0100 CET
477339000004064196;Prospect;2023-02-01 11:15:48 +0100 CET
477339000004064207;Prospect;2023-02-01 11:16:17 +0100 CET
477339000004064218;Prospect;2023-02-01 11:16:48 +0100 CET
477339000004064229;Prospect;2023-02-01 11:17:19 +0100 CET
477339000004064243;Rejected;2023-02-01 11:18:07 +0100 CET
477339000004064257;Prospect;2023-02-01 11:18:53 +0100 CET
477339000004064268;Lost;2023-02-13 16:42:58 +0100 CET
477339000004064268;Prospect;2023-02-01 11:19:23 +0100 CET
477339000004064279;Prospect;2023-02-01 11:19:54 +0100 CET
477339000004064290;Prospect;2023-02-01 11:20:57 +0100 CET
477339000004064301;Prospect;2023-02-01 11:21:23 +0100 CET
477339000004064312;Prospect;2023-02-01 11:22:03 +0100 CET
477339000004064323;Interaction;2023-02-01 11:22:40 +0100 CET
477339000004064334;Prospect;2023-02-01 11:23:06 +0100 CET
477339000004064345;Lost;2023-02-06 14:26:29 +0100 CET
477339000004064345;Interaction;2023-02-01 11:23:46 +0100 CET
477339000004064356;Rejected;2023-02-01 11:24:27 +0100 CET
477339000004064370;Prospect;2023-02-01 11:25:06 +0100 CET
477339000004064381;Rejected;2023-02-01 11:25:41 +0100 CET
477339000004064395;Prospect;2023-02-01 11:27:00 +0100 CET
477339000004064406;Prospect;2023-02-01 12:02:45 +0100 CET
477339000004064434;Prospect;2023-02-01 12:04:24 +0100 CET
477339000004064445;Prospect;2023-02-01 12:04:50 +0100 CET
477339000004064456;Lost;2023-03-06 12:23:04 +0100 CET
477339000004064456;Prospect;2023-02-01 12:05:22 +0100 CET
477339000004064467;Prospect;2023-02-01 12:05:46 +0100 CET
477339000004064478;Prospect;2023-02-01 12:06:21 +0100 CET
477339000004064489;Prospect;2023-02-01 12:07:45 +0100 CET
477339000004064500;Rejected;2023-02-01 12:08:36 +0100 CET
477339000004064514;Prospect;2023-02-01 12:09:23 +0100 CET
477339000004064525;Prospect;2023-02-01 12:09:49 +0100 CET
477339000004064536;Prospect;2023-02-01 12:10:15 +0100 CET
477339000004064547;Prospect;2023-02-01 12:11:02 +0100 CET
477339000004064558;Prospect;2023-02-01 12:11:31 +0100 CET
477339000004064569;Prospect;2023-02-01 12:12:25 +0100 CET
477339000004064580;Prospect;2023-02-01 12:12:56 +0100 CET
477339000004064591;Rejected;2023-02-01 12:13:49 +0100 CET
477339000004064605;Rejected;2023-02-01 12:15:28 +0100 CET
477339000004064605;Prospect;2023-02-01 12:15:08 +0100 CET
477339000004064625;Prospect;2023-02-01 12:16:27 +0100 CET
477339000004064636;Prospect;2023-02-01 12:16:58 +0100 CET
477339000004064647;Prospect;2023-02-01 12:17:27 +0100 CET
477339000004064658;Prospect;2023-02-01 12:18:02 +0100 CET
477339000004064669;Prospect;2023-02-01 12:19:33 +0100 CET
477339000004064684;Interaction;2023-02-01 12:21:34 +0100 CET
477339000004064695;Prospect;2023-02-01 12:22:02 +0100 CET
477339000004064706;Prospect;2023-02-01 12:22:42 +0100 CET
477339000004064717;Prospect;2023-02-01 12:23:25 +0100 CET
477339000004064728;Prospect;2023-02-01 12:23:54 +0100 CET
477339000004064739;Prospect;2023-02-01 12:24:21 +0100 CET
477339000004064750;Prospect;2023-02-01 12:24:50 +0100 CET
477339000004064764;Prospect;2023-02-01 12:27:33 +0100 CET
477339000004064775;Prospect;2023-02-01 12:28:06 +0100 CET
477339000004064786;Lost;2023-03-16 14:04:42 +0100 CET
477339000004064786;Prospect;2023-02-01 12:28:31 +0100 CET
477339000004064797;Prospect;2023-02-01 12:29:07 +0100 CET
477339000004064808;Prospect;2023-02-01 12:29:41 +0100 CET
477339000004064819;Rejected;2023-02-01 12:31:01 +0100 CET
477339000004064837;Rejected;2023-02-01 13:53:12 +0100 CET
477339000004064851;Prospect;2023-02-01 13:53:59 +0100 CET
477339000004064862;Rejected;2023-02-01 13:54:57 +0100 CET
477339000004064876;Prospect;2023-02-01 13:55:42 +0100 CET
477339000004064887;Prospect;2023-02-01 13:56:15 +0100 CET
477339000004064898;Prospect;2023-02-01 13:56:55 +0100 CET
477339000004064909;Prospect;2023-02-01 13:57:35 +0100 CET
477339000004064923;Prospect;2023-02-01 13:58:33 +0100 CET
477339000004064934;Lost;2023-03-06 11:22:12 +0100 CET
477339000004064934;Prospect;2023-02-01 13:59:11 +0100 CET
477339000004064945;Prospect;2023-02-01 13:59:43 +0100 CET
477339000004064956;Rejected;2023-02-01 14:00:55 +0100 CET
477339000004064970;Prospect;2023-02-01 14:02:13 +0100 CET
477339000004064981;Rejected;2023-02-01 14:03:01 +0100 CET
477339000004064998;Lost;2023-05-17 16:04:47 +0200 CEST
477339000004064998;Interaction;2023-02-01 14:04:17 +0100 CET
477339000004066009;Prospect;2023-02-01 14:04:46 +0100 CET
477339000004066020;Lost;2023-02-13 16:36:40 +0100 CET
477339000004066020;Prospect;2023-02-01 14:05:19 +0100 CET
477339000004066031;Lost;2023-02-16 15:34:10 +0100 CET
477339000004066031;Prospect;2023-02-01 14:05:49 +0100 CET
477339000004066042;Prospect;2023-02-01 14:06:26 +0100 CET
477339000004066053;Prospect;2023-02-01 14:07:01 +0100 CET
477339000004066064;Interaction;2023-02-21 13:22:28 +0100 CET
477339000004066064;Prospect;2023-02-01 14:07:32 +0100 CET
477339000004066075;Prospect;2023-02-01 14:08:02 +0100 CET
477339000004066086;Lost;2023-02-16 15:47:24 +0100 CET
477339000004066086;Prospect;2023-02-01 14:08:33 +0100 CET
477339000004066097;Lost;2023-02-16 16:52:02 +0100 CET
477339000004066097;Prospect;2023-02-01 14:09:02 +0100 CET
477339000004066108;Prospect;2023-02-01 14:09:30 +0100 CET
477339000004066119;Prospect;2023-02-01 14:09:59 +0100 CET
477339000004066130;Prospect;2023-02-01 14:10:39 +0100 CET
477339000004066141;Prospect;2023-02-01 14:12:14 +0100 CET
477339000004066152;Interaction;2023-02-01 14:13:17 +0100 CET
477339000004066163;Lost;2023-02-06 16:54:12 +0100 CET
477339000004066163;Prospect;2023-02-01 14:13:57 +0100 CET
477339000004066174;Prospect;2023-02-01 14:14:35 +0100 CET
477339000004066185;Prospect;2023-02-01 14:15:07 +0100 CET
477339000004066196;Prospect;2023-02-01 14:16:18 +0100 CET
477339000004066207;Lost;2023-05-17 15:54:48 +0200 CEST
477339000004066207;Gamed passed;2023-02-13 09:46:16 +0100 CET
477339000004066207;Interview scheduled;2023-02-06 16:09:35 +0100 CET
477339000004066207;Prospect;2023-02-01 14:16:53 +0100 CET
477339000004066218;Prospect;2023-02-01 14:17:29 +0100 CET
477339000004066229;Prospect;2023-02-01 14:17:58 +0100 CET
477339000004066240;Prospect;2023-02-01 14:18:59 +0100 CET
477339000004066251;Prospect;2023-02-01 14:19:30 +0100 CET
477339000004066262;Prospect;2023-02-01 14:20:14 +0100 CET
477339000004066273;Rejected;2023-02-01 14:21:10 +0100 CET
477339000004066287;Rejected;2023-02-01 14:22:45 +0100 CET
477339000004066301;Prospect;2023-02-01 14:23:33 +0100 CET
477339000004066312;Prospect;2023-02-01 14:24:01 +0100 CET
477339000004066343;Lost;2023-02-07 11:42:17 +0100 CET
477339000004066343;Prospect;2023-02-01 14:27:27 +0100 CET
477339000004066354;Prospect;2023-02-01 14:28:52 +0100 CET
477339000004066365;Rejected;2023-02-01 14:30:21 +0100 CET
477339000004066379;Prospect;2023-02-01 14:31:13 +0100 CET
477339000004066390;Prospect;2023-02-01 14:31:36 +0100 CET
477339000004066401;Prospect;2023-02-01 14:32:13 +0100 CET
477339000004066412;Rejected;2023-02-01 14:33:05 +0100 CET
477339000004066426;Prospect;2023-02-01 14:34:16 +0100 CET
477339000004074001;Prospect;2023-02-01 17:04:05 +0100 CET
477339000004077024;Prospect;2023-02-02 11:17:48 +0100 CET
477339000004079244;Lost;2023-03-09 16:54:22 +0100 CET
477339000004079244;Prospect;2023-02-02 00:04:01 +0100 CET
477339000004082298;Lost;2023-02-23 14:26:11 +0100 CET
477339000004082298;Prospect;2023-02-02 02:04:02 +0100 CET
477339000004100003;Prospect;2023-02-02 08:37:16 +0100 CET
477339000004100003;Potential (obsolete);2023-02-02 08:37:07 +0100 CET
477339000004100020;Prospect;2023-02-02 08:39:03 +0100 CET
477339000004100031;Prospect;2023-02-02 08:39:49 +0100 CET
477339000004100042;Prospect;2023-02-02 08:40:21 +0100 CET
477339000004100053;Prospect;2023-02-02 08:40:49 +0100 CET
477339000004100064;Prospect;2023-02-02 08:41:20 +0100 CET
477339000004100075;Rejected;2023-02-02 08:42:25 +0100 CET
477339000004100089;Prospect;2023-02-02 08:43:34 +0100 CET
477339000004100100;Prospect;2023-02-02 08:44:22 +0100 CET
477339000004100111;Prospect;2023-02-02 08:44:50 +0100 CET
477339000004100122;Prospect;2023-02-02 08:47:33 +0100 CET
477339000004100133;Prospect;2023-02-02 08:47:56 +0100 CET
477339000004100144;Prospect;2023-02-02 08:48:35 +0100 CET
477339000004100155;Prospect;2023-02-02 08:49:00 +0100 CET
477339000004100166;Prospect;2023-02-02 08:49:29 +0100 CET
477339000004100177;Rejected;2023-02-02 08:50:14 +0100 CET
477339000004100191;Prospect;2023-02-02 08:50:57 +0100 CET
477339000004100202;Prospect;2023-02-02 08:51:25 +0100 CET
477339000004100213;Prospect;2023-02-02 08:51:49 +0100 CET
477339000004100224;Prospect;2023-02-02 08:52:15 +0100 CET
477339000004100235;Prospect;2023-02-02 08:52:48 +0100 CET
477339000004100246;Prospect;2023-02-02 08:53:22 +0100 CET
477339000004100257;Prospect;2023-02-02 08:53:50 +0100 CET
477339000004100268;Prospect;2023-02-02 08:54:15 +0100 CET
477339000004100279;Interaction;2023-02-02 08:55:48 +0100 CET
477339000004100301;Prospect;2023-02-02 08:57:17 +0100 CET
477339000004100312;Lost;2023-06-20 15:08:19 +0200 CEST
477339000004100312;Interaction;2023-02-02 08:57:45 +0100 CET
477339000004100323;Prospect;2023-02-02 08:58:12 +0100 CET
477339000004100334;Prospect;2023-02-02 08:58:37 +0100 CET
477339000004100345;Prospect;2023-02-02 08:59:06 +0100 CET
477339000004100356;Prospect;2023-02-02 08:59:29 +0100 CET
477339000004100367;Prospect;2023-02-02 09:00:01 +0100 CET
477339000004100378;Rejected;2023-02-02 09:01:19 +0100 CET
477339000004100392;Prospect;2023-02-02 09:01:51 +0100 CET
477339000004100403;Prospect;2023-02-02 09:02:19 +0100 CET
477339000004100417;Rejected;2023-02-02 09:38:37 +0100 CET
477339000004100431;Prospect;2023-02-02 09:39:11 +0100 CET
477339000004100442;Prospect;2023-02-02 09:39:37 +0100 CET
477339000004100453;Prospect;2023-02-02 09:40:04 +0100 CET
477339000004100464;Prospect;2023-02-02 09:40:32 +0100 CET
477339000004100475;Prospect;2023-02-02 09:40:54 +0100 CET
477339000004100489;Prospect;2023-02-02 09:41:59 +0100 CET
477339000004100500;Prospect;2023-02-02 09:42:28 +0100 CET
477339000004100511;Prospect;2023-02-02 09:42:53 +0100 CET
477339000004100522;Prospect;2023-02-02 09:43:12 +0100 CET
477339000004100533;Prospect;2023-02-02 09:43:35 +0100 CET
477339000004100544;Prospect;2023-02-02 09:44:03 +0100 CET
477339000004100555;Prospect;2023-02-02 09:44:26 +0100 CET
477339000004100566;Prospect;2023-02-02 09:44:50 +0100 CET
477339000004100577;Prospect;2023-02-02 09:45:16 +0100 CET
477339000004100588;Prospect;2023-02-02 09:45:39 +0100 CET
477339000004100599;Lost;2023-02-02 09:47:21 +0100 CET
477339000004100613;Prospect;2023-02-02 09:48:29 +0100 CET
477339000004100624;Prospect;2023-02-02 09:49:00 +0100 CET
477339000004100638;Rejected;2023-02-02 09:49:53 +0100 CET
477339000004100649;Prospect;2023-02-02 09:50:19 +0100 CET
477339000004100660;Prospect;2023-02-02 09:50:40 +0100 CET
477339000004100671;Prospect;2023-02-02 09:51:01 +0100 CET
477339000004100682;Lost;2023-02-16 11:25:23 +0100 CET
477339000004100682;Interaction;2023-02-02 09:51:34 +0100 CET
477339000004100693;Prospect;2023-02-02 09:52:04 +0100 CET
477339000004100704;Prospect;2023-02-02 09:52:26 +0100 CET
477339000004100715;Prospect;2023-02-02 09:52:50 +0100 CET
477339000004100737;Interaction;2023-02-08 13:38:29 +0100 CET
477339000004100737;Prospect;2023-02-02 09:53:55 +0100 CET
477339000004100748;Prospect;2023-02-02 09:54:16 +0100 CET
477339000004100772;Prospect;2023-02-02 09:55:17 +0100 CET
477339000004100783;Rejected;2023-02-02 09:56:55 +0100 CET
477339000004100797;Lost;2023-02-08 12:12:48 +0100 CET
477339000004100797;Prospect;2023-02-02 09:58:07 +0100 CET
477339000004100808;Lost;2023-02-02 09:58:48 +0100 CET
477339000004100822;Rejected;2023-02-02 09:59:32 +0100 CET
477339000004100836;Prospect;2023-02-02 10:00:20 +0100 CET
477339000004100847;Prospect;2023-02-02 10:00:41 +0100 CET
477339000004100858;Prospect;2023-02-02 10:01:01 +0100 CET
477339000004100869;Prospect;2023-02-02 10:01:27 +0100 CET
477339000004100880;Rejected;2023-02-02 10:01:53 +0100 CET
477339000004100894;Prospect;2023-02-02 10:02:46 +0100 CET
477339000004100908;Rejected;2023-02-02 10:03:45 +0100 CET
477339000004100922;Rejected;2023-02-02 10:04:50 +0100 CET
477339000004100933;Prospect;2023-02-02 10:06:21 +0100 CET
477339000004100944;Rejected;2023-02-02 10:06:45 +0100 CET
477339000004100958;Prospect;2023-02-02 10:07:12 +0100 CET
477339000004100969;Prospect;2023-02-02 10:07:34 +0100 CET
477339000004100991;Prospect;2023-02-02 10:08:21 +0100 CET
477339000004104002;Prospect;2023-02-02 10:08:42 +0100 CET
477339000004104013;Prospect;2023-02-02 10:09:40 +0100 CET
477339000004104195;Lost;2023-02-09 16:04:15 +0100 CET
477339000004104195;Meeting;2023-02-02 15:46:24 +0100 CET
477339000004104211;Meeting;2023-02-24 09:44:22 +0100 CET
477339000004104211;Meeting scheduled;2023-02-02 15:54:09 +0100 CET
477339000004104235;Interaction;2023-02-02 15:57:00 +0100 CET
477339000004111206;Prospect;2023-02-02 23:04:04 +0100 CET
477339000004116208;Lost;2023-02-15 14:04:01 +0100 CET
477339000004116208;Prospect;2023-02-03 13:04:02 +0100 CET
477339000004117004;Prospect;2023-02-02 22:08:15 +0100 CET
477339000004123083;Lost;2023-06-06 16:03:52 +0200 CEST
477339000004123083;Interaction;2023-03-17 14:14:30 +0100 CET
477339000004123083;Prospect;2023-02-02 19:04:01 +0100 CET
477339000004128093;Prospect;2023-02-03 15:11:35 +0100 CET
477339000004134083;Gamed passed;2023-03-17 14:25:40 +0100 CET
477339000004134083;Interaction;2023-02-15 09:47:38 +0100 CET
477339000004134083;Prospect;2023-02-03 14:38:07 +0100 CET
477339000004135002;Prospect;2023-02-02 18:46:45 +0100 CET
477339000004152107;Prospect;2023-02-03 15:04:03 +0100 CET
477339000004158116;Prospect;2023-02-04 00:04:07 +0100 CET
477339000004160409;Prospect;2023-02-04 23:04:04 +0100 CET
477339000004161413;Prospect;2023-02-05 06:04:05 +0100 CET
477339000004163423;Lost;2023-04-03 16:44:23 +0200 CEST
477339000004163423;Contract sent;2023-02-10 08:22:02 +0100 CET
477339000004163423;Answer yes sent;2023-02-08 17:51:34 +0100 CET
477339000004163423;Interview done;2023-02-08 17:38:41 +0100 CET
477339000004163423;Interview scheduled;2023-02-06 11:14:24 +0100 CET
477339000004163423;Prospect;2023-02-04 19:04:03 +0100 CET
477339000004165404;Prospect;2023-02-04 23:04:03 +0100 CET
477339000004165648;Prospect;2023-02-05 15:04:02 +0100 CET
477339000004166045;Prospect;2023-02-05 12:06:32 +0100 CET
477339000004166060;Prospect;2023-02-05 12:50:26 +0100 CET
477339000004166075;Rejected;2023-02-24 15:13:38 +0100 CET
477339000004166075;Interview scheduled;2023-02-14 15:55:33 +0100 CET
477339000004166075;Prospect;2023-02-05 12:58:42 +0100 CET
477339000004170059;Prospect;2023-02-05 20:14:57 +0100 CET
477339000004171019;Prospect;2023-02-04 15:59:15 +0100 CET
477339000004172009;Prospect;2023-02-04 10:43:00 +0100 CET
477339000004173002;Prospect;2023-02-03 22:03:46 +0100 CET
477339000004173050;Prospect;2023-02-07 10:27:29 +0100 CET
477339000004176032;Prospect;2023-02-04 16:07:51 +0100 CET
477339000004177006;Prospect;2023-02-04 12:22:10 +0100 CET
477339000004177065;Prospect;2023-02-05 14:40:52 +0100 CET
477339000004179007;Prospect;2023-02-04 15:19:55 +0100 CET
477339000004180013;Prospect;2023-02-04 11:24:15 +0100 CET
477339000004180083;Prospect;2023-02-05 17:46:29 +0100 CET
477339000004181028;Lost;2023-02-14 15:40:00 +0100 CET
477339000004181028;Prospect;2023-02-05 19:30:13 +0100 CET
477339000004181091;Prospect;2023-02-07 13:16:00 +0100 CET
477339000004182005;Prospect;2023-02-04 13:20:49 +0100 CET
477339000004182036;Interaction;2023-03-21 14:00:54 +0100 CET
477339000004182036;Meeting scheduled;2023-02-08 13:45:21 +0100 CET
477339000004182036;Prospect;2023-02-04 16:38:40 +0100 CET
477339000004182138;Prospect;2023-02-06 22:16:00 +0100 CET
477339000004184005;Prospect;2023-02-04 11:22:12 +0100 CET
477339000004185070;Interaction;2023-02-08 11:38:33 +0100 CET
477339000004185070;Prospect;2023-02-05 16:10:26 +0100 CET
477339000004191942;Registered (paid);2023-05-12 13:49:20 +0200 CEST
477339000004191942;Contract received;2023-04-13 09:49:25 +0200 CEST
477339000004191942;Contract sent;2023-03-27 10:50:35 +0200 CEST
477339000004191942;Answer yes sent;2023-03-21 09:18:40 +0100 CET
477339000004191942;Interview done;2023-03-20 14:49:17 +0100 CET
477339000004191942;Interview scheduled;2023-03-15 15:50:31 +0100 CET
477339000004191942;Meeting;2023-03-11 18:02:35 +0100 CET
477339000004191942;Meeting scheduled;2023-02-07 09:23:17 +0100 CET
477339000004192932;Lost;2023-05-11 17:38:29 +0200 CEST
477339000004192932;Interaction;2023-02-15 10:16:32 +0100 CET
477339000004192932;Prospect;2023-02-06 22:04:04 +0100 CET
477339000004193337;Lost;2023-02-06 10:21:52 +0100 CET
477339000004207188;Lost;2023-03-15 14:33:48 +0100 CET
477339000004207188;Prospect;2023-02-07 10:20:03 +0100 CET
477339000004207302;Lost;2023-03-08 11:30:00 +0100 CET
477339000004207302;Prospect;2023-02-07 10:38:43 +0100 CET
477339000004207558;Lost;2023-05-11 17:41:19 +0200 CEST
477339000004207558;Interaction;2023-03-09 16:00:11 +0100 CET
477339000004207558;Prospect;2023-02-07 10:54:58 +0100 CET
477339000004207725;Interaction;2023-03-14 15:19:35 +0100 CET
477339000004207725;Prospect;2023-02-07 12:12:58 +0100 CET
477339000004207747;Lost;2023-03-14 14:52:46 +0100 CET
477339000004207747;Prospect;2023-02-07 12:13:45 +0100 CET
477339000004207791;Lost;2023-03-16 15:35:53 +0100 CET
477339000004207791;Prospect;2023-02-07 12:15:34 +0100 CET
477339000004207846;Lost;2023-06-08 15:48:32 +0200 CEST
477339000004207846;Interaction;2023-03-06 12:19:49 +0100 CET
477339000004207846;Prospect;2023-02-07 12:17:30 +0100 CET
477339000004207879;Interaction;2023-03-06 12:20:02 +0100 CET
477339000004207879;Prospect;2023-02-07 12:18:41 +0100 CET
477339000004207982;Interaction;2023-03-06 11:59:23 +0100 CET
477339000004207982;Prospect;2023-02-07 13:19:35 +0100 CET
477339000004207993;Interaction;2023-03-06 11:29:17 +0100 CET
477339000004207993;Prospect;2023-02-07 13:19:53 +0100 CET
477339000004216039;Interaction;2023-03-16 17:29:16 +0100 CET
477339000004216039;Prospect;2023-02-07 13:21:17 +0100 CET
477339000004216230;Lost;2023-03-14 14:03:30 +0100 CET
477339000004216230;Prospect;2023-02-07 13:29:33 +0100 CET
477339000004216373;Interaction;2023-03-07 15:44:44 +0100 CET
477339000004216373;Prospect;2023-02-07 13:35:06 +0100 CET
477339000004256823;Prospect;2023-02-08 14:04:03 +0100 CET
477339000004262333;Prospect;2023-02-08 02:04:13 +0100 CET
477339000004264664;Lost;2023-03-15 18:51:53 +0100 CET
477339000004264664;Prospect;2023-02-08 11:04:14 +0100 CET
477339000004265195;Prospect;2023-02-07 23:04:04 +0100 CET
477339000004275009;Lost;2023-02-27 15:46:25 +0100 CET
477339000004275009;Prospect;2023-02-08 14:00:14 +0100 CET
477339000004292005;Prospect;2023-02-08 22:21:57 +0100 CET
477339000004292104;Prospect;2023-02-10 19:34:10 +0100 CET
477339000004292163;Prospect;2023-02-12 12:32:51 +0100 CET
477339000004298054;Lost;2023-02-28 10:03:51 +0100 CET
477339000004298054;Prospect;2023-02-10 21:12:55 +0100 CET
477339000004301693;Lost;2023-03-24 15:10:26 +0100 CET
477339000004301693;Interaction;2023-03-13 08:58:59 +0100 CET
477339000004301693;Meeting scheduled;2023-02-22 16:01:30 +0100 CET
477339000004301693;Interaction;2023-02-16 17:29:03 +0100 CET
477339000004301693;Prospect;2023-02-09 05:04:04 +0100 CET
477339000004301776;Prospect;2023-02-09 08:04:03 +0100 CET
477339000004312020;Prospect;2023-02-08 22:28:06 +0100 CET
477339000004314098;Prospect;2023-02-11 19:33:17 +0100 CET
477339000004315071;Prospect;2023-02-10 19:08:55 +0100 CET
477339000004316024;Prospect;2023-02-09 11:07:25 +0100 CET
477339000004323009;Lost;2023-02-14 16:24:33 +0100 CET
477339000004323009;Prospect;2023-02-08 22:21:27 +0100 CET
477339000004323038;Prospect;2023-02-09 23:27:10 +0100 CET
477339000004323091;Prospect;2023-02-12 03:11:33 +0100 CET
477339000004323114;Prospect;2023-02-12 10:51:08 +0100 CET
477339000004324105;Lost;2023-03-15 15:10:18 +0100 CET
477339000004324105;Prospect;2023-02-12 11:23:03 +0100 CET
477339000004326031;Lost;2023-02-20 15:17:17 +0100 CET
477339000004326031;Prospect;2023-02-09 18:08:31 +0100 CET
477339000004326082;Prospect;2023-02-11 03:01:27 +0100 CET
477339000004335305;Prospect;2023-02-09 23:04:06 +0100 CET
477339000004336089;Rejected;2023-02-20 14:24:32 +0100 CET
477339000004336089;Interview scheduled;2023-02-10 10:32:58 +0100 CET
477339000004336089;Meeting scheduled;2023-02-09 17:30:29 +0100 CET
477339000004336089;Prospect;2023-02-09 17:04:05 +0100 CET
477339000004337234;Prospect;2023-02-09 21:04:04 +0100 CET
477339000004337293;Lost;2023-02-15 10:36:17 +0100 CET
477339000004337293;Prospect;2023-02-09 22:04:04 +0100 CET
477339000004360880;Lost;2023-03-15 14:51:20 +0100 CET
477339000004360880;Prospect;2023-02-12 12:04:04 +0100 CET
477339000004362987;Lost;2023-06-07 09:39:33 +0200 CEST
477339000004362987;Contract sent;2023-03-06 10:45:56 +0100 CET
477339000004362987;Answer yes sent;2023-02-27 14:46:17 +0100 CET
477339000004362987;Interview done;2023-02-24 17:13:14 +0100 CET
477339000004362987;Interview scheduled;2023-02-20 17:52:04 +0100 CET
477339000004362987;Meeting scheduled;2023-02-18 14:16:04 +0100 CET
477339000004362987;Prospect;2023-02-12 15:04:03 +0100 CET
477339000004364274;Lost;2023-07-05 12:37:35 +0200 CEST
477339000004364274;Interaction;2023-03-02 14:38:27 +0100 CET
477339000004364274;Prospect;2023-02-11 20:04:05 +0100 CET
477339000004371071;Prospect;2023-02-12 13:04:05 +0100 CET
477339000004372169;Rejected;2023-03-15 18:07:23 +0100 CET
477339000004372169;Prospect;2023-02-12 17:04:04 +0100 CET
477339000004378162;Prospect;2023-02-12 20:04:03 +0100 CET
477339000004382088;Interaction;2023-02-13 16:21:08 +0100 CET
477339000004397229;Prospect;2023-02-13 23:04:08 +0100 CET
477339000004397245;Lost;2023-02-27 14:54:26 +0100 CET
477339000004397245;Prospect;2023-02-13 23:04:11 +0100 CET
477339000004428241;Prospect;2023-02-14 16:04:04 +0100 CET
477339000004431226;Rejected;2023-04-25 16:08:19 +0200 CEST
477339000004431226;Interview done;2023-04-25 12:00:31 +0200 CEST
477339000004431226;Interview scheduled;2023-03-21 08:37:32 +0100 CET
477339000004431226;Gamed passed;2023-03-11 17:54:52 +0100 CET
477339000004431226;Meeting scheduled;2023-02-16 19:04:37 +0100 CET
477339000004431226;Prospect;2023-02-14 16:04:05 +0100 CET
477339000004463073;Prospect;2023-02-14 19:04:04 +0100 CET
477339000004472014;Prospect;2023-02-14 18:36:36 +0100 CET
477339000004491639;Prospect;2023-02-15 20:04:04 +0100 CET
477339000004495540;Prospect;2023-02-15 20:04:05 +0100 CET
477339000004496406;Prospect;2023-02-15 17:04:12 +0100 CET
477339000004498546;Prospect;2023-02-15 18:04:07 +0100 CET
477339000004504028;Prospect;2023-02-16 00:21:23 +0100 CET
477339000004516050;Rejected;2023-02-22 14:17:33 +0100 CET
477339000004516050;Prospect;2023-02-15 17:12:10 +0100 CET
477339000004519044;Lost;2023-03-06 14:43:53 +0100 CET
477339000004519044;Prospect;2023-02-16 21:32:31 +0100 CET
477339000004527536;Lost;2023-03-09 16:45:45 +0100 CET
477339000004527536;Prospect;2023-02-16 18:04:04 +0100 CET
477339000004535031;Prospect;2023-02-16 13:51:01 +0100 CET
477339000004535066;Interaction;2023-02-23 14:41:22 +0100 CET
477339000004535066;Prospect;2023-02-16 14:00:05 +0100 CET
477339000004535103;Prospect;2023-02-16 14:02:15 +0100 CET
477339000004535127;Prospect;2023-02-16 14:07:02 +0100 CET
477339000004535162;Prospect;2023-02-16 14:17:17 +0100 CET
477339000004535173;Prospect;2023-02-16 14:17:46 +0100 CET
477339000004535186;Prospect;2023-02-16 14:29:23 +0100 CET
477339000004535197;Prospect;2023-02-16 14:30:08 +0100 CET
477339000004535208;Prospect;2023-02-16 14:30:30 +0100 CET
477339000004535219;Lost;2023-03-15 18:19:32 +0100 CET
477339000004535219;Prospect;2023-02-16 14:31:00 +0100 CET
477339000004535230;Prospect;2023-02-16 14:31:57 +0100 CET
477339000004535243;Prospect;2023-02-16 14:34:25 +0100 CET
477339000004543262;Prospect;2023-02-17 12:04:15 +0100 CET
477339000004554003;Prospect;2023-02-17 09:56:04 +0100 CET
477339000004557812;Prospect;2023-02-18 06:04:20 +0100 CET
477339000004572052;Registered (paid);2023-06-07 17:08:45 +0200 CEST
477339000004572052;Contract sent;2023-05-12 08:49:32 +0200 CEST
477339000004572052;Answer yes sent;2023-04-26 12:16:09 +0200 CEST
477339000004572052;Interview done;2023-04-24 16:38:30 +0200 CEST
477339000004572052;Interview scheduled;2023-03-20 15:44:21 +0100 CET
477339000004572052;Meeting;2023-03-11 17:46:27 +0100 CET
477339000004572052;Meeting scheduled;2023-02-19 19:11:06 +0100 CET
477339000004572052;Prospect;2023-02-19 19:02:51 +0100 CET
477339000004579236;Prospect;2023-02-18 17:04:04 +0100 CET
477339000004583137;Prospect;2023-02-18 17:04:05 +0100 CET
477339000004583389;Prospect;2023-02-18 23:04:05 +0100 CET
477339000004594373;Lost;2023-03-01 13:52:26 +0100 CET
477339000004594373;Prospect;2023-02-20 01:04:05 +0100 CET
477339000004605039;Prospect;2023-02-20 16:04:06 +0100 CET
477339000004635307;Lost;2023-03-01 14:49:51 +0100 CET
477339000004635307;Prospect;2023-02-21 02:04:15 +0100 CET
477339000004642694;Prospect;2023-02-21 13:04:15 +0100 CET
477339000004643701;Prospect;2023-02-21 16:04:06 +0100 CET
477339000004655175;Lost;2023-03-09 15:57:56 +0100 CET
477339000004655175;Prospect;2023-02-23 13:23:46 +0100 CET
477339000004655199;Prospect;2023-02-24 13:45:37 +0100 CET
477339000004664167;Prospect;2023-02-24 03:24:32 +0100 CET