-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathinstall1.sql
7665 lines (7407 loc) · 962 KB
/
install1.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DROP TABLE IF EXISTS cms_actionlogs;
CREATE TABLE cms_actionlogs (
date_and_time integer unsigned NOT NULL,
ip varchar(40) NOT NULL,
member_id integer NOT NULL,
param_b varchar(255) NOT NULL,
param_a varchar(80) NOT NULL,
the_type varchar(80) NOT NULL,
id integer unsigned auto_increment NOT NULL,
PRIMARY KEY (id)
) CHARACTER SET=utf8mb4 engine=MyISAM;
ALTER TABLE cms_actionlogs ADD INDEX aip (ip);
ALTER TABLE cms_actionlogs ADD INDEX athe_type (the_type);
ALTER TABLE cms_actionlogs ADD INDEX ts (date_and_time);
ALTER TABLE cms_actionlogs ADD INDEX xas (member_id);
DROP TABLE IF EXISTS cms_addons;
CREATE TABLE cms_addons (
addon_copyright_attribution varchar(255) NOT NULL,
addon_install_time integer unsigned NOT NULL,
addon_description longtext NOT NULL,
addon_licence varchar(255) NOT NULL,
addon_category varchar(255) NOT NULL,
addon_name varchar(255) NOT NULL,
addon_author varchar(255) NOT NULL,
addon_organisation varchar(255) NOT NULL,
addon_version varchar(255) NOT NULL,
PRIMARY KEY (addon_name)
) CHARACTER SET=utf8mb4 engine=MyISAM;
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('actionlog', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Audit-trail functionality.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('aggregate_types', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Define complex aggregate types in XML, and spawn them.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('apache_config_files', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Sample .htaccess files to help achieve optimal configuration on the Apache web server.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('authors', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Certain kinds of content can have authors instead of submitters (e.g. \'ocProducts\'). The authors may be independently described and searched under.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('awards', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Pick out content for featuring.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('backup', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Perform incremental or full backups of files and the database. Supports scheduling.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('banners', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'An advanced banner system, with support for multiple banner rotations, commercial banner campaigns, and webring-style systems. Support for graphical, text, and flash banners. Hotword activation support.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('bookmarks', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Allow members to bookmark screens of the website. As the bookmarks are tied to their member profile they can access them from any computer they can log in on.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('breadcrumbs', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Advanced breadcrumb editing.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('calendar', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'An advanced community calendar.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('captcha', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Stop spam-bots from performing actions on the website.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('catalogues', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Describe your own custom data record types (by choosing and configuring fields) and populate with records. Supports tree structures, and most standard Composr features (e.g. ratings).', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('chat', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Chatrooms and instant messaging.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_avatars', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A selection of avatars for Conversr', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_cartoon_avatars', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A selection of avatars for Conversr (sketched characters)', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_clubs', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Clubs for members, each of which comes with a forum.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_contact_member', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Off-site e-mailing of members (more private, and may be used by guests).', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_cpfs', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Custom profile fields, so members may save additional details. If this is uninstalled any existing custom profile fields will remain in the system.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_forum', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'The Conversr forum- a modern advanced forum for members to interact on.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_member_avatars', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Member avatars.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_member_photos', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Member photos.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_member_titles', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Member titles.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_multi_moderations', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Multi-moderations for the Conversr forum.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_post_templates', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Post templates for the Conversr forum.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_reported_posts', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Post reporting with the Conversr forum.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_signatures', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Member signatures.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_thematic_avatars', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A selection of avatars for Conversr', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('cns_warnings', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Member warnings and punishment.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('code_editor', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'For programmers- A simple editor for editing Composr code files, with support for override support and saving via FTP.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('collaboration_zone', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Collaboration Zone.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('commandr', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A command-line environment for managing your website, designed for Linux/Unix lovers.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('content_privacy', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Allows users to specify privacy level for their content.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('content_reviews', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Regularly review content for accuracy.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', '(Core Composr code)', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_abstract_components', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Core rendering functionality.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_abstract_interfaces', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Core rendering functionality.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_addon_management', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Install or uninstall addons.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_adminzone_dashboard', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'The dashboard tools shown in the Admin Zone.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_cleanup_tools', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Behind-the-scenes maintenance tasks.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_cns', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'The Composr member/usergroup system.', 1554920594);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_comcode_pages', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Manage new pages on the website, known as Comcode pages.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_configuration', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Set configuration options.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_database_drivers', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'The code layer that binds the software to one of various different kinds of database software.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_feedback_features', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Features for user interaction with content.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_fields', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', '(Core fields API)', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_form_interfaces', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Core rendering functionality for forms.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_forum_drivers', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'The code layer that binds the software to one of various different forum/member systems.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_graphic_text', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Core rendering functionality for imagery.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_html_abstractions', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Core rendering functionality.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_language_editing', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Translate the software, or just change what it says for stylistic reasons.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_menus', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Edit menus.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_notifications', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Sends out action-triggered notifications to members listening to them.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_permission_management', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Manage permissions.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_primary_layout', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Core rendering functionality.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_rich_media', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Comcode and attachments.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_themeing', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Themeing the website, via CSS, HTML, and images.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_upgrader', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'The upgrader code.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_webstandards', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Web Standards checking tools.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('core_zone_editor', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Manage zones (sub-sites).', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('counting_blocks', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Blocks for hit counters, and count-downs.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('custom_comcode', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Create new Comcode tags.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('debrand', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Allow easy debranding of the website software.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('downloads', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Host a downloads directory.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('ecommerce', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'eCommerce infrastructure, with support for digital purchase and usergroup subscriptions. Accounting functionality.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('errorlog', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Log of errors that have happened on the website.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('failover', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Advanced system to detect if the site goes down, and provide an automatic fallback.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('filedump', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'File/media library, for use in attachments or for general ad-hoc sharing.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('forum_blocks', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Blocks to draw forum posts and topics into the main website.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('galleries', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Galleries, including support for video galleries, and member personal galleries.', 1554920595);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('google_appengine', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Support for deploying to Google App Engine (for developers).', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('help_page', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A simple website help page. Note that removing this will not remove the menu link automatically.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('hphp_buildkit', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Scripts for supporting Facebook\'s HHVM.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('import', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Switch to Composr from other software. This addon provides the architecture for importing, and a number of prewritten importers.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('installer', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'The installer files (can be removed immediately after installing; in fact Composr makes you remove install.php manually).', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('language_block', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A block to allow visitors to choose their language.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('ldap', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Support for integrating Conversr with an LDAP server, so usergroup and members can be the same as those already on the network', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('linux_helper_scripts', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Bash shell scripts to help configure permissions on Linux/Unix servers.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('match_key_permissions', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Match-key-permissions allow advanced setting of permissions on a screen-by-screen basis.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('msn', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Features to support multi-site-networks (networks of linked sites that usually share a common member system).', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('news', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'News and blogging.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('news_shared', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', '(Common files needed for RSS and News addons)', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('newsletter', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Support for users to join newsletters, and for the staff to send out newsletters to subscribers, and to specific usergroups.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('page_management', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Manage pages on the website.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('phpinfo', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Access PHP configurational information from inside Composr.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('points', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Allow members to accumulate points via a number of configurable activities, as well as exchange points with each other. Points act as a ranking system as well as a virtual currency.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('pointstore', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Provide a number of virtual products to your members in exchange for the points they have accumulated by their activity', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('polls', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A poll (voting) system.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('printer_friendly_block', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A block to provide a link for the current screen to be turned into it\'s printer-friendly equivalent.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('quizzes', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Construct competitions, surveys, and tests, for members to perform. Highly configurable, and comes with administrative tools to handle the results.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('random_quotes', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A block to display random quotes on your website, and an administrative tool to choose them.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('realtime_rain', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Real-time/historic display of website activity.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('recommend', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Allow members to easily recommend the website to others.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('redirects_editor', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Manage redirects between pages.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('rootkit_detector', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A tool to help power-user webmasters identify if a \"rootkit\" has been placed on the server.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('search', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Multi-content search engine.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('securitylogging', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Log/display security alerts.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('setupwizard', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Quick-start setup wizard.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('shopping', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Online store functionality.', 1554920596);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('sms', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Provides an option for the software to send SMS messages, via the commercial Clickatell web service. By default this is only used by the notifications system.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('ssl', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Choose which pages of your website run over HTTPS (SSL). Requires an SSL certificate to be installed on the webserver, and a dedicated IP address.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('staff', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Choose and display a selection of staff from the super-administator/super-moderator usergroups. This is useful for multi-site networks, where members with privileges may not be considered staff on all websites on the network.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('staff_messaging', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Blocks to allow visitors to contact the staff, either via e-mail, or via a special administrative interface which the staff may use to comment on the messages and assign task ownership.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('stats', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Show advanced graphs (analytics) and dumps of raw data relating to your website activity.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('stats_block', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A block to show a selection of your website statistics to your visitors.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('supermember_directory', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Show a list of all members in the configured \"Super member\" usergroup. Useful for communities that need to provide a list of VIPs.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('syndication', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Syndicate RSS/Atom feeds of your content.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('syndication_blocks', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Show RSS and Atom feeds from other websites.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('textbased_persistent_caching', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A persistent data cache, using disk files for data storage.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('themewizard', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Automatically generate your own colour schemes using the default theme as a base. Uses the sophisticated chromagraphic equations built into Composr.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('tickets', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A support ticket system.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('uninstaller', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'The uninstaller.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('unvalidated', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Subject member\'s to validation (approval) of their content submissions, and enable/disable content.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('users_online_block', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A block to show which users who are currently visiting the website, and birthdays.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('welcome_emails', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Welcome e-mails for new members.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('wiki', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Collaborative/encyclopaedic database interface. A wiki-like community database with rich media capabilities.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('windows_helper_scripts', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'A .bat script to help configure permissions on Windows servers.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('wordfilter', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Block rude/offensive/inappropriate words.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('xml_fields', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Advanced form field filtering.', 1554920597);
INSERT INTO cms_addons (addon_name, addon_author, addon_organisation, addon_version, addon_category, addon_copyright_attribution, addon_licence, addon_description, addon_install_time) VALUES ('zone_logos', 'Core Team', 'ocProducts', '10', 'Uncategorised/Alpha', '', '(Unstated)', 'Support for having different logos for individual zones.', 1554920597);
DROP TABLE IF EXISTS cms_addons_dependencies;
CREATE TABLE cms_addons_dependencies (
addon_name_incompatibility tinyint(1) NOT NULL,
addon_name_dependant_upon varchar(255) NOT NULL,
addon_name varchar(255) NOT NULL,
id integer unsigned auto_increment NOT NULL,
PRIMARY KEY (id)
) CHARACTER SET=utf8mb4 engine=MyISAM;
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (1, 'aggregate_types', 'commandr', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (2, 'aggregate_types', 'import', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (3, 'cns_avatars', 'cns_member_avatars', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (4, 'cns_cartoon_avatars', 'cns_member_avatars', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (5, 'cns_forum', 'polls', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (6, 'cns_multi_moderations', 'cns_forum', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (7, 'cns_post_templates', 'cns_forum', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (8, 'cns_reported_posts', 'cns_forum', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (9, 'cns_thematic_avatars', 'cns_member_avatars', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (10, 'commandr', 'import', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (11, 'content_privacy', 'cns_cpfs', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (12, 'content_reviews', 'unvalidated', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (13, 'content_reviews', 'commandr', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (14, 'forum_blocks', 'news_shared', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (15, 'news', 'news_shared', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (16, 'pointstore', 'points', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (17, 'realtime_rain', 'stats', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (18, 'shopping', 'ecommerce', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (19, 'shopping', 'catalogues', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (20, 'staff_messaging', 'cns_forum', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (21, 'supermember_directory', 'collaboration_zone', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (22, 'syndication', 'syndication_blocks', 0);
INSERT INTO cms_addons_dependencies (id, addon_name, addon_name_dependant_upon, addon_name_incompatibility) VALUES (23, 'syndication_blocks', 'news', 0);
DROP TABLE IF EXISTS cms_addons_files;
CREATE TABLE cms_addons_files (
id integer unsigned auto_increment NOT NULL,
addon_name varchar(255) NOT NULL,
filename varchar(255) NOT NULL,
PRIMARY KEY (id)
) CHARACTER SET=utf8mb4 engine=MyISAM;
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (1, 'actionlog', 'themes/default/images/icons/24x24/menu/adminzone/audit/actionlog.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (2, 'actionlog', 'themes/default/images/icons/48x48/menu/adminzone/audit/actionlog.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (3, 'actionlog', 'sources/hooks/systems/notifications/actionlog.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (4, 'actionlog', 'sources/hooks/systems/realtime_rain/actionlog.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (5, 'actionlog', 'sources/hooks/systems/addon_registry/actionlog.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (6, 'actionlog', 'adminzone/pages/modules/admin_actionlog.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (7, 'actionlog', 'sources/hooks/systems/rss/admin_recent_actions.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (8, 'actionlog', 'lang/EN/actionlog.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (9, 'actionlog', 'sources/hooks/systems/config/store_revisions.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (10, 'actionlog', 'sources/revisions_engine_files.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (11, 'actionlog', 'sources/revisions_engine_database.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (12, 'actionlog', 'adminzone/pages/modules/admin_revisions.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (13, 'actionlog', 'themes/default/images/icons/24x24/buttons/revisions.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (14, 'actionlog', 'themes/default/images/icons/48x48/buttons/revisions.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (15, 'actionlog', 'themes/default/images/icons/24x24/buttons/undo.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (16, 'actionlog', 'themes/default/images/icons/48x48/buttons/undo.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (17, 'actionlog', 'themes/default/templates/REVISIONS_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (18, 'actionlog', 'themes/default/templates/REVISIONS_WRAP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (19, 'actionlog', 'themes/default/templates/REVISIONS_DIFF_ICON.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (20, 'actionlog', 'themes/default/templates/REVISION_UNDO.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (21, 'aggregate_types', 'themes/default/images/icons/24x24/menu/adminzone/structure/aggregate_types.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (22, 'aggregate_types', 'themes/default/images/icons/48x48/menu/adminzone/structure/aggregate_types.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (23, 'aggregate_types', 'sources/hooks/systems/addon_registry/aggregate_types.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (24, 'aggregate_types', 'sources/hooks/systems/resource_meta_aware/aggregate_type_instance.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (25, 'aggregate_types', 'lang/EN/aggregate_types.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (26, 'aggregate_types', 'adminzone/pages/modules/admin_aggregate_types.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (27, 'aggregate_types', 'data/xml_config/aggregate_types.xml');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (28, 'aggregate_types', 'sources/hooks/systems/commandr_fs/aggregate_type_instances.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (29, 'aggregate_types', 'sources/aggregate_types.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (30, 'aggregate_types', 'sources/hooks/modules/admin_import_types/aggregate_types.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (31, 'aggregate_types', 'sources/hooks/systems/page_groupings/aggregate_types.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (32, 'apache_config_files', 'sources/hooks/systems/addon_registry/apache_config_files.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (33, 'apache_config_files', 'plain.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (34, 'apache_config_files', 'recommended.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (35, 'authors', 'themes/default/images/icons/24x24/menu/cms/author_set_own_profile.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (36, 'authors', 'themes/default/images/icons/48x48/menu/cms/author_set_own_profile.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (37, 'authors', 'themes/default/images/icons/24x24/menu/rich_content/authors.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (38, 'authors', 'themes/default/images/icons/48x48/menu/rich_content/authors.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (39, 'authors', 'themes/default/css/authors.css');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (40, 'authors', 'sources/hooks/systems/attachments/author.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (41, 'authors', 'sources/hooks/systems/meta/authors.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (42, 'authors', 'sources/hooks/systems/addon_registry/authors.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (43, 'authors', 'themes/default/templates/AUTHOR_MANAGE_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (44, 'authors', 'themes/default/templates/AUTHOR_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (45, 'authors', 'themes/default/templates/AUTHOR_POPUP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (46, 'authors', 'themes/default/templates/AUTHOR_SCREEN_POTENTIAL_ACTION_ENTRY.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (47, 'authors', 'data/authors.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (48, 'authors', 'cms/pages/modules/cms_authors.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (49, 'authors', 'lang/EN/authors.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (50, 'authors', 'site/pages/modules/authors.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (51, 'authors', 'sources/authors.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (52, 'authors', 'sources/hooks/systems/page_groupings/authors.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (53, 'authors', 'sources/hooks/systems/rss/authors.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (54, 'authors', 'sources/hooks/systems/content_meta_aware/author.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (55, 'authors', 'sources/hooks/systems/commandr_fs/authors.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (56, 'authors', 'sources/hooks/systems/sitemap/author.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (57, 'awards', 'themes/default/images/icons/24x24/menu/adminzone/setup/awards.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (58, 'awards', 'themes/default/images/icons/48x48/menu/adminzone/setup/awards.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (59, 'awards', 'sources/hooks/systems/addon_registry/awards.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (60, 'awards', 'sources/hooks/systems/resource_meta_aware/award_type.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (61, 'awards', 'themes/default/templates/AWARDED_CONTENT.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (62, 'awards', 'themes/default/templates/BLOCK_MAIN_AWARDS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (63, 'awards', 'adminzone/pages/modules/admin_awards.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (64, 'awards', 'sources/blocks/main_awards.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (65, 'awards', 'sources/awards.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (66, 'awards', 'sources/awards2.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (67, 'awards', 'site/pages/modules/awards.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (68, 'awards', 'lang/EN/awards.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (69, 'awards', 'sources/hooks/blocks/main_staff_checklist/awards.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (70, 'awards', 'themes/default/css/awards.css');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (71, 'awards', 'themes/default/images/awarded.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (72, 'awards', 'sources/hooks/modules/admin_import_types/awards.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (73, 'awards', 'sources/hooks/systems/block_ui_renderers/awards.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (74, 'awards', 'sources/hooks/systems/commandr_fs/award_types.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (75, 'awards', 'sources/hooks/systems/config/awarded_items_per_page.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (76, 'backup', 'themes/default/images/icons/24x24/menu/adminzone/tools/bulk_content_actions/backups.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (77, 'backup', 'themes/default/images/icons/48x48/menu/adminzone/tools/bulk_content_actions/backups.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (78, 'backup', 'sources/hooks/systems/config/backup_overwrite.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (79, 'backup', 'sources/hooks/systems/config/backup_server_hostname.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (80, 'backup', 'sources/hooks/systems/config/backup_server_password.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (81, 'backup', 'sources/hooks/systems/config/backup_server_path.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (82, 'backup', 'sources/hooks/systems/config/backup_server_port.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (83, 'backup', 'sources/hooks/systems/config/backup_server_user.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (84, 'backup', 'sources/hooks/systems/config/backup_time.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (85, 'backup', 'data/modules/admin_backup/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (86, 'backup', 'data_custom/modules/admin_backup/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (87, 'backup', 'sources/hooks/systems/addon_registry/backup.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (88, 'backup', 'themes/default/templates/RESTORE_HTML_WRAP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (89, 'backup', 'exports/backups/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (90, 'backup', 'themes/default/templates/BACKUP_LAUNCH_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (91, 'backup', 'adminzone/pages/modules/admin_backup.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (92, 'backup', 'data/modules/admin_backup/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (93, 'backup', 'data/modules/admin_backup/restore.php.pre');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (94, 'backup', 'data_custom/modules/admin_backup/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (95, 'backup', 'lang/EN/backups.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (96, 'backup', 'sources/backup.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (97, 'backup', 'sources/hooks/blocks/main_staff_checklist/backup.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (98, 'backup', 'sources/hooks/systems/cron/backups.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (99, 'backup', 'sources/hooks/systems/page_groupings/backup.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (100, 'backup', 'sources/hooks/systems/snippets/backup_size.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (101, 'backup', 'sources/hooks/systems/tasks/make_backup.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (102, 'banners', 'themes/default/images/icons/24x24/menu/cms/banners.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (103, 'banners', 'themes/default/images/icons/48x48/menu/cms/banners.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (104, 'banners', 'themes/default/css/banners.css');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (105, 'banners', 'sources/hooks/systems/snippets/exists_banner.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (106, 'banners', 'sources/hooks/systems/snippets/exists_banner_type.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (107, 'banners', 'sources/hooks/systems/config/admin_banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (108, 'banners', 'sources/hooks/systems/config/banner_autosize.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (109, 'banners', 'sources/hooks/systems/config/points_ADD_BANNER.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (110, 'banners', 'sources/hooks/systems/config/use_banner_permissions.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (111, 'banners', 'sources/hooks/systems/realtime_rain/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (112, 'banners', 'adminzone/pages/modules/admin_banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (113, 'banners', 'uploads/banners/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (114, 'banners', 'themes/default/templates/BANNER_PREVIEW.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (115, 'banners', 'themes/default/templates/BANNERS_NONE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (116, 'banners', 'sources/hooks/systems/preview/banner.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (117, 'banners', 'sources/hooks/modules/admin_import_types/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (118, 'banners', 'sources/hooks/systems/addon_registry/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (119, 'banners', 'themes/default/templates/BANNER_FLASH.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (120, 'banners', 'themes/default/templates/BANNER_TEXT.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (121, 'banners', 'themes/default/templates/BANNER_VIEW_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (122, 'banners', 'themes/default/templates/BANNER_IFRAME.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (123, 'banners', 'themes/default/templates/BANNER_IMAGE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (124, 'banners', 'themes/default/templates/BANNER_SHOW_CODE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (125, 'banners', 'themes/default/templates/BANNER_ADDED_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (126, 'banners', 'themes/default/templates/BLOCK_MAIN_TOP_SITES.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (127, 'banners', 'themes/default/templates/BLOCK_MAIN_BANNER_WAVE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (128, 'banners', 'themes/default/templates/BLOCK_MAIN_BANNER_WAVE_BWRAP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (129, 'banners', 'sources/hooks/systems/sitemap/banner.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (130, 'banners', 'banner.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (131, 'banners', 'uploads/banners/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (132, 'banners', 'cms/pages/modules/cms_banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (133, 'banners', 'lang/EN/banners.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (134, 'banners', 'site/pages/modules/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (135, 'banners', 'sources/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (136, 'banners', 'sources/banners2.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (137, 'banners', 'sources/blocks/main_top_sites.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (138, 'banners', 'sources/blocks/main_banner_wave.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (139, 'banners', 'sources/hooks/modules/admin_setupwizard/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (140, 'banners', 'sources/hooks/modules/admin_unvalidated/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (141, 'banners', 'sources/hooks/modules/pointstore/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (142, 'banners', 'themes/default/templates/POINTSTORE_BANNERS_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (143, 'banners', 'themes/default/templates/POINTSTORE_BANNERS_2.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (144, 'banners', 'themes/default/templates/POINTSTORE_BANNERS_ACTIVATE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (145, 'banners', 'themes/default/templates/POINTSTORE_BANNERS_UPGRADE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (146, 'banners', 'sources/hooks/systems/page_groupings/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (147, 'banners', 'sources/hooks/systems/content_meta_aware/banner.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (148, 'banners', 'sources/hooks/systems/content_meta_aware/banner_type.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (149, 'banners', 'sources/hooks/systems/commandr_fs/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (150, 'banners', 'data/images/advertise_here.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (151, 'banners', 'data/images/donate.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (152, 'banners', 'data/images/placeholder_leaderboard.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (153, 'banners', 'sources/hooks/systems/block_ui_renderers/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (154, 'banners', 'sources/hooks/systems/reorganise_uploads/banners.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (155, 'bookmarks', 'themes/default/images/icons/24x24/menu/site_meta/bookmarks.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (156, 'bookmarks', 'themes/default/images/icons/48x48/menu/site_meta/bookmarks.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (157, 'bookmarks', 'sources/bookmarks.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (158, 'bookmarks', 'data/bookmarks.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (159, 'bookmarks', 'sources/hooks/systems/addon_registry/bookmarks.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (160, 'bookmarks', 'sources/hooks/modules/admin_import_types/bookmarks.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (161, 'bookmarks', 'themes/default/templates/BOOKMARKS_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (162, 'bookmarks', 'themes/default/javascript/bookmarks.js');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (163, 'bookmarks', 'lang/EN/bookmarks.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (164, 'bookmarks', 'site/pages/modules/bookmarks.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (165, 'bookmarks', 'themes/default/css/bookmarks.css');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (166, 'bookmarks', 'sources/hooks/systems/sitemap/bookmarks.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (167, 'bookmarks', 'sources/hooks/systems/page_groupings/bookmarks.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (168, 'bookmarks', 'sources/hooks/systems/commandr_fs_extended_member/bookmarks.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (169, 'breadcrumbs', 'themes/default/images/icons/24x24/menu/adminzone/structure/breadcrumbs.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (170, 'breadcrumbs', 'themes/default/images/icons/48x48/menu/adminzone/structure/breadcrumbs.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (171, 'breadcrumbs', 'sources/hooks/systems/addon_registry/breadcrumbs.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (172, 'breadcrumbs', 'data/xml_config/breadcrumbs.xml');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (173, 'breadcrumbs', 'sources/breadcrumbs.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (174, 'calendar', 'themes/default/images/icons/24x24/menu/rich_content/calendar.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (175, 'calendar', 'themes/default/images/icons/48x48/menu/rich_content/calendar.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (176, 'calendar', 'sources/hooks/systems/snippets/calendar_recurrence_suggest.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (177, 'calendar', 'sources/hooks/systems/notifications/calendar_reminder.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (178, 'calendar', 'sources/hooks/systems/notifications/calendar_event.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (179, 'calendar', 'sources/hooks/systems/config/calendar_show_stats_count_events.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (180, 'calendar', 'sources/hooks/systems/config/calendar_show_stats_count_events_this_month.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (181, 'calendar', 'sources/hooks/systems/config/calendar_show_stats_count_events_this_week.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (182, 'calendar', 'sources/hooks/systems/config/calendar_show_stats_count_events_this_year.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (183, 'calendar', 'sources/hooks/systems/realtime_rain/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (184, 'calendar', 'sources/hooks/systems/content_meta_aware/event.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (185, 'calendar', 'sources/hooks/systems/content_meta_aware/calendar_type.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (186, 'calendar', 'sources/hooks/systems/commandr_fs/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (187, 'calendar', 'sources/hooks/systems/meta/events.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (188, 'calendar', 'sources/hooks/blocks/side_stats/stats_calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (189, 'calendar', 'sources/hooks/systems/preview/calendar_type.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (190, 'calendar', 'sources/hooks/modules/admin_import_types/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (191, 'calendar', 'sources/hooks/modules/admin_setupwizard/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (192, 'calendar', 'sources/hooks/modules/admin_themewizard/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (193, 'calendar', 'sources/hooks/systems/addon_registry/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (194, 'calendar', 'themes/default/templates/CALENDAR_MAIN_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (195, 'calendar', 'themes/default/templates/CALENDAR_DAY.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (196, 'calendar', 'themes/default/templates/CALENDAR_DAY_ENTRY.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (197, 'calendar', 'themes/default/templates/CALENDAR_DAY_ENTRY_FREE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (198, 'calendar', 'themes/default/templates/CALENDAR_DAY_HOUR.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (199, 'calendar', 'themes/default/templates/CALENDAR_DAY_STREAM_HOUR.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (200, 'calendar', 'themes/default/templates/CALENDAR_EVENT_CONFLICT.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (201, 'calendar', 'themes/default/templates/CALENDAR_EVENT_TYPE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (202, 'calendar', 'themes/default/templates/CALENDAR_MONTH.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (203, 'calendar', 'themes/default/templates/CALENDAR_MONTH_DAY.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (204, 'calendar', 'themes/default/templates/CALENDAR_MONTH_ENTRY.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (205, 'calendar', 'themes/default/templates/CALENDAR_MONTH_ENTRY_FREE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (206, 'calendar', 'themes/default/templates/CALENDAR_MONTH_WEEK.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (207, 'calendar', 'themes/default/templates/CALENDAR_EVENT_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (208, 'calendar', 'themes/default/templates/CALENDAR_WEEK.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (209, 'calendar', 'themes/default/templates/CALENDAR_WEEK_HOUR_DAY.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (210, 'calendar', 'themes/default/templates/CALENDAR_WEEK_ENTRY.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (211, 'calendar', 'themes/default/templates/CALENDAR_WEEK_ENTRY_FREE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (212, 'calendar', 'themes/default/templates/CALENDAR_WEEK_HOUR.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (213, 'calendar', 'themes/default/templates/CALENDAR_YEAR.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (214, 'calendar', 'themes/default/templates/CALENDAR_YEAR_MONTH.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (215, 'calendar', 'themes/default/templates/CALENDAR_YEAR_MONTH_DAY_ACTIVE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (216, 'calendar', 'themes/default/templates/CALENDAR_YEAR_MONTH_DAY_FREE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (217, 'calendar', 'themes/default/templates/CALENDAR_YEAR_MONTH_DAY_ROW.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (218, 'calendar', 'themes/default/templates/CALENDAR_YEAR_MONTH_DAY_SPACER.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (219, 'calendar', 'themes/default/templates/CALENDAR_YEAR_MONTH_ROW.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (220, 'calendar', 'themes/default/templates/BLOCK_SIDE_CALENDAR.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (221, 'calendar', 'themes/default/templates/BLOCK_SIDE_CALENDAR_LISTING.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (222, 'calendar', 'themes/default/templates/CALENDAR_EVENT_BOX.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (223, 'calendar', 'sources/hooks/systems/trackback/events.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (224, 'calendar', 'cms/pages/modules/cms_calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (225, 'calendar', 'lang/EN/calendar.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (226, 'calendar', 'site/pages/modules/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (227, 'calendar', 'sources/blocks/side_calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (228, 'calendar', 'sources/hooks/systems/sitemap/calendar_type.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (229, 'calendar', 'sources/hooks/systems/sitemap/event.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (230, 'calendar', 'sources/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (231, 'calendar', 'sources/calendar2.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (232, 'calendar', 'sources/calendar_ical.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (233, 'calendar', 'sources/hooks/modules/admin_import/icalendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (234, 'calendar', 'sources/hooks/modules/admin_newsletter/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (235, 'calendar', 'sources/hooks/modules/admin_unvalidated/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (236, 'calendar', 'sources/hooks/modules/members/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (237, 'calendar', 'sources/hooks/modules/search/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (238, 'calendar', 'sources/hooks/systems/attachments/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (239, 'calendar', 'sources/hooks/systems/cron/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (240, 'calendar', 'sources/hooks/systems/page_groupings/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (241, 'calendar', 'sources/hooks/systems/preview/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (242, 'calendar', 'sources/hooks/systems/rss/calendar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (243, 'calendar', 'themes/default/css/calendar.css');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (244, 'calendar', 'themes/default/images/calendar/activity.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (245, 'calendar', 'themes/default/images/calendar/anniversary.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (246, 'calendar', 'themes/default/images/calendar/appointment.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (247, 'calendar', 'themes/default/images/calendar/birthday.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (248, 'calendar', 'themes/default/images/calendar/commitment.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (249, 'calendar', 'themes/default/images/calendar/duty.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (250, 'calendar', 'themes/default/images/calendar/festival.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (251, 'calendar', 'themes/default/images/calendar/general.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (252, 'calendar', 'themes/default/images/calendar/public_holiday.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (253, 'calendar', 'themes/default/images/calendar/vacation.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (254, 'calendar', 'themes/default/images/calendar/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (255, 'calendar', 'themes/default/images/calendar/priority_1.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (256, 'calendar', 'themes/default/images/calendar/priority_2.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (257, 'calendar', 'themes/default/images/calendar/priority_3.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (258, 'calendar', 'themes/default/images/calendar/priority_4.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (259, 'calendar', 'themes/default/images/calendar/priority_5.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (260, 'calendar', 'themes/default/images/calendar/priority_na.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (261, 'calendar', 'themes/default/images/calendar/rss.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (262, 'calendar', 'themes/default/images/calendar/system_command.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (263, 'calendar', 'sources/hooks/systems/notifications/member_calendar_changes.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (264, 'calendar', 'sources/hooks/systems/commandr_fs_extended_member/calendar_interests.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (265, 'captcha', 'sources/hooks/systems/snippets/captcha_wrong.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (266, 'captcha', 'sources/hooks/systems/addon_registry/captcha.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (267, 'captcha', 'themes/default/templates/FORM_SCREEN_INPUT_CAPTCHA.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (268, 'captcha', 'data/captcha.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (269, 'captcha', 'sources/captcha.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (270, 'captcha', 'lang/EN/captcha.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (271, 'captcha', 'data/sounds/0.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (272, 'captcha', 'data/sounds/1.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (273, 'captcha', 'data/sounds/2.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (274, 'captcha', 'data/sounds/3.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (275, 'captcha', 'data/sounds/4.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (276, 'captcha', 'data/sounds/5.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (277, 'captcha', 'data/sounds/6.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (278, 'captcha', 'data/sounds/7.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (279, 'captcha', 'data/sounds/8.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (280, 'captcha', 'data/sounds/9.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (281, 'captcha', 'data/sounds/a.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (282, 'captcha', 'data/sounds/b.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (283, 'captcha', 'data/sounds/c.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (284, 'captcha', 'data/sounds/d.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (285, 'captcha', 'data/sounds/e.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (286, 'captcha', 'data/sounds/f.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (287, 'captcha', 'data/sounds/g.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (288, 'captcha', 'data/sounds/h.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (289, 'captcha', 'data/sounds/i.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (290, 'captcha', 'data/sounds/j.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (291, 'captcha', 'data/sounds/k.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (292, 'captcha', 'data/sounds/l.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (293, 'captcha', 'data/sounds/m.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (294, 'captcha', 'data/sounds/n.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (295, 'captcha', 'data/sounds/o.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (296, 'captcha', 'data/sounds/p.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (297, 'captcha', 'data/sounds/q.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (298, 'captcha', 'data/sounds/r.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (299, 'captcha', 'data/sounds/s.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (300, 'captcha', 'data/sounds/t.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (301, 'captcha', 'data/sounds/u.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (302, 'captcha', 'data/sounds/v.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (303, 'captcha', 'data/sounds/w.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (304, 'captcha', 'data/sounds/x.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (305, 'captcha', 'data/sounds/y.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (306, 'captcha', 'data/sounds/z.wav');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (307, 'captcha', 'sources/hooks/systems/config/use_captchas.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (308, 'captcha', 'sources/hooks/systems/config/captcha_single_guess.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (309, 'captcha', 'sources/hooks/systems/config/css_captcha.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (310, 'captcha', 'sources/hooks/systems/config/captcha_noise.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (311, 'captcha', 'sources/hooks/systems/config/captcha_on_feedback.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (312, 'captcha', 'sources/hooks/systems/config/audio_captcha.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (313, 'captcha', 'sources/hooks/systems/config/js_captcha.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (314, 'catalogues', 'themes/default/images/icons/24x24/menu/rich_content/catalogues/catalogues.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (315, 'catalogues', 'themes/default/images/icons/48x48/menu/rich_content/catalogues/catalogues.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (316, 'catalogues', 'themes/default/images/icons/24x24/menu/cms/catalogues/add_one_catalogue.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (317, 'catalogues', 'themes/default/images/icons/24x24/menu/cms/catalogues/edit_one_catalogue.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (318, 'catalogues', 'themes/default/images/icons/48x48/menu/cms/catalogues/add_one_catalogue.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (319, 'catalogues', 'themes/default/images/icons/48x48/menu/cms/catalogues/edit_one_catalogue.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (320, 'catalogues', 'themes/default/images/icons/48x48/menu/cms/catalogues/edit_this_catalogue.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (321, 'catalogues', 'themes/default/images/icons/48x48/menu/cms/catalogues/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (322, 'catalogues', 'themes/default/images/icons/24x24/menu/cms/catalogues/edit_this_catalogue.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (323, 'catalogues', 'themes/default/images/icons/24x24/menu/cms/catalogues/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (324, 'catalogues', 'themes/default/images/icons/24x24/menu/rich_content/catalogues/classifieds.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (325, 'catalogues', 'themes/default/images/icons/24x24/menu/rich_content/catalogues/contacts.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (326, 'catalogues', 'themes/default/images/icons/24x24/menu/rich_content/catalogues/faqs.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (327, 'catalogues', 'themes/default/images/icons/24x24/menu/rich_content/catalogues/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (328, 'catalogues', 'themes/default/images/icons/24x24/menu/rich_content/catalogues/links.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (329, 'catalogues', 'themes/default/images/icons/24x24/menu/rich_content/catalogues/products.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (330, 'catalogues', 'themes/default/images/icons/24x24/menu/rich_content/catalogues/projects.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (331, 'catalogues', 'themes/default/images/icons/48x48/menu/rich_content/catalogues/classifieds.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (332, 'catalogues', 'themes/default/images/icons/48x48/menu/rich_content/catalogues/contacts.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (333, 'catalogues', 'themes/default/images/icons/48x48/menu/rich_content/catalogues/faqs.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (334, 'catalogues', 'themes/default/images/icons/48x48/menu/rich_content/catalogues/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (335, 'catalogues', 'themes/default/images/icons/48x48/menu/rich_content/catalogues/links.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (336, 'catalogues', 'themes/default/images/icons/48x48/menu/rich_content/catalogues/products.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (337, 'catalogues', 'themes/default/images/icons/48x48/menu/rich_content/catalogues/projects.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (338, 'catalogues', 'sources/hooks/systems/reorganise_uploads/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (339, 'catalogues', 'sources/hooks/systems/snippets/exists_catalogue.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (340, 'catalogues', 'sources/hooks/systems/module_permissions/catalogues_catalogue.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (341, 'catalogues', 'sources/hooks/systems/module_permissions/catalogues_category.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (342, 'catalogues', 'sources/hooks/systems/rss/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (343, 'catalogues', 'sources/hooks/systems/page_groupings/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (344, 'catalogues', 'sources/hooks/systems/trackback/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (345, 'catalogues', 'sources/hooks/modules/search/catalogue_categories.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (346, 'catalogues', 'sources/hooks/modules/search/catalogue_entries.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (347, 'catalogues', 'sources/hooks/systems/ajax_tree/choose_catalogue_category.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (348, 'catalogues', 'sources/hooks/systems/ajax_tree/choose_catalogue_entry.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (349, 'catalogues', 'sources/hooks/systems/cron/catalogue_entry_timeouts.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (350, 'catalogues', 'sources/hooks/systems/cron/catalogue_view_reports.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (351, 'catalogues', 'sources/hooks/systems/meta/catalogue_category.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (352, 'catalogues', 'sources/hooks/systems/meta/catalogue_entry.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (353, 'catalogues', 'themes/default/javascript/catalogues.js');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (354, 'catalogues', 'sources/hooks/modules/admin_import_types/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (355, 'catalogues', 'sources/hooks/systems/content_meta_aware/catalogue.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (356, 'catalogues', 'sources/hooks/systems/content_meta_aware/catalogue_category.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (357, 'catalogues', 'sources/hooks/systems/content_meta_aware/catalogue_entry.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (358, 'catalogues', 'sources/hooks/systems/commandr_fs/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (359, 'catalogues', 'sources/hooks/systems/addon_registry/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (360, 'catalogues', 'themes/default/templates/CATALOGUE_ADDING_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (361, 'catalogues', 'themes/default/templates/CATALOGUE_EDITING_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (362, 'catalogues', 'themes/default/templates/CATALOGUE_CATEGORIES_LIST_LINE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (363, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_CATEGORY_EMBED.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (364, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_CATEGORY_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (365, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_FIELDMAP_ENTRY_WRAP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (366, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_FIELDMAP_ENTRY_FIELD.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (367, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_GRID_ENTRY_WRAP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (368, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_GRID_ENTRY_FIELD.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (369, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_ENTRY_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (370, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_TITLELIST_ENTRY.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (371, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_TITLELIST_WRAP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (372, 'catalogues', 'themes/default/templates/CATALOGUE_ENTRIES_LIST_LINE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (373, 'catalogues', 'themes/default/templates/SEARCH_RESULT_CATALOGUE_ENTRIES.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (374, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_TABULAR_ENTRY_WRAP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (375, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_TABULAR_ENTRY_FIELD.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (376, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_TABULAR_HEADCELL.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (377, 'catalogues', 'themes/default/templates/CATALOGUE_DEFAULT_TABULAR_WRAP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (378, 'catalogues', 'themes/default/templates/CATALOGUE_links_TABULAR_ENTRY_WRAP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (379, 'catalogues', 'themes/default/templates/CATALOGUE_links_TABULAR_ENTRY_FIELD.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (380, 'catalogues', 'themes/default/templates/CATALOGUE_links_TABULAR_HEADCELL.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (381, 'catalogues', 'themes/default/templates/CATALOGUE_links_TABULAR_WRAP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (382, 'catalogues', 'themes/default/templates/CATALOGUE_CATEGORY_HEADING.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (383, 'catalogues', 'sources/hooks/systems/sitemap/catalogue.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (384, 'catalogues', 'sources/hooks/systems/sitemap/catalogue_category.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (385, 'catalogues', 'sources/hooks/systems/sitemap/catalogue_entry.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (386, 'catalogues', 'uploads/catalogues/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (387, 'catalogues', 'uploads/catalogues/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (388, 'catalogues', 'cms/pages/modules/cms_catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (389, 'catalogues', 'lang/EN/catalogues.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (390, 'catalogues', 'site/pages/modules/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (391, 'catalogues', 'sources/hooks/systems/notifications/catalogue_view_reports.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (392, 'catalogues', 'sources/hooks/systems/notifications/catalogue_entry.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (393, 'catalogues', 'sources/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (394, 'catalogues', 'sources/hooks/modules/admin_import/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (395, 'catalogues', 'sources/catalogues2.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (396, 'catalogues', 'sources/hooks/modules/admin_newsletter/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (397, 'catalogues', 'sources/hooks/modules/admin_setupwizard/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (398, 'catalogues', 'sources/hooks/modules/admin_unvalidated/catalogue_entry.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (399, 'catalogues', 'sources/hooks/systems/attachments/catalogue_entry.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (400, 'catalogues', 'sources/blocks/main_cc_embed.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (401, 'catalogues', 'themes/default/css/catalogues.css');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (402, 'catalogues', 'sources/hooks/systems/symbols/CATALOGUE_ENTRY_BACKREFS.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (403, 'catalogues', 'sources/hooks/systems/symbols/CATALOGUE_ENTRY_FIELD_VALUE.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (404, 'catalogues', 'sources/hooks/systems/symbols/CATALOGUE_ENTRY_FIELD_VALUE_PLAIN.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (405, 'catalogues', 'sources/blocks/main_contact_catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (406, 'catalogues', 'sources/hooks/systems/symbols/CATALOGUE_ENTRY_ALL_FIELD_VALUES.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (407, 'catalogues', 'sources/hooks/systems/block_ui_renderers/catalogues.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (408, 'catalogues', 'sources/hooks/systems/config/catalogue_entries_per_page.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (409, 'catalogues', 'sources/hooks/systems/config/catalogue_subcats_per_page.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (410, 'catalogues', 'sources/hooks/systems/config/catalogues_subcat_narrowin.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (411, 'catalogues', 'sources/hooks/systems/tasks/export_catalogue.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (412, 'catalogues', 'sources/hooks/systems/tasks/import_catalogue.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (413, 'chat', 'themes/default/images/icons/14x14/sound_effects.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (414, 'chat', 'themes/default/images/icons/28x28/sound_effects.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (415, 'chat', 'themes/default/images/icons/24x24/menu/social/chat/chat.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (416, 'chat', 'themes/default/images/icons/48x48/menu/social/chat/chat.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (417, 'chat', 'themes/default/images/icons/24x24/menu/social/chat/chatroom_add.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (418, 'chat', 'themes/default/images/icons/48x48/menu/social/chat/chatroom_add.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (419, 'chat', 'themes/default/images/icons/24x24/menu/social/chat/member_blocking.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (420, 'chat', 'themes/default/images/icons/48x48/menu/social/chat/member_blocking.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (421, 'chat', 'themes/default/images/icons/24x24/tabs/member_account/friends.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (422, 'chat', 'themes/default/images/icons/48x48/tabs/member_account/friends.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (423, 'chat', 'themes/default/images/icons/24x24/menu/social/chat/sound.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (424, 'chat', 'themes/default/images/icons/48x48/menu/social/chat/sound.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (425, 'chat', 'themes/default/images/icons/24x24/menu/social/chat/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (426, 'chat', 'themes/default/images/icons/48x48/menu/social/chat/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (427, 'chat', 'sources/chat_shoutbox.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (428, 'chat', 'sources/chat_sounds.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (429, 'chat', 'sources/chat_lobby.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (430, 'chat', 'sources/chat_logs.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (431, 'chat', 'sources/hooks/systems/snippets/im_friends_rejig.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (432, 'chat', 'site/pages/comcode/EN/popup_blockers.txt');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (433, 'chat', 'sources/blocks/side_friends.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (434, 'chat', 'themes/default/templates/BLOCK_SIDE_FRIENDS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (435, 'chat', 'themes/default/templates/CHAT_FRIENDS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (436, 'chat', 'sources/hooks/systems/startup/im.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (437, 'chat', 'sources/hooks/systems/notifications/im_invited.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (438, 'chat', 'sources/hooks/systems/notifications/new_friend.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (439, 'chat', 'sources/hooks/systems/notifications/member_entered_chatroom.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (440, 'chat', 'sources/hooks/systems/notifications/cns_friend_birthday.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (441, 'chat', 'sources/hooks/systems/config/chat_default_post_colour.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (442, 'chat', 'sources/hooks/systems/config/chat_default_post_font.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (443, 'chat', 'sources/hooks/systems/config/chat_flood_timelimit.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (444, 'chat', 'sources/hooks/systems/config/chat_private_room_deletion_time.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (445, 'chat', 'sources/hooks/systems/config/chat_show_stats_count_messages.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (446, 'chat', 'sources/hooks/systems/config/chat_show_stats_count_rooms.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (447, 'chat', 'sources/hooks/systems/config/chat_show_stats_count_users.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (448, 'chat', 'sources/hooks/systems/config/group_private_chatrooms.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (449, 'chat', 'sources/hooks/systems/config/chat_max_messages_to_show.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (450, 'chat', 'sources/hooks/systems/config/points_chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (451, 'chat', 'sources/hooks/systems/config/sitewide_im.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (452, 'chat', 'sources/hooks/systems/config/username_click_im.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (453, 'chat', 'sources/hooks/systems/realtime_rain/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (454, 'chat', 'sources/hooks/systems/symbols/CHAT_IM.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (455, 'chat', 'sources/hooks/systems/profiles_tabs/friends.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (456, 'chat', 'sources/hooks/systems/sitemap/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (457, 'chat', 'uploads/personal_sound_effects/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (458, 'chat', 'uploads/personal_sound_effects/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (459, 'chat', 'data/sounds/contact_off.mp3');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (460, 'chat', 'data/sounds/contact_on.mp3');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (461, 'chat', 'data/sounds/error.mp3');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (462, 'chat', 'data/sounds/invited.mp3');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (463, 'chat', 'data/sounds/message_initial.mp3');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (464, 'chat', 'data/sounds/message_sent.mp3');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (465, 'chat', 'data/sounds/you_connect.mp3');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (466, 'chat', 'sources/hooks/modules/chat_bots/default.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (467, 'chat', 'sources/hooks/modules/chat_bots/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (468, 'chat', 'sources_custom/hooks/modules/chat_bots/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (469, 'chat', 'themes/default/templates/CHAT_SET_EFFECTS_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (470, 'chat', 'themes/default/templates/CHAT_SET_EFFECTS_SETTING_BLOCK.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (471, 'chat', 'themes/default/templates/CHAT_SITEWIDE_IM.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (472, 'chat', 'themes/default/templates/CHAT_SITEWIDE_IM_POPUP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (473, 'chat', 'themes/default/templates/CHAT_SOUND.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (474, 'chat', 'themes/default/templates/CHAT_MODERATE_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (475, 'chat', 'sources/hooks/modules/admin_import_types/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (476, 'chat', 'sources/hooks/modules/admin_setupwizard/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (477, 'chat', 'sources/hooks/modules/admin_themewizard/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (478, 'chat', 'sources/hooks/systems/content_meta_aware/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (479, 'chat', 'sources/hooks/systems/commandr_fs/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (480, 'chat', 'sources/hooks/systems/addon_registry/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (481, 'chat', 'sources/hooks/systems/cns_cpf_filter/points_chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (482, 'chat', 'themes/default/templates/BLOCK_SIDE_SHOUTBOX_MESSAGE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (483, 'chat', 'themes/default/templates/BLOCK_SIDE_SHOUTBOX.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (484, 'chat', 'themes/default/templates/CHAT_ROOM_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (485, 'chat', 'themes/default/templates/CHATCODE_EDITOR_BUTTON.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (486, 'chat', 'themes/default/templates/CHATCODE_EDITOR_MICRO_BUTTON.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (487, 'chat', 'themes/default/templates/CHAT_INVITE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (488, 'chat', 'themes/default/templates/CHAT_MESSAGE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (489, 'chat', 'themes/default/templates/CHAT_PRIVATE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (490, 'chat', 'themes/default/templates/CHAT_STAFF_ACTIONS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (491, 'chat', 'themes/default/javascript/chat.js');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (492, 'chat', 'themes/default/templates/BLOCK_MAIN_FRIENDS_LIST.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (493, 'chat', 'sources/blocks/main_friends_list.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (494, 'chat', 'themes/default/templates/CHAT_LOBBY_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (495, 'chat', 'themes/default/templates/CHAT_LOBBY_IM_AREA.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (496, 'chat', 'themes/default/templates/CHAT_LOBBY_IM_PARTICIPANT.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (497, 'chat', 'sources/hooks/modules/chat_bots/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (498, 'chat', 'sources_custom/hooks/modules/chat_bots/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (499, 'chat', 'adminzone/pages/modules/admin_chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (500, 'chat', 'themes/default/css/chat.css');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (501, 'chat', 'themes/default/images/EN/chatcodeeditor/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (502, 'chat', 'themes/default/images/EN/chatcodeeditor/invite.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (503, 'chat', 'themes/default/images/EN/chatcodeeditor/new_room.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (504, 'chat', 'themes/default/images/EN/chatcodeeditor/private_message.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (505, 'chat', 'cms/pages/modules/cms_chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (506, 'chat', 'data_custom/modules/chat/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (507, 'chat', 'data_custom/modules/chat/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (508, 'chat', 'lang/EN/chat.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (509, 'chat', 'site/pages/comcode/EN/userguide_chatcode.txt');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (510, 'chat', 'site/pages/modules/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (511, 'chat', 'sources/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (512, 'chat', 'sources/chat_stats.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (513, 'chat', 'sources/chat_poller.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (514, 'chat', 'sources/chat2.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (515, 'chat', 'sources/hooks/blocks/side_stats/stats_chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (516, 'chat', 'sources/hooks/systems/commandr_commands/send_chatmessage.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (517, 'chat', 'sources/hooks/systems/commandr_commands/watch_chatroom.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (518, 'chat', 'sources/hooks/systems/commandr_notifications/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (519, 'chat', 'sources/hooks/modules/members/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (520, 'chat', 'sources/hooks/systems/page_groupings/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (521, 'chat', 'sources/hooks/systems/rss/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (522, 'chat', 'site/download_chat_logs.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (523, 'chat', 'site/messages.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (524, 'chat', 'sources/blocks/side_shoutbox.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (525, 'chat', 'themes/default/templates/CNS_MEMBER_PROFILE_FRIENDS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (526, 'chat', 'sources/hooks/systems/block_ui_renderers/chat.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (527, 'chat', 'sources/hooks/systems/config/chat_message_check_interval.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (528, 'chat', 'sources/hooks/systems/config/chat_transitory_alert_time.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (529, 'chat', 'sources/hooks/systems/config/max_chat_lobby_friends.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (530, 'chat', 'sources/hooks/systems/commandr_fs_extended_member/chat_blocking.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (531, 'chat', 'sources/hooks/systems/commandr_fs_extended_member/chat_friends.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (532, 'chat', 'sources/hooks/systems/commandr_fs_extended_member/chat_sound_effects.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (533, 'cns_avatars', 'sources/hooks/systems/addon_registry/cns_avatars.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (534, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/airplane.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (535, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/bird.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (536, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/bonfire.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (537, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/cool_flare.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (538, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/dog.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (539, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/eagle.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (540, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/forks.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (541, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/horse.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (542, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (543, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/music.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (544, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/trees.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (545, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/chess.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (546, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/fireman.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (547, 'cns_avatars', 'themes/default/images/cns_default_avatars/default_set/berries.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (548, 'cns_cartoon_avatars', 'sources/hooks/systems/addon_registry/cns_cartoon_avatars.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (549, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/caveman.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (550, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/crazy.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (551, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/dance.gif');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (552, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/emo.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (553, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/footy.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (554, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/half-life.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (555, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (556, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/matrix.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (557, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/ninja.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (558, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/plane.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (559, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/posh.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (560, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/rabbit.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (561, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/snorkler.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (562, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/western.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (563, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/anchor.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (564, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/boating.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (565, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/chillin.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (566, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/dude.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (567, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/dudette.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (568, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/guyinahat.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (569, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/kingfish.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (570, 'cns_cartoon_avatars', 'themes/default/images/cns_default_avatars/default_set/cartoons/worm.jpg');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (571, 'cns_clubs', 'themes/default/images/icons/24x24/menu/cms/clubs.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (572, 'cns_clubs', 'themes/default/images/icons/48x48/menu/cms/clubs.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (573, 'cns_clubs', 'sources/hooks/systems/notifications/cns_club.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (574, 'cns_clubs', 'sources/hooks/systems/addon_registry/cns_clubs.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (575, 'cns_clubs', 'sources/hooks/modules/search/cns_clubs.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (576, 'cns_clubs', 'cms/pages/modules/cms_cns_groups.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (577, 'cns_clubs', 'sources/hooks/systems/config/club_forum_parent_forum_grouping.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (578, 'cns_clubs', 'sources/hooks/systems/config/club_forum_parent_forum.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (579, 'cns_contact_member', 'themes/default/images/icons/24x24/links/contact_member.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (580, 'cns_contact_member', 'themes/default/images/icons/48x48/links/contact_member.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (581, 'cns_contact_member', 'site/pages/modules/contact_member.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (582, 'cns_contact_member', 'sources/hooks/systems/addon_registry/cns_contact_member.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (583, 'cns_cpfs', 'themes/default/images/icons/24x24/menu/adminzone/tools/users/custom_profile_fields.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (584, 'cns_cpfs', 'themes/default/images/icons/48x48/menu/adminzone/tools/users/custom_profile_fields.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (585, 'cns_cpfs', 'sources/hooks/systems/resource_meta_aware/cpf.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (586, 'cns_cpfs', 'adminzone/pages/modules/admin_cns_customprofilefields.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (587, 'cns_cpfs', 'themes/default/templates/CNS_CPF_STATS_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (588, 'cns_cpfs', 'uploads/cns_cpf_upload/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (589, 'cns_cpfs', 'uploads/cns_cpf_upload/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (590, 'cns_cpfs', 'themes/default/templates/CNS_CPF_PERMISSIONS_TAB.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (591, 'cns_cpfs', 'lang/EN/cns_privacy.ini');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (592, 'cns_cpfs', 'sources/hooks/systems/profiles_tabs_edit/privacy.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (593, 'cns_cpfs', 'sources/hooks/systems/addon_registry/cns_cpfs.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (594, 'cns_cpfs', 'sources/hooks/systems/commandr_fs/cpfs.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (595, 'cns_cpfs', 'sources/hooks/systems/commandr_fs_extended_member/cpf_perms.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (596, 'cns_forum', 'themes/default/images/icons/24x24/menu/social/forum/inline_personal_posts.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (597, 'cns_forum', 'themes/default/images/icons/48x48/menu/social/forum/inline_personal_posts.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (598, 'cns_forum', 'themes/default/images/icons/24x24/menu/adminzone/audit/statistics/posting_rates.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (599, 'cns_forum', 'themes/default/images/icons/48x48/menu/adminzone/audit/statistics/posting_rates.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (600, 'cns_forum', 'themes/default/images/icons/24x24/menu/social/forum/forums.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (601, 'cns_forum', 'themes/default/images/icons/48x48/menu/social/forum/forums.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (602, 'cns_forum', 'themes/default/images/icons/24x24/buttons/new_topic.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (603, 'cns_forum', 'themes/default/images/icons/48x48/buttons/new_topic.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (604, 'cns_forum', 'themes/default/images/icons/24x24/menu/social/forum/vforums/involved_topics.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (605, 'cns_forum', 'themes/default/images/icons/24x24/menu/social/forum/vforums/posts_since_last_visit.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (606, 'cns_forum', 'themes/default/images/icons/24x24/menu/social/forum/vforums/recently_read_topics.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (607, 'cns_forum', 'themes/default/images/icons/24x24/menu/social/forum/vforums/unanswered_topics.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (608, 'cns_forum', 'themes/default/images/icons/24x24/menu/social/forum/vforums/unread_topics.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (609, 'cns_forum', 'themes/default/images/icons/48x48/menu/social/forum/vforums/involved_topics.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (610, 'cns_forum', 'themes/default/images/icons/48x48/menu/social/forum/vforums/posts_since_last_visit.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (611, 'cns_forum', 'themes/default/images/icons/48x48/menu/social/forum/vforums/recently_read_topics.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (612, 'cns_forum', 'themes/default/images/icons/48x48/menu/social/forum/vforums/unanswered_topics.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (613, 'cns_forum', 'themes/default/images/icons/48x48/menu/social/forum/vforums/unread_topics.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (614, 'cns_forum', 'themes/default/images/icons/24x24/buttons/mark_read.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (615, 'cns_forum', 'themes/default/images/icons/24x24/buttons/mark_unread.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (616, 'cns_forum', 'themes/default/images/icons/48x48/buttons/mark_read.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (617, 'cns_forum', 'themes/default/images/icons/48x48/buttons/mark_unread.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (618, 'cns_forum', 'themes/default/images/icons/24x24/buttons/forum.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (619, 'cns_forum', 'themes/default/images/icons/48x48/buttons/forum.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (620, 'cns_forum', 'themes/default/images/icons/24x24/buttons/linear.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (621, 'cns_forum', 'themes/default/images/icons/48x48/buttons/linear.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (622, 'cns_forum', 'themes/default/images/icons/24x24/buttons/threaded.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (623, 'cns_forum', 'themes/default/images/icons/48x48/buttons/threaded.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (624, 'cns_forum', 'themes/default/images/icons/24x24/buttons/whisper.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (625, 'cns_forum', 'themes/default/images/icons/48x48/buttons/whisper.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (626, 'cns_forum', 'themes/default/images/icons/24x24/buttons/new_quote.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (627, 'cns_forum', 'themes/default/images/icons/48x48/buttons/new_quote.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (628, 'cns_forum', 'themes/default/images/icons/24x24/menu/adminzone/structure/forum/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (629, 'cns_forum', 'themes/default/images/icons/24x24/menu/social/forum/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (630, 'cns_forum', 'themes/default/images/icons/24x24/menu/social/forum/vforums/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (631, 'cns_forum', 'themes/default/images/icons/48x48/menu/adminzone/structure/forum/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (632, 'cns_forum', 'themes/default/images/icons/48x48/menu/social/forum/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (633, 'cns_forum', 'themes/default/images/icons/48x48/menu/social/forum/vforums/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (634, 'cns_forum', 'sources/hooks/systems/cns_cpf_filter/notifications.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (635, 'cns_forum', 'sources/hooks/systems/resource_meta_aware/forum_grouping.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (636, 'cns_forum', 'sources/hooks/systems/commandr_fs/forum_groupings.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (637, 'cns_forum', 'sources/blocks/main_cns_involved_topics.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (638, 'cns_forum', 'sources/hooks/systems/notifications/cns_topic_invite.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (639, 'cns_forum', 'sources/hooks/systems/notifications/cns_new_pt.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (640, 'cns_forum', 'sources/hooks/systems/notifications/cns_topic.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (641, 'cns_forum', 'sources/hooks/systems/content_meta_aware/forum.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (642, 'cns_forum', 'sources/hooks/systems/commandr_fs/forums.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (643, 'cns_forum', 'sources/hooks/modules/admin_stats/cns_posting_rates.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (644, 'cns_forum', 'sources/hooks/systems/sitemap/topic.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (645, 'cns_forum', 'sources/hooks/systems/sitemap/forum.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (646, 'cns_forum', 'themes/default/templates/CNS_FORUM_INTRO_QUESTION_POPUP.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (647, 'cns_forum', 'themes/default/templates/CNS_MEMBER_PT_RULES_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (648, 'cns_forum', 'themes/default/templates/CNS_PT_BETWEEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (649, 'cns_forum', 'themes/default/javascript/cns_forum.js');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (650, 'cns_forum', 'themes/default/templates/BLOCK_MAIN_CNS_INVOLVED_TOPICS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (651, 'cns_forum', 'themes/default/templates/CNS_VFORUM_FILTERING.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (652, 'cns_forum', 'forum/rules.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (653, 'cns_forum', 'themes/default/images/cns_general/redirect.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (654, 'cns_forum', 'sources/hooks/modules/search/cns_within_topic.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (655, 'cns_forum', 'sources/hooks/systems/addon_registry/cns_forum.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (656, 'cns_forum', 'sources/hooks/systems/page_groupings/cns_forum.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (657, 'cns_forum', 'sources/hooks/modules/admin_themewizard/cns_forum.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (658, 'cns_forum', 'sources/hooks/modules/admin_import_types/cns_forum.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (659, 'cns_forum', 'sources/hooks/systems/profiles_tabs/posts.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (660, 'cns_forum', 'sources/hooks/systems/profiles_tabs/pts.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (661, 'cns_forum', 'themes/default/templates/CNS_EDIT_FORUM_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (662, 'cns_forum', 'themes/default/templates/CNS_EDIT_FORUM_SCREEN_GROUPING.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (663, 'cns_forum', 'themes/default/templates/CNS_EDIT_FORUM_SCREEN_FORUM.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (664, 'cns_forum', 'themes/default/templates/CNS_FORUM.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (665, 'cns_forum', 'themes/default/templates/CNS_FORUM_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (666, 'cns_forum', 'themes/default/templates/CNS_FORUM_GROUPING.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (667, 'cns_forum', 'themes/default/templates/CNS_FORUM_INTRO_QUESTION_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (668, 'cns_forum', 'themes/default/templates/CNS_FORUM_IN_GROUPING.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (669, 'cns_forum', 'themes/default/templates/CNS_FORUM_LATEST.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (670, 'cns_forum', 'themes/default/templates/CNS_FORUM_TOPIC_ROW.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (671, 'cns_forum', 'themes/default/templates/CNS_FORUM_TOPIC_ROW_LAST_POST.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (672, 'cns_forum', 'themes/default/templates/CNS_FORUM_TOPIC_WRAPPER.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (673, 'cns_forum', 'themes/default/templates/CNS_GUEST_BAR.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (674, 'cns_forum', 'themes/default/templates/CNS_GUEST_DETAILS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (675, 'cns_forum', 'themes/default/templates/CNS_POST_BOX.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (676, 'cns_forum', 'themes/default/templates/CNS_MEMBER_BAR.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (677, 'cns_forum', 'themes/default/templates/MEMBER_BAR_SEARCH.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (678, 'cns_forum', 'themes/default/templates/CNS_NOTIFICATION.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (679, 'cns_forum', 'themes/default/templates/BLOCK_MAIN_PT_NOTIFICATIONS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (680, 'cns_forum', 'themes/default/templates/CNS_MEMBER_PROFILE_PTS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (681, 'cns_forum', 'themes/default/templates/CNS_PINNED_DIVIDER.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (682, 'cns_forum', 'themes/default/templates/CNS_POSTER_GUEST.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (683, 'cns_forum', 'themes/default/templates/CNS_POSTER_MEMBER.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (684, 'cns_forum', 'themes/default/templates/CNS_POSTING_SCREEN_POSTS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (685, 'cns_forum', 'themes/default/text/CNS_QUOTE_FCOMCODE.txt');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (686, 'cns_forum', 'themes/default/templates/BLOCK_MAIN_BOTTOM_BAR.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (687, 'cns_forum', 'themes/default/templates/CNS_TOPIC_FIRST_UNREAD.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (688, 'cns_forum', 'themes/default/templates/CNS_TOPIC_MARKER.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (689, 'cns_forum', 'themes/default/templates/CNS_TOPIC_POLL.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (690, 'cns_forum', 'themes/default/templates/CNS_TOPIC_POLL_ANSWER.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (691, 'cns_forum', 'themes/default/templates/CNS_TOPIC_POLL_ANSWER_RADIO.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (692, 'cns_forum', 'themes/default/templates/CNS_TOPIC_POLL_ANSWER_RESULTS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (693, 'cns_forum', 'themes/default/templates/CNS_TOPIC_POLL_BUTTON.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (694, 'cns_forum', 'themes/default/templates/CNS_TOPIC_POLL_VIEW_RESULTS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (695, 'cns_forum', 'themes/default/templates/CNS_TOPIC_POST.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (696, 'cns_forum', 'themes/default/templates/CNS_TOPIC_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (697, 'cns_forum', 'themes/default/templates/CNS_WHISPER_CHOICE_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (698, 'cns_forum', 'themes/default/templates/BLOCK_SIDE_CNS_PRIVATE_TOPICS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (699, 'cns_forum', 'themes/default/templates/CNS_TOPIC_POST_LAST_EDITED.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (700, 'cns_forum', 'themes/default/templates/CNS_FORUM_LIST_LINE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (701, 'cns_forum', 'themes/default/templates/CNS_FORUM_TOPIC_LIST_LINE.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (702, 'cns_forum', 'themes/default/templates/CNS_VFORUM_SCREEN.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (703, 'cns_forum', 'forum/index.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (704, 'cns_forum', 'forum/pages/comcode/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (705, 'cns_forum', 'forum/pages/comcode/EN/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (706, 'cns_forum', 'forum/pages/comcode/EN/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (707, 'cns_forum', 'forum/pages/comcode/EN/panel_right.txt');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (708, 'cns_forum', 'forum/pages/comcode/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (709, 'cns_forum', 'forum/pages/comcode_custom/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (710, 'cns_forum', 'forum/pages/comcode_custom/EN/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (711, 'cns_forum', 'forum/pages/comcode_custom/EN/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (712, 'cns_forum', 'forum/pages/comcode_custom/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (713, 'cns_forum', 'forum/pages/html/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (714, 'cns_forum', 'forum/pages/html/EN/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (715, 'cns_forum', 'forum/pages/html/EN/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (716, 'cns_forum', 'forum/pages/html/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (717, 'cns_forum', 'forum/pages/html_custom/EN/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (718, 'cns_forum', 'forum/pages/html_custom/EN/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (719, 'cns_forum', 'forum/pages/html_custom/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (720, 'cns_forum', 'forum/pages/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (721, 'cns_forum', 'forum/pages/minimodules/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (722, 'cns_forum', 'forum/pages/minimodules/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (723, 'cns_forum', 'forum/pages/minimodules_custom/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (724, 'cns_forum', 'forum/pages/minimodules_custom/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (725, 'cns_forum', 'forum/pages/modules/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (726, 'cns_forum', 'forum/pages/modules/forumview.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (727, 'cns_forum', 'forum/pages/modules/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (728, 'cns_forum', 'forum/pages/modules/topics.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (729, 'cns_forum', 'forum/pages/modules/topicview.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (730, 'cns_forum', 'forum/pages/modules/vforums.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (731, 'cns_forum', 'forum/pages/modules_custom/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (732, 'cns_forum', 'forum/pages/modules_custom/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (733, 'cns_forum', 'adminzone/pages/modules/admin_cns_forum_groupings.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (734, 'cns_forum', 'adminzone/pages/modules/admin_cns_forums.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (735, 'cns_forum', 'themes/default/images/cns_general/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (736, 'cns_forum', 'themes/default/images/cns_general/new_posts.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (737, 'cns_forum', 'themes/default/images/cns_general/new_posts_redirect.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (738, 'cns_forum', 'themes/default/images/cns_general/no_new_posts.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (739, 'cns_forum', 'themes/default/images/cns_general/no_new_posts_redirect.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (740, 'cns_forum', 'themes/default/images/icons/14x14/cns_topic_modifiers/announcement.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (741, 'cns_forum', 'themes/default/images/icons/14x14/cns_topic_modifiers/closed.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (742, 'cns_forum', 'themes/default/images/icons/14x14/cns_topic_modifiers/hot.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (743, 'cns_forum', 'themes/default/images/icons/14x14/cns_topic_modifiers/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (744, 'cns_forum', 'themes/default/images/icons/14x14/cns_topic_modifiers/involved.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (745, 'cns_forum', 'themes/default/images/icons/14x14/cns_topic_modifiers/pinned.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (746, 'cns_forum', 'themes/default/images/icons/14x14/cns_topic_modifiers/poll.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (747, 'cns_forum', 'themes/default/images/icons/14x14/cns_topic_modifiers/sunk.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (748, 'cns_forum', 'themes/default/images/icons/14x14/cns_topic_modifiers/unread.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (749, 'cns_forum', 'themes/default/images/icons/14x14/cns_topic_modifiers/unvalidated.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (750, 'cns_forum', 'themes/default/images/icons/28x28/cns_topic_modifiers/announcement.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (751, 'cns_forum', 'themes/default/images/icons/28x28/cns_topic_modifiers/closed.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (752, 'cns_forum', 'themes/default/images/icons/28x28/cns_topic_modifiers/hot.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (753, 'cns_forum', 'themes/default/images/icons/28x28/cns_topic_modifiers/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (754, 'cns_forum', 'themes/default/images/icons/28x28/cns_topic_modifiers/involved.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (755, 'cns_forum', 'themes/default/images/icons/28x28/cns_topic_modifiers/pinned.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (756, 'cns_forum', 'themes/default/images/icons/28x28/cns_topic_modifiers/poll.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (757, 'cns_forum', 'themes/default/images/icons/28x28/cns_topic_modifiers/sunk.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (758, 'cns_forum', 'themes/default/images/icons/28x28/cns_topic_modifiers/unread.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (759, 'cns_forum', 'themes/default/images/icons/28x28/cns_topic_modifiers/unvalidated.png');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (760, 'cns_forum', 'sources/blocks/side_cns_private_topics.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (761, 'cns_forum', 'sources/hooks/systems/cleanup/cns_topics.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (762, 'cns_forum', 'sources/hooks/modules/admin_newsletter/cns_forumview.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (763, 'cns_forum', 'sources/hooks/modules/admin_unvalidated/cns_posts.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (764, 'cns_forum', 'sources/hooks/modules/admin_unvalidated/cns_topics.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (765, 'cns_forum', 'sources/hooks/modules/search/cns_own_pt.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (766, 'cns_forum', 'sources/hooks/modules/search/cns_posts.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (767, 'cns_forum', 'sources/hooks/systems/attachments/cns_post.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (768, 'cns_forum', 'sources/hooks/systems/preview/cns_post.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (769, 'cns_forum', 'sources/hooks/systems/rss/cns_forumview.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (770, 'cns_forum', 'sources/hooks/systems/rss/cns_topicview.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (771, 'cns_forum', 'sources/blocks/main_bottom_bar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (772, 'cns_forum', 'sources/blocks/main_member_bar.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (773, 'cns_forum', 'sources/blocks/main_pt_notifications.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (774, 'cns_forum', 'themes/default/templates/BLOCK_MAIN_MEMBER_BAR.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (775, 'cns_forum', 'sources/cns_forumview.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (776, 'cns_forum', 'sources/cns_forumview_pt.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (777, 'cns_forum', 'sources/cns_topicview.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (778, 'cns_forum', 'sources/hooks/modules/topicview/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (779, 'cns_forum', 'sources_custom/hooks/modules/topicview/.htaccess');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (780, 'cns_forum', 'sources/hooks/modules/topicview/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (781, 'cns_forum', 'sources_custom/hooks/modules/topicview/index.html');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (782, 'cns_forum', 'sources/hooks/systems/ajax_tree/choose_topic.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (783, 'cns_forum', 'sources/hooks/systems/ajax_tree/choose_forum.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (784, 'cns_forum', 'sources/hooks/systems/rss/cns_unread_topics.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (785, 'cns_forum', 'sources/hooks/systems/rss/cns_private_topics.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (786, 'cns_forum', 'themes/default/templates/CNS_PRIVATE_TOPIC_LINK.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (787, 'cns_forum', 'themes/default/templates/CNS_PT_FILTERS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (788, 'cns_forum', 'themes/default/templates/CNS_MEMBER_PROFILE_POSTS.tpl');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (789, 'cns_forum', 'sources/hooks/systems/cleanup/cns.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (790, 'cns_forum', 'sources/hooks/systems/config/edit_time_limit.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (791, 'cns_forum', 'sources/hooks/systems/config/delete_time_limit.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (792, 'cns_forum', 'sources/hooks/systems/config/enable_add_topic_btn_in_topic.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (793, 'cns_forum', 'sources/hooks/systems/config/enable_forum_dupe_buttons.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (794, 'cns_forum', 'sources/hooks/systems/config/enable_mark_forum_read.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (795, 'cns_forum', 'sources/hooks/systems/config/enable_mark_topic_unread.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (796, 'cns_forum', 'sources/hooks/systems/config/enable_multi_quote.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (797, 'cns_forum', 'sources/hooks/systems/config/enable_post_emphasis.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (798, 'cns_forum', 'sources/hooks/systems/config/enable_pt_filtering.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (799, 'cns_forum', 'sources/hooks/systems/config/enable_pt_restrict.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (800, 'cns_forum', 'sources/hooks/systems/config/enable_sunk.php');
INSERT INTO cms_addons_files (id, addon_name, filename) VALUES (801, 'cns_forum', 'sources/hooks/systems/config/inline_pp_advertise.php');