/[papo]/papo/sql/papo.sql
ViewVC logotype

Diff of /papo/sql/papo.sql

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.11 by apronotti, Mon Feb 10 16:57:02 2003 UTC revision 1.12 by apronotti, Tue Feb 18 20:49:30 2003 UTC
# Line 1  Line 1 
1  CREATE TABLE _account_plan_data (  CREATE TABLE _account_plan_data (
2      id serial PRIMARY KEY,      id serial PRIMARY KEY,
3      _start_t timestamp,      _start_t timestamp NOT NULL,
4      _end_t timestamp,      _end_t timestamp,
5      name varchar(80),      name varchar(80),
6      _table bigint,      _table bigint NOT NULL,
7      parent bigint,      parent bigint,
8      account_plan bigint      account_plan bigint
9  );  );
10  CREATE TABLE _address_data (  CREATE TABLE _address_data (
11      id serial PRIMARY KEY,      id serial PRIMARY KEY,
12      address varchar(255),      address varchar(255),
13      _start_t timestamp,      _start_t timestamp NOT NULL,
14      _end_t timestamp,      _end_t timestamp,
15      _table bigint,      _table bigint NOT NULL,
16      entity bigint      entity bigint
17  );  );
18  CREATE TABLE _alien_entity_data (  CREATE TABLE _alien_entity_data (
19      id serial PRIMARY KEY,      id serial PRIMARY KEY,
20      _start_t timestamp,      _start_t timestamp NOT NULL,
21      _end_t timestamp,      _end_t timestamp,
22      _table bigint,      _table bigint NOT NULL,
23      entity bigint      entity bigint
24  );  );
25  CREATE TABLE _alien_storehouse_data (  CREATE TABLE _alien_storehouse_data (
26      id serial PRIMARY KEY,      id serial PRIMARY KEY,
27      _start_t timestamp,      _start_t timestamp NOT NULL,
28      _end_t timestamp,      _end_t timestamp,
29      _table bigint,      _table bigint NOT NULL,
30      alien_entity bigint      alien_entity bigint
31  );  );
32  CREATE TABLE _bank_account_data (  CREATE TABLE _bank_account_data (
33      id serial PRIMARY KEY,      id serial PRIMARY KEY,
34      _start_t timestamp,      _start_t timestamp NOT NULL,
35      overdraft numeric(12,4),      overdraft numeric(12,4),
36      _end_t timestamp,      _end_t timestamp,
37      credit_timestamp timestamp,      credit_timestamp timestamp,
38      credit numeric(12,4),      credit numeric(12,4),
39      _table bigint,      _table bigint NOT NULL,
40      bank_branch bigint      bank_branch bigint
41  );  );
42  CREATE TABLE _bank_branch_data (  CREATE TABLE _bank_branch_data (
43      id serial PRIMARY KEY,      id serial PRIMARY KEY,
44      _start_t timestamp,      _start_t timestamp NOT NULL,
45      _end_t timestamp,      _end_t timestamp,
46      _table bigint,      _table bigint NOT NULL,
47      persona bigint      persona bigint
48  );  );
49  CREATE TABLE _bank_data (  CREATE TABLE _bank_data (
50      id serial PRIMARY KEY,      id serial PRIMARY KEY,
51      _start_t timestamp,      _start_t timestamp NOT NULL,
52      _end_t timestamp,      _end_t timestamp,
53      name varchar(80),      name varchar(80),
54      _table bigint,      _table bigint NOT NULL,
55      persona bigint      persona bigint
56  );  );
57  CREATE TABLE _barter_data (  CREATE TABLE _barter_data (
58      id serial PRIMARY KEY,      id serial PRIMARY KEY,
59      _start_t timestamp,      _start_t timestamp NOT NULL,
60      _end_t timestamp,      _end_t timestamp,
61      name varchar(80),      name varchar(80),
62      _table bigint,      _table bigint NOT NULL,
63      barter_type bigint,      barter_type bigint,
64      account_plan bigint      account_plan bigint
65  );  );
66  CREATE TABLE _barter_type_data (  CREATE TABLE _barter_type_data (
67      id serial PRIMARY KEY,      id serial PRIMARY KEY,
68      description text,      description text,
69      _start_t timestamp,      _start_t timestamp NOT NULL,
70      _end_t timestamp,      _end_t timestamp,
71      name varchar(80),      name varchar(80),
72      _table bigint,      _table bigint NOT NULL,
73      account_plan bigint      account_plan bigint
74  );  );
75  CREATE TABLE _branch_document_data (  CREATE TABLE _branch_document_data (
76      id serial PRIMARY KEY,      id serial PRIMARY KEY,
77      _start_t timestamp,      _start_t timestamp NOT NULL,
78      _end_t timestamp,      _end_t timestamp,
79      number char(30),      number char(30),
80      _table bigint,      _table bigint NOT NULL,
81      document_type bigint,      document_type bigint,
82      branch bigint      branch bigint
83  );  );
84  CREATE TABLE _client_data (  CREATE TABLE _client_data (
85      id serial PRIMARY KEY,      id serial PRIMARY KEY,
86      score int,      score int,
87      _start_t timestamp,      _start_t timestamp NOT NULL,
88      _end_t timestamp,      _end_t timestamp,
89      _table bigint,      _table bigint NOT NULL,
90      price_type bigint,      price_type bigint,
91      commission bigint,      commission bigint,
92      persona bigint      persona bigint
93  );  );
94  CREATE TABLE _comm_prod_client_data (  CREATE TABLE _comm_prod_client_data (
95      id bigserial PRIMARY KEY,      id bigserial PRIMARY KEY,
96      _start_t timestamp,      _start_t timestamp NOT NULL,
97      _end_t timestamp,      _end_t timestamp,
98      _table bigint,      _table bigint NOT NULL,
99      product bigint,      product bigint,
100      commission bigint,      commission bigint,
101      client bigint      client bigint
# Line 103  CREATE TABLE _comm_prod_client_data ( Line 103  CREATE TABLE _comm_prod_client_data (
103  CREATE TABLE _commission_data (  CREATE TABLE _commission_data (
104      id serial PRIMARY KEY,      id serial PRIMARY KEY,
105      rule text,      rule text,
106      _start_t timestamp,      _start_t timestamp NOT NULL,
107      _end_t timestamp,      _end_t timestamp,
108      name varchar(80),      name varchar(80),
109      _table bigint      _table bigint NOT NULL
110  );  );
111  CREATE TABLE _contact_data (  CREATE TABLE _contact_data (
112      id serial PRIMARY KEY,      id serial PRIMARY KEY,
113      _start_t timestamp,      _start_t timestamp NOT NULL,
114      _end_t timestamp,      _end_t timestamp,
115      _table bigint,      _table bigint NOT NULL,
116      alien_entity bigint      alien_entity bigint
117  );  );
118  CREATE TABLE _country_data (  CREATE TABLE _country_data (
119      id serial PRIMARY KEY,      id serial PRIMARY KEY,
120      iso2 char(2),      iso2 char(2),
121      iso3 char(3),      iso3 char(3),
122      _start_t timestamp,      _start_t timestamp NOT NULL,
123      _end_t timestamp,      _end_t timestamp,
124      phone integer,      phone integer,
125      un integer,      un integer,
126      name varchar(80),      name varchar(80),
127      _table bigint      _table bigint NOT NULL
128  );  );
129  CREATE TABLE _credit_card_data (  CREATE TABLE _credit_card_data (
130      id serial PRIMARY KEY,      id serial PRIMARY KEY,
131      ownid serial,      ownid serial,
132      _start_t timestamp,      _start_t timestamp NOT NULL,
133      _end_t timestamp,      _end_t timestamp,
134      accreditation_date timestamp,      accreditation_date timestamp,
135      name varchar(80),      name varchar(80),
136      _table bigint,      _table bigint NOT NULL,
137      account_plan bigint,      account_plan bigint,
138      accreditation_account bigint      accreditation_account bigint
139  );  );
140  CREATE TABLE _credit_card_plan_data (  CREATE TABLE _credit_card_plan_data (
141      id serial PRIMARY KEY,      id serial PRIMARY KEY,
142      payments int,      payments int,
143      _start_t timestamp,      _start_t timestamp NOT NULL,
144      _end_t timestamp,      _end_t timestamp,
145      surcharge numeric(10,2),      surcharge numeric(10,2),
146      financial_charge numeric(10,2),      financial_charge numeric(10,2),
147      name varchar(80),      name varchar(80),
148      _table bigint,      _table bigint NOT NULL,
149      account_plan bigint,      account_plan bigint,
150      credit_card bigint      credit_card bigint
151  );  );
152  CREATE TABLE _credit_limit_data (  CREATE TABLE _credit_limit_data (
153      id serial PRIMARY KEY,      id serial PRIMARY KEY,
154      credit_limit numeric(12,4),      credit_limit numeric(12,4),
155      _start_t timestamp,      _start_t timestamp NOT NULL,
156      time_stamp timestamp,      time_stamp timestamp,
157      _end_t timestamp,      _end_t timestamp,
158      balance numeric(12,4),      balance numeric(12,4),
159      _table bigint,      _table bigint NOT NULL,
160      entity bigint,      entity bigint,
161      movement_type bigint      movement_type bigint
162  );  );
163  CREATE TABLE _currency_type_data (  CREATE TABLE _currency_type_data (
164      id serial PRIMARY KEY,      id serial PRIMARY KEY,
165      _start_t timestamp,      _start_t timestamp NOT NULL,
166      _end_t timestamp,      _end_t timestamp,
167      rate numeric(10,2),      rate numeric(10,2),
168      name varchar(50),      name varchar(50),
169      _table bigint,      _table bigint NOT NULL,
170      account_plan bigint      account_plan bigint
171  );  );
172  CREATE TABLE _document_type_data (  CREATE TABLE _document_type_data (
173      id serial PRIMARY KEY,      id serial PRIMARY KEY,
174      description text,      description text,
175      _start_t timestamp,      _start_t timestamp NOT NULL,
176      _end_t timestamp,      _end_t timestamp,
177      name varchar(80),      name varchar(80),
178      _table bigint,      _table bigint NOT NULL,
179      account_plan bigint      account_plan bigint
180  );  );
181  CREATE TABLE _employee_comm_client_data (  CREATE TABLE _employee_comm_client_data (
182      id bigserial PRIMARY KEY,      id bigserial PRIMARY KEY,
183      _start_t timestamp,      _start_t timestamp NOT NULL,
184      _end_t timestamp,      _end_t timestamp,
185      _table bigint,      _table bigint NOT NULL,
186      employee bigint,      employee bigint,
187      commission bigint,      commission bigint,
188      client bigint      client bigint
189  );  );
190  CREATE TABLE _employee_comm_prod_client_data (  CREATE TABLE _employee_comm_prod_client_data (
191      id bigserial PRIMARY KEY,      id bigserial PRIMARY KEY,
192      _start_t timestamp,      _start_t timestamp NOT NULL,
193      _end_t timestamp,      _end_t timestamp,
194      _table bigint,      _table bigint NOT NULL,
195      product bigint,      product bigint,
196      employee bigint,      employee bigint,
197      commission bigint,      commission bigint,
# Line 199  CREATE TABLE _employee_comm_prod_client_ Line 199  CREATE TABLE _employee_comm_prod_client_
199  );  );
200  CREATE TABLE _employee_comm_prod_data (  CREATE TABLE _employee_comm_prod_data (
201      id bigserial PRIMARY KEY,      id bigserial PRIMARY KEY,
202      _start_t timestamp,      _start_t timestamp NOT NULL,
203      _end_t timestamp,      _end_t timestamp,
204      _table bigint,      _table bigint NOT NULL,
205      product bigint,      product bigint,
206      employee bigint,      employee bigint,
207      commission bigint      commission bigint
208  );  );
209  CREATE TABLE _employee_data (  CREATE TABLE _employee_data (
210      id serial PRIMARY KEY,      id serial PRIMARY KEY,
211      _start_t timestamp,      _start_t timestamp NOT NULL,
212      _end_t timestamp,      _end_t timestamp,
213      _table bigint,      _table bigint NOT NULL,
214      own_entity bigint,      own_entity bigint,
215      commission bigint      commission bigint
216  );  );
217  CREATE TABLE _employee_role_data (  CREATE TABLE _employee_role_data (
218      id serial PRIMARY KEY,      id serial PRIMARY KEY,
219      _start_t timestamp,      _start_t timestamp NOT NULL,
220      _end_t timestamp,      _end_t timestamp,
221      _table bigint,      _table bigint NOT NULL,
222      employee bigint,      employee bigint,
223      role bigint      role bigint
224  );  );
225  CREATE TABLE _entity_currency_type_data (  CREATE TABLE _entity_currency_type_data (
226      id serial PRIMARY KEY,      id serial PRIMARY KEY,
227      _start_t timestamp,      _start_t timestamp NOT NULL,
228      _end_t timestamp,      _end_t timestamp,
229      _table bigint,      _table bigint NOT NULL,
230      currency_type bigint,      currency_type bigint,
231      entity bigint      entity bigint
232  );  );
# Line 235  CREATE TABLE _entity_data ( Line 235  CREATE TABLE _entity_data (
235      is_active char(1),      is_active char(1),
236      anniversary date,      anniversary date,
237      observations text,      observations text,
238      _start_t timestamp,      _start_t timestamp NOT NULL,
239      _end_t timestamp,      _end_t timestamp,
240      start_time timestamp,      start_time timestamp,
241      name varchar(255),      name varchar(255),
242      _table bigint,      _table bigint NOT NULL,
243      entity_type bigint,      entity_type bigint,
244      account_plan bigint      account_plan bigint
245  );  );
246  CREATE TABLE _entity_relation_data (  CREATE TABLE _entity_relation_data (
247      id serial PRIMARY KEY,      id serial PRIMARY KEY,
248      _start_t timestamp,      _start_t timestamp NOT NULL,
249      _end_t timestamp,      _end_t timestamp,
250      _table bigint,      _table bigint NOT NULL,
251      entity_to bigint,      entity_to bigint,
252      entity_from bigint,      entity_from bigint,
253      relation_relation bigint      relation_relation bigint
254  );  );
255  CREATE TABLE _entity_type_data (  CREATE TABLE _entity_type_data (
256      id serial PRIMARY KEY,      id serial PRIMARY KEY,
257      _start_t timestamp,      _start_t timestamp NOT NULL,
258      _end_t timestamp,      _end_t timestamp,
259      name varchar(80),      name varchar(80),
260      _table bigint      _table bigint NOT NULL
261  );  );
262  CREATE TABLE _entity_uid_data (  CREATE TABLE _entity_uid_data (
263      id serial PRIMARY KEY,      id serial PRIMARY KEY,
264      _start_t timestamp,      _start_t timestamp NOT NULL,
265      _end_t timestamp,      _end_t timestamp,
266      uid varchar(50),      uid varchar(50),
267      _table bigint,      _table bigint NOT NULL,
268      entity_uid_type bigint,      entity_uid_type bigint,
269      entity bigint      entity bigint
270  );  );
271  CREATE TABLE _entity_uid_type_data (  CREATE TABLE _entity_uid_type_data (
272      id serial PRIMARY KEY,      id serial PRIMARY KEY,
273      _start_t timestamp,      _start_t timestamp NOT NULL,
274      _end_t timestamp,      _end_t timestamp,
275      name varchar(255),      name varchar(255),
276      _table bigint      _table bigint NOT NULL
277  );  );
278  CREATE TABLE _file_data (  CREATE TABLE _file_data (
279      id serial PRIMARY KEY,      id serial PRIMARY KEY,
280      mimetype char(80),      mimetype char(80),
281      _start_t timestamp,      _start_t timestamp NOT NULL,
282      checksum char(32),      checksum char(32),
283      _end_t timestamp,      _end_t timestamp,
284      filename varchar(255),      filename varchar(255),
285      application char(15),      application char(15),
286      size int,      size int,
287      _table bigint      _table bigint NOT NULL
288  );  );
289  CREATE TABLE _logical2physical_data (  CREATE TABLE _logical2physical_data (
290      id serial PRIMARY KEY,      id serial PRIMARY KEY,
291      _start_t timestamp,      _start_t timestamp NOT NULL,
292      _end_t timestamp,      _end_t timestamp,
293      _table bigint,      _table bigint NOT NULL,
294      physical bigint,      physical bigint,
295      logical bigint      logical bigint
296  );  );
297  CREATE TABLE _logical_structure_data (  CREATE TABLE _logical_structure_data (
298      id serial PRIMARY KEY,      id serial PRIMARY KEY,
299      _start_t timestamp,      _start_t timestamp NOT NULL,
300      _end_t timestamp,      _end_t timestamp,
301      name varchar(80),      name varchar(80),
302      _table bigint,      _table bigint NOT NULL,
303      parent bigint      parent bigint
304  );  );
305  CREATE TABLE _movement_type_data (  CREATE TABLE _movement_type_data (
306      id serial PRIMARY KEY,      id serial PRIMARY KEY,
307      _start_t timestamp,      _start_t timestamp NOT NULL,
308      _end_t timestamp,      _end_t timestamp,
309      name varchar(80),      name varchar(80),
310      _table bigint      _table bigint NOT NULL
311  );  );
312  CREATE TABLE _obligation_type_data (  CREATE TABLE _obligation_type_data (
313      id serial PRIMARY KEY,      id serial PRIMARY KEY,
314      description text,      description text,
315      _start_t timestamp,      _start_t timestamp NOT NULL,
316      _end_t timestamp,      _end_t timestamp,
317      name varchar(80),      name varchar(80),
318      _table bigint,      _table bigint NOT NULL,
319      account_plan bigint      account_plan bigint
320  );  );
321  CREATE TABLE _own_branch_data (  CREATE TABLE _own_branch_data (
322      id serial PRIMARY KEY,      id serial PRIMARY KEY,
323      _start_t timestamp,      _start_t timestamp NOT NULL,
324      _end_t timestamp,      _end_t timestamp,
325      _table bigint,      number char(4),
326        _table bigint NOT NULL,
327      own_entity bigint      own_entity bigint
328  );  );
329  CREATE TABLE _own_entity_data (  CREATE TABLE _own_entity_data (
330      id serial PRIMARY KEY,      id serial PRIMARY KEY,
331      _start_t timestamp,      _start_t timestamp NOT NULL,
332      _end_t timestamp,      _end_t timestamp,
333      _table bigint,      _table bigint NOT NULL,
334      entity bigint      entity bigint
335  );  );
336  CREATE TABLE _own_storehouse_data (  CREATE TABLE _own_storehouse_data (
337      id serial PRIMARY KEY,      id serial PRIMARY KEY,
338      _start_t timestamp,      _start_t timestamp NOT NULL,
339      _end_t timestamp,      _end_t timestamp,
340      _table bigint,      _table bigint NOT NULL,
341      own_entity bigint      own_entity bigint
342  );  );
343  CREATE TABLE _persona_data (  CREATE TABLE _persona_data (
344      id serial PRIMARY KEY,      id serial PRIMARY KEY,
345      _start_t timestamp,      _start_t timestamp NOT NULL,
346      _end_t timestamp,      _end_t timestamp,
347      _table bigint,      _table bigint NOT NULL,
348      alien_entity bigint      alien_entity bigint
349  );  );
350  CREATE TABLE _persona_tax_profile_data (  CREATE TABLE _persona_tax_profile_data (
351      id serial PRIMARY KEY,      id serial PRIMARY KEY,
352      _start_t timestamp,      _start_t timestamp NOT NULL,
353      _end_t timestamp,      _end_t timestamp,
354      _table bigint,      _table bigint NOT NULL,
355      tax_profile bigint,      tax_profile bigint,
356      persona bigint      persona bigint
357  );  );
358  CREATE TABLE _physical_structure_data (  CREATE TABLE _physical_structure_data (
359      id serial PRIMARY KEY,      id serial PRIMARY KEY,
360      _start_t timestamp,      _start_t timestamp NOT NULL,
361      _end_t timestamp,      _end_t timestamp,
362      name varchar(80),      name varchar(80),
363      _table bigint,      _table bigint NOT NULL,
364      parent bigint      parent bigint
365  );  );
366  CREATE TABLE _price_data (  CREATE TABLE _price_data (
367      id bigserial PRIMARY KEY,      id bigserial PRIMARY KEY,
368      _start_t timestamp,      _start_t timestamp NOT NULL,
369      _end_t timestamp,      _end_t timestamp,
370      unit_price numeric(12,4),      unit_price numeric(12,4),
371      _table bigint,      _table bigint NOT NULL,
372      product bigint,      product bigint,
373      price_type bigint      price_type bigint
374  );  );
# Line 375  CREATE TABLE _price_type_data ( Line 376  CREATE TABLE _price_type_data (
376      id serial PRIMARY KEY,      id serial PRIMARY KEY,
377      is_active char(1),      is_active char(1),
378      formula text,      formula text,
379      _start_t timestamp,      _start_t timestamp NOT NULL,
380      _end_t timestamp,      _end_t timestamp,
381      start_date timestamp,      start_date timestamp,
382      end_date timestamp,      end_date timestamp,
383      name varchar(80),      name varchar(80),
384      _table bigint,      _table bigint NOT NULL,
385      parent bigint,      parent bigint,
386      branch bigint      branch bigint
387  );  );
388  CREATE TABLE _product_classification_data (  CREATE TABLE _product_classification_data (
389      id serial PRIMARY KEY,      id serial PRIMARY KEY,
390      description text,      description text,
391      _start_t timestamp,      _start_t timestamp NOT NULL,
392      _end_t timestamp,      _end_t timestamp,
393      is_product char(1),      is_product char(1),
394      name varchar(255),      name varchar(255),
395      _table bigint,      _table bigint NOT NULL,
396      parent bigint      parent bigint
397  );  );
398  CREATE TABLE _product_code_data (  CREATE TABLE _product_code_data (
399      id serial PRIMARY KEY,      id serial PRIMARY KEY,
400      code varchar(30),      code varchar(30),
401      _start_t timestamp,      _start_t timestamp NOT NULL,
402      _end_t timestamp,      _end_t timestamp,
403      _table bigint,      _table bigint NOT NULL,
404      product_code_type bigint,      product_code_type bigint,
405      product bigint      product bigint
406  );  );
407  CREATE TABLE _product_code_type_data (  CREATE TABLE _product_code_type_data (
408      id serial PRIMARY KEY,      id serial PRIMARY KEY,
409      _start_t timestamp,      _start_t timestamp NOT NULL,
410      _end_t timestamp,      _end_t timestamp,
411      name varchar(80),      name varchar(80),
412      _table bigint      _table bigint NOT NULL
413  );  );
414  CREATE TABLE _product_data (  CREATE TABLE _product_data (
415      id serial PRIMARY KEY,      id serial PRIMARY KEY,
416      canonical_name varchar(80),      canonical_name varchar(80),
417      _start_t timestamp,      _start_t timestamp NOT NULL,
418      _end_t timestamp,      _end_t timestamp,
419      salable char(1),      salable char(1),
420      is_perishable char(1),      is_perishable char(1),
421      _table bigint,      _table bigint NOT NULL,
422      product_classification bigint,      product_classification bigint,
423      location bigint,      location bigint,
424      country bigint,      country bigint,
# Line 426  CREATE TABLE _product_data ( Line 427  CREATE TABLE _product_data (
427  );  );
428  CREATE TABLE _product_file_data (  CREATE TABLE _product_file_data (
429      id bigserial PRIMARY KEY,      id bigserial PRIMARY KEY,
430      _start_t timestamp,      _start_t timestamp NOT NULL,
431      _end_t timestamp,      _end_t timestamp,
432      _table bigint,      _table bigint NOT NULL,
433      product bigint,      product bigint,
434      file bigint      file bigint
435  );  );
436  CREATE TABLE _product_measure_data (  CREATE TABLE _product_measure_data (
437      id serial PRIMARY KEY,      id serial PRIMARY KEY,
438      measure numeric(12,4),      measure numeric(12,4),
439      _start_t timestamp,      _start_t timestamp NOT NULL,
440      _end_t timestamp,      _end_t timestamp,
441      _table bigint,      _table bigint NOT NULL,
442      product bigint,      product bigint,
443      product_measure_type bigint      product_measure_type bigint
444  );  );
445  CREATE TABLE _product_measure_type_data (  CREATE TABLE _product_measure_type_data (
446      id serial PRIMARY KEY,      id serial PRIMARY KEY,
447      _start_t timestamp,      _start_t timestamp NOT NULL,
448      _end_t timestamp,      _end_t timestamp,
449      name varchar(80),      name varchar(80),
450      _table bigint      _table bigint NOT NULL
451  );  );
452  CREATE TABLE _product_name_data (  CREATE TABLE _product_name_data (
453      id serial PRIMARY KEY,      id serial PRIMARY KEY,
454      maximum_length int,      maximum_length int,
455      _start_t timestamp,      _start_t timestamp NOT NULL,
456      _end_t timestamp,      _end_t timestamp,
457      name varchar(80),      name varchar(80),
458      _table bigint,      _table bigint NOT NULL,
459      product bigint,      product bigint,
460      product_name_type bigint      product_name_type bigint
461  );  );
462  CREATE TABLE _product_name_type_data (  CREATE TABLE _product_name_type_data (
463      id serial PRIMARY KEY,      id serial PRIMARY KEY,
464      _start_t timestamp,      _start_t timestamp NOT NULL,
465      _end_t timestamp,      _end_t timestamp,
466      is_required char(1),      is_required char(1),
467      name varchar(80),      name varchar(80),
468      _table bigint      _table bigint NOT NULL
469  );  );
470  CREATE TABLE _product_provider_data (  CREATE TABLE _product_provider_data (
471      id bigserial PRIMARY KEY,      id bigserial PRIMARY KEY,
472      _start_t timestamp,      _start_t timestamp NOT NULL,
473      catalog_number char(30),      catalog_number char(30),
474      _end_t timestamp,      _end_t timestamp,
475      _table bigint,      _table bigint NOT NULL,
476      product bigint,      product bigint,
477      provider bigint      provider bigint
478  );  );
479  CREATE TABLE _product_store_data (  CREATE TABLE _product_store_data (
480      id bigserial PRIMARY KEY,      id bigserial PRIMARY KEY,
481      level numeric(12,4),      level numeric(12,4),
482      _start_t timestamp,      _start_t timestamp NOT NULL,
483      _end_t timestamp,      _end_t timestamp,
484      lowater numeric(12,4),      lowater numeric(12,4),
485      hiwater numeric(12,4),      hiwater numeric(12,4),
486      _table bigint,      _table bigint NOT NULL,
487      product bigint,      product bigint,
488      storehouse bigint      storehouse bigint
489  );  );
490  CREATE TABLE _product_structure_data (  CREATE TABLE _product_structure_data (
491      id bigserial PRIMARY KEY,      id bigserial PRIMARY KEY,
492      _start_t timestamp,      _start_t timestamp NOT NULL,
493      _end_t timestamp,      _end_t timestamp,
494      qty numeric(12,4),      qty numeric(12,4),
495      _table bigint,      _table bigint NOT NULL,
496      product bigint,      product bigint,
497      component bigint      component bigint
498  );  );
499  CREATE TABLE _product_tax_data (  CREATE TABLE _product_tax_data (
500      id bigserial PRIMARY KEY,      id bigserial PRIMARY KEY,
501      _start_t timestamp,      _start_t timestamp NOT NULL,
502      _end_t timestamp,      _end_t timestamp,
503      amount numeric(12,4),      amount numeric(12,4),
504      _table bigint,      _table bigint NOT NULL,
505      tax bigint,      tax bigint,
506      product bigint,      product bigint,
507      entry int      entry int
508  );  );
509  CREATE TABLE _provider_data (  CREATE TABLE _provider_data (
510      id serial PRIMARY KEY,      id serial PRIMARY KEY,
511      _start_t timestamp,      _start_t timestamp NOT NULL,
512      _end_t timestamp,      _end_t timestamp,
513      _table bigint,      _table bigint NOT NULL,
514      persona bigint      persona bigint
515  );  );
516  CREATE TABLE _relation_type_data (  CREATE TABLE _relation_type_data (
517      id serial PRIMARY KEY,      id serial PRIMARY KEY,
518      _start_t timestamp,      _start_t timestamp NOT NULL,
519      _end_t timestamp,      _end_t timestamp,
520      name varchar(255),      name varchar(255),
521      _table bigint      _table bigint NOT NULL
522  );  );
523  CREATE TABLE _role_data (  CREATE TABLE _role_data (
524      id serial PRIMARY KEY,      id serial PRIMARY KEY,
525      _start_t timestamp,      _start_t timestamp NOT NULL,
526      _end_t timestamp,      _end_t timestamp,
527      name varchar(80),      name varchar(80),
528      _table bigint      _table bigint NOT NULL
529  );  );
530  CREATE TABLE _tax_data (  CREATE TABLE _tax_data (
531      id serial PRIMARY KEY,      id serial PRIMARY KEY,
532      _start_t timestamp,      _start_t timestamp NOT NULL,
533      _end_t timestamp,      _end_t timestamp,
534      graft text,      graft text,
535      name varchar(80),      name varchar(80),
536      _table bigint,      _table bigint NOT NULL,
537      account_plan bigint      account_plan bigint
538  );  );
539  CREATE TABLE _tax_profile_data (  CREATE TABLE _tax_profile_data (
540      id serial PRIMARY KEY,      id serial PRIMARY KEY,
541      _start_t timestamp,      _start_t timestamp NOT NULL,
542      _end_t timestamp,      _end_t timestamp,
543      profile varchar(80),      profile varchar(80),
544      _table bigint,      _table bigint NOT NULL,
545      tax bigint      tax bigint
546  );  );
547  CREATE TABLE _telephone_data (  CREATE TABLE _telephone_data (
548      id serial PRIMARY KEY,      id serial PRIMARY KEY,
549      telephone varchar(25),      telephone varchar(25),
550      _start_t timestamp,      _start_t timestamp NOT NULL,
551      _end_t timestamp,      _end_t timestamp,
552      _table bigint,      _table bigint NOT NULL,
553      entity bigint      entity bigint
554  );  );
555  CREATE TABLE _ticket_data (  CREATE TABLE _ticket_data (
556      id serial PRIMARY KEY,      id serial PRIMARY KEY,
557      _start_t timestamp,      _start_t timestamp NOT NULL,
558      _end_t timestamp,      _end_t timestamp,
559      _table bigint,      _table bigint NOT NULL,
560      account_plan bigint,      account_plan bigint,
561      ticket_type bigint      ticket_type bigint
562  );  );
563  CREATE TABLE _ticket_type_data (  CREATE TABLE _ticket_type_data (
564      id serial PRIMARY KEY,      id serial PRIMARY KEY,
565      description text,      description text,
566      _start_t timestamp,      _start_t timestamp NOT NULL,
567      _end_t timestamp,      _end_t timestamp,
568      name varchar(80),      name varchar(80),
569      _table bigint,      _table bigint NOT NULL,
570      account_plan bigint      account_plan bigint
571  );  );
572  CREATE TABLE _url_data (  CREATE TABLE _url_data (
573      id serial PRIMARY KEY,      id serial PRIMARY KEY,
574      url text,      url text,
575      _start_t timestamp,      _start_t timestamp NOT NULL,
576      _end_t timestamp,      _end_t timestamp,
577      _table bigint,      _table bigint NOT NULL,
578      entity bigint      entity bigint
579  );  );
580  CREATE TABLE account_plan (  CREATE TABLE account_plan (
# Line 1286  ALTER TABLE barter_movement ADD FOREIGN Line 1287  ALTER TABLE barter_movement ADD FOREIGN
1287  ALTER TABLE barter_movement ADD FOREIGN KEY (movement) REFERENCES movement;  ALTER TABLE barter_movement ADD FOREIGN KEY (movement) REFERENCES movement;
1288  ALTER TABLE barter_movement ADD FOREIGN KEY (barter) REFERENCES _barter_data;  ALTER TABLE barter_movement ADD FOREIGN KEY (barter) REFERENCES _barter_data;
1289    
   
1290  DELETE FROM "_country_data";  DELETE FROM "_country_data";
1291  DELETE FROM "country";  DELETE FROM "country";
1292  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1293  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Afghanistan',4,'AF','AFG',12,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Afghanistan',4,'AF','AFG',12,currval('country_id_seq'));
1294  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1295  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Albania',8,'AL','ALB',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Albania',8,'AL','ALB',NULL,currval('country_id_seq'));
1296  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1297  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Algeria',12,'DZ','DZA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Algeria',12,'DZ','DZA',NULL,currval('country_id_seq'));
1298  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1299  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'American Samoa',16,'AS','ASM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'American Samoa',16,'AS','ASM',NULL,currval('country_id_seq'));
1300  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1301  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Andorra',20,'AD','AND',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Andorra',20,'AD','AND',NULL,currval('country_id_seq'));
1302  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1303  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Angola',24,'AO','AGO',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Angola',24,'AO','AGO',NULL,currval('country_id_seq'));
1304  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1305  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Azerbaijan',31,'AZ','AZE',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Azerbaijan',31,'AZ','AZE',NULL,currval('country_id_seq'));
1306  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1307  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Australia',36,'AU','AUS',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Australia',36,'AU','AUS',NULL,currval('country_id_seq'));
1308  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1309  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Austria',40,'AT','AUT',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Austria',40,'AT','AUT',NULL,currval('country_id_seq'));
1310  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1311  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Bahamas',44,'BS','BHS',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Bahamas',44,'BS','BHS',NULL,currval('country_id_seq'));
1312  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1313  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Bahrain',48,'BH','BHR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Bahrain',48,'BH','BHR',NULL,currval('country_id_seq'));
1314  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1315  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Bangladesh',50,'BD','BGD',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Bangladesh',50,'BD','BGD',NULL,currval('country_id_seq'));
1316  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1317  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Armenia',51,'AM','ARM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Armenia',51,'AM','ARM',NULL,currval('country_id_seq'));
1318  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1319  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Barbados',52,'BB','BRB',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Barbados',52,'BB','BRB',NULL,currval('country_id_seq'));
1320  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1321  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Belgium',56,'BE','BEL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Belgium',56,'BE','BEL',NULL,currval('country_id_seq'));
1322  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1323  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Bermuda',60,'BM','BMU',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Bermuda',60,'BM','BMU',NULL,currval('country_id_seq'));
1324  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1325  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Bhutan',64,'BT','BTN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Bhutan',64,'BT','BTN',NULL,currval('country_id_seq'));
1326  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1327  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Bolivia',68,'BO','BOL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Bolivia',68,'BO','BOL',NULL,currval('country_id_seq'));
1328  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1329  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Bosnia and Herzegovina',70,'BA','BIH',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Bosnia and Herzegovina',70,'BA','BIH',NULL,currval('country_id_seq'));
1330  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1331  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Botswana',72,'BW','BWA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Botswana',72,'BW','BWA',NULL,currval('country_id_seq'));
1332  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1333  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Brazil',76,'BR','BRA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Brazil',76,'BR','BRA',NULL,currval('country_id_seq'));
1334  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1335  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Belize',84,'BZ','BLZ',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Belize',84,'BZ','BLZ',NULL,currval('country_id_seq'));
1336  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1337  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Solomon Islands',90,'SB','SLB',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Solomon Islands',90,'SB','SLB',NULL,currval('country_id_seq'));
1338  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1339  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Virgin Islands, British',92,'VG','VGB',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Virgin Islands, British',92,'VG','VGB',NULL,currval('country_id_seq'));
1340  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1341  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Brunei Daraussalam',96,'BN','BRN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Brunei Daraussalam',96,'BN','BRN',NULL,currval('country_id_seq'));
1342  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1343  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Bulgaria',100,'BG','BGR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Bulgaria',100,'BG','BGR',NULL,currval('country_id_seq'));
1344  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1345  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Myanmar',104,'MM','MMR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Myanmar',104,'MM','MMR',NULL,currval('country_id_seq'));
1346  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1347  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Burundi',108,'BI','BDI',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Burundi',108,'BI','BDI',NULL,currval('country_id_seq'));
1348  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1349  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Belarus',112,'BY','BLR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Belarus',112,'BY','BLR',NULL,currval('country_id_seq'));
1350  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1351  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Cambodia',116,'KH','KHM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Cambodia',116,'KH','KHM',NULL,currval('country_id_seq'));
1352  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1353  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Cameroon',120,'CM','CMR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Cameroon',120,'CM','CMR',NULL,currval('country_id_seq'));
1354  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1355  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Canada',124,'CA','CAN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Canada',124,'CA','CAN',NULL,currval('country_id_seq'));
1356  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1357  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Cape Verde',132,'CV','CPV',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Cape Verde',132,'CV','CPV',NULL,currval('country_id_seq'));
1358  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1359  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Cayman Islands',136,'KY','CYM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Cayman Islands',136,'KY','CYM',NULL,currval('country_id_seq'));
1360  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1361  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Central African Republic',140,'CF','CAF',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Central African Republic',140,'CF','CAF',NULL,currval('country_id_seq'));
1362  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1363  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Sri Lanka',144,'LK','LKA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Sri Lanka',144,'LK','LKA',NULL,currval('country_id_seq'));
1364  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1365  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Chad',148,'TD','TCD',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Chad',148,'TD','TCD',NULL,currval('country_id_seq'));
1366  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1367  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Chile',152,'CL','CHL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Chile',152,'CL','CHL',NULL,currval('country_id_seq'));
1368  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1369  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'China',156,'CN','CHN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'China',156,'CN','CHN',NULL,currval('country_id_seq'));
1370  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1371  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Taiwan Province of China',158,'TW','TWN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Taiwan Province of China',158,'TW','TWN',NULL,currval('country_id_seq'));
1372  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1373  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Colombia',170,'CO','COL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Colombia',170,'CO','COL',NULL,currval('country_id_seq'));
1374  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1375  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Comoros',174,'KM','COM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Comoros',174,'KM','COM',NULL,currval('country_id_seq'));
1376  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1377  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Congo',178,'CG','COG',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Congo',178,'CG','COG',NULL,currval('country_id_seq'));
1378  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1379  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Congo, The Democratic Republic of the',180,'CD','COD',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Congo, The Democratic Republic of the',180,'CD','COD',NULL,currval('country_id_seq'));
1380  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1381  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Cook Islands',184,'CK','COK',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Cook Islands',184,'CK','COK',NULL,currval('country_id_seq'));
1382  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1383  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Costa Rica',188,'CR','CRI',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Costa Rica',188,'CR','CRI',NULL,currval('country_id_seq'));
1384  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1385  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Croatia',191,'HR','HRV',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Croatia',191,'HR','HRV',NULL,currval('country_id_seq'));
1386  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1387  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Cuba',192,'CU','CUB',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Cuba',192,'CU','CUB',NULL,currval('country_id_seq'));
1388  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1389  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Cyprus',196,'CY','CYP',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Cyprus',196,'CY','CYP',NULL,currval('country_id_seq'));
1390  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1391  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Czech Republic',203,'CZ','CZE',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Czech Republic',203,'CZ','CZE',NULL,currval('country_id_seq'));
1392  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1393  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Benin',204,'BJ','BEN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Benin',204,'BJ','BEN',NULL,currval('country_id_seq'));
1394  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1395  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Denmark',208,'DK','DNK',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Denmark',208,'DK','DNK',NULL,currval('country_id_seq'));
1396  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1397  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Dominica',212,'DM','DMA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Dominica',212,'DM','DMA',NULL,currval('country_id_seq'));
1398  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1399  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Dominican Republic',214,'DO','DOM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Dominican Republic',214,'DO','DOM',NULL,currval('country_id_seq'));
1400  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1401  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Ecuador',218,'EC','ECU',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Ecuador',218,'EC','ECU',NULL,currval('country_id_seq'));
1402  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1403  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'El Salvador',222,'SV','SLV',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'El Salvador',222,'SV','SLV',NULL,currval('country_id_seq'));
1404  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1405  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Equatorial Guinea',226,'GQ','GNQ',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Equatorial Guinea',226,'GQ','GNQ',NULL,currval('country_id_seq'));
1406  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1407  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Ethiopia',230,'ET','ETH',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Ethiopia',230,'ET','ETH',NULL,currval('country_id_seq'));
1408  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1409  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Eritrea',232,'ER','ERI',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Eritrea',232,'ER','ERI',NULL,currval('country_id_seq'));
1410  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1411  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Estonia',233,'EE','EST',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Estonia',233,'EE','EST',NULL,currval('country_id_seq'));
1412  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1413  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Faroe Islands',234,'FO','FRO',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Faroe Islands',234,'FO','FRO',NULL,currval('country_id_seq'));
1414  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1415  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Falkland Islands (Malvinas)',238,'FK','FLK',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Falkland Islands (Malvinas)',238,'FK','FLK',NULL,currval('country_id_seq'));
1416  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1417  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Fiji',242,'FJ','FJI',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Fiji',242,'FJ','FJI',NULL,currval('country_id_seq'));
1418  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1419  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Finland',246,'FI','FIN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Finland',246,'FI','FIN',NULL,currval('country_id_seq'));
1420  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1421  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'France',250,'FR','FRA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'France',250,'FR','FRA',NULL,currval('country_id_seq'));
1422  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1423  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'French Guiana',254,'GF','GUF',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'French Guiana',254,'GF','GUF',NULL,currval('country_id_seq'));
1424  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1425  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'French Polynesia',258,'PF','PYF',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'French Polynesia',258,'PF','PYF',NULL,currval('country_id_seq'));
1426  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1427  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Djibouti',262,'DJ','DJI',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Djibouti',262,'DJ','DJI',NULL,currval('country_id_seq'));
1428  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1429  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Gabon',266,'GA','GAB',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Gabon',266,'GA','GAB',NULL,currval('country_id_seq'));
1430  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1431  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Georgia',268,'GE','GEO',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Georgia',268,'GE','GEO',NULL,currval('country_id_seq'));
1432  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1433  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Gambia',270,'GM','GMB',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Gambia',270,'GM','GMB',NULL,currval('country_id_seq'));
1434  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1435  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Palestinian Territory, Occupied',275,'PS','PSE',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Palestinian Territory, Occupied',275,'PS','PSE',NULL,currval('country_id_seq'));
1436  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1437  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Germany',276,'DE','DEU',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Germany',276,'DE','DEU',NULL,currval('country_id_seq'));
1438  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1439  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Ghana',288,'GH','GHA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Ghana',288,'GH','GHA',NULL,currval('country_id_seq'));
1440  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1441  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Gibraltar',292,'GI','GIB',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Gibraltar',292,'GI','GIB',NULL,currval('country_id_seq'));
1442  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1443  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Kiribati',296,'KI','KIR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Kiribati',296,'KI','KIR',NULL,currval('country_id_seq'));
1444  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1445  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Greece',300,'GR','GRC',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Greece',300,'GR','GRC',NULL,currval('country_id_seq'));
1446  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1447  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Greenland',304,'GL','GRL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Greenland',304,'GL','GRL',NULL,currval('country_id_seq'));
1448  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1449  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Grenada',308,'GD','GRD',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Grenada',308,'GD','GRD',NULL,currval('country_id_seq'));
1450  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1451  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Guadeloupe',312,'GP','GLP',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Guadeloupe',312,'GP','GLP',NULL,currval('country_id_seq'));
1452  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1453  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Guam',316,'GU','GUM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Guam',316,'GU','GUM',NULL,currval('country_id_seq'));
1454  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1455  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Guatemala',320,'GT','GTM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Guatemala',320,'GT','GTM',NULL,currval('country_id_seq'));
1456  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1457  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Guinea',324,'GN','GIN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Guinea',324,'GN','GIN',NULL,currval('country_id_seq'));
1458  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1459  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Guyana',328,'GY','GUY',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Guyana',328,'GY','GUY',NULL,currval('country_id_seq'));
1460  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1461  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Haiti',332,'HT','HTI',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Haiti',332,'HT','HTI',NULL,currval('country_id_seq'));
1462  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1463  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Holy See (Vatican City State)',336,'VA','VAT',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Holy See (Vatican City State)',336,'VA','VAT',NULL,currval('country_id_seq'));
1464  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1465  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Honduras',340,'HN','HND',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Honduras',340,'HN','HND',NULL,currval('country_id_seq'));
1466  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1467  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Hong Kong',344,'HK','HKG',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Hong Kong',344,'HK','HKG',NULL,currval('country_id_seq'));
1468  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1469  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Hungary',348,'HU','HUN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Hungary',348,'HU','HUN',NULL,currval('country_id_seq'));
1470  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1471  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Iceland',352,'IS','ISL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Iceland',352,'IS','ISL',NULL,currval('country_id_seq'));
1472  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1473  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'India',356,'IN','IND',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'India',356,'IN','IND',NULL,currval('country_id_seq'));
1474  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1475  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Indonesia',360,'ID','IDN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Indonesia',360,'ID','IDN',NULL,currval('country_id_seq'));
1476  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1477  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Iran, Islamic Republic of',364,'IR','IRN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Iran, Islamic Republic of',364,'IR','IRN',NULL,currval('country_id_seq'));
1478  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1479  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Iraq',368,'IQ','IRQ',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Iraq',368,'IQ','IRQ',NULL,currval('country_id_seq'));
1480  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1481  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Ireland',372,'IE','IRL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Ireland',372,'IE','IRL',NULL,currval('country_id_seq'));
1482  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1483  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Israel',376,'IL','ISR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Israel',376,'IL','ISR',NULL,currval('country_id_seq'));
1484  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1485  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Italy',380,'IT','ITA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Italy',380,'IT','ITA',NULL,currval('country_id_seq'));
1486  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1487  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Cote d''Ivoire',384,'CI','CIV',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Cote d''Ivoire',384,'CI','CIV',NULL,currval('country_id_seq'));
1488  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1489  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Jamaica',388,'JM','JAM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Jamaica',388,'JM','JAM',NULL,currval('country_id_seq'));
1490  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1491  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Japan',392,'JP','JPN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Japan',392,'JP','JPN',NULL,currval('country_id_seq'));
1492  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1493  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Kazakhstan',398,'KZ','KAZ',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Kazakhstan',398,'KZ','KAZ',NULL,currval('country_id_seq'));
1494  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1495  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Jordan',400,'JO','JOR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Jordan',400,'JO','JOR',NULL,currval('country_id_seq'));
1496  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1497  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Kenya',404,'KE','KEN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Kenya',404,'KE','KEN',NULL,currval('country_id_seq'));
1498  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1499  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Korea, Democratic People''s Republic of',408,'KP','PRK',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Korea, Democratic People''s Republic of',408,'KP','PRK',NULL,currval('country_id_seq'));
1500  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1501  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Korea, Republic of',410,'KR','KOR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Korea, Republic of',410,'KR','KOR',NULL,currval('country_id_seq'));
1502  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1503  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Kuwait',414,'KW','KWT',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Kuwait',414,'KW','KWT',NULL,currval('country_id_seq'));
1504  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1505  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Kyrgyzstan',417,'KG','KGZ',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Kyrgyzstan',417,'KG','KGZ',NULL,currval('country_id_seq'));
1506  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1507  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Lao People''s Democratic Republic',418,'LA','LAO',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Lao People''s Democratic Republic',418,'LA','LAO',NULL,currval('country_id_seq'));
1508  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1509  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Lebanon',422,'LB','LBN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Lebanon',422,'LB','LBN',NULL,currval('country_id_seq'));
1510  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1511  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Lesotho',426,'LS','LSO',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Lesotho',426,'LS','LSO',NULL,currval('country_id_seq'));
1512  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1513  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Latvia',428,'LV','LVA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Latvia',428,'LV','LVA',NULL,currval('country_id_seq'));
1514  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1515  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Liberia',430,'LR','LBR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Liberia',430,'LR','LBR',NULL,currval('country_id_seq'));
1516  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1517  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Libyan Arab Jamahiriya',434,'LY','LBY',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Libyan Arab Jamahiriya',434,'LY','LBY',NULL,currval('country_id_seq'));
1518  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1519  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Liechtenstein',438,'LI','LIE',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Liechtenstein',438,'LI','LIE',NULL,currval('country_id_seq'));
1520  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1521  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Lithuania',440,'LT','LTU',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Lithuania',440,'LT','LTU',NULL,currval('country_id_seq'));
1522  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1523  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Luxembourg',442,'LU','LUX',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Luxembourg',442,'LU','LUX',NULL,currval('country_id_seq'));
1524  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1525  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Macau',446,'MO','MAC',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Macau',446,'MO','MAC',NULL,currval('country_id_seq'));
1526  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1527  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Madagascar',450,'MG','MDG',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Madagascar',450,'MG','MDG',NULL,currval('country_id_seq'));
1528  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1529  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Malawi',454,'MW','MWI',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Malawi',454,'MW','MWI',NULL,currval('country_id_seq'));
1530  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1531  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Malaysia',458,'MY','MYS',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Malaysia',458,'MY','MYS',NULL,currval('country_id_seq'));
1532  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1533  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Maldives',462,'MV','MDV',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Maldives',462,'MV','MDV',NULL,currval('country_id_seq'));
1534  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1535  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Mali',466,'ML','MLI',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Mali',466,'ML','MLI',NULL,currval('country_id_seq'));
1536  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1537  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Malta',470,'MT','MLT',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Malta',470,'MT','MLT',NULL,currval('country_id_seq'));
1538  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1539  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Martinique',474,'MQ','MTQ',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Martinique',474,'MQ','MTQ',NULL,currval('country_id_seq'));
1540  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1541  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Mauritania',478,'MR','MRT',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Mauritania',478,'MR','MRT',NULL,currval('country_id_seq'));
1542  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1543  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Mauritius',480,'MU','MUS',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Mauritius',480,'MU','MUS',NULL,currval('country_id_seq'));
1544  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1545  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Mexico',484,'MX','MEX',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Mexico',484,'MX','MEX',NULL,currval('country_id_seq'));
1546  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1547  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Monaco',492,'MC','MCO',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Monaco',492,'MC','MCO',NULL,currval('country_id_seq'));
1548  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1549  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Mongolia',496,'MN','MNG',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Mongolia',496,'MN','MNG',NULL,currval('country_id_seq'));
1550  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1551  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Moldova',498,'MD','MDA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Moldova',498,'MD','MDA',NULL,currval('country_id_seq'));
1552  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1553  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Montserrat',500,'MS','MSR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Montserrat',500,'MS','MSR',NULL,currval('country_id_seq'));
1554  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1555  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Morocco',504,'MA','MAR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Morocco',504,'MA','MAR',NULL,currval('country_id_seq'));
1556  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1557  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Mozambique',508,'MZ','MOZ',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Mozambique',508,'MZ','MOZ',NULL,currval('country_id_seq'));
1558  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1559  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Oman',512,'OM','OMN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Oman',512,'OM','OMN',NULL,currval('country_id_seq'));
1560  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1561  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Namibia',516,'NA','NAM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Namibia',516,'NA','NAM',NULL,currval('country_id_seq'));
1562  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1563  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Nauru',520,'NR','NRU',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Nauru',520,'NR','NRU',NULL,currval('country_id_seq'));
1564  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1565  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Nepal',524,'NP','NPL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Nepal',524,'NP','NPL',NULL,currval('country_id_seq'));
1566  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1567  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Netherlands',528,'NL','NLD',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Netherlands',528,'NL','NLD',NULL,currval('country_id_seq'));
1568  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1569  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Netherlands Antilles',530,'AN','ANT',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Netherlands Antilles',530,'AN','ANT',NULL,currval('country_id_seq'));
1570  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1571  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Aruba',533,'AW','ABW',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Aruba',533,'AW','ABW',NULL,currval('country_id_seq'));
1572  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1573  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'New Caledonia',540,'NC','NCL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'New Caledonia',540,'NC','NCL',NULL,currval('country_id_seq'));
1574  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1575  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Vanuatu',548,'VU','VUT',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Vanuatu',548,'VU','VUT',NULL,currval('country_id_seq'));
1576  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1577  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'New Zealand',554,'NZ','NZL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'New Zealand',554,'NZ','NZL',NULL,currval('country_id_seq'));
1578  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1579  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Nicaragua',558,'NI','NIC',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Nicaragua',558,'NI','NIC',NULL,currval('country_id_seq'));
1580  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1581  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Niger',562,'NE','NER',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Niger',562,'NE','NER',NULL,currval('country_id_seq'));
1582  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1583  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Nigeria',566,'NG','NGA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Nigeria',566,'NG','NGA',NULL,currval('country_id_seq'));
1584  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1585  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Niue',570,'NU','NIU',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Niue',570,'NU','NIU',NULL,currval('country_id_seq'));
1586  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1587  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Norfolk Island',574,'NF','NFK',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Norfolk Island',574,'NF','NFK',NULL,currval('country_id_seq'));
1588  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1589  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Norway',578,'NO','NOR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Norway',578,'NO','NOR',NULL,currval('country_id_seq'));
1590  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1591  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Northern Mariana Islands',580,'MP','MNP',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Northern Mariana Islands',580,'MP','MNP',NULL,currval('country_id_seq'));
1592  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1593  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Micronesia, Federated States of',583,'FM','FSM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Micronesia, Federated States of',583,'FM','FSM',NULL,currval('country_id_seq'));
1594  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1595  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Marshall Islands',584,'MH','MHL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Marshall Islands',584,'MH','MHL',NULL,currval('country_id_seq'));
1596  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1597  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Palau',585,'PW','PLW',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Palau',585,'PW','PLW',NULL,currval('country_id_seq'));
1598  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1599  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Pakistan',586,'PK','PAK',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Pakistan',586,'PK','PAK',NULL,currval('country_id_seq'));
1600  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1601  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Panama',591,'PA','PAN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Panama',591,'PA','PAN',NULL,currval('country_id_seq'));
1602  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1603  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Papua New Guinea',598,'PG','PNG',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Papua New Guinea',598,'PG','PNG',NULL,currval('country_id_seq'));
1604  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1605  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Paraguay',600,'PY','PRY',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Paraguay',600,'PY','PRY',NULL,currval('country_id_seq'));
1606  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1607  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Peru',604,'PE','PER',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Peru',604,'PE','PER',NULL,currval('country_id_seq'));
1608  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1609  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Philippines',608,'PH','PHL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Philippines',608,'PH','PHL',NULL,currval('country_id_seq'));
1610  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1611  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Pitcairn',612,'PN','PCN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Pitcairn',612,'PN','PCN',NULL,currval('country_id_seq'));
1612  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1613  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Poland',616,'PL','POL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Poland',616,'PL','POL',NULL,currval('country_id_seq'));
1614  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1615  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Portugal',620,'PT','PRT',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Portugal',620,'PT','PRT',NULL,currval('country_id_seq'));
1616  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1617  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Guinea-Bissau',624,'GW','GNB',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Guinea-Bissau',624,'GW','GNB',NULL,currval('country_id_seq'));
1618  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1619  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'East Timor',626,'TP','TMP',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'East Timor',626,'TP','TMP',NULL,currval('country_id_seq'));
1620  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1621  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Puerto Rico',630,'PR','PRI',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Puerto Rico',630,'PR','PRI',NULL,currval('country_id_seq'));
1622  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1623  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Qatar',634,'QA','QAT',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Qatar',634,'QA','QAT',NULL,currval('country_id_seq'));
1624  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1625  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Réunion',638,'RE','REU',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Réunion',638,'RE','REU',NULL,currval('country_id_seq'));
1626  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1627  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Romania',642,'RO','ROM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Romania',642,'RO','ROM',NULL,currval('country_id_seq'));
1628  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1629  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Russian Federation',643,'RU','RUS',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Russian Federation',643,'RU','RUS',NULL,currval('country_id_seq'));
1630  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1631  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Rwanda',646,'RW','RWA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Rwanda',646,'RW','RWA',NULL,currval('country_id_seq'));
1632  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1633  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Saint Helena',654,'SH','SHN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Saint Helena',654,'SH','SHN',NULL,currval('country_id_seq'));
1634  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1635  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Saint Kitts and Nevis',659,'KN','KNA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Saint Kitts and Nevis',659,'KN','KNA',NULL,currval('country_id_seq'));
1636  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1637  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Saint Lucia',662,'LC','LCA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Saint Lucia',662,'LC','LCA',NULL,currval('country_id_seq'));
1638  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1639  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Saint Pierre and Miquelon',666,'PM','SPM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Saint Pierre and Miquelon',666,'PM','SPM',NULL,currval('country_id_seq'));
1640  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1641  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Saint Vincent and the Grenadines',670,'VC','VCT',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Saint Vincent and the Grenadines',670,'VC','VCT',NULL,currval('country_id_seq'));
1642  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1643  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'San Marino',674,'SM','SMR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'San Marino',674,'SM','SMR',NULL,currval('country_id_seq'));
1644  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1645  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'São Tomé and Principe',678,'ST','STP',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'São Tomé and Principe',678,'ST','STP',NULL,currval('country_id_seq'));
1646  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1647  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Saudi Arabia',682,'SA','SAU',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Saudi Arabia',682,'SA','SAU',NULL,currval('country_id_seq'));
1648  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1649  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Senegal',686,'SN','SEN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Senegal',686,'SN','SEN',NULL,currval('country_id_seq'));
1650  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1651  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Seychelles',690,'SC','SYC',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Seychelles',690,'SC','SYC',NULL,currval('country_id_seq'));
1652  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1653  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Sierra Leone',694,'SL','SLE',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Sierra Leone',694,'SL','SLE',NULL,currval('country_id_seq'));
1654  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1655  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Singapore',702,'SG','SGP',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Singapore',702,'SG','SGP',NULL,currval('country_id_seq'));
1656  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1657  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Slovakia',703,'SK','SVK',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Slovakia',703,'SK','SVK',NULL,currval('country_id_seq'));
1658  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1659  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Viet Nam',704,'VN','VNM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Viet Nam',704,'VN','VNM',NULL,currval('country_id_seq'));
1660  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1661  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Slovenia',705,'SI','SVN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Slovenia',705,'SI','SVN',NULL,currval('country_id_seq'));
1662  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1663  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Somalia',706,'SO','SOM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Somalia',706,'SO','SOM',NULL,currval('country_id_seq'));
1664  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1665  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'South Africa',710,'ZA','ZAF',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'South Africa',710,'ZA','ZAF',NULL,currval('country_id_seq'));
1666  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1667  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Zimbabwe',716,'ZW','ZWE',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Zimbabwe',716,'ZW','ZWE',NULL,currval('country_id_seq'));
1668  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1669  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Spain',724,'ES','ESP',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Spain',724,'ES','ESP',NULL,currval('country_id_seq'));
1670  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1671  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Sudan',736,'SD','SDN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Sudan',736,'SD','SDN',NULL,currval('country_id_seq'));
1672  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1673  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Suriname',740,'SR','SUR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Suriname',740,'SR','SUR',NULL,currval('country_id_seq'));
1674  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1675  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Svalbard and Jan Mayen Islands',744,'SJ','SJM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Svalbard and Jan Mayen Islands',744,'SJ','SJM',NULL,currval('country_id_seq'));
1676  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1677  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Swaziland',748,'SZ','SWZ',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Swaziland',748,'SZ','SWZ',NULL,currval('country_id_seq'));
1678  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1679  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Sweden',752,'SE','SWE',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Sweden',752,'SE','SWE',NULL,currval('country_id_seq'));
1680  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1681  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Switzerland',756,'CH','CHE',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Switzerland',756,'CH','CHE',NULL,currval('country_id_seq'));
1682  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1683  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Syrian Arab Republic',760,'SY','SYR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Syrian Arab Republic',760,'SY','SYR',NULL,currval('country_id_seq'));
1684  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1685  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Tajikistan',762,'TJ','TJK',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Tajikistan',762,'TJ','TJK',NULL,currval('country_id_seq'));
1686  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1687  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Thailand',764,'TH','THA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Thailand',764,'TH','THA',NULL,currval('country_id_seq'));
1688  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1689  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Togo',768,'TG','TGO',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Togo',768,'TG','TGO',NULL,currval('country_id_seq'));
1690  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1691  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Tokelau',772,'TK','TKL',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Tokelau',772,'TK','TKL',NULL,currval('country_id_seq'));
1692  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1693  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Tonga',776,'TO','TON',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Tonga',776,'TO','TON',NULL,currval('country_id_seq'));
1694  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1695  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Trinidad and Tobago',780,'TT','TTO',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Trinidad and Tobago',780,'TT','TTO',NULL,currval('country_id_seq'));
1696  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1697  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'United Arab Emirates',784,'AE','ARE',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'United Arab Emirates',784,'AE','ARE',NULL,currval('country_id_seq'));
1698  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1699  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Tunisia',788,'TN','TUN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Tunisia',788,'TN','TUN',NULL,currval('country_id_seq'));
1700  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1701  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Turkey',792,'TR','TUR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Turkey',792,'TR','TUR',NULL,currval('country_id_seq'));
1702  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1703  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Turkmenistan',795,'TM','TKM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Turkmenistan',795,'TM','TKM',NULL,currval('country_id_seq'));
1704  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1705  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Turks and Caicos Islands',796,'TC','TCA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Turks and Caicos Islands',796,'TC','TCA',NULL,currval('country_id_seq'));
1706  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1707  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Tuvalu',798,'TV','TUV',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Tuvalu',798,'TV','TUV',NULL,currval('country_id_seq'));
1708  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1709  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Uganda',800,'UG','UGA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Uganda',800,'UG','UGA',NULL,currval('country_id_seq'));
1710  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1711  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Ukraine',804,'UA','UKR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Ukraine',804,'UA','UKR',NULL,currval('country_id_seq'));
1712  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1713  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Macedonia, The former Yugoslav Republic of',807,'MK','MKD',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Macedonia, The former Yugoslav Republic of',807,'MK','MKD',NULL,currval('country_id_seq'));
1714  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1715  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Egypt',818,'EG','EGY',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Egypt',818,'EG','EGY',NULL,currval('country_id_seq'));
1716  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1717  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'United Kingdom',826,'GB','GBR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'United Kingdom',826,'GB','GBR',NULL,currval('country_id_seq'));
1718  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1719  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'United States',840,'US','USA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'United States',840,'US','USA',NULL,currval('country_id_seq'));
1720  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1721  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Burkina Faso',854,'BF','BFA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Burkina Faso',854,'BF','BFA',NULL,currval('country_id_seq'));
1722  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1723  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Uruguay',858,'UY','URY',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Uruguay',858,'UY','URY',NULL,currval('country_id_seq'));
1724  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1725  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Uzbekistan',860,'UZ','UZB',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Uzbekistan',860,'UZ','UZB',NULL,currval('country_id_seq'));
1726  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1727  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Venezuela',862,'VE','VEN',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Venezuela',862,'VE','VEN',NULL,currval('country_id_seq'));
1728  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1729  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Channel Islands',830,'  ','   ',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Channel Islands',830,'  ','   ',NULL,currval('country_id_seq'));
1730  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1731  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Isle of Man',833,'IM','   ',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Isle of Man',833,'IM','   ',NULL,currval('country_id_seq'));
1732  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1733  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Tanzania, United Republic of',834,'TZ','TZA',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Tanzania, United Republic of',834,'TZ','TZA',NULL,currval('country_id_seq'));
1734  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1735  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Virgin Islands, U.S.',850,'VI','VIR',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Virgin Islands, U.S.',850,'VI','VIR',NULL,currval('country_id_seq'));
1736  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1737  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Wallis and Futuna Islands',876,'WF','WLF',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Wallis and Futuna Islands',876,'WF','WLF',NULL,currval('country_id_seq'));
1738  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1739  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Samoa',882,'WS','WSM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Samoa',882,'WS','WSM',NULL,currval('country_id_seq'));
1740  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1741  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Yemen',887,'YE','YEM',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Yemen',887,'YE','YEM',NULL,currval('country_id_seq'));
1742  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1743  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Yugoslavia',891,'YU','YUG',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Yugoslavia',891,'YU','YUG',NULL,currval('country_id_seq'));
1744  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1745  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Zambia',894,'ZM','ZMB',NULL,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Zambia',894,'ZM','ZMB',NULL,currval('country_id_seq'));
1746  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1747  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Argentina',32,'AR','ARG',540,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Argentina',32,'AR','ARG',540,currval('country_id_seq'));
1748  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1749  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Anguilla',660,'AI','AIA',2,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Anguilla',660,'AI','AIA',2,currval('country_id_seq'));
1750  INSERT INTO "country" VALUES (nextval('country_id_seq'));  INSERT INTO "country" VALUES (nextval('country_id_seq'));
1751  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (NULL,NULL,'Antigua and Barbuda',28,'AG','ATG',1,currval('country_id_seq'));  INSERT INTO "_country_data" ("_start_t","_end_t","name","un","iso2","iso3","phone","_table") VALUES (current_timestamp,NULL,'Antigua and Barbuda',28,'AG','ATG',1,currval('country_id_seq'));
1752  UPDATE "_country_data" SET "_start_t" = current_timestamp;  UPDATE "_country_data" SET "_start_t" = current_timestamp;delete from _currency_type_data;
   
 delete from _currency_type_data;  
