Merge lp:~jml/launchpad/no-branch-sample-data into lp:launchpad

Proposed by Jonathan Lange
Status: Merged
Merged at revision: 11124
Proposed branch: lp:~jml/launchpad/no-branch-sample-data
Merge into: lp:launchpad
Prerequisite: lp:~jml/launchpad/more-login-helpers
Diff against target: 9210 lines (+4099/-4137) (has conflicts)
11 files modified
database/sampledata/current.sql (+3933/-4005)
database/schema/Makefile (+2/-2)
lib/canonical/launchpad/scripts/tests/test_garbo.py (+8/-1)
lib/canonical/launchpad/tests/test_launchpadlib.py (+13/-10)
lib/canonical/launchpad/webapp/interaction.py (+7/-0)
lib/lp/code/browser/tests/test_branch.py (+9/-16)
lib/lp/code/interfaces/codeimportjob.py (+0/-2)
lib/lp/code/model/tests/test_codeimportjob.py (+67/-96)
lib/lp/testing/factory.py (+8/-5)
lib/lp/testing/sampledata.py (+18/-0)
lib/lp/testing/tests/test_factory.py (+34/-0)
Text conflict in lib/canonical/launchpad/webapp/interaction.py
To merge this branch: bzr merge lp:~jml/launchpad/no-branch-sample-data
Reviewer Review Type Date Requested Status
Canonical Launchpad Engineering Pending
Review via email: mp+29631@code.launchpad.net

Commit message

Remove all branch sample data, and fix tests to not need it.

Description of the change

This branch removes all of the branch sample data, and fixes the tests that used it to not use it any more.

To post a comment you must log in.
Revision history for this message
Robert Collins (lifeless) wrote :

I was going to review this in drive-by mode, but 'the diff has been truncated for viewing'. I'm updating stuff I need for tomorrow as a priority - I may come back to it. If anyone else feels up to it please do review this - less sample data is a wonderful thing.

Revision history for this message
Jonathan Lange (jml) wrote :

On Sun, Jul 11, 2010 at 2:04 PM, Robert Collins
<email address hidden> wrote:
> I was going to review this in drive-by mode, but 'the diff has been truncated for viewing'. I'm updating stuff I need for tomorrow as a priority - I may come back to it. If anyone else feels up to it please do review this - less sample data is a wonderful thing.

Don't bother reviewing it. It's not ready for review yet since many
tests still fail without this data. Thanks for trying though.

When I've fixed all the tests, I'll land a branch that changes the sample data.

