-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.xml
4205 lines (4204 loc) · 576 KB
/
sitemap.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"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url><loc>https://www.no2id.net/</loc><changefreq>daily</changefreq><priority>1.00</priority></url>
<url><loc>https://www.no2id.net/dbstate</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/get-involved/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/fpArchive</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/IDSchemes/whyNot</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/IDSchemes/FAQ/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/IDSchemes/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/IDSchemes/furtherReading</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/about/index</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/about/contact</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/about/supporters</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/about/mp_supporters</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/localgroups/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/expats/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/get-involved/support</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/get-involved/join</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/get-involved/donate</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/get-involved/shop</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/get-involved/volunteer</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/get-involved/buttons</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/get-involved/other</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/news/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/news/events</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/images/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/resources/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/resources/audio</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/resources/graphical</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/resources/flashcomp</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/resources/motions/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/idcardcon/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/psbs/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/pledge/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/newsblog/</loc><changefreq>daily</changefreq><priority>0.85</priority></url>
<url><loc>https://www.no2id.net/IDSchemes/whyNot.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/get-involved/idCentres</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/get-involved/join.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release?name=Blunketts_fake</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/datasharing</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/dbstate.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/datasharing.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/localGroups/index.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/images/index.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Crosby_10</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/resources/flashcomp.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/pledge/index.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/IDSchemes/index.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/get-involved/donate.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Blair_Fact-Free</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/get-involved/idCentres.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=61</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/resources/motions/index.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/resources/index.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/get-involved/index.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/get-involved/support.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/alreadyHere.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/oversold.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/constitution.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/iresist/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/commonSense.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pollTax.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/cattle.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/worm_turned.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/ceredigion.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/lseReport.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/lancaster.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/whither.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/delay.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/events/abolitionday.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/scottishParliament.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/events/norwichVoterEducation.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/events/norwich.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/events.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/events/trainingday.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/third_reading.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/coverage.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/about/supporters.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/petitionResponseRebuttal.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/about/mp_supporters.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/events/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/if-fraud-figures-dodgy-or-what/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Deceptive_rebranding</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Blunkett_baffling</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Smith_announces</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=HO_dodges_issue</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Wasteful_empire-building</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Rowntree_Report</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=100sOf1000s</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Blunketts_fake</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Missing_piece</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Census_answers</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=NO2ID_takes_battle</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Vindication_of_Privacy</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=A_Bill_to_build</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Read_the_small_print</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=A_lifetime</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Bad-news_weird%20news</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=You_cant_protect</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Dated_data_protection</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Halt_biometric_bullying</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=DPP_vindicates_privacy_campaigners</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=HO_is_quarter_of_ID_fraud</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=ID_Fraud_protection_racket</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Jacqui_Smith_bullying</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=ID_cards_for_kids</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Unions_overwhelmingly_oppose</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Telecoms_snooper</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Data_Sharing_Review</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Poll_public_2-to-1_against</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Brown_does_not_understand</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Minimisation_of_Data</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=BBC%20forges%20Home%20Secretary</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=ID-tenders</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Buried_news</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Home_Office_saves</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=facial_recognition_a_cover</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Mayoral_candidates</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Clueless_marketing</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Government_tries_to_ignore</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Hidden_SUS</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Learners_tagged</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Devastating_survey</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=strategy_document_published</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Ministers_kibosh</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Biometric_pantomime</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=IDCardCoercion</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Charging_not_in_charge</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Immigration_Security_Theatre</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Home_Office_research</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Evasive_Brown</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=MPs_missing_point</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=NHS_record_losses</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Governments_criminal</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Another_week</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Launches_NO2ID_pledge</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=HMRC_privacy_meltdown</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=NO2ID_calls_in_?100K</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Millions_will_defy</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=interrogation_black_hole</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Delay_political_manoeuvre</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=UK_Stasi_files</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=H_O_dare_not</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=DNA_Expansion</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=IDSpinOverSubstance</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=eBorders_false</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Will_collapse</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Tail%20on%20every%20car</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=steam_driven</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=ANPR_fraud</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=cripple_Brown_premiership</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Contempt-for-parliament</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Top_cops_speak_out</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=sticking_plaster</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Govt_breaks_law</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Home_Office_spins_fraud</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Passport_flaws</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Intrusive_passport_interviews</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=interrogation_to_hit_gap_year</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=fingerprint_the_stars</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Govt_cant_now</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Garbage%20in%2C%20garbage%20out</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=TruthSneaksOut</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=NHS_database</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Schoolchildren_interrogatio</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=dangerously_insecure</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=PMsSpin</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Double-doublethink</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=government_squirms</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Renew%20passport%20quick</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Blair%20at%20TUC</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=ID%20won't%20stop%20terror</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=passport%20price%20hike</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Axe%20ID%20scheme%20NOW</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=ID%20cards%20to%20track%20population</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Home%20Office%20correct%20cock-up</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=penalties</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=clarke%20lies</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=ludicrous%20and%20scary</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Unfunny%20Joke</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=New%20ID%20Agency</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=ID%20compromise</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Policy%20Laundering</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Public%20vote%20on%20compulsion%20refused</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=bog%20standard</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Ethnic%20minorities%20slam%20Clarke</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Lords%20reject%20compulsion</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=keep%20Blair%20to%20his%20word</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Double%20whammy%20in%20the%20polls</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Backbenchers%20bludgeoned</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Bogus%20security%20claims</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=cardboard%20compromise</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=NO2ID%20challenge%20Home%20Office</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=ID%20cards%20will%20increase%20identity%20theft</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Ministers%20spin</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Lords%20blow</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Lords%20defeat</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Public%20Opinion%2050:50</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=government%20disagrees%20with%20self</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Government%20clueless</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Blunkett%20resignation%20II</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Constitution%20Committee</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=bully%20and%20bluster</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=government%20id%20fraud</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=bargain%20card%20a%20con</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=secret%20revolution</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Labour%20conference%20press%20call</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=NO2ID%20Barred%20from%20roadshow</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Mathew%20Taylor</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=roadshow%20farce</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=arrests</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=ID%20card%20pre-Tender</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=McNulty%20Admissions</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=million%20pound%20pledge</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Heartlands</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=reveal%20cost%20breakdown</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Public%20support%20for%20ID%20cards%20collapses</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Welsh%20Assembly%20say%20NO</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Kill%20Bill%202</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=waste%20police%20time</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Queen's%20Speech%20Again</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=common%20sense</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Passport%20Abuse</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=LSE%20Report</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Scottish%20Vote</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Abolition%20day</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=norwich%20voter%20education</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Third%20Reading</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=JHCR</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Councils</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Cambridge</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Second%20reading</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Blunkett%20resignation</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Rushed%20ID%20Bill</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=Queen's%20Speech</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release.php?name=No2id%20petition</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=124</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=123</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=122</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=121</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=120</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=119</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=118</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=117</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=116</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=115</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=114</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=113</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=112</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=110</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=109</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=108</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=111</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=107</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=106</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=105</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=104</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=103</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=102</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=101</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=100</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=99</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=98</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=97</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=96</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=95</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=94</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=93</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=92</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=91</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=90</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=89</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=88</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=87.5</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=87</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=86</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=85</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=84</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=83</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=82</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=81</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=80</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=79</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=78</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=77</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=76</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=75</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=74</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=73</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=72</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=71</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=70</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=69</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=68</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=67</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=66</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=65</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=63</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=62</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=60</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=59</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=58</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=57</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=56</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=55</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=54</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=53</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=52</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=51</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=50</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=49</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=48</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=47</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=46</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=45</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=44</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=43</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=42</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=41</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=40</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=39</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=38</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=37</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=36</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=35</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=34</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=33</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=32</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=31</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=30</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=29</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=28</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=27</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=26</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=25</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=24</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=23</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=22</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=21</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=20</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=19</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=18.5</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=18</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=17</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=16</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=15</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=14</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=13</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=12</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=11</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=10</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=9.5</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=9</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=8</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=7</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=6</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=5</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=4</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=3</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=2</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/newsletter.php?issue=1</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/resources/mistakenIdentity.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/psbs/index.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/resources/motions/mk1</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/resources/motions/mk2</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/resources/motions/molevalley.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/resources/motions/bridport</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/idcardcon/resources</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/idcardcon/getinvolved</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/idcardcon/events</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/psbs/profiling.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/psbs/thefuture.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/psbs/getinvolved.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/pledge/certificate.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/pledge/how.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/pledge/banners.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/pledge/defenceFund.php</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-02/council-parking-chiefs-want-dvlas-secret-data-on-drivers/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/database-state/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/neutral/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-02/thousands-wrongly-labelled-as-criminals/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/general/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-01/privacy-worries-dog-open-data-consultation/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-02/smart-meters-for-energy-to-be-voluntary/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-01/national-dna-database-needed-for-personalised-medicine-drive/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/page/2/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/insecurity/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/anti/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/biometrics/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/foreign-articles/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/pro/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/01/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/02/01/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/02/02/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/newsblog/wp-login.php</loc><lastmod>2012-02-21T09:28:02+00:00</lastmod><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/index.php</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/02/06/</loc><changefreq>daily</changefreq><priority>0.69</priority></url>
<url><loc>https://www.no2id.net/localGroups/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/get-involved/shop.php</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/news/newsletters/index.php</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/official-home-office-cant-do-its-sums-2/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/id-cards-and-postal-voting/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/preparation-for-id-cards-goes-ahead-without-parliament/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/ministers-see-latest-scheme-to-push-id-card-in-peril/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/01/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/02/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/03/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/07/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/10/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/13/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/14/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/15/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/19/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/16/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/20/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/23/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/24/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/26/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/TakeJane/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/news/pressRelease/release?name=Read_the_small_print</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/27/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/28/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/news/pledge/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-08/the-malign-power-of-platitudes/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-07/were-not-fundamentalists-personal-information-deserves-respect/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/get-involved/other.php</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-05/contactless-mugging/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-05/minister-calls-for-better-cctv-in-order-to-integrate-with-national-identity-register/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/walkfree.php</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-04/the-creep-becomes-a-rush-to-add-features/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/IDSchemes/quiz.php</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-04/charles-clarke-ordinary-people-have-the-right-to-be-protected/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-04/low-hanging-fruit-for-identity-thieves/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/supermarket-scanners-get-whole-new-meaning/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/commission-wants-european-rfid-policy/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/id-numbers-for-scottish-children/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/dutch-biometrics-cracked/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/ipods-not-id-cards-says-dti-geek/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/loser-britains-identity-crisis/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/new-childrens-database-announced/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/IDSchemes/FAQ/index.php</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/events/augpubmeet.php</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-12/home-office-goes-cute-and-cuddly/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-12/identity-theft-figures-over-estimated/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/events/evenbiggerbrother.php</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/events/trainingdaysignup.php</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/idcardcon/index</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/index.php</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/psbs/thefuture</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/psbs/profiling</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/database-state/page/2/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/neutral/page/2/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/page/2/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/general/page/2/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-01/can-cloud-unravel-the-data-sharing-puzzle/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-01/cuba-and-having-to-carry-an-id-card/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-01/united-we-stand-%e2%80%93-against-bendy-buses-identity-cards-and-other-lousy-ideas/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-01/shopping-centre-tracking-system-condemned-by-civil-rights-campaigners/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/02/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/01/03/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/01/04/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/01/05/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/01/08/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/01/09/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/01/16/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/01/22/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/01/26/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/01/30/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-01/essex-police-staff-resign-over-illegal-database-access/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-01/stop-this-energy-smart-meter-fiasco-uk-gov-urged/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/page/3/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/insecurity/page/2/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-12/how-anonymous-is-nhs-patient-data/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-12/all-patients-to-be-given-online-access-to-medical-records/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/dvla-wants-to-cash-in-on-private-parking-tickets/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/does-the-health-care-bill-permit-medical-research-without-patient-consent/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/we-shall-shame-schools-that-muddle-through%e2%80%99/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-12/selling-our-nhs-data-is-not-putting-us-in-control-of-our-health-records/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/anti/page/2/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/revised-eu-us-agreement-on-pnr-data-still-protects-only-travel-companies-not-travelers/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/biometrics/page/2/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-01/london-2012-olympics-passengers-braced-for-heavy-delays-at-heathrow-as-athletes-get-vip-passport-lanes/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/iris-scanning-registration-booths-scaled-back/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-10/call-to-scrap-dna-retention-measure/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-10/theresa-may-suppressed-home-office-dna-database-report-say-labour/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-07/innocent-peoples-dna-profiles-wont-be-deleted-after-all-minister-admits/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/foreign-articles/page/2/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-10/new-biometric-id-card-aims-to-prevent-welfare-fraud/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-07/aadhaar-on-a-platform-of-myths/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-04/tomtom-satnav-data-used-to-set-police-speed-traps/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/pro/page/2/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-10/why-scrs-are-a-long-term-plan-for-long-term-conditions/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-09/a-charitable-interpretation-of-electronic-health-records/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-08/why-oh-why-the-week-the-pundits-ran-riot/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-06/u-turn-again/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/wp-login.php?action=lostpassword</loc><lastmod>2012-02-21T09:29:12+00:00</lastmod><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-01/without-a-dna-database-these-monsters-could-still-be-on-the-streets/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012/01/page/2/</loc><changefreq>daily</changefreq><priority>0.56</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/us-passports-not-to-include-rfid/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/publish-the-costs-or-pay-the-price/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-11/cost-of-id-card-scheme-questioned-by-home-office-consultants/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/home-office-keeps-cards-close-to-its-chest-regarding-costs-of-identity-card-scheme/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/us-starting-small/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/03/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/04/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/07/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/08/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/12/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/13/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/14/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/16/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/18/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/19/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/21/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/25/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/26/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/taiwan-vacillates/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/deny-all-you-want-we-know-what-youre-up-to/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/blair-to-cut-trip-short-for-id-card-vote/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/id-cards-are-of-limited-value/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/page/2/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/threat-of-spy-chips-in-id-cards/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/peers-reject-id-card-database-plans-as-attack-on-freedom/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/12/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/03/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/08/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/11/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/13/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/15/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/17/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/18/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/19/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/24/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/27/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/29/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/30/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/31/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/page/2/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/id-cards-bill-passes/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/government-property-your-identity/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/the-ids-of-march/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/mps-pick-at-id-threads/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/identity-cards-a-present-to-terrorists-and-criminals-spy-heroine-says/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/02/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/09/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/10/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/13/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/16/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/19/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/21/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/23/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/24/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/27/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/30/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/compromise-on-id-cards-expected/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/brown-plays-the-77-card-ahead-of-id-vote/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/voluntary-id-card-promise-broken/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/government-slammed-for-id-database-shambles/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/no-id-cards-in-eire/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/id-card-plans-slipping-already/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/eema%e2%80%99s-invalid-id/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/no2id-pledgee-releases-album-with-anti-id-song/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/identity-cards-costing-%c2%a363000-a-day/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/write-to-a-lord-today/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/are-biometrics-ready-for-the-uk/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/TakeJane/nothing2hide</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/TakeJane/whatUcanDo</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/365/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/TakeJane/download</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/news/pledge/certificate.php</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/children-targeted-for-stealth-database/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/news/pledge/how.php</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/news/pledge/banners.php</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/news/pledge/defenceFund.php</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-02/lords-fight-on/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-08/election-watchdog-makes-id-card-u-turn/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-08/home-office-has-lost-43-laptops/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/01/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/02/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/04/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/07/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/08/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/10/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/12/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/15/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/16/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/18/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/20/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/21/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/22/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/25/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/23/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/26/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/27/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/29/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/30/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-07/government-cannot-be-trusted-with-dna-database/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-08/sole-scots-passport-office-to-axe-114-of-its-staff/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/08/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/01/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/02/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/04/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/03/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/08/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/07/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/09/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/13/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/10/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/15/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/17/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/16/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/19/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/21/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/22/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/23/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/25/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/27/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/28/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/29/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/30/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/31/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-05/clarke-out-reid-in/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-05/the-king-of-fraud-flies-in-to-help-banks-beat-menace-of-id-theft/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/03/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/08/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/09/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/11/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/12/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/14/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/16/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/17/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/19/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/21/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/22/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/23/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/24/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/26/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/29/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-05/anger-as-harman-suggests-electoral-role-for-id-database/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-05/revealed-the-cash-for-fake-id-scandal-at-the-heart-of-the-government/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-04/schneier-id-cards-will-worsen-id-theft/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-04/im-beginning-to-live-in-fear-of-the-state/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/11/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/17/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/19/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/23/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/21/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/24/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/27/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/28/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/29/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-04/labour-u-turn-over-id-card-medical-details/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-04/tony-blairs-authoritarian-populism-is-indefensible-and-dangerous/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-04/since-the-bill-passed/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-04/labour-races-to-introduce-id-cards/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/lords-bounce-bill-back-to-commons/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/late-abase/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/id-cards-battle-deadlocked/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/politically-sensitive/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/blair-facing-id-card-defeat-as-cost-soars-to-%c2%a3500-each/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/no-identity-card-you-could-be-fined-%c2%a32500/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-12/tories-ambush-blair-on-identity-cards/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/dna-database-skewed-against-black-men/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-12/korea-fights-id-theft-with-legislation-on-banks/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/11/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/12/02/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/12/04/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/12/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/12/10/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/12/12/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/12/16/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/12/21/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/12/27/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/events/index.php</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-12/welsh-assembly-member-in-jail-rebellion-pledge-on-id-cards/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/database-state/page/3/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2012-01/breast-implant-scandal-andrew-lansley-indicates-support-for-register/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-12/scrap-metal-dealers-to-demand-id/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/neutral/page/3/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/general/page/3/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/page/3/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-12/dwp-pulls-back-identity-services-tender/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-12/dwp-issues-200m-identity-services-tender/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-12/bma-raises-alarm-over-nhs-patient-data-sharing-plans/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-12/census-2011-bid-to-prosecute-400-for-failing-to-return-forms/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/page/2/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-12/the-council-tax-shock-of-living-alone/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/04/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/01/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/10/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/13/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/17/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/15/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/22/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/24/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/12/29/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/page/4/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/insecurity/page/3/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/the-coalition-needs-to-get-serious-about-protecting-citizens%e2%80%99-privacy/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/more-carrot-and-stick-needed-for-open-data/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/uk-border-agency-officials-illegally-targeting-bus-passengers/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/google-and-co-join-govs-identity-marketplace/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-12/the-moral-maze-nhs-patient-data/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-12/patients-nhs-records-could-be-shared-with-private-firms/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/dutch-mep-claims-european-politicians-gagged-over-us-data-sharing-deal/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/02/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/03/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/04/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/08/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/11/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/14/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/15/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/16/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/17/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/21/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/23/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/11/28/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/cundy-revives-confidentiality-concerns/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/anti/page/3/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-11/our-1984-culture-of-spying-blame-new-labour-who-were-soft-on-criminals-yet-ruthless-on-the-innocent/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-09/the-world-at-ten/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-08/big-brother-knows-all-about-my-bunion-op-and-the-fish-pie-i-ate-after-it-how-one-woman-found-out-about-the-intimate-information-held-about-her/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-09/911-the-day-we-lost-our-privacy-and-power/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/biometrics/page/3/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-06/home-office-will-not-back-down-on-dna-database/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-06/miliband-may-know-the-detail-but-his-policies-are-wrong/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-05/police-breaking-law-by-keeping-dna-of-the-innocent-supreme-court-rules/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-10/nhs-coventry-prepares-for-summary-care-record-upload/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/09/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/07/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/09/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/10/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/11/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/13/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/16/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/20/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/24/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/27/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/28/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/10/31/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-10/essex-police-bought-anpr-cameras/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-07/big-brother-returns-with-a-new-name/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-07/apis-costs-questioned-by-experts-and-mps/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/08/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/01/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/02/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/08/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/12/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/14/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/16/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/17/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/21/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/26/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/28/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/29/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/foreign-articles/page/3/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-04/eu-data-retention-directive-flawed-unlawful/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-04/a-government-plan-for-ids-to-replace-online-passwords/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-03/eu-rallies-behind-uk-on-collecting-air-passenger-data/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-03/broken-laws-of-identity-lead-to-system%e2%80%99s-destruction/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-03/new-law-will-bring-id-cards-for-islanders/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-09/work-with-the-police-dont-undermine-them/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-07/the-independent-view-the-bigger-picture-on-privacy/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-04/controlling-information-who-holds-the-power-in-the-internet-age/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-05/protester-to-sue-police-over-secret-surveillance/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/03/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/04/01/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/04/04/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/04/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/04/08/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/04/13/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/04/18/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/04/15/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/04/25/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/04/22/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/04/28/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/category/uk-news-articles/pro/page/3/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-01/what-have-dna-database-objectors-got-to-hide/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2010-11/cargo-plane-bomb-plot-the-unknown-enemies-who-live-among-us/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2010-07/the-liberal-democrats-commitment-to-civil-liberties-is-beyond-question/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2010-08/was-it-right-to-scrap-the-contactpoint-child-database/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2010-06/the-half-baked-libertarians-of-the-coalition-must-not-ruin-our-legacy-in-reducing-crime/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-10/nhs-staff-breach-patient-data-daily/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-10/uk-allocates-10m-to-new-id-scheme/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-09/disastrous-11-4bn-nhs-it-programme-to-be-abandoned/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/09/05/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/09/07/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/09/08/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/09/10/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/09/13/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/09/16/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/09/22/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/09/26/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/09/30/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-08/nhs-security-breach-as-patients-letters-posted-with-security-codes-on-envelopes/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-08/police-turn-back-50-cars-in-operation-to-stop-criminals-entering-city-centre/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/07/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/08/02/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/08/03/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/08/13/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/08/12/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/08/15/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/08/17/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/08/16/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/08/22/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/08/25/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/08/28/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-06/back-to-the-future-with-government-id-plans/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-06/fears-patient-records-are-vulnerable-to-hacker-attack-as-nhs-trials-putting-data-in-online-cloud/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/01/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/02/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/03/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/06/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/09/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/10/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/11/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/14/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/15/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/17/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/20/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/22/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/23/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/24/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/27/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/28/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/06/29/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-01/internet-interception-set-to-boil-on-both-sides-of-the-pond/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011-01/id-cards-no-longer-valid/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2010/12/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/02/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/01/02/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/01/07/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/01/11/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/01/12/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/01/13/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/01/14/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/01/17/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/01/21/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/01/25/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/01/27/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2011/01/31/</loc><changefreq>daily</changefreq><priority>0.46</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/tell-us-the-truth-about-id-costs-lords-harpoon-the-id-bill/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-01/red-alert-over-faulty-id-cards/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-11/fear-the-id-database-not-the-card/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-11/new-report-claims-cost-of-id-cards-will-be-%c2%a3500-each/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/11/01/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/11/03/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/10/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/11/10/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/11/06/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/11/14/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/11/16/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/11/23/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/11/24/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/11/27/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/11/29/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/id-cards-bill-scrapped-at-least-until-after-the-election/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/the-sun-says/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/page/2/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-03/not-necessarily-safer/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-03/a-reluctant-proponent/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-03/georgia-us-tackles-identity-theft/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-03/privacy-fears-over-nhs-database/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-03/the-end-of-passport-queues/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/02/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/04/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/03/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/08/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/10/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/11/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/12/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/14/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/15/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/16/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/17/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/18/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/21/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/22/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/23/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/24/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/26/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/29/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/30/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/03/31/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/id-cards-to-become-election-issue/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/page/2/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-05/id-cards-to-cost-%c2%a3300-per-person/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-05/from-the-horses-mouth/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-05/cio-jury-it-leaders-slam-national-id-card-plans/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-05/tg-opposes-id-plans/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-05/c4-viewers-reject-id-plans/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/04/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/06/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/05/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/06/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/07/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/11/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/16/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/13/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/18/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/19/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/20/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/24/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/27/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/26/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/28/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/05/29/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/former-labour-candidate-says-he-left-party-over-id-cards/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/net-aids-theft-of-sensitive-id-data/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/nsw-id-card-a-gift-to-terrorists/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/home-office-logic-in-action/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/the-politics-of-fear/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/politician-or-policeman/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/what-us-requirements/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/police-data-sold-to-newspapers/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/met-chief-accused-of-supporting-labour/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/widespread-criticism-of-sir-ian-blairs-id-card-comments/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/fighting-criminal-tactics-rather-than-crime/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/state-sponsored-identity-theft/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/not-so-smart-cards/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/germany-biometric-passports-premature/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/tiny-number-of-terrorists-in-uk-says-clarke/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-04/kirk-warning-over-identity-cards/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/01/page/3/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005/12/page/2/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-12/final-day-of-the-lords-committee-stage-of-the-identity-cards-bill-2005/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2005-12/overuse-of-personal-information-by-fbi/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/03/page/3/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/02/page/2/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/this-id-project-is-even-more-sinister/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006/04/page/2/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/pet-shop-boys-protest-at-id-cards/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2006-03/launch-of-biometric-passports-gives-the-lie-to-id-card-arguements/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/news/pledge/index.php</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-08/launch-of-controversial-child-database-delayed/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-08/consultants-who-lost-data-are-working-on-id-cards/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/07/page/2/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-07/stolen-epassports-worth-20m-on-black-market/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-07/diane-abbott-you-ask-the-questions/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-07/labour-rejects-union-strike-calls/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-09/cameron-re-commits-conservatives-to-scrap-nir/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/page/2/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-09/conservatives-would-scrap-controversial-contactpoint-child-database/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-09/id-cards-are-doomed-to-fail/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-09/finding-something-to-hate-about-id-cards/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008-09/radio-4-any-questions/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/10/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/01/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/02/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/04/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/06/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/07/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/08/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/11/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/12/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/14/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/17/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/18/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/21/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/22/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/23/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/24/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/25/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/26/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/27/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/28/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>
<url><loc>https://www.no2id.net/newsblog/2008/09/29/</loc><changefreq>daily</changefreq><priority>0.38</priority></url>