1753  delete from currency_type;  delete from currency_type;
   
1754  insert into currency_type (id) values (1);  insert into currency_type (id) values (1);
1755  insert into _currency_type_data (id,_table,name,_start_t) values (1,1,'Pesos',current_timestamp);  insert into _currency_type_data (id,_table,name,_start_t) values (1,1,'Pesos',current_timestamp);
   
1756  delete from _document_type_data;  delete from _document_type_data;
1757  delete from document_type;  delete from document_type;
1758    
# Line 1773  insert into _document_type_data (id,_tab Line 1769  insert into _document_type_data (id,_tab
1769  insert into document_type (id) values (6);  insert into document_type (id) values (6);
1770  insert into _document_type_data (id,_table,name,_start_t) values (6,6,'Orden de Pago',current_timestamp);  insert into _document_type_data (id,_table,name,_start_t) values (6,6,'Orden de Pago',current_timestamp);
1771    
1772  delete from _entity_data;  DELETE FROM _entity_type_data;
1773  delete from entity;  DELETE FROM entity_type;
1774  delete from _own_entity_data;  INSERT INTO entity_type VALUES (1);
1775  delete from own_entity;  INSERT INTO _entity_type_data ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'alien_storehouse',1);
1776  delete from _own_branch_data;  INSERT INTO entity_type VALUES (2);
1777  delete from own_branch;  INSERT INTO _entity_type_data ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'contact',2);
1778    INSERT INTO entity_type VALUES (3);
1779  insert into entity (id) values (nextval('entity_id_seq'));  INSERT INTO _entity_type_data ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'persona',3);
1780  insert into _entity_data (name,_table) values ('Casa Central',currval('entity_id_seq'));  INSERT INTO entity_type VALUES (4);
1781  insert into own_entity (id) values (nextval('own_entity_id_seq'));  INSERT INTO _entity_type_data ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'employee',4);
1782  insert into _own_entity_data (id,_table) values (currval('entity_id_seq'),currval('own_entity_id_seq'));  INSERT INTO entity_type VALUES (5);
1783  insert into own_branch (id) values (nextval('own_branch_id_seq'));  INSERT INTO _entity_type_data ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'own_storehouse',5);
1784  insert into _own_branch_data (_table,_start_t,own_entity) values (currval('own_branch_id_seq'),current_timestamp,currval('own_entity_id_seq'));  INSERT INTO entity_type VALUES (6);
1785    INSERT INTO _entity_type_data ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'own_branch',6);
1786  delete from _branch_document_data;  INSERT INTO entity_type VALUES (7);
1787  delete from branch_document;  INSERT INTO _entity_type_data ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'client',7);
1788    INSERT INTO entity_type VALUES (8);
1789  insert into branch_document (id) values (nextval('branch_document_id_seq'));  INSERT INTO _entity_type_data ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'provider',8);
1790  insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,1);  INSERT INTO entity_type VALUES (9);
1791  insert into branch_document (id) values (nextval('branch_document_id_seq'));  INSERT INTO _entity_type_data ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'bank_branch',9);
1792  insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,2);  INSERT INTO entity_type VALUES (10);
1793  insert into branch_document (id) values (nextval('branch_document_id_seq'));  INSERT INTO _entity_type_data ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'bank',10);
 insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,3);  
 insert into branch_document (id) values (nextval('branch_document_id_seq'));  
 insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,4);  
 insert into branch_document (id) values (nextval('branch_document_id_seq'));  
 insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,5);  
 insert into branch_document (id) values (nextval('branch_document_id_seq'));  
 insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,6);  
   
 update _branch_document_data set number = 1;  
   