jml

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'database/sampledata/current.sql'
2--- database/sampledata/current.sql 2010-06-03 22:21:24 +0000
3+++ database/sampledata/current.sql 2010-07-10 14:24:54 +0000
4@@ -6,7 +6,6 @@
5 SET client_min_messages = warning;
6 SET escape_string_warning = off;
7 SET standard_conforming_strings = off;
8-SET statement_timeout = 0;
9
10 SET search_path = public, pg_catalog;
11
12@@ -791,8 +790,6 @@
13
14
15
16-SET SESSION AUTHORIZATION DEFAULT;
17-
18 ALTER TABLE account DISABLE TRIGGER ALL;
19
20 INSERT INTO account (id, date_created, creation_rationale, status, date_status_set, displayname, openid_identifier, status_comment, old_openid_identifier) VALUES (11, '2005-06-06 08:59:51.591618', 8, 20, '2005-06-06 08:59:51.591618', 'Mark Shuttleworth', 'mark_oid', NULL, '123/mark');
21@@ -927,1325 +924,6 @@
22 ALTER TABLE accountpassword ENABLE TRIGGER ALL;
23
24
25-ALTER TABLE continent DISABLE TRIGGER ALL;
26-
27-INSERT INTO continent (id, code, name) VALUES (1, 'AF', 'Africa');
28-INSERT INTO continent (id, code, name) VALUES (2, 'AS', 'Asia');
29-INSERT INTO continent (id, code, name) VALUES (3, 'EU', 'Europe');
30-INSERT INTO continent (id, code, name) VALUES (4, 'NA', 'North America');
31-INSERT INTO continent (id, code, name) VALUES (5, 'SA', 'South America');
32-INSERT INTO continent (id, code, name) VALUES (6, 'OC', 'Oceania');
33-INSERT INTO continent (id, code, name) VALUES (7, 'AN', 'Antarctica');
34-
35-
36-ALTER TABLE continent ENABLE TRIGGER ALL;
37-
38-
39-ALTER TABLE country DISABLE TRIGGER ALL;
40-
41-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (1, 'AF', 'AFG', 'Afghanistan', 'The Transitional Islamic State of Afghanistan', NULL, 2);
42-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (2, 'AX', 'ALA', 'Åland Islands', NULL, NULL, 3);
43-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (3, 'AL', 'ALB', 'Albania', 'Republic of Albania', NULL, 3);
44-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (4, 'DZ', 'DZA', 'Algeria', 'People''s Democratic Republic of Algeria', NULL, 1);
45-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (5, 'AS', 'ASM', 'American Samoa', NULL, NULL, 6);
46-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (6, 'AD', 'AND', 'Andorra', 'Principality of Andorra', NULL, 3);
47-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (7, 'AO', 'AGO', 'Angola', 'Republic of Angola', NULL, 1);
48-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (8, 'AI', 'AIA', 'Anguilla', NULL, NULL, 4);
49-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (9, 'AQ', 'ATA', 'Antarctica', NULL, NULL, 7);
50-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (10, 'AG', 'ATG', 'Antigua and Barbuda', NULL, NULL, 4);
51-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (11, 'AR', 'ARG', 'Argentina', 'Argentine Republic', NULL, 5);
52-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (12, 'AM', 'ARM', 'Armenia', 'Republic of Armenia', NULL, 2);
53-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (13, 'AW', 'ABW', 'Aruba', NULL, NULL, 4);
54-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (14, 'AU', 'AUS', 'Australia', NULL, NULL, 6);
55-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (15, 'AT', 'AUT', 'Austria', 'Republic of Austria', NULL, 3);
56-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (16, 'AZ', 'AZE', 'Azerbaijan', 'Republic of Azerbaijan', NULL, 2);
57-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (17, 'BS', 'BHS', 'Bahamas', 'Commonwealth of the Bahamas', NULL, 4);
58-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (18, 'BH', 'BHR', 'Bahrain', 'State of Bahrain', NULL, 2);
59-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (19, 'BD', 'BGD', 'Bangladesh', 'People''s Republic of Bangladesh', NULL, 2);
60-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (20, 'BB', 'BRB', 'Barbados', NULL, NULL, 4);
61-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (21, 'BY', 'BLR', 'Belarus', 'Republic of Belarus', NULL, 3);
62-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (22, 'BE', 'BEL', 'Belgium', 'Kingdom of Belgium', NULL, 3);
63-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (23, 'BZ', 'BLZ', 'Belize', NULL, NULL, 4);
64-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (24, 'BJ', 'BEN', 'Benin', 'Republic of Benin', NULL, 1);
65-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (25, 'BM', 'BMU', 'Bermuda', NULL, NULL, 4);
66-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (26, 'BT', 'BTN', 'Bhutan', 'Kingdom of Bhutan', NULL, 2);
67-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (27, 'BO', 'BOL', 'Bolivia', 'Republic of Bolivia', NULL, 5);
68-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (28, 'BA', 'BIH', 'Bosnia and Herzegovina', 'Republic of Bosnia and Herzegovina', NULL, 3);
69-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (29, 'BW', 'BWA', 'Botswana', 'Republic of Botswana', NULL, 1);
70-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (30, 'BV', 'BVT', 'Bouvet Island', NULL, NULL, 7);
71-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (31, 'BR', 'BRA', 'Brazil', 'Federative Republic of Brazil', NULL, 5);
72-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (32, 'IO', 'IOT', 'British Indian Ocean Territory', NULL, NULL, 2);
73-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (33, 'BN', 'BRN', 'Brunei Darussalam', NULL, NULL, 2);
74-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (34, 'BG', 'BGR', 'Bulgaria', 'Republic of Bulgaria', NULL, 3);
75-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (35, 'BF', 'BFA', 'Burkina Faso', NULL, NULL, 1);
76-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (36, 'BI', 'BDI', 'Burundi', 'Republic of Burundi', NULL, 1);
77-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (37, 'KH', 'KHM', 'Cambodia', 'Kingdom of Cambodia', NULL, 2);
78-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (38, 'CM', 'CMR', 'Cameroon', 'Republic of Cameroon', NULL, 1);
79-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (39, 'CA', 'CAN', 'Canada', NULL, NULL, 4);
80-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (40, 'CV', 'CPV', 'Cape Verde', 'Republic of Cape Verde', NULL, 1);
81-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (41, 'KY', 'CYM', 'Cayman Islands', NULL, NULL, 4);
82-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (42, 'CF', 'CAF', 'Central African Republic', NULL, NULL, 1);
83-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (43, 'TD', 'TCD', 'Chad', 'Republic of Chad', NULL, 1);
84-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (44, 'CL', 'CHL', 'Chile', 'Republic of Chile', NULL, 5);
85-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (45, 'CN', 'CHN', 'China', 'People''s Republic of China', NULL, 2);
86-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (46, 'CX', 'CXR', 'Christmas Island', NULL, NULL, 2);
87-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (47, 'CC', 'CCK', 'Cocos (Keeling) Islands', NULL, NULL, 2);
88-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (48, 'CO', 'COL', 'Colombia', 'Republic of Colombia', NULL, 5);
89-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (49, 'KM', 'COM', 'Comoros', 'Union of the Comoros', NULL, 1);
90-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (50, 'CG', 'COG', 'Congo', 'Republic of the Congo', NULL, 1);
91-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (51, 'CD', 'ZAR', 'Congo, The Democratic Republic of the', NULL, NULL, 1);
92-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (52, 'CK', 'COK', 'Cook Islands', NULL, NULL, 6);
93-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (53, 'CR', 'CRI', 'Costa Rica', 'Republic of Costa Rica', NULL, 4);
94-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (54, 'CI', 'CIV', 'Côte d''Ivoire', 'Republic of Cote d''Ivoire', NULL, 1);
95-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (55, 'HR', 'HRV', 'Croatia', 'Republic of Croatia', NULL, 3);
96-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (56, 'CU', 'CUB', 'Cuba', 'Republic of Cuba', NULL, 4);
97-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (57, 'CY', 'CYP', 'Cyprus', 'Republic of Cyprus', NULL, 2);
98-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (58, 'CZ', 'CZE', 'Czech Republic', NULL, NULL, 3);
99-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (59, 'DK', 'DNK', 'Denmark', 'Kingdom of Denmark', NULL, 3);
100-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (60, 'DJ', 'DJI', 'Djibouti', 'Republic of Djibouti', NULL, 1);
101-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (61, 'DM', 'DMA', 'Dominica', 'Commonwealth of Dominica', NULL, 4);
102-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (62, 'DO', 'DOM', 'Dominican Republic', NULL, NULL, 4);
103-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (63, 'TL', 'TLS', 'Timor-Leste', 'Democratic Republic of Timor-Leste', NULL, 2);
104-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (64, 'EC', 'ECU', 'Ecuador', 'Republic of Ecuador', NULL, 5);
105-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (65, 'EG', 'EGY', 'Egypt', 'Arab Republic of Egypt', NULL, 1);
106-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (66, 'SV', 'SLV', 'El Salvador', 'Republic of El Salvador', NULL, 4);
107-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (67, 'GQ', 'GNQ', 'Equatorial Guinea', 'Republic of Equatorial Guinea', NULL, 1);
108-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (68, 'ER', 'ERI', 'Eritrea', NULL, NULL, 1);
109-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (69, 'EE', 'EST', 'Estonia', 'Republic of Estonia', NULL, 3);
110-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (70, 'ET', 'ETH', 'Ethiopia', 'Federal Democratic Republic of Ethiopia', NULL, 1);
111-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (71, 'FK', 'FLK', 'Falkland Islands (Malvinas)', NULL, NULL, 5);
112-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (72, 'FO', 'FRO', 'Faroe Islands', NULL, NULL, 3);
113-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (73, 'FJ', 'FJI', 'Fiji', 'Republic of the Fiji Islands', NULL, 6);
114-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (74, 'FI', 'FIN', 'Finland', 'Republic of Finland', NULL, 3);
115-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (75, 'FR', 'FRA', 'France', 'French Republic', NULL, 3);
116-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (76, 'GF', 'GUF', 'French Guiana', NULL, NULL, 5);
117-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (77, 'PF', 'PYF', 'French Polynesia', NULL, NULL, 6);
118-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (78, 'TF', 'ATF', 'French Southern Territories', NULL, NULL, 7);
119-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (79, 'GA', 'GAB', 'Gabon', 'Gabonese Republic', NULL, 1);
120-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (80, 'GM', 'GMB', 'Gambia', 'Republic of the Gambia', NULL, 1);
121-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (81, 'GE', 'GEO', 'Georgia', NULL, NULL, 2);
122-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (82, 'DE', 'DEU', 'Germany', 'Federal Republic of Germany', NULL, 3);
123-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (83, 'GH', 'GHA', 'Ghana', 'Republic of Ghana', NULL, 1);
124-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (84, 'GI', 'GIB', 'Gibraltar', NULL, NULL, 3);
125-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (85, 'GR', 'GRC', 'Greece', 'Hellenic Republic', NULL, 3);
126-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (86, 'GL', 'GRL', 'Greenland', NULL, NULL, 4);
127-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (87, 'GD', 'GRD', 'Grenada', NULL, NULL, 4);
128-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (88, 'GP', 'GLP', 'Guadeloupe', NULL, NULL, 4);
129-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (89, 'GU', 'GUM', 'Guam', NULL, NULL, 6);
130-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (90, 'GT', 'GTM', 'Guatemala', 'Republic of Guatemala', NULL, 4);
131-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (91, 'GN', 'GIN', 'Guinea', 'Republic of Guinea', NULL, 1);
132-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (92, 'GW', 'GNB', 'Guinea-Bissau', 'Republic of Guinea-Bissau', NULL, 1);
133-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (93, 'GY', 'GUY', 'Guyana', 'Republic of Guyana', NULL, 5);
134-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (94, 'HT', 'HTI', 'Haiti', 'Republic of Haiti', NULL, 4);
135-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (95, 'HM', 'HMD', 'Heard Island and McDonald Islands', NULL, NULL, 7);
136-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (96, 'VA', 'VAT', 'Holy See (Vatican City State)', NULL, NULL, 3);
137-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (97, 'HN', 'HND', 'Honduras', 'Republic of Honduras', NULL, 4);
138-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (98, 'HK', 'HKG', 'Hong Kong', 'Hong Kong Special Administrative Region of China', NULL, 2);
139-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (99, 'HU', 'HUN', 'Hungary', 'Republic of Hungary', NULL, 3);
140-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (100, 'IS', 'ISL', 'Iceland', 'Republic of Iceland', NULL, 3);
141-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (101, 'IN', 'IND', 'India', 'Republic of India', NULL, 2);
142-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (102, 'ID', 'IDN', 'Indonesia', 'Republic of Indonesia', NULL, 2);
143-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (103, 'IR', 'IRN', 'Iran, Islamic Republic of', 'Islamic Republic of Iran', NULL, 2);
144-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (104, 'IQ', 'IRQ', 'Iraq', 'Republic of Iraq', NULL, 2);
145-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (105, 'IE', 'IRL', 'Ireland', NULL, NULL, 3);
146-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (106, 'IL', 'ISR', 'Israel', 'State of Israel', NULL, 2);
147-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (107, 'IT', 'ITA', 'Italy', 'Italian Republic', NULL, 3);
148-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (108, 'JM', 'JAM', 'Jamaica', NULL, NULL, 4);
149-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (109, 'JP', 'JPN', 'Japan', NULL, NULL, 2);
150-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (110, 'JO', 'JOR', 'Jordan', 'Hashemite Kingdom of Jordan', NULL, 2);
151-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (111, 'KZ', 'KAZ', 'Kazakhstan', 'Republic of Kazakhstan', NULL, 2);
152-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (112, 'KE', 'KEN', 'Kenya', 'Republic of Kenya', NULL, 1);
153-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (113, 'KI', 'KIR', 'Kiribati', 'Republic of Kiribati', NULL, 6);
154-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (114, 'KP', 'PRK', 'Korea, Democratic People''s Republic of', 'Democratic People''s Republic of Korea', NULL, 2);
155-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (115, 'KR', 'KOR', 'Korea, Republic of', NULL, NULL, 2);
156-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (116, 'KW', 'KWT', 'Kuwait', 'State of Kuwait', NULL, 2);
157-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (117, 'KG', 'KGZ', 'Kyrgyzstan', 'Kyrgyz Republic', NULL, 2);
158-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (118, 'LA', 'LAO', 'Lao People''s Democratic Republic', NULL, NULL, 2);
159-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (119, 'LV', 'LVA', 'Latvia', 'Republic of Latvia', NULL, 3);
160-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (120, 'LB', 'LBN', 'Lebanon', 'Lebanese Republic', NULL, 2);
161-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (121, 'LS', 'LSO', 'Lesotho', 'Kingdom of Lesotho', NULL, 1);
162-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (122, 'LR', 'LBR', 'Liberia', 'Republic of Liberia', NULL, 1);
163-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (123, 'LY', 'LBY', 'Libyan Arab Jamahiriya', 'Socialist People''s Libyan Arab Jamahiriya', NULL, 1);
164-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (124, 'LI', 'LIE', 'Liechtenstein', 'Principality of Liechtenstein', NULL, 3);
165-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (125, 'LT', 'LTU', 'Lithuania', 'Republic of Lithuania', NULL, 3);
166-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (126, 'LU', 'LUX', 'Luxembourg', 'Grand Duchy of Luxembourg', NULL, 3);
167-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (127, 'MO', 'MAC', 'Macao', 'Macao Special Administrative Region of China', NULL, 2);
168-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (128, 'MK', 'MKD', 'Macedonia, Republic of', 'The Former Yugoslav Republic of Macedonia', NULL, 3);
169-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (129, 'MG', 'MDG', 'Madagascar', 'Republic of Madagascar', NULL, 1);
170-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (130, 'MW', 'MWI', 'Malawi', 'Republic of Malawi', NULL, 1);
171-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (131, 'MY', 'MYS', 'Malaysia', NULL, NULL, 2);
172-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (132, 'MV', 'MDV', 'Maldives', 'Republic of Maldives', NULL, 2);
173-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (133, 'ML', 'MLI', 'Mali', 'Republic of Mali', NULL, 1);
174-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (134, 'MT', 'MLT', 'Malta', 'Republic of Malta', NULL, 3);
175-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (135, 'MH', 'MHL', 'Marshall Islands', 'Republic of the Marshall Islands', NULL, 6);
176-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (136, 'MQ', 'MTQ', 'Martinique', NULL, NULL, 4);
177-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (137, 'MR', 'MRT', 'Mauritania', 'Islamic Republic of Mauritania', NULL, 1);
178-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (138, 'MU', 'MUS', 'Mauritius', 'Republic of Mauritius', NULL, 1);
179-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (139, 'YT', 'MYT', 'Mayotte', NULL, NULL, 1);
180-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (140, 'MX', 'MEX', 'Mexico', 'United Mexican States', NULL, 4);
181-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (141, 'FM', 'FSM', 'Micronesia, Federated States of', 'Federated States of Micronesia', NULL, 6);
182-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (142, 'MD', 'MDA', 'Moldova, Republic of', 'Republic of Moldova', NULL, 3);
183-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (143, 'MC', 'MCO', 'Monaco', 'Principality of Monaco', NULL, 3);
184-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (144, 'MN', 'MNG', 'Mongolia', NULL, NULL, 2);
185-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (145, 'MS', 'MSR', 'Montserrat', NULL, NULL, 4);
186-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (146, 'MA', 'MAR', 'Morocco', 'Kingdom of Morocco', NULL, 1);
187-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (147, 'MZ', 'MOZ', 'Mozambique', 'Republic of Mozambique', NULL, 1);
188-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (148, 'MM', 'MMR', 'Myanmar', 'Union of Myanmar', NULL, 2);
189-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (149, 'NA', 'NAM', 'Namibia', 'Republic of Namibia', NULL, 1);
190-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (150, 'NR', 'NRU', 'Nauru', 'Republic of Nauru', NULL, 6);
191-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (151, 'NP', 'NPL', 'Nepal', 'Kingdom of Nepal', NULL, 2);
192-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (152, 'NL', 'NLD', 'Netherlands', 'Kingdom of the Netherlands', NULL, 3);
193-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (153, 'AN', 'ANT', 'Netherlands Antilles', NULL, NULL, 4);
194-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (154, 'NC', 'NCL', 'New Caledonia', NULL, NULL, 6);
195-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (155, 'NZ', 'NZL', 'New Zealand', NULL, NULL, 6);
196-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (156, 'NI', 'NIC', 'Nicaragua', 'Republic of Nicaragua', NULL, 4);
197-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (157, 'NE', 'NER', 'Niger', 'Republic of the Niger', NULL, 1);
198-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (158, 'NG', 'NGA', 'Nigeria', 'Federal Republic of Nigeria', NULL, 1);
199-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (159, 'NU', 'NIU', 'Niue', 'Republic of Niue', NULL, 6);
200-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (160, 'NF', 'NFK', 'Norfolk Island', NULL, NULL, 6);
201-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (161, 'MP', 'MNP', 'Northern Mariana Islands', 'Commonwealth of the Northern Mariana Islands', NULL, 6);
202-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (162, 'NO', 'NOR', 'Norway', 'Kingdom of Norway', NULL, 3);
203-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (163, 'OM', 'OMN', 'Oman', 'Sultanate of Oman', NULL, 2);
204-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (164, 'PK', 'PAK', 'Pakistan', 'Islamic Republic of Pakistan', NULL, 2);
205-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (165, 'PW', 'PLW', 'Palau', 'Republic of Palau', NULL, 6);
206-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (166, 'PS', 'PSE', 'Palestinian Territory, Occupied', 'Occupied Palestinian Territory', NULL, 2);
207-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (167, 'PA', 'PAN', 'Panama', 'Republic of Panama', NULL, 4);
208-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (168, 'PG', 'PNG', 'Papua New Guinea', NULL, NULL, 6);
209-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (169, 'PY', 'PRY', 'Paraguay', 'Republic of Paraguay', NULL, 5);
210-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (170, 'PE', 'PER', 'Peru', 'Republic of Peru', NULL, 5);
211-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (171, 'PH', 'PHL', 'Philippines', 'Republic of the Philippines', NULL, 2);
212-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (172, 'PN', 'PCN', 'Pitcairn', NULL, NULL, 6);
213-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (173, 'PL', 'POL', 'Poland', 'Republic of Poland', NULL, 3);
214-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (174, 'PT', 'PRT', 'Portugal', 'Portuguese Republic', NULL, 3);
215-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (175, 'PR', 'PRI', 'Puerto Rico', NULL, NULL, 4);
216-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (176, 'QA', 'QAT', 'Qatar', 'State of Qatar', NULL, 2);
217-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (177, 'RE', 'REU', 'Reunion', NULL, NULL, 1);
218-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (178, 'RO', 'ROU', 'Romania', NULL, NULL, 3);
219-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (179, 'RU', 'RUS', 'Russian Federation', NULL, NULL, 3);
220-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (180, 'RW', 'RWA', 'Rwanda', 'Rwandese Republic', NULL, 1);
221-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (181, 'SH', 'SHN', 'Saint Helena', NULL, NULL, 1);
222-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (182, 'KN', 'KNA', 'Saint Kitts and Nevis', NULL, NULL, 4);
223-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (183, 'LC', 'LCA', 'Saint Lucia', NULL, NULL, 4);
224-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (184, 'PM', 'SPM', 'Saint Pierre and Miquelon', NULL, NULL, 4);
225-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (185, 'VC', 'VCT', 'Saint Vincent and the Grenadines', NULL, NULL, 4);
226-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (186, 'WS', 'WSM', 'Samoa', 'Independent State of Samoa', NULL, 6);
227-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (187, 'SM', 'SMR', 'San Marino', 'Republic of San Marino', NULL, 3);
228-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (188, 'ST', 'STP', 'Sao Tome and Principe', 'Democratic Republic of Sao Tome and Principe', NULL, 1);
229-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (189, 'SA', 'SAU', 'Saudi Arabia', 'Kingdom of Saudi Arabia', NULL, 2);
230-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (190, 'SN', 'SEN', 'Senegal', 'Republic of Senegal', NULL, 1);
231-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (191, 'SC', 'SYC', 'Seychelles', 'Republic of Seychelles', NULL, 1);
232-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (192, 'SL', 'SLE', 'Sierra Leone', 'Republic of Sierra Leone', NULL, 1);
233-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (193, 'SG', 'SGP', 'Singapore', 'Republic of Singapore', NULL, 2);
234-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (194, 'SK', 'SVK', 'Slovakia', 'Slovak Republic', NULL, 3);
235-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (195, 'SI', 'SVN', 'Slovenia', 'Republic of Slovenia', NULL, 3);
236-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (196, 'SB', 'SLB', 'Solomon Islands', NULL, NULL, 6);
237-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (197, 'SO', 'SOM', 'Somalia', 'Somali Republic', NULL, 1);
238-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (198, 'ZA', 'ZAF', 'South Africa', 'Republic of South Africa', NULL, 1);
239-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (199, 'GS', 'SGS', 'South Georgia and the South Sandwich Islands', NULL, NULL, 7);
240-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (200, 'ES', 'ESP', 'Spain', 'Kingdom of Spain', NULL, 3);
241-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (201, 'LK', 'LKA', 'Sri Lanka', 'Democratic Socialist Republic of Sri Lanka', NULL, 2);
242-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (202, 'SD', 'SDN', 'Sudan', 'Republic of the Sudan', NULL, 1);
243-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (203, 'SR', 'SUR', 'Suriname', 'Republic of Suriname', NULL, 5);
244-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (204, 'SJ', 'SJM', 'Svalbard and Jan Mayen', NULL, NULL, 3);
245-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (205, 'SZ', 'SWZ', 'Swaziland', 'Kingdom of Swaziland', NULL, 1);
246-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (206, 'SE', 'SWE', 'Sweden', 'Kingdom of Sweden', NULL, 3);
247-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (207, 'CH', 'CHE', 'Switzerland', 'Swiss Confederation', NULL, 3);
248-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (208, 'SY', 'SYR', 'Syrian Arab Republic', NULL, NULL, 2);
249-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (209, 'TW', 'TWN', 'Taiwan', 'Taiwan', NULL, 2);
250-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (210, 'TJ', 'TJK', 'Tajikistan', 'Republic of Tajikistan', NULL, 2);
251-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (211, 'TZ', 'TZA', 'Tanzania, United Republic of', 'United Republic of Tanzania', NULL, 1);
252-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (212, 'TH', 'THA', 'Thailand', 'Kingdom of Thailand', NULL, 2);
253-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (213, 'TG', 'TGO', 'Togo', 'Togolese Republic', NULL, 1);
254-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (214, 'TK', 'TKL', 'Tokelau', NULL, NULL, 6);
255-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (215, 'TO', 'TON', 'Tonga', 'Kingdom of Tonga', NULL, 6);
256-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (216, 'TT', 'TTO', 'Trinidad and Tobago', 'Republic of Trinidad and Tobago', NULL, 4);
257-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (217, 'TN', 'TUN', 'Tunisia', 'Republic of Tunisia', NULL, 1);
258-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (218, 'TR', 'TUR', 'Turkey', 'Republic of Turkey', NULL, 2);
259-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (219, 'TM', 'TKM', 'Turkmenistan', NULL, NULL, 2);
260-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (220, 'TC', 'TCA', 'Turks and Caicos Islands', NULL, NULL, 4);
261-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (221, 'TV', 'TUV', 'Tuvalu', NULL, NULL, 6);
262-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (222, 'UG', 'UGA', 'Uganda', 'Republic of Uganda', NULL, 1);
263-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (223, 'UA', 'UKR', 'Ukraine', NULL, NULL, 3);
264-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (224, 'AE', 'ARE', 'United Arab Emirates', NULL, NULL, 2);
265-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (225, 'GB', 'GBR', 'United Kingdom', 'United Kingdom of Great Britain and Northern Ireland', NULL, 3);
266-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (226, 'US', 'USA', 'United States', 'United States of America', NULL, 4);
267-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (227, 'UM', 'UMI', 'United States Minor Outlying Islands', NULL, NULL, 6);
268-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (228, 'UY', 'URY', 'Uruguay', 'Eastern Republic of Uruguay', NULL, 5);
269-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (229, 'UZ', 'UZB', 'Uzbekistan', 'Republic of Uzbekistan', NULL, 2);
270-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (230, 'VU', 'VUT', 'Vanuatu', 'Republic of Vanuatu', NULL, 6);
271-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (231, 'VE', 'VEN', 'Venezuela', 'Bolivarian Republic of Venezuela', NULL, 5);
272-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (232, 'VN', 'VNM', 'Viet Nam', 'Socialist Republic of Viet Nam', NULL, 2);
273-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (233, 'VG', 'VGB', 'Virgin Islands, British', 'British Virgin Islands', NULL, 4);
274-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (234, 'VI', 'VIR', 'Virgin Islands, U.S.', 'Virgin Islands of the United States', NULL, 4);
275-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (235, 'WF', 'WLF', 'Wallis and Futuna', NULL, NULL, 6);
276-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (236, 'EH', 'ESH', 'Western Sahara', NULL, NULL, 1);
277-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (237, 'YE', 'YEM', 'Yemen', 'Republic of Yemen', NULL, 2);
278-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (238, 'ZM', 'ZMB', 'Zambia', 'Republic of Zambia', NULL, 1);
279-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (239, 'ZW', 'ZWE', 'Zimbabwe', 'Republic of Zimbabwe', NULL, 1);
280-INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (240, 'CS', 'SCG', 'Serbia and Montenegro', NULL, NULL, 3);
281-
282-
283-ALTER TABLE country ENABLE TRIGGER ALL;
284-
285-
286-ALTER TABLE language DISABLE TRIGGER ALL;
287-
288-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (1, 'aa', 'Afar', NULL, NULL, NULL, true, 0, NULL);
289-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (2, 'ab', 'Abkhazian', NULL, NULL, NULL, true, 0, NULL);
290-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (3, 'ace', 'Achinese', NULL, NULL, NULL, true, 0, NULL);
291-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (4, 'ach', 'Acoli', NULL, NULL, NULL, true, 0, NULL);
292-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (5, 'ada', 'Adangme', NULL, NULL, NULL, true, 0, NULL);
293-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (6, 'ady', 'Adyghe; Adygei', NULL, NULL, NULL, true, 0, NULL);
294-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (7, 'afa', 'Afro-Asiatic (Other)', NULL, NULL, NULL, true, 0, NULL);
295-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (8, 'afh', 'Afrihili', NULL, NULL, NULL, true, 0, NULL);
296-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (9, 'af', 'Afrikaans', NULL, 2, 'n != 1', true, 0, '{95a05dab-bf44-4804-bb97-be2a3ee83acd}');
297-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (10, 'ak', 'Akan', NULL, 2, 'n > 1', true, 0, NULL);
298-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (11, 'akk', 'Akkadian', NULL, 2, 'n > 1', true, 0, NULL);
299-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (12, 'sq', 'Albanian', NULL, 2, 'n != 1', true, 0, '{5ea95deb-8819-4960-837f-46de0f22bf81}');
300-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (13, 'ale', 'Aleut', NULL, NULL, NULL, true, 0, NULL);
301-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (14, 'alg', 'Algonquian languages', NULL, NULL, NULL, true, 0, NULL);
302-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (15, 'am', 'Amharic', NULL, 2, 'n > 1', true, 0, NULL);
303-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (16, 'ang', 'English, Old (ca.450-1100)', NULL, NULL, NULL, true, 0, NULL);
304-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (17, 'apa', 'Apache languages', NULL, NULL, NULL, true, 0, NULL);
305-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (18, 'ar', 'Arabic', NULL, 6, 'n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5', true, 1, NULL);
306-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (19, 'arc', 'Aramaic', NULL, NULL, NULL, true, 0, NULL);
307-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (20, 'an', 'Aragonese', NULL, 2, 'n != 1', true, 0, NULL);
308-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (21, 'hy', 'Armenian', NULL, NULL, NULL, true, 0, NULL);
309-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (22, 'arn', 'Araucanian', NULL, NULL, NULL, true, 0, NULL);
310-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (23, 'arp', 'Arapaho', NULL, NULL, NULL, true, 0, NULL);
311-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (24, 'art', 'Artificial (Other)', NULL, NULL, NULL, true, 0, NULL);
312-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (25, 'arw', 'Arawak', NULL, NULL, NULL, true, 0, NULL);
313-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (26, 'as', 'Assamese', NULL, NULL, NULL, true, 0, NULL);
314-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (27, 'ast', 'Asturian; Bable', NULL, 1, 'n != 1', true, 0, '{b5cfaf65-895d-4d69-ba92-99438d6003e9}');
315-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (28, 'ath', 'Athapascan language', NULL, NULL, NULL, true, 0, NULL);
316-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (29, 'aus', 'Australian languages', NULL, NULL, NULL, true, 0, NULL);
317-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (30, 'av', 'Avaric', NULL, NULL, NULL, true, 0, NULL);
318-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (31, 'ae', 'Avestan', NULL, NULL, NULL, true, 0, NULL);
319-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (32, 'awa', 'Awadhi', NULL, NULL, NULL, true, 0, NULL);
320-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (33, 'ay', 'Aymara', NULL, NULL, NULL, true, 0, NULL);
321-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (34, 'az', 'Azerbaijani', NULL, 2, 'n != 1', true, 1, NULL);
322-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (35, 'bad', 'Banda', NULL, NULL, NULL, true, 0, NULL);
323-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (36, 'bai', 'Bamileke languages', NULL, NULL, NULL, true, 0, NULL);
324-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (37, 'ba', 'Bashkir', NULL, NULL, NULL, true, 0, NULL);
325-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (38, 'bal', 'Baluchi', NULL, NULL, NULL, true, 0, NULL);
326-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (39, 'bm', 'Bambara', NULL, NULL, NULL, true, 0, NULL);
327-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (40, 'ban', 'Balinese', NULL, NULL, NULL, true, 0, NULL);
328-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (41, 'eu', 'Basque', NULL, 2, 'n != 1', true, 0, NULL);
329-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (42, 'bas', 'Basa', NULL, NULL, NULL, true, 0, NULL);
330-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (43, 'bat', 'Baltic (Other)', NULL, NULL, NULL, true, 0, NULL);
331-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (44, 'bej', 'Beja', NULL, NULL, NULL, true, 0, NULL);
332-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (45, 'be', 'Belarusian', NULL, NULL, NULL, true, 0, NULL);
333-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (46, 'bem', 'Bemba', NULL, NULL, NULL, true, 0, NULL);
334-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (47, 'bn', 'Bengali', NULL, 2, 'n != 1', true, 0, NULL);
335-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (48, 'ber', 'Berber (Other)', NULL, 2, 'n != 1', true, 0, NULL);
336-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (49, 'bho', 'Bhojpuri', NULL, NULL, NULL, true, 0, NULL);
337-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (50, 'bh', 'Bihari', NULL, NULL, NULL, true, 0, NULL);
338-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (51, 'bik', 'Bikol', NULL, NULL, NULL, true, 0, NULL);
339-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (52, 'bin', 'Bini', NULL, NULL, NULL, true, 0, NULL);
340-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (53, 'bi', 'Bislama', NULL, NULL, NULL, true, 0, NULL);
341-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (54, 'bla', 'Siksika', NULL, NULL, NULL, true, 0, NULL);
342-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (55, 'bnt', 'Bantu (Other)', NULL, NULL, NULL, true, 0, NULL);
343-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (56, 'bs', 'Bosnian', NULL, 3, 'n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2', true, 0, NULL);
344-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (57, 'bra', 'Braj', NULL, NULL, NULL, true, 0, NULL);
345-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (58, 'br', 'Breton', NULL, 2, 'n > 1', true, 0, NULL);
346-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (59, 'btk', 'Batak (Indonesia)', NULL, NULL, NULL, true, 0, NULL);
347-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (60, 'bua', 'Buriat', NULL, NULL, NULL, true, 0, NULL);
348-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (61, 'bug', 'Buginese', NULL, NULL, NULL, true, 0, NULL);
349-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (62, 'bg', 'Bulgarian', NULL, 2, 'n != 1', true, 0, '{b5962da4-752e-416c-9934-f97724f07051}');
350-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (63, 'my', 'Burmese', NULL, NULL, NULL, true, 0, NULL);
351-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (64, 'byn', 'Blin; Bilin', NULL, NULL, NULL, true, 0, NULL);
352-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (65, 'cad', 'Caddo', NULL, NULL, NULL, true, 0, NULL);
353-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (66, 'cai', 'Central American Indian (Other)', NULL, NULL, NULL, true, 0, NULL);
354-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (67, 'car', 'Carib', NULL, NULL, NULL, true, 0, NULL);
355-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (68, 'ca', 'Catalan', NULL, 2, 'n != 1', true, 0, '{f3b38190-f8e0-4e8b-bf29-451fb95c0cbd}');
356-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (69, 'cau', 'Caucasian (Other)', NULL, NULL, NULL, true, 0, NULL);
357-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (70, 'ceb', 'Cebuano', NULL, NULL, NULL, true, 0, NULL);
358-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (71, 'cel', 'Celtic (Other)', NULL, NULL, NULL, true, 0, NULL);
359-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (72, 'ch', 'Chamorro', NULL, NULL, NULL, true, 0, NULL);
360-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (73, 'chb', 'Chibcha', NULL, NULL, NULL, true, 0, NULL);
361-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (74, 'ce', 'Chechen', NULL, NULL, NULL, true, 0, NULL);
362-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (75, 'chg', 'Chagatai', NULL, NULL, NULL, true, 0, NULL);
363-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (76, 'zh', 'Chinese', NULL, 1, '0', false, 0, NULL);
364-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (77, 'chk', 'Chukese', NULL, NULL, NULL, true, 0, NULL);
365-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (78, 'chm', 'Mari', NULL, NULL, NULL, true, 0, NULL);
366-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (79, 'chn', 'Chinook jargon', NULL, NULL, NULL, true, 0, NULL);
367-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (80, 'cho', 'Choctaw', NULL, NULL, NULL, true, 0, NULL);
368-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (81, 'chp', 'Chipewyan', NULL, NULL, NULL, true, 0, NULL);
369-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (82, 'chr', 'Cherokee', NULL, NULL, NULL, true, 0, NULL);
370-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (83, 'chu', 'Church Slavic', NULL, NULL, NULL, true, 0, NULL);
371-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (84, 'cv', 'Chuvash', NULL, NULL, NULL, true, 0, NULL);
372-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (85, 'chy', 'Cheyenne', NULL, NULL, NULL, true, 0, NULL);
373-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (86, 'cmc', 'Chamic languages', NULL, NULL, NULL, true, 0, NULL);
374-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (87, 'cop', 'Coptic', NULL, NULL, NULL, true, 0, NULL);
375-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (88, 'kw', 'Cornish', NULL, NULL, NULL, true, 0, NULL);
376-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (89, 'co', 'Corsican', NULL, NULL, NULL, true, 0, NULL);
377-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (90, 'cpe', 'English-based (Other)', NULL, NULL, NULL, true, 0, NULL);
378-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (91, 'cpf', 'French-based (Other)', NULL, NULL, NULL, true, 0, NULL);
379-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (92, 'cpp', 'Portuguese-based (Other)', NULL, NULL, NULL, true, 0, NULL);
380-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (93, 'cr', 'Cree', NULL, NULL, NULL, true, 0, NULL);
381-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (94, 'crh', 'Crimean Turkish; Crimean Tatar', NULL, NULL, NULL, true, 0, NULL);
382-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (95, 'crp', 'Creoles and pidgins (Other)', NULL, NULL, NULL, true, 0, NULL);
383-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (96, 'csb', 'Kashubian', NULL, 3, 'n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2', true, 0, NULL);
384-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (97, 'cus', 'Cushitic (Other)', NULL, NULL, NULL, true, 0, NULL);
385-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (98, 'cs', 'Czech', NULL, 3, 'n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2', true, 0, '{37b3f2ec-1229-4289-a6d9-e94d2948ae7e}');
386-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (99, 'dak', 'Dakota', NULL, NULL, NULL, true, 0, NULL);
387-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (100, 'da', 'Danish', NULL, 2, 'n != 1', true, 0, '{1f391bb4-a820-4e44-8b68-01b385d13f94}');
388-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (101, 'dar', 'Dargwa', NULL, NULL, NULL, true, 0, NULL);
389-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (102, 'del', 'Delaware', NULL, NULL, NULL, true, 0, NULL);
390-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (103, 'den', 'Slave (Athapascan)', NULL, NULL, NULL, true, 0, NULL);
391-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (104, 'dgr', 'Dogrib', NULL, NULL, NULL, true, 0, NULL);
392-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (105, 'din', 'Dinka', NULL, NULL, NULL, true, 0, NULL);
393-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (106, 'dv', 'Divehi', NULL, NULL, NULL, true, 0, NULL);
394-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (107, 'doi', 'Dogri', NULL, NULL, NULL, true, 0, NULL);
395-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (108, 'dra', 'Dravidian (Other)', NULL, NULL, NULL, true, 0, NULL);
396-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (109, 'dsb', 'Lower Sorbian', NULL, NULL, NULL, true, 0, NULL);
397-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (110, 'dua', 'Duala', NULL, NULL, NULL, true, 0, NULL);
398-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (111, 'dum', 'Dutch, Middle (ca. 1050-1350)', NULL, NULL, NULL, true, 0, NULL);
399-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (112, 'nl', 'Dutch', NULL, 2, 'n != 1', true, 0, '{83532d50-69a7-46d7-9873-ed232d5b246b}');
400-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (113, 'dyu', 'Dyula', NULL, NULL, NULL, true, 0, NULL);
401-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (114, 'dz', 'Dzongkha', NULL, 1, '0', true, 0, NULL);
402-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (115, 'efi', 'Efik', NULL, NULL, NULL, true, 0, NULL);
403-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (116, 'egy', 'Egyptian (Ancient)', NULL, NULL, NULL, true, 0, NULL);
404-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (117, 'eka', 'Ekajuk', NULL, NULL, NULL, true, 0, NULL);
405-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (118, 'elx', 'Elamite', NULL, NULL, NULL, true, 0, NULL);
406-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (119, 'en', 'English', NULL, 2, 'n != 1', true, 0, '{6c3a4023-ca27-4847-a410-2fe8a2401654}');
407-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (120, 'enm', 'English, Middle (1100-1500)', NULL, NULL, NULL, true, 0, NULL);
408-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (121, 'eo', 'Esperanto', NULL, 2, 'n != 1', true, 0, NULL);
409-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (122, 'et', 'Estonian', NULL, 2, 'n != 1', true, 0, NULL);
410-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (123, 'ee', 'Ewe', NULL, NULL, NULL, true, 0, NULL);
411-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (124, 'ewo', 'Ewondo', NULL, NULL, NULL, true, 0, NULL);
412-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (125, 'fan', 'Fang', NULL, NULL, NULL, true, 0, NULL);
413-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (126, 'fo', 'Faroese', NULL, 2, 'n != 1', true, 0, NULL);
414-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (127, 'fat', 'Fanti', NULL, NULL, NULL, true, 0, NULL);
415-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (128, 'fj', 'Fijian', NULL, NULL, NULL, true, 0, NULL);
416-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (129, 'fi', 'Finnish', NULL, 2, 'n != 1', true, 0, '{c5e1e759-ba2e-44b1-9915-51239d89c492}');
417-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (130, 'fiu', 'Finno-Ugrian (Other)', NULL, NULL, NULL, true, 0, NULL);
418-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (131, 'fon', 'Fon', NULL, NULL, NULL, true, 0, NULL);
419-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (132, 'fr', 'French', NULL, 2, 'n > 1', true, 0, '{5102ddd3-a33f-436f-b43c-f9468a8f8b32}');
420-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (133, 'frm', 'French, Middle (ca.1400-1600)', NULL, NULL, NULL, true, 0, NULL);
421-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (134, 'fro', 'French, Old (842-ca.1400)', NULL, NULL, NULL, true, 0, NULL);
422-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (135, 'fy', 'Frisian', NULL, NULL, NULL, true, 0, NULL);
423-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (136, 'ff', 'Fulah', NULL, NULL, NULL, true, 0, NULL);
424-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (137, 'fur', 'Friulian', NULL, 2, 'n != 1', true, 0, NULL);
425-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (138, 'gaa', 'Ga', NULL, NULL, NULL, true, 0, NULL);
426-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (139, 'gay', 'Gayo', NULL, NULL, NULL, true, 0, NULL);
427-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (140, 'gba', 'Gbaya', NULL, NULL, NULL, true, 0, NULL);
428-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (141, 'gem', 'Germanic (Other)', NULL, NULL, NULL, true, 0, NULL);
429-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (142, 'ka', 'Georgian', NULL, 1, '0', true, 0, NULL);
430-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (143, 'de', 'German', NULL, 2, 'n != 1', true, 0, '{69C47786-9BEF-49BD-B99B-148C9264AF72}');
431-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (144, 'gez', 'Geez', NULL, NULL, NULL, true, 0, NULL);
432-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (145, 'gil', 'Gilbertese', NULL, NULL, NULL, true, 0, NULL);
433-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (146, 'gd', 'Gaelic; Scottish', NULL, 3, 'n < 2 ? 0 : n == 2 ? 1 : 2', true, 0, NULL);
434-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (147, 'ga', 'Irish', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', true, 0, '{906b5382-9a34-4ab1-a627-39487b0678a9}');
435-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (148, 'gl', 'Galician', NULL, 2, 'n != 1', true, 0, NULL);
436-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (149, 'gv', 'Manx', NULL, NULL, NULL, true, 0, NULL);
437-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (150, 'gmh', 'German, Middle High (ca.1050-1500)', NULL, NULL, NULL, true, 0, NULL);
438-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (151, 'goh', 'German, Old High (ca.750-1050)', NULL, NULL, NULL, true, 0, NULL);
439-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (152, 'gon', 'Gondi', NULL, NULL, NULL, true, 0, NULL);
440-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (153, 'gor', 'Gorontalo', NULL, NULL, NULL, true, 0, NULL);
441-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (154, 'got', 'Gothic', NULL, NULL, NULL, true, 0, NULL);
442-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (155, 'grb', 'Grebo', NULL, NULL, NULL, true, 0, NULL);
443-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (156, 'grc', 'Greek, Ancient (to 1453)', NULL, NULL, NULL, true, 0, NULL);
444-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (157, 'el', 'Greek, Modern (1453-)', NULL, 2, 'n != 1', true, 0, '{eb0c5e26-c8a7-4873-b633-0f453cb1debc}');
445-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (158, 'gn', 'Guarani', NULL, NULL, NULL, true, 0, NULL);
446-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (159, 'gu', 'Gujarati', NULL, 2, 'n != 1', true, 0, '{16baab125756b023981bc4a14bd77b5c}');
447-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (160, 'gwi', 'Gwichin', NULL, NULL, NULL, true, 0, NULL);
448-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (161, 'hai', 'Haida', NULL, NULL, NULL, true, 0, NULL);
449-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (162, 'ht', 'Haitian; Haitian Creole', NULL, NULL, NULL, true, 0, NULL);
450-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (163, 'ha', 'Hausa', NULL, NULL, NULL, true, 0, NULL);
451-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (164, 'haw', 'Hawaiian', NULL, NULL, NULL, true, 0, NULL);
452-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (165, 'he', 'Hebrew', NULL, 2, 'n != 1', true, 1, '{9818f84c-1be1-4eea-aded-55f406c70e37}');
453-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (166, 'hz', 'Herero', NULL, NULL, NULL, true, 0, NULL);
454-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (167, 'hil', 'Hiligaynon', NULL, NULL, NULL, true, 0, NULL);
455-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (168, 'him', 'Himachali', NULL, NULL, NULL, true, 0, NULL);
456-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (169, 'hi', 'Hindi', NULL, 2, 'n != 1', true, 0, NULL);
457-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (170, 'hit', 'Hittite', NULL, NULL, NULL, true, 0, NULL);
458-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (171, 'hmn', 'Hmong', NULL, NULL, NULL, true, 0, NULL);
459-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (172, 'ho', 'Hiri', NULL, NULL, NULL, true, 0, NULL);
460-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (173, 'hsb', 'Upper Sorbian', NULL, NULL, NULL, true, 0, NULL);
461-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (174, 'hu', 'Hungarian', NULL, 1, '0', true, 0, '{cacb8e15-7f1b-4e71-a3c0-d63ce907366f}');
462-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (175, 'hup', 'Hupa', NULL, NULL, NULL, true, 0, NULL);
463-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (176, 'iba', 'Iban', NULL, NULL, NULL, true, 0, NULL);
464-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (177, 'ig', 'Igbo', NULL, NULL, NULL, true, 0, NULL);
465-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (178, 'is', 'Icelandic', NULL, 2, 'n != 1', true, 0, NULL);
466-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (179, 'io', 'Ido', NULL, NULL, NULL, true, 0, NULL);
467-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (180, 'ii', 'Sichuan Yi', NULL, NULL, NULL, true, 0, NULL);
468-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (181, 'ijo', 'Ijo', NULL, NULL, NULL, true, 0, NULL);
469-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (182, 'iu', 'Inuktitut', NULL, NULL, NULL, true, 0, NULL);
470-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (183, 'ie', 'Interlingue', NULL, NULL, NULL, true, 0, NULL);
471-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (184, 'ilo', 'Iloko', NULL, NULL, NULL, true, 0, NULL);
472-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (185, 'ia', 'Interlingua', NULL, NULL, NULL, true, 0, NULL);
473-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (186, 'inc', 'Indic (Other)', NULL, NULL, NULL, true, 0, NULL);
474-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (187, 'id', 'Indonesian', NULL, 1, '0', true, 0, NULL);
475-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (188, 'ine', 'Indo-European (Other)', NULL, NULL, NULL, true, 0, NULL);
476-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (189, 'inh', 'Ingush', NULL, NULL, NULL, true, 0, NULL);
477-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (190, 'ik', 'Inupiaq', NULL, NULL, NULL, true, 0, NULL);
478-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (191, 'ira', 'Iranian (Other)', NULL, NULL, NULL, true, 0, NULL);
479-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (192, 'iro', 'Iroquoian languages', NULL, NULL, NULL, true, 0, NULL);
480-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (193, 'it', 'Italian', NULL, 2, 'n != 1', true, 0, '{9db167da-cba5-4d12-b045-5d2a5a36a88a}');
481-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (194, 'jv', 'Javanese', NULL, NULL, NULL, true, 0, NULL);
482-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (195, 'jbo', 'Lojban', NULL, 1, '0', true, 0, NULL);
483-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (196, 'ja', 'Japanese', NULL, 1, '0', true, 0, '{02d61967-84bb-455b-a14b-76abc5864739}');
484-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (197, 'jpr', 'Judeo-Persian', NULL, NULL, NULL, true, 0, NULL);
485-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (198, 'jrb', 'Judeo-Arabic', NULL, NULL, NULL, true, 0, NULL);
486-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (199, 'kaa', 'Kara-Kalpak', NULL, NULL, NULL, true, 0, NULL);
487-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (200, 'kab', 'Kabyle', NULL, NULL, NULL, true, 0, NULL);
488-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (201, 'kac', 'Kachin', NULL, NULL, NULL, true, 0, NULL);
489-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (202, 'kl', 'Greenlandic (Kalaallisut)', NULL, NULL, NULL, true, 0, NULL);
490-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (203, 'kam', 'Kamba', NULL, NULL, NULL, true, 0, NULL);
491-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (204, 'kn', 'Kannada', NULL, NULL, NULL, true, 0, NULL);
492-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (205, 'kar', 'Karen', NULL, NULL, NULL, true, 0, NULL);
493-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (206, 'ks', 'Kashmiri', NULL, NULL, NULL, true, 0, NULL);
494-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (207, 'kr', 'Kanuri', NULL, 1, '0', true, 0, NULL);
495-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (208, 'kaw', 'Kawi', NULL, NULL, NULL, true, 0, NULL);
496-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (209, 'kk', 'Kazakh', NULL, NULL, NULL, true, 0, NULL);
497-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (210, 'kbd', 'Kabardian', NULL, NULL, NULL, true, 0, NULL);
498-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (211, 'kha', 'Khazi', NULL, NULL, NULL, true, 0, NULL);
499-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (212, 'khi', 'Khoisan (Other)', NULL, NULL, NULL, true, 0, NULL);
500-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (213, 'km', 'Khmer', NULL, NULL, NULL, true, 0, NULL);
501-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (214, 'kho', 'Khotanese', NULL, NULL, NULL, true, 0, NULL);
502-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (215, 'ki', 'Kikuyu', NULL, NULL, NULL, true, 0, NULL);
503-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (216, 'rw', 'Kinyarwanda', NULL, NULL, NULL, true, 0, NULL);
504-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (217, 'ky', 'Kirghiz', NULL, NULL, NULL, true, 0, NULL);
505-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (218, 'kmb', 'Kimbundu', NULL, NULL, NULL, true, 0, NULL);
506-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (219, 'kok', 'Konkani', NULL, NULL, NULL, true, 0, NULL);
507-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (220, 'kv', 'Komi', NULL, NULL, NULL, true, 0, NULL);
508-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (221, 'kg', 'Kongo', NULL, NULL, NULL, true, 0, NULL);
509-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (222, 'ko', 'Korean', NULL, 1, '0', true, 0, '{dcff4b08-a6cc-4588-a941-852609855803}');
510-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (223, 'kos', 'Kosraean', NULL, NULL, NULL, true, 0, NULL);
511-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (224, 'kpe', 'Kpelle', NULL, NULL, NULL, true, 0, NULL);
512-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (225, 'krc', 'Karachay-Balkar', NULL, NULL, NULL, true, 0, NULL);
513-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (226, 'kro', 'Kru', NULL, NULL, NULL, true, 0, NULL);
514-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (227, 'kru', 'Kurukh', NULL, NULL, NULL, true, 0, NULL);
515-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (228, 'kj', 'Kuanyama', NULL, NULL, NULL, true, 0, NULL);
516-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (229, 'kum', 'Kumyk', NULL, NULL, NULL, true, 0, NULL);
517-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (230, 'ku', 'Kurdish', NULL, 2, 'n != 1', true, 0, NULL);
518-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (231, 'kut', 'Kutenai', NULL, NULL, NULL, true, 0, NULL);
519-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (232, 'lad', 'Ladino', NULL, NULL, NULL, true, 0, NULL);
520-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (233, 'lah', 'Lahnda', NULL, NULL, NULL, true, 0, NULL);
521-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (234, 'lam', 'Lamba', NULL, NULL, NULL, true, 0, NULL);
522-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (235, 'lo', 'Lao', NULL, NULL, NULL, true, 0, NULL);
523-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (236, 'la', 'Latin', NULL, 2, 'n != 1', true, 0, NULL);
524-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (237, 'lv', 'Latvian', NULL, 3, 'n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2', true, 0, NULL);
525-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (238, 'lez', 'Lezghian', NULL, NULL, NULL, true, 0, NULL);
526-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (239, 'li', 'Limburgian', NULL, NULL, NULL, true, 0, NULL);
527-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (240, 'ln', 'Lingala', NULL, NULL, NULL, true, 0, NULL);
528-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (241, 'lt', 'Lithuanian', NULL, 3, 'n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2', true, 0, NULL);
529-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (242, 'lol', 'Mongo', NULL, NULL, NULL, true, 0, NULL);
530-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (243, 'loz', 'Lozi', NULL, NULL, NULL, true, 0, NULL);
531-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (244, 'lb', 'Luxembourgish', NULL, 2, 'n != 1', true, 0, NULL);
532-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (245, 'lua', 'Luba-Lulua', NULL, NULL, NULL, true, 0, NULL);
533-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (246, 'lu', 'Luba-Katanga', NULL, NULL, NULL, true, 0, NULL);
534-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (247, 'lg', 'Ganda', NULL, NULL, NULL, true, 0, NULL);
535-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (248, 'lui', 'Luiseno', NULL, NULL, NULL, true, 0, NULL);
536-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (249, 'lun', 'Lunda', NULL, NULL, NULL, true, 0, NULL);
537-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (250, 'luo', 'Luo (Kenya and Tanzania)', NULL, NULL, NULL, true, 0, NULL);
538-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (251, 'lus', 'Lushai', NULL, NULL, NULL, true, 0, NULL);
539-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (252, 'mk', 'Macedonian', NULL, 2, '(n % 10 == 1 && n % 100 != 11) ? 0 : 1', true, 0, '{376b068c-4aff-4f66-bb4c-fde345b63073}');
540-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (253, 'mad', 'Madurese', NULL, NULL, NULL, true, 0, NULL);
541-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (254, 'mag', 'Magahi', NULL, NULL, NULL, true, 0, NULL);
542-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (255, 'mh', 'Marshallese', NULL, NULL, NULL, true, 0, NULL);
543-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (256, 'mai', 'Maithili', NULL, NULL, NULL, true, 0, NULL);
544-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (257, 'mak', 'Makasar', NULL, NULL, NULL, true, 0, NULL);
545-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (258, 'ml', 'Malayalam', NULL, NULL, NULL, true, 0, NULL);
546-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (259, 'man', 'Mandingo', NULL, NULL, NULL, true, 0, NULL);
547-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (260, 'mi', 'Maori', NULL, NULL, NULL, true, 0, NULL);
548-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (261, 'map', 'Austronesian (Other)', NULL, NULL, NULL, true, 0, NULL);
549-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (262, 'mr', 'Marathi', NULL, 2, 'n != 1', true, 0, NULL);
550-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (263, 'mas', 'Masai', NULL, NULL, NULL, true, 0, NULL);
551-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (264, 'ms', 'Malay', NULL, 2, 'n != 1', true, 0, NULL);
552-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (265, 'mdf', 'Moksha', NULL, NULL, NULL, true, 0, NULL);
553-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (266, 'mdr', 'Mandar', NULL, NULL, NULL, true, 0, NULL);
554-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (267, 'men', 'Mende', NULL, NULL, NULL, true, 0, NULL);
555-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (268, 'mga', 'Irish, Middle (900-1200)', NULL, NULL, NULL, true, 0, NULL);
556-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (269, 'mic', 'Micmac', NULL, NULL, NULL, true, 0, NULL);
557-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (270, 'min', 'Minangkabau', NULL, NULL, NULL, true, 0, NULL);
558-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (271, 'mis', 'Miscellaneous languages', NULL, NULL, NULL, true, 0, NULL);
559-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (272, 'mkh', 'Mon-Khmer (Other)', NULL, NULL, NULL, true, 0, NULL);
560-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (273, 'mg', 'Malagasy', NULL, NULL, NULL, true, 0, NULL);
561-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (274, 'mt', 'Maltese', NULL, 4, 'n == 1 ? 0 : (n == 0 || ((n % 100) >= 2 && (n % 100) <= 10) ) ? 1 : ((n % 100) >= 11 && (n % 100) <= 19 ) ? 2 : 3', true, 0, NULL);
562-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (275, 'mnc', 'Manchu', NULL, NULL, NULL, true, 0, NULL);
563-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (276, 'mno', 'Manobo languages', NULL, NULL, NULL, true, 0, NULL);
564-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (277, 'moh', 'Mohawk', NULL, NULL, NULL, true, 0, NULL);
565-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (278, 'mo', 'Moldavian', NULL, NULL, NULL, true, 0, NULL);
566-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (279, 'mn', 'Mongolian', NULL, NULL, NULL, true, 0, NULL);
567-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (280, 'mos', 'Mossi', NULL, NULL, NULL, true, 0, NULL);
568-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (281, 'mul', 'Multiple languages', NULL, NULL, NULL, true, 0, NULL);
569-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (282, 'mun', 'Munda languages', NULL, NULL, NULL, true, 0, NULL);
570-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (283, 'mus', 'Creek', NULL, NULL, NULL, true, 0, NULL);
571-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (284, 'mwr', 'Marwari', NULL, NULL, NULL, true, 0, NULL);
572-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (285, 'myn', 'Mayan languages', NULL, NULL, NULL, true, 0, NULL);
573-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (286, 'myv', 'Erzya', NULL, NULL, NULL, true, 0, NULL);
574-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (287, 'nah', 'Nahuatl', NULL, NULL, NULL, true, 0, NULL);
575-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (288, 'nai', 'North American Indian (Other)', NULL, NULL, NULL, true, 0, NULL);
576-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (289, 'nap', 'Neapolitan', NULL, NULL, NULL, true, 0, NULL);
577-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (290, 'na', 'Nauru', NULL, NULL, NULL, true, 0, NULL);
578-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (291, 'nv', 'Navaho', NULL, NULL, NULL, true, 0, NULL);
579-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (292, 'nr', 'Ndebele, South', NULL, NULL, NULL, true, 0, NULL);
580-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (293, 'nd', 'Ndebele, North', NULL, NULL, NULL, true, 0, NULL);
581-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (294, 'ng', 'Ndonga', NULL, NULL, NULL, true, 0, NULL);
582-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (295, 'nds', 'German, Low', NULL, NULL, NULL, true, 0, NULL);
583-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (296, 'ne', 'Nepali', NULL, NULL, NULL, true, 0, NULL);
584-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (297, 'new', 'Newari', NULL, NULL, NULL, true, 0, NULL);
585-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (298, 'nia', 'Nias', NULL, NULL, NULL, true, 0, NULL);
586-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (299, 'nic', 'Niger-Kordofanian (Other)', NULL, NULL, NULL, true, 0, NULL);
587-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (300, 'niu', 'Niuean', NULL, NULL, NULL, true, 0, NULL);
588-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (301, 'nn', 'Norwegian Nynorsk', NULL, 2, 'n != 1', true, 0, NULL);
589-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (302, 'nb', 'Norwegian Bokmål', NULL, 2, 'n != 1', true, 0, '{4CD2763D-5532-4ddc-84D9-2E094695A680}');
590-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (303, 'nog', 'Nogai', NULL, NULL, NULL, true, 0, NULL);
591-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (304, 'non', 'Norse, Old', NULL, NULL, NULL, true, 0, NULL);
592-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (305, 'no', 'Norwegian', NULL, 2, 'n != 1', false, 0, NULL);
593-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (306, 'nso', 'Sotho, Northern', NULL, NULL, NULL, true, 0, NULL);
594-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (307, 'nub', 'Nubian languages', NULL, NULL, NULL, true, 0, NULL);
595-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (308, 'nwc', 'Classical Newari; Old Newari', NULL, NULL, NULL, true, 0, NULL);
596-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (309, 'ny', 'Chewa; Chichewa; Nyanja', NULL, NULL, NULL, true, 0, NULL);
597-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (310, 'nym', 'Nyankole', NULL, NULL, NULL, true, 0, NULL);
598-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (311, 'nyo', 'Nyoro', NULL, NULL, NULL, true, 0, NULL);
599-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (312, 'nzi', 'Nzima', NULL, NULL, NULL, true, 0, NULL);
600-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (313, 'oc', 'Occitan (post 1500)', NULL, 2, 'n > 1', true, 0, NULL);
601-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (314, 'oj', 'Ojibwa', NULL, NULL, NULL, true, 0, NULL);
602-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (315, 'or', 'Oriya', NULL, NULL, NULL, true, 0, NULL);
603-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (316, 'om', 'Oromo', NULL, NULL, NULL, true, 0, NULL);
604-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (317, 'osa', 'Osage', NULL, NULL, NULL, true, 0, NULL);
605-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (318, 'os', 'Ossetian', NULL, NULL, NULL, true, 0, NULL);
606-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (319, 'ota', 'Turkish, Ottoman (1500-1928)', NULL, NULL, NULL, true, 0, NULL);
607-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (320, 'oto', 'Otomian languages', NULL, NULL, NULL, true, 0, NULL);
608-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (321, 'paa', 'Papuan (Other)', NULL, NULL, NULL, true, 0, NULL);
609-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (322, 'pag', 'Pangasinan', NULL, NULL, NULL, true, 0, NULL);
610-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (323, 'pal', 'Pahlavi', NULL, NULL, NULL, true, 0, NULL);
611-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (324, 'pam', 'Pampanga', NULL, NULL, NULL, true, 0, NULL);
612-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (325, 'pa', 'Punjabi', NULL, 2, 'n != 1', true, 0, '{96f366b1-5194-4e30-9415-1f6fcaaaa583}');
613-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (326, 'pap', 'Papiamento', NULL, 2, 'n != 1', true, 0, NULL);
614-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (327, 'pau', 'Palauan', NULL, NULL, NULL, true, 0, NULL);
615-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (328, 'peo', 'Persian, Old (ca.600-400 B.C.)', NULL, NULL, NULL, true, 0, NULL);
616-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (329, 'fa', 'Persian', NULL, 1, '0', true, 1, NULL);
617-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (330, 'phi', 'Philippine (Other)', NULL, NULL, NULL, true, 0, NULL);
618-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (331, 'phn', 'Phoenician', NULL, NULL, NULL, true, 0, NULL);
619-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (332, 'pi', 'Pali', NULL, NULL, NULL, true, 0, NULL);
620-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (333, 'pl', 'Polish', NULL, 3, 'n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2', true, 0, '{cbfb6154-47f6-47ea-b888-6440a4ba44e8}');
621-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (334, 'pt', 'Portuguese', NULL, 2, 'n != 1', true, 0, '{6e528a74-5cca-40d1-mozia152-d1b2d415210b}');
622-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (335, 'pon', 'Pohnpeian', NULL, NULL, NULL, true, 0, NULL);
623-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (336, 'pra', 'Prakrit languages', NULL, NULL, NULL, true, 0, NULL);
624-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (337, 'pro', 'Provençal, Old (to 1500)', NULL, NULL, NULL, true, 0, NULL);
625-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (338, 'ps', 'Pushto', NULL, NULL, NULL, true, 0, NULL);
626-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (339, 'qu', 'Quechua', NULL, 2, '(n % 10 == 1 && n % 100 != 11) ? 0 : 1', true, 0, NULL);
627-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (340, 'raj', 'Rajasthani', NULL, NULL, NULL, true, 0, NULL);
628-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (341, 'rap', 'Rapanui', NULL, NULL, NULL, true, 0, NULL);
629-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (342, 'rar', 'Rarotongan', NULL, NULL, NULL, true, 0, NULL);
630-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (343, 'roa', 'Romance (Other)', NULL, NULL, NULL, true, 0, NULL);
631-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (344, 'rm', 'Raeto-Romance', NULL, NULL, NULL, true, 0, NULL);
632-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (345, 'rom', 'Romany', NULL, NULL, NULL, true, 0, NULL);
633-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (346, 'ro', 'Romanian', NULL, 3, '(n == 1 ? 0: (((n % 100 > 19) || ((n % 100 == 0) && (n != 0))) ? 2: 1))', true, 0, '{93ead120-1d61-4663-852d-ee631493168f}');
634-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (347, 'rn', 'Rundi', NULL, NULL, NULL, true, 0, NULL);
635-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (348, 'ru', 'Russian', NULL, 3, 'n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2', true, 0, '{9E20245A-B2EE-4ee6-815B-99C30B35D0D2}');
636-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (349, 'sad', 'Sandawe', NULL, NULL, NULL, true, 0, NULL);
637-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (350, 'sg', 'Sango', NULL, 2, 'n > 1', true, 0, NULL);
638-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (351, 'sah', 'Yakut', NULL, NULL, NULL, true, 0, NULL);
639-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (352, 'sai', 'South American Indian (Other)', NULL, NULL, NULL, true, 0, NULL);
640-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (353, 'sal', 'Salishan languages', NULL, NULL, NULL, true, 0, NULL);
641-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (354, 'sam', 'Samaritan Aramaic', NULL, NULL, NULL, true, 0, NULL);
642-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (355, 'sa', 'Sanskrit', NULL, NULL, NULL, true, 0, NULL);
643-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (356, 'sas', 'Sasak', NULL, NULL, NULL, true, 0, NULL);
644-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (357, 'sat', 'Santali', NULL, NULL, NULL, true, 0, NULL);
645-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (358, 'sr', 'Serbian', NULL, 3, 'n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2', true, 0, NULL);
646-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (359, 'sco', 'Scots', NULL, NULL, NULL, true, 0, NULL);
647-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (360, 'hr', 'Croatian', NULL, 3, 'n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2', true, 0, NULL);
648-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (361, 'sel', 'Selkup', NULL, NULL, NULL, true, 0, NULL);
649-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (362, 'sem', 'Semitic (Other)', NULL, NULL, NULL, true, 0, NULL);
650-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (363, 'sga', 'Irish, Old (to 900)', NULL, NULL, NULL, true, 0, NULL);
651-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (364, 'sgn', 'Sign languages', NULL, NULL, NULL, true, 0, NULL);
652-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (365, 'shn', 'Shan', NULL, NULL, NULL, true, 0, NULL);
653-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (366, 'sid', 'Sidamo', NULL, NULL, NULL, true, 0, NULL);
654-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (367, 'si', 'Sinhalese', NULL, 2, 'n != 1', true, 0, NULL);
655-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (368, 'sio', 'Siouan languages', NULL, NULL, NULL, true, 0, NULL);
656-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (369, 'sit', 'Sino-Tibetan (Other)', NULL, NULL, NULL, true, 0, NULL);
657-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (370, 'sla', 'Slavic (Other)', NULL, NULL, NULL, true, 0, NULL);
658-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (371, 'sk', 'Slovak', NULL, 3, 'n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2', true, 0, NULL);
659-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (372, 'sl', 'Slovenian', NULL, 4, 'n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3', true, 0, '{ac25d192-0004-4228-8dc3-13a5461ca1c6}');
660-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (373, 'sma', 'Southern Sami', NULL, NULL, NULL, true, 0, NULL);
661-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (374, 'se', 'Northern Sami', NULL, NULL, NULL, true, 0, NULL);
662-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (375, 'smi', 'Sami languages (Other)', NULL, NULL, NULL, true, 0, NULL);
663-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (376, 'smj', 'Lule Sami', NULL, NULL, NULL, true, 0, NULL);
664-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (377, 'smn', 'Inari Sami', NULL, NULL, NULL, true, 0, NULL);
665-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (378, 'sm', 'Samoan', NULL, NULL, NULL, true, 0, NULL);
666-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (379, 'sms', 'Skolt Sami', NULL, NULL, NULL, true, 0, NULL);
667-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (380, 'sn', 'Shona', NULL, NULL, NULL, true, 0, NULL);
668-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (381, 'sd', 'Sindhi', NULL, NULL, NULL, true, 0, NULL);
669-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (382, 'snk', 'Soninke', NULL, NULL, NULL, true, 0, NULL);
670-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (383, 'sog', 'Sogdian', NULL, NULL, NULL, true, 0, NULL);
671-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (384, 'so', 'Somali', NULL, 2, 'n != 1', true, 0, NULL);
672-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (385, 'son', 'Songhai', NULL, NULL, NULL, true, 0, NULL);
673-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (386, 'st', 'Sotho, Southern', NULL, 1, '0', true, 0, NULL);
674-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (387, 'es', 'Spanish', NULL, 2, 'n != 1', true, 0, '{e4d01067-3443-405d-939d-a200ed3db577}');
675-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (388, 'sc', 'Sardinian', NULL, NULL, NULL, true, 0, NULL);
676-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (389, 'srr', 'Serer', NULL, NULL, NULL, true, 0, NULL);
677-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (390, 'ssa', 'Nilo-Saharan (Other)', NULL, NULL, NULL, true, 0, NULL);
678-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (391, 'ss', 'Swati', NULL, NULL, NULL, true, 0, NULL);
679-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (392, 'suk', 'Sukuma', NULL, NULL, NULL, true, 0, NULL);
680-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (393, 'su', 'Sundanese', NULL, NULL, NULL, true, 0, NULL);
681-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (394, 'sus', 'Susu', NULL, NULL, NULL, true, 0, NULL);
682-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (395, 'sux', 'Sumerian', NULL, NULL, NULL, true, 0, NULL);
683-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (396, 'sw', 'Swahili', NULL, NULL, NULL, true, 0, NULL);
684-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (397, 'sv', 'Swedish', NULL, 2, 'n != 1', true, 0, '{A3E7CC55-B6E4-4a87-BD2E-657CA489F23A}');
685-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (398, 'syr', 'Syriac', NULL, NULL, NULL, true, 0, NULL);
686-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (399, 'ty', 'Tahitian', NULL, NULL, NULL, true, 0, NULL);
687-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (400, 'tai', 'Tai (Other)', NULL, NULL, NULL, true, 0, NULL);
688-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (401, 'ta', 'Tamil', NULL, 2, 'n != 1', true, 0, NULL);
689-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (402, 'ts', 'Tsonga', NULL, NULL, NULL, true, 0, NULL);
690-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (403, 'tt', 'Tatar', NULL, NULL, NULL, true, 0, NULL);
691-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (404, 'te', 'Telugu', NULL, NULL, NULL, true, 0, NULL);
692-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (405, 'tem', 'Timne', NULL, NULL, NULL, true, 0, NULL);
693-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (406, 'ter', 'Tereno', NULL, NULL, NULL, true, 0, NULL);
694-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (407, 'tet', 'Tetum', NULL, NULL, NULL, true, 0, NULL);
695-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (408, 'tg', 'Tajik', NULL, NULL, NULL, true, 0, NULL);
696-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (409, 'tl', 'Tagalog', NULL, 2, 'n > 1', true, 0, NULL);
697-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (410, 'th', 'Thai', NULL, NULL, NULL, true, 0, NULL);
698-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (411, 'bo', 'Tibetan', NULL, 1, '0', true, 0, NULL);
699-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (412, 'tig', 'Tigre', NULL, NULL, NULL, true, 0, NULL);
700-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (413, 'ti', 'Tigrinya', NULL, NULL, NULL, true, 0, NULL);
701-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (414, 'tiv', 'Tiv', NULL, NULL, NULL, true, 0, NULL);
702-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (415, 'tlh', 'Klingon; tlhIngan-Hol', NULL, NULL, NULL, true, 0, NULL);
703-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (416, 'tkl', 'Tokelau', NULL, NULL, NULL, true, 0, NULL);
704-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (417, 'tli', 'Tlinglit', NULL, NULL, NULL, true, 0, NULL);
705-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (418, 'tmh', 'Tamashek', NULL, NULL, NULL, true, 0, NULL);
706-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (419, 'tog', 'Tonga (Nyasa)', NULL, NULL, NULL, true, 0, NULL);
707-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (420, 'to', 'Tonga (Tonga Islands)', NULL, NULL, NULL, true, 0, NULL);
708-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (421, 'tpi', 'Tok Pisin', NULL, NULL, NULL, true, 0, NULL);
709-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (422, 'tsi', 'Tsimshian', NULL, NULL, NULL, true, 0, NULL);
710-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (423, 'tn', 'Tswana', NULL, NULL, NULL, true, 0, NULL);
711-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (424, 'tk', 'Turkmen', NULL, NULL, NULL, true, 0, NULL);
712-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (425, 'tum', 'Tumbuka', NULL, NULL, NULL, true, 0, NULL);
713-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (426, 'tup', 'Tupi languages', NULL, NULL, NULL, true, 0, NULL);
714-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (427, 'tr', 'Turkish', NULL, 1, '0', true, 0, '{08c0f953-0736-4989-b921-3e7ddfaf556a}');
715-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (428, 'tut', 'Altaic (Other)', NULL, NULL, NULL, true, 0, NULL);
716-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (429, 'tvl', 'Tuvalu', NULL, NULL, NULL, true, 0, NULL);
717-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (430, 'tw', 'Twi', NULL, NULL, NULL, true, 0, NULL);
718-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (431, 'tyv', 'Tuvinian', NULL, NULL, NULL, true, 0, NULL);
719-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (432, 'udm', 'Udmurt', NULL, NULL, NULL, true, 0, NULL);
720-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (433, 'uga', 'Ugaritic', NULL, NULL, NULL, true, 0, NULL);
721-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (434, 'ug', 'Uighur', NULL, NULL, NULL, true, 0, NULL);
722-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (435, 'uk', 'Ukrainian', NULL, 3, 'n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2', true, 0, '{f68df430-4534-4473-8ca4-d5de32268a8d}');
723-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (436, 'umb', 'Umbundu', NULL, NULL, NULL, true, 0, NULL);
724-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (437, 'und', 'Undetermined', NULL, NULL, NULL, true, 0, NULL);
725-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (438, 'ur', 'Urdu', NULL, 2, 'n != 1', true, 0, NULL);
726-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (439, 'uz', 'Uzbek', NULL, NULL, NULL, true, 0, NULL);
727-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (440, 'vai', 'Vai', NULL, NULL, NULL, true, 0, NULL);
728-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (441, 've', 'Venda', NULL, NULL, NULL, true, 0, NULL);
729-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (442, 'vi', 'Vietnamese', NULL, 1, '0', true, 0, NULL);
730-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (443, 'vo', 'Volapuk', NULL, NULL, NULL, true, 0, NULL);
731-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (444, 'vot', 'Votic', NULL, NULL, NULL, true, 0, NULL);
732-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (445, 'wak', 'Wakashan languages', NULL, NULL, NULL, true, 0, NULL);
733-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (446, 'wal', 'Walamo', NULL, NULL, NULL, true, 0, NULL);
734-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (447, 'war', 'Waray', NULL, NULL, NULL, true, 0, NULL);
735-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (448, 'was', 'Washo', NULL, NULL, NULL, true, 0, NULL);
736-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (449, 'cy', 'Welsh', NULL, 4, 'n==1 ? 0 : n==2 ? 1 : (n != 8 || n != 11) ? 2 : 3', true, 0, NULL);
737-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (450, 'wen', 'Sorbian languages', NULL, NULL, NULL, true, 0, NULL);
738-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (451, 'wa', 'Walloon', NULL, NULL, NULL, true, 0, NULL);
739-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (452, 'wo', 'Wolof', NULL, NULL, NULL, true, 0, NULL);
740-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (453, 'xal', 'Kalmyk', NULL, NULL, NULL, true, 0, NULL);
741-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (454, 'xh', 'Xhosa', NULL, 2, 'n != 1', true, 0, NULL);
742-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (455, 'yao', 'Yao', NULL, NULL, NULL, true, 0, NULL);
743-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (456, 'yap', 'Yapese', NULL, NULL, NULL, true, 0, NULL);
744-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (457, 'yi', 'Yiddish', NULL, NULL, NULL, true, 1, NULL);
745-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (458, 'yo', 'Yoruba', NULL, NULL, NULL, true, 0, NULL);
746-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (459, 'ypk', 'Yupik languages', NULL, NULL, NULL, true, 0, NULL);
747-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (460, 'zap', 'Zapotec', NULL, NULL, NULL, true, 0, NULL);
748-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (461, 'zen', 'Zenaga', NULL, NULL, NULL, true, 0, NULL);
749-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (462, 'za', 'Chuang; Zhuang', NULL, NULL, NULL, true, 0, NULL);
750-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (463, 'znd', 'Zande', NULL, NULL, NULL, true, 0, NULL);
751-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (464, 'zu', 'Zulu', NULL, 2, 'n != 1', true, 0, NULL);
752-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (465, 'zun', 'Zuni', NULL, NULL, NULL, true, 0, NULL);
753-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (466, 'ti_ER', 'Tigrinya (Eritrea)', NULL, NULL, NULL, false, 0, NULL);
754-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (467, 'ti_ET', 'Tigrinya (Ethiopia)', NULL, NULL, NULL, false, 0, NULL);
755-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (468, 'gez_ER', 'Geez (Eritrea)', NULL, NULL, NULL, false, 0, NULL);
756-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (469, 'gez_ET', 'Geez (Ethiopia)', NULL, NULL, NULL, false, 0, NULL);
757-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (470, 'de_AT', 'German (Austria)', NULL, 2, 'n != 1', false, 0, NULL);
758-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (471, 'de_BE', 'German (Belgium)', NULL, 2, 'n != 1', false, 0, NULL);
759-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (472, 'de_CH', 'German (Switzerland)', NULL, 2, 'n != 1', false, 0, NULL);
760-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (473, 'de_DE', 'German (Germany)', NULL, 2, 'n != 1', false, 0, NULL);
761-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (474, 'de_LU', 'German (Luxembourg)', NULL, 2, 'n != 1', false, 0, NULL);
762-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (475, 'en_AU', 'English (Australia)', NULL, 2, 'n != 1', true, 0, NULL);
763-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (476, 'en_BW', 'English (Botswana)', NULL, 2, 'n != 1', false, 0, NULL);
764-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (477, 'en_CA', 'English (Canada)', NULL, 2, 'n != 1', true, 0, NULL);
765-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (478, 'en_DK', 'English (Denmark)', NULL, 2, 'n != 1', false, 0, NULL);
766-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (479, 'en_GB', 'English (United Kingdom)', NULL, 2, 'n != 1', true, 0, NULL);
767-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (480, 'en_HK', 'English (Hong Kong)', NULL, 2, 'n != 1', false, 0, NULL);
768-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (481, 'en_IE', 'English (Ireland)', NULL, 2, 'n != 1', false, 0, NULL);
769-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (482, 'en_IN', 'English (India)', NULL, 2, 'n != 1', false, 0, NULL);
770-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (483, 'en_NZ', 'English (New Zealand)', NULL, 2, 'n != 1', false, 0, NULL);
771-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (484, 'en_PH', 'English (Philippines)', NULL, 2, 'n != 1', false, 0, NULL);
772-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (485, 'en_SG', 'English (Singapore)', NULL, 2, 'n != 1', false, 0, NULL);
773-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (486, 'en_US', 'English (United States)', NULL, 2, 'n != 1', false, 0, NULL);
774-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (487, 'en_ZA', 'English (South Africa)', NULL, 2, 'n != 1', false, 0, NULL);
775-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (488, 'en_ZW', 'English (Zimbabwe)', NULL, 2, 'n != 1', false, 0, NULL);
776-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (489, 'zh_CN', 'Chinese (China)', NULL, 1, '0', true, 0, '{74d253f5-1463-4de4-bc6e-a7127c066416}');
777-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (490, 'zh_HK', 'Chinese (Hong Kong)', NULL, 1, '0', true, 0, NULL);
778-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (491, 'zh_SG', 'Chinese (Singapore)', NULL, 1, '0', false, 0, NULL);
779-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (492, 'zh_TW', 'Chinese (Taiwan)', NULL, 1, '0', true, 0, '{0c7ce36c-a092-4a3d-9ac3-9891d2f2727e}');
780-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (493, 'eu_ES', 'Basque (Spain)', NULL, 2, 'n != 1', false, 0, NULL);
781-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (494, 'eu_FR', 'Basque (France)', NULL, 2, 'n != 1', false, 0, NULL);
782-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (495, 'es_AR', 'Spanish (Argentina)', NULL, 2, 'n != 1', false, 0, NULL);
783-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (496, 'es_BO', 'Spanish (Bolivia)', NULL, 2, 'n != 1', false, 0, NULL);
784-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (497, 'es_CL', 'Spanish (Chile)', NULL, 2, 'n != 1', false, 0, NULL);
785-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (498, 'es_CO', 'Spanish (Colombia)', NULL, 2, 'n != 1', false, 0, NULL);
786-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (499, 'es_CR', 'Spanish (Costa Rica)', NULL, 2, 'n != 1', false, 0, NULL);
787-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (500, 'es_DO', 'Spanish (Dominican Republic)', NULL, 2, 'n != 1', false, 0, NULL);
788-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (501, 'es_EC', 'Spanish (Ecuador)', NULL, 2, 'n != 1', false, 0, NULL);
789-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (502, 'es_ES', 'Spanish (Spain)', NULL, 2, 'n != 1', false, 0, NULL);
790-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (503, 'es_GT', 'Spanish (Guatemala)', NULL, 2, 'n != 1', false, 0, NULL);
791-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (504, 'es_HN', 'Spanish (Honduras)', NULL, 2, 'n != 1', false, 0, NULL);
792-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (505, 'es_MX', 'Spanish (Mexico)', NULL, 2, 'n != 1', false, 0, NULL);
793-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (506, 'es_NI', 'Spanish (Nicaragua)', NULL, 2, 'n != 1', false, 0, NULL);
794-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (507, 'es_PA', 'Spanish (Panama)', NULL, 2, 'n != 1', false, 0, NULL);
795-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (508, 'es_PE', 'Spanish (Peru)', NULL, 2, 'n != 1', false, 0, NULL);
796-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (509, 'es_PR', 'Spanish (Puerto Rico)', NULL, 2, 'n != 1', false, 0, NULL);
797-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (510, 'es_PY', 'Spanish (Paraguay)', NULL, 2, 'n != 1', false, 0, NULL);
798-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (511, 'es_SV', 'Spanish (El Salvador)', NULL, 2, 'n != 1', false, 0, NULL);
799-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (512, 'es_US', 'Spanish (United States)', NULL, 2, 'n != 1', false, 0, NULL);
800-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (513, 'es_UY', 'Spanish (Uruguay)', NULL, 2, 'n != 1', false, 0, NULL);
801-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (514, 'es_VE', 'Spanish (Venezuela)', NULL, 2, 'n != 1', false, 0, NULL);
802-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (515, 'ru_RU', 'Russian (Russian Federation)', NULL, 3, 'n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2', false, 0, NULL);
803-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (516, 'ru_UA', 'Russian (Ukraine)', NULL, 3, 'n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2', false, 0, NULL);
804-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (517, 'bn_BD', 'Bengali (Bangladesh)', NULL, NULL, NULL, false, 0, NULL);
805-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (518, 'bn_IN', 'Bengali (India)', NULL, NULL, NULL, false, 0, NULL);
806-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (519, 'om_ET', 'Oromo (Ethiopia)', NULL, NULL, NULL, false, 0, NULL);
807-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (520, 'om_KE', 'Oromo (Kenya)', NULL, NULL, NULL, false, 0, NULL);
808-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (521, 'pt_BR', 'Portuguese (Brazil)', NULL, 2, 'n > 1', true, 0, '{8cb7341c-bcb6-43ca-b214-c48967f2a77e}');
809-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (522, 'pt_PT', 'Portuguese (Portugal)', NULL, 2, 'n != 1', false, 0, NULL);
810-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (523, 'aa_DJ', 'Afar (Djibouti)', NULL, NULL, NULL, false, 0, NULL);
811-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (524, 'aa_ER', 'Afar (Eritrea)', NULL, NULL, NULL, false, 0, NULL);
812-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (525, 'aa_ET', 'Afar (Ethiopia)', NULL, NULL, NULL, false, 0, NULL);
813-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (526, 'it_CH', 'Italian (Switzerland)', NULL, 2, 'n != 1', false, 0, NULL);
814-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (527, 'it_IT', 'Italian (Italy)', NULL, 2, 'n != 1', false, 0, NULL);
815-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (528, 'ar_AE', 'Arabic (United Arab Emirates)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
816-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (529, 'ar_BH', 'Arabic (Bahrain)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
817-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (530, 'ar_DZ', 'Arabic (Algeria)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
818-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (531, 'ar_EG', 'Arabic (Egypt)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
819-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (532, 'ar_IN', 'Arabic (India)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
820-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (533, 'ar_IQ', 'Arabic (Iraq)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
821-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (534, 'ar_JO', 'Arabic (Jordan)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
822-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (535, 'ar_KW', 'Arabic (Kuwait)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
823-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (536, 'ar_LB', 'Arabic (Lebanon)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
824-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (537, 'ar_LY', 'Arabic (Libyan Arab Jamahiriya)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
825-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (538, 'ar_MA', 'Arabic (Morocco)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
826-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (539, 'ar_OM', 'Arabic (Oman)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
827-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (540, 'ar_QA', 'Arabic (Qatar)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
828-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (541, 'ar_SA', 'Arabic (Saudi Arabia)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
829-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (542, 'ar_SD', 'Arabic (Sudan)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
830-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (543, 'ar_SY', 'Arabic (Syrian Arab Republic)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
831-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (544, 'ar_TN', 'Arabic (Tunisia)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
832-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (545, 'ar_YE', 'Arabic (Yemen)', NULL, 3, 'n==1 ? 0 : n==2 ? 1 : 2', false, 1, NULL);
833-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (546, 'nl_BE', 'Dutch (Belgium)', NULL, 2, 'n != 1', false, 0, NULL);
834-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (547, 'nl_NL', 'Dutch (Netherlands)', NULL, 2, 'n != 1', false, 0, NULL);
835-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (548, 'fr_BE', 'French (Belgium)', NULL, 2, 'n > 1', false, 0, NULL);
836-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (549, 'fr_CA', 'French (Canada)', NULL, 2, 'n > 1', false, 0, NULL);
837-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (550, 'fr_CH', 'French (Switzerland)', NULL, 2, 'n > 1', false, 0, NULL);
838-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (551, 'fr_FR', 'French (France)', NULL, 2, 'n > 1', false, 0, NULL);
839-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (552, 'fr_LU', 'French (Luxembourg)', NULL, 2, 'n > 1', false, 0, NULL);
840-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (553, 'sv_FI', 'Swedish (Finland)', NULL, 2, 'n != 1', false, 0, NULL);
841-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (554, 'sv_SE', 'Swedish (Sweden)', NULL, 2, 'n != 1', false, 0, NULL);
842-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (555, 'so_DJ', 'Somali (Djibouti)', NULL, NULL, NULL, false, 0, NULL);
843-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (556, 'so_ET', 'Somali (Ethiopia)', NULL, NULL, NULL, false, 0, NULL);
844-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (557, 'so_KE', 'Somali (Kenya)', NULL, NULL, NULL, false, 0, NULL);
845-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (558, 'so_SO', 'Somali (Somalia)', NULL, NULL, NULL, false, 0, NULL);
846-INSERT INTO language (id, code, englishname, nativename, pluralforms, pluralexpression, visible, direction, uuid) VALUES (559, 'fil', 'Filipino', NULL, 2, 'n > 1', true, 0, NULL);
847-
848-
849-ALTER TABLE language ENABLE TRIGGER ALL;
850-
851-
852-ALTER TABLE libraryfilecontent DISABLE TRIGGER ALL;
853-
854-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (1, '2005-04-07 16:46:05.265391', 178859, '378b3498ead213d35a82033a6e9196014a5ef25c', '01234567890123456789012345678900', NULL);
855-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (2, '2005-04-07 16:46:05.266763', 9922560, 'a57faa6287aee2c58e115673a119c6083d31d1b9', '01234567890123456789012345678902', NULL);
856-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (3, '2005-04-07 16:46:05.26727', 309386, 'b218ca7b52fa813550e3f14cdcf3ba68606e4446', '01234567890123456789012345678903', NULL);
857-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (4, '2005-04-07 16:46:05.267803', 162927750, 'cfbd3ee1f510c66d49be465b900a3334e8488184', '01234567890123456789012345678904', NULL);
858-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (5, '2005-05-18 08:03:28.021862', 4381, '9b1f78faa39fb09a9fd955d744002c2d8f32d88d', '01234567890123456789012345678905', NULL);
859-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (6, '2005-05-18 08:03:28.021862', 7910, 'afdf21d698587a6601e2ffed0f44292b7ad5dd07', '01234567890123456789012345678906', NULL);
860-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (7, '2005-05-18 08:03:28.021862', 10826, '502828e7591277535abe9015ffbc6918dbba8ef4', '01234567890123456789012345678907', NULL);
861-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (8, '2005-05-18 08:03:28.021862', 10826, '502828e7591277535abe9015ffbc6918dbba8ef4', '01234567890123456789012345678907', NULL);
862-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (9, '2005-05-18 08:03:28.021862', 2655, 'ca3b107af84c05eaf98ba073376153986566ec28', '01234567890123456789012345678908', NULL);
863-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (10, '2005-05-18 08:03:28.021862', 13110, 'bc7bebca1e3c5c166838b19f0eeb7f171e51805d', '01234567890123456789012345678909', NULL);
864-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (11, '2005-05-18 08:03:28.021862', 13499, '78a26efee75a54f113063b78783b2d4612fee409', '0123456789012345678901234567890a', NULL);
865-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (12, '2005-05-18 08:03:28.021862', 12695, '8812d04c170ca90bb1423e188ce9706869aa03d7', '0123456789012345678901234567890b', NULL);
866-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (13, '2005-05-18 08:03:28.021862', 13133, 'db1b50cbde7142d344bd8ef9b2e1fe3b3116f77c', '0123456789012345678901234567890c', NULL);
867-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (14, '2005-05-18 08:03:28.021862', 13641, 'e19cc1446e3004f10475c37b2cd363f75b8ae89a', '0123456789012345678901234567890d', NULL);
868-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (15, '2005-05-18 08:03:28.021862', 13269, 'fc8cab1cb1e5fb1efa3c3c475b8f7c8dc5038d50', '0123456789012345678901234567890f', NULL);
869-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (16, '2005-05-18 08:03:28.021862', 13983, 'e17ee3031bd29dcd1e5905c0fd17945600a91ccf', '01234567890123456789012345678910', NULL);
870-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (17, '2005-05-18 08:03:28.021862', 12652, '07b01d1e6fe9a729f911e72dfe674a5e0abdc4ee', '01234567890123456789012345678911', NULL);
871-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (18, '2005-05-18 08:03:28.021862', 13240, '801dc911c2bd67e17eff087516fdc63a2ac322ce', '01234567890123456789012345678912', NULL);
872-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (19, '2005-05-18 08:03:28.021862', 4165, 'fca78a2292e4034b8dfbb2de6f69e17ebeecaaa1', '01234567890123456789012345678913', NULL);
873-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (20, '2005-05-18 08:03:28.021862', 4093, 'fc67a1770f78c45c396b4724195aeb10683aa2fd', '01234567890123456789012345678914', NULL);
874-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (21, '2005-05-18 08:03:28.021862', 3635, '4ab2ca308dafe152789640942488e23a33e4f46c', '01234567890123456789012345678915', NULL);
875-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (22, '2005-05-18 08:03:28.021862', 3553, '20815563ee33368d51e3213354f97c05b4685968', '01234567890123456789012345678916', NULL);
876-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (23, '2005-05-18 08:03:28.021862', 3778, '965968d3e6668f39ebc64bc11a3f1a5cd07c213b', '01234567890123456789012345678917', NULL);
877-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (24, '2005-05-18 08:03:28.021862', 3666, 'cca8fb78e05a34481e07683cea8c3a47f01c609e', '01234567890123456789012345678918', NULL);
878-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (25, '2005-05-18 08:03:28.021862', 3793, '28a7accfb491a2b4895b49b810ca7cda0badc787', '01234567890123456789012345678919', NULL);
879-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (26, '2005-05-18 08:03:28.021862', 4773, '03efb176f04f3897de7d5e6484864b0559fd6cd6', '0123456789012345678901234567891a', NULL);
880-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (27, '2005-05-18 08:03:28.021862', 2961, '4468039e1d2cbdfc78d2e53477e5fe0537bae302', '0123456789012345678901234567891b', NULL);
881-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (28, '2005-05-18 08:03:28.021862', 3558, 'd6c2ddacdab7618ce2a555c20a4a730fcdb42600', '0123456789012345678901234567891c', NULL);
882-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (29, '2005-05-18 08:03:28.021862', 3561, '9eb09455e6a568605c1bbab4cdf1936eee92222d', '0123456789012345678901234567891d', NULL);
883-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (30, '2005-05-18 08:03:28.021862', 3305, 'b45b170da29f9b22650315657505124766c93720', '0123456789012345678901234567891e', NULL);
884-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (31, '2005-05-18 08:03:28.021862', 3987, '9668ba9f0a59f9e6e6bc73fc5dc9f116b202bceb', '0123456789012345678901234567891f', NULL);
885-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (32, '2005-05-18 08:03:28.021862', 4908, '874a6ef9cd1aaef17653c6c12f4b83ef9487c1c3', '01234567890123456789012345678920', NULL);
886-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (33, '2005-05-18 08:03:28.021862', 4908, '874a6ef9cd1aaef17653c6c12f4b83ef9487c1c3', '01234567890123456789012345678920', NULL);
887-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (34, '2005-08-10 09:31:29.606407', 2, '71853c6197a6a7f222db0f1978c7cb232b87c5ee', '01234567890123456789012345678921', NULL);
888-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (35, '2005-08-01 09:31:29.606407', 2, '71853c6197a6a7f222db0f1978c7cb232b87c5ee', '01234567890123456789012345678921', NULL);
889-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (36, '2005-10-30 18:00:27.899028', 3, '0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33', '01234567890123456789012345678922', NULL);
890-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (37, '2005-10-30 18:00:27.899028', 3, '1e04c7b5ea3f0fdbc95d0dd47f3c5bc275da8a33', '01234567890123456789012345678923', NULL);
891-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (38, '2005-10-30 18:00:27.899028', 3, 'ae04c7b5ea3f0bdb095d0dd47f3c5bc275da8a33', '01234567890123456789012345678924', NULL);
892-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (39, '2005-10-30 18:00:27.899028', 3, 'a10856bfea3f0bdb09550dd41f3c5bc275da8a33', '01234567890123456789012345678925', NULL);
893-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (40, '2005-10-30 18:00:27.899028', 3, '5a04c7b5ea3f0fdbc95d0dd47f3c5bc275da8a33', '01234567890123456789012345678926', NULL);
894-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (42, '2005-10-30 18:00:27.899028', 3, 'a45ed906e4f56fdbc95d0dd47f3c5bc275da8a33', '01234567890123456789012345678927', NULL);
895-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (43, '2005-10-30 18:00:27.899028', 3, '4e3961baf4f56fdbc95d0dd47f3c5bc275da8a33', '01234567890123456789012345678928', NULL);
896-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (44, '2005-10-30 18:00:27.899028', 3, 'b45ed906e4f5afdbc95d0dd47f3c5bc275da8a33', '01234567890123456789012345678929', NULL);
897-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (45, '2006-08-01 09:31:29.606407', 2, '43853c6197a6a7f222db0f1978c7cb232b87c5ee', '0123456789012345678901234567892a', NULL);
898-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (46, '2006-05-24 09:31:29.606407', 2, 'ab43246197a6a7f222db0f1978c7cb232b87c5ee', '0123456789012345678901234567892b', NULL);
899-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (47, '2006-05-24 09:31:29.606407', 2, 'cabf42e197a6a7f222db0f1978c7cb232b87c5ee', '0123456789012345678901234567892c', NULL);
900-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (51, '2006-07-14 16:41:34.028627', 716, '86d537a0d8b5b346d02752a853cc6ea648a0ebd7', 'eeb4c1e00a2e17a1eb51bd8b92fa5437', NULL);
901-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (52, '2006-05-24 09:31:29.606407', 2, '1622db354faa9fa653804d018f3b9d5291e37d6b', 'e4a7193a8f72fa2755e2162512069093', NULL);
902-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (53, '2006-12-01 16:41:34.028627', 716, '86d537a0d8b5b346d02752a853cc6ea648a0ebd7', 'eeb4c1e00a2e17a1eb51bd8b92fa5437', NULL);
903-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (54, '2006-12-01 16:41:34.028627', 716, '86d537a0d8b5b346d02752a853cc6ea648a0ebd7', 'eeb4c1e00a2e17a1eb51bd8b92fa5438', NULL);
904-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (55, '2006-12-01 16:41:34.028627', 716, '86d537a0d8b5b346d02752a853cc6ea648a0ebd7', 'eeb4c1e00a2e17a1eb51bd8b92fa5439', NULL);
905-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (56, '2006-12-01 16:41:34.028627', 716, '86d537a0d8b5b346d02752a853cc6ea648a0ebd7', 'eeb4c1e00a2e17a1eb51bd8b92fa5440', NULL);
906-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (57, '2006-12-13 21:17:56.241901', 1599, 'acdf6b9b99c39b1585f829ec7d68598a8e10816d', '5c6fa250b612e7e4d17261268a4d8400', NULL);
907-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (58, '2006-12-13 21:18:28.796588', 1599, 'acdf6b9b99c39b1585f829ec7d68598a8e10816d', '5c6fa250b612e7e4d17261268a4d8401', NULL);
908-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (59, '2006-05-24 09:31:29.606407', 2, 'fabb42e197a6a7f222db0f1978c7cb232b87c5ee', '0123456789012345678901234567892d', NULL);
909-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (60, '2007-01-03 17:26:27.288968', 11793, 'df3a6670671781d5e08d7795ca1ada776815d87f', 'e8120781cd606202fd259a4f0d4585bb', NULL);
910-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (61, '2007-02-15 14:26:27.288968', 100, 'df3a6670671781d5e08d7795ca1ada776815d87f', 'e8120781cd606202fd259a4f0d4585b1', NULL);
911-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (62, '2007-05-14 23:21:11.121446', 123, 'd06b970f258e57547ef1104fba3499eb4ab43ff6', '767e1635f55ff5e833410523decec438', NULL);
912-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (63, '2007-05-14 23:21:11.121446', 123, 'd06b970f258e57547ef1104fba3499eb4ab43ff6', '767e1635f55ff5e833410523decec438', NULL);
913-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (65, '2007-08-09 21:25:37.832976', 958, 'df4adf483eb24fec455e8411ca3dceb0bee51b44', 'b85b447f88c326c4124f0554e175097f', NULL);
914-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (66, '2007-08-09 21:25:37.832976', 179, '3e00fea68e91f6e03de6333b4c8e60c2ce441926', 'f27fb7494c5afbb0fb10b78d16f7da37', NULL);
915-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (67, '2007-08-09 21:25:37.832976', 610, '01bedc249af59cb80abb40b4898eced10f5d5e20', '7d6fa416334c6da3b954bf9ebff6e9ae', NULL);
916-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (68, '2007-08-09 21:25:37.832976', 567, 'b5aeb55faeb86a1d8c1a93dd58131b387a604c5a', '95f2b067e046d73f4e93eca44c034b97', NULL);
917-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (69, '2007-08-09 21:54:18.456616', 749, '0526ef40da99af5c1c97c91f9aca77e7ae564838', '8afa3dbc21b2dcdad7f31ab28c041ad9', NULL);
918-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (70, '2007-08-09 21:54:18.456616', 652, '0ce85c0cf331d05f76aa4977c43e87e9ffbd0480', '05a37db4ba50ba5f28650ee74b450c2c', NULL);
919-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (71, '2007-09-10 19:14:26.037382', 22897, 'd7ebed9e00fc134ebc79eaf7deebb30a4f5f6859', '0113f983ff8beba46ad64c4ae8899091', NULL);
920-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (72, '2007-09-10 19:15:01.67038', 221, '0ddef36534d59da64790eeffa55cc0221a01736d', 'df6ce34951747929ca9c6a4e2cb78f94', NULL);
921-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (73, '2007-09-10 19:15:19.947543', 217, 'ea265925f6214628dc46e731ca1e131f1e632127', '9d19d15feffc620c0d16523e0ce00a54', NULL);
922-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (74, '2007-09-10 19:16:01.017943', 22899, '234acbb3dc11b2af9bc46b6e33f0e453c3b1289d', '6d2d916ea729bc875ca0bd739f6be476', NULL);
923-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (75, '2007-12-18 16:31:34.790641', 4296, 'e8b25389964bc3bd471c20a1508d00852ee7de40', 'e6b759498b7cde49e9d34e7b8c8b4542', NULL);
924-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (76, '2007-12-18 16:31:34.790641', 2103, 'c154e1c1c2407d9b80c96b63c48d61a94248bf95', 'd86630cafdf624a3aa32aba0c41078c5', NULL);
925-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (77, '2007-12-18 16:31:34.790641', 2787, '2d94c4a6a014895f93b581fb0134efe73ae4e2c8', '315ef57e5f6ad295e98db65607c5c18a', NULL);
926-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (78, '2007-12-18 16:31:34.790641', 3534, '2bd22db53f2b9e47df50ed731128ff1fc54a5775', 'e0d510b49f803a0a4c2b2712d0a80522', NULL);
927-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (79, '2007-12-18 16:31:34.790641', 3327, 'a57356e4cbf97bbb47df202449a95d909d50614a', '8c5ffb558a0d0f520887f3d4cbd619c5', NULL);
928-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (80, '2007-12-18 16:31:34.790641', 189, '9800f54c65017e1bafe2d09a13af6176ba0ab244', 'a94677aabcd34b0901f1f75a35f7dff3', NULL);
929-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (81, '2007-12-18 16:31:34.790641', 2926, 'b53bb11bc40c42b0f9ecd981561fe9d6f265b275', '496cf1cbb97c17a67998478402520ab5', NULL);
930-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (82, '2008-03-17 15:36:19.035615', 18, '0c805a60b31058a1018680f99447033dcb9d4cf8', '8a8a67b8dbc5f203ae8712092c68c780', NULL);
931-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (83, '2008-03-17 15:36:38.022812', 18, '0c805a60b31058a1018680f99447033dcb9d4cf8', '8a8a67b8dbc5f203ae8712092c68c780', NULL);
932-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (84, '2008-03-17 15:36:48.877842', 3, '55ca6286e3e4f4fba5d0448333fa99fc5a404a73', '764efa883dda1e11db47671c4a3bbd9e', NULL);
933-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (85, '2008-03-17 15:37:10.252357', 18, '0c805a60b31058a1018680f99447033dcb9d4cf8', '8a8a67b8dbc5f203ae8712092c68c780', NULL);
934-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (86, '2008-03-17 15:37:22.489973', 18, '0c805a60b31058a1018680f99447033dcb9d4cf8', '8a8a67b8dbc5f203ae8712092c68c780', NULL);
935-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (87, '2008-03-17 15:37:36.701686', 18, '0c805a60b31058a1018680f99447033dcb9d4cf8', '8a8a67b8dbc5f203ae8712092c68c780', NULL);
936-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (88, '2008-03-17 15:37:48.465157', 3, '55ca6286e3e4f4fba5d0448333fa99fc5a404a73', '764efa883dda1e11db47671c4a3bbd9e', NULL);
937-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (89, '2008-03-17 15:38:16.866444', 18, '0c805a60b31058a1018680f99447033dcb9d4cf8', '8a8a67b8dbc5f203ae8712092c68c780', NULL);
938-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (90, '2008-05-08 10:10:16.866444', 18, '0c805a60b31058a1018680f99447033dcb9d4caa', '8a8a67b8dbc5f203ae8712092c68c7aa', NULL);
939-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (91, '2008-07-07 22:30:01.123456', 10, '0c805a60b31058a1018680f99447033dcb9d4c01', '8a8a67b8dbc5f203ae8712092c68c701', NULL);
940-INSERT INTO libraryfilecontent (id, datecreated, filesize, sha1, md5, sha256) VALUES (92, '2008-09-30 08:19:00.222131', 10, 'f10e2821bbbea527ea02200352313bc059445190', '7815696ecbf1c96e6894b779456d330e', NULL);
941-
942-
943-ALTER TABLE libraryfilecontent ENABLE TRIGGER ALL;
944-
945-
946-ALTER TABLE libraryfilealias DISABLE TRIGGER ALL;
947-
948-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (1, 1, 'netapplet-1.0.0.tar.gz', 'application/x-gtar', NULL, '2005-11-17 16:15:32.440132', '2005-04-07 16:46:05.265391', false, 0);
949-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (2, 1, 'netapplet_1.0.0.orig.tar.gz', 'application/x-gtar', NULL, '2005-11-17 16:15:32.440132', '2005-04-07 16:46:05.265391', false, 0);
950-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (3, 2, 'firefox_0.9.2.orig.tar.gz', 'application/x-gtar', NULL, '2005-11-17 16:15:32.440132', '2005-04-07 16:46:05.266763', false, 0);
951-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (4, 3, 'evolution-1.0.tar.gz', 'application/x-gtar', NULL, '2005-11-17 16:15:32.440132', '2005-04-07 16:46:05.26727', false, 0);
952-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (5, 5, 'netapplet.pot', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
953-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (6, 6, 'pmount.pot', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
954-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (7, 7, 'evolution-2.2.pot', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
955-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (8, 8, 'evolution-2.2.pot', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
956-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (9, 9, 'pkgconf-mozilla.pot', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
957-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (10, 10, 'hr.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
958-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (11, 11, 'ca.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
959-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (12, 12, 'nb.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
960-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (13, 13, 'cs.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
961-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (14, 14, 'es_ES.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
962-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (15, 15, 'de.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
963-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (16, 16, 'fr.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
964-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (17, 17, 'it_IT.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
965-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (18, 18, 'es.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
966-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (19, 19, 'fr.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
967-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (20, 20, 'pt_BR.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
968-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (21, 21, 'ja.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
969-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (22, 22, 'es.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
970-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (23, 23, 'nl.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
971-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (24, 24, 'cs.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
972-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (25, 25, 'da.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
973-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (26, 26, 'fi.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
974-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (27, 27, 'gl.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
975-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (28, 28, 'lt.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
976-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (29, 29, 'it.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
977-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (30, 30, 'tr.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
978-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (31, 31, 'de.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
979-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (32, 32, 'es.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
980-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (33, 33, 'es.po', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-05-18 08:03:28.021862', false, 0);
981-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (34, 34, 'evolution-2.2-test.pot', 'application/x-po', NULL, '2005-11-17 16:15:32.440132', '2005-08-10 09:31:29.606407', false, 0);
982-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (35, 35, 'Ubuntu-High-Pri-2005-08-01.csv', 'text/plain', NULL, '2005-11-17 16:15:32.440132', '2005-08-01 09:31:29.606407', false, 0);
983-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (36, NULL, 'foo.txt', 'text/plain', NULL, '2005-11-17 16:15:32.440132', '2005-10-30 18:00:27.899028', false, 0);
984-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (37, 37, 'pmount_1.9-1_all.deb', 'application/x-debian-package', NULL, '2005-11-17 16:15:32.440132', '2005-10-30 18:00:27.899028', false, 0);
985-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (38, 38, 'alsa-utils_1.0.9a-4.dsc', 'application/dsc', NULL, '2005-11-17 16:15:32.440132', '2005-10-30 18:00:27.899028', false, 0);
986-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (39, 39, 'alsa-utils_1.0.8-1ubuntu1.dsc', 'application/dsc', NULL, '2005-11-17 16:15:32.440132', '2005-10-30 18:00:27.899028', false, 0);
987-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (40, 40, 'mozilla-firefox_0.9_i386.deb', 'application/x-debian-package', NULL, '2005-11-17 16:15:32.440132', '2005-10-30 18:00:27.899028', false, 0);
988-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (42, 42, 'linux-2.6.12_2.6.12.20_i386.deb', 'application/x-debian-package', NULL, '2005-11-17 16:15:32.440132', '2005-10-30 18:00:27.899028', false, 0);
989-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (43, 43, 'alsa-utils_1.0.9a-4ubuntu1.dsc', 'application/x-debian-package', NULL, '2005-11-17 16:15:32.440132', '2005-10-30 18:00:27.899028', false, 0);
990-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (44, 44, 'at-3.14156_all.udeb', 'application/x-debian-package', NULL, '2005-11-17 16:15:32.440132', '2005-10-30 18:00:27.899028', false, 0);
991-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (45, 45, 'Ubuntu-High-Pri-2006-08-01.csv', 'text/plain', NULL, '2005-11-17 16:15:32.440132', '2006-08-01 09:31:29.606407', false, 0);
992-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (46, 46, 'non-existent-mirrorprober-logfile.txt', 'text/plain', NULL, '2006-05-24 16:15:32.440132', '2006-05-24 09:31:29.606407', false, 0);
993-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (47, 47, 'non-existent-mirrorprober-logfile.txt', 'text/plain', NULL, '2006-05-24 16:15:32.440132', '2006-05-24 09:31:29.606407', false, 0);
994-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (51, 51, 'x4cWPgneBxsZOM21ZzpRPxsZXod.msg', 'message/rfc822', NULL, '2006-07-14 16:41:34.028627', '2006-07-14 16:41:34.028627', false, 0);
995-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (52, 52, 'mozilla-firefox_0.9_i386.changes', 'text/plain', NULL, '2006-07-31 15:41:34.028627', '2006-05-24 09:31:29.606407', false, 0);
996-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (53, 53, 'cdrkit-1.0.dsc', 'application/dsc', NULL, '2006-12-01 15:41:34.028627', '2006-12-01 16:41:34.028627', false, 0);
997-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (54, 54, 'foobar-1.0.dsc', 'application/dsc', NULL, '2006-12-01 15:41:34.028627', '2006-12-01 16:41:34.028627', false, 0);
998-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (55, 55, 'cdrkit_1.0_all.deb', 'application/deb', NULL, '2006-12-01 15:41:34.028627', '2006-12-01 16:41:34.028627', false, 0);
999-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (56, 56, 'foobar_1.0_all.deb', 'application/deb', NULL, '2006-12-01 15:41:34.028627', '2006-12-01 16:41:34.028627', false, 0);
1000-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (57, 57, 'evolution-2.2-test.pot', 'application/x-po', NULL, '2006-12-13 21:17:56.241901', '2006-12-13 21:17:56.241901', false, 0);
1001-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (58, 58, 'pt_BR.po', 'application/x-po', NULL, '2006-12-13 21:18:28.796588', '2006-12-13 21:18:28.796588', false, 0);
1002-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (59, 59, 'salgado-mugshot.jpg', 'image/jpeg', NULL, '2006-07-31 15:41:34.028627', '2006-05-24 09:31:29.606407', false, 0);
1003-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (60, 60, 'es.po', 'application/x-po', NULL, '2007-01-03 17:26:27.288968', '2007-01-03 17:26:27.288968', false, 0);
1004-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (61, 61, 'language-pack-ar_1.0.dsc', 'application/dsc', NULL, '2007-02-15 14:26:27.288968', '2007-02-15 14:26:27.288968', false, 0);
1005-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (62, 62, 'iceweasel-1.0.dsc', 'application/dsc', NULL, '2007-05-14 23:21:11.121446', '2007-05-14 23:21:11.121446', false, 0);
1006-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (63, 63, 'hwsubmission1.xml', 'text/xml', NULL, '2007-05-14 23:21:11.121446', '2007-05-14 23:21:11.121446', false, 0);
1007-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (65, 65, 'commercialpackage_1.0-1_source.changes', 'text/plain', NULL, '2007-08-09 21:25:37.832976', '2007-08-09 21:25:37.832976', false, 0);
1008-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (66, 66, 'commercialpackage_1.0.orig.tar.gz', 'application/gzipped-tar', NULL, '2007-08-09 21:25:37.832976', '2007-08-09 21:25:37.832976', false, 0);
1009-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (67, 67, 'commercialpackage_1.0-1.diff.gz', 'application/gzipped-patch', NULL, '2007-08-09 21:25:37.832976', '2007-08-09 21:25:37.832976', false, 0);
1010-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (68, 68, 'commercialpackage_1.0-1.dsc', 'text/x-debian-source-package', NULL, '2007-08-09 21:25:37.832976', '2007-08-09 21:25:37.832976', false, 0);
1011-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (69, 69, 'commercialpackage_1.0-1_i386.changes', 'text/plain', NULL, '2007-08-09 21:54:18.456616', '2007-08-09 21:54:18.456616', false, 0);
1012-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (70, 70, 'commercialpackage_1.0-1_i386.deb', 'application/x-debian-package', NULL, '2007-08-09 21:54:18.456616', '2007-08-09 21:54:18.456616', false, 0);
1013-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (71, 71, 'ubuntu-hoary-translations.tar.gz', 'application/x-gtar', NULL, '2007-09-10 19:14:26.037382', '2007-09-10 19:14:26.037382', false, 0);
1014-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (72, 72, 'ubuntu-hoary-translations-update.tar.gz', 'application/x-gtar', NULL, '2007-09-10 19:15:01.67038', '2007-09-10 19:15:01.67038', false, 0);
1015-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (73, 73, 'ubuntu-hoary-translations-update.tar.gz', 'application/x-gtar', NULL, '2007-09-10 19:15:19.947543', '2007-09-10 19:15:19.947543', false, 0);
1016-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (74, 74, 'ubuntu-hoary-translations.tar.gz', 'application/x-gtar', NULL, '2007-09-10 19:16:01.017943', '2007-09-10 19:16:01.017943', false, 0);
1017-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (75, 75, 'cX0Ey6rIIK5MqHphucFPna1fQMt.msg', 'message/rfc822', NULL, '2007-12-18 16:31:34.790641', '2007-12-18 16:31:34.790641', false, 0);
1018-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (76, 76, 'nSpn1l12p7HBplm6e7kaaX6lf86.msg', 'message/rfc822', NULL, '2007-12-18 16:31:34.790641', '2007-12-18 16:31:34.790641', false, 0);
1019-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (77, 77, 'evJ9qHEN3ufdtsDUnGPb8a5hs77.msg', 'message/rfc822', NULL, '2007-12-18 16:31:34.790641', '2007-12-18 16:31:34.790641', false, 0);
1020-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (78, 78, 'jqUQpLymm7f9DjBAAsQoM10WndS.msg', 'message/rfc822', NULL, '2007-12-18 16:31:34.790641', '2007-12-18 16:31:34.790641', false, 0);
1021-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (79, 79, '378cZyfOfUKx6BySEK0HYKz4Tpd.msg', 'message/rfc822', NULL, '2007-12-18 16:31:34.790641', '2007-12-18 16:31:34.790641', false, 0);
1022-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (80, 80, 'unnamed', 'application/pgp-signature; name="signature.asc"', NULL, '2007-12-18 16:31:34.790641', '2007-12-18 16:31:34.790641', false, 0);
1023-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (81, 81, 'jm81HhLQDRDAsqbl74W7GT3cpel.msg', 'message/rfc822', NULL, '2007-12-18 16:31:34.790641', '2007-12-18 16:31:34.790641', false, 0);
1024-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (82, 82, 'alsa-1.0.9a.exe', 'application/x-msdos-program', NULL, '2008-03-17 15:36:19.035615', '2008-03-17 15:36:19.035615', false, 0);
1025-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (83, 83, 'alsa-1.0.9a.dmg', 'application/x-apple-diskimage', NULL, '2008-03-17 15:36:38.022812', '2008-03-17 15:36:38.022812', false, 0);
1026-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (84, 84, 'README.txt', 'text/plain', NULL, '2008-03-17 15:36:48.877842', '2008-03-17 15:36:48.877842', false, 0);
1027-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (85, 85, 'alsa-1.0.8.exe', 'application/x-msdos-program', NULL, '2008-03-17 15:37:10.252357', '2008-03-17 15:37:10.252357', false, 0);
1028-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (86, 86, 'alsa-1.0.8.dmg', 'application/x-apple-diskimage', NULL, '2008-03-17 15:37:22.489973', '2008-03-17 15:37:22.489973', false, 0);
1029-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (87, 87, 'alsa-1.0.8.tgz', 'application/x-tar', NULL, '2008-03-17 15:37:36.701686', '2008-03-17 15:37:36.701686', false, 0);
1030-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (88, 88, 'README.txt', 'text/plain', NULL, '2008-03-17 15:37:48.465157', '2008-03-17 15:37:48.465157', false, 0);
1031-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (89, 89, 'alsa-1.0.9a.tgz', 'application/x-tar', NULL, '2008-03-17 15:38:16.866444', '2008-03-17 15:38:16.866444', false, 0);
1032-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (90, 90, 'pmount_1.0-1_all.deb', 'application/x-debian-package', NULL, '2008-05-08 10:15:32.440132', '2008-05-08 10:10:27.899028', false, 0);
1033-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (91, 91, 'upload_22_log.txt', 'application/text', NULL, '2008-07-07 22:30:01.123456', '2008-07-07 22:30:01.123456', false, 0);
1034-INSERT INTO libraryfilealias (id, content, filename, mimetype, expires, last_accessed, date_created, restricted, hits) VALUES (92, 92, 'sample-submission-2.xml', 'application/x-bzip2', NULL, '2008-09-30 08:19:00.222131', '2008-09-30 08:19:00.222131', false, 0);
1035-
1036-
1037-ALTER TABLE libraryfilealias ENABLE TRIGGER ALL;
1038-
1039-
1040-ALTER TABLE person DISABLE TRIGGER ALL;
1041-
1042-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (1, 'Mark Shuttleworth', NULL, NULL, 'mark', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.591618', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 11);
1043-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (2, 'Robert Collins', NULL, NULL, 'lifeless', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.598107', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 21);
1044-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (3, 'Dave Miller', NULL, NULL, 'justdave', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.610048', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 1, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 31);
1045-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (4, 'Colin Watson', NULL, NULL, 'kamion', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.611185', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 41);
1046-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (5, 'Scott James Remnant', NULL, NULL, 'keybuk', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.608802', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 1, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 51);
1047-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (6, 'Jeff Waugh', NULL, NULL, 'jdub', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.600523', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 61);
1048-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (7, 'Andrew Bennetts', NULL, NULL, 'spiv', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.551196', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 2, 'when importing bugs from http://bugzilla.ubuntu.com/', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 71);
1049-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (8, 'James Blackwell', NULL, NULL, 'jblack', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.601584', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 81);
1050-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (9, 'Christian Reis', NULL, NULL, 'kiko', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.594941', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 1, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 91);
1051-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (10, 'Alexander Limi', NULL, NULL, 'limi', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.619713', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 2, 'when importing bugs from http://bugzilla.ubuntu.com/', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 101);
1052-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (11, 'Steve Alexander', NULL, NULL, 'stevea', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.599234', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 111);
1053-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (12, 'Sample Person', NULL, NULL, 'name12', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.612277', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 121);
1054-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (13, 'Carlos Perelló Marín', NULL, NULL, 'carlos', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.615543', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 131);
1055-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (14, 'Dafydd Harries', NULL, NULL, 'daf', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.616666', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 141);
1056-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (16, 'Foo Bar', NULL, NULL, 'name16', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.593849', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 161);
1057-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (17, 'Ubuntu Team', 1, 'This Team is responsible for the Ubuntu Distribution', 'ubuntu-team', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.60576', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1058-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (18, 'Ubuntu Gnome Team', 1, 'This Team is responsible for the GNOME releases Issues on whole Ubuntu Distribution', 'name18', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.607744', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1059-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (19, 'Warty Gnome Team', 1, 'This Team is responsible for GNOME release Issues on Warty Distribution Release', 'warty-gnome', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.602661', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1060-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (20, 'Warty Security Team', 1, 'This Team is responsible for Security Issues on Warty Distribution Release', 'name20', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.614468', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1061-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (21, 'Hoary Gnome Team', 1, 'This team is responsible for Security Issues on Hoary Distribution Release', 'name21', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.603691', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1062-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (22, 'Stuart Bishop', NULL, NULL, 'stub', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.59276', 'Somewhere', 'in this world', 'Something', 'whatever', 'not mandatory', 75, '999432423', '+55 16 3374-2027', NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 221);
1063-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (23, 'David Allouche', NULL, NULL, 'ddaa', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.620823', 'Somewhere', 'in this world', 'Something', 'whatever', 'not mandatory', 35, '999432423', '+55 16 3374-2027', NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, 231);
1064-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (24, 'VCS imports', 2, 'Owner of branches imported from non-bzr VCS', 'vcs-imports', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.604746', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1065-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (25, 'Launchpad Administrators', 1, 'Launchpad Administrators', 'admins', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.571899', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1066-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (26, 'Daniel Silverstone', NULL, NULL, 'kinnison', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.618722', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 2, 'when importing bugs from http://bugzilla.ubuntu.com/', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 261);
1067-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (27, 'Daniel Henrique Debonzi', NULL, NULL, 'debonzi', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.557224', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 271);
1068-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (28, 'Celso Providelo', NULL, NULL, 'cprov', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.59705', 'Somewhere', 'in this world', 'Something', 'whatever', 'not mandatory', 75, '999432423', '+55 16 3374-2027', NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 281);
1069-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (29, 'Guilherme Salgado', NULL, NULL, 'salgado', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.596025', 'Somewhere', 'in this world', 'Something', 'whatever', 'not mandatory', 75, '999432423', '+55 16 3374-2027', NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 291);
1070-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (30, 'Rosetta Administrators', 25, 'Rosetta Administrators', 'rosetta-admins', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.613368', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1071-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (31, 'Ubuntu Translators', 30, 'Ubuntu Translators', 'ubuntu-translators', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.617651', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1072-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (32, 'GuadaMen', 16, 'The guadalinex maintainers team', 'guadamen', NULL, NULL, 700, 300, 1, NULL, '2005-06-06 08:59:51.606755', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1073-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (33, 'Edgar Bursic', NULL, NULL, 'edgar', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.621892', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 331);
1074-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (34, 'Jordi Vilalta', NULL, NULL, 'jvprat', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.622908', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Catalan (ca) translation of pmount in Ubuntu Hoary package "pmount"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 341);
1075-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (35, 'Sigurd Gartmann', NULL, NULL, 'sigurd-ubuntu', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.623962', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Norwegian Bokmål (nb) translation of pmount in Ubuntu Hoary package "pmount"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 351);
1076-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (36, 'Vlastimil Skacel', NULL, NULL, 'skacel', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.5244', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Czech (cs) translation of pmount in Ubuntu Hoary package "pmount"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 361);
1077-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (37, 'Daniel Aguayo', NULL, NULL, 'danner', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.549651', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 371);
1078-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (38, 'Martin Pitt', NULL, NULL, 'martin-pitt', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.555051', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the German (de) translation of pmount in Ubuntu Hoary package "pmount"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 381);
1079-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (39, 'Nicolas Velin', NULL, NULL, 'nsv', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.556132', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the French (fr) translation of pmount in Ubuntu Hoary package "pmount"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 391);
1080-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (40, 'Francesco Accattapà', NULL, NULL, 'callipeo', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.558429', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Italian (Italy) (it_IT) translation of pmount in Ubuntu Hoary package "pmount"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 401);
1081-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (41, 'Aloriel', NULL, NULL, 'jorge-gonzalez-gonzalez', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.559519', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Spanish (es) translation of pmount in Ubuntu Hoary package "pmount"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 411);
1082-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (42, 'Denis Barbier', NULL, NULL, 'barbier', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.560604', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the French (fr) translation of pkgconf-mozilla in Ubuntu Hoary package "mozilla"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 421);
1083-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (43, 'André Luís Lopes', NULL, NULL, 'andrelop', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.561685', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Portuguese (Brazil) (pt_BR) translation of pkgconf-mozilla in Ubuntu Hoary package "mozilla"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 431);
1084-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (44, 'Carlos Valdivia Yagüe', NULL, NULL, 'valyag', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.562857', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Spanish (es) translation of pkgconf-mozilla in Ubuntu Hoary package "mozilla"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 441);
1085-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (45, 'Luk Claes', NULL, NULL, 'luk-claes', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.563952', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Dutch (nl) translation of pkgconf-mozilla in Ubuntu Hoary package "mozilla"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 451);
1086-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (46, 'Miroslav Kure', NULL, NULL, 'kurem', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.565033', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 461);
1087-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (47, 'Morten Brix Pedersen', NULL, NULL, 'morten', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.56614', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Danish (da) translation of pkgconf-mozilla in Ubuntu Hoary package "mozilla"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 471);
1088-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (48, 'Matti Pöllä', NULL, NULL, 'mpo', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.567224', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Finnish (fi) translation of pkgconf-mozilla in Ubuntu Hoary package "mozilla"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 481);
1089-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (49, 'Kęstutis Biliūnas', NULL, NULL, 'kebil', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.568323', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Lithuanian (lt) translation of pkgconf-mozilla in Ubuntu Hoary package "mozilla"', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 491);
1090-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (50, 'Valentina Commissari', NULL, NULL, 'tsukimi', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.569518', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 501);
1091-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (51, 'Helge Kreutzmann', NULL, NULL, 'kreutzm', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.570701', 'Somewhere', 'in this world', 'Something', 'whatever', 'not mandatory', 25, '999432423', '+55 16 3374-2027', NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 511);
1092-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (52, 'No Privileges Person', NULL, NULL, 'no-priv', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.593849', 'Somewhere', 'in this world', 'Something', 'whatever', 'not mandatory', 95, '999432423', '+55 16 3374-2027', NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 521);
1093-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (53, 'testing Spanish team', 13, NULL, 'testing-spanish-team', NULL, NULL, NULL, NULL, 1, NULL, '2005-07-12 14:32:01.84779', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1094-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (55, 'Marilize Coetzee', NULL, NULL, 'marilize', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.593849', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 551);
1095-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (56, 'Jordi Mallach', NULL, NULL, 'jordi', NULL, NULL, NULL, NULL, 1, NULL, '2005-10-07 14:17:51.593849', 'Somewhere', 'in this world', 'Something', 'whatever', 'not mandatory', 95, '999432423', '+55 16 3374-2027', NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 561);
1096-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (57, 'Launchpad Developers', 16, 'Launchpad developers', 'launchpad', NULL, NULL, NULL, NULL, 3, NULL, '2005-10-13 13:03:41.668724', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1097-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (58, 'Bug Importer', NULL, NULL, 'bug-importer', NULL, NULL, NULL, NULL, 1, NULL, '2005-12-06 09:48:58.287679', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 581);
1098-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (59, 'Mirror Administrators', 1, 'Mirror Administrators', 'ubuntu-mirror-admins', NULL, NULL, NULL, NULL, 1, NULL, '2005-06-06 08:59:51.571899', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1099-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (60, 'Registry Administrators', 1, 'Launchpad Registry Administrators Team', 'registry', NULL, NULL, NULL, NULL, 1, NULL, '2006-04-06 10:17:11.833824', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1100-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (61, 'Launchpad Buildd Admins', 16, 'Buildd System administrators', 'launchpad-buildd-admins', NULL, NULL, NULL, NULL, 1, NULL, '2006-05-15 22:23:29.062603', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1101-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (62, 'Bug Watch Updater', NULL, NULL, 'bug-watch-updater', NULL, NULL, NULL, NULL, 1, NULL, '2006-05-23 12:49:30.483464', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, 1, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 621);
1102-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (63, 'Karl Tilbury', NULL, NULL, 'karl', NULL, NULL, NULL, NULL, 1, NULL, '2006-05-23 12:49:30.483464', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 631);
1103-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (64, 'Landscape Developers', 12, NULL, 'landscape-developers', NULL, NULL, NULL, NULL, 1, NULL, '2006-07-11 20:01:09.874128', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1104-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (65, 'Launchpad Janitor', NULL, NULL, 'janitor', NULL, NULL, NULL, NULL, 1, NULL, '2006-10-04 16:20:51.19954', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, 1, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 651);
1105-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (66, 'Diogo Matsubara', NULL, NULL, 'matsubara', NULL, NULL, NULL, NULL, 1, NULL, '2006-12-13 21:19:06.369142', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 4, 'when importing the Portuguese (Brazil) (pt_BR) translation of evolution-2.2-test in Evolution trunk', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 661);
1106-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (67, 'Team Membership Janitor', NULL, NULL, 'team-membership-janitor', NULL, NULL, NULL, NULL, 1, NULL, '2006-10-04 16:20:51.19954', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, 1, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 671);
1107-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (68, 'Launchpad Beta Testers Owner', NULL, NULL, 'launchpad-beta-owner', NULL, NULL, NULL, NULL, 1, NULL, '2007-01-31 06:56:25.096519', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 681);
1108-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (69, 'Launchpad Beta Testers', 68, 'People who are testing the new Launchpad "beta" UI.', 'launchpad-beta-testers', NULL, NULL, NULL, NULL, 1, NULL, '2007-01-31 06:57:54.592917', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1109-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (70, 'Former User', NULL, NULL, 'former-user-deactivatedaccount', NULL, NULL, NULL, NULL, 1, NULL, '2006-12-13 21:19:06.369142', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, 2, 'when importing bugs from http://bugzilla.gnome.org/', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 701);
1110-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243601, 'ShipIt Administrators', 1, 'ShipIt Administrators', 'shipit-admins', NULL, NULL, NULL, NULL, 1, NULL, '2007-02-05 06:24:03.06971', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1111-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243602, 'No Team Memberships', NULL, NULL, 'no-team-memberships', NULL, NULL, NULL, NULL, 1, NULL, '2007-02-19 11:17:57.755666', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 2436021);
1112-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243603, 'One Membership', NULL, NULL, 'one-membership', NULL, NULL, NULL, NULL, 1, NULL, '2007-02-21 10:53:59.700105', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 2436031);
1113-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243604, 'Simple Team', 243603, 'This team should have only one member, the "One Membership" user.', 'simple-team', NULL, NULL, NULL, NULL, 3, NULL, '2007-02-21 10:55:03.899255', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1114-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243606, 'Julian Edwards', NULL, NULL, 'launchpad-julian-edwards', NULL, NULL, NULL, NULL, 1, NULL, '2007-08-09 21:25:37.832976', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 7, 'when the commercialpackage_1.0-1 package was uploaded to breezy-autotest/RELEASE', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 2436061);
1115-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243607, 'Mailing List Experts', 25, 'This team is responsible for the management of Launchpad-hosted mailing lists.', 'mailing-list-experts', NULL, NULL, NULL, NULL, 3, NULL, '2007-10-04 19:59:03.615674', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1116-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243608, 'Ubuntu Doc Team', NULL, NULL, 'doc', NULL, NULL, NULL, NULL, 1, NULL, '2007-11-12 15:23:19.847132', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 3, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 2436081);
1117-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243609, 'Katie', NULL, NULL, 'katie', NULL, NULL, NULL, NULL, 1, NULL, '2007-12-07 13:43:20.393704', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 2436091);
1118-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243610, 'Gold Member', NULL, NULL, 'member', NULL, NULL, NULL, NULL, 1, NULL, '2007-12-14 16:52:15.403833', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 1, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 2436101);
1119-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243611, 'Owner', NULL, NULL, 'owner', NULL, NULL, NULL, NULL, 1, NULL, '2007-12-14 16:52:15.403833', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 1, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 2436111);
1120-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243612, 'My Team', 243611, NULL, 'myteam', NULL, NULL, NULL, NULL, 1, NULL, '2007-12-14 16:52:15.403833', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 20, false, NULL);
1121-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243613, 'Other Team', 243611, NULL, 'otherteam', NULL, NULL, NULL, NULL, 1, NULL, '2007-12-14 16:52:15.403833', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, false, NULL);
1122-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243614, 'josh', NULL, NULL, 'jbuhl-nospam', NULL, NULL, NULL, NULL, 1, NULL, '2007-12-18 16:31:34.790641', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 15, 'when the comments for debbugs #308994 were imported into Launchpad.', 62, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 2436141);
1123-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243615, 'Sjoerd Simons', NULL, NULL, 'sjoerd', NULL, NULL, NULL, NULL, 1, NULL, '2007-12-18 16:31:34.790641', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 15, 'when the comments for debbugs #308994 were imported into Launchpad.', 62, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 2436151);
1124-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243616, 'Martin Pitt', NULL, NULL, 'mpitt', NULL, NULL, NULL, NULL, 1, NULL, '2007-12-18 16:31:34.790641', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 15, 'when the comments for debbugs #308994 were imported into Launchpad.', 62, NULL, 10, 0, NULL, NULL, 1, true, 1, false, 2436161);
1125-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243617, 'Tim Penhey', NULL, NULL, 'dumper', NULL, NULL, NULL, NULL, 1, NULL, '2008-03-06 09:55:27.289842', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 1, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, 2436171);
1126-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243618, 'Bazaar Experts', 243617, 'This team is responsible for the management of Bazaar branches in Launchpad.', 'bazaar-experts', NULL, NULL, NULL, NULL, 3, NULL, '2008-03-06 09:57:59.957489', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, NULL);
1127-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243620, 'Canonical Partner Developers', 28, NULL, 'canonical-partner-dev', NULL, NULL, NULL, NULL, 2, NULL, '2008-05-14 10:29:17.539543', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, NULL);
1128-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243621, 'Commercial Subscription Admins', 243622, NULL, 'commercial-admins', NULL, NULL, NULL, NULL, 3, NULL, '2008-04-21 21:29:56.881698', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, NULL);
1129-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243622, 'Commercial Member', NULL, NULL, 'commercial-member', NULL, NULL, NULL, NULL, 1, NULL, '2008-05-12 17:38:38.798696', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, 2436221);
1130-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243623, 'Brad Crittenden', NULL, NULL, 'bac', NULL, NULL, NULL, NULL, 1, NULL, '2008-06-27 14:49:11.149508', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 8, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, 2436231);
1131-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243624, 'Commercial Subscription Approvers', 243623, NULL, 'commercial-approvers', NULL, NULL, NULL, NULL, 1, NULL, '2008-06-27 14:49:38.676264', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, NULL);
1132-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243625, 'PPA key guard', NULL, NULL, 'ppa-key-guard', NULL, NULL, NULL, NULL, 1, NULL, '2008-11-04 12:59:26.965843', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, 1, '', NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, 2436241);
1133-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243626, 'Launchpad Users', 12, NULL, 'launchpad-users', NULL, NULL, NULL, NULL, 2, NULL, '2008-11-26 18:19:53.547918', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, NULL);
1134-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243627, 'Ubuntu-branches-owner', NULL, NULL, 'ubuntu-branches-owner', NULL, NULL, NULL, NULL, 1, NULL, '2009-03-17 07:26:14.024613', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 1, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, 2436242);
1135-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243628, 'Ubuntu branches', 243627, 'Celebrity team that controls official source package branches.', 'ubuntu-branches', NULL, NULL, NULL, NULL, 3, NULL, '2009-03-17 07:27:39.306182', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, NULL);
1136-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243629, 'Ubuntu Security Team', 4, NULL, 'ubuntu-security', NULL, NULL, NULL, NULL, 2, NULL, '2009-07-14 20:23:59.698654', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, NULL);
1137-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243630, 'HWDB Team', 16, NULL, 'hwdb-team', NULL, NULL, NULL, NULL, 3, NULL, '2009-07-09 09:12:39.400351', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, NULL);
1138-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243631, 'Techboard Owner', NULL, NULL, 'techboard-owner', NULL, NULL, NULL, NULL, 1, NULL, '2009-08-04 10:50:39.370018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, 1, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, 2436243);
1139-INSERT INTO person (id, displayname, teamowner, teamdescription, name, language, fti, defaultmembershipperiod, defaultrenewalperiod, subscriptionpolicy, merged, datecreated, addressline1, addressline2, organization, city, province, country, postcode, phone, homepage_content, icon, mugshot, hide_email_addresses, creation_rationale, creation_comment, registrant, logo, renewal_policy, personal_standing, personal_standing_reason, mail_resumption_date, mailing_list_auto_subscribe_policy, mailing_list_receive_duplicates, visibility, verbose_bugnotifications, account) VALUES (243632, 'Ubuntu Technical Board', 243631, NULL, 'techboard', NULL, NULL, NULL, NULL, 3, NULL, '2009-08-04 10:50:39.370018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, NULL, NULL, NULL, 10, 0, NULL, NULL, 1, true, 1, true, NULL);
1140-
1141-
1142-ALTER TABLE person ENABLE TRIGGER ALL;
1143-
1144-
1145-ALTER TABLE bugtracker DISABLE TRIGGER ALL;
1146-
1147-INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (1, 1, 'mozilla.org', 'The Mozilla.org Bug Tracker', 'The Mozilla.org bug tracker is the grand-daddy of bugzillas. This is where Bugzilla was conceived, born and raised. This bugzilla instance covers all Mozilla products such as Firefox, Thunderbird and Bugzilla itself.', 'https://bugzilla.mozilla.org/', 12, 'Carrier pigeon only', '2006-10-16 18:31:43.195685', NULL, false, NULL, true);
1148-INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (2, 1, 'gnome-bugzilla', 'GnomeGBug GTracker', 'This is the Gnome Bugzilla bug tracking system. It covers all the applications in the Gnome Desktop and Gnome Fifth Toe.', 'http://bugzilla.gnome.org/bugs', 16, 'Jeff Waugh, in his pants.', '2006-10-16 18:31:43.197325', NULL, false, NULL, true);
1149-INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (3, 2, 'debbugs', 'Debian Bug tracker', 'Bug tracker for debian project.', 'http://bugs.debian.org', 1, NULL, '2006-10-16 18:31:43.197881', NULL, false, NULL, true);
1150-INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (4, 1, 'ubuntu-bugzilla', 'The Ubuntu.com bugzilla', 'The Ubuntu.com bugzilla tracks bugs in all products Ubuntu supports, in the Canonical.com hosted websites and in Bazaar and the Arch supermirror', 'http://bugzilla.ubuntu.com/bugs/', 1, NULL, '2006-10-16 18:31:43.198413', NULL, false, NULL, true);
1151-INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (5, 5, 'sf', 'SourceForge.net Tracker', 'SourceForge.net is an Open Source software development web site, hosting more than 100,000 projects. This is the tracker used by most of those projects.', 'http://sourceforge.net/', 60, NULL, '2006-10-16 18:31:43.19892', NULL, false, NULL, true);
1152-INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (6, 8, 'email', 'Email bugtracker', 'An example email tracker.', 'mailto:bugs@example.com', 16, NULL, '2006-10-16 18:31:43.19892', NULL, false, NULL, true);
1153-INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (7, 9, 'savannah', 'GNU Savannah Bug Tracker', 'Savannah is an open source software development hosting service based on SourceForge.', 'http://savannah.gnu.org/', 25, NULL, '2008-02-11 15:25:58.504386', NULL, false, NULL, true);
1154-INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (8, 1, 'gnome-bugs', 'T''other Gnome GBugGTracker', 'This is the Gnome Bugzilla celebrity bug tracker.', 'http://bugzilla.gnome.org/', 16, NULL, '2008-10-08 13:31:00', NULL, false, true, true);
1155-
1156-
1157-ALTER TABLE bugtracker ENABLE TRIGGER ALL;
1158-
1159-
1160-ALTER TABLE processorfamily DISABLE TRIGGER ALL;
1161-
1162-INSERT INTO processorfamily (id, name, title, description, restricted) VALUES (1, 'x86', 'Intel 386 compatible chips', 'Bring back the 8086!', false);
1163-INSERT INTO processorfamily (id, name, title, description, restricted) VALUES (2, 'powerpc', 'PowerPC compatible systems, G3 G4 etc', 'An architecture conceived by Motorola and developed further in cooperation with IBM. Was used very successfully by Apple for their PowerMac range, until 2007.', false);
1164-INSERT INTO processorfamily (id, name, title, description, restricted) VALUES (3, 'amd64', 'AMD64 and Intel EM64T and compatible systems', 'A 64-bit extension to the venerable x86 architecture, pioneered by AMD and later adopted by Intel as well.', false);
1165-INSERT INTO processorfamily (id, name, title, description, restricted) VALUES (4, 'hppa', 'PA-RISC Processors', 'The HP PA-RISC and compatible processors', false);
1166-INSERT INTO processorfamily (id, name, title, description, restricted) VALUES (5, 'arm', 'ARM Processors', 'The ARM and compatible processors', true);
1167-
1168-
1169-ALTER TABLE processorfamily ENABLE TRIGGER ALL;
1170-
1171-
1172-ALTER TABLE distroarchseries DISABLE TRIGGER ALL;
1173-
1174-INSERT INTO distroarchseries (id, distroseries, processorfamily, architecturetag, owner, official, package_count, date_created, supports_virtualized) VALUES (1, 1, 1, 'i386', 1, true, 5, '2006-10-16 18:31:43.454475', true);
1175-INSERT INTO distroarchseries (id, distroseries, processorfamily, architecturetag, owner, official, package_count, date_created, supports_virtualized) VALUES (6, 3, 1, 'i386', 1, true, 1, '2006-10-16 18:31:43.456532', true);
1176-INSERT INTO distroarchseries (id, distroseries, processorfamily, architecturetag, owner, official, package_count, date_created, supports_virtualized) VALUES (7, 6, 1, 'i386', 1, true, 0, '2006-10-16 18:31:43.457028', true);
1177-INSERT INTO distroarchseries (id, distroseries, processorfamily, architecturetag, owner, official, package_count, date_created, supports_virtualized) VALUES (8, 10, 1, 'i386', 1, true, 0, '2006-10-16 18:31:43.457484', true);
1178-INSERT INTO distroarchseries (id, distroseries, processorfamily, architecturetag, owner, official, package_count, date_created, supports_virtualized) VALUES (9, 13, 1, 'i386', 1, true, 0, '2006-10-16 18:31:43.457938', true);
1179-INSERT INTO distroarchseries (id, distroseries, processorfamily, architecturetag, owner, official, package_count, date_created, supports_virtualized) VALUES (10, 13, 3, 'amd64', 1, true, 0, '2006-10-16 18:31:43.458434', true);
1180-INSERT INTO distroarchseries (id, distroseries, processorfamily, architecturetag, owner, official, package_count, date_created, supports_virtualized) VALUES (11, 3, 4, 'hppa', 1, false, 0, '2006-10-16 18:31:43.458892', false);
1181-INSERT INTO distroarchseries (id, distroseries, processorfamily, architecturetag, owner, official, package_count, date_created, supports_virtualized) VALUES (12, 1, 4, 'hppa', 1, false, 0, '2006-10-16 18:31:43.459349', false);
1182-
1183-
1184-ALTER TABLE distroarchseries ENABLE TRIGGER ALL;
1185-
1186-
1187-ALTER TABLE distroseries DISABLE TRIGGER ALL;
1188-
1189-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (1, 1, 'warty', 'The Warty Warthog Release', 'Warty was the first stable release of Ubuntu. Key feature goals included releasing on time, with the latest version of the Gnome Desktop Environment, and the creation of all the infrastructure required to manage Ubuntu itself. Warty includes excellent support for Python, with most of the widely used Python libraries installed by default.', '4.10', 4, '2004-08-20 00:00:00', NULL, 17, NULL, 'Warty is the first release of Ubuntu, with a planned release date of October 2004.', 'Warty', NULL, 0, 1, 'warty-changes@ubuntu.com', 4, 3, NULL, '2006-10-16 18:31:43.475428', false, false, NULL, NULL, NULL, false);
1190-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (2, 2, 'six', 'Six Six Six', 'some text to describe the whole 666 release of RH', '6.0.1', 4, '2004-03-21 00:00:00', NULL, 8, NULL, 'some text to describe the whole 666 release of RH', 'Six', NULL, 0, NULL, NULL, 0, 0, NULL, '2006-10-16 18:31:43.482603', false, false, NULL, NULL, NULL, false);
1191-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (3, 1, 'hoary', 'The Hoary Hedgehog Release', 'Hoary is the second release of Ubuntu. Key feature goals include the integration of Hoary with the Launchpad for bugs and translation information, as well as Gnome 2.10 and the X.org window system.', '5.04', 2, NULL, 1, 1, NULL, 'Hoary is the second released of Ubuntu, with release planned for April 2005.', 'Hoary', NULL, 96, 6, 'hoary-changes@ubuntu.com', 1, 4, NULL, '2006-10-16 18:31:43.483559', false, false, NULL, NULL, NULL, false);
1192-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (4, 2, '7.0', 'Seven', 'The release that we would not expect', '7.0.1', 3, NULL, 2, 7, NULL, 'The release that we would not expect', '7.0', NULL, 0, NULL, NULL, 0, 0, NULL, '2006-10-16 18:31:43.484426', false, false, NULL, NULL, NULL, false);
1193-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (5, 1, 'grumpy', 'The Grumpy Groundhog Release', 'Grumpy, the third release of Ubuntu Linux, is not yet in active development. This information is purely a placeholder.', '5.10', 1, NULL, 1, 1, NULL, 'Grumpy is the third release of Ubuntu, planned for October 2005.', 'Grumpy', NULL, 0, NULL, NULL, 0, 0, NULL, '2006-10-16 18:31:43.485233', false, false, NULL, NULL, NULL, false);
1194-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (6, 3, 'woody', 'WOODY', 'WOODY is the current stable verison of Debian GNU/Linux', '3.0', 4, '2003-01-01 00:00:00', NULL, 2, NULL, 'WOODY is the current stable verison of Debian GNU/Linux', 'Woody', NULL, 0, NULL, NULL, 0, 0, NULL, '2006-10-16 18:31:43.486054', false, false, NULL, NULL, NULL, false);
1195-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (7, 3, 'sarge', 'Sarge', 'Sarge is the FROZEN unstable version of Debian GNU/Linux.', '3.1', 3, NULL, 6, 5, NULL, 'Sarge is the FROZEN unstable version of Debian GNU/Linux.', 'Sarge', NULL, 0, NULL, NULL, 0, 0, 6, '2006-10-16 18:31:43.486972', false, false, NULL, NULL, NULL, false);
1196-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (8, 3, 'sid', 'Sid', 'Sid is the CRAZY unstable version of Debian GNU/Linux.', '3.2', 1, NULL, 6, 6, NULL, 'Sid is the CRAZY unstable version of Debian GNU/Linux.', 'Sid', NULL, 0, NULL, NULL, 0, 1, NULL, '2006-10-16 18:31:43.487779', false, false, NULL, NULL, NULL, false);
1197-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (9, 7, '2k5', 'Guada 2005', 'This release places extra emphasis on usability and installability. The installer is adapted from Ubuntu to assume your country, language, keyboard and time zone preference, thus ensuring that installs ask the minimum number of questions possible.', '2005', 2, NULL, 3, 4, NULL, 'Guada 2005 is a rapid-install version of
1198-Ubuntu Hoary for the Andalucian marketplace.', 'Guada2005', NULL, 0, NULL, NULL, 0, 0, NULL, '2006-10-16 18:31:43.488598', false, false, NULL, NULL, NULL, false);
1199-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (10, 1, 'breezy-autotest', 'Breezy Badger Autotest', 'Autotest version of Breezy', '6.6.6', 1, NULL, 3, 1, '[publishing]
1200-components = main restricted universe multiverse
1201-', 'Autosync uploader test', 'Breezy Badger Autotest', NULL, 0, 8, 'autotest_changes@ubuntu.com', 0, 0, NULL, '2006-10-16 18:31:43.489468', false, false, NULL, NULL, NULL, false);
1202-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (11, 8, 'breezy-autotest', 'Breezy Badger Autotest', 'Autotest version of Breezy', '6.6.6', 1, NULL, 1, 1, '[publishing]
1203-components = main restricted universe multiverse
1204-', 'Autosync uploader test', 'Breezy Badger Autotest', NULL, 0, NULL, NULL, 0, 0, NULL, '2006-10-16 18:31:43.490333', false, false, NULL, NULL, NULL, false);
1205-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (12, 5, 'krunch', 'The Krunchy Kangaroo', 'The archive split allows us to use different kernel settings for Kubuntu, as well as make other pervasive low-level fixes, and release on our own schedule.', '8.06', 1, NULL, 3, 1, NULL, 'This is the first experimental release of Kubuntu that uses a separate archive from the main Ubuntu release.', 'Krunch', NULL, 0, NULL, NULL, 0, 0, 33, '2006-10-16 18:31:43.491929', false, false, NULL, NULL, NULL, false);
1206-INSERT INTO distroseries (id, distribution, name, title, description, version, releasestatus, datereleased, parent_series, owner, lucilleconfig, summary, displayname, datelastlangpack, messagecount, nominatedarchindep, changeslist, binarycount, sourcecount, driver, date_created, hide_all_translations, defer_translation_imports, language_pack_base, language_pack_delta, language_pack_proposed, language_pack_full_export_requested) VALUES (13, 8, 'hoary-test', 'Mock Hoary', 'nothing special', '9.9.9', 1, NULL, 1, 1, '[publishing]
1207-components = main restricted universe multiverse
1208-', 'summmmmmmary', 'Hoary Mock', NULL, 0, NULL, NULL, 0, 0, NULL, '2006-10-16 18:31:43.492845', false, false, NULL, NULL, NULL, false);
1209-
1210-
1211-ALTER TABLE distroseries ENABLE TRIGGER ALL;
1212-
1213-
1214-ALTER TABLE translationgroup DISABLE TRIGGER ALL;
1215-
1216-INSERT INTO translationgroup (id, name, title, summary, datecreated, owner, translation_guide_url) VALUES (1, 'testing-translation-team', 'Just a testing team', 'This team is to test the translation restrictions', '2005-07-12 14:30:24.162667', 13, NULL);
1217-
1218-
1219-ALTER TABLE translationgroup ENABLE TRIGGER ALL;
1220-
1221-
1222-ALTER TABLE distribution DISABLE TRIGGER ALL;
1223-
1224-INSERT INTO distribution (id, name, title, description, domainname, owner, lucilleconfig, displayname, summary, members, translationgroup, translationpermission, bug_supervisor, official_malone, official_rosetta, security_contact, driver, translation_focus, mirror_admin, upload_admin, upload_sender, date_created, homepage_content, icon, mugshot, logo, fti, official_answers, language_pack_admin, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, max_bug_heat, bug_reported_acknowledgement) VALUES (1, 'ubuntu', 'Ubuntu Linux', 'Ubuntu is a new approach to Linux Distribution that includes regular releases, and a simplified single-CD installation system.', 'ubuntulinux.org', 17, '[publishing]
1225-pendingremovalduration=5
1226-root=/var/tmp/archive
1227-archiveroot=/var/tmp/archive/ubuntu
1228-poolroot=/var/tmp/archive/ubuntu/pool
1229-distsroot=/var/tmp/archive/ubuntu/dists
1230-overrideroot=/var/tmp/archive/ubuntu-overrides
1231-cacheroot=/var/tmp/archive/ubuntu-cache
1232-miscroot=/var/tmp/archive/ubuntu-misc
1233-', 'Ubuntu', 'Ubuntu is a new approach to Linux Distribution that includes regular releases, and a simplified single-CD installation system.', 17, NULL, 1, NULL, true, true, NULL, NULL, 3, 59, NULL, NULL, '2006-10-16 18:31:43.415195', NULL, NULL, NULL, NULL, NULL, true, NULL, true, true, NULL, NULL, NULL, NULL);
1234-INSERT INTO distribution (id, name, title, description, domainname, owner, lucilleconfig, displayname, summary, members, translationgroup, translationpermission, bug_supervisor, official_malone, official_rosetta, security_contact, driver, translation_focus, mirror_admin, upload_admin, upload_sender, date_created, homepage_content, icon, mugshot, logo, fti, official_answers, language_pack_admin, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, max_bug_heat, bug_reported_acknowledgement) VALUES (2, 'redhat', 'Redhat Advanced Server', 'Red Hat is a commercial distribution of the GNU/Linux Operating System.', 'redhat.com', 1, NULL, 'Red Hat', 'Red Hat is a commercial distribution of the GNU/Linux Operating System.', 1, NULL, 1, NULL, false, false, NULL, 8, NULL, 1, NULL, NULL, '2006-10-16 18:31:43.417928', NULL, NULL, NULL, NULL, NULL, false, NULL, false, false, NULL, NULL, NULL, NULL);
1235-INSERT INTO distribution (id, name, title, description, domainname, owner, lucilleconfig, displayname, summary, members, translationgroup, translationpermission, bug_supervisor, official_malone, official_rosetta, security_contact, driver, translation_focus, mirror_admin, upload_admin, upload_sender, date_created, homepage_content, icon, mugshot, logo, fti, official_answers, language_pack_admin, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, max_bug_heat, bug_reported_acknowledgement) VALUES (3, 'debian', 'Debian GNU/Linux', 'Debian GNU/Linux is
1236-a non commercial distribution of a GNU/Linux Operating System for many
1237-platforms.', 'debian.org', 1, NULL, 'Debian', 'Debian GNU/Linux is
1238-a non commercial distribution of a GNU/Linux Operating System for many
1239-platforms.', 1, NULL, 1, NULL, false, false, NULL, NULL, NULL, 1, NULL, NULL, '2006-10-16 18:31:43.418942', NULL, NULL, NULL, NULL, NULL, false, NULL, false, false, NULL, NULL, NULL, NULL);
1240-INSERT INTO distribution (id, name, title, description, domainname, owner, lucilleconfig, displayname, summary, members, translationgroup, translationpermission, bug_supervisor, official_malone, official_rosetta, security_contact, driver, translation_focus, mirror_admin, upload_admin, upload_sender, date_created, homepage_content, icon, mugshot, logo, fti, official_answers, language_pack_admin, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, max_bug_heat, bug_reported_acknowledgement) VALUES (4, 'gentoo', 'The Gentoo Linux', 'Gentoo is a very
1241-customizeable GNU/Linux Distribution that is designed to let you build every
1242-single package yourself, with your own preferences.', 'gentoo.org', 1, NULL, 'Gentoo', 'Gentoo is a very customizeable GNU/Linux Distribution that is designed to let you build every single package yourself, with your own preferences.', 1, NULL, 1, NULL, true, false, NULL, NULL, NULL, 1, NULL, NULL, '2006-10-16 18:31:43.41974', NULL, NULL, NULL, NULL, NULL, false, NULL, false, false, NULL, NULL, NULL, NULL);
1243-INSERT INTO distribution (id, name, title, description, domainname, owner, lucilleconfig, displayname, summary, members, translationgroup, translationpermission, bug_supervisor, official_malone, official_rosetta, security_contact, driver, translation_focus, mirror_admin, upload_admin, upload_sender, date_created, homepage_content, icon, mugshot, logo, fti, official_answers, language_pack_admin, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, max_bug_heat, bug_reported_acknowledgement) VALUES (5, 'kubuntu', 'Kubuntu - Free KDE-based Linux', 'Kubuntu is an entirely free Linux distribution that uses the K Desktop
1244-Environment as its default desktop after install.', 'kubuntu.org', 1, NULL, 'Kubuntu', 'Kubuntu is an entirely free Linux distribution that uses the K Desktop
1245-Environment as its default desktop after install.', 1, NULL, 1, NULL, false, false, NULL, 8, NULL, 1, NULL, NULL, '2006-10-16 18:31:43.420551', NULL, NULL, NULL, NULL, NULL, false, NULL, false, false, NULL, NULL, NULL, NULL);
1246-INSERT INTO distribution (id, name, title, description, domainname, owner, lucilleconfig, displayname, summary, members, translationgroup, translationpermission, bug_supervisor, official_malone, official_rosetta, security_contact, driver, translation_focus, mirror_admin, upload_admin, upload_sender, date_created, homepage_content, icon, mugshot, logo, fti, official_answers, language_pack_admin, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, max_bug_heat, bug_reported_acknowledgement) VALUES (7, 'guadalinex', 'GuadaLinex: Linux for Andalucia', 'GuadaLinex is based on Ubuntu and adds full support for applications specific to the local environment in Andalucia.', 'guadalinex.es', 4, NULL, 'GuadaLinex', 'The GuadaLinex team produces a high quality linux for the Andalucian marketplace.', 32, NULL, 1, NULL, false, false, NULL, NULL, NULL, 4, NULL, NULL, '2006-10-16 18:31:43.421329', NULL, NULL, NULL, NULL, NULL, false, NULL, false, false, NULL, NULL, NULL, NULL);
1247-INSERT INTO distribution (id, name, title, description, domainname, owner, lucilleconfig, displayname, summary, members, translationgroup, translationpermission, bug_supervisor, official_malone, official_rosetta, security_contact, driver, translation_focus, mirror_admin, upload_admin, upload_sender, date_created, homepage_content, icon, mugshot, logo, fti, official_answers, language_pack_admin, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, max_bug_heat, bug_reported_acknowledgement) VALUES (8, 'ubuntutest', 'Ubuntu Test', 'Ubuntu Test', 'ubuntulinux.org', 17, '[publishing]
1248-pendingremovalduration=5
1249-root=/var/tmp/archive
1250-archiveroot=/var/tmp/archive/ubuntutest
1251-poolroot=/var/tmp/archive/ubuntutest/pool
1252-distsroot=/var/tmp/archive/ubuntutest/dists
1253-overrideroot=/var/tmp/archive/ubuntutest-overrides
1254-cacheroot=/var/tmp/archive/ubuntutest-cache
1255-miscroot=/var/tmp/archive/ubuntutest-misc
1256-', 'ubuntutest', 'Ubuntu Test summary', 17, NULL, 1, NULL, false, false, NULL, NULL, NULL, 17, NULL, NULL, '2006-10-16 18:31:43.422162', NULL, NULL, NULL, NULL, NULL, false, NULL, false, false, NULL, NULL, NULL, NULL);
1257-
1258-
1259-ALTER TABLE distribution ENABLE TRIGGER ALL;
1260-
1261-
1262-ALTER TABLE project DISABLE TRIGGER ALL;
1263-
1264-INSERT INTO project (id, owner, name, displayname, title, summary, description, datecreated, homepageurl, wikiurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, translationgroup, translationpermission, driver, bugtracker, homepage_content, icon, mugshot, logo, bug_reporting_guidelines, reviewer_whiteboard, registrant, max_bug_heat, bug_reported_acknowledgement) VALUES (1, 1, 'apache', 'Apache', 'Apache', 'The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field.', 'We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.', '2004-09-24 20:58:00.633513', 'http://apache.org/', NULL, NULL, NULL, NULL, false, true, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL);
1265-INSERT INTO project (id, owner, name, displayname, title, summary, description, datecreated, homepageurl, wikiurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, translationgroup, translationpermission, driver, bugtracker, homepage_content, icon, mugshot, logo, bug_reporting_guidelines, reviewer_whiteboard, registrant, max_bug_heat, bug_reported_acknowledgement) VALUES (2, 2, 'do-not-use-info-imports', 'DO NOT USE', 'DO NOT USE', 'DO NOT USE', 'TEMPORARY project till mirror jobs are assigned to correct project', '2004-09-24 20:58:00.637677', 'http://arch.ubuntu.com/', NULL, NULL, NULL, NULL, true, false, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL);
1266-INSERT INTO project (id, owner, name, displayname, title, summary, description, datecreated, homepageurl, wikiurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, translationgroup, translationpermission, driver, bugtracker, homepage_content, icon, mugshot, logo, bug_reporting_guidelines, reviewer_whiteboard, registrant, max_bug_heat, bug_reported_acknowledgement) VALUES (3, 2, 'launchpad-mirrors', 'Launchpad SCM Mirrors', 'The Launchpad Mirroring Project', 'launchpad mirrors various revision control archives, that mirroring is managed here', 'A project to mirror revision control archives into Arch.', '2004-09-24 20:58:00.65398', 'http://arch.ubuntu.com/', NULL, NULL, NULL, NULL, false, true, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL);
1267-INSERT INTO project (id, owner, name, displayname, title, summary, description, datecreated, homepageurl, wikiurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, translationgroup, translationpermission, driver, bugtracker, homepage_content, icon, mugshot, logo, bug_reporting_guidelines, reviewer_whiteboard, registrant, max_bug_heat, bug_reported_acknowledgement) VALUES (4, 12, 'mozilla', 'the Mozilla Project', 'The Mozilla Project', 'The Mozilla Project is the largest open source web browser collaborative project. Founded when Netscape released the source code to its pioneering browser in 1999, the Mozilla Project continues to set the standard for web browser technology.', 'The Mozilla Project produces several internet applications that are very widely used, and is also a center for collaboration on internet standards work by open source groups.
1268-
1269-The Project now has several popular products, including the Firefox web browser, the Thunderbird mail client and the libraries that enable them to run on many platforms.
1270-
1271-Organisationally, the Mozilla Project is hosted by the Mozilla Foundation, a not-for-profit company incorporated in the US.', '2004-09-24 20:58:02.177698', 'http://www.mozilla.org/', NULL, NULL, NULL, NULL, false, true, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL);
1272-INSERT INTO project (id, owner, name, displayname, title, summary, description, datecreated, homepageurl, wikiurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, translationgroup, translationpermission, driver, bugtracker, homepage_content, icon, mugshot, logo, bug_reporting_guidelines, reviewer_whiteboard, registrant, max_bug_heat, bug_reported_acknowledgement) VALUES (5, 12, 'gnome', 'GNOME', 'The GNOME Project', 'The GNOME Project is an initiative to prduce a free desktop software framework. GNOME is more than a set of applications, it is a user interface standard (the Gnome HIG) and a set of libraries that allow applications to work together in a harmonious desktop-ish way.', 'The Gnome Project was founded (when?) to build on the success of early applications using the Gtk GUI toolkit. Many of those applications are still part of Gnome, and the Gtk toolkit remains an essential part of Gnome.
1273-
1274-Gnome applications cover the full spectrum from office productivity applications to games, digital camera applications, and of course the Gnome Panel which acts as a launcher and general access point for apps on the desktop.', '2004-09-24 20:58:02.222154', 'http://www.gnome.org/', NULL, NULL, NULL, NULL, false, true, NULL, NULL, 1, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL);
1275-INSERT INTO project (id, owner, name, displayname, title, summary, description, datecreated, homepageurl, wikiurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, translationgroup, translationpermission, driver, bugtracker, homepage_content, icon, mugshot, logo, bug_reporting_guidelines, reviewer_whiteboard, registrant, max_bug_heat, bug_reported_acknowledgement) VALUES (6, 12, 'iso-codes-project', 'iso-codes', 'iso-codes', 'foo', 'bar', '2004-09-24 20:58:02.238443', 'http://www.gnome.org/', NULL, NULL, NULL, NULL, false, true, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 12, NULL, NULL);
1276-INSERT INTO project (id, owner, name, displayname, title, summary, description, datecreated, homepageurl, wikiurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, translationgroup, translationpermission, driver, bugtracker, homepage_content, icon, mugshot, logo, bug_reporting_guidelines, reviewer_whiteboard, registrant, max_bug_heat, bug_reported_acknowledgement) VALUES (7, 16, 'aaa', 'the Test Project', 'The Test Project', 'This is a small project that has no purpose by to serve as a test data point. The only thing this project has ever produced is products, most of which are largely unheard of. This short description is long enough.', 'Of course, one can''t say enough about the Test Project. Not only is it always there, it''s often exactly in the same state that you saw it last. And it has an amazing ability to pop up in places where you just didn''t think you''d expect to find it. Very noticeable when you least want it noticed, that sort of thing.
1277-
1278-It would be very interesting to know whether this second paragraph of text about the test project is in fact rendered as a second paragraph, or if it all blurs together in a haze of testing. Only time will tell.', '2004-10-03 22:27:25.02843', 'http://www.testmenow.com', NULL, NULL, NULL, NULL, false, true, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 16, NULL, NULL);
1279-INSERT INTO project (id, owner, name, displayname, title, summary, description, datecreated, homepageurl, wikiurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, translationgroup, translationpermission, driver, bugtracker, homepage_content, icon, mugshot, logo, bug_reporting_guidelines, reviewer_whiteboard, registrant, max_bug_heat, bug_reported_acknowledgement) VALUES (8, 16, 'gimp', 'the GiMP Project', 'The GIMP Project', 'The GIMP Project works in the field of image manipulation and reproduction. The Project is responsible for several pieces of software, such as The GiMP and GiMP-Print.', 'Founded by Spencer Kimball in 1996 with the simple aim of producing a "paint" program, the GIMP project has become one of the defining projects of the open source world. The GIMP itself is an image manipulation program that is beginning to rival even Adobe Photoshop in features and functionality.
1280-
1281-The project is loosely organised, with about 15 people making regular contributions. There is no fixed release schedule other than "when it is done".', '2004-10-03 22:27:45.283741', 'http://www.gimp.org/', NULL, NULL, NULL, NULL, false, true, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 16, NULL, NULL);
1282-
1283-
1284-ALTER TABLE project ENABLE TRIGGER ALL;
1285-
1286-
1287-ALTER TABLE product DISABLE TRIGGER ALL;
1288-
1289-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (1, 1, 17, 'tomcat', 'Tomcat', 'Tomcat', 'The servlet container that is used in the official Reference Implementation for the Java Servlet and JavaServer Pages technologies.', 'Apache Tomcat is developed in an open and participatory environment and released under the Apache Software License. This project has nothing to do with Ubuntu, but this description uses the word "Ubuntu" for the purpose of testing search results.', '2004-09-24 20:58:00.655518', 'http://tomcat.apache.org/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 16, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 17, NULL, NULL, NULL, NULL, NULL);
1290-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (2, 2, 2, 'unassigned', 'unassigned syncs', 'unassigned syncs', 'syncs still not assigned to a real product', 'unassigned syncs, will not be processed, to be moved to real projects ASAP.', '2004-09-24 20:58:00.674409', 'http://archive.apache.org/dist/tomcat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, false, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 17, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 2, NULL, NULL, NULL, NULL, NULL);
1291-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (3, 3, 2, 'arch-mirrors', 'Arch mirrors', 'Arch archive mirrors', 'Arch Archive Mirroring project.', 'Arch archive full-archive mirror tasks', '2004-09-24 20:58:00.691047', 'http://arch.ubuntu.com/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 15, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 2, NULL, NULL, NULL, NULL, NULL);
1292-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (4, 4, 12, 'firefox', 'Mozilla Firefox', 'Mozilla Firefox', 'The Mozilla Firefox web browser', 'The Mozilla Firefox web browser', '2004-09-24 20:58:02.185708', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, 1, 100, false, true, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, true, false, false, NULL, false, false, NULL, NULL, false, false, 12, NULL, NULL, NULL, NULL, NULL);
1293-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (5, 5, 12, 'evolution', 'Evolution', 'The Evolution Groupware Application', 'Evolution is an email client, addressbook and calendar application that is very well integrated with the Gnome desktop. Evolution is the standard mail client in the Ubuntu distribution, and supports all current mail system standards.', 'Recently, Evolution has seen significant work to make it interoperable with the proprietary Microsoft Exchange Server protocols and formats, allowing organisations to replace Outlook on Windows with Evolution and Linux.
1294-
1295-The current stable release series of Evolution is 2.0.', '2004-09-24 20:58:02.240163', 'http://www.gnome.org/evolution/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, 1, 100, true, true, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 12, NULL, NULL, NULL, NULL, NULL);
1296-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (6, 5, 12, 'gnome-terminal', 'GNOME Terminal', 'The GNOME Terminal Emulator', 'Gnome Terminal is a simple terminal application for your Gnome desktop. It allows quick access to console applications, supports all console types, and has many useful features such as tabbed consoles (many consoles in a single window with quick switching between them).', 'The Gnome Terminal application fully supports Gnome 2 and is a standard part of the Gnome Desktop.', '2004-09-24 20:58:02.256678', 'http://www.gnome.org/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, 2, 14, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 12, 'gnome-terminal', NULL, NULL, NULL, NULL);
1297-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (7, 6, 12, 'iso-codes', 'iso-codes', 'The iso-codes', 'foo', 'bar', '2004-09-24 20:58:02.258743', 'http://www.novell.com/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 13, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 12, NULL, NULL, NULL, NULL, NULL);
1298-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (8, 4, 12, 'thunderbird', 'Mozilla Thunderbird', 'Mozilla Thunderbird', 'The Mozilla Thunderbird email client', 'The Mozilla Thunderbird email client', '2004-09-24 20:58:04.478988', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 4, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 12, NULL, NULL, NULL, NULL, NULL);
1299-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (9, 5, 16, 'applets', 'Gnome Applets', 'The Gnome Panel Applets', 'The Gnome Panel Applets are a collection of standard widgets that can be installed on your desktop Panel. These icons act as launchers for applications, or indicators of the status of your machine. For example, panel applets exist to show you your battery status or wifi network signal strength.', 'This is the collection of Panel Applets that is part of the default Gnome release. Additional Panel Applets are available from third parties. A complete set of Panel Applets is included in the Ubuntu OS, for example.
1300-
1301-The Gnome Panel team includes Abel Kascinsky, Frederick Wurst and Andreas Andropovitch Axelsson.', '2004-10-03 16:46:09.113721', 'http://www.gnome.org/panel/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 12, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 16, NULL, NULL, NULL, NULL, NULL);
1302-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (10, NULL, 2, 'python-gnome2-dev', 'python gnome2 dev', 'python gnome2 dev', 'Python bindings for the GNOME desktop environment', 'Python bindings for the GNOME desktop environment', '2004-09-24 20:58:00.674409', 'http://www.daa.com.au/~james/software/pygtk/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, false, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 18, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 2, NULL, NULL, NULL, NULL, NULL);
1303-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (11, 5, 12, 'netapplet', 'NetApplet', 'Network Applet', 'The Novell Network Applet', 'Displays current network status and allows network switching', '2005-03-10 16:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 5, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 12, NULL, NULL, NULL, NULL, NULL);
1304-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (12, NULL, 16, 'a52dec', 'a52dec', 'Liba52 Test Decoder', 'a52dec is a test program for liba52.', 'This tool decodes ATSC A/52 streams, and also includes a demultiplexer for mpeg-1 and mpeg-2 program streams. The liba52 source code is always distributed in the a52dec package, to make sure it easier for people to test it.', '2005-04-14 00:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 16, NULL, NULL, NULL, NULL, NULL);
1305-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (13, 5, 16, 'gnomebaker', 'gnomebaker', 'Gnome Baker', 'Gnome Baker is a CD burning application', 'Gnome Baker burns CDs like there''s no tomorrow', '2005-08-26 00:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 11, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 16, NULL, NULL, NULL, NULL, NULL);
1306-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (14, NULL, 12, 'bazaar', 'Bazaar', 'Bazaar', 'Bazaar is a distributed revision control system', 'Bazaar is all about source control and double-dashes.', '2005-08-26 00:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 10, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 12, NULL, NULL, NULL, NULL, NULL);
1307-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (15, NULL, 1, 'alsa-utils', 'alsa-utils', 'ALSA utilities', 'Utilities for configurating and using the Advanced Linux Sound Architecture', '', '2005-09-15 09:05:11.472752', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, true, NULL, false, NULL, 1, true, false, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 1, NULL, NULL, NULL, NULL, NULL);
1308-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (16, NULL, 12, 'landscape', 'The Landscape Project', 'The Landscape Project', 'Landscape is a system being developed by Canonical to allow remote management of systems using a web interface.', 'Landscape is a system being developed by Canonical to allow remote management of systems using a web interface. The scope of the project isn''t limited, and will grow up as new features are planned.
1309-
1310-The Landscape system consists of two major parts: a client daemon which delivers information to the server and acts on server-provided requests; and a web server responsible for handling communication with clients and the user interface itself.', '2006-07-11 19:59:17.311451', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, true, 64, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, false, true, false, NULL, false, false, NULL, NULL, false, false, 12, NULL, NULL, NULL, NULL, NULL);
1311-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (17, NULL, 12, 'launchpad', 'Launchpad', 'Launchpad', 'Launchpad is a catalogue of libre software projects and products. Projects registered in the Launchpad are linked to their translations in Rosetta, their bugs in Malone, their RCS imports in Bazaar, and their packages in Soyuz.', 'Launchpad''s design is inspired by the Description of a Project (DOAP) framework by Edd Dumbill, with extensions for actual releases of products.', '2006-11-24 12:48:19.178553', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, true, NULL, NULL, NULL, NULL, 19, NULL, NULL, NULL, NULL, true, false, false, NULL, false, false, NULL, NULL, false, false, 12, NULL, NULL, NULL, NULL, NULL);
1312-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (18, NULL, 37, 'upstart', 'Upstart', 'The Upstart System Initialisation Process', 'Event-based init daemon.', 'upstart is a replacement for the /sbin/init daemon which handles starting of tasks and services during boot, stopping them during shutdown and supervising them while the system is running.', '2007-03-14 18:47:04.891546', 'http://upstart.ubuntu.com/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 20, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 37, NULL, NULL, NULL, NULL, NULL);
1313-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (19, NULL, 28, 'aptoncd', 'APTonCD', 'APTonCD, Get APT Anywhere', 'A simple yet powerful tool which allows you to create one (or more) CD/DVD-Repository containing all of the packages downloaded via apt-get or aptitude.', 'A GUI-based tool that allows you to create a CD/DVD with all downloaded packages with APT-GET, creating a removable-repository.
1314-
1315-With aptoncd you can:
1316-* Create a CD/DVD with all downloaded packages
1317-* Backup/restore all packages installeds with APT
1318-* Install the same packages in a lot of machines
1319-* Upgrade a lot of computers with same DVD
1320-* And more is expected...
1321-
1322-In the "Create APTonCD" feature we have the possibility to make a CD/DVD with all previously downloaded packages with apt-get or aptitude. It uses apt-cache (/var/cache/apt/archives) and scans for packages and makes a repository in one (or more) CD/DVD, exactly as the previous option.', '2007-03-14 18:53:13.112116', 'http://aptoncd.sourceforge.net/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 21, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 28, NULL, NULL, NULL, NULL, NULL);
1323-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (20, NULL, 14, 'jokosher', 'Jokosher', 'Jokosher Audio Editor', 'Jokosher is a simple yet powerful multi-track studio. With it you can create and record music, podcasts and more, all from an integrated simple environment.', 'Jokosher brings together many sources of audio into a seamless environment where you can record, mix and publish your audio content.', '2007-03-15 20:11:49.501871', 'http://www.jokosher.org/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, true, NULL, NULL, NULL, NULL, 22, NULL, NULL, NULL, NULL, false, false, false, NULL, false, true, NULL, NULL, false, false, 14, NULL, NULL, NULL, NULL, NULL);
1324-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (21, NULL, 12, 'bzr', 'Bazaar', 'Bazaar Version Control System', 'Bazaar is a distributed revision control system. It allows team members to branch and merge upstream code very easily. Most importantly, it is very robust in handling renames so that merges across radical restructurings of the tree are efficient and correct.', 'Bazaar aims to be a distributed RCS system that the open source community loves to use.
1325-
1326-Distributed revision control systems allow multiple people to have their own branch of a project, and merge code efficiently between them. This enables new contributors to immediately have access to the full tools that previously have been limited to just the committers to a project.', '2007-03-27 16:28:27.763632', 'http://bazaar-vcs.org/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 23, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 12, NULL, NULL, NULL, NULL, NULL);
1327-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (22, NULL, 12, 'redfish', 'Redfish', 'Redfish', 'The redfish project.', 'The redfish project.', '2007-04-18 20:58:56.846607', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, true, 64, NULL, NULL, NULL, 24, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 12, NULL, NULL, NULL, NULL, NULL);
1328-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (23, 1, 1, 'derby', 'Derby', 'Derby - Java Database', 'Apache Derby, an Apache DB subproject, is an open source relational database implemented entirely in Java and available under the Apache License, Version 2.0.', 'Some key advantages include:
1329-
1330- * Derby has a small footprint -- about 2 megabytes for the base engine and embedded JDBC driver.
1331- * Derby is based on the Java, JDBC, and SQL standards.
1332- * Derby provides an embedded JDBC driver that lets you embed Derby in any Java-based solution.
1333- * Derby also supports the more familiar client/server mode with the Derby Network Client JDBC driver and Derby Network Server.
1334- * Derby is easy to install, deploy, and use.
1335-', '2007-11-19 12:44:30.603892', 'http://db.apache.org/derby/', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 25, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 1, NULL, NULL, NULL, NULL, NULL);
1336-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (24, NULL, 243623, 'mega-money-maker', 'Mega Money Maker', 'Sample Commercial Project', 'Proprietary project', NULL, '2008-06-27 14:51:47.366199', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 26, NULL, NULL, NULL, NULL, false, false, false, 'All rights reserved. Not free.', false, false, NULL, NULL, false, false, 243623, NULL, NULL, NULL, NULL, NULL);
1337-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (25, NULL, 16, 'rosetta', 'Launchpad Translations', 'The translations part of Launchpad', 'Here you can translate your project into other spoken languages.', NULL, '2008-10-02 10:12:40.909504', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 27, NULL, NULL, NULL, NULL, false, false, false, NULL, false, false, NULL, NULL, false, false, 16, NULL, NULL, NULL, NULL, NULL);
1338-INSERT INTO product (id, project, owner, name, displayname, title, summary, description, datecreated, homepageurl, screenshotsurl, wikiurl, listurl, programminglang, downloadurl, lastdoap, sourceforgeproject, freshmeatproject, reviewed, active, fti, autoupdate, translationgroup, translationpermission, official_rosetta, official_malone, bug_supervisor, security_contact, driver, bugtracker, development_focus, homepage_content, icon, mugshot, logo, official_answers, private_bugs, private_specs, license_info, official_blueprints, enable_bug_expiration, bug_reporting_guidelines, reviewer_whiteboard, official_codehosting, license_approved, registrant, remote_product, translation_focus, max_bug_heat, date_next_suggest_packaging, bug_reported_acknowledgement) VALUES (26, NULL, 16, 'obsolete-junk', 'Obsolete Junk', 'The Great Mass of Obsolete Junk', 'If you have junk that you don''t want clogging up your product, dump it here.', NULL, '2009-05-02 21:33:15.310312', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, true, true, NULL, false, NULL, 1, false, false, NULL, NULL, NULL, NULL, 28, NULL, NULL, NULL, NULL, false, false, false, '(We have them all because we are junk. Junk. Junk I tell you.)', false, false, NULL, NULL, false, true, 16, NULL, NULL, NULL, NULL, NULL);
1339-
1340-
1341-ALTER TABLE product ENABLE TRIGGER ALL;
1342-
1343-
1344 ALTER TABLE announcement DISABLE TRIGGER ALL;
1345
1346 INSERT INTO announcement (id, date_created, date_announced, registrant, product, distribution, project, title, summary, url, active, date_updated) VALUES (1, '2007-11-25 00:44:32.186178', '2007-11-20 03:00:00', 1, NULL, 1, NULL, 'Every Macedonian Student to Use Ubuntu-Powered Computer Workstations', 'The Macedonia Ministry of Education and Science will deploy more than 180,000 workstations running Canonical’s Edubuntu 7.04 as part of its "Computer for Every Child" project.', 'http://www.ubuntu.com/news/macedonia-school-computers', true, NULL);
1347@@ -2303,30 +981,6 @@
1348 ALTER TABLE announcement ENABLE TRIGGER ALL;
1349
1350
1351-ALTER TABLE sourcepackagename DISABLE TRIGGER ALL;
1352-
1353-INSERT INTO sourcepackagename (id, name) VALUES (1, 'mozilla-firefox');
1354-INSERT INTO sourcepackagename (id, name) VALUES (9, 'evolution');
1355-INSERT INTO sourcepackagename (id, name) VALUES (10, 'netapplet');
1356-INSERT INTO sourcepackagename (id, name) VALUES (14, 'pmount');
1357-INSERT INTO sourcepackagename (id, name) VALUES (15, 'a52dec');
1358-INSERT INTO sourcepackagename (id, name) VALUES (16, 'mozilla');
1359-INSERT INTO sourcepackagename (id, name) VALUES (17, 'at');
1360-INSERT INTO sourcepackagename (id, name) VALUES (18, 'thunderbird');
1361-INSERT INTO sourcepackagename (id, name) VALUES (19, 'alsa-utils');
1362-INSERT INTO sourcepackagename (id, name) VALUES (20, 'cnews');
1363-INSERT INTO sourcepackagename (id, name) VALUES (21, 'libstdc++');
1364-INSERT INTO sourcepackagename (id, name) VALUES (22, 'linux-source-2.6.15');
1365-INSERT INTO sourcepackagename (id, name) VALUES (23, 'foobar');
1366-INSERT INTO sourcepackagename (id, name) VALUES (24, 'cdrkit');
1367-INSERT INTO sourcepackagename (id, name) VALUES (25, 'language-pack-de');
1368-INSERT INTO sourcepackagename (id, name) VALUES (26, 'iceweasel');
1369-INSERT INTO sourcepackagename (id, name) VALUES (27, 'commercialpackage');
1370-
1371-
1372-ALTER TABLE sourcepackagename ENABLE TRIGGER ALL;
1373-
1374-
1375 ALTER TABLE answercontact DISABLE TRIGGER ALL;
1376
1377 INSERT INTO answercontact (id, product, distribution, sourcepackagename, person, date_created) VALUES (1, NULL, 1, 1, 16, '2007-03-14 20:07:25.233772');
1378@@ -2338,22 +992,6 @@
1379 ALTER TABLE answercontact ENABLE TRIGGER ALL;
1380
1381
1382-ALTER TABLE job DISABLE TRIGGER ALL;
1383-
1384-INSERT INTO job (id, requester, reason, status, progress, last_report_seen, next_report_due, attempt_count, max_retries, log, scheduled_start, lease_expires, date_created, date_started, date_finished) VALUES (1, NULL, NULL, 1, NULL, NULL, NULL, 0, 0, NULL, NULL, NULL, '2005-06-15 09:14:12.820778', '2005-06-15 09:20:12.820778', NULL);
1385-INSERT INTO job (id, requester, reason, status, progress, last_report_seen, next_report_due, attempt_count, max_retries, log, scheduled_start, lease_expires, date_created, date_started, date_finished) VALUES (2, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, NULL, NULL, '2005-06-15 10:14:12.820778', NULL, NULL);
1386-
1387-
1388-ALTER TABLE job ENABLE TRIGGER ALL;
1389-
1390-
1391-ALTER TABLE temporaryblobstorage DISABLE TRIGGER ALL;
1392-
1393-
1394-
1395-ALTER TABLE temporaryblobstorage ENABLE TRIGGER ALL;
1396-
1397-
1398 ALTER TABLE apportjob DISABLE TRIGGER ALL;
1399
1400
1401@@ -2361,30 +999,22 @@
1402 ALTER TABLE apportjob ENABLE TRIGGER ALL;
1403
1404
1405-ALTER TABLE gpgkey DISABLE TRIGGER ALL;
1406-
1407-INSERT INTO gpgkey (id, owner, keyid, fingerprint, active, algorithm, keysize, can_encrypt, date_created) VALUES (1, 16, '12345678', 'ABCDEF0123456789ABCDDCBA0000111112345678', true, 17, 1024, true, '2006-10-16 18:31:43.631499');
1408-
1409-
1410-ALTER TABLE gpgkey ENABLE TRIGGER ALL;
1411-
1412-
1413 ALTER TABLE archive DISABLE TRIGGER ALL;
1414
1415-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (1, 17, NULL, true, NULL, 1, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:12.241774', 15, 1, 8, 5, 1, '2008-09-23 17:29:03.442606', NULL, NULL, NULL, 'Primary Archive for Ubuntu Linux', 0, NULL, 0);
1416-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (2, 1, NULL, true, NULL, 2, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.863812', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.445921', NULL, NULL, NULL, 'Primary Archive for Redhat Advanced Server', 0, NULL, 0);
1417-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (3, 1, NULL, true, NULL, 3, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.864941', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.446557', NULL, NULL, NULL, 'Primary Archive for Debian GNU/Linux', 0, NULL, 0);
1418-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (4, 1, NULL, true, NULL, 4, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.865502', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.44689', NULL, NULL, NULL, 'Primary Archive for The Gentoo Linux', 0, NULL, 0);
1419-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (5, 1, NULL, true, NULL, 5, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.866015', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.447202', NULL, NULL, NULL, 'Primary Archive for Kubuntu - Free KDE-based Linux', 0, NULL, 0);
1420-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (7, 4, NULL, true, NULL, 7, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.866529', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.447515', NULL, NULL, NULL, 'Primary Archive for GuadaLinex: Linux for Andalucia', 0, NULL, 0);
1421-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (8, 17, NULL, true, NULL, 8, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.867154', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.447851', NULL, NULL, NULL, 'Primary Archive for Ubuntu Test', 0, NULL, 0);
1422-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (9, 28, 'packages to help my friends.', true, 1024, 1, 2, false, 3, 3, NULL, NULL, NULL, true, 'ppa', true, '2008-05-27 18:15:15.867684', 4, 0, 3, 1, 0, '2008-09-23 17:29:03.448178', NULL, NULL, NULL, 'PPA for Celso Providelo', 0, NULL, 0);
1423-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (10, 1, 'packages to help the humanity (you know, ubuntu)', true, 1024, 1, 2, false, 1, 1, NULL, NULL, NULL, true, 'ppa', true, '2008-05-27 18:15:15.868202', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.448488', NULL, NULL, NULL, 'PPA for Mark Shuttleworth', 0, NULL, 0);
1424-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (11, 52, 'I am not allowed to say, I have no privs.', true, 1024, 1, 2, false, 0, 0, NULL, NULL, NULL, true, 'ppa', true, '2008-05-27 18:15:15.868709', 1, 0, 0, 1, 0, '2008-09-23 17:29:03.448797', NULL, NULL, NULL, 'PPA for No Privileges Person', 0, NULL, 0);
1425-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (12, 17, 'Partner archive', true, NULL, 1, 4, false, NULL, NULL, NULL, NULL, NULL, false, 'partner', true, '2008-05-27 18:15:15.869209', 1, 0, 1, 0, 0, '2008-09-23 17:29:03.449157', NULL, NULL, NULL, 'Partner Archive for Ubuntu Linux', 0, NULL, 0);
1426-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (13, 17, 'Partner archive', true, NULL, 8, 4, false, NULL, NULL, NULL, NULL, NULL, false, 'partner', true, '2008-05-27 18:15:15.869732', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.449471', NULL, NULL, NULL, 'Partner Archive for Ubuntu Test', 0, NULL, 0);
1427-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (14, 17, 'Sample copy archive', true, NULL, 8, 6, false, NULL, NULL, NULL, NULL, NULL, false, 'samplecopyarchive', false, '2008-11-19 18:15:15.869732', 0, 0, 0, 0, 0, '2008-11-18 17:29:03.449471', NULL, NULL, NULL, 'Copy archive samplecopyarchive for Ubuntu Team', 0, NULL, 0);
1428-INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status) VALUES (15, 17, 'Debug archive', true, NULL, 1, 7, false, NULL, NULL, NULL, NULL, NULL, false, 'debug', true, '2009-04-17 10:09:10.859746', 0, 0, 0, 0, 0, '2009-04-17 10:01:03.449876', NULL, NULL, NULL, 'Ubuntu DEBUG archive', 0, NULL, 0);
1429+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (1, 17, NULL, true, NULL, 1, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:12.241774', 15, 1, 8, 5, 1, '2008-09-23 17:29:03.442606', NULL, NULL, NULL, 'Primary Archive for Ubuntu Linux', 0, NULL, 0, false);
1430+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (2, 1, NULL, true, NULL, 2, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.863812', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.445921', NULL, NULL, NULL, 'Primary Archive for Redhat Advanced Server', 0, NULL, 0, false);
1431+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (3, 1, NULL, true, NULL, 3, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.864941', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.446557', NULL, NULL, NULL, 'Primary Archive for Debian GNU/Linux', 0, NULL, 0, false);
1432+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (4, 1, NULL, true, NULL, 4, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.865502', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.44689', NULL, NULL, NULL, 'Primary Archive for The Gentoo Linux', 0, NULL, 0, false);
1433+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (5, 1, NULL, true, NULL, 5, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.866015', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.447202', NULL, NULL, NULL, 'Primary Archive for Kubuntu - Free KDE-based Linux', 0, NULL, 0, false);
1434+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (7, 4, NULL, true, NULL, 7, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.866529', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.447515', NULL, NULL, NULL, 'Primary Archive for GuadaLinex: Linux for Andalucia', 0, NULL, 0, false);
1435+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (8, 17, NULL, true, NULL, 8, 1, false, NULL, NULL, NULL, NULL, NULL, false, 'primary', true, '2008-05-27 18:15:15.867154', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.447851', NULL, NULL, NULL, 'Primary Archive for Ubuntu Test', 0, NULL, 0, false);
1436+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (9, 28, 'packages to help my friends.', true, 1024, 1, 2, false, 3, 3, NULL, NULL, NULL, true, 'ppa', true, '2008-05-27 18:15:15.867684', 4, 0, 3, 1, 0, '2008-09-23 17:29:03.448178', NULL, NULL, NULL, 'PPA for Celso Providelo', 0, NULL, 0, false);
1437+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (10, 1, 'packages to help the humanity (you know, ubuntu)', true, 1024, 1, 2, false, 1, 1, NULL, NULL, NULL, true, 'ppa', true, '2008-05-27 18:15:15.868202', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.448488', NULL, NULL, NULL, 'PPA for Mark Shuttleworth', 0, NULL, 0, false);
1438+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (11, 52, 'I am not allowed to say, I have no privs.', true, 1024, 1, 2, false, 0, 0, NULL, NULL, NULL, true, 'ppa', true, '2008-05-27 18:15:15.868709', 1, 0, 0, 1, 0, '2008-09-23 17:29:03.448797', NULL, NULL, NULL, 'PPA for No Privileges Person', 0, NULL, 0, false);
1439+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (12, 17, 'Partner archive', true, NULL, 1, 4, false, NULL, NULL, NULL, NULL, NULL, false, 'partner', true, '2008-05-27 18:15:15.869209', 1, 0, 1, 0, 0, '2008-09-23 17:29:03.449157', NULL, NULL, NULL, 'Partner Archive for Ubuntu Linux', 0, NULL, 0, false);
1440+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (13, 17, 'Partner archive', true, NULL, 8, 4, false, NULL, NULL, NULL, NULL, NULL, false, 'partner', true, '2008-05-27 18:15:15.869732', 0, 0, 0, 0, 0, '2008-09-23 17:29:03.449471', NULL, NULL, NULL, 'Partner Archive for Ubuntu Test', 0, NULL, 0, false);
1441+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (14, 17, 'Sample copy archive', true, NULL, 8, 6, false, NULL, NULL, NULL, NULL, NULL, false, 'samplecopyarchive', false, '2008-11-19 18:15:15.869732', 0, 0, 0, 0, 0, '2008-11-18 17:29:03.449471', NULL, NULL, NULL, 'Copy archive samplecopyarchive for Ubuntu Team', 0, NULL, 0, false);
1442+INSERT INTO archive (id, owner, description, enabled, authorized_size, distribution, purpose, private, sources_cached, binaries_cached, package_description_cache, fti, buildd_secret, require_virtualized, name, publish, date_updated, total_count, pending_count, succeeded_count, failed_count, building_count, date_created, signing_key, removed_binary_retention_days, num_old_versions_published, displayname, relative_build_score, external_dependencies, status, commercial) VALUES (15, 17, 'Debug archive', true, NULL, 1, 7, false, NULL, NULL, NULL, NULL, NULL, false, 'debug', true, '2009-04-17 10:09:10.859746', 0, 0, 0, 0, 0, '2009-04-17 10:01:03.449876', NULL, NULL, NULL, 'Ubuntu DEBUG archive', 0, NULL, 0, false);
1443
1444
1445 ALTER TABLE archive ENABLE TRIGGER ALL;
1446@@ -2404,18 +1034,6 @@
1447 ALTER TABLE archiveauthtoken ENABLE TRIGGER ALL;
1448
1449
1450-ALTER TABLE component DISABLE TRIGGER ALL;
1451-
1452-INSERT INTO component (id, name, description) VALUES (1, 'main', NULL);
1453-INSERT INTO component (id, name, description) VALUES (2, 'restricted', NULL);
1454-INSERT INTO component (id, name, description) VALUES (3, 'universe', NULL);
1455-INSERT INTO component (id, name, description) VALUES (4, 'multiverse', NULL);
1456-INSERT INTO component (id, name, description) VALUES (5, 'partner', 'This component contains partner packages only, which are not in the main Ubuntu archive.');
1457-
1458-
1459-ALTER TABLE component ENABLE TRIGGER ALL;
1460-
1461-
1462 ALTER TABLE archivedependency DISABLE TRIGGER ALL;
1463
1464
1465@@ -2423,20 +1041,6 @@
1466 ALTER TABLE archivedependency ENABLE TRIGGER ALL;
1467
1468
1469-ALTER TABLE packagesetgroup DISABLE TRIGGER ALL;
1470-
1471-
1472-
1473-ALTER TABLE packagesetgroup ENABLE TRIGGER ALL;
1474-
1475-
1476-ALTER TABLE packageset DISABLE TRIGGER ALL;
1477-
1478-
1479-
1480-ALTER TABLE packageset ENABLE TRIGGER ALL;
1481-
1482-
1483 ALTER TABLE archivepermission DISABLE TRIGGER ALL;
1484
1485 INSERT INTO archivepermission (id, date_created, person, permission, archive, component, sourcepackagename, packageset, explicit) VALUES (1, '2006-10-16 18:31:43.464753', 17, 1, 1, 3, NULL, NULL, false);
1486@@ -2476,222 +1080,6 @@
1487 ALTER TABLE authtoken ENABLE TRIGGER ALL;
1488
1489
1490-ALTER TABLE processor DISABLE TRIGGER ALL;
1491-
1492-INSERT INTO processor (id, family, name, title, description) VALUES (1, 1, '386', 'Intel 386', 'Intel 386 and its many derivatives and clones, the basic 32-bit chip in the x86 family');
1493-INSERT INTO processor (id, family, name, title, description) VALUES (2, 3, 'amd64', 'AMD 64bit', 'AMD 64bit');
1494-INSERT INTO processor (id, family, name, title, description) VALUES (3, 4, 'hppa', 'HPPA Processor', 'HPPA Processor');
1495-
1496-
1497-ALTER TABLE processor ENABLE TRIGGER ALL;
1498-
1499-
1500-ALTER TABLE builder DISABLE TRIGGER ALL;
1501-
1502-INSERT INTO builder (id, processor, name, title, description, owner, speedindex, builderok, failnotes, virtualized, url, manual, date_created, vm_host, active) VALUES (1, 1, 'bob', 'Bob The Builder', 'The default build-slave', 61, NULL, true, NULL, false, 'http://localhost:8221/', false, '2006-10-16 18:31:43.226724', NULL, true);
1503-INSERT INTO builder (id, processor, name, title, description, owner, speedindex, builderok, failnotes, virtualized, url, manual, date_created, vm_host, active) VALUES (2, 1, 'frog', 'The frog builder', 'The untrusted build-slave', 61, NULL, false, NULL, true, 'http://localhost:9221/', false, '2006-10-31 18:31:43.226724', 'localhost-host.ppa', true);
1504-
1505-
1506-ALTER TABLE builder ENABLE TRIGGER ALL;
1507-
1508-
1509-ALTER TABLE buildfarmjob DISABLE TRIGGER ALL;
1510-
1511-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (2, 1, false, '2004-09-27 11:57:13', '2004-09-27 11:55:13', '2004-09-27 11:57:14', NULL, 1, 1, 1, 1);
1512-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (6, 1, false, '2006-12-01 00:00:00', '2006-12-01 00:00:00', '2006-12-01 00:00:01', NULL, 1, 2, 1, 1);
1513-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (7, 1, false, '2005-03-24 00:00:00', '2005-03-24 23:58:43', '2005-03-25 00:00:03', NULL, 1, 1, 1, 1);
1514-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (8, 1, false, '2005-09-30 00:00:00', NULL, NULL, NULL, NULL, 6, NULL, 1);
1515-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (9, 1, false, '2005-10-01 00:00:00', '2005-10-01 23:56:41', '2005-10-02 00:00:01', NULL, 1, 2, 1, 1);
1516-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (10, 1, false, '2006-01-27 00:00:00', NULL, NULL, NULL, NULL, 1, NULL, 1);
1517-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (11, 1, false, '2006-02-14 00:00:00', NULL, NULL, NULL, NULL, 0, NULL, 1);
1518-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (12, 1, false, '2006-02-28 00:00:00', '2006-02-27 23:53:59', '2006-02-28 00:00:01', NULL, 1, 3, 1, 1);
1519-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (13, 1, false, '2006-03-21 00:00:00', '2006-03-21 00:58:33', '2006-03-21 01:00:03', NULL, 1, 5, 1, 1);
1520-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (14, 1, false, '2006-03-22 00:00:00', '2006-03-21 00:58:32', '2006-03-21 01:00:02', NULL, 1, 5, 1, 1);
1521-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (15, 1, false, '2006-03-22 00:00:01', '2006-03-21 00:58:30', '2006-03-21 01:00:00', NULL, 1, 5, 1, 1);
1522-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (16, 1, false, '2005-03-24 00:00:01', '2005-03-24 23:58:42', '2005-03-25 00:00:02', NULL, 1, 1, 1, 1);
1523-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (18, 1, false, '2004-09-27 11:57:14', '2004-09-27 11:55:12', '2004-09-27 11:57:13', NULL, 1, 1, 1, 1);
1524-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (19, 1, false, '2005-03-24 00:00:02', '2005-03-24 23:58:41', '2005-03-25 00:00:01', NULL, 1, 1, 1, 1);
1525-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (21, 1, false, '2006-12-01 00:00:01', NULL, NULL, NULL, NULL, 2, NULL, 1);
1526-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (22, 1, false, '2007-04-20 00:00:00', '2007-04-19 23:58:41', '2007-04-20 00:00:01', NULL, 1, 7, 1, 1);
1527-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (23, 1, false, '2006-04-11 12:00:00', NULL, NULL, NULL, NULL, 1, NULL, 1);
1528-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (24, 1, true, '2007-05-30 00:00:00', '2007-05-29 23:58:41', '2007-05-30 00:00:01', NULL, 1, 2, 1, 1);
1529-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (25, 1, true, '2007-07-08 12:00:00', NULL, NULL, NULL, NULL, 1, NULL, 1);
1530-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (26, 1, true, '2007-07-08 00:00:00', '2007-07-07 23:58:41', '2007-07-08 00:00:01', NULL, 1, 2, 1, 1);
1531-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (27, 1, true, '2007-07-24 00:00:00', '2007-07-23 23:58:41', '2007-07-24 00:00:01', NULL, 1, 1, 1, 1);
1532-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (28, 3, true, '2007-08-10 00:00:00', '2007-08-10 00:00:00', '2007-08-10 00:00:13', NULL, 1, 1, 1, 1);
1533-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (29, 1, false, '2007-08-09 21:54:18.553132', NULL, '2007-08-09 23:59:59', NULL, NULL, 1, NULL, 1);
1534-INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (30, 3, false, '2007-08-10 00:00:01', '2007-08-10 00:00:01', '2007-08-10 00:00:14', NULL, 1, 1, 1, 1);
1535-
1536-
1537-ALTER TABLE buildfarmjob ENABLE TRIGGER ALL;
1538-
1539-
1540-ALTER TABLE packagebuild DISABLE TRIGGER ALL;
1541-
1542-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (1, 2, 1, 0, NULL, NULL);
1543-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (2, 6, 1, 0, NULL, NULL);
1544-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (3, 7, 1, 0, NULL, NULL);
1545-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (4, 8, 1, 0, NULL, NULL);
1546-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (5, 9, 1, 0, NULL, NULL);
1547-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (6, 10, 1, 0, NULL, NULL);
1548-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (7, 11, 1, 0, NULL, NULL);
1549-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (8, 12, 1, 0, NULL, 'cpp (>= 4:4.0.1-3), gcc-4.0 (>= 4.0.1-2)');
1550-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (9, 13, 1, 0, NULL, NULL);
1551-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (10, 14, 1, 0, NULL, NULL);
1552-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (11, 15, 1, 0, NULL, NULL);
1553-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (12, 16, 1, 0, NULL, NULL);
1554-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (13, 18, 1, 0, NULL, NULL);
1555-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (14, 19, 1, 0, NULL, NULL);
1556-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (15, 21, 1, 0, NULL, NULL);
1557-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (16, 22, 1, 0, 91, NULL);
1558-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (17, 23, 1, 0, NULL, NULL);
1559-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (18, 24, 11, 0, NULL, NULL);
1560-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (19, 25, 9, 0, NULL, NULL);
1561-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (20, 26, 9, 0, NULL, NULL);
1562-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (21, 27, 9, 0, NULL, NULL);
1563-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (22, 28, 9, 0, NULL, NULL);
1564-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (23, 29, 12, 0, NULL, NULL);
1565-INSERT INTO packagebuild (id, build_farm_job, archive, pocket, upload_log, dependencies) VALUES (24, 30, 1, 0, NULL, NULL);
1566-
1567-
1568-ALTER TABLE packagebuild ENABLE TRIGGER ALL;
1569-
1570-
1571-ALTER TABLE section DISABLE TRIGGER ALL;
1572-
1573-INSERT INTO section (id, name) VALUES (1, 'base');
1574-INSERT INTO section (id, name) VALUES (2, 'web');
1575-INSERT INTO section (id, name) VALUES (3, 'editors');
1576-INSERT INTO section (id, name) VALUES (4, 'admin');
1577-INSERT INTO section (id, name) VALUES (5, 'comm');
1578-INSERT INTO section (id, name) VALUES (6, 'debian-installer');
1579-INSERT INTO section (id, name) VALUES (7, 'devel');
1580-INSERT INTO section (id, name) VALUES (8, 'doc');
1581-INSERT INTO section (id, name) VALUES (9, 'games');
1582-INSERT INTO section (id, name) VALUES (10, 'gnome');
1583-INSERT INTO section (id, name) VALUES (11, 'graphics');
1584-INSERT INTO section (id, name) VALUES (12, 'interpreters');
1585-INSERT INTO section (id, name) VALUES (13, 'kde');
1586-INSERT INTO section (id, name) VALUES (14, 'libdevel');
1587-INSERT INTO section (id, name) VALUES (15, 'libs');
1588-INSERT INTO section (id, name) VALUES (16, 'mail');
1589-INSERT INTO section (id, name) VALUES (17, 'math');
1590-INSERT INTO section (id, name) VALUES (18, 'misc');
1591-INSERT INTO section (id, name) VALUES (19, 'net');
1592-INSERT INTO section (id, name) VALUES (20, 'news');
1593-INSERT INTO section (id, name) VALUES (21, 'oldlibs');
1594-INSERT INTO section (id, name) VALUES (22, 'otherosfs');
1595-INSERT INTO section (id, name) VALUES (23, 'perl');
1596-INSERT INTO section (id, name) VALUES (24, 'python');
1597-INSERT INTO section (id, name) VALUES (25, 'shells');
1598-INSERT INTO section (id, name) VALUES (26, 'sound');
1599-INSERT INTO section (id, name) VALUES (27, 'tex');
1600-INSERT INTO section (id, name) VALUES (28, 'text');
1601-INSERT INTO section (id, name) VALUES (29, 'translations');
1602-INSERT INTO section (id, name) VALUES (30, 'utils');
1603-INSERT INTO section (id, name) VALUES (31, 'x11');
1604-INSERT INTO section (id, name) VALUES (32, 'electronics');
1605-INSERT INTO section (id, name) VALUES (33, 'embedded');
1606-INSERT INTO section (id, name) VALUES (34, 'hamradio');
1607-INSERT INTO section (id, name) VALUES (35, 'science');
1608-
1609-
1610-ALTER TABLE section ENABLE TRIGGER ALL;
1611-
1612-
1613-ALTER TABLE sourcepackagerecipe DISABLE TRIGGER ALL;
1614-
1615-
1616-
1617-ALTER TABLE sourcepackagerecipe ENABLE TRIGGER ALL;
1618-
1619-
1620-ALTER TABLE sourcepackagerecipebuild DISABLE TRIGGER ALL;
1621-
1622-
1623-
1624-ALTER TABLE sourcepackagerecipebuild ENABLE TRIGGER ALL;
1625-
1626-
1627-ALTER TABLE sourcepackagerelease DISABLE TRIGGER ALL;
1628-
1629-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (14, 1, '0.9', '2004-09-27 11:57:13', 1, NULL, 1, 'Mozilla dummy Changelog......', 'gcc-3.4-base, libc6 (>= 2.3.2.ds1-4), gcc-3.4 (>= 3.4.1-4sarge1), gcc-3.4 (<< 3.4.2), libstdc++6-dev (>= 3.4.1-4sarge1), pmount', 'bacula-common (= 1.34.6-2), bacula-director-common (= 1.34.6-2), postgresql-client (>= 7.4), pmount', 'any', NULL, 1, 1, 1, 1, 1, 'Mark Shuttleworth <mark@canonical.com>', '3.6.2', '1.0', 'mozilla-firefox', 1, NULL, 'gcc-4.0, pmount', 'gcc-4.0-base, pmount', NULL, NULL);
1630-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (15, 1, '1.0', '2004-09-27 11:57:13', 1, NULL, 1, NULL, NULL, NULL, 'all', NULL, 2, 1, 9, 3, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1631-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (16, 1, '1.0-1', '2005-03-10 16:30:00', 1, NULL, 1, NULL, NULL, NULL, 'any', NULL, 3, 1, 10, 3, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1632-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (17, 1, '0.99.6-1', '2005-03-14 18:00:00', 1, NULL, 1, NULL, NULL, NULL, 'i386', NULL, 2, 1, 10, 1, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1633-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (20, 1, '0.1-1', '2005-03-24 20:59:31.439579', 1, NULL, 1, 'pmount (0.1-1) hoary; urgency=low
1634-
1635- * Fix description (Malone #1)
1636- * Fix debian (Debian #2000)
1637- * Fix warty (Warty Ubuntu #1)
1638-
1639- -- Sample Person <test@canonical.com> Tue, 7 Feb 2006 12:10:08 +0300', NULL, NULL, 'all', NULL, 2, 1, 14, 3, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1640-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (21, 1, '0.1-2', '2005-06-24 20:59:31.439579', 1, NULL, 1, 'This is a placeholder changelog for pmount 0.1-2', NULL, NULL, 'powerpc', NULL, 1, 1, 14, 3, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1641-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (23, 1, '1.0.8-1ubuntu1', '2005-02-03 08:50:00', 1, NULL, 1, 'alsa-utils (1.0.8-1ubuntu1) warty; urgency=low
1642-
1643- * Placeholder
1644-
1645- -- Sample Person <test@canonical.com> Tue, 7 Feb 2006 12:10:08 +0300', NULL, NULL, 'all', NULL, 1, 1, 19, 1, 1, 'Mark Shuttleworth <mark@example.com>', '3.6.2', '1.0', 'alsa-mixer', 1, NULL, NULL, NULL, NULL, NULL);
1646-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (24, 1, '1.0.9a-4', '2005-07-01 22:47:00', 1, NULL, 1, 'alsa-utils (1.0.9a-4) warty; urgency=low
1647-
1648- * Placeholder
1649-
1650- -- Sample Person <test@canonical.com> Tue, 7 Feb 2006 12:10:08 +0300', NULL, NULL, 'any', NULL, 2, 1, 19, 8, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1651-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (25, 1, '1.0.9a-4ubuntu1', '2005-08-01 14:10:00', 1, NULL, 1, 'alsa-utils (1.0.9a-4ubuntu1) hoary; urgency=low
1652-
1653- * Placeholder
1654- LP: #10
1655- LP: #999
1656- LP: #badid
1657- LP: #7, #8,
1658- #11
1659-
1660- -- Sample Person <test@canonical.com> Tue, 7 Feb 2006 12:10:08 +0300', NULL, NULL, 'all', NULL, 1, 16, 19, 3, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1661-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (26, 1, 'cr.g7-37', '2005-12-22 18:19:00', 1, NULL, 1, NULL, NULL, NULL, 'i386', NULL, 1, 16, 20, 3, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1662-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (27, 1, 'b8p', '2006-02-10 11:19:00', 1, NULL, 1, 'libstdc++ (9.9-1) hoary; urgency=high
1663-
1664- * Placeholder
1665-
1666- -- Sample Person <test@canonical.com> Tue, 10 Feb 2006 10:10:08 +0300', NULL, NULL, 'powerpc i386', NULL, 1, 16, 21, 3, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1667-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (28, 1, '2.6.15.3', '2005-12-22 18:19:00', 1, NULL, 1, NULL, NULL, NULL, 'any', NULL, 1, 16, 22, 3, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1668-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (29, 1, '0.00', '2005-12-22 18:19:00', 1, NULL, 1, NULL, NULL, NULL, 'all', NULL, 1, 16, 17, 3, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1669-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (30, 1, '1.0', '2006-09-28 18:19:00', 1, NULL, 1, NULL, NULL, NULL, 'all', NULL, 1, 16, 20, 10, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1670-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (31, 1, '1.0', '2006-09-28 18:19:01', 1, NULL, 1, NULL, NULL, NULL, 'all', NULL, 1, 16, 20, 10, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1671-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (32, 1, '1.0', '2006-12-01 13:19:01', 1, NULL, 1, NULL, NULL, NULL, 'all', NULL, 1, 16, 23, 10, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1672-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (33, 1, '1.0', '2006-12-01 13:19:01', 1, NULL, 1, NULL, NULL, NULL, 'all', NULL, 1, 16, 24, 10, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1673-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (34, 1, '1.0', '2007-02-15 14:19:01', 1, NULL, 1, NULL, NULL, NULL, 'i386', NULL, 29, 16, 25, 10, 1, NULL, NULL, '1.0', NULL, 1, NULL, NULL, NULL, NULL, NULL);
1674-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (35, 1, '1.0', '2006-04-11 11:19:01', 1, NULL, 1, NULL, NULL, NULL, 'any', NULL, 1, 16, 26, 1, 1, NULL, NULL, '1.0', NULL, 10, NULL, NULL, NULL, NULL, NULL);
1675-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (36, 243606, '1.0-1', '2007-08-09 21:25:37.832976', 1, NULL, 5, 'commercialpackage (1.0-1) breezy; urgency=low
1676-
1677- * Initial version
1678- Address for testing linkification: Foo Bar <foo.bar@canonical.com>
1679-
1680- -- Julian Edwards <launchpad@julian-edwards.com> Thu, 16 Feb 2006 15:34:09 +0000', '', '', 'any', '-----BEGIN PGP SIGNED MESSAGE-----
1681-Hash: SHA1
1682-
1683-Format: 1.0
1684-Source: commercialpackage
1685-Version: 1.0-1
1686-Binary: commercialpackage
1687-Maintainer: Julian Edwards <launchpad@julian-edwards.com>
1688-Architecture: any
1689-Standards-Version: 3.6.2
1690-Files:
1691- f27fb7494c5afbb0fb10b78d16f7da37 179 commercialpackage_1.0.orig.tar.gz
1692- 7d6fa416334c6da3b954bf9ebff6e9ae 610 commercialpackage_1.0-1.diff.gz
1693-
1694-Version: GnuPG v1.4.6 (GNU/Linux)
1695-
1696-iD8DBQFGtzTjWhGlTF8G/HcRAtFsAJ4hHyKhOnsUOQDI+SAk000DmFAnUgCcC84J
1697-3F4bEPeRcnUjCFI/hjR0kxg=
1698-=Tjln
1699-', 7, 243606, 27, 10, 1, 'Julian Edwards <launchpad@julian-edwards.com>', '3.6.2', '1.0', 'commercialpackage', 12, NULL, NULL, NULL, NULL, NULL);
1700-INSERT INTO sourcepackagerelease (id, creator, version, dateuploaded, urgency, dscsigningkey, component, changelog_entry, builddepends, builddependsindep, architecturehintlist, dsc, section, maintainer, sourcepackagename, upload_distroseries, format, dsc_maintainer_rfc822, dsc_standards_version, dsc_format, dsc_binaries, upload_archive, copyright, build_conflicts, build_conflicts_indep, sourcepackage_recipe_build, changelog) VALUES (37, 1, '1.0', '2006-04-11 11:19:01', 1, NULL, 1, NULL, NULL, NULL, 'i386', NULL, 1, 16, 26, 1, 1, NULL, NULL, '1.0', NULL, 11, NULL, NULL, NULL, NULL, NULL);
1701-
1702-
1703-ALTER TABLE sourcepackagerelease ENABLE TRIGGER ALL;
1704-
1705-
1706 ALTER TABLE binarypackagebuild DISABLE TRIGGER ALL;
1707
1708 INSERT INTO binarypackagebuild (id, package_build, distro_arch_series, source_package_release) VALUES (2, 1, 1, 14);
1709@@ -2723,43 +1111,6 @@
1710 ALTER TABLE binarypackagebuild ENABLE TRIGGER ALL;
1711
1712
1713-ALTER TABLE binarypackagename DISABLE TRIGGER ALL;
1714-
1715-INSERT INTO binarypackagename (id, name) VALUES (6, 'foobar');
1716-INSERT INTO binarypackagename (id, name) VALUES (8, 'mozilla-firefox');
1717-INSERT INTO binarypackagename (id, name) VALUES (13, 'pmount');
1718-INSERT INTO binarypackagename (id, name) VALUES (14, 'linux-2.6.12');
1719-INSERT INTO binarypackagename (id, name) VALUES (15, 'at');
1720-INSERT INTO binarypackagename (id, name) VALUES (16, 'cdrkit');
1721-INSERT INTO binarypackagename (id, name) VALUES (17, 'commercialpackage');
1722-INSERT INTO binarypackagename (id, name) VALUES (18, 'mozilla-firefox-data');
1723-
1724-
1725-ALTER TABLE binarypackagename ENABLE TRIGGER ALL;
1726-
1727-
1728-ALTER TABLE binarypackagerelease DISABLE TRIGGER ALL;
1729-
1730-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (6, 6, '1.0', 'foobar is bad', 'foobar should be removed', 6, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2006-12-01 17:50:10.878712', NULL, NULL, NULL);
1731-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (12, 8, '0.9', 'Mozilla Firefox Web Browser', 'Mozilla Firefox Web Browser is .....', 2, 1, 1, 1, 10, NULL, 'gcc-3.4-base, libc6 (>= 2.3.2.ds1-4), gcc-3.4 (>= 3.4.1-4sarge1), gcc-3.4 (<< 3.4.2), libstdc++6-dev (>= 3.4.1-4sarge1)', 'gcc-3.4-base, libc6 (>= 2.3.2.ds1-4), gcc-3.4 (>= 3.4.1-4sarge1), gcc-3.4 (<< 3.4.2), libstdc++6-dev (>= 3.4.1-4sarge1)', 'firefox-gnome-support (= 1.0.7-0ubuntu20), latex-xft-fonts, xprint', 'firefox, mozilla-web-browser', 'gnome-mozilla-browser', 'mozilla-firefox', false, NULL, true, NULL, '2005-10-19 17:50:10.874189', 'pmount, foo', 'pmount, bar', 'pmount, baz');
1732-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (15, 13, '0.1-1', 'pmount shortdesc', 'pmount description', 7, 1, 1, 1, 40, NULL, 'at (>= 3.14156), linux-2.6.12, tramp-package', NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2005-10-19 17:50:10.878712', NULL, NULL, NULL);
1733-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (16, 14, '2.6.12.20', 'the kernel of boom', 'this kernel is like the crystal method: a temple of boom', 14, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2005-10-19 17:50:10.878712', NULL, NULL, NULL);
1734-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (17, 15, '3.14156', 'at the mountains of madness', 'lovecraft long before enunciated that the mountains were not safe, but you did not believe him', 15, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2005-10-19 17:50:10.878712', NULL, NULL, NULL);
1735-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (18, 13, '2:1.9-1', 'pmount shortdesc', 'pmount description', 16, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, true, NULL, '2005-10-19 17:50:10.878712', NULL, NULL, NULL);
1736-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (19, 8, '0.9', 'Mozilla Firefox Web Browser', 'Mozilla Firefox Web Browser is .....', 18, 1, 1, 1, 10, NULL, 'gcc-3.4-base, libc6 (>= 2.3.2.ds1-4), gcc-3.4 (>= 3.4.1-4sarge1), gcc-3.4 (<< 3.4.2), libstdc++6-dev (>= 3.4.1-4sarge1)', 'gcc-3.4-base, libc6 (>= 2.3.2.ds1-4), gcc-3.4 (>= 3.4.1-4sarge1), gcc-3.4 (<< 3.4.2), libstdc++6-dev (>= 3.4.1-4sarge1)', 'firefox-gnome-support (= 1.0.7-0ubuntu20), latex-xft-fonts, xprint', 'firefox, mozilla-web-browser', 'gnome-mozilla-browser', 'mozilla-firefox', false, NULL, true, NULL, '2005-10-19 17:50:10.874189', NULL, NULL, NULL);
1737-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (20, 13, '0.1-1', 'pmount shortdesc', 'pmount description', 19, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2005-10-19 17:50:10.878712', NULL, NULL, NULL);
1738-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (21, 16, '1.0', 'cdrkit is nice', 'cdrkit should be kept', 21, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2006-12-01 17:50:10.878712', NULL, NULL, NULL);
1739-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (22, 8, '1.0', 'ff from iceweasel', 'iceweasel huh ?', 23, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, true, NULL, '2006-04-11 12:50:10.878712', NULL, NULL, NULL);
1740-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (23, 13, '0.1-1', 'pmount shortdesc', 'pmount description', 27, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2007-07-24 17:50:10.878712', NULL, NULL, NULL);
1741-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (24, 8, '1.0', 'ff from iceweasel', 'iceweasel huh ?', 28, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, true, NULL, '2006-08-10 12:50:10.878712', NULL, NULL, NULL);
1742-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (25, 17, '1.0-1', 'Stuff for testing', ' This package is simply used for testing soyuz', 29, 1, 5, 7, 20, '', '', '', '', '', '', '', false, 8, true, NULL, '2007-08-09 21:54:18.456616', NULL, NULL, NULL);
1743-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (26, 8, '0.9', 'Mozilla Firefox Web Browser', 'Mozilla Firefox Web Browser is .....', 30, 1, 1, 1, 10, '', '', '', '', '', '', '', false, NULL, true, NULL, '2005-10-19 17:50:10.874189', NULL, NULL, NULL);
1744-INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (27, 18, '0.9', 'Mozilla Firefox Data', 'Mozilla Firefox Data is .....', 2, 1, 1, 1, 10, '', '', '', '', '', '', '', false, NULL, false, NULL, '2005-10-19 17:50:10.874189', NULL, NULL, NULL);
1745-
1746-
1747-ALTER TABLE binarypackagerelease ENABLE TRIGGER ALL;
1748-
1749-
1750 ALTER TABLE binarypackagefile DISABLE TRIGGER ALL;
1751
1752 INSERT INTO binarypackagefile (binarypackagerelease, libraryfile, filetype, id) VALUES (6, 55, 1, 5);
1753@@ -2776,6 +1127,21 @@
1754 ALTER TABLE binarypackagefile ENABLE TRIGGER ALL;
1755
1756
1757+ALTER TABLE binarypackagename DISABLE TRIGGER ALL;
1758+
1759+INSERT INTO binarypackagename (id, name) VALUES (6, 'foobar');
1760+INSERT INTO binarypackagename (id, name) VALUES (8, 'mozilla-firefox');
1761+INSERT INTO binarypackagename (id, name) VALUES (13, 'pmount');
1762+INSERT INTO binarypackagename (id, name) VALUES (14, 'linux-2.6.12');
1763+INSERT INTO binarypackagename (id, name) VALUES (15, 'at');
1764+INSERT INTO binarypackagename (id, name) VALUES (16, 'cdrkit');
1765+INSERT INTO binarypackagename (id, name) VALUES (17, 'commercialpackage');
1766+INSERT INTO binarypackagename (id, name) VALUES (18, 'mozilla-firefox-data');
1767+
1768+
1769+ALTER TABLE binarypackagename ENABLE TRIGGER ALL;
1770+
1771+
1772 ALTER TABLE binarypackagepublishinghistory DISABLE TRIGGER ALL;
1773
1774 INSERT INTO binarypackagepublishinghistory (id, binarypackagerelease, distroarchseries, status, component, section, priority, datecreated, datepublished, datesuperseded, supersededby, datemadepending, scheduleddeletiondate, dateremoved, pocket, archive, removed_by, removal_comment) VALUES (9, 12, 1, 2, 1, 1, 10, '2005-05-05 00:00:00', '2005-06-18 00:00:00', NULL, NULL, NULL, NULL, NULL, 0, 1, NULL, NULL);
1775@@ -2809,6 +1175,28 @@
1776 ALTER TABLE binarypackagepublishinghistory ENABLE TRIGGER ALL;
1777
1778
1779+ALTER TABLE binarypackagerelease DISABLE TRIGGER ALL;
1780+
1781+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (6, 6, '1.0', 'foobar is bad', 'foobar should be removed', 6, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2006-12-01 17:50:10.878712', NULL, NULL, NULL);
1782+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (12, 8, '0.9', 'Mozilla Firefox Web Browser', 'Mozilla Firefox Web Browser is .....', 2, 1, 1, 1, 10, NULL, 'gcc-3.4-base, libc6 (>= 2.3.2.ds1-4), gcc-3.4 (>= 3.4.1-4sarge1), gcc-3.4 (<< 3.4.2), libstdc++6-dev (>= 3.4.1-4sarge1)', 'gcc-3.4-base, libc6 (>= 2.3.2.ds1-4), gcc-3.4 (>= 3.4.1-4sarge1), gcc-3.4 (<< 3.4.2), libstdc++6-dev (>= 3.4.1-4sarge1)', 'firefox-gnome-support (= 1.0.7-0ubuntu20), latex-xft-fonts, xprint', 'firefox, mozilla-web-browser', 'gnome-mozilla-browser', 'mozilla-firefox', false, NULL, true, NULL, '2005-10-19 17:50:10.874189', 'pmount, foo', 'pmount, bar', 'pmount, baz');
1783+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (15, 13, '0.1-1', 'pmount shortdesc', 'pmount description', 7, 1, 1, 1, 40, NULL, 'at (>= 3.14156), linux-2.6.12, tramp-package', NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2005-10-19 17:50:10.878712', NULL, NULL, NULL);
1784+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (16, 14, '2.6.12.20', 'the kernel of boom', 'this kernel is like the crystal method: a temple of boom', 14, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2005-10-19 17:50:10.878712', NULL, NULL, NULL);
1785+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (17, 15, '3.14156', 'at the mountains of madness', 'lovecraft long before enunciated that the mountains were not safe, but you did not believe him', 15, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2005-10-19 17:50:10.878712', NULL, NULL, NULL);
1786+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (18, 13, '2:1.9-1', 'pmount shortdesc', 'pmount description', 16, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, true, NULL, '2005-10-19 17:50:10.878712', NULL, NULL, NULL);
1787+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (19, 8, '0.9', 'Mozilla Firefox Web Browser', 'Mozilla Firefox Web Browser is .....', 18, 1, 1, 1, 10, NULL, 'gcc-3.4-base, libc6 (>= 2.3.2.ds1-4), gcc-3.4 (>= 3.4.1-4sarge1), gcc-3.4 (<< 3.4.2), libstdc++6-dev (>= 3.4.1-4sarge1)', 'gcc-3.4-base, libc6 (>= 2.3.2.ds1-4), gcc-3.4 (>= 3.4.1-4sarge1), gcc-3.4 (<< 3.4.2), libstdc++6-dev (>= 3.4.1-4sarge1)', 'firefox-gnome-support (= 1.0.7-0ubuntu20), latex-xft-fonts, xprint', 'firefox, mozilla-web-browser', 'gnome-mozilla-browser', 'mozilla-firefox', false, NULL, true, NULL, '2005-10-19 17:50:10.874189', NULL, NULL, NULL);
1788+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (20, 13, '0.1-1', 'pmount shortdesc', 'pmount description', 19, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2005-10-19 17:50:10.878712', NULL, NULL, NULL);
1789+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (21, 16, '1.0', 'cdrkit is nice', 'cdrkit should be kept', 21, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2006-12-01 17:50:10.878712', NULL, NULL, NULL);
1790+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (22, 8, '1.0', 'ff from iceweasel', 'iceweasel huh ?', 23, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, true, NULL, '2006-04-11 12:50:10.878712', NULL, NULL, NULL);
1791+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (23, 13, '0.1-1', 'pmount shortdesc', 'pmount description', 27, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, '2007-07-24 17:50:10.878712', NULL, NULL, NULL);
1792+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (24, 8, '1.0', 'ff from iceweasel', 'iceweasel huh ?', 28, 1, 1, 1, 40, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, true, NULL, '2006-08-10 12:50:10.878712', NULL, NULL, NULL);
1793+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (25, 17, '1.0-1', 'Stuff for testing', ' This package is simply used for testing soyuz', 29, 1, 5, 7, 20, '', '', '', '', '', '', '', false, 8, true, NULL, '2007-08-09 21:54:18.456616', NULL, NULL, NULL);
1794+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (26, 8, '0.9', 'Mozilla Firefox Web Browser', 'Mozilla Firefox Web Browser is .....', 30, 1, 1, 1, 10, '', '', '', '', '', '', '', false, NULL, true, NULL, '2005-10-19 17:50:10.874189', NULL, NULL, NULL);
1795+INSERT INTO binarypackagerelease (id, binarypackagename, version, summary, description, build, binpackageformat, component, section, priority, shlibdeps, depends, recommends, suggests, conflicts, replaces, provides, essential, installedsize, architecturespecific, fti, datecreated, pre_depends, enhances, breaks) VALUES (27, 18, '0.9', 'Mozilla Firefox Data', 'Mozilla Firefox Data is .....', 2, 1, 1, 1, 10, '', '', '', '', '', '', '', false, NULL, false, NULL, '2005-10-19 17:50:10.874189', NULL, NULL, NULL);
1796+
1797+
1798+ALTER TABLE binarypackagerelease ENABLE TRIGGER ALL;
1799+
1800+
1801 ALTER TABLE binarypackagereleasedownloadcount DISABLE TRIGGER ALL;
1802
1803
1804@@ -2857,61 +1245,6 @@
1805 ALTER TABLE bounty ENABLE TRIGGER ALL;
1806
1807
1808-ALTER TABLE message DISABLE TRIGGER ALL;
1809-
1810-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (1, '2004-09-24 20:58:04.684057', 'PEBCAK', 16, NULL, NULL, 'foo@example.com-332342--1231', NULL, NULL);
1811-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (3, '2004-09-24 21:17:17.153792', 'Reproduced on AIX', 12, NULL, NULL, 'sdsdfsfd', NULL, NULL);
1812-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (4, '2004-09-24 21:24:03.922564', 'Re: Reproduced on AIX', 12, NULL, NULL, 'sdfssfdfsd', NULL, NULL);
1813-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (5, '2004-09-24 21:29:27.407354', 'Fantastic idea, I''d really like to see this', 12, NULL, NULL, 'dxssdfsdgf', NULL, NULL);
1814-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (6, '2004-09-24 21:35:20.125564', 'Strange bug with duplicate messages.', 12, NULL, NULL, 'sdfsfwew', NULL, NULL);
1815-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (7, '2005-01-14 17:20:12.820778', 'Reflow problems with complex page layouts', 12, NULL, NULL, '<20050114172012.6687.51124.malonedeb@localhost.localdomain>', NULL, NULL);
1816-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (8, '2005-01-14 17:27:03.702622', 'Firefox install instructions should be complete', 12, NULL, NULL, '<20050114172703.6687.71983.malonedeb@localhost.localdomain>', NULL, NULL);
1817-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (9, '2005-01-14 17:35:39.548665', 'Firefox crashes when Save As dialog for a nonexistent window is closed', 12, NULL, NULL, '<20050114173539.6687.81610.malonedeb@localhost.localdomain>', NULL, NULL);
1818-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (10, '2004-10-05 00:00:00', 'Re: Bug Title Test', 12, NULL, NULL, '<20050831114528.7616.78129.malone@localhost.localdomain>', NULL, NULL);
1819-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (11, '2005-10-14 15:12:29.602117', 'A test bug', 16, NULL, NULL, '<20051014151229.28962.1536.malonedeb@localhost.localdomain>', NULL, NULL);
1820-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (12, '2005-10-14 12:25:21.508923', 'Re: Newly installed plug-in doesn''t seem to be used', 16, NULL, NULL, '<20051014122521.14276.39260.lptickets@localhost.localdomain>', NULL, NULL);
1821-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (13, '2005-10-14 13:28:11.554476', 'Re: Slow system', 12, NULL, NULL, '<20051014132811.14276.65873.lptickets@localhost.localdomain>', NULL, NULL);
1822-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (14, '2005-10-28 09:10:17.13237', 'Printing doesn''t work', 12, NULL, 3, '<20051028091017.6690.9505.malonedeb@localhost.localdomain>', NULL, NULL);
1823-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (15, '2006-02-23 16:42:14.080227', 'Thunderbird crashes', 16, NULL, 1, '<20060223164214.9126.7558.malonedeb@localhost.localdomain>', NULL, NULL);
1824-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (16, '2006-06-16 17:12:54', 'Unicode™', 16, NULL, NULL, '<20060616141252.22134.71562@localhost.localdomain>', NULL, 51);
1825-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (17, '2006-02-22 19:42:21.890299', 'another test bug', 16, NULL, 1, '<20060222194221.25842.69665.malonedeb@banzai.async.com.br>', NULL, NULL);
1826-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (18, '2006-07-20 20:48:24.975495', 'Re: Continue playing after shutdown', 16, NULL, NULL, '<20060720204825.13277.37433.lptickets@Bourdieu.Contre.COM>', NULL, NULL);
1827-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (19, '2006-07-20 20:49:47.551344', 'Re: mailto: problem in webpage', 16, NULL, NULL, '<20060720204947.13277.79684.lptickets@Bourdieu.Contre.COM>', NULL, NULL);
1828-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (20, '2006-07-20 20:52:07.054216', 'Re: Installation of Java Runtime Environment for Mozilla', 16, NULL, NULL, '<20060720205207.13277.68582.lptickets@Bourdieu.Contre.COM>', NULL, NULL);
1829-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (21, '2006-07-20 20:53:53.684848', 'Re: Play DVDs in Totem', 16, NULL, NULL, '<20060720205354.13277.37000.lptickets@Bourdieu.Contre.COM>', NULL, NULL);
1830-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (22, '2006-07-20 20:56:35.442839', 'Re: mailto: problem in webpage', 12, NULL, NULL, '<20060720205635.13277.87295.lptickets@Bourdieu.Contre.COM>', NULL, NULL);
1831-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (23, '2006-07-20 23:11:24.975495', 'Re: Continue playing after shutdown', 12, NULL, NULL, '<20061201222020.597.97888.lptickets@Huxley.Contre.COM>', NULL, NULL);
1832-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (24, '2007-03-15 20:33:56.67893', 'Make Jokosher use autoaudiosink', 26, NULL, NULL, '<20070315203356.12919.76581.malonedeb@localhost>', NULL, NULL);
1833-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (25, '2007-03-15 20:34:26.518114', 'Re: Make Jokosher use autoaudiosink', 50, NULL, NULL, '<20070315203426.12919.54628.malone@localhost>', NULL, NULL);
1834-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (26, '2007-03-15 20:35:10.133383', 'Re: Make Jokosher use autoaudiosink', 66, NULL, NULL, '<20070315203510.12919.22697.malone@localhost>', NULL, NULL);
1835-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (27, '2007-03-15 20:36:01.779544', 'Autoaudiosink is no longer under development', 63, NULL, NULL, '<20070315203601.12919.29640.malone@localhost>', NULL, NULL);
1836-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (28, '2007-03-15 20:36:57.133832', 'Re: Autoaudiosink is no longer under development', 27, NULL, NULL, '<20070315203657.12919.48585.malone@localhost>', NULL, NULL);
1837-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (29, '2007-03-15 20:37:27.991571', 'This is a really new title', 33, NULL, NULL, '<20070315203728.12919.76787.malone@localhost>', NULL, NULL);
1838-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (30, '2007-03-15 20:37:51.544376', 'Re: Make Jokosher use autoaudiosink', 3, NULL, NULL, '<20070315203751.12919.49072.malone@localhost>', NULL, NULL);
1839-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (31, '2007-03-15 20:41:18.635493', 'Copy, Cut and Delete operations should work on selections', 8, NULL, NULL, '<20070315204118.14326.61124.malonedeb@localhost>', NULL, NULL);
1840-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (32, '2007-03-15 20:41:42.154264', 'Re: Copy, Cut and Delete operations should work on selections', 16, NULL, NULL, '<20070315204142.14326.82988.launchpad@localhost>', NULL, NULL);
1841-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (33, '2007-03-15 20:43:14.981111', 'Re: Copy, Cut and Delete operations should work on selections', 45, NULL, NULL, '<20070315204315.14326.75272.malone@localhost>', NULL, NULL);
1842-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (34, '2007-03-15 20:45:15.852052', 'Re: Copy, Cut and Delete operations should work on selections', 13, NULL, NULL, '<20070315204515.14326.38817.malone@localhost>', NULL, NULL);
1843-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (35, '2007-03-15 20:45:51.817826', 'Re: Copy, Cut and Delete operations should work on selections', 9, NULL, NULL, '<20070315204551.14326.36994.malone@localhost>', NULL, NULL);
1844-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (36, '2007-03-15 20:46:49.83307', 'Re: Copy, Cut and Delete operations should work on selections', 6, NULL, NULL, '<20070315204649.14326.69581.malone@localhost>', NULL, NULL);
1845-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (37, '2007-07-27 20:00:58.299796', 'Launchpad CSS and JS is not testible', 12, NULL, NULL, '<20070727200058.25131.76173.malonedeb@autumn.annrky-sinzui.local>', NULL, NULL);
1846-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (38, '2007-07-27 20:29:46.25854', 'Re: Launchpad CSS and JS is not testible', 12, NULL, NULL, '<20070727202946.25131.16206.malone@autumn.annrky-sinzui.local>', NULL, NULL);
1847-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (39, '2007-08-09 11:39:16.836856', 'jokosher exposes personal details in its actions portlet', 63, NULL, NULL, '<20070809113916.26819.83859.malonedeb@localhost.localdomain>', NULL, NULL);
1848-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (40, '2004-12-18 16:30:19.103679', 'Nonsensical bugs are useless', 16, NULL, NULL, '<20071218163019.18924.87555.malonedeb@localhost>', NULL, NULL);
1849-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (41, '2007-12-18 16:30:47.889614', 'Re: Nonsensical bugs are useless', 16, NULL, NULL, '<20071218163048.18924.13348.launchpad@localhost>', NULL, NULL);
1850-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (42, '2007-12-18 16:30:47.889614', 'Re: Nonsensical bugs are useless', 16, NULL, NULL, '<20071218163048.18924.86681.launchpad@localhost>', NULL, NULL);
1851-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (43, '2007-12-18 16:31:34.790641', 'Re: Nonsensical bugs are useless', 62, NULL, NULL, '<20071218163134.18996.53651.launchpad@localhost>', NULL, NULL);
1852-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (44, '2005-05-13 16:37:37', 'gnome-volume-manager: dvd+rw unreadable when automounted in burner because mounted read/write', 243614, NULL, NULL, '<4284D7D1.6010208@gmx.de>', NULL, 75);
1853-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (45, '2005-05-17 18:54:29', 'Re: Bug#308994: gnome-volume-manager: dvd+rw unreadable when automounted in burner because mounted read/write', 243615, 44, NULL, '<20050517185429.GB20786@spring.luon.net>', NULL, 76);
1854-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (46, '2005-05-17 19:24:25', 'Re: Bug#308994: gnome-volume-manager: dvd+rw unreadable when automounted in burner because mounted read/write', 243614, 45, NULL, '<428A44E9.6090802@gmx.de>', NULL, 77);
1855-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (47, '2005-05-17 20:20:44', 'Re: Bug#308994: gnome-volume-manager: dvd+rw unreadable when automounted in burner because mounted read/write', 243615, 46, NULL, '<20050517202044.GA23231@spring.luon.net>', NULL, 78);
1856-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (48, '2005-06-17 14:00:11', 'Re: Bug#308994: gnome-volume-manager: dvd+rw unreadable when automounted in burner because mounted read/write', 243616, 46, NULL, '<20050617140011.GA15638@piware.de>', NULL, 79);
1857-INSERT INTO message (id, datecreated, subject, owner, parent, distribution, rfc822msgid, fti, raw) VALUES (49, '2005-06-25 10:13:10', 'Re: Bug#308994: gnome-volume-manager: dvd+rw unreadable when automounted in burner because mounted read/write', 243614, NULL, NULL, '<42BD2E36.9090809@gmx.de>', NULL, 81);
1858-
1859-
1860-ALTER TABLE message ENABLE TRIGGER ALL;
1861-
1862-
1863 ALTER TABLE bountymessage DISABLE TRIGGER ALL;
1864
1865
1866@@ -2929,53 +1262,8 @@
1867 ALTER TABLE bountysubscription ENABLE TRIGGER ALL;
1868
1869
1870-ALTER TABLE branchmergerobot DISABLE TRIGGER ALL;
1871-
1872-
1873-
1874-ALTER TABLE branchmergerobot ENABLE TRIGGER ALL;
1875-
1876-
1877 ALTER TABLE branch DISABLE TRIGGER ALL;
1878
1879-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (1, 'Mozilla Firefox Mainline', 'text', 12, 4, 12, 'main', NULL, 'http://bazaar.example.com/mozilla@arch.ubuntu.com/mozilla--MAIN--0', NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:42.98217', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.837773', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', 'firefox', '~name12/firefox/main', NULL);
1880-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (2, 'Mozilla Thunderbird Mainline', 'Bazaar import of the Mozilla Thunderbird CVS mainline.', 11, 8, 1, 'main', NULL, 'http://bazaar.example.com/thunderbird@arch.ubuntu.com/thunderbird--MAIN--0', NULL, 30, NULL, '2006-04-08 01:40:15.816029', 1, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.042944', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.842033', 11, NULL, NULL, NULL, NULL, NULL, NULL, 'stevea', 'thunderbird', '~stevea/thunderbird/main', NULL);
1881-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (3, 'Python Twisted Trunk', 'Bazaar import of the Twisted SVN trunk.', 7, NULL, 3, 'trunk', NULL, 'http://bazaar.example.com/twisted@arch.ubuntu.com/twisted--trunk--0', NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.04419', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.843681', 7, NULL, NULL, NULL, NULL, NULL, NULL, 'spiv', NULL, '~spiv/+junk/trunk', NULL);
1882-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (4, 'Bugzila Mainline', 'text', 3, NULL, NULL, 'main', NULL, 'http://bazaar.example.com/bugzilla@arch.ubuntu.com/bugzila--MAIN--0', NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.045278', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.844341', 3, NULL, NULL, NULL, NULL, NULL, NULL, 'justdave', NULL, '~justdave/+junk/main', NULL);
1883-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (5, 'Arch Devel', 'text', 8, NULL, NULL, 'devel-1.0', NULL, 'http://bazaar.example.com/arch@arch.ubuntu.com/arch--devel--1.0', NULL, 30, NULL, '2006-04-08 22:20:14.973705', 9, 'I do not like Arch, so I am pretending it failed to mirror.', NULL, NULL, NULL, '2006-10-16 18:31:43.046996', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.844975', 8, NULL, NULL, NULL, NULL, NULL, NULL, 'jblack', NULL, '~jblack/+junk/devel-1.0', NULL);
1884-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (6, 'Kiwi2 Mainline', 'text', 9, NULL, NULL, 'main', NULL, 'http://bazaar.example.com/kiwi2@arch.ubuntu.com/kiwi2--MAIN--0', NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.048164', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.84562', 9, NULL, NULL, NULL, NULL, NULL, NULL, 'kiko', NULL, '~kiko/+junk/main', NULL);
1885-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (7, 'Plone Trunk', 'text', 10, NULL, NULL, 'trunk', NULL, 'http://bazaar.example.com/plone@arch.ubuntu.com/plone--trunk--0', NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.049222', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.846258', 10, NULL, NULL, NULL, NULL, NULL, NULL, 'limi', NULL, '~limi/+junk/trunk', NULL);
1886-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (8, 'Evolution 2.0', 'text', 13, 5, NULL, '2.0', NULL, 'http://bazaar.example.com/gnome@arch.ubuntu.com/gnome--evolution--2.0', NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.050317', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.846899', 13, NULL, NULL, NULL, NULL, NULL, NULL, 'carlos', 'evolution', '~carlos/evolution/2.0', NULL);
1887-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (9, 'Iso-codes 0.35', 'text', 13, 7, NULL, '0.35', NULL, 'http://bazaar.example.com/iso-codes@arch.ubuntu.com/iso-codes--iso-codes--0.35', NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.051395', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.847595', 13, NULL, NULL, NULL, NULL, NULL, NULL, 'carlos', 'iso-codes', '~carlos/iso-codes/0.35', NULL);
1888-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (10, 'Mozilla Firefox 0.9.2', 'text', 1, 4, NULL, 'release-0.9.2', NULL, 'http://bazaar.example.com/mozilla@arch.ubuntu.com/mozilla--release--0.9.2', NULL, 30, NULL, NULL, 0, NULL, NULL, 'mozilla@arch.ubuntu.com/mozilla--release--0.9.2--base-0', NULL, '2006-10-16 18:31:43.052449', 1, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.848365', 1, NULL, NULL, NULL, NULL, NULL, NULL, 'mark', 'firefox', '~mark/firefox/release-0.9.2', NULL);
1889-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (11, 'Mozilla Firefox 0.9.1', 'text', 1, 4, NULL, 'release--0.9.1', NULL, 'http://bazaar.example.com/mozilla@arch.ubuntu.com/mozilla--release--0.9.1', NULL, 30, NULL, NULL, 0, NULL, NULL, 'mozilla@arch.ubuntu.com/mozilla--release--0.9.1--base-0', NULL, '2006-10-16 18:31:43.053511', 1, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.849077', 1, NULL, NULL, NULL, NULL, NULL, NULL, 'mark', 'firefox', '~mark/firefox/release--0.9.1', NULL);
1890-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (12, 'Mozilla Firefox 0.9', 'text', 1, 4, NULL, 'release-0.9', NULL, 'http://bazaar.example.com/mozilla@arch.ubuntu.com/mozilla--release--0.9', NULL, 30, NULL, NULL, 0, NULL, NULL, 'mozilla@arch.ubuntu.com/mozilla--release--0.9--base-0', NULL, '2006-10-16 18:31:43.054581', 1, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.84976', 1, NULL, NULL, NULL, NULL, NULL, NULL, 'mark', 'firefox', '~mark/firefox/release-0.9', NULL);
1891-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (13, 'Mozilla Firefox 0.8', 'text', 1, 4, NULL, 'release-0.8', NULL, 'http://bazaar.example.com/mozilla@arch.ubuntu.com/mozilla--release--0.8', NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.055661', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.850415', 1, NULL, NULL, NULL, NULL, NULL, NULL, 'mark', 'firefox', '~mark/firefox/release-0.8', NULL);
1892-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (14, NULL, NULL, 24, 5, NULL, 'main', NULL, NULL, NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.056714', 0, NULL, false, 3, NULL, NULL, 1, '2007-12-06 19:58:26.85103', 24, NULL, NULL, NULL, NULL, NULL, NULL, 'vcs-imports', 'evolution', '~vcs-imports/evolution/main', NULL);
1893-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (15, 'GNOME Terminal Mainline', 'Main branch of development for GNOME Terminal. Stable branches are based on that one.
1894-
1895-Home page: http://example.com/gnome-terminal', 12, 6, NULL, 'main', 'http://example.com/gnome-terminal', 'http://example.com/gnome-terminal/main', NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.057682', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.851575', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', 'gnome-terminal', '~name12/gnome-terminal/main', NULL);
1896-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (16, 'GNOME Terminal 2.6 Releases', 'Release branch of GNOME Terminal for the GNOME 2.6 environment.
1897-
1898-Home page: http://example.com/gnome-terminal/', 12, 6, NULL, '2.6', 'http://example.com/gnome-terminal/', 'http://example.com/gnome-terminal/2.6', NULL, 50, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.058953', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.852227', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', 'gnome-terminal', '~name12/gnome-terminal/2.6', NULL);
1899-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (17, 'GNOME Terminal 2.4 Releases', 'Obsolete branch for GNOME 2.4 releases of GNOME Terminal.', 12, 6, NULL, '2.4', NULL, 'http://example.com/gnome-terminal/2.4', NULL, 80, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.060078', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.852889', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', 'gnome-terminal', '~name12/gnome-terminal/2.4', NULL);
1900-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (18, 'Klingon support in GNOME Terminal', 'Experimental feature branch for developping and testing Klingon support in GNOME Terminal.
1901-
1902-Home page: http://trekkies.example.com/k12n', 12, 6, 12, 'klingon', 'http://trekkies.example.com/k12n', 'http://trekkies.example.com/gnome-terminal/klingon', NULL, 10, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.061162', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.85354', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', 'gnome-terminal', '~name12/gnome-terminal/klingon', NULL);
1903-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (19, 'Slowing GNOME Terminal scrolling', 'Feature branch for slowing down the scrolling of text in GNOME Terminal.', 12, 6, 12, 'slowness', NULL, 'http://users.example.com/gnome-terminal/slowness', NULL, 70, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.062427', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.854214', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', 'gnome-terminal', '~name12/gnome-terminal/slowness', NULL);
1904-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (20, 'Ubuntu Junk Code', 'Sample junk branch.', 12, NULL, 17, 'junk.dev', NULL, 'http://example.com/a', NULL, 10, NULL, NULL, 0, NULL, NULL, 'foo@localhost-20051031170357-1301ad6d387feb23', NULL, '2006-10-16 18:31:43.06351', 6, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.854821', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', NULL, '~name12/+junk/junk.dev', NULL);
1905-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (21, 'Junk Code Contributions', 'Contribute code to the junk branch.', 12, NULL, 12, 'junk.contrib', NULL, 'http://example.com/b', NULL, 30, NULL, NULL, 0, NULL, NULL, 'foo@localhost-20051031170357-1301ad6d387feb23', NULL, '2006-10-16 18:31:43.064578', 6, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.855432', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', NULL, '~name12/+junk/junk.contrib', NULL);
1906-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (22, 'Python twisted feature', 'Feature branch for twisted.', 7, NULL, 4, 'feature', NULL, 'http://not.launchpad.server.com/a-branch', NULL, 30, NULL, '2005-03-09 15:45:00', 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.065642', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.856045', 7, NULL, NULL, NULL, NULL, NULL, NULL, 'spiv', NULL, '~spiv/+junk/feature', NULL);
1907-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (23, 'Another Python twisted feature', 'Another Feature branch for twisted.', 7, NULL, 4, 'feature2', NULL, 'http://whynot.launchpad.server.com/another-branch', NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.066804', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.856677', 7, NULL, NULL, NULL, NULL, NULL, NULL, 'spiv', NULL, '~spiv/+junk/feature2', NULL);
1908-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (24, 'Launchpad support for Gnome Terminal', 'Add Launchpad support to Gnome Terminal', 57, 6, 57, 'launchpad', NULL, 'http://users.example.com/gnome-terminal/launchpad', NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.067922', 0, NULL, false, 2, NULL, NULL, 1, '2007-12-06 19:58:26.857318', 16, NULL, NULL, NULL, NULL, NULL, NULL, 'launchpad', 'gnome-terminal', '~launchpad/gnome-terminal/launchpad', NULL);
1909-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (25, NULL, NULL, 12, 6, NULL, 'pushed', NULL, NULL, NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-10-16 18:31:43.06897', 0, NULL, false, 1, NULL, NULL, 1, '2007-12-06 19:58:26.857983', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', 'gnome-terminal', '~name12/gnome-terminal/pushed', NULL);
1910-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (26, NULL, NULL, 12, 6, NULL, 'mirrored', NULL, NULL, NULL, 30, '2007-03-16 14:12:49.050332', NULL, 0, NULL, NULL, NULL, NULL, '2007-03-16 03:12:49.050332', 0, NULL, false, 1, NULL, NULL, 1, '2007-12-06 19:58:26.858547', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', 'gnome-terminal', '~name12/gnome-terminal/mirrored', NULL);
1911-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (27, NULL, NULL, 12, 6, NULL, 'scanned', NULL, NULL, NULL, 30, '2007-03-16 14:14:29.935752', NULL, 0, NULL, '2007-03-16 14:14:29.935752', NULL, NULL, '2007-03-16 03:14:29.935752', 0, NULL, false, 1, NULL, NULL, 1, '2007-12-06 19:58:26.85913', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', 'gnome-terminal', '~name12/gnome-terminal/scanned', NULL);
1912-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (28, NULL, NULL, 1, NULL, 1, 'testdoc', NULL, NULL, NULL, 30, NULL, NULL, 1, 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum', NULL, NULL, NULL, '2007-05-04 01:16:03.75446', 0, NULL, false, 1, NULL, NULL, 1, '2007-12-06 19:58:26.859847', 1, NULL, NULL, NULL, NULL, NULL, NULL, 'mark', NULL, '~mark/+junk/testdoc', NULL);
1913-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (29, 'Landscape trunk', NULL, 64, 16, 12, 'trunk', NULL, NULL, NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2007-05-28 02:37:07.814303', 0, NULL, true, 1, NULL, NULL, 1, '2007-12-06 19:58:26.860757', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'landscape-developers', 'landscape', '~landscape-developers/landscape/trunk', NULL);
1914-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (30, NULL, NULL, 12, 16, 12, 'feature-x', NULL, NULL, NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2007-05-28 02:37:07.814303', 0, NULL, true, 1, NULL, NULL, 1, '2007-12-06 19:58:26.861424', 12, NULL, NULL, NULL, NULL, NULL, NULL, 'name12', 'landscape', '~name12/landscape/feature-x', NULL);
1915-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (75, 'GNOME Terminal Import Branch', NULL, 24, 6, NULL, 'import', NULL, NULL, NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-06-25 20:04:03.9465', 0, NULL, false, 3, NULL, NULL, 1, '2007-12-06 19:58:26.862009', 24, NULL, NULL, NULL, NULL, NULL, NULL, 'vcs-imports', 'gnome-terminal', '~vcs-imports/gnome-terminal/import', NULL);
1916-INSERT INTO branch (id, title, summary, owner, product, author, name, home_page, url, whiteboard, lifecycle_status, last_mirrored, last_mirror_attempt, mirror_failures, mirror_status_message, last_scanned, last_scanned_id, last_mirrored_id, date_created, revision_count, next_mirror_time, private, branch_type, reviewer, merge_robot, merge_control_status, date_last_modified, registrant, branch_format, repository_format, metadir_format, stacked_on, distroseries, sourcepackagename, owner_name, target_suffix, unique_name, size_on_disk) VALUES (76, 'Evolution Import Branch', NULL, 24, 5, NULL, 'import', NULL, NULL, NULL, 30, NULL, NULL, 0, NULL, NULL, NULL, NULL, '2006-06-25 20:04:04.218451', 0, NULL, false, 3, NULL, NULL, 1, '2007-12-06 19:58:26.862857', 24, NULL, NULL, NULL, NULL, NULL, NULL, 'vcs-imports', 'evolution', '~vcs-imports/evolution/import', NULL);
1917
1918
1919 ALTER TABLE branch ENABLE TRIGGER ALL;
1920@@ -2988,27 +1276,6 @@
1921 ALTER TABLE branchjob ENABLE TRIGGER ALL;
1922
1923
1924-ALTER TABLE diff DISABLE TRIGGER ALL;
1925-
1926-
1927-
1928-ALTER TABLE diff ENABLE TRIGGER ALL;
1929-
1930-
1931-ALTER TABLE previewdiff DISABLE TRIGGER ALL;
1932-
1933-
1934-
1935-ALTER TABLE previewdiff ENABLE TRIGGER ALL;
1936-
1937-
1938-ALTER TABLE staticdiff DISABLE TRIGGER ALL;
1939-
1940-
1941-
1942-ALTER TABLE staticdiff ENABLE TRIGGER ALL;
1943-
1944-
1945 ALTER TABLE branchmergeproposal DISABLE TRIGGER ALL;
1946
1947
1948@@ -3023,65 +1290,15 @@
1949 ALTER TABLE branchmergeproposaljob ENABLE TRIGGER ALL;
1950
1951
1952-ALTER TABLE revisionauthor DISABLE TRIGGER ALL;
1953-
1954-INSERT INTO revisionauthor (id, name, email, person) VALUES (1, 'mark.shuttleworth', NULL, NULL);
1955-INSERT INTO revisionauthor (id, name, email, person) VALUES (2, 'steve.alexander', NULL, NULL);
1956-INSERT INTO revisionauthor (id, name, email, person) VALUES (3, 'alexander.limi', NULL, NULL);
1957-INSERT INTO revisionauthor (id, name, email, person) VALUES (4, 'james.blackwell', NULL, NULL);
1958-INSERT INTO revisionauthor (id, name, email, person) VALUES (5, 'christian.reis', NULL, NULL);
1959-INSERT INTO revisionauthor (id, name, email, person) VALUES (6, 'colin.watson', NULL, NULL);
1960-INSERT INTO revisionauthor (id, name, email, person) VALUES (7, 'scott.james.remnant', NULL, NULL);
1961-INSERT INTO revisionauthor (id, name, email, person) VALUES (8, 'andrew.bennetts', NULL, NULL);
1962-INSERT INTO revisionauthor (id, name, email, person) VALUES (9, 'dave.miller', NULL, NULL);
1963-INSERT INTO revisionauthor (id, name, email, person) VALUES (10, 'jeff.waugh', NULL, NULL);
1964-INSERT INTO revisionauthor (id, name, email, person) VALUES (11, 'Sample Committer <test@canonical.com>', 'test@canonical.com', 12);
1965-INSERT INTO revisionauthor (id, name, email, person) VALUES (12, 'foo <foo@localhost>', 'foo@localhost', NULL);
1966-INSERT INTO revisionauthor (id, name, email, person) VALUES (13, 'bar@localhost', 'bar@localhost', NULL);
1967-
1968-
1969-ALTER TABLE revisionauthor ENABLE TRIGGER ALL;
1970-
1971-
1972-ALTER TABLE revision DISABLE TRIGGER ALL;
1973-
1974-INSERT INTO revision (id, date_created, log_body, revision_author, gpgkey, revision_id, revision_date, karma_allocated) VALUES (1, '2005-03-09 15:45:00', 'Import of Mozilla Firefox 0.9.2', 1, NULL, 'mozilla@arch.ubuntu.com/mozilla--release--0.9.2--base-0', '2005-03-09 15:40:00', false);
1975-INSERT INTO revision (id, date_created, log_body, revision_author, gpgkey, revision_id, revision_date, karma_allocated) VALUES (2, '2005-03-09 15:50:00', 'Import of Mozilla Firefox 0.9.1', 1, NULL, 'mozilla@arch.ubuntu.com/mozilla--release--0.9.1--base-0', '2005-03-09 15:45:00', false);
1976-INSERT INTO revision (id, date_created, log_body, revision_author, gpgkey, revision_id, revision_date, karma_allocated) VALUES (3, '2005-03-09 15:55:00', 'Import of Mozilla Firefox 0.9', 1, NULL, 'mozilla@arch.ubuntu.com/mozilla--release--0.9--base-0', '2005-03-09 15:50:00', false);
1977-INSERT INTO revision (id, date_created, log_body, revision_author, gpgkey, revision_id, revision_date, karma_allocated) VALUES (4, '2005-10-31 17:21:47.38177', 'initial import (empty)', 11, NULL, 'test@canonical.com-20051031165248-6f1bb97973c2b4f4', '2005-10-31 11:52:48.37692', false);
1978-INSERT INTO revision (id, date_created, log_body, revision_author, gpgkey, revision_id, revision_date, karma_allocated) VALUES (5, '2005-10-31 17:21:47.66327', 'add foo', 11, NULL, 'test@canonical.com-20051031165338-5f2f3d6b10bb3bf0', '2005-10-31 11:53:38.324658', false);
1979-INSERT INTO revision (id, date_created, log_body, revision_author, gpgkey, revision_id, revision_date, karma_allocated) VALUES (6, '2005-10-31 17:21:47.701102', 'fix bug 1', 11, NULL, 'test@canonical.com-20051031165532-3113df343e494daa', '2005-10-31 11:55:32.559368', false);
1980-INSERT INTO revision (id, date_created, log_body, revision_author, gpgkey, revision_id, revision_date, karma_allocated) VALUES (7, '2005-10-31 17:21:47.745231', 'merge new feature', 13, NULL, 'test@canonical.com-20051031165901-43b9644ec2eacc4e', '2005-10-31 11:59:01.742211', false);
1981-INSERT INTO revision (id, date_created, log_body, revision_author, gpgkey, revision_id, revision_date, karma_allocated) VALUES (8, '2005-10-31 17:21:47.786347', 'resolve criss-cross', 12, NULL, 'foo@localhost-20051031170239-5fce7d6bd3f01efc', '2005-10-31 12:02:39.750015', false);
1982-INSERT INTO revision (id, date_created, log_body, revision_author, gpgkey, revision_id, revision_date, karma_allocated) VALUES (9, '2005-10-31 17:21:47.82293', 'fix bug in bar', 12, NULL, 'foo@localhost-20051031170357-1301ad6d387feb23', '2005-10-31 12:03:57.157495', false);
1983-INSERT INTO revision (id, date_created, log_body, revision_author, gpgkey, revision_id, revision_date, karma_allocated) VALUES (10, '2005-10-31 17:21:47.917914', 'add a new feature', 12, NULL, 'foo@localhost-20051031165758-48acedf2b6a2e898', '2005-10-31 11:57:58.936419', false);
1984-INSERT INTO revision (id, date_created, log_body, revision_author, gpgkey, revision_id, revision_date, karma_allocated) VALUES (11, '2005-10-31 17:21:47.954856', 'merge foo bugfix', 12, NULL, 'foo@localhost-20051031170008-098959758bf79803', '2005-10-31 12:00:08.648379', false);
1985-
1986-
1987-ALTER TABLE revision ENABLE TRIGGER ALL;
1988+ALTER TABLE branchmergerobot DISABLE TRIGGER ALL;
1989+
1990+
1991+
1992+ALTER TABLE branchmergerobot ENABLE TRIGGER ALL;
1993
1994
1995 ALTER TABLE branchrevision DISABLE TRIGGER ALL;
1996
1997-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (1, 1, 10, 1);
1998-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (2, 1, 11, 2);
1999-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (3, 1, 12, 3);
2000-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (4, 1, 20, 4);
2001-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (5, 2, 20, 5);
2002-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (6, 3, 20, 6);
2003-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (7, 4, 20, 7);
2004-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (8, 5, 20, 8);
2005-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (9, 6, 20, 9);
2006-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (10, 1, 21, 4);
2007-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (11, 2, 21, 5);
2008-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (12, 3, 21, 10);
2009-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (13, 4, 21, 11);
2010-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (14, 5, 21, 8);
2011-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (15, 6, 21, 9);
2012-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (16, NULL, 20, 10);
2013-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (17, NULL, 20, 11);
2014-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (18, NULL, 21, 6);
2015-INSERT INTO branchrevision (id, sequence, branch, revision) VALUES (19, NULL, 21, 7);
2016
2017
2018 ALTER TABLE branchrevision ENABLE TRIGGER ALL;
2019@@ -3089,10 +1306,6 @@
2020
2021 ALTER TABLE branchsubscription DISABLE TRIGGER ALL;
2022
2023-INSERT INTO branchsubscription (id, person, branch, date_created, notification_level, max_diff_lines, review_level, subscribed_by) VALUES (1, 12, 20, '2006-10-16 18:31:43.079375', 1, NULL, 0, 12);
2024-INSERT INTO branchsubscription (id, person, branch, date_created, notification_level, max_diff_lines, review_level, subscribed_by) VALUES (2, 12, 24, '2006-10-16 18:31:43.080236', 1, NULL, 0, 12);
2025-INSERT INTO branchsubscription (id, person, branch, date_created, notification_level, max_diff_lines, review_level, subscribed_by) VALUES (4, 64, 29, '2007-05-28 02:41:07.938677', 1, NULL, 0, 64);
2026-INSERT INTO branchsubscription (id, person, branch, date_created, notification_level, max_diff_lines, review_level, subscribed_by) VALUES (5, 64, 30, '2007-05-28 02:41:07.938677', 1, NULL, 0, 64);
2027
2028
2029 ALTER TABLE branchsubscription ENABLE TRIGGER ALL;
2030@@ -3242,31 +1455,11 @@
2031
2032 ALTER TABLE bugbranch DISABLE TRIGGER ALL;
2033
2034-INSERT INTO bugbranch (id, datecreated, bug, branch, revision_hint, whiteboard, registrant) VALUES (1, '2006-03-22 18:44:27.438982', 5, 1, NULL, NULL, 12);
2035-INSERT INTO bugbranch (id, datecreated, bug, branch, revision_hint, whiteboard, registrant) VALUES (2, '2006-03-22 18:45:08.75694', 4, 10, NULL, NULL, 1);
2036-INSERT INTO bugbranch (id, datecreated, bug, branch, revision_hint, whiteboard, registrant) VALUES (3, '2006-03-22 18:45:50.344434', 4, 1, NULL, NULL, 12);
2037
2038
2039 ALTER TABLE bugbranch ENABLE TRIGGER ALL;
2040
2041
2042-ALTER TABLE cve DISABLE TRIGGER ALL;
2043-
2044-INSERT INTO cve (id, sequence, status, description, datecreated, datemodified, fti) VALUES (1, '1999-8979', 2, 'Firefox crashes all the time', '2005-09-07 19:00:32.944561', '2005-09-13 14:00:03.508959', NULL);
2045-INSERT INTO cve (id, sequence, status, description, datecreated, datemodified, fti) VALUES (2, '1999-2345', 1, 'Possible data loss', '2005-09-07 19:00:32.944561', '2005-09-13 14:00:03.513099', NULL);
2046-INSERT INTO cve (id, sequence, status, description, datecreated, datemodified, fti) VALUES (3, '2005-2730', 1, 'The HTTP proxy in Astaro Security Linux 6.0 allows remote attackers to obtain sensitive information via an invalid request, which reveals a Proxy-authorization string in an error message.', '2005-09-13 14:05:15.669384', '2005-09-13 14:05:15.669384', NULL);
2047-INSERT INTO cve (id, sequence, status, description, datecreated, datemodified, fti) VALUES (4, '2005-2731', 1, 'Directory traversal vulnerability in Astaro Security Linux 6.0, when using Webmin, allows remote authenticated webmin users to read arbitrary files via a .. (dot dot) in the wfe_download parameter to index.fpl.', '2005-09-13 14:05:15.91729', '2005-09-13 14:05:15.91729', NULL);
2048-INSERT INTO cve (id, sequence, status, description, datecreated, datemodified, fti) VALUES (5, '2005-2732', 1, 'AWStats 6.4, and possibly earlier versions, allows remote attackers to obtain sensitive information via a file that does not exist in the config parameter, which reveals the path in an error message.', '2005-09-13 14:05:15.992007', '2005-09-13 14:05:15.992007', NULL);
2049-INSERT INTO cve (id, sequence, status, description, datecreated, datemodified, fti) VALUES (6, '2005-2733', 1, 'upload_img_cgi.php in Simple PHP Blog (SPHPBlog) does not properly restrict file extensions of uploaded files, which could allow remote attackers to execute arbitrary code.', '2005-09-13 14:05:16.072418', '2005-09-13 14:05:16.072418', NULL);
2050-INSERT INTO cve (id, sequence, status, description, datecreated, datemodified, fti) VALUES (7, '2005-2734', 1, 'Cross-site scripting (XSS) vulnerability in Gallery 1.5.1-RC2 and earlier allows remote attackers to inject arbitrary web script or HTML via EXIF data, such as the Camera Model Tag.', '2005-09-13 14:05:16.202393', '2005-09-13 14:05:16.202393', NULL);
2051-INSERT INTO cve (id, sequence, status, description, datecreated, datemodified, fti) VALUES (8, '2005-2735', 1, 'Cross-site scripting (XSS) vulnerability in phpGraphy 0.9.9a and earlier allows remote attackers to inject arbitrary web script or HTML via EXIF data, such as the Camera Model Tag.', '2005-09-13 14:05:16.412226', '2005-09-13 14:05:16.412226', NULL);
2052-INSERT INTO cve (id, sequence, status, description, datecreated, datemodified, fti) VALUES (9, '2005-2736', 1, 'Cross-site scripting (XSS) vulnerability in YaPig 0.95 and earlier allows remote attackers to inject arbitrary web script or HTML via EXIF data, such as the Camera Model Tag.', '2005-09-13 14:05:16.841572', '2005-09-13 14:05:16.841572', NULL);
2053-INSERT INTO cve (id, sequence, status, description, datecreated, datemodified, fti) VALUES (10, '2005-2737', 1, 'Cross-site scripting (XSS) vulnerability in PhotoPost PHP Pro 5.1 allows remote attackers to inject arbitrary web script or HTML via EXIF data, such as the Camera Model Tag.', '2005-09-13 14:05:17.043865', '2005-09-13 14:05:17.043865', NULL);
2054-
2055-
2056-ALTER TABLE cve ENABLE TRIGGER ALL;
2057-
2058-
2059 ALTER TABLE bugcve DISABLE TRIGGER ALL;
2060
2061 INSERT INTO bugcve (id, bug, cve, date_created) VALUES (1, 1, 1, '2006-10-16 18:31:43.127783');
2062@@ -3283,25 +1476,6 @@
2063 ALTER TABLE bugjob ENABLE TRIGGER ALL;
2064
2065
2066-ALTER TABLE bugwatch DISABLE TRIGGER ALL;
2067-
2068-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (1, 2, 1, '42', 'FUBAR', '2004-09-24 20:58:04.740841', '2004-09-24 20:58:04.740841', '2004-09-24 20:58:04.740841', 12, NULL, NULL, NULL, NULL);
2069-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (2, 1, 1, '2000', '', '2004-10-04 01:00:00', '2004-10-04 01:00:00', '2004-10-04 01:00:00', 1, NULL, NULL, NULL, NULL);
2070-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (3, 1, 1, '123543', '', '2004-10-04 00:00:00', '2004-10-04 00:00:00', '2004-10-04 00:00:00', 1, NULL, NULL, NULL, NULL);
2071-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (4, 2, 2, '3224', '', '2004-10-05 00:00:00', '2004-10-05 00:00:00', '2004-10-05 00:00:00', 1, NULL, NULL, NULL, NULL);
2072-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (5, 1, 1, '42', 'FUBAR', '2004-09-24 20:59:04.740841', '2004-09-24 20:59:04.740841', '2004-09-24 20:59:04.740841', 12, NULL, NULL, NULL, NULL);
2073-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (6, 9, 4, '1234', NULL, '2006-02-23 16:43:25.744534', NULL, '2006-02-23 16:43:25.744534', 12, NULL, NULL, NULL, NULL);
2074-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (7, 7, 3, '280883', NULL, '2006-03-29 16:45:45.054836', NULL, '2006-03-29 16:45:45.054836', 12, NULL, NULL, NULL, NULL);
2075-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (8, 1, 3, '304014', NULL, '2006-03-29 16:46:54.407686', NULL, '2006-03-29 16:46:54.407686', 12, NULL, NULL, NULL, NULL);
2076-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (9, 2, 3, '327452', NULL, '2006-03-29 16:47:51.515017', NULL, '2006-03-29 16:47:51.515017', 12, NULL, NULL, NULL, NULL);
2077-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (10, 3, 3, '327549', NULL, '2006-03-29 16:48:18.807764', NULL, '2006-03-29 16:48:18.807764', 12, NULL, NULL, NULL, NULL);
2078-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (11, 15, 3, '308994', 'open important', '2007-12-18 16:31:34.790641', '2007-12-18 16:31:34.790641', '2007-12-18 16:30:47.889614', 16, NULL, 'UNKNOWN', NULL, NULL);
2079-INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (12, 15, 2, '304070', NULL, NULL, NULL, '2007-12-18 16:31:34.790641', 243614, 2, NULL, NULL, NULL);
2080-
2081-
2082-ALTER TABLE bugwatch ENABLE TRIGGER ALL;
2083-
2084-
2085 ALTER TABLE bugmessage DISABLE TRIGGER ALL;
2086
2087 INSERT INTO bugmessage (id, bug, message, bugwatch, remote_comment_id, visible) VALUES (1, 2, 1, NULL, NULL, true);
2088@@ -3345,51 +1519,6 @@
2089 ALTER TABLE bugmessage ENABLE TRIGGER ALL;
2090
2091
2092-ALTER TABLE productseries DISABLE TRIGGER ALL;
2093-
2094-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (1, 4, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2005-06-06 08:59:51.895136', NULL, 12, 2, 1, NULL, NULL);
2095-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (2, 4, '1.0', 'The 1.0 branch of the Mozilla web browser. Currently, this is the stable branch of Mozilla, and all stable releases are made off this branch.', NULL, NULL, '2005-06-06 08:59:51.898385', NULL, 12, 2, 1, NULL, NULL);
2096-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (3, 5, 'trunk', 'The primary "trunk" of development for this product. This series
2097-was automatically created and represents the idea of a primary trunk
2098-of software development without "stable branches". For most
2099-products, releases in this series will be "milestone" or "test"
2100-releases, and there should be other series for the stable releases
2101-of the product.', NULL, NULL, '2005-06-06 08:59:51.914873', NULL, 12, 2, 1, 14, NULL);
2102-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (4, 8, 'trunk', 'The primary "trunk" of development for this product. This series
2103-was automatically created and represents the idea of a primary trunk
2104-of software development without "stable branches". For most
2105-products, releases in this series will be "milestone" or "test"
2106-releases, and there should be other series for the stable releases
2107-of the product.', NULL, NULL, '2005-06-06 08:59:51.91214', NULL, 12, 2, 1, NULL, NULL);
2108-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (5, 11, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2005-06-06 08:59:51.899819', NULL, 12, 2, 1, NULL, NULL);
2109-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (6, 12, 'trunk', 'The primary upstream development branch, from which all releases are made.', NULL, NULL, '2005-06-06 08:59:51.913564', NULL, 16, 2, 1, NULL, NULL);
2110-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (7, 12, 'failedbranch', 'A branch where auto test has failed.', NULL, NULL, '2005-06-06 08:59:51.913564', NULL, 16, 2, 1, NULL, NULL);
2111-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (8, 15, 'trunk', 'The mainline for alsa-utils', NULL, NULL, '2005-09-15 09:10:03.531637', NULL, 1, 2, 1, NULL, NULL);
2112-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (9, 16, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2006-07-11 19:59:17.311451', NULL, 12, 2, 1, NULL, NULL);
2113-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (10, 14, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2006-09-11 06:16:00.934312', NULL, 12, 2, 1, NULL, NULL);
2114-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (11, 13, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2006-09-11 06:16:00.934312', NULL, 16, 2, 1, NULL, NULL);
2115-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (12, 9, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2006-09-11 06:16:00.934312', NULL, 16, 2, 1, NULL, NULL);
2116-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (13, 7, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2006-09-11 06:16:00.934312', NULL, 12, 2, 1, NULL, NULL);
2117-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (14, 6, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2006-09-11 06:16:00.934312', NULL, 12, 2, 1, NULL, NULL);
2118-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (15, 3, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2006-09-11 06:16:00.934312', NULL, 2, 2, 1, NULL, NULL);
2119-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (16, 1, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2006-09-11 06:16:00.934312', NULL, 17, 2, 1, NULL, NULL);
2120-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (17, 2, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2006-09-14 07:56:10.631636', NULL, 2, 2, 1, NULL, NULL);
2121-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (18, 10, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2006-09-14 07:56:10.631636', NULL, 2, 2, 1, NULL, NULL);
2122-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (19, 17, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2006-11-24 12:48:19.178553', NULL, 12, 2, 1, NULL, NULL);
2123-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (20, 18, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2007-03-14 18:47:04.891546', NULL, 37, 2, 1, NULL, NULL);
2124-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (21, 19, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2007-03-14 18:53:13.112116', NULL, 28, 2, 1, NULL, NULL);
2125-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (22, 20, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2007-03-15 20:11:49.501871', NULL, 14, 2, 1, NULL, NULL);
2126-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (23, 21, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2007-03-27 16:28:27.763632', NULL, 12, 2, 1, NULL, NULL);
2127-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (24, 22, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2007-04-18 20:58:56.846607', NULL, 12, 2, 1, NULL, NULL);
2128-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (25, 23, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2007-11-19 12:44:30.603892', NULL, 1, 2, 1, NULL, NULL);
2129-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (26, 24, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2008-06-27 14:51:47.366199', NULL, 243623, 2, 1, NULL, NULL);
2130-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (27, 25, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2008-10-02 10:12:40.909504', NULL, 16, 2, 1, NULL, NULL);
2131-INSERT INTO productseries (id, product, name, summary, releasefileglob, releaseverstyle, datecreated, driver, owner, status, translations_autoimport_mode, branch, translations_branch) VALUES (28, 26, 'trunk', 'The "trunk" series represents the primary line of development rather than a stable release branch. This is sometimes also called MAIN or HEAD.', NULL, NULL, '2009-05-02 21:33:15.310312', NULL, 16, 2, 1, NULL, NULL);
2132-
2133-
2134-ALTER TABLE productseries ENABLE TRIGGER ALL;
2135-
2136-
2137 ALTER TABLE bugnomination DISABLE TRIGGER ALL;
2138
2139 INSERT INTO bugnomination (id, bug, distroseries, productseries, status, date_created, date_decided, owner, decider) VALUES (1, 1, NULL, 2, 10, '2006-08-21 22:20:54.707408', NULL, 52, NULL);
2140@@ -3443,197 +1572,6 @@
2141 ALTER TABLE bugpackageinfestation ENABLE TRIGGER ALL;
2142
2143
2144-ALTER TABLE milestone DISABLE TRIGGER ALL;
2145-
2146-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (1, 4, '1.0', NULL, '2056-10-16 18:31:44.293448', true, 1, NULL, '2006-10-16 18:31:44.293448', NULL, NULL);
2147-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (2, NULL, '3.1', 3, '2056-05-16 18:31:44.293448', true, NULL, 6, '2006-10-16 18:31:44.29574', NULL, NULL);
2148-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (3, NULL, '3.1-rc1', 3, '2056-02-16 18:31:44.293448', true, NULL, 6, '2006-10-16 18:31:44.29574', NULL, NULL);
2149-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (4, 4, '0.9.2', NULL, NULL, false, 1, NULL, '2009-03-02 18:31:35.911331', 'This was a security fix release for 0.9.', 'One (secure) Tree Hill');
2150-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (5, 4, '0.9.1', NULL, NULL, false, 1, NULL, '2009-03-02 18:31:35.911331', 'This was a bugfix release to patch up problems with the new extension system.', 'One Tree Hill (v2)');
2151-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (6, 4, '0.9', NULL, NULL, false, 1, NULL, '2009-03-02 18:31:35.911331', 'Release 0.9 of Firefox introduced a new theme as well as improved migration tools for people switching to Firefox.', 'One Tree Hill');
2152-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (7, 4, '1.0.0', NULL, NULL, false, 2, NULL, '2009-03-02 18:31:35.911331', 'After four years of work the Mozilla project makes its first public stable release. Mozilla 1.0.0 is a major milestone in open source history.', 'First Stable Release');
2153-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (8, 5, '2.1.6', NULL, NULL, false, 3, NULL, '2009-03-02 18:31:35.911331', '', NULL);
2154-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (9, 8, '0.8', NULL, NULL, false, 4, NULL, '2009-03-02 18:31:35.911331', '', NULL);
2155-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (10, 11, '1.0', NULL, NULL, false, 5, NULL, '2009-03-02 18:31:35.911331', '', NULL);
2156-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (11, 15, '1.0.9a', NULL, NULL, false, 8, NULL, '2009-03-02 18:31:35.911331', '', NULL);
2157-INSERT INTO milestone (id, product, name, distribution, dateexpected, active, productseries, distroseries, date_created, summary, codename) VALUES (12, 15, '1.0.8', NULL, NULL, false, 8, NULL, '2009-03-02 18:31:35.911331', '', NULL);
2158-
2159-
2160-ALTER TABLE milestone ENABLE TRIGGER ALL;
2161-
2162-
2163-ALTER TABLE productrelease DISABLE TRIGGER ALL;
2164-
2165-INSERT INTO productrelease (id, datereleased, release_notes, changelog, owner, datecreated, milestone) VALUES (1, '2004-06-28 00:00:00', '', '', 12, '2005-06-06 08:59:51.930201', 7);
2166-INSERT INTO productrelease (id, datereleased, release_notes, changelog, owner, datecreated, milestone) VALUES (2, '2004-06-28 00:00:00', NULL, NULL, 12, '2005-06-06 08:59:51.924844', 9);
2167-INSERT INTO productrelease (id, datereleased, release_notes, changelog, owner, datecreated, milestone) VALUES (3, '2004-10-15 18:27:09.878302', 'What''s New
2168-
2169-Here''s what''s new in this release of Firefox:
2170-
2171- * New Default Theme
2172-
2173- An updated Default Theme now presents a uniform appearance across all three platforms - a new crisp, clear look for Windows users. Finetuning for GNOME will follow in future releases.
2174- * Comprehensive Data Migration
2175-
2176- Switching to Firefox has never been easier now that Firefox imports data like Favorites, History, Settings, Cookies and Passwords from Internet Explorer. Firefox can also import from Mozilla 1.x, Netscape 4.x, 6.x and 7.x, and Opera. MacOS X and Linux migrators for browsers like Safari, OmniWeb, Konqueror etc. will arrive in future releases.
2177- * Extension/Theme Manager
2178-
2179- New Extension and Theme Managers provide a convenient way to manage and update your add-ons. SmartUpdate also notifies you of updates to Firefox.
2180- * Smaller Download
2181-
2182- Windows users will find Firefox is now only 4.7MB to download.
2183- * Help
2184-
2185- A new online help system is available.
2186- * Lots of bug fixes and improvements
2187-
2188- Copy Image, the ability to delete individual items from Autocomplete lists, SMB/SFTP support on GNOME via gnome-vfs, better Bookmarks, Search and many other refinements fine tune the browsing experience.
2189-
2190-For Linux/GTK2 Users
2191-
2192- * Installer
2193-
2194- Firefox now comes with an installer for Linux/GTK2 users. The new installer makes the installation process much simpler.
2195- * Look and Feel Updates
2196-
2197- Ongoing improvements have been made to improve the way Firefox adheres to your GTK2 themes, such as menus.
2198- * Talkback for GTK2
2199-
2200- Help us nail down crashes by submitting talkback reports with this crash reporting tool.
2201-
2202-', NULL, 16, '2005-06-06 08:59:51.929023', 6);
2203-INSERT INTO productrelease (id, datereleased, release_notes, changelog, owner, datecreated, milestone) VALUES (4, '2004-10-15 18:31:19.164989', '', NULL, 16, '2005-06-06 08:59:51.927785', 5);
2204-INSERT INTO productrelease (id, datereleased, release_notes, changelog, owner, datecreated, milestone) VALUES (5, '2004-10-15 18:32:35.717695', 'Security fixes
2205-
2206- * 250180 - [Windows] Disallow access to insecure shell: protocol.
2207-', NULL, 16, '2005-06-06 08:59:51.926792', 4);
2208-INSERT INTO productrelease (id, datereleased, release_notes, changelog, owner, datecreated, milestone) VALUES (6, '2005-02-28 00:00:00', NULL, 'Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
2209-
2210- * Addressbook
2211- #73005 - Cannot cancel ''Contact List Editor'' (Siva)
2212- #73005 - offline - setting/unsetting folder offline property is not working (Sushma)
2213- #70371 - Evolution crashes when adding contact list (Siva)
2214- #67724 - When unix user name, callendar points to old username (Siva)
2215- #54825 - Freeze on .vcf import from MacOS X AddressBook (Christophe Fergeau)
2216- #73013 - ''Right'' click on a ''Contact'' cannot select ''Cut'' (Siva)
2217-
2218- * Calendar
2219- #72958 - Unable to send delayed meeting (Chen)
2220- #72006 - Opened existing appointments with attachment - press cancel - popup info with save / discard / cancel changes (Chen)
2221- #63866 - Same name can be entered twice in invitations tab (JP)
2222- #67714 - Invitations Tab Allows Entry Of Empty Line (JP)
2223- #62089 - adding contact lists to meetings impossible (JP)
2224- #47747 - Changes to attendee not updated until click on different row (JP)
2225- #61495 - Existing text is placed off screen when editing attendee field (JP)
2226- #28947 - adding contact list to attendee list should expand it (JP)
2227- #67724 - When unix user name, callendar points to old username (Siva)
2228- #72038 - Changes meeting to appoinment after throwing warning invalid mail id (Rodrigo)
2229- #69556 - Crash attaching mime parts to calendar events (Harish)
2230-
2231- * Mail
2232- #66126 - attach File Chooser is modal (Michael)
2233- #68549 - Answering to Usenet article doesn''t consider the "Followup-To:" field (Michael)
2234- #71003 - threads still running at exit (Michael)
2235- #62109 - Inconsistent ways of determining 8-bit Subject: and From: header charsets (Jeff)
2236- #34153 - Confusing Outbox semantics for deleted outgoing messages (Michael)
2237- #71528 - Search Selection Widget Has Repeated Items (Michael)
2238- #71967 - Evolution delete mail from POP3 server even is checked the option "leave the mail on server" (Michael)
2239- #40515 - Signature scripts do not allow switches (Michael)
2240- #68866 - Forward button doesn''t put newline between headers and body (Michael)
2241- #35219 - flag-for-followup crufting (Michael)
2242- #64987 - Go to next unread message doesn''t work when multiple messages are selected (Michael)
2243- #72337 - Evolution crashes if I click OK/Cancel on the password dialog after disabling the IMAP account (Michael)
2244- #70718 - Next and previous buttons don''t realize there''s new mail (Michael)
2245- #61363 - Setup wizard, IMAP for receiving server, sending default GW (Michael)
2246- #70795 - Next/Previous Message Should Only Display Listed Emails (Michael)
2247- #23822 - no copy text option when right-clicking on marked mail text (Rodney)
2248- #72266 - You shouldn''t be able to open more than one ''Select Folder'' dialog in the mail filters (Michael)
2249- #71429 - on NLD, menus in wrong order (Michae)l
2250- #72228 - cannot store into groupwise sent folder (Michael)
2251- #72209 - Evolution is crashing when you move a VFolder to a folder ''on this computer'' (Michael)
2252- #72275 - Can''t use Shift+F10 to popup context menu for link in message (Harry Lu)
2253- #54503 - "New" dropdown menu on toolbar has wrong widget style (Rodney)
2254- #72676 - Saved filter rule can''t be modified if it is selected with GOK. (Harry Lu)
2255-
2256- * SMIME
2257- #68592 - "Backup" buttons in certificate settings does nothing - work around (Michael)
2258-
2259- * Shell
2260- #33287 - "send/receive" button not greyed out when starting offline (JP)
2261- #48868 - Status bar changes its height when fonts are large (William Jon McCann)
2262-
2263- * Plugins
2264- #71527 - Save Calendar widget mixup between directory and file (Rodrigo)
2265-
2266-Other bugs
2267-
2268- * Addressbook
2269- - Use new categories dialog in contact editor (Rodrigo)
2270- - HIG spacing fixes (Rodney)
2271- - Display warning dialog when GW server is old (Vivek)
2272-
2273- * Calendar
2274- - Always ensure default sources are available (Siva)
2275- - Don''t look up free/busy unless we need to (Harish)
2276- - Make sure new events don''t display twice (Chen)
2277- - Make sure double click opens attachments (Chen)
2278-
2279- * Mail
2280- - a11y fixes for composer (Harry Lu)
2281- - Use gnome-vfs API to launch external applications (Marco Pesenti Gritti)
2282- - New mailer context menus for messages (Rodney)
2283-
2284- * Shell
2285- - Fix leak (JP)
2286- - Use gnome-vfs API to open quick reference (Marco Pesenti Gritti)
2287-
2288- * Plugins
2289- - Make e-popup more robust (Michael)
2290- - Cleanup authors/descriptions (Björn Torkelsson)
2291- - out of office exchange fixes (Sushma)
2292- - retry send options if invalid session string (Chen)
2293- - set proper default port for shared folders (Vivek)
2294-
2295- * Miscellaneous
2296- - BSD runtime linking fixes (Hans)
2297- - distclean fixes (Björn Torkelsson)
2298-
2299-Updated translations:
2300- - et (Priit Laes)
2301- - el (Kostas Papadimas, Nikos Charonitakis)
2302- - sv (Christian Rose)
2303- - es (Francisco Javier F. Serrador)
2304- - it (Luca Ferretti, Marco Ciampa)
2305- - da (Martin Willemoes Hansen)
2306- - ca (Josep Puigdemont, Xavi Conde)
2307- - nb (Kjartan Maraas)
2308- - no (Kjartan Maraas)
2309- - ru (Leonid Kanter)
2310- - gu (Ankit Patel)
2311- - cs (Miloslav Trmac)
2312- - nl (Vincent van Adrighem)
2313- - fi (Ilkka Tuohela)
2314- - pt (Duarte Loreto)
2315- - uk (Maxim Dziumanenko)
2316- - ko (Changwoo Ryu)
2317- - de (Frank Arnold)
2318- - fr (Vincent Carriere)
2319- - en_CA (Adam Weinberger)
2320- - cs (Miloslav Trmac)
2321- - pl (Artur Flinta)
2322- - bg (Vladimir Petkov)
2323- - ja (Takeshi AIHANA)
2324- - en_GB (David Lodge)
2325- - en_CA (Adam Weinberger)
2326- - lt (Zygimantas Berucka)', 12, '2005-06-06 08:59:51.919766', 8);
2327-INSERT INTO productrelease (id, datereleased, release_notes, changelog, owner, datecreated, milestone) VALUES (7, '2005-03-10 16:20:00', NULL, NULL, 12, '2005-06-06 08:59:51.925908', 10);
2328-INSERT INTO productrelease (id, datereleased, release_notes, changelog, owner, datecreated, milestone) VALUES (8, '2005-02-03 08:50:00', NULL, NULL, 1, '2005-09-15 09:15:49.327457', 12);
2329-INSERT INTO productrelease (id, datereleased, release_notes, changelog, owner, datecreated, milestone) VALUES (9, '2005-06-10 10:40:00', NULL, NULL, 1, '2005-09-15 09:16:00.235886', 11);
2330-
2331-
2332-ALTER TABLE productrelease ENABLE TRIGGER ALL;
2333-
2334-
2335 ALTER TABLE bugproductinfestation DISABLE TRIGGER ALL;
2336
2337
2338@@ -3713,6 +1651,21 @@
2339 ALTER TABLE bugtask ENABLE TRIGGER ALL;
2340
2341
2342+ALTER TABLE bugtracker DISABLE TRIGGER ALL;
2343+
2344+INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (1, 1, 'mozilla.org', 'The Mozilla.org Bug Tracker', 'The Mozilla.org bug tracker is the grand-daddy of bugzillas. This is where Bugzilla was conceived, born and raised. This bugzilla instance covers all Mozilla products such as Firefox, Thunderbird and Bugzilla itself.', 'https://bugzilla.mozilla.org/', 12, 'Carrier pigeon only', '2006-10-16 18:31:43.195685', NULL, false, NULL, true);
2345+INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (2, 1, 'gnome-bugzilla', 'GnomeGBug GTracker', 'This is the Gnome Bugzilla bug tracking system. It covers all the applications in the Gnome Desktop and Gnome Fifth Toe.', 'http://bugzilla.gnome.org/bugs', 16, 'Jeff Waugh, in his pants.', '2006-10-16 18:31:43.197325', NULL, false, NULL, true);
2346+INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (3, 2, 'debbugs', 'Debian Bug tracker', 'Bug tracker for debian project.', 'http://bugs.debian.org', 1, NULL, '2006-10-16 18:31:43.197881', NULL, false, NULL, true);
2347+INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (4, 1, 'ubuntu-bugzilla', 'The Ubuntu.com bugzilla', 'The Ubuntu.com bugzilla tracks bugs in all products Ubuntu supports, in the Canonical.com hosted websites and in Bazaar and the Arch supermirror', 'http://bugzilla.ubuntu.com/bugs/', 1, NULL, '2006-10-16 18:31:43.198413', NULL, false, NULL, true);
2348+INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (5, 5, 'sf', 'SourceForge.net Tracker', 'SourceForge.net is an Open Source software development web site, hosting more than 100,000 projects. This is the tracker used by most of those projects.', 'http://sourceforge.net/', 60, NULL, '2006-10-16 18:31:43.19892', NULL, false, NULL, true);
2349+INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (6, 8, 'email', 'Email bugtracker', 'An example email tracker.', 'mailto:bugs@example.com', 16, NULL, '2006-10-16 18:31:43.19892', NULL, false, NULL, true);
2350+INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (7, 9, 'savannah', 'GNU Savannah Bug Tracker', 'Savannah is an open source software development hosting service based on SourceForge.', 'http://savannah.gnu.org/', 25, NULL, '2008-02-11 15:25:58.504386', NULL, false, NULL, true);
2351+INSERT INTO bugtracker (id, bugtrackertype, name, title, summary, baseurl, owner, contactdetails, date_created, version, block_comment_pushing, has_lp_plugin, active) VALUES (8, 1, 'gnome-bugs', 'T''other Gnome GBugGTracker', 'This is the Gnome Bugzilla celebrity bug tracker.', 'http://bugzilla.gnome.org/', 16, NULL, '2008-10-08 13:31:00', NULL, false, true, true);
2352+
2353+
2354+ALTER TABLE bugtracker ENABLE TRIGGER ALL;
2355+
2356+
2357 ALTER TABLE bugtrackeralias DISABLE TRIGGER ALL;
2358
2359 INSERT INTO bugtrackeralias (id, bugtracker, base_url) VALUES (1, 7, 'http://savannah.nognu.org/');
2360@@ -3731,6 +1684,25 @@
2361 ALTER TABLE bugtrackerperson ENABLE TRIGGER ALL;
2362
2363
2364+ALTER TABLE bugwatch DISABLE TRIGGER ALL;
2365+
2366+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (1, 2, 1, '42', 'FUBAR', '2004-09-24 20:58:04.740841', '2004-09-24 20:58:04.740841', '2004-09-24 20:58:04.740841', 12, NULL, NULL, NULL, NULL);
2367+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (2, 1, 1, '2000', '', '2004-10-04 01:00:00', '2004-10-04 01:00:00', '2004-10-04 01:00:00', 1, NULL, NULL, NULL, NULL);
2368+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (3, 1, 1, '123543', '', '2004-10-04 00:00:00', '2004-10-04 00:00:00', '2004-10-04 00:00:00', 1, NULL, NULL, NULL, NULL);
2369+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (4, 2, 2, '3224', '', '2004-10-05 00:00:00', '2004-10-05 00:00:00', '2004-10-05 00:00:00', 1, NULL, NULL, NULL, NULL);
2370+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (5, 1, 1, '42', 'FUBAR', '2004-09-24 20:59:04.740841', '2004-09-24 20:59:04.740841', '2004-09-24 20:59:04.740841', 12, NULL, NULL, NULL, NULL);
2371+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (6, 9, 4, '1234', NULL, '2006-02-23 16:43:25.744534', NULL, '2006-02-23 16:43:25.744534', 12, NULL, NULL, NULL, NULL);
2372+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (7, 7, 3, '280883', NULL, '2006-03-29 16:45:45.054836', NULL, '2006-03-29 16:45:45.054836', 12, NULL, NULL, NULL, NULL);
2373+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (8, 1, 3, '304014', NULL, '2006-03-29 16:46:54.407686', NULL, '2006-03-29 16:46:54.407686', 12, NULL, NULL, NULL, NULL);
2374+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (9, 2, 3, '327452', NULL, '2006-03-29 16:47:51.515017', NULL, '2006-03-29 16:47:51.515017', 12, NULL, NULL, NULL, NULL);
2375+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (10, 3, 3, '327549', NULL, '2006-03-29 16:48:18.807764', NULL, '2006-03-29 16:48:18.807764', 12, NULL, NULL, NULL, NULL);
2376+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (11, 15, 3, '308994', 'open important', '2007-12-18 16:31:34.790641', '2007-12-18 16:31:34.790641', '2007-12-18 16:30:47.889614', 16, NULL, 'UNKNOWN', NULL, NULL);
2377+INSERT INTO bugwatch (id, bug, bugtracker, remotebug, remotestatus, lastchanged, lastchecked, datecreated, owner, last_error_type, remote_importance, remote_lp_bug_id, next_check) VALUES (12, 15, 2, '304070', NULL, NULL, NULL, '2007-12-18 16:31:34.790641', 243614, 2, NULL, NULL, NULL);
2378+
2379+
2380+ALTER TABLE bugwatch ENABLE TRIGGER ALL;
2381+
2382+
2383 ALTER TABLE bugwatchactivity DISABLE TRIGGER ALL;
2384
2385
2386@@ -3738,6 +1710,46 @@
2387 ALTER TABLE bugwatchactivity ENABLE TRIGGER ALL;
2388
2389
2390+ALTER TABLE builder DISABLE TRIGGER ALL;
2391+
2392+INSERT INTO builder (id, processor, name, title, description, owner, speedindex, builderok, failnotes, virtualized, url, manual, date_created, vm_host, active) VALUES (1, 1, 'bob', 'Bob The Builder', 'The default build-slave', 61, NULL, true, NULL, false, 'http://localhost:8221/', false, '2006-10-16 18:31:43.226724', NULL, true);
2393+INSERT INTO builder (id, processor, name, title, description, owner, speedindex, builderok, failnotes, virtualized, url, manual, date_created, vm_host, active) VALUES (2, 1, 'frog', 'The frog builder', 'The untrusted build-slave', 61, NULL, false, NULL, true, 'http://localhost:9221/', false, '2006-10-31 18:31:43.226724', 'localhost-host.ppa', true);
2394+
2395+
2396+ALTER TABLE builder ENABLE TRIGGER ALL;
2397+
2398+
2399+ALTER TABLE buildfarmjob DISABLE TRIGGER ALL;
2400+
2401+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (2, 1, false, '2004-09-27 11:57:13', '2004-09-27 11:55:13', '2004-09-27 11:57:14', NULL, 1, 1, 1, 1);
2402+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (6, 1, false, '2006-12-01 00:00:00', '2006-12-01 00:00:00', '2006-12-01 00:00:01', NULL, 1, 2, 1, 1);
2403+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (7, 1, false, '2005-03-24 00:00:00', '2005-03-24 23:58:43', '2005-03-25 00:00:03', NULL, 1, 1, 1, 1);
2404+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (8, 1, false, '2005-09-30 00:00:00', NULL, NULL, NULL, NULL, 6, NULL, 1);
2405+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (9, 1, false, '2005-10-01 00:00:00', '2005-10-01 23:56:41', '2005-10-02 00:00:01', NULL, 1, 2, 1, 1);
2406+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (10, 1, false, '2006-01-27 00:00:00', NULL, NULL, NULL, NULL, 1, NULL, 1);
2407+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (11, 1, false, '2006-02-14 00:00:00', NULL, NULL, NULL, NULL, 0, NULL, 1);
2408+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (12, 1, false, '2006-02-28 00:00:00', '2006-02-27 23:53:59', '2006-02-28 00:00:01', NULL, 1, 3, 1, 1);
2409+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (13, 1, false, '2006-03-21 00:00:00', '2006-03-21 00:58:33', '2006-03-21 01:00:03', NULL, 1, 5, 1, 1);
2410+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (14, 1, false, '2006-03-22 00:00:00', '2006-03-21 00:58:32', '2006-03-21 01:00:02', NULL, 1, 5, 1, 1);
2411+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (15, 1, false, '2006-03-22 00:00:01', '2006-03-21 00:58:30', '2006-03-21 01:00:00', NULL, 1, 5, 1, 1);
2412+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (16, 1, false, '2005-03-24 00:00:01', '2005-03-24 23:58:42', '2005-03-25 00:00:02', NULL, 1, 1, 1, 1);
2413+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (18, 1, false, '2004-09-27 11:57:14', '2004-09-27 11:55:12', '2004-09-27 11:57:13', NULL, 1, 1, 1, 1);
2414+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (19, 1, false, '2005-03-24 00:00:02', '2005-03-24 23:58:41', '2005-03-25 00:00:01', NULL, 1, 1, 1, 1);
2415+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (21, 1, false, '2006-12-01 00:00:01', NULL, NULL, NULL, NULL, 2, NULL, 1);
2416+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (22, 1, false, '2007-04-20 00:00:00', '2007-04-19 23:58:41', '2007-04-20 00:00:01', NULL, 1, 7, 1, 1);
2417+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (23, 1, false, '2006-04-11 12:00:00', NULL, NULL, NULL, NULL, 1, NULL, 1);
2418+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (24, 1, true, '2007-05-30 00:00:00', '2007-05-29 23:58:41', '2007-05-30 00:00:01', NULL, 1, 2, 1, 1);
2419+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (25, 1, true, '2007-07-08 12:00:00', NULL, NULL, NULL, NULL, 1, NULL, 1);
2420+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (26, 1, true, '2007-07-08 00:00:00', '2007-07-07 23:58:41', '2007-07-08 00:00:01', NULL, 1, 2, 1, 1);
2421+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (27, 1, true, '2007-07-24 00:00:00', '2007-07-23 23:58:41', '2007-07-24 00:00:01', NULL, 1, 1, 1, 1);
2422+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (28, 3, true, '2007-08-10 00:00:00', '2007-08-10 00:00:00', '2007-08-10 00:00:13', NULL, 1, 1, 1, 1);
2423+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (29, 1, false, '2007-08-09 21:54:18.553132', NULL, '2007-08-09 23:59:59', NULL, NULL, 1, NULL, 1);
2424+INSERT INTO buildfarmjob (id, processor, virtualized, date_created, date_started, date_finished, date_first_dispatched, builder, status, log, job_type) VALUES (30, 3, false, '2007-08-10 00:00:01', '2007-08-10 00:00:01', '2007-08-10 00:00:14', NULL, 1, 1, 1, 1);
2425+
2426+
2427+ALTER TABLE buildfarmjob ENABLE TRIGGER ALL;
2428+
2429+
2430 ALTER TABLE buildpackagejob DISABLE TRIGGER ALL;
2431
2432 INSERT INTO buildpackagejob (id, job, build) VALUES (1, 1, 8);
2433@@ -3758,21 +1770,11 @@
2434
2435 ALTER TABLE codeimport DISABLE TRIGGER ALL;
2436
2437-INSERT INTO codeimport (id, branch, date_created, registrant, rcs_type, cvs_root, cvs_module, review_status, date_last_successful, owner, assignee, update_interval, url) VALUES (1, 75, '2007-06-25 20:04:04.226605', 52, 2, NULL, NULL, 20, NULL, 52, NULL, NULL, 'http://svn.example.org/svnroot/gnome-terminal/trunk');
2438-INSERT INTO codeimport (id, branch, date_created, registrant, rcs_type, cvs_root, cvs_module, review_status, date_last_successful, owner, assignee, update_interval, url) VALUES (2, 76, '2007-06-25 20:04:04.379285', 52, 1, ':pserver:anonymous@anoncvs.example.org:/cvs/gnome', 'evolution', 1, NULL, 52, NULL, NULL, NULL);
2439
2440
2441 ALTER TABLE codeimport ENABLE TRIGGER ALL;
2442
2443
2444-ALTER TABLE codeimportmachine DISABLE TRIGGER ALL;
2445-
2446-INSERT INTO codeimportmachine (id, date_created, hostname, state, heartbeat) VALUES (1, '2007-08-02 16:36:17.817407', 'bazaar-importer', 20, NULL);
2447-
2448-
2449-ALTER TABLE codeimportmachine ENABLE TRIGGER ALL;
2450-
2451-
2452 ALTER TABLE codeimportevent DISABLE TRIGGER ALL;
2453
2454
2455@@ -3789,12 +1791,18 @@
2456
2457 ALTER TABLE codeimportjob DISABLE TRIGGER ALL;
2458
2459-INSERT INTO codeimportjob (id, date_created, code_import, machine, date_due, state, requesting_user, ordering, heartbeat, logtail, date_started) VALUES (1, '2007-12-05 16:07:57.276112', 1, NULL, '2007-12-05 16:07:57.276112', 10, NULL, NULL, NULL, NULL, NULL);
2460
2461
2462 ALTER TABLE codeimportjob ENABLE TRIGGER ALL;
2463
2464
2465+ALTER TABLE codeimportmachine DISABLE TRIGGER ALL;
2466+
2467+
2468+
2469+ALTER TABLE codeimportmachine ENABLE TRIGGER ALL;
2470+
2471+
2472 ALTER TABLE codeimportresult DISABLE TRIGGER ALL;
2473
2474
2475@@ -3823,6 +1831,18 @@
2476 ALTER TABLE commercialsubscription ENABLE TRIGGER ALL;
2477
2478
2479+ALTER TABLE component DISABLE TRIGGER ALL;
2480+
2481+INSERT INTO component (id, name, description) VALUES (1, 'main', NULL);
2482+INSERT INTO component (id, name, description) VALUES (2, 'restricted', NULL);
2483+INSERT INTO component (id, name, description) VALUES (3, 'universe', NULL);
2484+INSERT INTO component (id, name, description) VALUES (4, 'multiverse', NULL);
2485+INSERT INTO component (id, name, description) VALUES (5, 'partner', 'This component contains partner packages only, which are not in the main Ubuntu archive.');
2486+
2487+
2488+ALTER TABLE component ENABLE TRIGGER ALL;
2489+
2490+
2491 ALTER TABLE componentselection DISABLE TRIGGER ALL;
2492
2493 INSERT INTO componentselection (id, distroseries, component, date_created) VALUES (1, 3, 1, '2006-10-16 18:31:43.257508');
2494@@ -3844,6 +1864,267 @@
2495 ALTER TABLE componentselection ENABLE TRIGGER ALL;
2496
2497
2498+ALTER TABLE continent DISABLE TRIGGER ALL;
2499+
2500+INSERT INTO continent (id, code, name) VALUES (1, 'AF', 'Africa');
2501+INSERT INTO continent (id, code, name) VALUES (2, 'AS', 'Asia');
2502+INSERT INTO continent (id, code, name) VALUES (3, 'EU', 'Europe');
2503+INSERT INTO continent (id, code, name) VALUES (4, 'NA', 'North America');
2504+INSERT INTO continent (id, code, name) VALUES (5, 'SA', 'South America');
2505+INSERT INTO continent (id, code, name) VALUES (6, 'OC', 'Oceania');
2506+INSERT INTO continent (id, code, name) VALUES (7, 'AN', 'Antarctica');
2507+
2508+
2509+ALTER TABLE continent ENABLE TRIGGER ALL;
2510+
2511+
2512+ALTER TABLE country DISABLE TRIGGER ALL;
2513+
2514+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (1, 'AF', 'AFG', 'Afghanistan', 'The Transitional Islamic State of Afghanistan', NULL, 2);
2515+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (2, 'AX', 'ALA', 'Åland Islands', NULL, NULL, 3);
2516+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (3, 'AL', 'ALB', 'Albania', 'Republic of Albania', NULL, 3);
2517+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (4, 'DZ', 'DZA', 'Algeria', 'People''s Democratic Republic of Algeria', NULL, 1);
2518+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (5, 'AS', 'ASM', 'American Samoa', NULL, NULL, 6);
2519+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (6, 'AD', 'AND', 'Andorra', 'Principality of Andorra', NULL, 3);
2520+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (7, 'AO', 'AGO', 'Angola', 'Republic of Angola', NULL, 1);
2521+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (8, 'AI', 'AIA', 'Anguilla', NULL, NULL, 4);
2522+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (9, 'AQ', 'ATA', 'Antarctica', NULL, NULL, 7);
2523+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (10, 'AG', 'ATG', 'Antigua and Barbuda', NULL, NULL, 4);
2524+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (11, 'AR', 'ARG', 'Argentina', 'Argentine Republic', NULL, 5);
2525+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (12, 'AM', 'ARM', 'Armenia', 'Republic of Armenia', NULL, 2);
2526+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (13, 'AW', 'ABW', 'Aruba', NULL, NULL, 4);
2527+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (14, 'AU', 'AUS', 'Australia', NULL, NULL, 6);
2528+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (15, 'AT', 'AUT', 'Austria', 'Republic of Austria', NULL, 3);
2529+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (16, 'AZ', 'AZE', 'Azerbaijan', 'Republic of Azerbaijan', NULL, 2);
2530+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (17, 'BS', 'BHS', 'Bahamas', 'Commonwealth of the Bahamas', NULL, 4);
2531+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (18, 'BH', 'BHR', 'Bahrain', 'State of Bahrain', NULL, 2);
2532+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (19, 'BD', 'BGD', 'Bangladesh', 'People''s Republic of Bangladesh', NULL, 2);
2533+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (20, 'BB', 'BRB', 'Barbados', NULL, NULL, 4);
2534+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (21, 'BY', 'BLR', 'Belarus', 'Republic of Belarus', NULL, 3);
2535+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (22, 'BE', 'BEL', 'Belgium', 'Kingdom of Belgium', NULL, 3);
2536+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (23, 'BZ', 'BLZ', 'Belize', NULL, NULL, 4);
2537+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (24, 'BJ', 'BEN', 'Benin', 'Republic of Benin', NULL, 1);
2538+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (25, 'BM', 'BMU', 'Bermuda', NULL, NULL, 4);
2539+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (26, 'BT', 'BTN', 'Bhutan', 'Kingdom of Bhutan', NULL, 2);
2540+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (27, 'BO', 'BOL', 'Bolivia', 'Republic of Bolivia', NULL, 5);
2541+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (28, 'BA', 'BIH', 'Bosnia and Herzegovina', 'Republic of Bosnia and Herzegovina', NULL, 3);
2542+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (29, 'BW', 'BWA', 'Botswana', 'Republic of Botswana', NULL, 1);
2543+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (30, 'BV', 'BVT', 'Bouvet Island', NULL, NULL, 7);
2544+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (31, 'BR', 'BRA', 'Brazil', 'Federative Republic of Brazil', NULL, 5);
2545+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (32, 'IO', 'IOT', 'British Indian Ocean Territory', NULL, NULL, 2);
2546+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (33, 'BN', 'BRN', 'Brunei Darussalam', NULL, NULL, 2);
2547+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (34, 'BG', 'BGR', 'Bulgaria', 'Republic of Bulgaria', NULL, 3);
2548+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (35, 'BF', 'BFA', 'Burkina Faso', NULL, NULL, 1);
2549+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (36, 'BI', 'BDI', 'Burundi', 'Republic of Burundi', NULL, 1);
2550+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (37, 'KH', 'KHM', 'Cambodia', 'Kingdom of Cambodia', NULL, 2);
2551+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (38, 'CM', 'CMR', 'Cameroon', 'Republic of Cameroon', NULL, 1);
2552+INSERT INTO country (id, iso3166code2, iso3166code3, name, title, description, continent) VALUES (39, 'CA', 'CAN', 'Canada', NULL, NULL, 4);
2553+INSERT INTO country (id, iso3166code2, iso3166cod