-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlyngsat.log
5664 lines (4192 loc) · 237 KB
/
lyngsat.log
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
----------sid----------sfq----------sdg----------sname----------
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12246 6604
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12246 6604
6604, 12246, 19.2E, OCS geants
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12092 21103
=> Parsing http://www.lyngsat.com/packages/Montage-TV-36E.html 12092 21103
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12092 21103
21103, 12092, 36.0E, Sport 1(Russia)
-> Parsing http://www.lyngsat.com/Hispasat-1D-1E.html 12246 1401
=> Parsing http://www.lyngsat.com/packages/Meo.html 12246 1401
1401, 12246, 30.0W, No sid found
-> Parsing http://www.lyngsat.com/Hispasat-1D-1E.html 12246 451
=> Parsing http://www.lyngsat.com/packages/Meo.html 12246 451
451, 12246, 30.0W, Sport TV 1
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12699 9504
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12699 9504
9504, 12699, 19.2E, MultiSports 3
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11435 29900
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11436 29900
29900, 11435, 19.2E, Canal + Estrenos
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12246 6602
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12246 6602
6602, 12246, 19.2E, Disney Junior France
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11435 29909
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11436 29909
29909, 11435, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Thor-5-6-7-and-Intelsat-10-02.html 11293 4446
=> Parsing http://www.lyngsat.com/packages/Canal-Digital.html 11293 4446
4446, 11293, 0.8W, TV 3 Sverige
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12129 9906
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12129 9906
9906, 12129, 19.2E, J-One
-> Parsing http://www.lyngsat.com/Optus-D2.html 12734 309
309, 12734, 152.0E, M Tunes
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12246 6605
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12246 6605
6605, 12246, 19.2E, Voyage
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12129 9909
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12129 9909
9909, 12129, 19.2E, MCS Bien-être
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10971 17201
=> Parsing http://www.lyngsat.com/packages/SRG-SSR.html 10971 17201
17201, 10971, 13.0E, SRF 1
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12124 9906
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12129 9906
9906, 12124, 19.2E, J-One
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11038 30400
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11038 30400
30400, 11038, 19.2E, Canal + Estrenos
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12129 9902
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12129 9902
9902, 12129, 19.2E, TCM Cinéma
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12128 9906
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12129 9906
9906, 12128, 19.2E, J-One
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 11900 16106
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 11900 16106
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 11900 16106
16106, 11900, 36.0E, Muz TV(Russia)
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 12265 3107
=> Parsing http://www.lyngsat.com/packages/Cyfrowy-Polsat.html 12265 3107
3107, 12265, 13.0E, Polsat
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11992 111
=> Parsing http://www.lyngsat.com/packages/Sky-Deutschland.html 11992 111
111, 11992, 19.2E, Disney Cinemagic Deutschland
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11127 30850
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11127 30850
30850, 11127, 19.2E, Canal + Series
-> Parsing http://www.lyngsat.com/Thor-5-6-7-and-Intelsat-10-02.html 10778 7160
=> Parsing http://www.lyngsat.com/packages/Canal-Digital.html 10778 7160
7160, 10778, 0.8W, Kanal 9(Sweden)
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11597 10079
10079, 11597, 19.2E, RMC Découverte HD 24
-> Parsing http://www.lyngsat.com/Astra-2E-2F-2G.html 11934 4404
=> Parsing http://www.lyngsat.com/packages/Sky-UK.html 11934 4404
4404, 11934, 28.2E, Sky Movies Premiere HD
-> Parsing http://www.lyngsat.com/Thor-5-6-7-and-Intelsat-10-02.html 10777 7160
=> Parsing http://www.lyngsat.com/packages/Canal-Digital.html 10778 7160
7160, 10777, 0.8W, Kanal 9(Sweden)
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12399 10304
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12399 10304
10304, 12399, 36.0E, Rossiya 1(0h)
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10936 30760
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10936 30760
30760, 10936, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12646 150
150, 12646, 166.0E, ART Variety Australia
-> Parsing http://www.lyngsat.com/Astra-2E-2F-2G.html 11914 4220
=> Parsing http://www.lyngsat.com/packages/Sky-UK.html 11914 4220
4220, 11914, 28.2E, Sky Sports 3 Ireland
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12090 9402
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12090 9402
9402, 12090, 19.2E, Disney Cinema
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11258 30903
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11259 30903
30903, 11258, 19.2E, Canal + Golf
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12646 183
183, 12646, 166.0E, MBC International
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11317 29809
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11318 29809
29809, 11317, 19.2E, AXN White España
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12456 20504
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12456 20504
20504, 12456, 36.0E, Animal Planet Russia
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12437 421
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12437 421
421, 12437, 36.0E, Zee TV Russia
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11258 30908
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11259 30908
30908, 11258, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Thor-5-6-7-and-Intelsat-10-02.html 12015 7199
=> Parsing http://www.lyngsat.com/packages/Canal-Digital.html 12015 7199
7199, 12015, 0.8W, No sid found
-> Parsing http://www.lyngsat.com/Hispasat-1D-1E.html 12245 451
=> Parsing http://www.lyngsat.com/packages/Meo.html 12246 451
451, 12245, 30.0W, Sport TV 1
-> Parsing http://www.lyngsat.com/Astra-2E-2F-2G.html 11934 4405
=> Parsing http://www.lyngsat.com/packages/Sky-UK.html 11934 4405
4405, 11934, 28.2E, Sky Movies Premiere HD +1
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12090 9407
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12090 9407
9407, 12090, 19.2E, Discovery Science Channel
-> Parsing http://www.lyngsat.com/Express-AT1.html 12245 10304
=> Parsing http://www.lyngsat.com/packages/NTV-Plus-Vostok.html 12245 10304
10304, 12245, 56.0E, No sid found
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 12188 7351
=> Parsing http://www.lyngsat.com/packages/Cyfrowy-Polsat.html 12188 7351
7351, 12188, 13.0E, JimJam Polska
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 11075 10
10, 11075, 13.0E, Mediaset Italia 2
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 11075 30
=> Parsing http://www.lyngsat.com/providers/us/Viacom-Media-Networks.html 11075 30
30, 11075, 13.0E, No sid found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10935 30750
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10936 30750
30750, 10935, 19.2E, Mezzo Live HD
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 12284 10509
=> Parsing http://www.lyngsat.com/packages/Cyfrowy-Polsat.html 12284 10509
10509, 12284, 13.0E, Discovery Science Channel Polska
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 12265 3112
=> Parsing http://www.lyngsat.com/packages/Cyfrowy-Polsat.html 12265 3112
3112, 12265, 13.0E, No sid found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10935 30755
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10936 30755
30755, 10935, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12734 307
307, 12734, 166.0E, No freq found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10906 30001
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10906 30001
30001, 10906, 19.2E, Movistar F1
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12399 10309
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12399 10309
10309, 12399, 36.0E, Telekanal Zvezda(0h)
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12646 206
206, 12646, 166.0E, Arabica TV
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12246 6603
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12246 6603
6603, 12246, 19.2E, Syfy France
-> Parsing http://www.lyngsat.com/Astra-2E-2F-2G.html 12266 1325
=> Parsing http://www.lyngsat.com/packages/Sky-UK.html 12266 1325
1325, 12266, 28.2E, Sky Sports News HQ in Pubs
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12646 320
320, 12646, 166.0E, BeIn Sports Global
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11317 29806
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11318 29806
29806, 11317, 19.2E, Canal + Dcine
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12111 31002
=> Parsing http://www.lyngsat.com/packages/Tricolor-TV-36E.html 12111 31002
31002, 12111, 36.0E, No sid found
-> Parsing http://www.lyngsat.com/Hispasat-1D-1E.html 12246 1404
=> Parsing http://www.lyngsat.com/packages/Meo.html 12246 1404
1404, 12246, 30.0W, No sid found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10876 30611
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10876 30611
30611, 10876, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Hispasat-1D-1E.html 12246 454
=> Parsing http://www.lyngsat.com/packages/Meo.html 12246 454
454, 12246, 30.0W, National Geographic Channel HD Europe
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10892 4807
=> Parsing http://www.lyngsat.com/packages/NC-.html 10892 4807
4807, 10892, 13.0E, TVP 1
-> Parsing http://www.lyngsat.com/Astra-3B.html 12207 5613
5613, 12207, 23.5E, National Geographic Channel HD Europe
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10906 30004
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10906 30004
30004, 10906, 19.2E, Antena 3(Spain)
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 11681 301
=> Parsing http://www.lyngsat.com/packages/Bis-TV-13E.html 11681 301
301, 11681, 13.0E, TF 1
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10834 3507
=> Parsing http://www.lyngsat.com/packages/NC-.html 10834 3507
3507, 10834, 13.0E, Zest TV(23-05)
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11376 6302
6302, 11376, 19.2E, BeIn Sports 2
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11376 6322
=> Parsing http://www.lyngsat.com/providers/fr/GlobeCast.html 11377 6322
6322, 11376, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11126 30860
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11127 30860
30860, 11126, 19.2E, Canal + España
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11597 10081
=> Parsing http://www.lyngsat.com/providers/lu/SES.html 11597 10081
10081, 11597, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12646 197
197, 12646, 166.0E, LDC America & Australia
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12692 13002
=> Parsing http://www.lyngsat.com/packages/ORF-Digital.html 12692 13002
13002, 12692, 19.2E, ORF 2
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12646 340
340, 12646, 166.0E, OTV(Lebanon)
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12090 9406
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12090 9406
9406, 12090, 19.2E, Eurosport 2
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12129 9908
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12129 9908
9908, 12129, 19.2E, Cartoon Network France
-> Parsing http://www.lyngsat.com/Thor-5-6-7-and-Intelsat-10-02.html 10934 1027
=> Parsing http://www.lyngsat.com/packages/Canal-Digital.html 10934 1027
1027, 10934, 0.8W, VH1 Europe
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12646 380
380, 12646, 166.0E, Syria Drama
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 11996 19123
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 11996 19123
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 11996 19123
19123, 11996, 36.0E, Telekanal Zvezda(+2h)
-> Parsing http://www.lyngsat.com/Astra-3B.html 12070 13138
=> Parsing http://www.lyngsat.com/packages/SkyLink.html 12070 13138
13138, 12070, 23.5E, TV Nova
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12090 9404
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12090 9404
9404, 12090, 19.2E, OCS choc
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12090 9409
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12090 9409
9409, 12090, 19.2E, Planète + CI
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10979 30656
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10979 30656
30656, 10979, 19.2E, TVE La 1 Madrid
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12246 6601
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12246 6601
6601, 12246, 19.2E, 13ème Rue
-> Parsing http://www.lyngsat.com/Express-AT1.html 12226 27009
=> Parsing http://www.lyngsat.com/packages/Tricolor-TV-56E.html 12226 27009
27009, 12226, 56.0E, NTV(+3h)
-> Parsing http://www.lyngsat.com/Hispasat-1D-1E.html 12246 1402
=> Parsing http://www.lyngsat.com/packages/Meo.html 12246 1402
1402, 12246, 30.0W, No sid found
-> Parsing http://www.lyngsat.com/Hispasat-1D-1E.html 12246 452
=> Parsing http://www.lyngsat.com/packages/Meo.html 12246 452
452, 12246, 30.0W, Sport TV 2
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12341 11111
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12341 11111
11111, 12341, 36.0E, Bridge TV
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10979 30652
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10979 30652
30652, 10979, 19.2E, Factoria de Ficción
-> Parsing http://www.lyngsat.com/Astra-3B.html 12207 725
725, 12207, 23.5E, HBO 2 Central Europe
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12246 6606
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12246 6606
6606, 12246, 19.2E, Paramount Channel France
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10979 30659
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10979 30659
30659, 10979, 19.2E, Telecinco
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11258 30902
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11259 30902
30902, 11258, 19.2E, Canal + Series Xtra
-> Parsing http://www.lyngsat.com/Astra-3B.html 12207 711
711, 12207, 23.5E, HBO Czechia
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11258 30907
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11259 30907
30907, 11258, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11435 29910
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11436 29910
29910, 11435, 19.2E, Canal + Deportes 2 HD
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11435 29911
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11436 29911
29911, 11435, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12646 300
300, 12646, 166.0E, MTV Alloubnaniya
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10719 4405
=> Parsing http://www.lyngsat.com/packages/NC-.html 10719 4405
4405, 10719, 13.0E, Kino Polska
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 12188 7352
=> Parsing http://www.lyngsat.com/packages/Cyfrowy-Polsat.html 12188 7352
7352, 12188, 13.0E, Boomerang Central & Eastern Europe
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 12284 10552
=> Parsing http://www.lyngsat.com/packages/Cyfrowy-Polsat.html 12284 10552
10552, 12284, 13.0E, No sid found
-> Parsing http://www.lyngsat.com/Astra-3B.html 12207 712
712, 12207, 23.5E, HBO Comedy Central Europe
-> Parsing http://www.lyngsat.com/Astra-3B.html 12207 731
731, 12207, 23.5E, Sport 1 Czechia
27003, 12226, 55.9E, No dgr found
-> Parsing http://www.lyngsat.com/Astra-3B.html 12207 5611
5611, 12207, 23.5E, Nat Geo Wild Europe
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10729 30801
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10729 30801
30801, 10729, 19.2E, Canal + Comedia
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10729 30807
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10729 30807
30807, 10729, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12207 26002
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12207 26002
26002, 12207, 36.0E, National Geographic Channel HD Russia & Turkey
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10876 30608
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10876 30608
30608, 10876, 19.2E, Calle 13
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12265 31006
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12265 31006
31006, 12265, 36.0E, 5 Kanal(0h)
-> Parsing http://www.lyngsat.com/Astra-3B.html 11837 5101
5101, 11837, 23.5E, TV Joj
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12090 9401
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12090 9401
9401, 12090, 19.2E, Disney XD France
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12090 9403
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12090 9403
9403, 12090, 19.2E, Ma Chaîne Sport
-> Parsing http://www.lyngsat.com/Astra-3B.html 11836 5101
5101, 11836, 23.5E, TV Joj
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11914 131
=> Parsing http://www.lyngsat.com/packages/Sky-Deutschland.html 11914 131
131, 11914, 19.2E, Sky Cinema
-> Parsing http://www.lyngsat.com/Astra-3B.html 11837 5106
5106, 11837, 23.5E, RTV 2(Slovakia)
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12646 205
205, 12646, 166.0E, Future TV America & Australia
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10729 30819
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10729 30819
30819, 10729, 19.2E, TVE La 1 Madrid
-> Parsing http://www.lyngsat.com/Astra-3B.html 11837 5103
5103, 11837, 23.5E, TV Markíza
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11317 29816
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11318 29816
29816, 11317, 19.2E, Canal + España
-> Parsing http://www.lyngsat.com/Astra-3B.html 11837 5105
5105, 11837, 23.5E, RTV 1(Slovakia)
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12245 10304
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12245 10304
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 12245 10304
10304, 12245, 36.0E, No sid found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12090 9408
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12090 9408
9408, 12090, 19.2E, Disney Channel France +1
-> Parsing http://www.lyngsat.com/Astra-3B.html 11836 5106
5106, 11836, 23.5E, RTV 2(Slovakia)
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12476 603
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12476 603
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 12476 603
603, 12476, 36.0E, No sid found
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12456 20514
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12456 20514
20514, 12456, 36.0E, National Geographic Channel Russia
-> Parsing http://www.lyngsat.com/Astra-3B.html 11837 5108
5108, 11837, 23.5E, Dajto
-> Parsing http://www.lyngsat.com/Astra-3B.html 11798 5155
=> Parsing http://www.lyngsat.com/packages/SkyLink.html 11798 5155
5155, 11798, 23.5E, CS Mini(06-12)
-> Parsing http://www.lyngsat.com/Astra-3B.html 11836 5103
5103, 11836, 23.5E, TV Markíza
-> Parsing http://www.lyngsat.com/Astra-3B.html 11836 5105
5105, 11836, 23.5E, RTV 1(Slovakia)
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 11474 603
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 11474 603
603, 11474, 36.0E, No sid found
-> Parsing http://www.lyngsat.com/Astra-3B.html 11836 5108
5108, 11836, 23.5E, Dajto
-> Parsing http://www.lyngsat.com/Astra-3B.html 11797 5155
=> Parsing http://www.lyngsat.com/packages/SkyLink.html 11798 5155
5155, 11797, 23.5E, CS Mini(06-12)
-> Parsing http://www.lyngsat.com/Thor-5-6-7-and-Intelsat-10-02.html 11278 309
=> Parsing http://www.lyngsat.com/packages/Canal-Digital.html 11278 309
309, 11278, 0.8W, C More Emotion
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10796 15714
=> Parsing http://www.lyngsat.com/packages/NC-.html 10796 15714
15714, 10796, 13.0E, FilmBox Family
-> Parsing http://www.lyngsat.com/Astra-3B.html 11837 5104
5104, 11837, 23.5E, TV Doma
-> Parsing http://www.lyngsat.com/Astra-3B.html 11836 5104
5104, 11836, 23.5E, TV Doma
-> Parsing http://www.lyngsat.com/Astra-3B.html 12110 5044
5044, 12110, 23.5E, TV Markíza
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11317 29805
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11318 29805
29805, 11317, 19.2E, Canal + Comedia
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 11785 13104
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 11785 13104
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 11785 13104
13104, 11785, 36.0E, NTV Plus Futbol 3
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12640 8901
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12640 8901
8901, 12640, 19.2E, E! France
-> Parsing http://www.lyngsat.com/Optus-D2.html 12734 303
303, 12734, 152.0E, Life OK India
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 11681 310
=> Parsing http://www.lyngsat.com/packages/Bis-TV-13E.html 11681 310
310, 11681, 13.0E, TMC
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10729 30809
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10729 30809
30809, 10729, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11685 30212
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11686 30212
30212, 11685, 19.2E, Antena 3(Spain)
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10834 3506
=> Parsing http://www.lyngsat.com/packages/NC-.html 10834 3506
3506, 10834, 13.0E, Discovery Historia
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 11508 15813
15813, 11508, 13.0E, Puls 2
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12246 6607
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12246 6607
6607, 12246, 19.2E, MCS Extrême
-> Parsing http://www.lyngsat.com/Astra-3B.html 12110 5041
5041, 12110, 23.5E, Eurosport 2 Nederland
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12646 330
330, 12646, 166.0E, ART Hekayat
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 11449 15001
=> Parsing http://www.lyngsat.com/packages/NC-.html 11449 15001
15001, 11449, 13.0E, Canal + Discovery
-> Parsing http://www.lyngsat.com/Astra-3B.html 12207 724
724, 12207, 23.5E, The Fishing & Hunting Channel
25006, 12187, 55.9E, No dgr found
-> Parsing http://www.lyngsat.com/Badr-4-5-6.html 12399 10304
=> Parsing http://www.lyngsat.com/packages/My-HD.html 12399 10304
-> Parsing http://www.lyngsat.com/Badr-7.html 12399 10304
10304, 12399, 26.0E, No freq found
-> Parsing http://www.lyngsat.com/Express-A4.html 11938 3670
3670, 11938, 5.0E, No freq found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10817 29951
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10818 29951
29951, 10817, 19.2E, Canal + Fútbol
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11914 129
=> Parsing http://www.lyngsat.com/packages/Sky-Deutschland.html 11914 129
129, 11914, 19.2E, Sky Sport 1
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10817 29960
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10818 29960
29960, 10817, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Intelsat-19.html 12646 350
350, 12646, 166.0E, Iqraa Arabic
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12129 9907
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12129 9907
9907, 12129, 19.2E, Penthouse HD
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10935 30753
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10936 30753
30753, 10935, 19.2E, National Geographic Channel HD Europe
-> Parsing http://www.lyngsat.com/Astra-3B.html 12110 5046
5046, 12110, 23.5E, TV Doma
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10935 30761
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10936 30761
30761, 10935, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Astra-3B.html 12110 5150
5150, 12110, 23.5E, JimJam Europe
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11435 29901
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11436 29901
29901, 11435, 19.2E, Syfy Universal España
-> Parsing http://www.lyngsat.com/Astra-3B.html 12207 728
728, 12207, 23.5E, Universal Channel Czechia
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11435 29905
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11436 29905
29905, 11435, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12322 10104
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12322 10104
10104, 12322, 36.0E, Kinoklub
-> Parsing http://www.lyngsat.com/Astra-3B.html 12110 5045
5045, 12110, 23.5E, Discovery Showcase HD
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11377 6302
6302, 11377, 19.2E, BeIn Sports 2
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12322 10106
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12322 10106
10106, 12322, 36.0E, Perviy kanal
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 11977 1801
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 11977 1801
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 11977 1801
1801, 11977, 36.0E, Perviy kanal(+2h)
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11372 6302
6302, 11372, 19.2E, BeIn Sports 2
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10803 5500
5500, 10803, 19.2E, Disney Channel Deutschland
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11126 30853
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11127 30853
30853, 11126, 19.2E, TCM España
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11126 30858
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11127 30858
30858, 11126, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Astra-2E-2F-2G.html 11376 6302
6302, 11376, 28.2E, No freq found
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12322 10105
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12322 10105
10105, 12322, 36.0E, Nashe Kino
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12640 8906
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12640 8906
8906, 12640, 19.2E, Sport 365
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12015 2211
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 12015 2211
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12015 2211
2211, 12015, 36.0E, Sankt Peterburg
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12090 9405
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12090 9405
9405, 12090, 19.2E, Non Stop People France
-> Parsing http://www.lyngsat.com/Astra-3B.html 12110 5047
5047, 12110, 23.5E, Eurosport 1 Benelux
-> Parsing http://www.lyngsat.com/Astra-2E-2F-2G.html 11141 51090
=> Parsing http://www.lyngsat.com/packages/Sky-UK.html 11141 51090
51090, 11141, 28.2E, Nick Jr UK +1
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 11996 19106
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 11996 19106
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 11996 19106
19106, 11996, 36.0E, Viasat History
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10876 30605
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10876 30605
30605, 10876, 19.2E, National Geographic Channel España
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11141 51091
=> Parsing http://www.lyngsat.com/providers/si/STN.html 11141 51091
51091, 11141, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Hispasat-1D-1E.html 12398 5034
=> Parsing http://www.lyngsat.com/packages/Nos.html 12399 5034
5034, 12398, 30.0W, No sid found
405, 11258, 0.4W, No dgr found
-> Parsing http://www.lyngsat.com/Hispasat-1D-1E.html 12398 409
=> Parsing http://www.lyngsat.com/packages/Nos.html 12399 409
409, 12398, 30.0W, Eurosport 1
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10788 30358
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10788 30358
30358, 10788, 19.2E, Canal + Series
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12265 31010
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12265 31010
31010, 12265, 36.0E, STS Love
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 11996 19104
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 11996 19104
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 11996 19104
19104, 11996, 36.0E, TV 1000 Russkoe Kino
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11156 30521
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11156 30521
30521, 11156, 19.2E, Movistar Moto GP
-> Parsing http://www.lyngsat.com/Thor-5-6-7-and-Intelsat-10-02.html 11216 2712
=> Parsing http://www.lyngsat.com/packages/Canal-Digital.html 11216 2712
2712, 11216, 0.8W, No sid found
-> Parsing http://www.lyngsat.com/Astra-2E-2F-2G.html 11671 50465
=> Parsing http://www.lyngsat.com/packages/Sky-UK.html 11671 50465
50465, 11671, 28.2E, Zee Cinema UK
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11317 29815
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11318 29815
29815, 11317, 19.2E, AXN España
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12245 706
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12245 706
706, 12245, 36.0E, Eurosport 2 North-East
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12246 6610
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12246 6610
6610, 12246, 19.2E, Seasons
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10758 29860
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10758 29860
29860, 10758, 19.2E, Movistar F1
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12322 603
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12322 603
603, 12322, 36.0E, No sid found
-> Parsing http://www.lyngsat.com/Astra-2E-2F-2G.html 12188 4802
=> Parsing http://www.lyngsat.com/packages/Sky-UK.html 12188 4802
4802, 12188, 28.2E, Crime + Investigation UK
-> Parsing http://www.lyngsat.com/Amos-2-3.html 11258 405
=> Parsing http://www.lyngsat.com/packages/Yes.html 11258 405
405, 11258, 4.0W, National Geographic Channel Israel
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11758 22
=> Parsing http://www.lyngsat.com/packages/Sky-Deutschland.html 11758 22
22, 11758, 19.2E, Heimatkanal
-> Parsing http://www.lyngsat.com/Astra-2E-2F-2G.html 11261 52113
=> Parsing http://www.lyngsat.com/packages/Sky-UK.html 11264 52113
52113, 11261, 28.2E, Star Gold UK
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11038 30407
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11038 30407
30407, 11038, 19.2E, TCM España
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10979 30655
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10979 30655
30655, 10979, 19.2E, La Sexta
-> Parsing http://www.lyngsat.com/Express-A4.html 12130 6660
6660, 12130, 5.0E, No freq found
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12476 604
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12476 604
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 12476 604
604, 12476, 36.0E, No sid found
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 12188 7375
=> Parsing http://www.lyngsat.com/packages/Cyfrowy-Polsat.html 12188 7375
7375, 12188, 13.0E, Fox Comedy Polska
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 11508 15822
15822, 11508, 13.0E, TVN Style
-> Parsing http://www.lyngsat.com/Express-AT1.html 12322 56312
=> Parsing http://www.lyngsat.com/packages/NTV-Plus-Vostok.html 12322 56312
56312, 12322, 56.0E, No sid found
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10796 15710
=> Parsing http://www.lyngsat.com/packages/NC-.html 10796 15710
15710, 10796, 13.0E, National Geographic Channel Polska
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10834 3505
=> Parsing http://www.lyngsat.com/packages/NC-.html 10834 3505
3505, 10834, 13.0E, TVP Sport
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 12284 10504
=> Parsing http://www.lyngsat.com/packages/Cyfrowy-Polsat.html 12284 10504
10504, 12284, 13.0E, Travel Channel Europe
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 12284 10507
=> Parsing http://www.lyngsat.com/packages/Cyfrowy-Polsat.html 12284 10507
10507, 12284, 13.0E, CBS Europa
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12092 706
=> Parsing http://www.lyngsat.com/packages/Montage-TV-36E.html 12092 706
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12092 706
706, 12092, 36.0E, No sid found
-> Parsing http://www.lyngsat.com/Astra-2E-2F-2G.html 11052 20710
=> Parsing http://www.lyngsat.com/packages/Sky-UK.html 11053 20710
20710, 11052, 28.2E, ITV 2
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11317 29807
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11318 29807
29807, 11317, 19.2E, Fox España
-> Parsing http://www.lyngsat.com/Astra-4A-and-SES-5.html 12169 10106
=> Parsing http://www.lyngsat.com/packages/Viasat-Ukraina.html 12169 10106
10106, 12169, 4.9E, No sid found
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12821 10106
10106, 12821, 36.0E, No freq found
-> Parsing http://www.lyngsat.com/Astra-3B.html 11837 5102
5102, 11837, 23.5E, Plus
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11156 30513
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11156 30513
30513, 11156, 19.2E, Historia España
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10979 30680
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10979 30680
30680, 10979, 19.2E, Nat Geo Wild España
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 11785 13108
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 11785 13108
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 11785 13108
13108, 11785, 36.0E, Kanal Disney(0h)
-> Parsing http://www.lyngsat.com/Astra-3B.html 11836 5102
5102, 11836, 23.5E, Plus
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12168 10106
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12168 10106
10106, 12168, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 11321 10106
10106, 11321, 36.0E, No freq found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10935 30751
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10936 30751
30751, 10935, 19.2E, Calle 13
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10935 30756
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10936 30756
30756, 10935, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 11320 10106
10106, 11320, 36.0E, No freq found
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12169 10106
=> Parsing http://www.lyngsat.com/packages/Tricolor-TV-36E.html 12169 10106
=> Parsing http://www.lyngsat.com/tvchannels/ru/TNV-Tatarstan.html 12174 10106
10106, 12169, 36.0E, No sid found
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12476 20611
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12476 20611
20611, 12476, 36.0E, Investigation Discovery Europe
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12722 12853
12853, 12722, 19.2E, RTBF La Trois
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10892 4808
=> Parsing http://www.lyngsat.com/packages/NC-.html 10892 4808
4808, 10892, 13.0E, TVP 2
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 12188 7301
=> Parsing http://www.lyngsat.com/packages/Cyfrowy-Polsat.html 12188 7301
7301, 12188, 13.0E, Polsat Romans
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12246 6608
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12246 6608
6608, 12246, 19.2E, France Ô
-> Parsing http://www.lyngsat.com/Hispasat-1D-1E.html 12246 404
=> Parsing http://www.lyngsat.com/packages/Meo.html 12246 404
404, 12246, 30.0W, Canal Hollywood Portugal
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10979 30657
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10979 30657
30657, 10979, 19.2E, Canal Hollywood España
-> Parsing http://www.lyngsat.com/Astra-3B.html 11876 13206
=> Parsing http://www.lyngsat.com/packages/SkyLink.html 11876 13206
13206, 11876, 23.5E, Prima Cool
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11126 30852
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11127 30852
30852, 11126, 19.2E, Nat Geo Wild Europe
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 12265 31002
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 12265 31002
31002, 12265, 36.0E, Istoriya Telekanal
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 11126 30857
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 11127 30857
30857, 11126, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Eutelsat-36A-36B.html 11996 19110
=> Parsing http://www.lyngsat.com/packages/DSTV-Africa.html 11996 19110
=> Parsing http://www.lyngsat.com/packages/NTV-Plus.html 11996 19110
19110, 11996, 36.0E, Russkij Extreme
-> Parsing http://www.lyngsat.com/Hispasat-1D-1E.html 12168 203
=> Parsing http://www.lyngsat.com/packages/Meo.html 12169 203
203, 12168, 30.0W, No sid found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12304 108
=> Parsing http://www.lyngsat.com/packages/Sky-Deutschland.html 12304 108
108, 12304, 19.2E, Sky Sport News HD
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10818 29964
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10818 29964
29964, 10818, 19.2E, Canal Hollywood España
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10906 30002
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10906 30002
30002, 10906, 19.2E, Movistar Moto GP
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10796 15717
=> Parsing http://www.lyngsat.com/packages/NC-.html 10796 15717
15717, 10796, 13.0E, FilmBox Action HD
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10892 4805
=> Parsing http://www.lyngsat.com/packages/NC-.html 10892 4805
4805, 10892, 13.0E, Ale Kino +
-> Parsing http://www.lyngsat.com/Astra-3B.html 12207 727
727, 12207, 23.5E, Spektrum International
-> Parsing http://www.lyngsat.com/Nilesat-102.html 12034 706
-> Parsing http://www.lyngsat.com/Nilesat-201-and-Eutelsat-7-West-A.html 12034 706
706, 12034, 7.0W, ART Aflam 1
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10979 30658
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10979 30658
30658, 10979, 19.2E, TVE La 2
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 10758 17032
=> Parsing http://www.lyngsat.com/packages/Cyfrowy-Polsat.html 10758 17032
17032, 10758, 13.0E, TVP Rozrywka
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12441 6504
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12441 6504
6504, 12441, 19.2E, Djazz TV
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12441 6505
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12441 6505
6505, 12441, 19.2E, Série Club
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12110 5044
=> Parsing http://www.lyngsat.com/providers/de/ARD-Digital.html 12110 5044
5044, 12110, 19.2E, No sid found
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12441 6502
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12441 6502
6502, 12441, 19.2E, Mezzo Live HD
-> Parsing http://www.lyngsat.com/Eutelsat-Hot-Bird-13B-13C-13D.html 11278 13022
=> Parsing http://www.lyngsat.com/packages/NC-.html 11278 13022
13022, 11278, 13.0E, Canal + Sport Polska
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 10876 30610
=> Parsing http://www.lyngsat.com/packages/Movistar--19E.html 10876 30610
30610, 10876, 19.2E, Canal + Liga
-> Parsing http://www.lyngsat.com/Nilesat-102.html 12034 709
-> Parsing http://www.lyngsat.com/Nilesat-201-and-Eutelsat-7-West-A.html 12034 709
709, 12034, 7.0W, ART Cinema
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12441 6508
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12441 6508
6508, 12441, 19.2E, Comédie +
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12441 6510
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12441 6510
6510, 12441, 19.2E, Piwi +
-> Parsing http://www.lyngsat.com/Astra-1KR-1L-1M-1N.html 12441 6509
=> Parsing http://www.lyngsat.com/packages/CanalSat-France.html 12441 6509
6509, 12441, 19.2E, Extreme Sports Channel France