1794  delete from _entity_uid_type_data;  delete from _entity_uid_type_data;
1795  delete from entity_uid_type;  delete from entity_uid_type;
   
1796  insert into entity_uid_type (id) values (1);  insert into entity_uid_type (id) values (1);
1797  insert into _entity_uid_type_data (id,_table,name,_start_t) values (1,1,'CUIT',current_timestamp);  insert into _entity_uid_type_data (id,_table,name,_start_t) values (1,1,'CUIT',current_timestamp);
1798  insert into entity_uid_type (id) values (2);  insert into entity_uid_type (id) values (2);
1799  insert into _entity_uid_type_data (id,_table,name,_start_t) values (2,2,'Ingresos Brutos',current_timestamp);  insert into _entity_uid_type_data (id,_table,name,_start_t) values (2,2,'Ingresos Brutos',current_timestamp);
   
 DELETE FROM "_entity_type_data";  
 DELETE FROM "entity_type";  
   
 INSERT INTO "entity_type" VALUES (1);  
 INSERT INTO "_entity_type_data" ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'alien_storehouse',1);  
 INSERT INTO "entity_type" VALUES (2);  
 INSERT INTO "_entity_type_data" ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'contact',2);  
 INSERT INTO "entity_type" VALUES (3);  
 INSERT INTO "_entity_type_data" ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'persona',3);  
 INSERT INTO "entity_type" VALUES (4);  
 INSERT INTO "_entity_type_data" ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'employee',4);  
 INSERT INTO "entity_type" VALUES (5);  
 INSERT INTO "_entity_type_data" ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'own_storehouse',5);  
 INSERT INTO "entity_type" VALUES (6);  
 INSERT INTO "_entity_type_data" ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'own_branch',6);  
 INSERT INTO "entity_type" VALUES (7);  
 INSERT INTO "_entity_type_data" ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'client',7);  
 INSERT INTO "entity_type" VALUES (8);  
 INSERT INTO "_entity_type_data" ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'provider',8);  
 INSERT INTO "entity_type" VALUES (9);  
 INSERT INTO "_entity_type_data" ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'bank_branch',9);  
 INSERT INTO "entity_type" VALUES (10);  
 INSERT INTO "_entity_type_data" ("_start_t","_end_t","name",_table) VALUES (current_timestamp,NULL,'bank',10);  
   
 DELETE FROM entity_type_uid_conf;  
   
 INSERT INTO entity_type_uid_conf ("entity_type","entity_uid_type") VALUES (7,1);  
 INSERT INTO entity_type_uid_conf ("entity_type","entity_uid_type") VALUES (8,1);  
 INSERT INTO entity_type_uid_conf ("entity_type","entity_uid_type") VALUES (2,1);  
 INSERT INTO entity_type_uid_conf ("entity_type","entity_uid_type") VALUES (4,1);  
   
