-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackupSms.xml
executable file
·1507 lines (1507 loc) · 474 KB
/
backupSms.xml
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
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
<?xml-stylesheet type="text/xsl" href="sms.xsl"?>
<smses count="1503">
<sms protocol="0" address="+4915779041426" date="1358180834128" type="1" subject="null" body="Senem und ich schaffen den frühen Bus nicht, deswegen kommen wir 3 bis 5 Minuten später :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358180832000" readable_date="Jan 14, 2013 5:27:14 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358191445096" type="1" subject="null" body="Warum warst du nicht da ? :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358191444000" readable_date="Jan 14, 2013 8:24:05 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358196446314" type="2" subject="null" body="Ich war noch in der schule " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358228699064" readable_date="Jan 14, 2013 9:47:26 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358228720110" type="1" subject="null" body="Oh :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358228718000" readable_date="Jan 15, 2013 6:45:20 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358268584067" type="1" subject="null" body="Kommst du heute? :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358268579000" readable_date="Jan 15, 2013 5:49:44 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358271194617" type="1" subject="null" body="Bist du jetzt in Gladbeck? :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358271191000" readable_date="Jan 15, 2013 6:33:14 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358279005338" type="2" subject="null" body="Nein, hab mich beim Sport verletzt " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358279015081" readable_date="Jan 15, 2013 8:43:25 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358279927054" type="1" subject="null" body="Was hast du gemacht? :O" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358279925000" readable_date="Jan 15, 2013 8:58:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358280138210" type="2" subject="null" body="Wollte Korb leger machen, da muss man an so Nr Tür vorbei die dann aufgemacht wurde von so einem Deppen ich Volk der gegen umgefallen und voll auf den rücken " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358280153036" readable_date="Jan 15, 2013 9:02:18 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358280201080" type="1" subject="null" body="Und jetzt ist dein Rücken kaputt? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358280198000" readable_date="Jan 15, 2013 9:03:21 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358280457646" type="2" subject="null" body="Hoffentlich nicht aber der hat halt mega weh getan und der Hausarzt von meiner oma war da der hat den eben nen Blick drauf geworfen und hat gesagt das ich heute keinen Sport machen soll und wenn der morgen noch weh tut soll ich nochmal für ne richtige Untersuchung zum Arzt gehen, aber der tut nicht mehr wirklich weh also komm ich Donnerstag auf jedenfall" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358280472511" readable_date="Jan 15, 2013 9:07:37 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358280650070" type="1" subject="null" body="Oh gar nicht gut. Ich kann Donnerstag aber nicht kommen :( " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358280644000" readable_date="Jan 15, 2013 9:10:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358280671101" type="2" subject="null" body="Warum" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358280680036" readable_date="Jan 15, 2013 9:11:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358280701063" type="1" subject="null" body="Chor fahrt " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358280695000" readable_date="Jan 15, 2013 9:11:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358280754285" type="2" subject="null" body="Du warst nicht einmal bein so einem treffen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358280763037" readable_date="Jan 15, 2013 9:12:34 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358281563839" type="1" subject="null" body="Ja, der meinte ja auch wir sollen oder können da mit fahren und danach dann zu den treffen :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358281560000" readable_date="Jan 15, 2013 9:26:03 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358281606901" type="2" subject="null" body="Du gehst da nach der fahrt eh nicht mehr hin " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358281619308" readable_date="Jan 15, 2013 9:26:46 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358281919069" type="1" subject="null" body="Warum denn nicht? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358281912000" readable_date="Jan 15, 2013 9:31:59 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358282089138" type="2" subject="null" body="Du willst wirklich in einem Chor singen in den wahrscheinlich 3/4 nur wegen dieser fahrt sind und kaum singen können???? Und viel endscheidender du willst in einer Gruppe singen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358282098451" readable_date="Jan 15, 2013 9:34:49 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358282145367" type="2" subject="null" body="Ich geh ins Bett, gute nacht" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358282162754" readable_date="Jan 15, 2013 9:35:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358285006077" type="1" subject="null" body="Ja so schlimm ist das jetzt auch nicht. Gute Nacht :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358285002000" readable_date="Jan 15, 2013 10:23:26 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358346653053" type="1" subject="null" body="Ist eigentlich irgendwas?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358346650000" readable_date="Jan 16, 2013 3:30:53 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358362198971" type="2" subject="null" body="Nö, warum " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358362209053" readable_date="Jan 16, 2013 7:49:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358367513057" type="1" subject="null" body="Ja du kommst so rüber?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358367509000" readable_date="Jan 16, 2013 9:18:33 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358367992801" type="2" subject="null" body="Oh , TU ich das??? Ist auf jedenfall nicht absichtlich. Wie lange den schon ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358368003048" readable_date="Jan 16, 2013 9:26:32 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358368082162" type="2" subject="null" body="Und warum überhaupt?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358368091089" readable_date="Jan 16, 2013 9:28:02 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358407484092" type="1" subject="null" body="Mein Gott, was hab ich dir getan?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358407479000" readable_date="Jan 17, 2013 8:24:44 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358427157358" type="2" subject="null" body="Ich hab wirklich keine Ahnung wo von du sprichst, aber wenn es so wirkte als ob irgendwas sei dann sorry aber ich glaub nicht, dass du mir was getan hast." toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358427170057" readable_date="Jan 17, 2013 1:52:37 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358429926194" type="1" subject="null" body="Gut dann ist gut " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358429916000" readable_date="Jan 17, 2013 2:38:46 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358451694015" type="2" subject="null" body="Eigentlich wollte/sollte ich dir das ja persönlich sagen, aber du warst ja leider heute nicht da , daher wirst du mit einer SMS vorlieb nehmen müssen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358451703958" readable_date="Jan 17, 2013 8:41:34 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358451771760" type="2" subject="null" body="Also ich sollte eigentlich nur sagen , dass ich zum VfL wevhsel, weil ich gerne etwas mehr trainieren würde um zu sehen wie gut ich wirklich werden kann " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358451783221" readable_date="Jan 17, 2013 8:42:51 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358456448943" type="1" subject="null" body="Du wusstest das ich heute nicht komme" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358456443000" readable_date="Jan 17, 2013 10:00:48 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358456856600" type="2" subject="null" body="Willst du nie etwa vorwerfen ich hätte das extra si geplant dass ich dir das nicht persönlich sagen kann ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358456867860" readable_date="Jan 17, 2013 10:07:36 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358456956115" type="1" subject="null" body="Nein " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358456953000" readable_date="Jan 17, 2013 10:09:16 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358457020872" type="2" subject="null" body="Und warum bist du dann so sauer ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358457036882" readable_date="Jan 17, 2013 10:10:20 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358457154084" type="1" subject="null" body="Warst du da Montag auch schon trainieren?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358457151000" readable_date="Jan 17, 2013 10:12:34 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358457289690" type="2" subject="null" body="Ja genauso wie Dienstag und Mittwoch, ich hab euch nur nix gesagt weil ich mir sicher sein wollte bevor ich was sag " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358457300106" readable_date="Jan 17, 2013 10:14:49 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358457383090" type="1" subject="null" body="Lügner" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358457379000" readable_date="Jan 17, 2013 10:16:23 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358457581521" type="2" subject="null" body="Deshalb bist du sauer, weil ich ein bisschen gelogen hab ??? Ich wollte die endscheidung einfach ganz allein für mich treffen und nicht euch alle daran beteiligen, ist doch auch verständlich oder ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358457593181" readable_date="Jan 17, 2013 10:19:41 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358457630498" type="1" subject="null" body="Tut mir leid" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358457627000" readable_date="Jan 17, 2013 10:20:30 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358457715994" type="2" subject="null" body="OK, zu gegeben ganz richtig hab ich es auch nicht gemacht" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358457728241" readable_date="Jan 17, 2013 10:21:55 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358457771172" type="1" subject="null" body="Wie lang bleibst du in der Schulzeit wach?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358457767000" readable_date="Jan 17, 2013 10:22:51 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358457834709" type="2" subject="null" body="Kommt auf die Fächer am nächsten Tag an. Heute so bis 12 warum ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358457845980" readable_date="Jan 17, 2013 10:23:54 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358458076030" type="1" subject="null" body="Können wir gleich noch Schreiben?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358458071000" readable_date="Jan 17, 2013 10:27:56 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358458188353" type="2" subject="null" body="Ja sicher " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358458199809" readable_date="Jan 17, 2013 10:29:48 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358458264162" type="1" subject="null" body="Weil..es ist hier gerade ein bisschen schwer zu Schreiben" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358458260000" readable_date="Jan 17, 2013 10:31:04 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358458315925" type="2" subject="null" body="OK " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358458329131" readable_date="Jan 17, 2013 10:31:55 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358458566098" type="1" subject="null" body="Wirklich? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358458562000" readable_date="Jan 17, 2013 10:36:06 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358458792957" type="2" subject="null" body="Warum nicht ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358458801344" readable_date="Jan 17, 2013 10:39:52 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358458817575" type="2" subject="null" body="Ich muss eh noch so ein Buch für morgen lesen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358458829785" readable_date="Jan 17, 2013 10:40:17 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358458889068" type="1" subject="null" body="Bleib nur nicht extra wach, ja? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358458886000" readable_date="Jan 17, 2013 10:41:29 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358458923244" type="2" subject="null" body="Mach ich schon nicht " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358458934147" readable_date="Jan 17, 2013 10:42:03 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358459244066" type="1" subject="null" body="Ok" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358459241000" readable_date="Jan 17, 2013 10:47:24 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358461430148" type="1" subject="null" body="Ich muss kurz überlegen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358461426000" readable_date="Jan 17, 2013 11:23:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358461484521" type="2" subject="null" body="Lass dir Zeit " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358461493109" readable_date="Jan 17, 2013 11:24:44 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358461943157" type="1" subject="null" body="Es ist komisch. Und traurig!!!!!!! Das ist das Problem. Und ich kann nicht Schreiben was ich sagen will..." toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358461939000" readable_date="Jan 17, 2013 11:32:23 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358462125656" type="2" subject="null" body=" Ich kann dir wahrscheinlich nicht irgendwie helfen zu schreiben was du sagen willst oder??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358462137110" readable_date="Jan 17, 2013 11:35:25 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358462139415" type="1" subject="null" body="Warum machst du das? Ich würde am liebsten jetzt einfach heulen! Aber das geht nicht weil ich mich dann blamiere vor allen anderen " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358462136000" readable_date="Jan 17, 2013 11:35:39 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358462153468" type="1" subject="null" body="Nein" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358462149000" readable_date="Jan 17, 2013 11:35:53 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358462361323" type="2" subject="null" body="Weil ich einfach glaube , dass ich mehr schaffen kann und ich dafür einfach härter trainieren muss und ich würde auch lieber mit euch weiter trainieren aber dann kann ich ja nicht sehen ob ich auch mehr schaffen würde. Es tut mir ehrlich leid " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358462372704" readable_date="Jan 17, 2013 11:39:21 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358462398964" type="1" subject="null" body="Ja klar" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358462395000" readable_date="Jan 17, 2013 11:39:58 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358462452986" type="2" subject="null" body="Das hört sich ironisch an " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358462463012" readable_date="Jan 17, 2013 11:40:52 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358462499151" type="1" subject="null" body=":* " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358462495000" readable_date="Jan 17, 2013 11:41:39 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358462536054" type="1" subject="null" body="Entschuldigung, vergiss es " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358462532000" readable_date="Jan 17, 2013 11:42:16 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358462611962" type="2" subject="null" body="Warum soll auch das vergessen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358462621254" readable_date="Jan 17, 2013 11:43:31 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358462728198" type="1" subject="null" body="Ich hatte nicht überlegt" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358462725000" readable_date="Jan 17, 2013 11:45:28 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358463068033" type="2" subject="null" body="Gut, aber es tut mir wirklich Leid, ich meine ich musste echt über legen, einfach weil ihr ja schon Freunde seid die ich nur beim schwimmen gesehen hab, aber in letzter zeit sind es halt immer weniger gewesen die wirklich da waren, im Prinzip nur du, Daniel ist durch die uni eingespannt und wo marvin ist weis ich nicht , der hat auch bisher nicht auf die SMS geantwortet" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358463082634" readable_date="Jan 17, 2013 11:51:08 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358463167827" type="1" subject="null" body="Es war schön" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358463164000" readable_date="Jan 17, 2013 11:52:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358463184343" type="2" subject="null" body="Was " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358463194202" readable_date="Jan 17, 2013 11:53:04 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358463283101" type="1" subject="null" body="Mit dir" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358463281000" readable_date="Jan 17, 2013 11:54:43 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358463592297" type="2" subject="null" body="Ich werte das mal als Kompliment :-D und ich muss dich noch was fragen und zwar wäre es nett wenn du das nicht weiter erzählen würdest, aber so rein theoretisch musste ich doch eigentlich bei einem Mädchen wie dir ( nicht du im speziellen, der Zug ist ja schon lange abgefahren ) recht gute Chancen haben oder ??" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358463606659" readable_date="Jan 17, 2013 11:59:52 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358463806096" type="1" subject="null" body="Warum bist du der Meinung? Also das ist nicht negativ gemeint sondern einfach nur eine Frage" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358463802000" readable_date="Jan 18, 2013 12:03:26 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358463845133" type="1" subject="null" body="Und der zug ist schon lange abgefahren?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358463842000" readable_date="Jan 18, 2013 12:04:05 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358463938097" type="2" subject="null" body="Warum auch der Meinung bin das ich bei jemandem wie dir gute Chancen habe oder das der Zug schon abgefahren ist ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358463948635" readable_date="Jan 18, 2013 12:05:38 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358463967176" type="1" subject="null" body="Beides" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358463964000" readable_date="Jan 18, 2013 12:06:07 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358464067435" type="2" subject="null" body="Erstens weil ich mich nicht so scheiße finde. Und zweitens weil uns jetzt schon verdammt lange kennen und da den irgendwas mal hätte sein müssen" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358464077588" readable_date="Jan 18, 2013 12:07:47 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358464197051" type="1" subject="null" body="Spätestens jetzt ist es eh zu spät. Wir werden uns nie mehr sehen. Wir werden kein Wort mehr reden und dann war es das." toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358464192000" readable_date="Jan 18, 2013 12:09:57 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358464244109" type="1" subject="null" body="Du findest bei deinem vfl neue Freunde. Ich hab einen verloren!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358464240000" readable_date="Jan 18, 2013 12:10:44 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358464384852" type="2" subject="null" body="Also erstmal hatte ich eigentlich erwartet dass man sich immer noch mal sieht und zweitens hatte ich vor Samstag zu kommen und ich finde deine Einstellung sehr pessimistisch mit Rebecca bist du doch auch mich befreundet" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358464396492" readable_date="Jan 18, 2013 12:13:04 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358464589933" type="1" subject="null" body="In der schule reden wir nie. Und mit deiner Schwester ist das anders. Sie ist ein mädchen und meine Freundin. Sehr gute Freundin. Wir haben schon davor einiges zusammen gemacht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358464579000" readable_date="Jan 18, 2013 12:16:29 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358464616669" type="1" subject="null" body="Samstag hast du auch oft Wettkämpfe" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358464612000" readable_date="Jan 18, 2013 12:16:56 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358464790817" type="2" subject="null" body="Meinetwegen können wir in der Schule so viel reden wie du willst und so viele WK sind das gar nicht " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358464801384" readable_date="Jan 18, 2013 12:19:50 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358464922290" type="2" subject="null" body="Und um die Beantwortung der frage hast du dich auch gedruc" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358464931512" readable_date="Jan 18, 2013 12:22:02 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358464932326" type="2" subject="null" body="Kt" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358464941202" readable_date="Jan 18, 2013 12:22:12 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358464995187" type="1" subject="null" body="Entschuldigung, ich wollte deine frage noch beantworten. Du hast gute Chancen bei netten gut aussehenden intelligenten mädchen. ( damit beschreibe ich nicht mich ), aber deine Laune ist manchmal so wie du willst und du kannst ein bisschen arrogant sein" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358464985000" readable_date="Jan 18, 2013 12:23:15 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358465059529" type="1" subject="null" body="Das ist nicht böse gemeint " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358465057000" readable_date="Jan 18, 2013 12:24:19 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358465212986" type="1" subject="null" body="Und ich hab angst vor irgendwelchen Beziehungen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358465210000" readable_date="Jan 18, 2013 12:26:52 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358465287795" type="2" subject="null" body="OK danke, ja ich weis ich bin manchmal wankelmütig und auch vielleicht ein bisschen arrogant, aber das hilft mir halt mein bestes zu geben" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358465299149" readable_date="Jan 18, 2013 12:28:07 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358465321052" type="2" subject="null" body="Ich sagte do h bereits dass das vorbei ist " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358465330308" readable_date="Jan 18, 2013 12:28:41 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358465349054" type="1" subject="null" body="Kein Problem :* " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358465347000" readable_date="Jan 18, 2013 12:29:09 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358465421394" type="2" subject="null" body="Jo also ich leg mich dann mal hin, gute Nacht :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358465432361" readable_date="Jan 18, 2013 12:30:21 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358465561131" type="1" subject="null" body="Tut mir leid, dass ich dich aufgehalten hab. Ich weiß nicht was ich Scheiben sollte, was ich sagen will und was ich überhaupt Denke und fühle!!!!!! Schlaf du gut " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358465555000" readable_date="Jan 18, 2013 12:32:41 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358466004204" type="1" subject="null" body="Ich hab geheult als du nach Kanada gegangen bist. Weil du dann Weg warst. Und ich liege im dunkel heule vor mich hin, weil du wieder Weg bist! Antworte nicht mehr heute Nacht drauf. Schlaf Mal besser." toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358465996000" readable_date="Jan 18, 2013 12:40:04 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358474186772" type="1" subject="null" body="Kannst du kraulen? Also nicht die schwimmart." toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358474182000" readable_date="Jan 18, 2013 2:56:26 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358474445503" type="2" subject="null" body="Scheiße ich sollte dich doch nicht zum heulen bringen , erst recht nicht zwei mal!!!!!!!!!! Tut mir so leid !!!! Ja ich kann kraulen,aber warum willst du das wissen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358474456931" readable_date="Jan 18, 2013 3:00:45 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358475818072" type="1" subject="null" body="Richard! Warum bist du denn wach? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358475814000" readable_date="Jan 18, 2013 3:23:38 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358475910406" type="2" subject="null" body="Ka ich nehme an die Vibration des Handys hat mich geweckt" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358475922099" readable_date="Jan 18, 2013 3:25:10 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358475962614" type="1" subject="null" body="Oh Gott. Entschuldigung. Schlaf weiter!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358475958000" readable_date="Jan 18, 2013 3:26:02 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358492175076" type="1" subject="null" body="Richard?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358492172000" readable_date="Jan 18, 2013 7:56:15 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358504162741" type="1" subject="null" body="Bitte geh nicht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358504158000" readable_date="Jan 18, 2013 11:16:02 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358513379370" type="2" subject="null" body="Sry war in der Schule , es tut mir leid ,aber wenn du nicht einen Grund nennen kannst warum ich nicht gehen sollte dann ,naja werd ich wohl gehen, bis spätestens 15:30 bin ich aber noch Dorstener " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358513389061" readable_date="Jan 18, 2013 1:49:39 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358513775155" type="1" subject="null" body="Nein bitte nicht! Mit wem soll ich denn da immer quatschen? Hinter wem soll ich denn da die ganze Zeit hinter herschwimmen? Und mit wem soll ich die Bein -Übungen machen? Und mit wem soll ich über das ganze mathe Zeug reden? Das geht nur mit dir! Du kannst jetzt nicht einfach gehen. Du hast mir gesagt das du da nicht hin gehst. Und senem hast du gesagt das du da NIEMALS hin gehst. Bitte nicht! Und wenn du da hin gehst hast du keine Zeit mehr!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358513743000" readable_date="Jan 18, 2013 1:56:15 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358513803082" type="1" subject="null" body="Bitte bitte bitte nicht! Ich hab dir jetzt tausend gründe gesagt. Von mir aus können wir auch Tausende von Metern mehr schwimmen, damit du besser wirst. Aber geh nicht zu denen." toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358513795000" readable_date="Jan 18, 2013 1:56:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358513861087" type="1" subject="null" body="Ich hab übrigens gerade so ziemlich geschlafen, aber das ist jetzt egal :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358513856000" readable_date="Jan 18, 2013 1:57:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358514156099" type="2" subject="null" body="Du machst es einem echt nicht leicht ......... " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358514168586" readable_date="Jan 18, 2013 2:02:36 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358514201071" type="1" subject="null" body="Und außerdem mag ich dich ganz ganz doll!!!!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358514196000" readable_date="Jan 18, 2013 2:03:21 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358514653389" type="2" subject="null" body="Jetzt mal rein theoretisch was soll ich den allen sagen , wenn ich doch nicht Wechsel ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358514663478" readable_date="Jan 18, 2013 2:10:53 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358514685205" type="1" subject="null" body="Wem ? Gladbeck oder dorsten?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358514681000" readable_date="Jan 18, 2013 2:11:25 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358514701109" type="2" subject="null" body="Beiden " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358514710045" readable_date="Jan 18, 2013 2:11:41 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358514851050" type="1" subject="null" body="Weil wir in dorsten ja auch viel trainieren " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358514846000" readable_date="Jan 18, 2013 2:14:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358514867812" type="1" subject="null" body="Ja Gladbeck sagst du einfach dass du dich anderes entschieden hast. Und in dorsten sagst du halt, dass es viel besser bei uns ist. Und du halt einfach bei uns bleibst" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358514785000" readable_date="Jan 18, 2013 2:14:27 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358514876199" type="1" subject="null" body="Und dann hast du noch mehr Zeit " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358514871000" readable_date="Jan 18, 2013 2:14:36 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358515180296" type="2" subject="null" body="Und was soll ich mit all der zeit?? Und verglichen mit Gladbeck schwimmen wir gerade mal ein " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358515190549" readable_date="Jan 18, 2013 2:19:40 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358515285064" type="1" subject="null" body="Die Zeit mit Freunden und vielleicht mit deiner Freundin bald Mal verbringen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358515280000" readable_date="Jan 18, 2013 2:21:25 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358515291142" type="1" subject="null" body="Richard BITTE !" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358515287000" readable_date="Jan 18, 2013 2:21:31 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358515326053" type="1" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358515321000" readable_date="Jan 18, 2013 2:22:06 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358515458053" type="1" subject="null" body="Kriegst du ärger von deinen eltern wenn du da nicht hin gehst?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358515453000" readable_date="Jan 18, 2013 2:24:18 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358515525914" type="2" subject="null" body="Ja ich meine jetzt haben wir praktisch alles fertig gemacht ich denke die wären schon sauer " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358515536544" readable_date="Jan 18, 2013 2:25:25 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358515561136" type="1" subject="null" body="Das heißt jetzt?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358515557000" readable_date="Jan 18, 2013 2:26:01 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358515631751" type="2" subject="null" body="Ich denke schon das die sauer wären aber halt nicht weil ich dann nicht den Sport so mache sondern weil wir jetzt alles vorbereitet haben " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358515642123" readable_date="Jan 18, 2013 2:27:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358515632665" type="1" subject="null" body="Aber ich hab dir die besten Argumente gegeben. Und du hast gesagt, wenn ich einen Grund finde, dann gehst du da nicht hin und ich hab über 5 gefunden " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358515626000" readable_date="Jan 18, 2013 2:27:12 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358515759052" type="1" subject="null" body="Bitte Richard" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358515754000" readable_date="Jan 18, 2013 2:29:19 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358515910076" type="1" subject="null" body="Ich hab seit 0 Uhr gestern Nacht geweint. Leider ist fridi das irgendwann aufgefallen. Und ich hab ihr gesagt das du gehst. Ich hab 2 Stunden geschlafen. Und du musst bitte einfach bei uns bleiben. Das muss einfach so sein" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358515903000" readable_date="Jan 18, 2013 2:31:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358516339718" type="2" subject="null" body="Ich muss mir dann irgendwie was einfallen lassen ok aber kein Wort zu niemandem " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358516350409" readable_date="Jan 18, 2013 2:38:59 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358516392148" type="1" subject="null" body="Du machst das? Richard! Merci merci merci <3" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358516387000" readable_date="Jan 18, 2013 2:39:52 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358516437248" type="2" subject="null" body="Ich muss mich mal eben selbst verletzen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358516445956" readable_date="Jan 18, 2013 2:40:37 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358516488076" type="1" subject="null" body="Was? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358516484000" readable_date="Jan 18, 2013 2:41:28 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358516508061" type="1" subject="null" body="Ah Richard !!!!!!! :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358516503000" readable_date="Jan 18, 2013 2:41:48 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358516549908" type="2" subject="null" body="Also ich verletzt mich nicht wirklich !! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358516559122" readable_date="Jan 18, 2013 2:42:29 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358516579066" type="1" subject="null" body="Gut :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358516574000" readable_date="Jan 18, 2013 2:42:59 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358516898894" type="2" subject="null" body='Bin aufs knie "gefallen "' toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358516907052" readable_date="Jan 18, 2013 2:48:18 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358516947305" type="1" subject="null" body="Man Richard. So versteh ich das nicht :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358516934000" readable_date="Jan 18, 2013 2:49:07 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358517187589" type="2" subject="null" body='Ich brauch ne ausrede das ich heute nicht zum training muss damit ich mir nen richtigen Grund nicht zu gehen über legen weil meine Mutter wird " Phine hat mich gebeten" als grund nicht zu gehen nicht gelten lassen ' toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358517199063" readable_date="Jan 18, 2013 2:53:07 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358517271086" type="1" subject="null" body="Ok. Man sag einfach, dass dir schlecht ist. Dir geht es nicht gut oder du hast so Doll Kopfschmerzen " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358517266000" readable_date="Jan 18, 2013 2:54:31 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358517350072" type="1" subject="null" body="Dein Rücken tut wieder weh." toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358517345000" readable_date="Jan 18, 2013 2:55:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358517454218" type="2" subject="null" body="Ich hatte dienstags nichts und das weiß meine Mutter " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358517466195" readable_date="Jan 18, 2013 2:57:34 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358517549060" type="1" subject="null" body="Sag das dir übel ist, du weist nicht warum. Dann wird die dich wohl nicht zu einem Arzt schicken wegen Übelkeit" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358517543000" readable_date="Jan 18, 2013 2:59:09 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358517553337" type="1" subject="null" body="Bitte Richar" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358517549000" readable_date="Jan 18, 2013 2:59:13 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358517564459" type="1" subject="null" body="d" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358517561000" readable_date="Jan 18, 2013 2:59:24 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358517654887" type="2" subject="null" body="Ist in Arbeit über leg dir lieber einen echten Grund warum ich nicht wechseln kann " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358517665073" readable_date="Jan 18, 2013 3:00:54 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358517761080" type="1" subject="null" body="Ok überleg ich mir . Also musst du da heute nicht hin?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358517757000" readable_date="Jan 18, 2013 3:02:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358517885621" type="2" subject="null" body="Muss ich noch hin biegen trotzdem kannst du dir schon mal was über legen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358517895056" readable_date="Jan 18, 2013 3:04:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358518000111" type="1" subject="null" body="<3" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358517997000" readable_date="Jan 18, 2013 3:06:40 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358518277750" type="1" subject="null" body="Reicht doch wenn ich mir das bis heute abend aus Denke oder?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358518273000" readable_date="Jan 18, 2013 3:11:17 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358518279401" type="2" subject="null" body="Ich glaub das reicht ihr nichtb" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358518288600" readable_date="Jan 18, 2013 3:11:19 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358518288789" type="2" subject="null" body="Ja das schon " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358518297098" readable_date="Jan 18, 2013 3:11:28 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358518329283" type="1" subject="null" body="Sag das du Kopfschmerzen hast " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358518324000" readable_date="Jan 18, 2013 3:12:09 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358518383118" type="2" subject="null" body="Ja heute geh ich nicht ich glaub ich Krieg das hin aber diese ausrede halt max bis mintag " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358518391037" readable_date="Jan 18, 2013 3:13:03 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358518482151" type="1" subject="null" body="Ich Denk mir eine Aus " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358518478000" readable_date="Jan 18, 2013 3:14:42 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358518493834" type="1" subject="null" body=":* " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358518490000" readable_date="Jan 18, 2013 3:14:53 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358518507838" type="2" subject="null" body="Danke :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358518520173" readable_date="Jan 18, 2013 3:15:07 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358518512783" type="1" subject="null" body="Kann jetzt gerade nicht mehr Schreiben " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358518510000" readable_date="Jan 18, 2013 3:15:12 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358531660248" type="1" subject="null" body="Es ist so kalt draußen :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358527049000" readable_date="Jan 18, 2013 6:54:20 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358531772345" type="2" subject="null" body="Kann man so sagen :-D OK zum schwimmen musste ich trotzdem hab die Anmeldung aber nicht abgegeben " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358531782653" readable_date="Jan 18, 2013 6:56:12 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358540728306" type="1" subject="null" body="Ja aber wir sind ja in bilstein" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358540723000" readable_date="Jan 18, 2013 9:25:28 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358540775008" type="2" subject="null" body="Sagt mir gar nichts dieses bilstein" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358540785631" readable_date="Jan 18, 2013 9:26:15 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358540810088" type="1" subject="null" body="Sag deinen eltern einfach, dass du nicht richtig drüber nach gedacht hast. Und du Lieber bei Delphin bleiben willst, weil ja... Weil..." toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358540804000" readable_date="Jan 18, 2013 9:26:50 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358540875396" type="1" subject="null" body="Und wir sind da auf einer Burg. Richtig Cool hier und schön! " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358540870000" readable_date="Jan 18, 2013 9:27:55 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358540950060" type="2" subject="null" body="Du kennst meine Eltern offensichtlich nicht wirklich...... ohne weil wird das nichts ( sonst wäre das ja einfach ) ich Google mal wo das ist " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358540960483" readable_date="Jan 18, 2013 9:29:10 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358541144595" type="1" subject="null" body="Weil du deine Freunde nicht verlieren willst. Und weil du sonst keine Zeit mehr hast. Und ja auch noch zu Fußball Ag oder so was gehen willst. Und sonst klappt das mit der schule alles nicht. " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358541135000" readable_date="Jan 18, 2013 9:32:24 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358541166971" type="1" subject="null" body="Weil das bei uns einfach Cooler ist!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358541161000" readable_date="Jan 18, 2013 9:32:46 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358541252246" type="1" subject="null" body="Und weil du nicht nur schwimmen willst, sondern Lieber noch zusätzlich irgendwas anderes" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358541243000" readable_date="Jan 18, 2013 9:34:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358541389645" type="2" subject="null" body="Ich kanns mal versuchen , aber wenn ich mit der Schule komme lacht die mich nur aus :-D hab die Burg mal nach geschaut die sieht wirklich cool aus :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358541401901" readable_date="Jan 18, 2013 9:36:29 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358541510148" type="1" subject="null" body="Das ist im sauerland :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358540843000" readable_date="Jan 18, 2013 9:38:30 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358541512287" type="1" subject="null" body="Und du musst bei den Vereinsmeisterschaften zum 3. Mal ja auch den Pokal gewinnen " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358541200000" readable_date="Jan 18, 2013 9:38:32 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358541513634" type="1" subject="null" body="Es ist auch geil hier. Und das singen hört sich mega Cool an" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358541507000" readable_date="Jan 18, 2013 9:38:33 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358541521306" type="1" subject="null" body="Richard?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358541515000" readable_date="Jan 18, 2013 9:38:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358541555500" type="2" subject="null" body="Phine?" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358690101103" readable_date="Jan 18, 2013 9:39:15 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358541646445" type="1" subject="null" body="Du gehst eh da hin oder ?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358541641000" readable_date="Jan 18, 2013 9:40:46 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358541703171" type="1" subject="null" body="Und schreib besser fine. Weil phine erinnert mich nur an das Zeug mit Daniel" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358541690000" readable_date="Jan 18, 2013 9:41:43 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358541872726" type="2" subject="null" body="Schuldige, und ich wurde mir nicht so viel Gedanken über einen Grund machen wenn ich am ende eh da hin gehe würde aber ich trau meiner mum wohl zu das sue sagt das ich das wollte ich das also durchziehen soll " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358541885273" readable_date="Jan 18, 2013 9:44:32 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358541980052" type="1" subject="null" body="Nein musst dich doch nicht entschuldigen:-) Also suchst du wirklich einen Grund? Und du würdest auch dann zu uns kommen? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358541974000" readable_date="Jan 18, 2013 9:46:20 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358542001697" type="1" subject="null" body="Dann rede doch mit deinem Papa " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358541988000" readable_date="Jan 18, 2013 9:46:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358542145656" type="2" subject="null" body="Ja würde ich, wäre zwar peinlich aber naja . Und mein papa wäre dann echt sauer weil er meine Schwester Wochen bearbeiten musste damit ich über haupt mal vor schwimmen darf " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358542156533" readable_date="Jan 18, 2013 9:49:05 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358543087095" type="1" subject="null" body="Ach Richi !" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358543082000" readable_date="Jan 18, 2013 10:04:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358543168616" type="2" subject="null" body="Ach Fine!! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358543177515" readable_date="Jan 18, 2013 10:06:08 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358543230056" type="1" subject="null" body="Du bist Cool" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358543225000" readable_date="Jan 18, 2013 10:07:10 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358543354412" type="2" subject="null" body="Viele sehen das glaub ich anders, aber danke du auch " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358543364100" readable_date="Jan 18, 2013 10:09:14 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358543408866" type="1" subject="null" body="Ja aber ich bin ja nicht viele. Und Cool bin ich nicht " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358543404000" readable_date="Jan 18, 2013 10:10:08 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358543471165" type="1" subject="null" body="Überredest du deine eltern?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358543466000" readable_date="Jan 18, 2013 10:11:11 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358543519625" type="2" subject="null" body="Ich Versuchs, aber erst Sonntag" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358543528789" readable_date="Jan 18, 2013 10:11:59 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358543573054" type="1" subject="null" body="Aber mit allen Mitteln, ja? :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358543568000" readable_date="Jan 18, 2013 10:12:53 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358543631052" type="2" subject="null" body="Klar sonst wärs ja langweilig :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358543641605" readable_date="Jan 18, 2013 10:13:51 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358543672050" type="1" subject="null" body="Versprochen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358543668000" readable_date="Jan 18, 2013 10:14:32 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358543687277" type="2" subject="null" body="Immer " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358543697047" readable_date="Jan 18, 2013 10:14:47 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358543698309" type="1" subject="null" body="Ich mach auch alles für dich, wenn du das hin kriegst :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358543694000" readable_date="Jan 18, 2013 10:14:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358543712256" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358543708000" readable_date="Jan 18, 2013 10:15:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358543750914" type="2" subject="null" body="Das erwart ich auch :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358543759095" readable_date="Jan 18, 2013 10:15:50 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358543798649" type="1" subject="null" body="Oh oh" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358543792000" readable_date="Jan 18, 2013 10:16:38 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358543921939" type="2" subject="null" body="Mit dem Anreiz kann ich das ja nur noch schaffen" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358543930017" readable_date="Jan 18, 2013 10:18:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358543925281" type="2" subject="null" body=":-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358543934048" readable_date="Jan 18, 2013 10:18:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358543983234" type="1" subject="null" body="Aber Richard, wenn du erst Sonntag das sagst, kurz bevor du das abgeben musst. Dann ist das bestimmt eh zu spät. Kannst du den nicht morgen sagen, das du dir nicht sicher bist. Und das du noch nach Denken musst und Sonntag sagst du das halt?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358543976000" readable_date="Jan 18, 2013 10:19:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358544015149" type="1" subject="null" body="Ich hab übrigens noch einen Grund, deine Schwester will doch nicht das du da auch bist, oder ? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358544010000" readable_date="Jan 18, 2013 10:20:15 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358544103315" type="2" subject="null" body="Keine Ahnung aber Grund wäre perfekt!! Weist du das sie das nicht will" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358544112039" readable_date="Jan 18, 2013 10:21:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358544142064" type="1" subject="null" body="Nein woher soll ich denn wissen das sie das nicht will?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358544137000" readable_date="Jan 18, 2013 10:22:22 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358544193757" type="2" subject="null" body="Keine Ahnung es schien ein bisschen so als ob du was wüsstest" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358544204060" readable_date="Jan 18, 2013 10:23:13 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358544240964" type="1" subject="null" body="Nein weiß ich nicht. Aber wenn dein Vater deine Schwester schon voll überreden musste und so " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358544236000" readable_date="Jan 18, 2013 10:24:00 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358544327942" type="2" subject="null" body="Kann gut sein ich glaub da lässt sich was machen danke das war wirklich hilfreich!!:-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358544340052" readable_date="Jan 18, 2013 10:25:27 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358544364052" type="1" subject="null" body="Oh gut" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358544360000" readable_date="Jan 18, 2013 10:26:04 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358544613047" type="2" subject="null" body="Was macht ihr eigentlich auf der Chor Freizeit ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358544623105" readable_date="Jan 18, 2013 10:30:13 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358544639049" type="1" subject="null" body="Singen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358544635000" readable_date="Jan 18, 2013 10:30:39 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358544654164" type="2" subject="null" body="Den ganzen Tag " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358544667083" readable_date="Jan 18, 2013 10:30:54 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358544668090" type="1" subject="null" body="Das ist richtig geil!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358544664000" readable_date="Jan 18, 2013 10:31:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358544740793" type="2" subject="null" body="Wenn nan singen kann bestimmt wenn man das nicht kann ehr nicht ( wie ich :-D )" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358544755045" readable_date="Jan 18, 2013 10:32:20 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358544871234" type="1" subject="null" body="Nein gestern um 3 sind wir angekommen und dann hatten wir um 4 bis 6 probe und dann essen und dann von 8 bis 10 wieder Probe. Heute morgen nach dem Frühstück hatten wir um 9 probe bis kurz nach 11, dann essen,dann noch Mal von halb 4 bis halb 6, dann essen und jetzt von 19 bis fast halb 10 wieder " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358544862000" readable_date="Jan 18, 2013 10:34:31 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358544894014" type="1" subject="null" body="Ich kann das auch nicht. Aber hier sind so viele, dann hört man das gar nicht :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358544888000" readable_date="Jan 18, 2013 10:34:54 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358545004476" type="2" subject="null" body="Man(n) muss sich einfachin der Masse verstecken :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358545013054" readable_date="Jan 18, 2013 10:36:44 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358545063906" type="1" subject="null" body="Ja " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358545059000" readable_date="Jan 18, 2013 10:37:43 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358545144903" type="2" subject="null" body="Seid ihr das ganze Wochenende weg " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358545153687" readable_date="Jan 18, 2013 10:39:04 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358545217572" type="1" subject="null" body="Nein bis morgen nur :( " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358545212000" readable_date="Jan 18, 2013 10:40:17 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358545295257" type="2" subject="null" body="Ach waren doch auch drei tage und scheinen doch gut gewesen sein " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358545305049" readable_date="Jan 18, 2013 10:41:35 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358545343066" type="1" subject="null" body="Ja aber das ist ja schön praktisch vorbei" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358545338000" readable_date="Jan 18, 2013 10:42:23 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358545670038" type="2" subject="null" body="Man soll aufhören wenn es am schönsten ist!" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358545681053" readable_date="Jan 18, 2013 10:47:50 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358546240142" type="1" subject="null" body="Ok :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358546235000" readable_date="Jan 18, 2013 10:57:20 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358546482328" type="2" subject="null" body=":-D ich wollt nochmal mich endschuldigen dass du gestern geweint hast war echt nicht meine Absicht. " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358546491924" readable_date="Jan 18, 2013 11:01:22 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358548265156" type="1" subject="null" body="Ehmm peinlich.... Entschuldige dich doch nicht immer." toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358548259000" readable_date="Jan 18, 2013 11:31:05 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358548418139" type="2" subject="null" body="OK, wieso Gast du mich gestern gefragt ob ich kraulen kann ?? Du meintest das wie man zum Beispiel ne Katze krault oder?? " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 18, 2013 11:33:38 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358548511793" type="1" subject="null" body="Nur so " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358548507000" readable_date="Jan 18, 2013 11:35:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358548541723" type="1" subject="null" body="Aber ich meinte nicht bei einer Katze sondern Menschen :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358548537000" readable_date="Jan 18, 2013 11:35:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358548673422" type="2" subject="null" body="Ja dachte ich mir schon dass du nicht wissen wolltest ob ich eine Katze kraulen kann :-D " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 18, 2013 11:37:53 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358549027101" type="1" subject="null" body="Ja ich weiß ja nicht was du denkst :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358549023000" readable_date="Jan 18, 2013 11:43:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358549111408" type="2" subject="null" body="Manchmal frag ich mich das selber :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358549120578" readable_date="Jan 18, 2013 11:45:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358549289072" type="1" subject="null" body="Wieso?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358549285000" readable_date="Jan 18, 2013 11:48:09 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358550611136" type="1" subject="null" body="Bist du eingeschlafen? Ich schreib dir in der Nacht dann besser nicht nochmal :-) schlaf dann Mal gut" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358550605000" readable_date="Jan 19, 2013 12:10:11 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358553162177" type="2" subject="null" body="Ja hab geschlafen :-) danke dir auch tuts Nacht :-) hoffentlich weckt dich das nicht :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358553173896" readable_date="Jan 19, 2013 12:52:42 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358576484118" type="1" subject="null" body="Wieso weist du manchmal nicht was du denkst? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358576479000" readable_date="Jan 19, 2013 7:21:24 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358578673701" type="2" subject="null" body="Kennst du das nicht wenn du deine Gedanken einfach mal so laufen lässt und du dann plötzlich wissen willst was du gedacht hast?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358578685088" readable_date="Jan 19, 2013 7:57:53 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358581156093" type="1" subject="null" body="Nein nicht wirklich? :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358581150000" readable_date="Jan 19, 2013 8:39:16 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358581205187" type="2" subject="null" body="OK dann bin ich wohl der seltsame hier :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358581214049" readable_date="Jan 19, 2013 8:40:05 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358581356061" type="1" subject="null" body="Ja das Denk ich auch :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358581351000" readable_date="Jan 19, 2013 8:42:36 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358581459549" type="2" subject="null" body=":-) Musst du gleich noch singen oder fahrt ihr schon gleich ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358581470060" readable_date="Jan 19, 2013 8:44:19 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358581525066" type="1" subject="null" body="Wir haben jetzt gefrühstückt und gleich singen wir, danach gibt es dann noch Mittag essen und dann fahren wir:-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358581519000" readable_date="Jan 19, 2013 8:45:25 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358581593350" type="2" subject="null" body="Also gibts da im Prinzip mehr essen als singen :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358581603057" readable_date="Jan 19, 2013 8:46:33 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358581731060" type="1" subject="null" body="Nein gar nicht :-) aber ich hab so viel gegessen, ich bin noch fetter als ich sowieso schon bin " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358581725000" readable_date="Jan 19, 2013 8:48:51 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358581806093" type="2" subject="null" body="Weil du soooo fett bist oder was " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358581815815" readable_date="Jan 19, 2013 8:50:06 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358581876813" type="1" subject="null" body="Ja" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358581871000" readable_date="Jan 19, 2013 8:51:16 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358581939155" type="2" subject="null" body="Ich hoffe für dich dass das Sarkasmus war, weil du wohl alles bist aber nicht fett " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358581949471" readable_date="Jan 19, 2013 8:52:19 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358581977561" type="1" subject="null" body="Nein das war kein Sarkasmus :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358581972000" readable_date="Jan 19, 2013 8:52:57 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358582066268" type="2" subject="null" body="Dann brauchst du ne neue Waage oder so:-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358582077536" readable_date="Jan 19, 2013 8:54:26 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358582119620" type="1" subject="null" body="Nein ich meine nicht vom Gewicht Her sondern von der Optik " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358582114000" readable_date="Jan 19, 2013 8:55:19 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358582177644" type="2" subject="null" body="Dann ist entweder der Spiegel kaputt den du benutzt oder du brauchst ne Brille " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358582188710" readable_date="Jan 19, 2013 8:56:17 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358582204441" type="1" subject="null" body=":D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358582199000" readable_date="Jan 19, 2013 8:56:44 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358582372980" type="2" subject="null" body="Ich tendiere zu der Brille ich meine wie oft geht schon ein Spiegel kaputt :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358582382698" readable_date="Jan 19, 2013 8:59:32 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358582408877" type="1" subject="null" body="Ja ist klar :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358582404000" readable_date="Jan 19, 2013 9:00:08 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358582440478" type="2" subject="null" body="Wann ist Probe ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358582450103" readable_date="Jan 19, 2013 9:00:40 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358582469893" type="1" subject="null" body="Viertel Stunde oder so" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358582465000" readable_date="Jan 19, 2013 9:01:09 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358582510586" type="2" subject="null" body="Was singt ihr eigentlich so ??? " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 19, 2013 9:01:50 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358582574914" type="1" subject="null" body="So ein Musical Mix, one of use, so ein deutsches Lied, Moskau und noch paar andere " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358582569000" readable_date="Jan 19, 2013 9:02:54 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358582641243" type="2" subject="null" body="OK das einzige Lied das mir was sagt ist Moskau :-) " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 19, 2013 9:04:01 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358583173717" type="1" subject="null" body="Oh :-) hör dir Mal one of use an, das ist voll schön ;) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358583164000" readable_date="Jan 19, 2013 9:12:53 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358583284082" type="1" subject="null" body="Wir fangen jetzt an " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358583279000" readable_date="Jan 19, 2013 9:14:44 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358583334624" type="2" subject="null" body="Gut sing oder was auch immer man da sagt :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358583345166" readable_date="Jan 19, 2013 9:15:34 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358587382136" type="1" subject="null" body=":D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358587377000" readable_date="Jan 19, 2013 10:23:02 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358590753120" type="1" subject="null" body="Was machst du jetzt?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358590748000" readable_date="Jan 19, 2013 11:19:13 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358592672107" type="2" subject="null" body="War schwimmen im Atlantis Seid ihr schon beim essen ? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358593068048" readable_date="Jan 19, 2013 11:51:12 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358593221530" type="1" subject="null" body="Du bleibst in dorsten, ne?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358593216000" readable_date="Jan 19, 2013 12:00:21 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358593328641" type="2" subject="null" body="Ja ich Versuchs hab aber noch nicht mit meinen Eltern gesprochen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358593338101" readable_date="Jan 19, 2013 12:02:08 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358593353084" type="1" subject="null" body="Man bitte!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358593348000" readable_date="Jan 19, 2013 12:02:33 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358593498849" type="2" subject="null" body="Hör auf ständig zu betteln wenn ich doch schon ja gesagt hab, ich meine hätte ich nein gesagt OK aber ich hab ja sogar ja gesagt ..... " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358593509055" readable_date="Jan 19, 2013 12:04:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358593636058" type="1" subject="null" body=":* " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358593630000" readable_date="Jan 19, 2013 12:07:16 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358595418171" type="2" subject="null" body=":* " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358595428105" readable_date="Jan 19, 2013 12:36:58 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358595523337" type="2" subject="null" body="Weist du was ich gerade realisiert habe ??? Montag vor einem Jahr bin ich nach Kanada geflogen !!! Das ist schon ein ganzes Jahr her,! wow " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358595534842" readable_date="Jan 19, 2013 12:38:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358596482046" type="1" subject="null" body="Normal wärst du auch noch nicht lange wieder zu Hause gewesen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358596476000" readable_date="Jan 19, 2013 12:54:42 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358596537891" type="2" subject="null" body="Ja stimmt seit nen knappen Monat aber auch finds gut wies gelaufen ist :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358596549205" readable_date="Jan 19, 2013 12:55:37 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358596565530" type="1" subject="null" body="Ich auch " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358596560000" readable_date="Jan 19, 2013 12:56:05 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358596653871" type="2" subject="null" body="Seid ihr schon auf dem weg nach Dorsten ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358596663664" readable_date="Jan 19, 2013 12:57:33 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358596687152" type="1" subject="null" body="Nö :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358596682000" readable_date="Jan 19, 2013 12:58:07 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358596798331" type="1" subject="null" body="Jetzt aber " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358596793000" readable_date="Jan 19, 2013 12:59:58 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358596843386" type="2" subject="null" body=":-) wie lang müsst ihr fahren ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358596853071" readable_date="Jan 19, 2013 1:00:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358596878250" type="1" subject="null" body="2 Stunden? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358596873000" readable_date="Jan 19, 2013 1:01:18 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358596910646" type="2" subject="null" body="Das geht ja noch :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358596922115" readable_date="Jan 19, 2013 1:01:50 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358596945050" type="1" subject="null" body="Ja geht voll klar" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358596940000" readable_date="Jan 19, 2013 1:02:25 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358597691232" type="2" subject="null" body="Mein ich doch " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358597701148" readable_date="Jan 19, 2013 1:14:51 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358597729051" type="1" subject="null" body="Und was machst du jetzt?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358597724000" readable_date="Jan 19, 2013 1:15:29 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358597804114" type="2" subject="null" body="Ich bin in Recklinghausen meine Schwester beim schwimmen anfeuern " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358597816043" readable_date="Jan 19, 2013 1:16:44 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358597866050" type="1" subject="null" body="Ach so" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358597861000" readable_date="Jan 19, 2013 1:17:46 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358597934480" type="2" subject="null" body="Und du also außer bus fahren jetzt :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358597952500" readable_date="Jan 19, 2013 1:18:54 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358597982058" type="1" subject="null" body="Quatschen und essen :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358597976000" readable_date="Jan 19, 2013 1:19:42 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358598018768" type="2" subject="null" body="Ganze zeit nur am essen :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358598031038" readable_date="Jan 19, 2013 1:20:18 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358598086066" type="1" subject="null" body="Ja ist doch lecker " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358598081000" readable_date="Jan 19, 2013 1:21:26 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358598193544" type="2" subject="null" body="Ja, kommt aufs essen an ne :-) super jetzt hab ich Hunger :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358598204075" readable_date="Jan 19, 2013 1:23:13 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358598239061" type="1" subject="null" body="Nein, ALLES ist GEIL ! " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358598233000" readable_date="Jan 19, 2013 1:23:59 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358598343397" type="2" subject="null" body="OK können wir aufhören vom essen zu sprechen ich hatte heute noch nichts und hab jetzt WIRKLICH Hunger !!!!! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358598354180" readable_date="Jan 19, 2013 1:25:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358598381718" type="1" subject="null" body="Sorry ;) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358598377000" readable_date="Jan 19, 2013 1:26:21 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358598573906" type="2" subject="null" body=":-) Hab gehört das Senem heut mit deinem Bruder ein Konzert hat :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358598585147" readable_date="Jan 19, 2013 1:29:33 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358598658058" type="1" subject="null" body="Ja aber noch mit ganz vielen anderen. Alle die bei der Lehrerin Unterricht haben. Fridi zum Beispiel auch :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358598651000" readable_date="Jan 19, 2013 1:30:58 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358598721584" type="2" subject="null" body="Ja ??? Auch Klarinette ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358598731051" readable_date="Jan 19, 2013 1:32:01 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358598776060" type="1" subject="null" body="Nein Klavier. Senem spielt doch auch noch Klavier" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358598770000" readable_date="Jan 19, 2013 1:32:56 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358598880400" type="2" subject="null" body="Ja wusste ich nicht. Hast du die schon mal gehört, sind die gut ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358598889056" readable_date="Jan 19, 2013 1:34:40 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358598938062" type="1" subject="null" body="Senem kann das göttlich! Fridi spielt ein bisschen schlechter, aber die spielt das auch noch nicht so lange wie senem" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358598932000" readable_date="Jan 19, 2013 1:35:38 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358599003435" type="2" subject="null" body="Ich find das cool wenn man ein Musik Instrument spielen kann leider bin ich grandios daran gescheitert " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358599013046" readable_date="Jan 19, 2013 1:36:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358599066071" type="1" subject="null" body=":D ich war in Flöten ganz ganz ganz früher gar nicht so schlecht. Aber zu mehr bin ich unfähig :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358599061000" readable_date="Jan 19, 2013 1:37:46 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358599170447" type="2" subject="null" body="Mmmmh, Flöte kann ich auch nicht und Saxophon, was ich früher mal gespielt hab war ich echt krotik :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358599181313" readable_date="Jan 19, 2013 1:39:30 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358599217290" type="1" subject="null" body=" :D schadeeee" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358599212000" readable_date="Jan 19, 2013 1:40:17 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358599278568" type="2" subject="null" body="Jaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa:-D aber ich kann noten lesen !!! :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358599290066" readable_date="Jan 19, 2013 1:41:18 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358599308080" type="1" subject="null" body="Ich nicht ;) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358599303000" readable_date="Jan 19, 2013 1:41:48 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358599409978" type="2" subject="null" body="OK zu gegeben können kann man das wohl nicht nennen wie ich die noten lese :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358599420050" readable_date="Jan 19, 2013 1:43:29 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358599521182" type="1" subject="null" body="Mega witzig, du stellst manchmal immer so fragen, dann kommt kein Wort zu niemanden und dann deine Frage, die mega witzig ist :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358599516000" readable_date="Jan 19, 2013 1:45:21 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358599610981" type="2" subject="null" body="Schon das dich dur fragen amüsieren :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358599619960" readable_date="Jan 19, 2013 1:46:50 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358599734062" type="1" subject="null" body="Nein eigentlich die fragen nicht. Aber die Art wie du das jedes Mal gleich gestalltest ist wirklich amüsierend. Vor allem weil die immer um liebe gehen :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358599727000" readable_date="Jan 19, 2013 1:48:54 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358599980646" type="2" subject="null" body="Nächste frag ich und dann sag ich dann das du das keinem sagen darfst dann ist das mal ein bisschen anderes :-) und die gehen immer darum weil mit in den meisten fallen das sonst egal wäre wenn das ein anderer weiß, abgesehen treue ich dir soweit dass du das keinem sagst und du bist so ziemlich das einzige Mädchen mit dem ich über Haupt über sowas spreche" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358599994753" readable_date="Jan 19, 2013 1:53:00 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358600124118" type="1" subject="null" body="Ja ich hoffe auch das du mir Vertraust :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358600119000" readable_date="Jan 19, 2013 1:55:24 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358600171466" type="2" subject="null" body="Ist mein vertrauen den berechtigt ?:-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358600183069" readable_date="Jan 19, 2013 1:56:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358600209146" type="1" subject="null" body="Ich hoffe doch " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358600205000" readable_date="Jan 19, 2013 1:56:49 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358600531462" type="2" subject="null" body="Jetzt ist eh zu spät nicht :-) aber dich stört das doch nicht oder ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358600542049" readable_date="Jan 19, 2013 2:02:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358600568053" type="1" subject="null" body="NEIN ! :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358600566000" readable_date="Jan 19, 2013 2:02:48 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358600652923" type="2" subject="null" body="Dann ist gut :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358600663049" readable_date="Jan 19, 2013 2:04:12 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358600708054" type="1" subject="null" body="Yes " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358600710000" readable_date="Jan 19, 2013 2:05:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358600802381" type="2" subject="null" body="Wann müsst ihr eure Kurse eigentlich gewählt haben" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358600813045" readable_date="Jan 19, 2013 2:06:42 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358600833157" type="1" subject="null" body="Weiß ich nicht. Februar oder so glaub ich " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358600831000" readable_date="Jan 19, 2013 2:07:13 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358601220787" type="2" subject="null" body="Du nimmst mathe Lk oder ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358601235797" readable_date="Jan 19, 2013 2:13:40 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358601267064" type="1" subject="null" body="Ja :-) und Bio finde ich auch Cool" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358601269000" readable_date="Jan 19, 2013 2:14:27 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358601353405" type="2" subject="null" body="Solange mathe lk da ist kannst du meintewegen sonst wählen was du willst nur nicht EW lk !!!!! Oder Philosophie Lk !!:-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358601364051" readable_date="Jan 19, 2013 2:15:53 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358601395412" type="1" subject="null" body="Was ist denn ew?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358601393000" readable_date="Jan 19, 2013 2:16:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358601419372" type="2" subject="null" body="Erziehungswissenschaft " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358601428048" readable_date="Jan 19, 2013 2:16:59 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358601451056" type="1" subject="null" body="Ich möchte dich Mal was fragen, aber kein Wort zu niemandem :D ja? Was erwartest du von einer Freundin? Also einer festen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358601452000" readable_date="Jan 19, 2013 2:17:31 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358601452126" type="1" subject="null" body="Das ist Pädagogik oder? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358601452000" readable_date="Jan 19, 2013 2:17:32 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358601482065" type="1" subject="null" body="So was werde ich schon nicht wählen :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358601483000" readable_date="Jan 19, 2013 2:18:02 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358601685297" type="2" subject="null" body="Ne das Pädagogik ist allgemein und EW ist hauptsächlich für kinder bis 12 glaub ich :-) ich beantwortet gleich die frage ich will nur eben sehen wie Lennox 200 rücken gegen 2001 verliert :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358601699070" readable_date="Jan 19, 2013 2:21:25 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358601767064" type="1" subject="null" body="Ew gibt es an unserer schule? Ja du musst auch nicht die ganze Zeit Schreiben :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358601764000" readable_date="Jan 19, 2013 2:22:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358602024474" type="2" subject="null" body="Ich weis aber wenn ich nicht schreibe ist mir langweilig :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358602034864" readable_date="Jan 19, 2013 2:27:04 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358602074437" type="1" subject="null" body="Warum guckst du da auch zu?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358602076000" readable_date="Jan 19, 2013 2:27:54 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358602174514" type="2" subject="null" body="Weil ich gerne lache :-D und ich Lennox nicht mag und ihm daher gern beim scheitern zu gucke " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358602184454" readable_date="Jan 19, 2013 2:29:34 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358602234966" type="1" subject="null" body="Noch ein Grund, warum du nicht in den Verein sollst, dann siehst du lennox immer" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358602232000" readable_date="Jan 19, 2013 2:30:34 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358602470302" type="2" subject="null" body="Der kommt nur einmal die Woche gefühlt und dann sitzt der nur auf dem Klo der schlappschwanz " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358602479830" readable_date="Jan 19, 2013 2:34:30 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358602502775" type="1" subject="null" body="Oh" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358602500000" readable_date="Jan 19, 2013 2:35:02 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358602692756" type="1" subject="null" body="Wir sind jetzt da und fahren dann direkt zu dem ding wo die vor spielen. Viel Spaß noch :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358602690000" readable_date="Jan 19, 2013 2:38:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358602719503" type="2" subject="null" body="Jo dir auch :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358602729771" readable_date="Jan 19, 2013 2:38:39 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358602860407" type="2" subject="null" body="Ich denke, dass das extrem an den Menschen hängt was man erwarten kann aber was ich so spontan sagen würde sind so standart Sachen wie das man sich sehr gut versteht und über alles reden kann, das man gerne in der nähe des anderen ist und vielleicht noch das man sich den rücken gegenseitig frei hält, aber nicht das man für einander irgendwas aufgibt nur weil der andere das will, sprich das man immer noch solche endscheidungen selbst treffen kann ohne das der andere eingeschnappt ist , wenn sie ihm nicht gefällt " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358602878238" readable_date="Jan 19, 2013 2:41:00 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358602878962" type="2" subject="null" body="War das deutsch verständlich ???" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358602884602" readable_date="Jan 19, 2013 2:41:18 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358614743654" type="2" subject="null" body="Warte du meinst doch was ich während der Beziehung erwarte oder " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358614753806" readable_date="Jan 19, 2013 5:59:03 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358615695100" type="1" subject="null" body="Ja. Sind gerade wieder da :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358615697000" readable_date="Jan 19, 2013 6:14:55 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358615723673" type="2" subject="null" body="Wie wars ??? :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358615733137" readable_date="Jan 19, 2013 6:15:23 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358615974181" type="1" subject="null" body="Danke :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358615974000" readable_date="Jan 19, 2013 6:19:34 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358615981678" type="1" subject="null" body="War Cool" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358615979000" readable_date="Jan 19, 2013 6:19:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358616188295" type="2" subject="null" body="Wie war senems solo :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358616213038" readable_date="Jan 19, 2013 6:23:08 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358616689065" type="1" subject="null" body="Mega schön :-) bist du noch auf dem Wettkampf" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358616689000" readable_date="Jan 19, 2013 6:31:29 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358616803379" type="2" subject="null" body="Ne bin zu Hause seit vier und backe gerade Stuten :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358616813048" readable_date="Jan 19, 2013 6:33:23 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358616834082" type="1" subject="null" body="Oh geil :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358616832000" readable_date="Jan 19, 2013 6:33:54 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358616845390" type="1" subject="null" body="Nerv ich? Tut mir leid" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358616843000" readable_date="Jan 19, 2013 6:34:05 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358616873588" type="2" subject="null" body="Ne warum solltest du nerven?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358616884163" readable_date="Jan 19, 2013 6:34:33 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358617353109" type="1" subject="null" body="Ja weil... Keine Ahnung" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358617354000" readable_date="Jan 19, 2013 6:42:33 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358617404021" type="2" subject="null" body="Was machst du noch heute ??" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358617412330" readable_date="Jan 19, 2013 6:43:24 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358617530060" type="1" subject="null" body="Tasche aus packen und ESSEN ! :-) und vielleicht deutsch und franze machen, du?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358617526000" readable_date="Jan 19, 2013 6:45:30 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358617797112" type="2" subject="null" body="Mich langweilen:-( ich hab heute einfach nichts vor :-( " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358617808167" readable_date="Jan 19, 2013 6:49:57 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358617889081" type="1" subject="null" body="Gar nichts?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358617887000" readable_date="Jan 19, 2013 6:51:29 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358617894584" type="1" subject="null" body="Weist du was?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358617893000" readable_date="Jan 19, 2013 6:51:34 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358617925845" type="2" subject="null" body="Nichts :-( ne was den ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358617934111" readable_date="Jan 19, 2013 6:52:05 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358618077085" type="1" subject="null" body="Ich liebe ESSEN ! " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358618076000" readable_date="Jan 19, 2013 6:54:37 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358618158706" type="2" subject="null" body="Dachte ich mir :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358618169056" readable_date="Jan 19, 2013 6:55:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358618529199" type="1" subject="null" body=":D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358618527000" readable_date="Jan 19, 2013 7:02:09 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358618594106" type="2" subject="null" body="Und ich hab immer noch nicht gegessen, weil Rebecca was bin McDonald holen wollte und jetzt gibts das nicht :-( " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358618607051" readable_date="Jan 19, 2013 7:03:14 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358618730069" type="1" subject="null" body="Dann iss deinen Stuten" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358618731000" readable_date="Jan 19, 2013 7:05:30 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358618781997" type="2" subject="null" body="Der ist aber noch heis ( ist aber richtig gut geworden :-) ) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358618791705" readable_date="Jan 19, 2013 7:06:21 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358619139065" type="1" subject="null" body="Ja dann musst du mit deinem essen wohl warten :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358619139000" readable_date="Jan 19, 2013 7:12:19 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358619186371" type="2" subject="null" body="Ja aber ich werde es über legen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358619195736" readable_date="Jan 19, 2013 7:13:06 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358619195373" type="2" subject="null" body="Über leben " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358619211053" readable_date="Jan 19, 2013 7:13:15 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358619379073" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358619380000" readable_date="Jan 19, 2013 7:16:19 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358619558611" type="2" subject="null" body="Was musste den als Hausaufgaben machen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358619567601" readable_date="Jan 19, 2013 7:19:18 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358619629064" type="1" subject="null" body="In Deutsch zu so einem Buch eine Tabelle machen. Und franze weiß ich nicht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358619630000" readable_date="Jan 19, 2013 7:20:29 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358619662612" type="2" subject="null" body="Schön wenn man weis was man machen muss :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358619671038" readable_date="Jan 19, 2013 7:21:02 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358619772099" type="1" subject="null" body="Ja, ich hatte noch keine Lust mir das anzugucken :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358619769000" readable_date="Jan 19, 2013 7:22:52 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358619819892" type="2" subject="null" body="Wer hat das schon :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358619831059" readable_date="Jan 19, 2013 7:23:39 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358619868963" type="1" subject="null" body="Niemand " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358619865000" readable_date="Jan 19, 2013 7:24:28 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358619886197" type="2" subject="null" body="Stimmtb" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358619895122" readable_date="Jan 19, 2013 7:24:46 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358619915072" type="1" subject="null" body=":D natürlich!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358619916000" readable_date="Jan 19, 2013 7:25:15 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358620010291" type="2" subject="null" body=":-D stimmt wenn Fine das sagt dann muss das ja richtig sein " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358620023039" readable_date="Jan 19, 2013 7:26:50 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358620090051" type="1" subject="null" body="Ja richtig :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358620092000" readable_date="Jan 19, 2013 7:28:10 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358620297165" type="2" subject="null" body=":-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358620307069" readable_date="Jan 19, 2013 7:31:37 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358620338061" type="1" subject="null" body=":P " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358620335000" readable_date="Jan 19, 2013 7:32:18 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358620365086" type="2" subject="null" body=":-P " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358620375052" readable_date="Jan 19, 2013 7:32:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358620408061" type="1" subject="null" body="Man, jetzt weis ich nicht was ich Schreiben soll" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358620405000" readable_date="Jan 19, 2013 7:33:28 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358620440759" type="2" subject="null" body="Ich auch nicht " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358620450751" readable_date="Jan 19, 2013 7:34:00 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358620534358" type="2" subject="null" body=":-) :-( ;-) :-P =-O :-* :O B-) :-$ :-! :-[ O:-) :-\ :'( :-D OK mir ist wirklich langweilig wenn ich schon alle Smileys schreibe :'( " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358620544423" readable_date="Jan 19, 2013 7:35:34 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358620553427" type="2" subject="null" body="Das war am Schluss jetzt der falsche :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358620566693" readable_date="Jan 19, 2013 7:35:53 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358620558492" type="1" subject="null" body="Mensch Richard ! " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358620561000" readable_date="Jan 19, 2013 7:35:58 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358620637808" type="2" subject="null" body="Morgen schon was vor ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358620649006" readable_date="Jan 19, 2013 7:37:17 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358620759054" type="1" subject="null" body="Zum heulen ist Langeweile echt nicht :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358620756000" readable_date="Jan 19, 2013 7:39:19 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358620800493" type="2" subject="null" body="Ne aber traurig ist es schon :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358620809760" readable_date="Jan 19, 2013 7:40:00 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358620889739" type="1" subject="null" body="Morgen früh ist zumba und dann muss ich deutsch machen, weil heute ist mir das zu anstrengend :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358620799000" readable_date="Jan 19, 2013 7:41:29 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358620946616" type="2" subject="null" body="Du ganzen Tag nichts gemacht ind dann ist ihr das zu anstrengend :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358620960201" readable_date="Jan 19, 2013 7:42:26 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358621044065" type="1" subject="null" body="Was machst du denn morgen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358621033000" readable_date="Jan 19, 2013 7:44:04 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358621104019" type="2" subject="null" body="Mich mit meinen Eltern streiten " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358621113186" readable_date="Jan 19, 2013 7:45:04 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358621412432" type="1" subject="null" body="Wenn ich drüber nach denke, hab ich ein ziemlich sehr sehr schlechtes gewissen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358621412000" readable_date="Jan 19, 2013 7:50:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358621999094" type="2" subject="null" body="Frag mich mal..... hab gerade erfahren dass die mich bereits für Mannschafts WK ein planen..... und ich hab ein echtes Problem !! Wie soll ich denen das den jetzt sagen ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358622025442" readable_date="Jan 19, 2013 7:59:59 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358622070545" type="1" subject="null" body="Ich weiß es nicht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358622072000" readable_date="Jan 19, 2013 8:01:10 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358622570182" type="2" subject="null" body="Wenig hilfreich ..." toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358622579047" readable_date="Jan 19, 2013 8:09:30 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358622657132" type="1" subject="null" body="Tut mir leid" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358622658000" readable_date="Jan 19, 2013 8:10:57 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358622935049" type="2" subject="null" body="Wäre es OK wenn ich nur noch Dienstag und Samstag kommen würde?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358622944086" readable_date="Jan 19, 2013 8:15:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358623158459" type="2" subject="null" body="Antwort wäre nett .... " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358623167328" readable_date="Jan 19, 2013 8:19:18 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358624713097" type="1" subject="null" body="Entschuldigung, hab gegessen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358624715000" readable_date="Jan 19, 2013 8:45:13 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358624742135" type="1" subject="null" body="Wie schaffst du das denn Dienstag zu kommen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358624743000" readable_date="Jan 19, 2013 8:45:42 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358624809334" type="2" subject="null" body="Hab lange schule da und dann eh nicht so gut nach Gladbeck " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358624820124" readable_date="Jan 19, 2013 8:46:49 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358624853059" type="1" subject="null" body="Ach so" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358624850000" readable_date="Jan 19, 2013 8:47:33 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358625170750" type="2" subject="null" body="Tut mir leid " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358625179693" readable_date="Jan 19, 2013 8:52:50 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358625288066" type="1" subject="null" body="Kein Problem" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358625286000" readable_date="Jan 19, 2013 8:54:48 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358626464827" type="2" subject="null" body="Das war das peinlichste Gespräch meines Lebens " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358626475062" readable_date="Jan 19, 2013 9:14:24 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358626614074" type="1" subject="null" body="Welches?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358626611000" readable_date="Jan 19, 2013 9:16:54 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358626675117" type="2" subject="null" body="Das mit meiner Mutter in der ich ihr sage dass ich mir echt unsicher bin" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358626685897" readable_date="Jan 19, 2013 9:17:55 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358626839069" type="1" subject="null" body="Und was hat sie gesagt?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358626836000" readable_date="Jan 19, 2013 9:20:39 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358627137299" type="2" subject="null" body="Es ist meine endscheidung aber ich muss mir bewusst sein dass ich in Dorsten nicht erwarten kann richtig Sport zu machen und das ich keinen hab der wirklich mit schwimmen kann, was bedeutet das ich immer auf die richtigen WK alleine gehen müsste " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358627148875" readable_date="Jan 19, 2013 9:25:37 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358627171768" type="2" subject="null" body="Abgesehen davon erwartet sie das es in Dorsten immer weniger wird " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358627183057" readable_date="Jan 19, 2013 9:26:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358627203086" type="1" subject="null" body="Und wie ist deine Entscheidung?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358627204000" readable_date="Jan 19, 2013 9:26:43 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358627230598" type="2" subject="null" body="Ehrlich gesagt keine Ahnung " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358627239833" readable_date="Jan 19, 2013 9:27:10 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358627330604" type="1" subject="null" body="Ja, das solltest du wirklich besser alleine entscheiden. Ich hab so wieso schon zu viel scheiße gesagt" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358627327000" readable_date="Jan 19, 2013 9:28:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358627719288" type="2" subject="null" body="Tut mir leid, aber ich kann nicht wegen einer normalen Freundin einfach sausen lassen :-( " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358627730038" readable_date="Jan 19, 2013 9:35:19 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358628920205" type="1" subject="null" body="Ok" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358628918000" readable_date="Jan 19, 2013 9:55:20 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358629224843" type="2" subject="null" body="Super jetzt bin ich der der heult :'( " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358629234110" readable_date="Jan 19, 2013 10:00:24 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358629353081" type="1" subject="null" body="Richard, hör auf! Ich wusste doch eh von Anfang an, dass du da hin gehen würdest. Es war bescheuert von mir zu Denken, dass du bleibst. " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358629353000" readable_date="Jan 19, 2013 10:02:33 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358629519203" type="2" subject="null" body="Weist du wie hart es ist zwischen dem Menschen den man am liebsten um sich hat und dem was man liebsten tut zu endscheiden ??? Wenn nicht : sehr schwer !!!!!!!!" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358629531059" readable_date="Jan 19, 2013 10:05:19 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358631104101" type="1" subject="null" body="Ich weiß. Du wirst schon das richtige machen " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358631105000" readable_date="Jan 19, 2013 10:31:44 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358631200373" type="1" subject="null" body="Wann hast du morgen Training? Wie lange bleibst du wach?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358631196000" readable_date="Jan 19, 2013 10:33:20 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358631263566" type="2" subject="null" body="Ich hab morgen komplett frei also bis ich ein schlafe wann hast du zumba" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358631276078" readable_date="Jan 19, 2013 10:34:23 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358631302142" type="1" subject="null" body="Aber sonntags ist doch auch Training oder ?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358631298000" readable_date="Jan 19, 2013 10:35:02 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358631363962" type="2" subject="null" body="Aber alle anderen sind morgen auf einem WK sonst wäre un 3 training " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358631379071" readable_date="Jan 19, 2013 10:36:03 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358631390108" type="1" subject="null" body="Und wann hat man immer Training? Und von wie viel Uhr? Und muss man in den Ferien kommen? Und muss man mit ins Trainingslager fahren? Und muss man zu jedem Wettkampf? Und was ist wenn man Mal nicht zum Training kann?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358631385000" readable_date="Jan 19, 2013 10:36:30 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358631485970" type="1" subject="null" body="Und wie hart ist das Training? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358631482000" readable_date="Jan 19, 2013 10:38:05 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358631962854" type="2" subject="null" body="Montag bis Freitag von 4 bis 7 und Sonntag ( unter Vorbehalt ) von 3 bis 6 Samstag gar nicht. Ich in den Ferien musst du glaub ich nicht kommen. Ins Trainingslager muss man nicht. Zum WK muss man wenn man zeit hat. Und wenn du nicht kommen kannst musst du dich abmelden, wenn du regelmäßig an ein oder zwei tagen nicht kannst ist das glaub ich auch OK . Das training an sich kommt einem nicht so anstrengen vor weil man ganz gut von den anderen mit gezogen wird und die sind auch nett und lassen einem beim ersten mal nicht gleich gegen du wand fahren." toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358631981986" readable_date="Jan 19, 2013 10:46:02 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358632145921" type="1" subject="null" body="Danke" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358632147000" readable_date="Jan 19, 2013 10:49:05 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358632276370" type="2" subject="null" body="Warum wolltest du das wissen ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358632287054" readable_date="Jan 19, 2013 10:51:16 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358632313167" type="1" subject="null" body="Nur so. " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358632310000" readable_date="Jan 19, 2013 10:51:53 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358632386291" type="2" subject="null" body="Hast du jetzt die Hausaufgaben gemacht oder nicht " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358632398062" readable_date="Jan 19, 2013 10:53:06 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358632409198" type="1" subject="null" body="Nein " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358632410000" readable_date="Jan 19, 2013 10:53:29 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358632473072" type="1" subject="null" body="Ich wollte das wissen, weil wenn das Schwimmbad wirklich zu macht muss ich ja irgendwo hin. Schwimmen die da immer in der trag Luft Halle?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358632469000" readable_date="Jan 19, 2013 10:54:33 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358632610159" type="2" subject="null" body="Am Sonntag nicht da sind die im Hallenbad und im Sommer hat das Freibad keine träg Luft halle " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358632620366" readable_date="Jan 19, 2013 10:56:50 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358632658021" type="1" subject="null" body="Und sonst immer da? Ach du scheiße" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358632656000" readable_date="Jan 19, 2013 10:57:38 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358632682751" type="2" subject="null" body="Warum den scheiße ???:-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358632694402" readable_date="Jan 19, 2013 10:58:02 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358632988473" type="2" subject="null" body="Ich will dir nix einreden aber meine Mutter meinte dass wenn man sowieso wechseln will es sich nicht lohnt bis zum Sommer zu warten weil man dann nur schwerer wieder richtig rein kommt abgesehen davon hat sie gesagt dass sie vermutet dass wenn das Hallenbad zu macht sie nur noch zwei zweiten im Atlantis bekommen also wenn dir zweimal reicht musst du nicht wechseln " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358633004069" readable_date="Jan 19, 2013 11:03:08 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358633279007" type="1" subject="null" body="Ich kann aber jetzt noch nicht wechseln, außerdem wechsel ich nur wenn senem auch mit kommt" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358633279000" readable_date="Jan 19, 2013 11:07:59 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358633321319" type="2" subject="null" body="Ich weis " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358633334066" readable_date="Jan 19, 2013 11:08:41 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358633349079" type="1" subject="null" body="Woher?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358633350000" readable_date="Jan 19, 2013 11:09:09 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358633563396" type="2" subject="null" body="Dass du momentan nicht wechseln willst oder kannst dicht ich mir schon sonst wärst du damit schon ehr raus gerückt und dass du nur mit Senem wechseltst war klar weil du halt so bist. Aber warum kannst du jetzt nicht wechseln " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358633575268" readable_date="Jan 19, 2013 11:12:43 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358633569852" type="2" subject="null" body="?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358633579732" readable_date="Jan 19, 2013 11:12:49 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358633655064" type="1" subject="null" body="Weil ich gerade beim injoy angemeldet bin, für ein halbes Jahr und das ist teuer. Deswegen soll ich dann da auch hin gehen " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358633655000" readable_date="Jan 19, 2013 11:14:15 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358633686933" type="1" subject="null" body="Weil ich halt so bin? :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358633688000" readable_date="Jan 19, 2013 11:14:46 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358633801552" type="2" subject="null" body="Was machst du bei injoy ?? Du büßt halt so dass du deine Freundin nicht alleine lässt, ist doch ne sympathische Eigenschaft :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358633813894" readable_date="Jan 19, 2013 11:16:41 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358633850102" type="1" subject="null" body="Aber die Wahrscheinlichkeit das ich da hin wechsel ist eigentlich Minis 32 . Weil ich nicht weiß ob meine Mama mich immer so viel fährt, ich keine Zeit mehr für meine Freundinnen habe und senem glaub ich nicht mit wechselt. Eher hör ich auf zu schwimmen als das ich da hin Wechsel" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358633843000" readable_date="Jan 19, 2013 11:17:30 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358633908110" type="2" subject="null" body="Auch das dachte ich mir schon " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358633917066" readable_date="Jan 19, 2013 11:18:28 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358633938095" type="1" subject="null" body="Tja Schade" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358633939000" readable_date="Jan 19, 2013 11:18:58 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358633973886" type="2" subject="null" body="Wäre trotzdem schön gewesen" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358633983075" readable_date="Jan 19, 2013 11:19:33 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634012899" type="1" subject="null" body="Ja " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634014000" readable_date="Jan 19, 2013 11:20:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358634092381" type="2" subject="null" body="Ich hatte immer sehr viel so aß mit dir zu schwimmen :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358634104088" readable_date="Jan 19, 2013 11:21:32 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634307100" type="1" subject="null" body="Ich hab heute mit senem schon über dich geredet, sie findet das auch traurig. Und ich wollte ehrlich gesagt, dass meine Mama das nicht direkt mitkriegt, dass du gehst. Weil ich dann immer danach darauf noch Mal angesprochen werde und in einen heul krampf verfalle. Esma hat es ihr aber gesagt und ich wurde nichts gefragt... Mama meinte nur ob wir dann bald auch da hin wollen, weil die das Schwimmbad in lembeck auch zu klein findet" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634298000" readable_date="Jan 19, 2013 11:25:07 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634337198" type="1" subject="null" body="Ich rede eine scheiße " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634338000" readable_date="Jan 19, 2013 11:25:37 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358634367597" type="2" subject="null" body="So scheiße ist das nicht " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358634375017" readable_date="Jan 19, 2013 11:26:07 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634373914" type="1" subject="null" body="Richard, hör auf damit, sowas zu Schreiben" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634375000" readable_date="Jan 19, 2013 11:26:13 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634391144" type="1" subject="null" body="Oh doch" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634393000" readable_date="Jan 19, 2013 11:26:31 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358634415280" type="2" subject="null" body="OK OK " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358634424043" readable_date="Jan 19, 2013 11:26:55 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634448952" type="1" subject="null" body=":) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634447000" readable_date="Jan 19, 2013 11:27:28 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358634531340" type="2" subject="null" body=":) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358634543237" readable_date="Jan 19, 2013 11:28:51 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634581765" type="1" subject="null" body=":'-(" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634580000" readable_date="Jan 19, 2013 11:29:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358634638847" type="2" subject="null" body=":'-(" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358634648148" readable_date="Jan 19, 2013 11:30:38 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634671148" type="1" subject="null" body="Und jetzt? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634666000" readable_date="Jan 19, 2013 11:31:11 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358634696909" type="2" subject="null" body="Was meinst du ??" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358634707828" readable_date="Jan 19, 2013 11:31:36 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634724232" type="1" subject="null" body=" Weiß ich nicht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634725000" readable_date="Jan 19, 2013 11:32:04 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358634809774" type="2" subject="null" body="Und nette jungen in Aussicht ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358634821889" readable_date="Jan 19, 2013 11:33:29 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634855068" type="1" subject="null" body="Nette mädchen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634856000" readable_date="Jan 19, 2013 11:34:15 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358634885288" type="2" subject="null" body="Erst antworten dann darfst du fragen :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358634896081" readable_date="Jan 19, 2013 11:34:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634908103" type="1" subject="null" body="Weist du wer heute auch bei dem vor spiel da war ? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634905000" readable_date="Jan 19, 2013 11:35:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358634929032" type="2" subject="null" body="Ne wer" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358634939070" readable_date="Jan 19, 2013 11:35:29 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634950075" type="1" subject="null" body="Daniel" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634952000" readable_date="Jan 19, 2013 11:35:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358634971075" type="2" subject="null" body="Habt ihr noch Streit" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358634977862" readable_date="Jan 19, 2013 11:36:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358634976672" type="1" subject="null" body="Wenn ich ihn sehe könnte ich ihm ins Gesicht kotzen!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358634979000" readable_date="Jan 19, 2013 11:36:16 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358634992931" type="2" subject="null" body="Nahm ich als ja " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358635004401" readable_date="Jan 19, 2013 11:36:32 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635011661" type="1" subject="null" body="Nein wir haben gar nicht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635010000" readable_date="Jan 19, 2013 11:36:51 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358635045851" type="2" subject="null" body="Du willst ihm ins Gesicht kotzen das ist nicht normal" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358635056776" readable_date="Jan 19, 2013 11:37:25 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635069185" type="1" subject="null" body="Wir streiten uns echt nicht, weil wir nicht reden oder Schreiben. " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635071000" readable_date="Jan 19, 2013 11:37:49 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635083410" type="1" subject="null" body="Vollkommen normal" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635085000" readable_date="Jan 19, 2013 11:38:03 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358635125323" type="2" subject="null" body="Dann willst du mir auch ins Gesicht kotzen ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358635134555" readable_date="Jan 19, 2013 11:38:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635149347" type="1" subject="null" body="Nein" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635147000" readable_date="Jan 19, 2013 11:39:09 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358635177766" type="2" subject="null" body="Ich hoffe das ist ein gutes Zeichen :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358635188088" readable_date="Jan 19, 2013 11:39:37 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635196096" type="1" subject="null" body="Wir waren doch nicht zusammen " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635194000" readable_date="Jan 19, 2013 11:39:56 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358635242286" type="2" subject="null" body="Warum ward ihr den jetzt doch nicht zusammen" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358635252098" readable_date="Jan 19, 2013 11:40:42 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635298874" type="1" subject="null" body="Nein. Du und ich waren nicht zusammen, deswegen werde ich dir nicht ins Gesicht kotzen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635299000" readable_date="Jan 19, 2013 11:41:38 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358635320501" type="2" subject="null" body="Sehr nett von dir " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358635329350" readable_date="Jan 19, 2013 11:42:00 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635350505" type="1" subject="null" body="Ach Mensch" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635348000" readable_date="Jan 19, 2013 11:42:30 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358635381825" type="2" subject="null" body="What's wrong ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358635393976" readable_date="Jan 19, 2013 11:43:01 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635414864" type="1" subject="null" body="Nothing" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635413000" readable_date="Jan 19, 2013 11:43:34 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358635491077" type="2" subject="null" body="Aber warum redet ihr den gar nicht mehr miteinander??" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358635500411" readable_date="Jan 19, 2013 11:44:51 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635537247" type="1" subject="null" body="Weil ich ihn hasse! Er ist ekelig! " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635533000" readable_date="Jan 19, 2013 11:45:37 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358635590269" type="2" subject="null" body="OK sensibles Thema, was gibts sonst neues" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358635599492" readable_date="Jan 19, 2013 11:46:30 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635591241" type="1" subject="null" body="Du hast mich vor gestern gefragt, dass du doch eigentlich bei den mädchen gut abkommst, ne? Bei wem willst du denn gut Abkommen? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635495000" readable_date="Jan 19, 2013 11:46:31 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635624190" type="1" subject="null" body="Nichts , bei dir?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635622000" readable_date="Jan 19, 2013 11:47:04 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358635651601" type="2" subject="null" body="Auch nichts " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358635659005" readable_date="Jan 19, 2013 11:47:31 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358635677023" type="1" subject="null" body="Schadeee" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358635675000" readable_date="Jan 19, 2013 11:47:57 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358635757590" type="2" subject="null" body="Eigentlich bei dir aber da das eh nichts wird dachte ich kannste sie auch fragen ob es speziell an dir lag oder ob es einfach Zufall war das das nichts wurde " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358635768258" readable_date="Jan 19, 2013 11:49:17 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636020020" type="1" subject="null" body="Ach so und weist du was ? Verliebe dich nie in eine Über Sms ! Denn In Wirklichkeit sind die dann im Real life anders, du Ekelst dich vor ihm oder der und ihr führt eine handy Beziehung und das ist das schlimmste auf der Welt. Für dich und deine Freunde. Weil mit denen kannst du nichts ordentliches mehr machen weil du dann in deinem handy lebst. Und wenn du dann dich nicht mals traust Schluss zu machen. Läuft das ganze über 9 Monate so, his du ihn oder sie so lange provoziert hast bis er ENDLICH Schluss macht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636013000" readable_date="Jan 19, 2013 11:53:40 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636063451" type="1" subject="null" body="Oh , ich Breue es gerade, dir die frage gestellt Zu haben" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636060000" readable_date="Jan 19, 2013 11:54:23 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636164560" type="2" subject="null" body="Ich hab mich aber nicht über SMS in dich verliebt und ich bin immer so wie ich bin und auch würde auch nie ne Beziehung über SMS führen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636174781" readable_date="Jan 19, 2013 11:56:04 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636184810" type="2" subject="null" body="Zu spät " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636193069" readable_date="Jan 19, 2013 11:56:24 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636229501" type="2" subject="null" body="Außerdem ist das mittlerweile eh vorbei " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636239064" readable_date="Jan 19, 2013 11:57:09 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636269110" type="1" subject="null" body="Was ist vorbei?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636265000" readable_date="Jan 19, 2013 11:57:49 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636322547" type="2" subject="null" body="Das ich was bei dir versuche " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636333094" readable_date="Jan 19, 2013 11:58:42 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636353584" type="1" subject="null" body="Die lange Sms ging nicht über dich und mich, sondern über Daniel und mich. Und so solltest du es nie machen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636354000" readable_date="Jan 19, 2013 11:59:13 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636395904" type="2" subject="null" body="Hatte ich nicht vor " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636405758" readable_date="Jan 19, 2013 11:59:55 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636399072" type="1" subject="null" body="Ach so" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636399000" readable_date="Jan 19, 2013 11:59:59 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636419941" type="1" subject="null" body="Gut" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636422000" readable_date="Jan 20, 2013 12:00:19 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636501671" type="2" subject="null" body="Dann will ich jetzt wissen warum du von mir wissen wolltest was ich von einer Freundin erwarte " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636512070" readable_date="Jan 20, 2013 12:01:41 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636545089" type="1" subject="null" body="Weil ich das einfach wissen musste" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636547000" readable_date="Jan 20, 2013 12:02:25 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636583780" type="2" subject="null" body="Da find ich meine Antwort aber konkreter " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636596070" readable_date="Jan 20, 2013 12:03:03 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636639095" type="1" subject="null" body="Ja ich weiß. Finde ich auch" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636640000" readable_date="Jan 20, 2013 12:03:59 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636677581" type="2" subject="null" body="Du bist wirklich ehrlich " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636687068" readable_date="Jan 20, 2013 12:04:37 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636701162" type="1" subject="null" body=":D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636703000" readable_date="Jan 20, 2013 12:05:01 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636711102" type="1" subject="null" body="Kannst Mal sehen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636709000" readable_date="Jan 20, 2013 12:05:11 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636735954" type="2" subject="null" body="Du wirst es mir nicht sagen oder ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636746056" readable_date="Jan 20, 2013 12:05:35 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636845173" type="1" subject="null" body="Nein" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636842000" readable_date="Jan 20, 2013 12:07:25 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636865171" type="2" subject="null" body="Ok " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636873061" readable_date="Jan 20, 2013 12:07:45 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636883148" type="1" subject="null" body="Darf ich dich noch was fragen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636884000" readable_date="Jan 20, 2013 12:08:03 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636894178" type="2" subject="null" body="Klarv" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636902862" readable_date="Jan 20, 2013 12:08:14 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636933173" type="1" subject="null" body="Aber kein Wort zu niemandem, ne?;) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636929000" readable_date="Jan 20, 2013 12:08:53 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358636960591" type="2" subject="null" body="Ist klar :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358636970085" readable_date="Jan 20, 2013 12:09:20 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358636994108" type="1" subject="null" body="Wo würdest du dich mit einem mädchen treffen? Was du aber gerade erst kennen gelernt hast?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358636995000" readable_date="Jan 20, 2013 12:09:54 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358637029889" type="2" subject="null" body="Du meinst auf einem date " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358637039044" readable_date="Jan 20, 2013 12:10:29 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358637052085" type="1" subject="null" body="Ja" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358637054000" readable_date="Jan 20, 2013 12:10:52 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358637133402" type="2" subject="null" body="In ein Café denke ich , wurdest du eingeladen ??:-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358637144004" readable_date="Jan 20, 2013 12:12:13 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358637220731" type="1" subject="null" body="Als Ob ich eingeladen werden würde" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358637217000" readable_date="Jan 20, 2013 12:13:40 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358637265813" type="2" subject="null" body="Warum fragst dann sowas " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358637274938" readable_date="Jan 20, 2013 12:14:25 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358637338771" type="1" subject="null" body="Weil fridi und ich das in der Nacht von Donnerstag auf Freitag überlegt hatten" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358637335000" readable_date="Jan 20, 2013 12:15:38 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358637377602" type="1" subject="null" body="Und findest du, dass immer der junge nach nem treffen oder Date fragen muss?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358637378000" readable_date="Jan 20, 2013 12:16:17 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358637393960" type="2" subject="null" body="Nein " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358637400063" readable_date="Jan 20, 2013 12:16:33 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358637399091" type="1" subject="null" body="Und was würdest du mit deiner Freundin machen? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358637402000" readable_date="Jan 20, 2013 12:16:39 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358637499696" type="2" subject="null" body="Zeit verbringen, sich filme ansehen , hin und wieder was zusammen essen , sowas halt " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358637510515" readable_date="Jan 20, 2013 12:18:19 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358637552074" type="1" subject="null" body="Aber was würdest du während Zeit verbringen machen? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358637549000" readable_date="Jan 20, 2013 12:19:12 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358637638478" type="2" subject="null" body="Keine Ahnung ich glaube das man sowas nicht planen müssen soll , abgesehen davon hängt das von den Menschen ab" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358637649059" readable_date="Jan 20, 2013 12:20:38 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358637681125" type="1" subject="null" body="Danke :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358637682000" readable_date="Jan 20, 2013 12:21:21 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358637718093" type="2" subject="null" body="Bitte ich nehme gerne an Studien teil :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358637727102" readable_date="Jan 20, 2013 12:21:58 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358637761085" type="1" subject="null" body="Ja klar :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358637759000" readable_date="Jan 20, 2013 12:22:41 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358637818740" type="2" subject="null" body="Und das habt ihr euch gefragt ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358637829059" readable_date="Jan 20, 2013 12:23:38 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358637870572" type="1" subject="null" body="Nein nicht alles manches hab auch nur ich mich gerade gefragt" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358637871000" readable_date="Jan 20, 2013 12:24:30 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358637910610" type="2" subject="null" body="Oh nur mal aus Interesse was wurde Mädchen da den machen wollen ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358637921442" readable_date="Jan 20, 2013 12:25:10 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358637944272" type="1" subject="null" body="Wann?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358637946000" readable_date="Jan 20, 2013 12:25:44 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358637984955" type="2" subject="null" body="Alles was du mich gefragt hast nur was Mädchen da machen wollen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358637995056" readable_date="Jan 20, 2013 12:26:24 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358638115137" type="1" subject="null" body="Oh das Problem ist das wir das ja nicht wussten. Aber ich finde es Cool wenn man mit seinem Freund einfach so quatschen kann und ich weiß nicht wo man sich treffen würde" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358638113000" readable_date="Jan 20, 2013 12:28:35 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358638172508" type="2" subject="null" body="Also kannst du nicht dem ersten schritt machen" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358638182143" readable_date="Jan 20, 2013 12:29:32 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358638671150" type="2" subject="null" body="War nur ne Feststellung , wie willst du jemanden einladen wenn du nicht weist wohin ? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358638682527" readable_date="Jan 20, 2013 12:37:51 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358659893124" type="1" subject="null" body="Deswegen hab ich dich gefragt " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358659890000" readable_date="Jan 20, 2013 6:31:33 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358667867125" type="2" subject="null" body="Jetzt ist die Anmeldung abgegeben ....." toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358667879048" readable_date="Jan 20, 2013 8:44:27 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358669093055" type="1" subject="null" body="Ja" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358669090000" readable_date="Jan 20, 2013 9:04:53 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358669137062" type="1" subject="null" body="Tut mir übrigens leid, aber ich bin in der Nacht eingeschlafen und heute morgen als ich geschrieben hatte wieder" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358669133000" readable_date="Jan 20, 2013 9:05:37 AM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358669338870" type="2" subject="null" body="Kein Problem :-) wann hast du zumba " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358669350088" readable_date="Jan 20, 2013 9:08:58 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358669416067" type="1" subject="null" body="10" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358669417000" readable_date="Jan 20, 2013 9:10:16 AM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358680388134" type="1" subject="null" body="Ah es schneit! " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358680389000" readable_date="Jan 20, 2013 12:13:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358681656056" type="2" subject="null" body="Jaaa !!!! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358681668065" readable_date="Jan 20, 2013 12:34:16 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358681848178" type="2" subject="null" body="Und ich muss nachher schippen" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358681858091" readable_date="Jan 20, 2013 12:37:28 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358682418199" type="1" subject="null" body="Ist doch egal :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358682415000" readable_date="Jan 20, 2013 12:46:58 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358682754201" type="2" subject="null" body="Stimmt :-). Wie war zumba " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358682762674" readable_date="Jan 20, 2013 12:52:34 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358682875751" type="2" subject="null" body="Ich wollte wissen was das ist und hab das gegooglet aber ich glaub das war falsch da war so ein kerl im Schotten rock der so rum gesprungen ist:-D sah schon lustig aus :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358682887134" readable_date="Jan 20, 2013 12:54:35 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358683012031" type="1" subject="null" body="Nein so was ist das nicht :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358683009000" readable_date="Jan 20, 2013 12:56:52 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358683033253" type="1" subject="null" body="War gut. Was machst du denn jetzt?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358683020000" readable_date="Jan 20, 2013 12:57:13 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358683123497" type="2" subject="null" body="Vor dem Fernseher vergammeln , hab echt nichts zutun. Ich gab sogar schon alle Hausaufgaben für die Woche gemacht !!!! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358890551070" readable_date="Jan 20, 2013 12:58:43 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358683125823" type="2" subject="null" body="Du " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358683136045" readable_date="Jan 20, 2013 12:58:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358683574433" type="1" subject="null" body="Weist du was ? Ich hab noch nie in meinem Leben fernsehen geguckt, außer abends, nach dem Training oder so. Und wenn ich Mal Krank war. Dann hab ich morgens und nachmittags geguckt :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358683573000" readable_date="Jan 20, 2013 1:06:14 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358683610586" type="1" subject="null" body="Krass. Also ich hab immer noch nicht mit Hausaufgaben angefangen. Wir Schreiben diese Woche auch noch einen Chemie Test" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358683606000" readable_date="Jan 20, 2013 1:06:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358683661673" type="2" subject="null" body="Du bist wahrscheinlich auch immer gut beschäftigt :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358683676909" readable_date="Jan 20, 2013 1:07:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358683676763" type="2" subject="null" body="Bei wem hast du Chemie" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358964846178" readable_date="Jan 20, 2013 1:07:56 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358683703055" type="1" subject="null" body="Borr " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358683700000" readable_date="Jan 20, 2013 1:08:23 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358683729228" type="2" subject="null" body="Der ist streng oder ? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358683740118" readable_date="Jan 20, 2013 1:08:49 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358683808101" type="1" subject="null" body="Joa. Ist nicht so mein Lieblings Lehrer. Fridi und ich werden öfters Mal ermahnt, weil wir lachen oder quatschen :-) und Chemie ist einfach langweilig." toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358683807000" readable_date="Jan 20, 2013 1:10:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358683897317" type="2" subject="null" body="Ich glaube du lachst zu viel !!! Sonderfeld ermahnt di h auch ständig des wegen :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358683908340" readable_date="Jan 20, 2013 1:11:37 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358683951666" type="1" subject="null" body="Ja erwi auch :-) aber was soll man auch 7 Stunden in einer schule machen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358683949000" readable_date="Jan 20, 2013 1:12:31 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358684168141" type="2" subject="null" body="So langweilig ist das bei Borgmann nicht wenn die mal wieder Geschichten erzählt und man kann gut Hausaufgaben machen :-) keine Ahnung, du könntest was lernen :-) OK das klingt falsch :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358684180059" readable_date="Jan 20, 2013 1:16:08 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358684492100" type="1" subject="null" body="Ja das ist glaub ich auch falsch ;) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358684487000" readable_date="Jan 20, 2013 1:21:32 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358684763174" type="2" subject="null" body=";-) vor allem erwarten alle Lehrer, dass man alles weiß was die je gesagt haben, haben aber alle keine Ahnung von irgendwas was das über ihr fach hinaus geht !!!" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358684777104" readable_date="Jan 20, 2013 1:26:03 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358685047100" type="1" subject="null" body="Jaaa ! Das ist richtig dumm :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358685043000" readable_date="Jan 20, 2013 1:30:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358685174626" type="2" subject="null" body="Frag mal Frau wiemas bei der ist die erde 110% groß :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358685185072" readable_date="Jan 20, 2013 1:32:54 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358685228052" type="1" subject="null" body="Oh :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358685228000" readable_date="Jan 20, 2013 1:33:48 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358685285303" type="2" subject="null" body="Ja das dachten wir auch :-) wo ruber schreibt ihr Chemie " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358685295076" readable_date="Jan 20, 2013 1:34:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358685828087" type="1" subject="null" body="Weiß ich leider nicht :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358685828000" readable_date="Jan 20, 2013 1:43:48 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358685882949" type="2" subject="null" body="Immer ein gutes Zeichen :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358685891673" readable_date="Jan 20, 2013 1:44:42 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686065219" type="1" subject="null" body="Man Richard ich hasse deutsch " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686061000" readable_date="Jan 20, 2013 1:47:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686070933" type="1" subject="null" body="Und franze" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686071000" readable_date="Jan 20, 2013 1:47:50 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686075949" type="1" subject="null" body="Und Chemie" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686073000" readable_date="Jan 20, 2013 1:47:55 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686080955" type="1" subject="null" body="Und Physi" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686082000" readable_date="Jan 20, 2013 1:48:00 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686094084" type="1" subject="null" body="Und Geschichte" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686091000" readable_date="Jan 20, 2013 1:48:14 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686099054" type="1" subject="null" body="Und Politik" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686100000" readable_date="Jan 20, 2013 1:48:19 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686107369" type="1" subject="null" body="Und Erdkunde" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686104000" readable_date="Jan 20, 2013 1:48:27 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686118724" type="1" subject="null" body="Und Musik" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686119000" readable_date="Jan 20, 2013 1:48:38 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686136761" type="1" subject="null" body="Und Kunst" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686133000" readable_date="Jan 20, 2013 1:48:56 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358686147158" type="2" subject="null" body="Ja" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358686156509" readable_date="Jan 20, 2013 1:49:07 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358686163712" type="2" subject="null" body="Hatte ich noch nie " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358686182190" readable_date="Jan 20, 2013 1:49:23 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358686165113" type="2" subject="null" body="Ja" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358977628650" readable_date="Jan 20, 2013 1:49:25 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358686166624" type="2" subject="null" body="Ja" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358977778165" readable_date="Jan 20, 2013 1:49:26 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358686168665" type="2" subject="null" body="Ja" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358977796484" readable_date="Jan 20, 2013 1:49:28 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358686170719" type="2" subject="null" body="Ja" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358686197967" readable_date="Jan 20, 2013 1:49:30 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358686176017" type="2" subject="null" body="Ja und ja " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358686206162" readable_date="Jan 20, 2013 1:49:36 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358686204516" type="2" subject="null" body="Waren das genug jas :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358686214473" readable_date="Jan 20, 2013 1:50:04 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686227822" type="1" subject="null" body="Ja :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686224000" readable_date="Jan 20, 2013 1:50:27 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358686496878" type="2" subject="null" body="Musst du den viel machen ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358686509406" readable_date="Jan 20, 2013 1:54:56 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686631210" type="1" subject="null" body="Ja so halb, eigentlich nicht. Das dauert nur lange. Ich muss zu jedem Kapitel die Personen raus Schreiben und das sind über 30. Den Rest hab ich schon gemacht :-) und franze geht einfach nicht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686629000" readable_date="Jan 20, 2013 1:57:11 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358686885569" type="2" subject="null" body="Ich hasse Hausaufgaben die einfach sind für die man aber trotzdem lange brauch !!!! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358686895182" readable_date="Jan 20, 2013 2:01:25 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358686934114" type="1" subject="null" body="Ja tota sinnlos einfach" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358686928000" readable_date="Jan 20, 2013 2:02:14 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358687174005" type="2" subject="null" body="Manche Lehrer sind aber auch bin Natur aus doof " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358687183078" readable_date="Jan 20, 2013 2:06:14 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358687255259" type="1" subject="null" body="Die meistens" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358687253000" readable_date="Jan 20, 2013 2:07:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358687323629" type="2" subject="null" body="Aber du glauben ja auch noch dass sie nett sind!!! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358687340232" readable_date="Jan 20, 2013 2:08:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358687365142" type="1" subject="null" body=":D yes" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358687365000" readable_date="Jan 20, 2013 2:09:25 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358688019758" type="2" subject="null" body="Bei englisch da fällt mir ein du hattest doch deine Prüfung! Wir war ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358688030048" readable_date="Jan 20, 2013 2:20:19 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358688065154" type="1" subject="null" body="Ich war voll der Meister da drin :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358688061000" readable_date="Jan 20, 2013 2:21:05 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358688141576" type="2" subject="null" body="Voll gut :-) haste ne nite bekommen wie Markus ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358688162067" readable_date="Jan 20, 2013 2:22:21 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358688199217" type="1" subject="null" body="Wir haben noch keine boten :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358688199000" readable_date="Jan 20, 2013 2:23:19 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358688209947" type="1" subject="null" body="Noten" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358688206000" readable_date="Jan 20, 2013 2:23:29 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358688305827" type="2" subject="null" body="Ist trotzdem gut :-) weist du wie sehr ich unseren Garten im ne Schnee liebe ??? Der ist einfach mega geil :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358688315611" readable_date="Jan 20, 2013 2:25:05 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358688363815" type="1" subject="null" body=" Eure Garten ist ja auch ein Park :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358688359000" readable_date="Jan 20, 2013 2:26:03 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358688670132" type="2" subject="null" body=":-) der sieht einfach mega so nach Winter Wunderland aus im Winter :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358688679075" readable_date="Jan 20, 2013 2:31:10 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358688794088" type="1" subject="null" body="Ja eure Garten ist göttlich :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358688793000" readable_date="Jan 20, 2013 2:33:14 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358688877729" type="2" subject="null" body="Kann man so sagen :-) aber wir haben keinen pool" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358688887048" readable_date="Jan 20, 2013 2:34:37 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358688908136" type="1" subject="null" body="Dafür tausend Teiche :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358688904000" readable_date="Jan 20, 2013 2:35:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358688943483" type="2" subject="null" body="Es sind nur 3 " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358688952057" readable_date="Jan 20, 2013 2:35:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358688977107" type="1" subject="null" body="Ja trotzdem :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358688975000" readable_date="Jan 20, 2013 2:36:17 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358689081838" type="2" subject="null" body=":-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358689091055" readable_date="Jan 20, 2013 2:38:01 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358689115869" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358689116000" readable_date="Jan 20, 2013 2:38:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358689149537" type="2" subject="null" body=":-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358689158063" readable_date="Jan 20, 2013 2:39:09 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358689302067" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358689299000" readable_date="Jan 20, 2013 2:41:42 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358689340185" type="2" subject="null" body="Bisschen sehr unkreativ find ich ;-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358689350101" readable_date="Jan 20, 2013 2:42:20 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358689420595" type="1" subject="null" body="Oui " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358689418000" readable_date="Jan 20, 2013 2:43:40 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358689443269" type="2" subject="null" body="Iuo " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358689452203" readable_date="Jan 20, 2013 2:44:03 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358689475068" type="1" subject="null" body="Was ist das denn?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358689471000" readable_date="Jan 20, 2013 2:44:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358689498131" type="2" subject="null" body="Iuo ist oui rückwärts :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358689508317" readable_date="Jan 20, 2013 2:44:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358689566129" type="1" subject="null" body="Ja aber das ist keine Sprache" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358689562000" readable_date="Jan 20, 2013 2:46:06 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358689590647" type="2" subject="null" body="Oui aber schon ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358689598590" readable_date="Jan 20, 2013 2:46:30 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358689626068" type="1" subject="null" body="Französisch :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358689623000" readable_date="Jan 20, 2013 2:47:06 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358689677401" type="2" subject="null" body="Das ist unfair !!!!! Ich spreche kein Wort französisch !!!! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358689687044" readable_date="Jan 20, 2013 2:47:57 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358689910085" type="1" subject="null" body="Vitam miseram agere" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358689911000" readable_date="Jan 20, 2013 2:51:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358690025113" type="2" subject="null" body="OK lass das !! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358690034095" readable_date="Jan 20, 2013 2:53:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358690055106" type="1" subject="null" body="Was heißt das ?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358690056000" readable_date="Jan 20, 2013 2:54:15 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358690092228" type="2" subject="null" body="Irgendwas mit leben und das es nichts gutes tut vielleicht ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358981152890" readable_date="Jan 20, 2013 2:54:52 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358690134068" type="1" subject="null" body="Ich hab kein Latein und weis das besse :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358690135000" readable_date="Jan 20, 2013 2:55:34 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358690152233" type="1" subject="null" body="Ein unglückliches Leben führen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358690153000" readable_date="Jan 20, 2013 2:55:52 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358690171368" type="2" subject="null" body="Ach das ist latein ??? Und das ist falsch " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358690179990" readable_date="Jan 20, 2013 2:56:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358690196320" type="1" subject="null" body="Nein das ist richtig!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358690197000" readable_date="Jan 20, 2013 2:56:36 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358690334597" type="2" subject="null" body='" dass unglückliche leben führt" steht da :-) eigentlich ist das nicht mal ein Satz ' toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358690345195" readable_date="Jan 20, 2013 2:58:54 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358690380338" type="1" subject="null" body="Ja ist mir doch egal :D für mich ist das ein Satz" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358690377000" readable_date="Jan 20, 2013 2:59:40 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358690430058" type="2" subject="null" body=":-D ja ein dass Satz :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358690439217" readable_date="Jan 20, 2013 3:00:30 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358690523092" type="1" subject="null" body="Nix , nivis, nivium" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358690523000" readable_date="Jan 20, 2013 3:02:03 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358690591197" type="2" subject="null" body="Ja es schneit :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358690600063" readable_date="Jan 20, 2013 3:03:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358690630141" type="1" subject="null" body="Das heißt aber nur Schnee :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358690627000" readable_date="Jan 20, 2013 3:03:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358690745353" type="2" subject="null" body="Eigentlich ja ja viel Schnee " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358690755048" readable_date="Jan 20, 2013 3:05:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358690780340" type="1" subject="null" body=":D Latein ist blöd" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358690781000" readable_date="Jan 20, 2013 3:06:20 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358690818690" type="2" subject="null" body="Ja vor allem brauch man das nie wieder " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358690830418" readable_date="Jan 20, 2013 3:06:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358690850805" type="1" subject="null" body="Ja :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358690851000" readable_date="Jan 20, 2013 3:07:30 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358690893287" type="2" subject="null" body="Wird nächstes Jahr aber eh abgewählt :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358690902053" readable_date="Jan 20, 2013 3:08:13 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358690971099" type="1" subject="null" body="Gut :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358690967000" readable_date="Jan 20, 2013 3:09:31 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358690995853" type="2" subject="null" body="Machst du franze weiter " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358691005378" readable_date="Jan 20, 2013 3:09:55 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358691044399" type="1" subject="null" body="Ich Denke schon, ich kann das zwar nicht aber trotzdem" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358691044000" readable_date="Jan 20, 2013 3:10:44 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358691179462" type="2" subject="null" body="Ich kann sprachen einfach nicht dann reichen schon englisch und deutsch " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358691190527" readable_date="Jan 20, 2013 3:12:59 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358691269168" type="1" subject="null" body="Ich kann auch sprachen nicht :D auf dem Zeugniss hatte ich in jeder 3 . Aber wenn ich franze weiter wähle kann ich vielleicht Physik Abwählen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358691268000" readable_date="Jan 20, 2013 3:14:29 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358691326961" type="2" subject="null" body="WAS ??? Du willst Physik abwählen ????? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358691337149" readable_date="Jan 20, 2013 3:15:26 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358691425513" type="1" subject="null" body="Ja" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358691427000" readable_date="Jan 20, 2013 3:17:05 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358691443110" type="2" subject="null" body="Warum ???? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358691452184" readable_date="Jan 20, 2013 3:17:23 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358691492390" type="1" subject="null" body="Weil man später dann so viele Formeln können muss" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358691492000" readable_date="Jan 20, 2013 3:18:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358691515364" type="2" subject="null" body="Geht " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358691525054" readable_date="Jan 20, 2013 3:18:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358691676177" type="2" subject="null" body="Aber baruchst du nicht mindestens zwei Natur Wissenschaften und du willst doch nicht zu bio noch Chemie nehmen oder ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358691686102" readable_date="Jan 20, 2013 3:21:16 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358691693061" type="1" subject="null" body="Ja ich weiß es doch auch nicht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358691689000" readable_date="Jan 20, 2013 3:21:33 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358691823807" type="2" subject="null" body="Ach finchen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358691834784" readable_date="Jan 20, 2013 3:23:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358691924099" type="1" subject="null" body="Was ist los?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358691921000" readable_date="Jan 20, 2013 3:25:24 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358691951917" type="2" subject="null" body="Nix" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358691960156" readable_date="Jan 20, 2013 3:25:51 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358691976055" type="1" subject="null" body="So nennt mich meine Mutter auch immer, zumindest dann wenn ich nicht irgendwas angestellt hab " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358691975000" readable_date="Jan 20, 2013 3:26:16 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358692037586" type="2" subject="null" body="Hast doch auch nichts angestellt oder :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358692049047" readable_date="Jan 20, 2013 3:27:17 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358692115067" type="1" subject="null" body="Nein, mach ich nie" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358692112000" readable_date="Jan 20, 2013 3:28:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358692133876" type="2" subject="null" body="Ist klar " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358692145125" readable_date="Jan 20, 2013 3:28:53 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358692160064" type="1" subject="null" body="Wirklich " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358692155000" readable_date="Jan 20, 2013 3:29:20 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358692249879" type="2" subject="null" body="Ach ist das so ( josi ist der Name den du nicht magst oder ??) , josi??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358692262122" readable_date="Jan 20, 2013 3:30:49 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358692316115" type="1" subject="null" body=":D yes! Mein opi nennt mich so, aber der darf das " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358692316000" readable_date="Jan 20, 2013 3:31:56 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358692443308" type="2" subject="null" body="OK wie nennt dich keiner und es ärgert dich so genannt zu werden ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358692455061" readable_date="Jan 20, 2013 3:34:03 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358692479065" type="1" subject="null" body="Gibt es nicht :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358692480000" readable_date="Jan 20, 2013 3:34:39 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358692501717" type="2" subject="null" body="Oh doch ich finde was :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358692511051" readable_date="Jan 20, 2013 3:35:01 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358692532052" type="1" subject="null" body="Eh nicht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358692528000" readable_date="Jan 20, 2013 3:35:32 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358692658205" type="2" subject="null" body="Joejoe ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358692667038" readable_date="Jan 20, 2013 3:37:38 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358692798563" type="1" subject="null" body="Wunderschön " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358692798000" readable_date="Jan 20, 2013 3:39:58 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358692824749" type="2" subject="null" body="Das klingt ironisch " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358692836075" readable_date="Jan 20, 2013 3:40:24 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358692870115" type="1" subject="null" body="Ach komm hör auf mit den Namen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358692870000" readable_date="Jan 20, 2013 3:41:10 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358692906271" type="2" subject="null" body="OK " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358692914041" readable_date="Jan 20, 2013 3:41:46 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358692932136" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358692932000" readable_date="Jan 20, 2013 3:42:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358692994259" type="2" subject="null" body=";-) " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 3:43:14 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358693220781" type="1" subject="null" body="Unkreativ " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358693216000" readable_date="Jan 20, 2013 3:47:00 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358693244897" type="2" subject="null" body="Oui " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 3:47:24 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358693298437" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358693296000" readable_date="Jan 20, 2013 3:48:18 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358693487166" type="2" subject="null" body="Sehr unergiebig :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358693497061" readable_date="Jan 20, 2013 3:51:27 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358693514066" type="1" subject="null" body="Was heißt das ?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358693515000" readable_date="Jan 20, 2013 3:51:54 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358693618328" type="2" subject="null" body="Wir reden ohne Sinn heißt das " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358693629161" readable_date="Jan 20, 2013 3:53:38 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358693648590" type="1" subject="null" body="Oh das stimmt, sorry" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358693649000" readable_date="Jan 20, 2013 3:54:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358693738537" type="2" subject="null" body="Ich darf mich nicht so oft endschuldigen dann du auch nicht" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358693747045" readable_date="Jan 20, 2013 3:55:38 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358693810729" type="1" subject="null" body="Ich schon :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358693808000" readable_date="Jan 20, 2013 3:56:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358693847089" type="2" subject="null" body="Ich glaub hier wird mit zweierlei mass gemessen :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358693856067" readable_date="Jan 20, 2013 3:57:27 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358693888057" type="1" subject="null" body="Warum schreibst du immer in so Rätseln?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358693884000" readable_date="Jan 20, 2013 3:58:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358693938236" type="2" subject="null" body="Weil ich dachte ich verwirre dich mal :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358693947048" readable_date="Jan 20, 2013 3:58:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358693988302" type="1" subject="null" body="Mensch Richard" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358693985000" readable_date="Jan 20, 2013 3:59:48 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358694045868" type="2" subject="null" body="Mensch fine(joejoe )" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358694055381" readable_date="Jan 20, 2013 4:00:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358694130190" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358694126000" readable_date="Jan 20, 2013 4:02:10 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358694440603" type="2" subject="null" body=":-) was machst du gerade so ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358694449739" readable_date="Jan 20, 2013 4:07:20 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358694521168" type="1" subject="null" body="Deutsch !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358694517000" readable_date="Jan 20, 2013 4:08:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358694547436" type="2" subject="null" body="Immer noch ????? Das ist ja ne scheiß Aufgabe" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358694557056" readable_date="Jan 20, 2013 4:09:07 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358694780111" type="1" subject="null" body="Ich bin auf der 13. Word Seite und im Buch Seite 143 und markiere die Charakter Eigenschaften in dem Buch :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358694779000" readable_date="Jan 20, 2013 4:13:00 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358694844427" type="2" subject="null" body="Das wär mir zu blöd " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358694853276" readable_date="Jan 20, 2013 4:14:04 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358694878138" type="1" subject="null" body="Mir nicht :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358694874000" readable_date="Jan 20, 2013 4:14:38 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358694887252" type="1" subject="null" body="Was machst du?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358694885000" readable_date="Jan 20, 2013 4:14:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358695122124" type="2" subject="null" body="Lesen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1359065432382" readable_date="Jan 20, 2013 4:18:42 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358695123971" type="2" subject="null" body=":-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1359065452964" readable_date="Jan 20, 2013 4:18:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358695149248" type="1" subject="null" body="Welches Buch?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358695150000" readable_date="Jan 20, 2013 4:19:09 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358695171126" type="2" subject="null" body="Couch DB " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358695180082" readable_date="Jan 20, 2013 4:19:31 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358695298120" type="1" subject="null" body="Kenn ich nicht :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358695295000" readable_date="Jan 20, 2013 4:21:38 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358695327329" type="2" subject="null" body="Hätte mich auch echt überrascht :-) " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 4:22:07 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358695372053" type="1" subject="null" body=":-) jo" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358695373000" readable_date="Jan 20, 2013 4:22:52 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358695424222" type="2" subject="null" body="Stör ich bei den HA ??? " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 4:23:44 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358695455068" type="1" subject="null" body="Nö :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358695451000" readable_date="Jan 20, 2013 4:24:15 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358695550832" type="2" subject="null" body="Du musst nur deutsch machen oder " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358695562132" readable_date="Jan 20, 2013 4:25:50 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358695644113" type="1" subject="null" body="Ja " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358695640000" readable_date="Jan 20, 2013 4:27:24 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358695706234" type="2" subject="null" body="Dann bist du ja fast fertig " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358695715873" readable_date="Jan 20, 2013 4:28:26 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358695738868" type="2" subject="null" body="OK vielleicht sich nicht wie lange ist den das blöde Buch " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358695748794" readable_date="Jan 20, 2013 4:28:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358695740693" type="1" subject="null" body="So ziemlich, ja :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358695741000" readable_date="Jan 20, 2013 4:29:00 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358695776054" type="1" subject="null" body="170 Seiten" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358695771000" readable_date="Jan 20, 2013 4:29:36 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358696091065" type="2" subject="null" body="Wie geht eigentlich zumba " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358696100111" readable_date="Jan 20, 2013 4:34:51 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358696147247" type="1" subject="null" body="Da gibt es keine Technik :-) eine tanzt das vor und die anderen nach :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358696147000" readable_date="Jan 20, 2013 4:35:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358696345036" type="2" subject="null" body="Oh :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358696355195" readable_date="Jan 20, 2013 4:39:05 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358697591173" type="1" subject="null" body="Ja :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358697586000" readable_date="Jan 20, 2013 4:59:51 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358697696636" type="2" subject="null" body="OK jetzt musst du mal mt einem Gesprächsthema ruber kommen :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358697710109" readable_date="Jan 20, 2013 5:01:36 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358697787111" type="1" subject="null" body="Ich bin übrigens fertig mit deutsch :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358697770000" readable_date="Jan 20, 2013 5:03:07 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358697789118" type="1" subject="null" body="Und was ist wenn ich keins hab?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358697771000" readable_date="Jan 20, 2013 5:03:09 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358697873219" type="2" subject="null" body="Gut :-) dann bleibt die Unterhaltung so wie sue jetzt ist " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358697884047" readable_date="Jan 20, 2013 5:04:33 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358697926779" type="1" subject="null" body="Und wie ist sie jetzt?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358697923000" readable_date="Jan 20, 2013 5:05:26 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358697949342" type="2" subject="null" body="Unergiebig :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358697964605" readable_date="Jan 20, 2013 5:05:49 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358698125472" type="1" subject="null" body=":* " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358698127000" readable_date="Jan 20, 2013 5:08:45 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358698331567" type="2" subject="null" body="Wir essen jetzt eben " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 5:12:11 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358700212441" type="2" subject="null" body="So jetzt hab ich soviel gegessen das mir schlecht ist :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358700222894" readable_date="Jan 20, 2013 5:43:32 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358700348123" type="1" subject="null" body="Oh nicht gut " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358700349000" readable_date="Jan 20, 2013 5:45:48 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358700371354" type="2" subject="null" body="Geht noch " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358700381044" readable_date="Jan 20, 2013 5:46:11 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358700476071" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358700473000" readable_date="Jan 20, 2013 5:47:56 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358701581620" type="2" subject="null" body="Was machen wir jetzt eigentlich ??? Wird das jetzt ne Freundschaft über Handy ? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358701595622" readable_date="Jan 20, 2013 6:06:21 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358701686095" type="1" subject="null" body="Willst du das ? Also ich finde handy ehrlich gesagt nicht so geil" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358701686000" readable_date="Jan 20, 2013 6:08:06 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358702470766" type="2" subject="null" body="Nein deshalb frag ich " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358702484811" readable_date="Jan 20, 2013 6:21:10 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358702528778" type="1" subject="null" body="Was soll ich Antworten? Nein über handy ist das blöd" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358702529000" readable_date="Jan 20, 2013 6:22:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358702664839" type="2" subject="null" body="Also über Handy ist blöd da sind wir uns einig richtig ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358702676867" readable_date="Jan 20, 2013 6:24:24 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358702698194" type="1" subject="null" body="Ja " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358702698000" readable_date="Jan 20, 2013 6:24:58 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358702718298" type="2" subject="null" body="Was machen wir dann ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358702728056" readable_date="Jan 20, 2013 6:25:18 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358703069134" type="1" subject="null" body="Sag du ich weiß nicht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358703065000" readable_date="Jan 20, 2013 6:31:09 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358703635962" type="2" subject="null" body="Ich kann das doch nicht alleine endscheiden ??? Aber entweder wir sagen wir sind keine Freunde mehr oder wir sagen wir bleiben Freunde dann kann es entweder passieren dass wir einfach nur noch wo tun aber de facto überhaupt nicht mehr Freunde sind oder wir bleiben wirklich Freunde aber dann muss man sich bemühen und so " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358703659061" readable_date="Jan 20, 2013 6:40:35 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358703724195" type="1" subject="null" body="Sag mir was du willst" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358703725000" readable_date="Jan 20, 2013 6:42:04 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358703912458" type="2" subject="null" body="Am schönsten wäre es wenn man richtig Freunde blieben würden aber das ist auch an meisten Arbeit " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358703924040" readable_date="Jan 20, 2013 6:45:12 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358703990065" type="1" subject="null" body="Ok" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358703987000" readable_date="Jan 20, 2013 6:46:30 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358704009474" type="2" subject="null" body="Und was willst du ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358704018042" readable_date="Jan 20, 2013 6:46:49 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358704060451" type="1" subject="null" body="Das selbe" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358704061000" readable_date="Jan 20, 2013 6:47:40 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358704111375" type="2" subject="null" body="OK " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 6:48:31 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358704115901" type="2" subject="null" body=":-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358704128945" readable_date="Jan 20, 2013 6:48:35 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358704261185" type="1" subject="null" body="Darf ich dich was fragen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358704262000" readable_date="Jan 20, 2013 6:51:01 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358704274786" type="2" subject="null" body="Klar " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358704284174" readable_date="Jan 20, 2013 6:51:14 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358704497069" type="1" subject="null" body="Was wäre wenn ich einen festen Freund hätte?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358704493000" readable_date="Jan 20, 2013 6:54:57 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358704580867" type="2" subject="null" body="Dann würde ich mich für dich freuen wie das Freunde so machen, hast du einen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358704591126" readable_date="Jan 20, 2013 6:56:20 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358704619219" type="1" subject="null" body="Kann ich noch was fragen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358704620000" readable_date="Jan 20, 2013 6:56:59 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358704664649" type="2" subject="null" body="Ja " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358704674067" readable_date="Jan 20, 2013 6:57:44 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358704786373" type="1" subject="null" body="Wenn ich mich nicht traue den Typ zu fragen ob wir uns treffen wollen und er mich auch nicht fragen wird, weil es zu spät ist, was würdest du an meiner Stelle machen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358704784000" readable_date="Jan 20, 2013 6:59:46 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358705209758" type="2" subject="null" body="Eigentlich würde ich den Arsch zusammen kneifen und es einfach mal versuchen, aber das hilft dir nicht oder ?? Dann würde ich Lugge oder Tim bitten ihr das oder in deinem Fall ihm es zu sagen oder und gucken wie er reagiert, aber mal ihm ernst wenn er nicht blöd ist freut er sich wenn du ihn fragst :-) also wenn du mich fragen würdest würde ich mich freuen :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358705225192" readable_date="Jan 20, 2013 7:06:49 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358705368221" type="2" subject="null" body="Aber wenn du dich nicht traust kann ich dem kerl einen Schubs in die richtige Richtung geben :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358705381462" readable_date="Jan 20, 2013 7:09:28 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358705473283" type="1" subject="null" body="Aber es kommt ja nicht darauf an, ob er sich freut. Because i am to late. " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358705469000" readable_date="Jan 20, 2013 7:11:13 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358705672228" type="2" subject="null" body="Wieso bist du zu spät ??? Ich glaube nicht das es zu spät sein kann !!!!! Kann ich ihn ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358705683422" readable_date="Jan 20, 2013 7:14:32 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358705680092" type="2" subject="null" body="Kenn " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358705691429" readable_date="Jan 20, 2013 7:14:40 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358705764401" type="1" subject="null" body="Nein ich denk nicht das du ihn kennst :-) doch kann es " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358705765000" readable_date="Jan 20, 2013 7:16:04 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358705822107" type="1" subject="null" body="Außerdem weiß ich nicht was ich sagen sollte wenn ich mich mit dem wirklich treffe und so wieso ich finde das total blöd alles !!!!!!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358705817000" readable_date="Jan 20, 2013 7:17:02 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358705845907" type="2" subject="null" body="Frag ihn einfach ist auch nicht schwer :-)" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358705857731" readable_date="Jan 20, 2013 7:17:25 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358705869341" type="2" subject="null" body="Wollen wir Dienstag was zusammen machen ?" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358705879204" readable_date="Jan 20, 2013 7:17:49 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358705871291" type="1" subject="null" body="Ja Wette" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358705868000" readable_date="Jan 20, 2013 7:17:51 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358706261182" type="1" subject="null" body="Das soll ich ihn fragen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358706257000" readable_date="Jan 20, 2013 7:24:21 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358706319432" type="2" subject="null" body="Zum Beispiel :-) und ich wette er sagt ja 100% :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358706328039" readable_date="Jan 20, 2013 7:25:19 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358706439298" type="1" subject="null" body="Wetten wir nicht. Du weist gar nicht wie scheiße ich eigentlich bin" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358706438000" readable_date="Jan 20, 2013 7:27:19 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358706485831" type="2" subject="null" body="Ich mag dich und das schaffen nicht viele also kannst du so scheiße nicht sein :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358706496344" readable_date="Jan 20, 2013 7:28:05 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358706582077" type="1" subject="null" body="Ja, vielleicht Passt das gerade bei dir. Wetten das ich das sein kann. Eigentlich müsstest du das sogar selber schon gemerkt haben" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358706581000" readable_date="Jan 20, 2013 7:29:42 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358706636084" type="2" subject="null" body="Wer ist das den ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358706645580" readable_date="Jan 20, 2013 7:30:36 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358706785713" type="2" subject="null" body="Wir sagen folgendes wenn er nein sagt dann lad ich dich und deine beste Freundin zum Frühstück ein in ein cafe deiner Wahl und wenn er ja sagt dann heißt eins deiner Kinder Richard " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358706799541" readable_date="Jan 20, 2013 7:33:05 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358706806863" type="2" subject="null" body="Ich von mir sicher das er ja sagt :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358706816476" readable_date="Jan 20, 2013 7:33:26 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358706840909" type="2" subject="null" body="Ich bin mir sicher dass er ja sagt :-) wollte ich sagen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358706852801" readable_date="Jan 20, 2013 7:34:00 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358706841132" type="1" subject="null" body="Ok " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358706838000" readable_date="Jan 20, 2013 7:34:01 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358706857027" type="2" subject="null" body="Und wer ist es :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358706866169" readable_date="Jan 20, 2013 7:34:17 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358707147095" type="1" subject="null" body="Sag ich nicht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358707147000" readable_date="Jan 20, 2013 7:39:07 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358707184631" type="2" subject="null" body="Och bitte ich kenne ihn doch eh nicht " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358707194969" readable_date="Jan 20, 2013 7:39:44 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358707235910" type="2" subject="null" body="Sonst quetsch ich dich Dienstag vor Physik aus :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358707244615" readable_date="Jan 20, 2013 7:40:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358707400583" type="2" subject="null" body="Dann erzähl ich dir auch ein Geheimnis :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358707410054" readable_date="Jan 20, 2013 7:43:20 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358707609449" type="2" subject="null" body="Ich fang auch an :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358707623358" readable_date="Jan 20, 2013 7:46:49 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358707782474" type="2" subject="null" body="OK wenn du es mir nicht sagen willst sag mir wenigstens, ob du von mur sprichst weil irgendwie hörte sich dass so an " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 7:49:42 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358707787634" type="2" subject="null" body="Mir" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358707798038" readable_date="Jan 20, 2013 7:49:47 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358707957536" type="1" subject="null" body="Holla jetzt willst du es aber wissen :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358707953000" readable_date="Jan 20, 2013 7:52:37 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358707968089" type="1" subject="null" body="Nein ich Rede nicht von dir " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358707965000" readable_date="Jan 20, 2013 7:52:48 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358708025646" type="1" subject="null" body="Vor Physik würdest du mich eh nicht aus Quetschen :D aber dein Geheimnis kannst du mir gerne sagen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358708020000" readable_date="Jan 20, 2013 7:53:45 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708073883" type="2" subject="null" body="Gut und dann sag ich dir das nicht :-P " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708087055" readable_date="Jan 20, 2013 7:54:33 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708112663" type="2" subject="null" body="Doch würde ich " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708142894" readable_date="Jan 20, 2013 7:55:12 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358708128483" type="1" subject="null" body="Wieso denkst du, dass du es bist?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358708120000" readable_date="Jan 20, 2013 7:55:28 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708219772" type="2" subject="null" body="Weil das mit dem zu spät zu der Situation gepasst hätte , jetzt komm schon wer ist es " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708230173" readable_date="Jan 20, 2013 7:56:59 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358708312075" type="1" subject="null" body="Nein sag mir dein Geheimniss :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358708307000" readable_date="Jan 20, 2013 7:58:32 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358708334144" type="1" subject="null" body="Wie geht ein kotz smily bei facebook?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358708331000" readable_date="Jan 20, 2013 7:58:54 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708426904" type="2" subject="null" body="Ka, ich dachte du wurdest mich nicht an kotzen :-D wo für brauchdt du den " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708438643" readable_date="Jan 20, 2013 8:00:26 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708459622" type="2" subject="null" body="Ich sags auch keinem " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708470338" readable_date="Jan 20, 2013 8:00:59 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358708462267" type="1" subject="null" body="Muss ich an jemanden schicken" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358708458000" readable_date="Jan 20, 2013 8:01:02 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708470611" type="2" subject="null" body="Bitte " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708482020" readable_date="Jan 20, 2013 8:01:10 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708479748" type="2" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708489787" readable_date="Jan 20, 2013 8:01:19 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708482628" type="2" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708495055" readable_date="Jan 20, 2013 8:01:22 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708485384" type="2" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708495865" readable_date="Jan 20, 2013 8:01:25 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708488150" type="2" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 8:01:28 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708490834" type="2" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 8:01:30 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708493283" type="2" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 8:01:33 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708496036" type="2" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 8:01:36 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708499080" type="2" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 8:01:39 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708501746" type="2" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 8:01:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708504980" type="2" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 8:01:44 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708507334" type="2" subject="null" body="Bitte" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708527667" readable_date="Jan 20, 2013 8:01:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708555798" type="2" subject="null" body="Ich kann ihn doch eh nicht und gestern hab ich dich gefragt da hast du nein gesagt oder nicht geantwortet BDA kannst du mir das sagen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708567561" readable_date="Jan 20, 2013 8:02:35 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358708652312" type="1" subject="null" body="Oh no!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358708648000" readable_date="Jan 20, 2013 8:04:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708671484" type="2" subject="null" body="Wie kannst du einem sowas erzählen und es einem dann nicht verraten ich sterbe hier vor Neugier " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708682177" readable_date="Jan 20, 2013 8:04:31 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708694560" type="2" subject="null" body="Ich bezahlt dann auch euer erstes date !!! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708707243" readable_date="Jan 20, 2013 8:04:54 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708739648" type="2" subject="null" body="Ich hasse es etwas nicht zu wissen :-( " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708752062" readable_date="Jan 20, 2013 8:05:39 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358708757052" type="1" subject="null" body=":D nein" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358708758000" readable_date="Jan 20, 2013 8:05:57 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358708763796" type="1" subject="null" body="Das Merke ich" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358708764000" readable_date="Jan 20, 2013 8:06:03 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358708849476" type="1" subject="null" body="Darf ich dich noch was fragen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358708846000" readable_date="Jan 20, 2013 8:07:29 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708861523" type="2" subject="null" body="Ja" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358708871050" readable_date="Jan 20, 2013 8:07:41 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358708930182" type="1" subject="null" body="Was macht man, wenn einem nachdem man sich getroffen hatt auffällt, dass man gar nicht auf ihn steht?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358708925000" readable_date="Jan 20, 2013 8:08:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358708992665" type="2" subject="null" body="Dem nicht anrufen und wenn er anruft sagen dass man keine Lust hat " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358709002890" readable_date="Jan 20, 2013 8:09:52 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358709035420" type="1" subject="null" body="Ja und dann ignoriert man sich? Ist ja auch scheiße" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358709036000" readable_date="Jan 20, 2013 8:10:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358709109527" type="2" subject="null" body="Doch nicht ignorieren nur nicht mehr mit einander in der Freizeit rum hängen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358709120629" readable_date="Jan 20, 2013 8:11:49 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358709147029" type="1" subject="null" body="Ja auch blöd" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358709143000" readable_date="Jan 20, 2013 8:12:27 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358709209502" type="1" subject="null" body="Kann ich noch was fragen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358709210000" readable_date="Jan 20, 2013 8:13:29 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358709224704" type="2" subject="null" body="Du kannst mich alles fragen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358709234035" readable_date="Jan 20, 2013 8:13:44 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358709376213" type="1" subject="null" body="Wie viel Zeit sollte ein Freund oder eine Freundin haben?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358709376000" readable_date="Jan 20, 2013 8:16:16 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358709399639" type="1" subject="null" body="Und findest du dass man sich direkt küssen muss?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358709396000" readable_date="Jan 20, 2013 8:16:39 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358709604975" type="2" subject="null" body="Willst du wissen wie viel die mindestens mit einander verbringen müssen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358709619297" readable_date="Jan 20, 2013 8:20:04 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358709688123" type="2" subject="null" body="Und zu zweitens nein das sollte sich natürlich in einem Moment ergeben wenn man das nur aufgrund eines Pflichtgefühls er ist mein freund ich muss ihn küssen passiert ist das doch scheiße " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358709698840" readable_date="Jan 20, 2013 8:21:28 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358709827061" type="2" subject="null" body="Und ich glaube das das erste komplett bin der Person zusammen hängt es sollte soviel sein das sie sich nicht auseiander entwickeln und das beide sich wohl fühlen viel wichtiger ist da glaub ich das wenn der eine den anderen braucht man sich dann die zeit nimmt sich zu sehen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358709839470" readable_date="Jan 20, 2013 8:23:47 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358710181232" type="1" subject="null" body="Weil ich hab seit Daniel eine ziemliche Phobie gegen küssen und generell Körper Kontakt " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358710180000" readable_date="Jan 20, 2013 8:29:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358710333592" type="2" subject="null" body="Und wartest du halt bis du doch wohl dabei fühlst " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358710349064" readable_date="Jan 20, 2013 8:32:13 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358710508134" type="1" subject="null" body="Man Richard! " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358710505000" readable_date="Jan 20, 2013 8:35:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358710535726" type="2" subject="null" body="Man Fine!" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358710548516" readable_date="Jan 20, 2013 8:35:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358710543322" type="2" subject="null" body="Was ist " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358710556194" readable_date="Jan 20, 2013 8:35:43 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358710574112" type="1" subject="null" body="Was soll ich denn jetzt machen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358710574000" readable_date="Jan 20, 2013 8:36:14 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358710644547" type="2" subject="null" body="Du meinst mit Mister right??? frag ihn ob ihr was machen wollt :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358710658441" readable_date="Jan 20, 2013 8:37:24 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358710693772" type="1" subject="null" body="Nein will ich aber nicht " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358710693000" readable_date="Jan 20, 2013 8:38:13 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358710750807" type="1" subject="null" body="Warte ich sag dir mit welchem Buchstaben er anfängt, ja?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358710749000" readable_date="Jan 20, 2013 8:39:10 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358710765344" type="2" subject="null" body="OK " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358710777560" readable_date="Jan 20, 2013 8:39:25 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358710789707" type="1" subject="null" body="D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358710789000" readable_date="Jan 20, 2013 8:39:49 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358710861921" type="2" subject="null" body="Ach komm machs nicht so spannend :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358710875576" readable_date="Jan 20, 2013 8:41:01 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358710895504" type="1" subject="null" body="Doch" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358710893000" readable_date="Jan 20, 2013 8:41:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358710898661" type="2" subject="null" body="Und sag den ganzen Namen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358710908705" readable_date="Jan 20, 2013 8:41:38 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358710918517" type="2" subject="null" body="Ich will dir doch nur helfen :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358710930209" readable_date="Jan 20, 2013 8:41:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358710937952" type="1" subject="null" body="No no never" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358710939000" readable_date="Jan 20, 2013 8:42:17 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358710988619" type="2" subject="null" body="Ich hab dir auch gesagt bei wem ich gut ankommen wollte und das warst immer hin du !!!!! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358711000770" readable_date="Jan 20, 2013 8:43:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358711035401" type="2" subject="null" body="Das wäre bur fair" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358711045311" readable_date="Jan 20, 2013 8:43:55 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358711040114" type="2" subject="null" body="Nur" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358711051650" readable_date="Jan 20, 2013 8:44:00 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358711046150" type="1" subject="null" body=":D ja das ist richtig " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358711044000" readable_date="Jan 20, 2013 8:44:06 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358711078460" type="1" subject="null" body="Nein ich werde es dir nicht sagen. " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358711079000" readable_date="Jan 20, 2013 8:44:38 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358711116661" type="1" subject="null" body="Aus dem d kannst du dir das auch eigentlich schon Denken " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358711116000" readable_date="Jan 20, 2013 8:45:16 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358711183919" type="2" subject="null" body="Du hast gesagt ich kenn ihn nicht und der einzige den ich kenne mit d ist Daniel und der ist es ja wohl nicht " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358711195599" readable_date="Jan 20, 2013 8:46:23 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358711224710" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358711226000" readable_date="Jan 20, 2013 8:47:04 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358711247831" type="2" subject="null" body="Es ist doch nicht Daniel oder ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358711259867" readable_date="Jan 20, 2013 8:47:27 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358711275581" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358711272000" readable_date="Jan 20, 2013 8:47:55 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358711304735" type="2" subject="null" body="Das ist jetzt nicht ein ja oder " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358711315298" readable_date="Jan 20, 2013 8:48:24 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358711390535" type="2" subject="null" body="Sag mir nur ob es Daniel ist " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358711401433" readable_date="Jan 20, 2013 8:49:50 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358712012718" type="2" subject="null" body="Hallo " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 20, 2013 9:00:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358712015895" type="2" subject="null" body="??" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358712025750" readable_date="Jan 20, 2013 9:00:15 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358712075238" type="1" subject="null" body="Ja" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358712076000" readable_date="Jan 20, 2013 9:01:15 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358712115440" type="1" subject="null" body="Es hat mir so das feeling gegeben, als er mir einmal Mein Top ausgezogen hat!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358712112000" readable_date="Jan 20, 2013 9:01:55 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358712163182" type="1" subject="null" body="Aber ich muss dich bitte bitte noch eine Sache fragen" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358712158000" readable_date="Jan 20, 2013 9:02:43 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358712238427" type="2" subject="null" body="Du bist nur noch blöd frag deine Eltern " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358712251205" readable_date="Jan 20, 2013 9:03:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358712335091" type="1" subject="null" body="Wollen wir Dienstag was zusammen machen?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358712332000" readable_date="Jan 20, 2013 9:05:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358712480143" type="2" subject="null" body="Ernsthaft " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358712498272" readable_date="Jan 20, 2013 9:08:00 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358712514518" type="1" subject="null" body="Oui" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358712516000" readable_date="Jan 20, 2013 9:08:34 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358712536864" type="2" subject="null" body="Natürlich" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358712549390" readable_date="Jan 20, 2013 9:08:56 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358712563641" type="1" subject="null" body="Merci!!!!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358712561000" readable_date="Jan 20, 2013 9:09:23 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358712588162" type="2" subject="null" body="Warum danke" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358712603224" readable_date="Jan 20, 2013 9:09:48 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358712757293" type="2" subject="null" body="Wenn es das ist was ich denke das es ist dann...bin ich jetzt fertig mit den nerven " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358712767780" readable_date="Jan 20, 2013 9:12:37 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358713235244" type="1" subject="null" body="Was denkst du?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358713232000" readable_date="Jan 20, 2013 9:20:35 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358713307574" type="2" subject="null" body="Das du MICH gerade gefragt hast und das du von mir gesprochen hast vorhin mein ich " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358713319131" readable_date="Jan 20, 2013 9:21:47 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358713346065" type="1" subject="null" body="Natürlich hab ich das !" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358713346000" readable_date="Jan 20, 2013 9:22:26 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358713422177" type="2" subject="null" body="Dann freu ich mich :-)" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358713435199" readable_date="Jan 20, 2013 9:23:42 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358714028144" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358714025000" readable_date="Jan 20, 2013 9:33:48 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358714967112" type="1" subject="null" body="Wie sehr du dich gefreut hättest, wenn ich einen Freund hätte :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358714967000" readable_date="Jan 20, 2013 9:49:27 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358715017505" type="2" subject="null" body="Gar nicht :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358715030126" readable_date="Jan 20, 2013 9:50:17 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358715303557" type="1" subject="null" body="Du bist ein ganz schöner lügner" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358715299000" readable_date="Jan 20, 2013 9:55:03 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358715517044" type="2" subject="null" body="Ja also ich hätte dich trotzdem unterstützt aber deshalb muss ich mich wenn du einen freund hättest doch nicht freuen außerdem wäre sowas wie ich platze vor Eifersucht nicht gut genommen oder " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358715531074" readable_date="Jan 20, 2013 9:58:37 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358715556469" type="2" subject="null" body="Und ich hab nur was wenn Daniel der freund ist einfach weil das scheise wäre " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358715566425" readable_date="Jan 20, 2013 9:59:16 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358715753198" type="1" subject="null" body=":D du hast mir doch nicht echt Daniel geglaubt oder ?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358715748000" readable_date="Jan 20, 2013 10:02:33 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358715922035" type="2" subject="null" body="Irgendwie schon :-D so im nachhinein klingt das dämlich " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358715932258" readable_date="Jan 20, 2013 10:05:22 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358716526863" type="2" subject="null" body="Ich geh ins Bett . Gute Nacht " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358716539075" readable_date="Jan 20, 2013 10:15:26 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358716571473" type="1" subject="null" body="Richard?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358716568000" readable_date="Jan 20, 2013 10:16:11 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358716591147" type="2" subject="null" body="Fine ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358716599595" readable_date="Jan 20, 2013 10:16:31 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358716631321" type="1" subject="null" body="Ich mag dich ganz ganz doll! " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358716631000" readable_date="Jan 20, 2013 10:17:11 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358716660306" type="2" subject="null" body="Ich dich auch !!! " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358716675074" readable_date="Jan 20, 2013 10:17:40 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358776326403" type="2" subject="null" body="Meintest du das gestern ernst ? " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 21, 2013 2:52:06 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358778245244" type="1" subject="null" body="Ja" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358778241000" readable_date="Jan 21, 2013 3:24:05 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358778356171" type="2" subject="null" body="Was ist dann mit morgen? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358778366051" readable_date="Jan 21, 2013 3:25:56 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358778461824" type="1" subject="null" body="Oh Gott. Weil ich dich gefragt hab muss ich das jetzt managen? :O" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358778461000" readable_date="Jan 21, 2013 3:27:41 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358778532816" type="2" subject="null" body="Nein ich wollte ne Uhrzeit wissen und ob du was bestimmtes machen willst " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358778546045" readable_date="Jan 21, 2013 3:28:52 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358779916647" type="1" subject="null" body="Das Problem ist, das ist noch Training hab, ne :-) und ich weiß nicht was ich machen will" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358779916000" readable_date="Jan 21, 2013 3:51:56 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358783841484" type="2" subject="null" body="Dienstag kann ich mich komplett nach dir richten :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358784159073" readable_date="Jan 21, 2013 4:57:21 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358784207044" type="1" subject="null" body="Aber wie soll ich das machen? Du hast lange schule und dann hab ich Training :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358784203000" readable_date="Jan 21, 2013 5:03:27 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358784866078" type="2" subject="null" body=":-) ich kann ab 3:30 aber meinetwegen auch jeden anderen Tag " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358784874068" readable_date="Jan 21, 2013 5:14:26 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358784939044" type="1" subject="null" body="Jeden anderen Tag hast du Training :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358784932000" readable_date="Jan 21, 2013 5:15:39 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358784947227" type="1" subject="null" body="Ach sag doch was" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358784946000" readable_date="Jan 21, 2013 5:15:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358792755168" type="2" subject="null" body="Ich hätte dann aber zeit ran geschafft :-D OK wenn das bei dir passt vielleicht um vier wo du willst " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358792765032" readable_date="Jan 21, 2013 7:25:55 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358796147295" type="1" subject="null" body="Aber ich hab nicht lange Zeit, ne? :-) um kurz nach 5 muss ich nach Hause fahren" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358796141000" readable_date="Jan 21, 2013 8:22:27 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358797179036" type="2" subject="null" body="Gut:-) , wo passt dir am besten ?" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358797196051" readable_date="Jan 21, 2013 8:39:39 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358797313305" type="1" subject="null" body="Ist mir ganz egal :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358797308000" readable_date="Jan 21, 2013 8:41:53 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358800037080" type="1" subject="null" body=":-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358800036000" readable_date="Jan 21, 2013 9:27:17 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358800503719" type="1" subject="null" body="Ehmm also... Ich weiß nicht ob ich dir irgendwas auf gedrängt habe. Du kannst mir das ruhig sagen. Ok? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358800502000" readable_date="Jan 21, 2013 9:35:03 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358800560412" type="2" subject="null" body="Quatsch ich hab nur Panik es total zu versauen " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358800573475" readable_date="Jan 21, 2013 9:36:00 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358800606459" type="1" subject="null" body="Ich auch" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358800606000" readable_date="Jan 21, 2013 9:36:46 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358800728273" type="2" subject="null" body="Aber du hast sowas doch schon mal gemacht ich nicht!!!" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358800739130" readable_date="Jan 21, 2013 9:38:48 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358800761562" type="1" subject="null" body="Ich auch nicht !!!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358800757000" readable_date="Jan 21, 2013 9:39:21 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358800965738" type="2" subject="null" body="OK dann könnte es morgen schwierig werden, aber ich glaub daran dass wir das hin kriegen :-) Aber sonst ich würde sagen, dass wir einfach in die Stadt in ein Café gehen, möchtest du in ein bestimmtest oder einfach ins solo oder so ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358800977791" readable_date="Jan 21, 2013 9:42:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358801119246" type="1" subject="null" body="Wir kriegen das hin. Ich glaube es gibt nichts anderes als das Solo in der Stadt" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358801113000" readable_date="Jan 21, 2013 9:45:19 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358801176846" type="2" subject="null" body="Man kann aber zumindest so tun als ob :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358801186922" readable_date="Jan 21, 2013 9:46:16 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358801327609" type="1" subject="null" body="Ah ich hab angst " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358801322000" readable_date="Jan 21, 2013 9:48:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358801389568" type="2" subject="null" body="Bin ich wenigstens nicht der einzige " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 21, 2013 9:49:49 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358801422129" type="1" subject="null" body="Ach Richard " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358801417000" readable_date="Jan 21, 2013 9:50:22 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358801484125" type="2" subject="null" body="Ja ? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358801496065" readable_date="Jan 21, 2013 9:51:24 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358801542186" type="1" subject="null" body="Ich kann das nicht" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358801541000" readable_date="Jan 21, 2013 9:52:22 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358801634358" type="2" subject="null" body="Weil du eigentlich nicht willst oder warum " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358801646075" readable_date="Jan 21, 2013 9:53:54 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358801670462" type="1" subject="null" body="NEIN !" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358801665000" readable_date="Jan 21, 2013 9:54:30 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358801712217" type="1" subject="null" body="Aber ich hab angst!!!!!" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358801707000" readable_date="Jan 21, 2013 9:55:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358801730407" type="2" subject="null" body="Wo vor " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358801739722" readable_date="Jan 21, 2013 9:55:30 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358801811287" type="1" subject="null" body="Ich weiß nicht was ich sagen soll und was ich machen soll und generell" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358801810000" readable_date="Jan 21, 2013 9:56:51 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358801903368" type="2" subject="null" body="Sag es doch einfach wenn ichs nicht versteh frag ich halt nach " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358801912696" readable_date="Jan 21, 2013 9:58:23 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358802289603" type="2" subject="null" body="Warte meinst du dass du angst hast nicht zu wissen was du da morgen machen sollst ??" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358802301295" readable_date="Jan 21, 2013 10:04:49 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358802350876" type="2" subject="null" body="Wenn ja ich hab auch keine Ahnung also ist das nicht schlimm:-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358802365662" readable_date="Jan 21, 2013 10:05:50 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358802737104" type="1" subject="null" body="Warte? Das ist kein Date, ja? Einfach nur ein Treffen. Und wir schaffen das schon :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358802732000" readable_date="Jan 21, 2013 10:12:17 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358802992284" type="2" subject="null" body="Jetzt bin ich verwirrt. Klär mich bitte auf was das da morgen ist " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358803002101" readable_date="Jan 21, 2013 10:16:32 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358803037216" type="1" subject="null" body="Ein Date?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358803031000" readable_date="Jan 21, 2013 10:17:17 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358803209664" type="2" subject="null" body="Ist das jetzt ne frage ?? Also ich dachte im Prinzip schon dass es sowas ist. Ich meine mit dem was du da vier geschrieben hast klang das verdammt danach " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358803224473" readable_date="Jan 21, 2013 10:20:09 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358803223275" type="2" subject="null" body="Vor " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358803237861" readable_date="Jan 21, 2013 10:20:23 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358803252251" type="1" subject="null" body=":D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358803245000" readable_date="Jan 21, 2013 10:20:52 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358803339699" type="2" subject="null" body="Ist es jetzt ein oder nicht " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 21, 2013 10:22:19 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358803351206" type="2" subject="null" body="Eins " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358803364456" readable_date="Jan 21, 2013 10:22:31 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358803397638" type="1" subject="null" body="Yes :P" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358803392000" readable_date="Jan 21, 2013 10:23:17 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358803500241" type="2" subject="null" body="Du verwirrst noch gerne oder ?? :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358803510280" readable_date="Jan 21, 2013 10:25:00 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358804256869" type="2" subject="null" body="Ich geh schlafen :-) gute Nacht :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358804303985" readable_date="Jan 21, 2013 10:37:36 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358804463279" type="1" subject="null" body="Gute Nacht :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358804463000" readable_date="Jan 21, 2013 10:41:03 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358804532118" type="1" subject="null" body="Treffen wir uns morgen irgendwo? Oder laufen wir wild durch die Stadt und gucken ob man sich irgendwo trifft? :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358804530000" readable_date="Jan 21, 2013 10:42:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358804710409" type="2" subject="null" body="Ich würde sagen wild durch die Stadt laufen :-D oder wir treffen uns einfach da bei dem Eiscafé bei toom da an den seltsamen Kästen ?? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358804723066" readable_date="Jan 21, 2013 10:45:10 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358804755083" type="1" subject="null" body="Ja ist ok " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358804755000" readable_date="Jan 21, 2013 10:45:55 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358804766142" type="1" subject="null" body=":* " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358804766000" readable_date="Jan 21, 2013 10:46:06 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358804783637" type="2" subject="null" body=" Bis dann :* " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358804796078" readable_date="Jan 21, 2013 10:46:23 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358804831076" type="1" subject="null" body="Aah Richard ! " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358804826000" readable_date="Jan 21, 2013 10:47:11 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358804878720" type="2" subject="null" body="Aah Fine ! Angst ? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358804888069" readable_date="Jan 21, 2013 10:47:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358804909932" type="1" subject="null" body="Yes " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358804909000" readable_date="Jan 21, 2013 10:48:29 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358805053019" type="2" subject="null" body="Ich auch " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358805061601" readable_date="Jan 21, 2013 10:50:53 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358805069755" type="2" subject="null" body="Nicht hilfreich oder ? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358805079932" readable_date="Jan 21, 2013 10:51:09 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358805106318" type="1" subject="null" body="Nein :( " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358805101000" readable_date="Jan 21, 2013 10:51:46 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358805306879" type="2" subject="null" body="Ach was kann da schon groß passieren und wenn bekomme nur auch das mit und mache dann was noch dämlicheres dann vergisst du Deins sofort wieder, lachen werd ich auch nicht, außer bei Witzen :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358805318502" readable_date="Jan 21, 2013 10:55:06 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358805361410" type="1" subject="null" body="Du lachst die ganze Zeit nicht? :O" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358805377000" readable_date="Jan 21, 2013 10:56:01 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358805454734" type="2" subject="null" body="Ich meinte das ich dich nicht aus lache ( da ich das selbst nicht besser kann wäre das auch sehr dreist )" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358805468129" readable_date="Jan 21, 2013 10:57:34 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358805532657" type="1" subject="null" body="Gut, das werde ich auch nicht tun. " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358805549000" readable_date="Jan 21, 2013 10:58:52 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358805579869" type="2" subject="null" body="Besser " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 21, 2013 10:59:39 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358805582857" type="2" subject="null" body="?" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358805591957" readable_date="Jan 21, 2013 10:59:42 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358805656604" type="1" subject="null" body="Kennst du das? Wenn man eine Sms liest und ein lächeln über deinen Mund geht?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358805672000" readable_date="Jan 21, 2013 11:00:56 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358805685760" type="1" subject="null" body="Ja. Du kriegst das auch hin :* " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358805698000" readable_date="Jan 21, 2013 11:01:25 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358805741698" type="2" subject="null" body="Ja kenn ich jetzt, grade zum Beispiel :* " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358805752019" readable_date="Jan 21, 2013 11:02:21 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358805826091" type="1" subject="null" body="Ich hätte nie gedacht, dass du mir Mal einen :* schicken würdest" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358805842000" readable_date="Jan 21, 2013 11:03:46 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358806019400" type="2" subject="null" body="Das selbe hätte ich von dir behaupten können " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358806028447" readable_date="Jan 21, 2013 11:06:59 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358806095116" type="1" subject="null" body="Du kannst jetzt auch schlafen :-) Gute Nacht :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358806111000" readable_date="Jan 21, 2013 11:08:15 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358806122719" type="2" subject="null" body="Dir auch :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358806132170" readable_date="Jan 21, 2013 11:08:42 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358862788140" type="1" subject="null" body="Gehst du eigentlich heute auch zum Training? " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358862804000" readable_date="Jan 22, 2013 2:53:08 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358863955774" type="2" subject="null" body="Beim VfL oder Dorsten ? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358863965055" readable_date="Jan 22, 2013 3:12:35 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358865052088" type="1" subject="null" body="Egal " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358865068000" readable_date="Jan 22, 2013 3:30:52 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358865165152" type="2" subject="null" body="VfL nein Dorsten vielleicht je nachdem ob ich pünktlich zuhause bin " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358865175053" readable_date="Jan 22, 2013 3:32:45 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358865919133" type="1" subject="null" body="Ok" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358865932000" readable_date="Jan 22, 2013 3:45:19 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358865942243" type="2" subject="null" body=":-) p" toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358865952055" readable_date="Jan 22, 2013 3:45:42 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358871284776" type="2" subject="null" body="Ich schaffs zum training :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358871301242" readable_date="Jan 22, 2013 5:14:44 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358885446435" type="2" subject="null" body="Ich wollte dich das nicht vor den anderen fragen weil es sie ja nichts angeht aber wie war das heute für dich ??? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358885461139" readable_date="Jan 22, 2013 9:10:46 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358885977120" type="1" subject="null" body="Es war göttlich! Ich hab ehrlich gesagt gedacht, dass alles schief läuft und wir schweigend voreinander sitzen :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358885988000" readable_date="Jan 22, 2013 9:19:37 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358886265071" type="2" subject="null" body="Ja, find ich auch:-) und wir haben fast gar nicht geschwiegen :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358886278290" readable_date="Jan 22, 2013 9:24:25 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358886331264" type="1" subject="null" body="Findest du wirklich?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358886348000" readable_date="Jan 22, 2013 9:25:31 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358886508010" type="2" subject="null" body="Das es gut war??? Ja! Sry, wenn du das nicht so siehst aber ich fand's ehrlich gut ." toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358886520053" readable_date="Jan 22, 2013 9:28:28 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358886559055" type="1" subject="null" body="Ich seh es doch genau so !" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358886570000" readable_date="Jan 22, 2013 9:29:19 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358886658300" type="2" subject="null" body="Dann ist doch gut :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358886671048" readable_date="Jan 22, 2013 9:30:58 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358886693056" type="1" subject="null" body="Ja ;) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358886706000" readable_date="Jan 22, 2013 9:31:33 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358886766598" type="2" subject="null" body="Vielleicht ist die frage ja dämlich aber was machen wir jetzt ? " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358886777050" readable_date="Jan 22, 2013 9:32:46 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358887750144" type="1" subject="null" body="Die Frage ist nicht dämlich , weil ich es selber nicht weiß..." toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358887762000" readable_date="Jan 22, 2013 9:49:10 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358887899300" type="2" subject="null" body="Das ist unvorteilhaft....... und wie führt man ein Gespräch in dem man das her raus findet ? Weist du wahrscheinlich genauso wenig wie ich . ." toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358887911053" readable_date="Jan 22, 2013 9:51:39 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358888312057" type="1" subject="null" body="Liegst du genau richtig :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358888323000" readable_date="Jan 22, 2013 9:58:32 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358888488308" type="2" subject="null" body="Wir machen es uns nicht einfach oder ??:-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358888501050" readable_date="Jan 22, 2013 10:01:28 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358889144132" type="1" subject="null" body="Nein, viel zu kompliziert :D " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358889160000" readable_date="Jan 22, 2013 10:12:24 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358889207852" type="1" subject="null" body="Ich fande Training witzig heute :-) und deine Mum ist Cool " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358889220000" readable_date="Jan 22, 2013 10:13:27 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358889352615" type="2" subject="null" body="Ich fand das training auch gut :-) ja schon :-) aber sag ihr nicht dass ich das gesagt hab :-D " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358889366343" readable_date="Jan 22, 2013 10:15:52 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358889521611" type="2" subject="null" body="Aber entweder hab ich mur das eingebildet oder du würdest bedeutend weniger entspannt als Daniel auf kreutzte " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358889533930" readable_date="Jan 22, 2013 10:18:41 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358889724076" type="1" subject="null" body="Nein ich werde es ihr nicht sagen :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358889740000" readable_date="Jan 22, 2013 10:22:04 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358889732448" type="1" subject="null" body="Wieso?" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358889746000" readable_date="Jan 22, 2013 10:22:12 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358889781588" type="2" subject="null" body="Du warst als er da war schweigsamer " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358889796538" readable_date="Jan 22, 2013 10:23:01 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358889817521" type="1" subject="null" body="Oh" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358889829000" readable_date="Jan 22, 2013 10:23:37 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358889948053" type="1" subject="null" body="Tut mir leid " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358889959000" readable_date="Jan 22, 2013 10:25:48 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358890023244" type="2" subject="null" body="Das war kein Vorwurf sondern nur die Frage ob alles OK ist " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358890036649" readable_date="Jan 22, 2013 10:27:03 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358890076075" type="1" subject="null" body="Ja ist alles gut, danke :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358890092000" readable_date="Jan 22, 2013 10:27:56 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358890107796" type="2" subject="null" body=":-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358890117077" readable_date="Jan 22, 2013 10:28:27 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358890127072" type="1" subject="null" body="Das war Mal wieder ein Augenblick wo man lächeln muss" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358890136000" readable_date="Jan 22, 2013 10:28:47 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358890209601" type="2" subject="null" body="Hab mir auch grad gedacht " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358890218108" readable_date="Jan 22, 2013 10:30:09 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358890294089" type="1" subject="null" body="Es tut mir übrigens leid, dass ich so viel über Daniel geredet hab" toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358890306000" readable_date="Jan 22, 2013 10:31:34 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358890541170" type="2" subject="null" body="kein Problem :-) so lange er nicht alleiniges Haupt Gesprächs Thema wird " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 22, 2013 10:35:41 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358890599142" type="1" subject="null" body="Nein das wird er bitte nicht werden :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358890610000" readable_date="Jan 22, 2013 10:36:39 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358890679235" type="2" subject="null" body="Dann ist gut :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358890691064" readable_date="Jan 22, 2013 10:37:59 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358890719284" type="1" subject="null" body="Ich schlaf Mal, gute Nacht :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358890731000" readable_date="Jan 22, 2013 10:38:39 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358890739164" type="2" subject="null" body="Gute Nacht :-) " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358890748853" readable_date="Jan 22, 2013 10:38:59 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358964833655" type="2" subject="null" body="Hey :-). Was hast du heute so gemacht? :-) " toa="null" sc_toa="null" service_center="null" read="1" status="32" locked="0" date_sent="0" readable_date="Jan 23, 2013 7:13:53 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358970197068" type="1" subject="null" body="Zumba und injoy ;) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358970212000" readable_date="Jan 23, 2013 8:43:17 PM" contact_name="Fine" />
<sms protocol="0" address="+4915779041426" date="1358974634135" type="1" subject="null" body="Weist du was eine Edelgasregel ist? Und was ampholyt ist? Keine Ahnung wie man das schreibt :-) " toa="null" sc_toa="null" service_center="+491770610000" read="1" status="-1" locked="0" date_sent="1358974649000" readable_date="Jan 23, 2013 9:57:14 PM" contact_name="Fine" />
<sms protocol="0" address="+49 157 79041426" date="1358975335229" type="2" subject="null" body="Edelgasregel meint Atome danach streben nach Reaktionen 2 ( hauptsächlich Wasser ) oder 8 Elektronen auf der äußeren Schale zu haben ampholyt sind glaub ich Verbindung die sowohl Protonen aufnehmen und abgeben können aber dabei bin ich mir nicht sicher " toa="null" sc_toa="null" service_center="null" read="1" status="0" locked="0" date_sent="1358975346870" readable_date="Jan 23, 2013 10:08:55 PM" contact_name="Fine" />