1800  delete from _movement_type_data;  delete from _movement_type_data;
1801  delete from movement_type;  delete from movement_type;
   
1802  insert into movement_type (id) values (1);  insert into movement_type (id) values (1);
1803  insert into _movement_type_data (id,_table,name,_start_t) values (1,1,'Cuenta Corriente',current_timestamp);  insert into _movement_type_data (id,_table,name,_start_t) values (1,1,'Cuenta Corriente',current_timestamp);
   
 delete from _price_type_data;  
1804  delete from price_type;  delete from price_type;
   
1805  insert into price_type (id) values (nextval('price_type_id_seq'));  insert into price_type (id) values (nextval('price_type_id_seq'));
1806  insert into _price_type_data (id,_table,name,_start_t,is_active) values (nextval('_price_type_data_id_seq'),currval('price_type_id_seq'),'Lista base',current_timestamp,'S');  insert into _price_type_data (id,_table,name,_start_t,is_active) values (nextval('_price_type_data_id_seq'),currval('price_type_id_seq'),'Lista base',current_timestamp,'S');
   
1807  delete from _product_code_type_data;  delete from _product_code_type_data;
1808  delete from product_code_type;  delete from product_code_type;
   
1809  insert into product_code_type (id) values (1);  insert into product_code_type (id) values (1);
1810  insert into _product_code_type_data (id,_table,name,_start_t) values (1,1,'Interno',current_timestamp);  insert into _product_code_type_data (id,_table,name,_start_t) values (1,1,'Interno',current_timestamp);
   
1811  delete from _tax_data;  delete from _tax_data;
1812  delete from tax;  delete from tax;
   
1813  insert into tax (id) values (1);  insert into tax (id) values (1);
1814  insert into _tax_data (id,_table,name,_start_t) values (1,1,'IVA',current_timestamp);  insert into _tax_data (id,_table,name,_start_t,graft) values (1,1,'IVA',current_timestamp,'def graft(ourIVACond, alienIVACond, amount, taxPercent):\n\tif ourIVACond == 1 and alienIVACond == 2:\n\t\treturn amount * taxPercent / 100 + (amount * taxPercent / 100) / 2\n\telse:\n\t\treturn amount * taxPercent / 100\n');
1815    
1816    DELETE FROM entity_type_uid_conf;
1817    INSERT INTO entity_type_uid_conf ("entity_type","entity_uid_type") VALUES (7,1);
1818    INSERT INTO entity_type_uid_conf ("entity_type","entity_uid_type") VALUES (8,1);
1819    INSERT INTO entity_type_uid_conf ("entity_type","entity_uid_type") VALUES (2,1);
1820    INSERT INTO entity_type_uid_conf ("entity_type","entity_uid_type") VALUES (4,1);
1821  delete from _tax_profile_data;  delete from _tax_profile_data;
1822  delete from tax_profile;  delete from tax_profile;
   
1823  insert into tax_profile (id) values (1);  insert into tax_profile (id) values (1);
1824  insert into _tax_profile_data (id,_table,profile,tax,_start_t) values (1,1,'Responsable Inscripto',1,current_timestamp);  insert into _tax_profile_data (id,_table,profile,tax,_start_t) values (1,1,'Responsable Inscripto',1,current_timestamp);
1825  insert into tax_profile (id) values (2);  insert into tax_profile (id) values (2);
# Line 1881  insert into tax_profile (id) values (4); Line 1830  insert into tax_profile (id) values (4);
1830  insert into _tax_profile_data (id,_table,profile,tax,_start_t) values (4,4,'Monotributo',1,current_timestamp);  insert into _tax_profile_data (id,_table,profile,tax,_start_t) values (4,4,'Monotributo',1,current_timestamp);
1831  insert into tax_profile (id) values (5);  insert into tax_profile (id) values (5);
1832  insert into _tax_profile_data (id,_table,profile,tax,_start_t) values (5,5,'Consumidor Final',1,current_timestamp);  insert into _tax_profile_data (id,_table,profile,tax,_start_t) values (5,5,'Consumidor Final',1,current_timestamp);
1833    
1834    delete from _own_branch_data;
1835    delete from own_branch;
1836    delete from _own_entity_data;
1837    delete from own_entity;
1838    delete from _entity_data;
1839    delete from entity;
1840    
1841    insert into entity (id) values (nextval('entity_id_seq'));
1842    insert into _entity_data (name,_start_t,_table) values ('Casa Central',now(),currval('entity_id_seq'));
1843    insert into own_entity (id) values (nextval('own_entity_id_seq'));
1844    insert into _own_entity_data (id,_start_t,_table,entity) values (currval('entity_id_seq'),now(),currval('own_entity_id_seq'),currval('entity_id_seq'));
1845    insert into own_branch (id) values (nextval('own_branch_id_seq'));
1846    insert into _own_branch_data (_table,_start_t,own_entity) values (currval('own_branch_id_seq'),current_timestamp,currval('own_entity_id_seq'));
1847    insert into persona_tax_profile (id) values (nextval('persona_tax_profile_id_seq'));
1848    insert into _persona_tax_profile_data (_table,_start_t,persona,tax_profile) values (currval('persona_tax_profile_id_seq'),current_timestamp,currval('entity_id_seq'),1);delete from _price_type_data;
1849    
1850    delete from _branch_document_data;
1851    delete from branch_document;
1852    
1853    insert into branch_document (id) values (nextval('branch_document_id_seq'));
1854    insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,1);
1855    insert into branch_document (id) values (nextval('branch_document_id_seq'));
1856    insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,2);
1857    insert into branch_document (id) values (nextval('branch_document_id_seq'));
1858    insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,3);
1859    insert into branch_document (id) values (nextval('branch_document_id_seq'));
1860    insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,4);
1861    insert into branch_document (id) values (nextval('branch_document_id_seq'));
1862    insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,5);
1863    insert into branch_document (id) values (nextval('branch_document_id_seq'));
1864    insert into _branch_document_data (id,_table,_start_t,branch,document_type) values (nextval('_branch_document_data_id_seq'),currval('branch_document_id_seq'),current_timestamp,1,6);
1865    
1866    update _branch_document_data set number = 1;

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26