1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<!-- Generated by fdp version 2.2.1 (Thu Apr 6 00:32:47 UTC 2006)
For user: (stub) Stuart Bishop,,, Title: g Pages: 1 -->
<svg width="4247px" height="2941px"
viewBox = "-1 -1 4246 2940"
xmlns="http://www.w3.org/2000/svg">
<g id="graph0" class="graph" style="font-family:Times-Roman;font-size:14.00;">
<title>g</title>
<text text-anchor="middle" style="font-size:22.00;" x="2122" y="2923">Rosetta</text>
<g id="node1" class="node"><title>country</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3324,2145 3324,2027 3520,2027 3520,2145 3324,2145"/>
<polygon style="fill:white;stroke:white;" points="3327,2044 3327,2030 3517,2030 3517,2044 3327,2044"/>
<text text-anchor="middle" style="font-size:8.00;" x="3422" y="2040">country</text>
<polygon style="fill:none;stroke:black;" points="3327,2044 3327,2030 3517,2030 3517,2044 3327,2044"/>
<text text-anchor="middle" style="font-size:8.00;" x="3333" y="2055">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3391" y="2055">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3458" y="2055"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="3353" y="2069">iso3166code2</text>
<text text-anchor="middle" style="font-size:8.00;" x="3402" y="2069">character(2)</text>
<text text-anchor="middle" style="font-size:8.00;" x="3446" y="2069"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="3353" y="2083">iso3166code3</text>
<text text-anchor="middle" style="font-size:8.00;" x="3402" y="2083">character(3)</text>
<text text-anchor="middle" style="font-size:8.00;" x="3446" y="2083"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="3339" y="2097">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="3389" y="2097">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3446" y="2097"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="3336" y="2111">title</text>
<text text-anchor="middle" style="font-size:8.00;" x="3389" y="2111">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3347" y="2125">description</text>
<text text-anchor="middle" style="font-size:8.00;" x="3389" y="2125">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3345" y="2139">continent</text>
<text text-anchor="middle" style="font-size:8.00;" x="3394" y="2139">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3472" y="2139"> REFERENCES continent </text>
<polygon style="fill:none;stroke:black;" points="3324,2145 3324,2027 3520,2027 3520,2145 3324,2145"/>
</g>
<g id="node24" class="node"><title>fake_continent_94</title>
<ellipse cx="3545" cy="2208" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3545" y="2211">continent</text>
</g>
<g id="edge2" class="edge"><title>country->fake_continent_94</title>
<path style="fill:none;stroke:black;" d="M3486,2149C3499,2162 3512,2175 3523,2186"/>
<polygon style="fill:black;stroke:black;" points="3525,2183 3530,2193 3520,2188 3525,2183"/>
</g>
<g id="node2" class="node"><title>language</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2970,1865 2970,1733 3134,1733 3134,1865 2970,1865"/>
<polygon style="fill:white;stroke:white;" points="2973,1750 2973,1736 3131,1736 3131,1750 2973,1750"/>
<text text-anchor="middle" style="font-size:8.00;" x="3052" y="1746">language</text>
<polygon style="fill:none;stroke:black;" points="2973,1750 2973,1736 3131,1736 3131,1750 2973,1750"/>
<text text-anchor="middle" style="font-size:8.00;" x="2979" y="1761">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3045" y="1761">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3099" y="1761"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2983" y="1775">code</text>
<text text-anchor="middle" style="font-size:8.00;" x="3043" y="1775">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3087" y="1775"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2996" y="1789">englishname</text>
<text text-anchor="middle" style="font-size:8.00;" x="3043" y="1789">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2995" y="1803">nativename</text>
<text text-anchor="middle" style="font-size:8.00;" x="3043" y="1803">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2995" y="1817">pluralforms</text>
<text text-anchor="middle" style="font-size:8.00;" x="3048" y="1817">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3003" y="1831">pluralexpression</text>
<text text-anchor="middle" style="font-size:8.00;" x="3043" y="1831">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2987" y="1845">visible</text>
<text text-anchor="middle" style="font-size:8.00;" x="3050" y="1845">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="2990" y="1859">direction</text>
<text text-anchor="middle" style="font-size:8.00;" x="3048" y="1859">integer</text>
<polygon style="fill:none;stroke:black;" points="2970,1865 2970,1733 3134,1733 3134,1865 2970,1865"/>
</g>
<g id="node3" class="node"><title>license</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2030,1774 2030,1726 2158,1726 2158,1774 2030,1774"/>
<polygon style="fill:white;stroke:white;" points="2033,1743 2033,1729 2155,1729 2155,1743 2033,1743"/>
<text text-anchor="middle" style="font-size:8.00;" x="2094" y="1739">license</text>
<polygon style="fill:none;stroke:black;" points="2033,1743 2033,1729 2155,1729 2155,1743 2033,1743"/>
<text text-anchor="middle" style="font-size:8.00;" x="2039" y="1754">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2078" y="1754">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2123" y="1754"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2049" y="1768">legalese</text>
<text text-anchor="middle" style="font-size:8.00;" x="2076" y="1768">text</text>
<polygon style="fill:none;stroke:black;" points="2030,1774 2030,1726 2158,1726 2158,1774 2030,1774"/>
</g>
<g id="node4" class="node"><title>pocomment</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="1419,643 1419,511 1619,511 1619,643 1419,643"/>
<polygon style="fill:white;stroke:white;" points="1422,528 1422,514 1616,514 1616,528 1422,528"/>
<text text-anchor="middle" style="font-size:8.00;" x="1519" y="524">pocomment</text>
<polygon style="fill:none;stroke:black;" points="1422,528 1422,514 1616,514 1616,528 1422,528"/>
<text text-anchor="middle" style="font-size:8.00;" x="1428" y="539">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="1483" y="539">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="1545" y="539"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="1443" y="553">potemplate</text>
<text text-anchor="middle" style="font-size:8.00;" x="1486" y="553">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1562" y="553"> REFERENCES potemplate </text>
<text text-anchor="middle" style="font-size:8.00;" x="1439" y="567">pomsgid</text>
<text text-anchor="middle" style="font-size:8.00;" x="1486" y="567">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1558" y="567"> REFERENCES pomsgid </text>
<text text-anchor="middle" style="font-size:8.00;" x="1440" y="581">language</text>
<text text-anchor="middle" style="font-size:8.00;" x="1486" y="581">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1559" y="581"> REFERENCES language </text>
<text text-anchor="middle" style="font-size:8.00;" x="1446" y="595">potranslation</text>
<text text-anchor="middle" style="font-size:8.00;" x="1486" y="595">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1565" y="595"> REFERENCES potranslation </text>
<text text-anchor="middle" style="font-size:8.00;" x="1446" y="609">commenttext</text>
<text text-anchor="middle" style="font-size:8.00;" x="1481" y="609">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="1443" y="623">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="1492" y="623">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="1436" y="637">person</text>
<text text-anchor="middle" style="font-size:8.00;" x="1486" y="637">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1555" y="637"> REFERENCES person </text>
<polygon style="fill:none;stroke:black;" points="1419,643 1419,511 1619,511 1619,643 1419,643"/>
</g>
<g id="node7" class="node"><title>pomsgid</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="1176,433 1176,385 1298,385 1298,433 1176,433"/>
<polygon style="fill:white;stroke:white;" points="1179,402 1179,388 1295,388 1295,402 1179,402"/>
<text text-anchor="middle" style="font-size:8.00;" x="1237" y="398">pomsgid</text>
<polygon style="fill:none;stroke:black;" points="1179,402 1179,388 1295,388 1295,402 1179,402"/>
<text text-anchor="middle" style="font-size:8.00;" x="1185" y="413">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="1218" y="413">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="1263" y="413"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="1192" y="427">msgid</text>
<text text-anchor="middle" style="font-size:8.00;" x="1216" y="427">text</text>
<polygon style="fill:none;stroke:black;" points="1176,433 1176,385 1298,385 1298,433 1176,433"/>
</g>
<g id="edge6" class="edge"><title>pocomment->pomsgid</title>
<path style="fill:none;stroke:black;" d="M1411,513C1371,489 1327,463 1293,442"/>
<polygon style="fill:black;stroke:black;" points="1291,445 1284,437 1294,439 1291,445"/>
</g>
<g id="node13" class="node"><title>potemplate</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="1961,1411 1961,1111 2281,1111 2281,1411 1961,1411"/>
<polygon style="fill:white;stroke:white;" points="1964,1128 1964,1114 2278,1114 2278,1128 1964,1128"/>
<text text-anchor="middle" style="font-size:8.00;" x="2121" y="1124">potemplate</text>
<polygon style="fill:none;stroke:black;" points="1964,1128 1964,1114 2278,1114 2278,1128 1964,1128"/>
<text text-anchor="middle" style="font-size:8.00;" x="1970" y="1139">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2069" y="1139">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2131" y="1139"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="1979" y="1153">priority</text>
<text text-anchor="middle" style="font-size:8.00;" x="2072" y="1153">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1984" y="1167">description</text>
<text text-anchor="middle" style="font-size:8.00;" x="2067" y="1167">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="1982" y="1181">copyright</text>
<text text-anchor="middle" style="font-size:8.00;" x="2067" y="1181">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="1978" y="1195">license</text>
<text text-anchor="middle" style="font-size:8.00;" x="2072" y="1195">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2141" y="1195"> REFERENCES license </text>
<text text-anchor="middle" style="font-size:8.00;" x="1985" y="1209">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="2078" y="1209">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="1974" y="1223">path</text>
<text text-anchor="middle" style="font-size:8.00;" x="2067" y="1223">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="1981" y="1237">iscurrent</text>
<text text-anchor="middle" style="font-size:8.00;" x="2074" y="1237">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="1990" y="1251">messagecount</text>
<text text-anchor="middle" style="font-size:8.00;" x="2072" y="1251">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1977" y="1265">owner</text>
<text text-anchor="middle" style="font-size:8.00;" x="2072" y="1265">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2141" y="1265"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="1999" y="1279">sourcepackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="2072" y="1279">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2179" y="1279"> UNIQUE REFERENCES sourcepackagename </text>
<text text-anchor="middle" style="font-size:8.00;" x="1987" y="1293">distrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="2072" y="1293">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2166" y="1293"> REFERENCES distrorelease UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2002" y="1307">sourcepackageversion</text>
<text text-anchor="middle" style="font-size:8.00;" x="2067" y="1307">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="1978" y="1321">header</text>
<text text-anchor="middle" style="font-size:8.00;" x="2067" y="1321">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="1994" y="1335">potemplatename</text>
<text text-anchor="middle" style="font-size:8.00;" x="2072" y="1335">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2189" y="1335"> UNIQUE REFERENCES potemplatename UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="1999" y="1349">binarypackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="2072" y="1349">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2162" y="1349"> REFERENCES binarypackagename </text>
<text text-anchor="middle" style="font-size:8.00;" x="1989" y="1363">languagepack</text>
<text text-anchor="middle" style="font-size:8.00;" x="2074" y="1363">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="1989" y="1377">productseries</text>
<text text-anchor="middle" style="font-size:8.00;" x="2072" y="1377">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2168" y="1377"> REFERENCES productseries UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2010" y="1391">from_sourcepackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="2072" y="1391">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2163" y="1391"> REFERENCES sourcepackagename </text>
<text text-anchor="middle" style="font-size:8.00;" x="1996" y="1405">date_last_updated</text>
<text text-anchor="middle" style="font-size:8.00;" x="2078" y="1405">timestamp</text>
<polygon style="fill:none;stroke:black;" points="1961,1411 1961,1111 2281,1111 2281,1411 1961,1411"/>
</g>
<g id="edge4" class="edge"><title>pocomment->potemplate</title>
<path style="fill:none;stroke:black;" d="M1581,647C1673,753 1852,956 1978,1099"/>
<polygon style="fill:black;stroke:black;" points="1981,1097 1985,1107 1976,1102 1981,1097"/>
</g>
<g id="node16" class="node"><title>potranslation</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="917,755 917,707 1053,707 1053,755 917,755"/>
<polygon style="fill:white;stroke:white;" points="920,724 920,710 1050,710 1050,724 920,724"/>
<text text-anchor="middle" style="font-size:8.00;" x="985" y="720">potranslation</text>
<polygon style="fill:none;stroke:black;" points="920,724 920,710 1050,710 1050,724 920,724"/>
<text text-anchor="middle" style="font-size:8.00;" x="926" y="735">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="973" y="735">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="1018" y="735"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="940" y="749">translation</text>
<text text-anchor="middle" style="font-size:8.00;" x="971" y="749">text</text>
<polygon style="fill:none;stroke:black;" points="917,755 917,707 1053,707 1053,755 917,755"/>
</g>
<g id="edge10" class="edge"><title>pocomment->potranslation</title>
<path style="fill:none;stroke:black;" d="M1411,608C1311,637 1163,680 1071,706"/>
<polygon style="fill:black;stroke:black;" points="1072,709 1061,709 1070,703 1072,709"/>
</g>
<g id="node28" class="node"><title>fake_language_224</title>
<ellipse cx="1393" cy="175" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="1393" y="178">language</text>
</g>
<g id="edge8" class="edge"><title>pocomment->fake_language_224</title>
<path style="fill:none;stroke:black;" d="M1497,507C1469,417 1422,265 1402,203"/>
<polygon style="fill:black;stroke:black;" points="1399,204 1399,193 1405,202 1399,204"/>
</g>
<g id="node31" class="node"><title>fake_person_227</title>
<ellipse cx="1589" cy="176" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="1589" y="179">person</text>
</g>
<g id="edge12" class="edge"><title>pocomment->fake_person_227</title>
<path style="fill:none;stroke:black;" d="M1531,507C1547,417 1573,266 1584,204"/>
<polygon style="fill:black;stroke:black;" points="1581,203 1586,194 1587,204 1581,203"/>
</g>
<g id="node5" class="node"><title>poexportrequest</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="1504,1651 1504,1561 1680,1561 1680,1651 1504,1651"/>
<polygon style="fill:white;stroke:white;" points="1507,1578 1507,1564 1677,1564 1677,1578 1507,1578"/>
<text text-anchor="middle" style="font-size:8.00;" x="1592" y="1574">poexportrequest</text>
<polygon style="fill:none;stroke:black;" points="1507,1578 1507,1564 1677,1564 1677,1578 1507,1578"/>
<text text-anchor="middle" style="font-size:8.00;" x="1513" y="1589">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="1561" y="1589">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="1612" y="1589"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="1521" y="1603">person</text>
<text text-anchor="middle" style="font-size:8.00;" x="1564" y="1603">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1622" y="1603"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="1528" y="1617">potemplate</text>
<text text-anchor="middle" style="font-size:8.00;" x="1564" y="1617">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1629" y="1617"> REFERENCES potemplate </text>
<text text-anchor="middle" style="font-size:8.00;" x="1519" y="1631">pofile</text>
<text text-anchor="middle" style="font-size:8.00;" x="1564" y="1631">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1620" y="1631"> REFERENCES pofile </text>
<text text-anchor="middle" style="font-size:8.00;" x="1521" y="1645">format</text>
<text text-anchor="middle" style="font-size:8.00;" x="1564" y="1645">integer</text>
<polygon style="fill:none;stroke:black;" points="1504,1651 1504,1561 1680,1561 1680,1651 1504,1651"/>
</g>
<g id="node6" class="node"><title>pofile</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="919,1867 919,1539 1187,1539 1187,1867 919,1867"/>
<polygon style="fill:white;stroke:white;" points="922,1556 922,1542 1184,1542 1184,1556 922,1556"/>
<text text-anchor="middle" style="font-size:8.00;" x="1053" y="1552">pofile</text>
<polygon style="fill:none;stroke:black;" points="922,1556 922,1542 1184,1542 1184,1556 922,1556"/>
<text text-anchor="middle" style="font-size:8.00;" x="928" y="1567">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="1027" y="1567">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="1089" y="1567"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="943" y="1581">potemplate</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1581">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1106" y="1581"> REFERENCES potemplate </text>
<text text-anchor="middle" style="font-size:8.00;" x="940" y="1595">language</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1595">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1103" y="1595"> REFERENCES language </text>
<text text-anchor="middle" style="font-size:8.00;" x="942" y="1609">description</text>
<text text-anchor="middle" style="font-size:8.00;" x="1025" y="1609">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="945" y="1623">topcomment</text>
<text text-anchor="middle" style="font-size:8.00;" x="1025" y="1623">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="936" y="1637">header</text>
<text text-anchor="middle" style="font-size:8.00;" x="1025" y="1637">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="945" y="1651">fuzzyheader</text>
<text text-anchor="middle" style="font-size:8.00;" x="1032" y="1651">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="946" y="1665">lasttranslator</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1665">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1099" y="1665"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="936" y="1679">license</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1679">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1099" y="1679"> REFERENCES license </text>
<text text-anchor="middle" style="font-size:8.00;" x="945" y="1693">currentcount</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1693">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="946" y="1707">updatescount</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1707">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="945" y="1721">rosettacount</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1721">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="941" y="1735">lastparsed</text>
<text text-anchor="middle" style="font-size:8.00;" x="1036" y="1735">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="935" y="1749">owner</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1749">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1099" y="1749"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="944" y="1763">pluralforms</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1763">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="936" y="1777">variant</text>
<text text-anchor="middle" style="font-size:8.00;" x="1025" y="1777">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="932" y="1791">path</text>
<text text-anchor="middle" style="font-size:8.00;" x="1025" y="1791">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="941" y="1805">exportfile</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1805">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1111" y="1805"> REFERENCES libraryfilealias </text>
<text text-anchor="middle" style="font-size:8.00;" x="942" y="1819">exporttime</text>
<text text-anchor="middle" style="font-size:8.00;" x="1036" y="1819">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="943" y="1833">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="1036" y="1833">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="952" y="1847">latestsubmission</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1847">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1110" y="1847"> REFERENCES posubmission </text>
<text text-anchor="middle" style="font-size:8.00;" x="968" y="1861">from_sourcepackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="1030" y="1861">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1121" y="1861"> REFERENCES sourcepackagename </text>
<polygon style="fill:none;stroke:black;" points="919,1867 919,1539 1187,1539 1187,1867 919,1867"/>
</g>
<g id="edge18" class="edge"><title>poexportrequest->pofile</title>
<path style="fill:none;stroke:black;" d="M1496,1623C1415,1637 1299,1658 1205,1675"/>
<polygon style="fill:black;stroke:black;" points="1205,1678 1195,1677 1204,1672 1205,1678"/>
</g>
<g id="edge16" class="edge"><title>poexportrequest->potemplate</title>
<path style="fill:none;stroke:black;" d="M1667,1557C1739,1510 1850,1437 1945,1376"/>
<polygon style="fill:black;stroke:black;" points="1943,1373 1953,1371 1946,1379 1943,1373"/>
</g>
<g id="node33" class="node"><title>fake_person_229</title>
<ellipse cx="1456" cy="1864" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="1456" y="1867">person</text>
</g>
<g id="edge14" class="edge"><title>poexportrequest->fake_person_229</title>
<path style="fill:none;stroke:black;" d="M1566,1655C1538,1710 1493,1795 1470,1838"/>
<polygon style="fill:black;stroke:black;" points="1473,1840 1465,1847 1467,1837 1473,1840"/>
</g>
<g id="node11" class="node"><title>posubmission</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="457,1144 457,1012 687,1012 687,1144 457,1144"/>
<polygon style="fill:white;stroke:white;" points="460,1029 460,1015 684,1015 684,1029 460,1029"/>
<text text-anchor="middle" style="font-size:8.00;" x="572" y="1025">posubmission</text>
<polygon style="fill:none;stroke:black;" points="460,1029 460,1015 684,1015 684,1029 460,1029"/>
<text text-anchor="middle" style="font-size:8.00;" x="466" y="1040">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="530" y="1040">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="609" y="1040"> UNIQUE PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="478" y="1054">pomsgset</text>
<text text-anchor="middle" style="font-size:8.00;" x="533" y="1054">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="622" y="1054"> UNIQUE REFERENCES pomsgset </text>
<text text-anchor="middle" style="font-size:8.00;" x="480" y="1068">pluralform</text>
<text text-anchor="middle" style="font-size:8.00;" x="533" y="1068">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="580" y="1068"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="484" y="1082">potranslation</text>
<text text-anchor="middle" style="font-size:8.00;" x="533" y="1082">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="612" y="1082"> REFERENCES potranslation </text>
<text text-anchor="middle" style="font-size:8.00;" x="472" y="1096">origin</text>
<text text-anchor="middle" style="font-size:8.00;" x="533" y="1096">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="481" y="1110">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="539" y="1110">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="474" y="1124">person</text>
<text text-anchor="middle" style="font-size:8.00;" x="533" y="1124">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="602" y="1124"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="488" y="1138">validationstatus</text>
<text text-anchor="middle" style="font-size:8.00;" x="533" y="1138">integer</text>
<polygon style="fill:none;stroke:black;" points="457,1144 457,1012 687,1012 687,1144 457,1144"/>
</g>
<g id="edge32" class="edge"><title>pofile->posubmission</title>
<path style="fill:none;stroke:black;" d="M923,1535C829,1413 705,1250 632,1156"/>
<polygon style="fill:black;stroke:black;" points="629,1158 626,1148 635,1154 629,1158"/>
</g>
<g id="edge20" class="edge"><title>pofile->potemplate</title>
<path style="fill:none;stroke:black;" d="M1195,1644C1388,1564 1734,1421 1944,1335"/>
<polygon style="fill:black;stroke:black;" points="1942,1332 1953,1331 1945,1338 1942,1332"/>
</g>
<g id="node38" class="node"><title>fake_language_234</title>
<ellipse cx="537" cy="1916" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="537" y="1919">language</text>
</g>
<g id="edge22" class="edge"><title>pofile->fake_language_234</title>
<path style="fill:none;stroke:black;" d="M911,1762C794,1811 637,1875 570,1902"/>
<polygon style="fill:black;stroke:black;" points="571,1906 560,1906 568,1899 571,1906"/>
</g>
<g id="node40" class="node"><title>fake_person_236</title>
<ellipse cx="918" cy="2192" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="918" y="2195">person</text>
</g>
<g id="edge24" class="edge"><title>pofile->fake_person_236</title>
<path style="fill:none;stroke:black;" d="M1007,1871C977,1979 941,2109 926,2164"/>
<polygon style="fill:black;stroke:black;" points="929,2165 923,2174 923,2163 929,2165"/>
</g>
<g id="node42" class="node"><title>fake_license_238</title>
<ellipse cx="647" cy="2033" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="647" y="2036">license</text>
</g>
<g id="edge26" class="edge"><title>pofile->fake_license_238</title>
<path style="fill:none;stroke:black;" d="M911,1819C823,1890 720,1975 672,2013"/>
<polygon style="fill:black;stroke:black;" points="674,2016 664,2019 670,2010 674,2016"/>
</g>
<g id="node44" class="node"><title>fake_person_240</title>
<ellipse cx="520" cy="1752" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="520" y="1755">person</text>
</g>
<g id="edge28" class="edge"><title>pofile->fake_person_240</title>
<path style="fill:none;stroke:black;" d="M911,1716C792,1727 629,1743 557,1749"/>
<polygon style="fill:black;stroke:black;" points="557,1752 547,1750 557,1746 557,1752"/>
</g>
<g id="node46" class="node"><title>fake_libraryfilealias_242</title>
<ellipse cx="545" cy="1573" rx="35" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="545" y="1576">libraryfilealias</text>
</g>
<g id="edge30" class="edge"><title>pofile->fake_libraryfilealias_242</title>
<path style="fill:none;stroke:black;" d="M911,1667C801,1638 656,1602 586,1584"/>
<polygon style="fill:black;stroke:black;" points="585,1587 576,1581 587,1581 585,1587"/>
</g>
<g id="node49" class="node"><title>fake_sourcepackagename_245</title>
<ellipse cx="719" cy="2185" rx="44" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="719" y="2188">sourcepackagename</text>
</g>
<g id="edge34" class="edge"><title>pofile->fake_sourcepackagename_245</title>
<path style="fill:none;stroke:black;" d="M936,1871C862,1978 774,2106 737,2160"/>
<polygon style="fill:black;stroke:black;" points="740,2162 731,2168 734,2158 740,2162"/>
</g>
<g id="node8" class="node"><title>pomsgidsighting</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="904,453 904,335 1096,335 1096,453 904,453"/>
<polygon style="fill:white;stroke:white;" points="907,352 907,338 1093,338 1093,352 907,352"/>
<text text-anchor="middle" style="font-size:8.00;" x="1000" y="348">pomsgidsighting</text>
<polygon style="fill:none;stroke:black;" points="907,352 907,338 1093,338 1093,352 907,352"/>
<text text-anchor="middle" style="font-size:8.00;" x="913" y="363">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="969" y="363">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="1031" y="363"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="926" y="377">potmsgset</text>
<text text-anchor="middle" style="font-size:8.00;" x="972" y="377">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1046" y="377"> REFERENCES potmsgset </text>
<text text-anchor="middle" style="font-size:8.00;" x="924" y="391">pomsgid</text>
<text text-anchor="middle" style="font-size:8.00;" x="972" y="391">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1044" y="391"> REFERENCES pomsgid </text>
<text text-anchor="middle" style="font-size:8.00;" x="930" y="405">datefirstseen</text>
<text text-anchor="middle" style="font-size:8.00;" x="978" y="405">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="929" y="419">datelastseen</text>
<text text-anchor="middle" style="font-size:8.00;" x="978" y="419">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="932" y="433">inlastrevision</text>
<text text-anchor="middle" style="font-size:8.00;" x="974" y="433">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="927" y="447">pluralform</text>
<text text-anchor="middle" style="font-size:8.00;" x="972" y="447">integer</text>
<polygon style="fill:none;stroke:black;" points="904,453 904,335 1096,335 1096,453 904,453"/>
</g>
<g id="edge38" class="edge"><title>pomsgidsighting->pomsgid</title>
<path style="fill:none;stroke:black;" d="M1104,401C1122,402 1141,403 1158,404"/>
<polygon style="fill:black;stroke:black;" points="1158,401 1168,405 1158,407 1158,401"/>
</g>
<g id="node15" class="node"><title>potmsgset</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="1265,879 1265,747 1489,747 1489,879 1265,879"/>
<polygon style="fill:white;stroke:white;" points="1268,764 1268,750 1486,750 1486,764 1268,764"/>
<text text-anchor="middle" style="font-size:8.00;" x="1377" y="760">potmsgset</text>
<polygon style="fill:none;stroke:black;" points="1268,764 1268,750 1486,750 1486,764 1268,764"/>
<text text-anchor="middle" style="font-size:8.00;" x="1274" y="775">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="1338" y="775">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="1389" y="775"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="1290" y="789">primemsgid</text>
<text text-anchor="middle" style="font-size:8.00;" x="1341" y="789">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1418" y="789"> UNIQUE REFERENCES pomsgid </text>
<text text-anchor="middle" style="font-size:8.00;" x="1285" y="803">sequence</text>
<text text-anchor="middle" style="font-size:8.00;" x="1341" y="803">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1289" y="817">potemplate</text>
<text text-anchor="middle" style="font-size:8.00;" x="1341" y="817">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1422" y="817"> REFERENCES potemplate UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="1292" y="831">commenttext</text>
<text text-anchor="middle" style="font-size:8.00;" x="1336" y="831">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="1293" y="845">filereferences</text>
<text text-anchor="middle" style="font-size:8.00;" x="1336" y="845">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="1296" y="859">sourcecomment</text>
<text text-anchor="middle" style="font-size:8.00;" x="1336" y="859">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="1294" y="873">flagscomment</text>
<text text-anchor="middle" style="font-size:8.00;" x="1336" y="873">text</text>
<polygon style="fill:none;stroke:black;" points="1265,879 1265,747 1489,747 1489,879 1265,879"/>
</g>
<g id="edge36" class="edge"><title>pomsgidsighting->potmsgset</title>
<path style="fill:none;stroke:black;" d="M1057,457C1124,532 1235,655 1307,735"/>
<polygon style="fill:black;stroke:black;" points="1310,733 1314,743 1305,738 1310,733"/>
</g>
<g id="node9" class="node"><title>pomsgset</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="719,1118 719,944 953,944 953,1118 719,1118"/>
<polygon style="fill:white;stroke:white;" points="722,961 722,947 950,947 950,961 722,961"/>
<text text-anchor="middle" style="font-size:8.00;" x="836" y="957">pomsgset</text>
<polygon style="fill:none;stroke:black;" points="722,961 722,947 950,947 950,961 722,961"/>
<text text-anchor="middle" style="font-size:8.00;" x="728" y="972">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="802" y="972">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="856" y="972"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="739" y="986">sequence</text>
<text text-anchor="middle" style="font-size:8.00;" x="805" y="986">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="734" y="1000">pofile</text>
<text text-anchor="middle" style="font-size:8.00;" x="805" y="1000">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="880" y="1000"> REFERENCES pofile UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="742" y="1014">iscomplete</text>
<text text-anchor="middle" style="font-size:8.00;" x="807" y="1014">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="738" y="1028">obsolete</text>
<text text-anchor="middle" style="font-size:8.00;" x="807" y="1028">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="737" y="1042">isfuzzy</text>
<text text-anchor="middle" style="font-size:8.00;" x="807" y="1042">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="746" y="1056">commenttext</text>
<text text-anchor="middle" style="font-size:8.00;" x="800" y="1056">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="741" y="1070">potmsgset</text>
<text text-anchor="middle" style="font-size:8.00;" x="805" y="1070">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="887" y="1070"> REFERENCES potmsgset UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="750" y="1084">publishedfuzzy</text>
<text text-anchor="middle" style="font-size:8.00;" x="807" y="1084">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="756" y="1098">publishedcomplete</text>
<text text-anchor="middle" style="font-size:8.00;" x="807" y="1098">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="741" y="1112">isupdated</text>
<text text-anchor="middle" style="font-size:8.00;" x="807" y="1112">boolean</text>
<polygon style="fill:none;stroke:black;" points="719,1118 719,944 953,944 953,1118 719,1118"/>
</g>
<g id="edge40" class="edge"><title>pomsgset->pofile</title>
<path style="fill:none;stroke:black;" d="M865,1122C899,1225 954,1395 996,1525"/>
<polygon style="fill:black;stroke:black;" points="999,1524 999,1535 993,1526 999,1524"/>
</g>
<g id="edge42" class="edge"><title>pomsgset->potmsgset</title>
<path style="fill:none;stroke:black;" d="M961,981C1047,946 1161,900 1248,865"/>
<polygon style="fill:black;stroke:black;" points="1246,862 1257,861 1249,868 1246,862"/>
</g>
<g id="node10" class="node"><title>poselection</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="14,739 14,649 446,649 446,739 14,739"/>
<polygon style="fill:white;stroke:white;" points="17,666 17,652 443,652 443,666 17,666"/>
<text text-anchor="middle" style="font-size:8.00;" x="230" y="662">poselection</text>
<polygon style="fill:none;stroke:black;" points="17,666 17,652 443,652 443,666 17,666"/>
<text text-anchor="middle" style="font-size:8.00;" x="23" y="677">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="103" y="677">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="154" y="677"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="35" y="691">pomsgset</text>
<text text-anchor="middle" style="font-size:8.00;" x="106" y="691">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="283" y="691"> REFERENCES pomsgset REFERENCES posubmission REFERENCES posubmission UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="37" y="705">pluralform</text>
<text text-anchor="middle" style="font-size:8.00;" x="106" y="705">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="240" y="705"> REFERENCES posubmission REFERENCES posubmission UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="47" y="719">activesubmission</text>
<text text-anchor="middle" style="font-size:8.00;" x="106" y="719">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="175" y="719"> REFERENCES posubmission </text>
<text text-anchor="middle" style="font-size:8.00;" x="54" y="733">publishedsubmission</text>
<text text-anchor="middle" style="font-size:8.00;" x="106" y="733">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="175" y="733"> REFERENCES posubmission </text>
<polygon style="fill:none;stroke:black;" points="14,739 14,649 446,649 446,739 14,739"/>
</g>
<g id="edge44" class="edge"><title>poselection->pomsgset</title>
<path style="fill:none;stroke:black;" d="M318,743C418,799 585,891 702,956"/>
<polygon style="fill:black;stroke:black;" points="704,953 711,961 701,959 704,953"/>
</g>
<g id="edge46" class="edge"><title>poselection->posubmission</title>
<path style="fill:none;stroke:black;" d="M274,743C332,808 434,923 503,1000"/>
<polygon style="fill:black;stroke:black;" points="506,998 510,1008 501,1003 506,998"/>
</g>
<g id="edge48" class="edge"><title>poselection->posubmission</title>
<path style="fill:none;stroke:black;" d="M274,743C332,808 434,923 503,1000"/>
<polygon style="fill:black;stroke:black;" points="506,998 510,1008 501,1003 506,998"/>
</g>
<g id="edge50" class="edge"><title>posubmission->pomsgset</title>
<path style="fill:none;stroke:black;" d="M695,1056C697,1056 699,1055 701,1055"/>
<polygon style="fill:black;stroke:black;" points="701,1052 711,1053 702,1058 701,1052"/>
</g>
<g id="edge52" class="edge"><title>posubmission->potranslation</title>
<path style="fill:none;stroke:black;" d="M632,1008C654,984 680,957 705,935 779,869 874,803 932,765"/>
<polygon style="fill:black;stroke:black;" points="931,762 941,759 935,767 931,762"/>
</g>
<g id="node60" class="node"><title>fake_person_258</title>
<ellipse cx="146" cy="1013" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="146" y="1016">person</text>
</g>
<g id="edge54" class="edge"><title>posubmission->fake_person_258</title>
<path style="fill:none;stroke:black;" d="M449,1059C359,1045 242,1027 183,1019"/>
<polygon style="fill:black;stroke:black;" points="182,1022 173,1017 183,1016 182,1022"/>
</g>
<g id="node12" class="node"><title>posubscription</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2382,493 2382,389 2628,389 2628,493 2382,493"/>
<polygon style="fill:white;stroke:white;" points="2385,406 2385,392 2625,392 2625,406 2385,406"/>
<text text-anchor="middle" style="font-size:8.00;" x="2505" y="402">posubscription</text>
<polygon style="fill:none;stroke:black;" points="2385,406 2385,392 2625,392 2625,406 2385,406"/>
<text text-anchor="middle" style="font-size:8.00;" x="2391" y="417">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2466" y="417">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2528" y="417"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2399" y="431">person</text>
<text text-anchor="middle" style="font-size:8.00;" x="2469" y="431">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2554" y="431"> REFERENCES person UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2406" y="445">potemplate</text>
<text text-anchor="middle" style="font-size:8.00;" x="2469" y="445">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2561" y="445"> REFERENCES potemplate UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2403" y="459">language</text>
<text text-anchor="middle" style="font-size:8.00;" x="2469" y="459">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2558" y="459"> REFERENCES language UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2419" y="473">notificationinterval</text>
<text text-anchor="middle" style="font-size:8.00;" x="2470" y="473">interval</text>
<text text-anchor="middle" style="font-size:8.00;" x="2406" y="487">lastnotified</text>
<text text-anchor="middle" style="font-size:8.00;" x="2475" y="487">timestamp</text>
<polygon style="fill:none;stroke:black;" points="2382,493 2382,389 2628,389 2628,493 2382,493"/>
</g>
<g id="edge58" class="edge"><title>posubscription->potemplate</title>
<path style="fill:none;stroke:black;" d="M2479,497C2422,619 2285,912 2197,1098"/>
<polygon style="fill:black;stroke:black;" points="2200,1099 2193,1107 2194,1096 2200,1099"/>
</g>
<g id="node62" class="node"><title>fake_person_260</title>
<ellipse cx="2575" cy="23" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2575" y="26">person</text>
</g>
<g id="edge56" class="edge"><title>posubscription->fake_person_260</title>
<path style="fill:none;stroke:black;" d="M2514,385C2530,294 2559,119 2570,51"/>
<polygon style="fill:black;stroke:black;" points="2567,50 2572,41 2573,51 2567,50"/>
</g>
<g id="node65" class="node"><title>fake_language_263</title>
<ellipse cx="2773" cy="116" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2773" y="119">language</text>
</g>
<g id="edge60" class="edge"><title>posubscription->fake_language_263</title>
<path style="fill:none;stroke:black;" d="M2551,385C2611,313 2712,191 2754,140"/>
<polygon style="fill:black;stroke:black;" points="2751,138 2760,132 2757,142 2751,138"/>
</g>
<g id="node14" class="node"><title>potemplatename</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2312,1799 2312,1709 2472,1709 2472,1799 2312,1799"/>
<polygon style="fill:white;stroke:white;" points="2315,1726 2315,1712 2469,1712 2469,1726 2315,1726"/>
<text text-anchor="middle" style="font-size:8.00;" x="2392" y="1722">potemplatename</text>
<polygon style="fill:none;stroke:black;" points="2315,1726 2315,1712 2469,1712 2469,1726 2315,1726"/>
<text text-anchor="middle" style="font-size:8.00;" x="2321" y="1737">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2392" y="1737">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2437" y="1737"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2327" y="1751">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="2390" y="1751">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2425" y="1751"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2324" y="1765">title</text>
<text text-anchor="middle" style="font-size:8.00;" x="2390" y="1765">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2335" y="1779">description</text>
<text text-anchor="middle" style="font-size:8.00;" x="2390" y="1779">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2347" y="1793">translationdomain</text>
<text text-anchor="middle" style="font-size:8.00;" x="2390" y="1793">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2425" y="1793"> UNIQUE </text>
<polygon style="fill:none;stroke:black;" points="2312,1799 2312,1709 2472,1709 2472,1799 2312,1799"/>
</g>
<g id="edge70" class="edge"><title>potemplate->potemplatename</title>
<path style="fill:none;stroke:black;" d="M2206,1415C2258,1511 2322,1627 2360,1696"/>
<polygon style="fill:black;stroke:black;" points="2363,1695 2365,1705 2357,1698 2363,1695"/>
</g>
<g id="node17" class="node"><title>productseries</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2485,2519 2485,2079 2759,2079 2759,2519 2485,2519"/>
<polygon style="fill:white;stroke:white;" points="2488,2096 2488,2082 2756,2082 2756,2096 2488,2096"/>
<text text-anchor="middle" style="font-size:8.00;" x="2622" y="2092">productseries</text>
<polygon style="fill:none;stroke:black;" points="2488,2096 2488,2082 2756,2082 2756,2096 2488,2096"/>
<text text-anchor="middle" style="font-size:8.00;" x="2494" y="2107">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2575" y="2107">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2654" y="2107"> PRIMARY KEY UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2503" y="2121">product</text>
<text text-anchor="middle" style="font-size:8.00;" x="2578" y="2121">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2681" y="2121"> REFERENCES product UNIQUE UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2500" y="2135">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2135">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2625" y="2135"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2506" y="2149">summary</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2149">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2502" y="2163">branch</text>
<text text-anchor="middle" style="font-size:8.00;" x="2578" y="2163">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2663" y="2163"> REFERENCES branch UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2511" y="2177">importstatus</text>
<text text-anchor="middle" style="font-size:8.00;" x="2578" y="2177">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2514" y="2191">datelastsynced</text>
<text text-anchor="middle" style="font-size:8.00;" x="2584" y="2191">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="2510" y="2205">syncinterval</text>
<text text-anchor="middle" style="font-size:8.00;" x="2579" y="2205">interval</text>
<text text-anchor="middle" style="font-size:8.00;" x="2503" y="2219">rcstype</text>
<text text-anchor="middle" style="font-size:8.00;" x="2578" y="2219">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2502" y="2233">cvsroot</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2233">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2625" y="2233"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2508" y="2247">cvsmodule</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2247">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2625" y="2247"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2507" y="2261">cvsbranch</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2261">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2625" y="2261"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2510" y="2275">cvstarfileurl</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2275">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2513" y="2289">svnrepository</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2289">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2625" y="2289"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2511" y="2303">bkrepository</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2303">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2625" y="2303"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2509" y="2317">releaseroot</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2317">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2515" y="2331">releasefileglob</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2331">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2515" y="2345">releaseverstyle</text>
<text text-anchor="middle" style="font-size:8.00;" x="2578" y="2345">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2519" y="2359">targetarcharchive</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2359">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2625" y="2359"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2521" y="2373">targetarchcategory</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2373">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2625" y="2373"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2518" y="2387">targetarchbranch</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2387">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2625" y="2387"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2519" y="2401">targetarchversion</text>
<text text-anchor="middle" style="font-size:8.00;" x="2573" y="2401">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2625" y="2401"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2514" y="2415">dateautotested</text>
<text text-anchor="middle" style="font-size:8.00;" x="2584" y="2415">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="2525" y="2429">dateprocessapproved</text>
<text text-anchor="middle" style="font-size:8.00;" x="2584" y="2429">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="2520" y="2443">datesyncapproved</text>
<text text-anchor="middle" style="font-size:8.00;" x="2584" y="2443">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="2508" y="2457">datestarted</text>
<text text-anchor="middle" style="font-size:8.00;" x="2584" y="2457">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="2510" y="2471">datefinished</text>
<text text-anchor="middle" style="font-size:8.00;" x="2584" y="2471">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="2509" y="2485">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="2584" y="2485">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="2500" y="2499">driver</text>
<text text-anchor="middle" style="font-size:8.00;" x="2578" y="2499">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2647" y="2499"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="2501" y="2513">owner</text>
<text text-anchor="middle" style="font-size:8.00;" x="2578" y="2513">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2647" y="2513"> REFERENCES person </text>
<polygon style="fill:none;stroke:black;" points="2485,2519 2485,2079 2759,2079 2759,2519 2485,2519"/>
</g>
<g id="edge74" class="edge"><title>potemplate->productseries</title>
<path style="fill:none;stroke:black;" d="M2160,1415C2191,1526 2239,1679 2300,1805 2347,1905 2412,2008 2471,2095"/>
<polygon style="fill:black;stroke:black;" points="2474,2093 2477,2103 2468,2097 2474,2093"/>
</g>
<g id="node67" class="node"><title>fake_license_265</title>
<ellipse cx="2485" cy="951" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2485" y="954">license</text>
</g>
<g id="edge62" class="edge"><title>potemplate->fake_license_265</title>
<path style="fill:none;stroke:black;" d="M2289,1118C2356,1062 2425,1002 2460,972"/>
<polygon style="fill:black;stroke:black;" points="2458,969 2468,965 2463,974 2458,969"/>
</g>
<g id="node69" class="node"><title>fake_person_267</title>
<ellipse cx="2605" cy="1357" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2605" y="1360">person</text>
</g>
<g id="edge64" class="edge"><title>potemplate->fake_person_267</title>
<path style="fill:none;stroke:black;" d="M2289,1294C2390,1314 2510,1338 2569,1350"/>
<polygon style="fill:black;stroke:black;" points="2570,1347 2579,1352 2569,1353 2570,1347"/>
</g>
<g id="node71" class="node"><title>fake_sourcepackagename_269</title>
<ellipse cx="2628" cy="1136" rx="44" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2628" y="1139">sourcepackagename</text>
</g>
<g id="edge66" class="edge"><title>potemplate->fake_sourcepackagename_269</title>
<path style="fill:none;stroke:black;" d="M2289,1220C2392,1194 2514,1164 2580,1147"/>
<polygon style="fill:black;stroke:black;" points="2580,1144 2590,1145 2581,1150 2580,1144"/>
</g>
<g id="node73" class="node"><title>fake_distrorelease_271</title>
<ellipse cx="2508" cy="1544" rx="32" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2508" y="1547">distrorelease</text>
</g>
<g id="edge68" class="edge"><title>potemplate->fake_distrorelease_271</title>
<path style="fill:none;stroke:black;" d="M2289,1384C2362,1437 2440,1494 2480,1524"/>
<polygon style="fill:black;stroke:black;" points="2482,1521 2488,1530 2478,1527 2482,1521"/>
</g>
<g id="node76" class="node"><title>fake_binarypackagename_274</title>
<ellipse cx="2028" cy="797" rx="44" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2028" y="800">binarypackagename</text>
</g>
<g id="edge72" class="edge"><title>potemplate->fake_binarypackagename_274</title>
<path style="fill:none;stroke:black;" d="M2090,1107C2069,1005 2044,880 2034,825"/>
<polygon style="fill:black;stroke:black;" points="2031,825 2032,815 2037,824 2031,825"/>
</g>
<g id="node79" class="node"><title>fake_sourcepackagename_277</title>
<ellipse cx="2294" cy="792" rx="44" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2294" y="795">sourcepackagename</text>
</g>
<g id="edge76" class="edge"><title>potemplate->fake_sourcepackagename_277</title>
<path style="fill:none;stroke:black;" d="M2178,1107C2216,1003 2263,875 2284,819"/>
<polygon style="fill:black;stroke:black;" points="2281,818 2287,810 2287,821 2281,818"/>
</g>
<g id="edge78" class="edge"><title>potmsgset->pomsgid</title>
<path style="fill:none;stroke:black;" d="M1353,743C1324,657 1274,515 1250,447"/>
<polygon style="fill:black;stroke:black;" points="1247,448 1247,437 1253,446 1247,448"/>
</g>
<g id="edge80" class="edge"><title>potmsgset->potemplate</title>
<path style="fill:none;stroke:black;" d="M1493,883C1614,955 1805,1070 1944,1155"/>
<polygon style="fill:black;stroke:black;" points="1946,1152 1953,1160 1943,1158 1946,1152"/>
</g>
<g id="node83" class="node"><title>fake_product_301</title>
<ellipse cx="2712" cy="2880" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2712" y="2883">product</text>
</g>
<g id="edge82" class="edge"><title>productseries->fake_product_301</title>
<path style="fill:none;stroke:black;" d="M2657,2523C2676,2649 2698,2792 2707,2852"/>
<polygon style="fill:black;stroke:black;" points="2710,2852 2709,2862 2704,2853 2710,2852"/>
</g>
<g id="node85" class="node"><title>fake_branch_303</title>
<ellipse cx="3081" cy="2677" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3081" y="2680">branch</text>
</g>
<g id="edge84" class="edge"><title>productseries->fake_branch_303</title>
<path style="fill:none;stroke:black;" d="M2767,2419C2871,2504 3002,2611 3056,2656"/>
<polygon style="fill:black;stroke:black;" points="3059,2654 3064,2663 3054,2659 3059,2654"/>
</g>
<g id="node87" class="node"><title>fake_person_305</title>
<ellipse cx="2922" cy="2815" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2922" y="2818">person</text>
</g>
<g id="edge86" class="edge"><title>productseries->fake_person_305</title>
<path style="fill:none;stroke:black;" d="M2752,2523C2813,2627 2879,2740 2907,2789"/>
<polygon style="fill:black;stroke:black;" points="2910,2788 2912,2798 2904,2791 2910,2788"/>
</g>
<g id="node89" class="node"><title>fake_person_307</title>
<ellipse cx="3175" cy="2472" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3175" y="2475">person</text>
</g>
<g id="edge88" class="edge"><title>productseries->fake_person_307</title>
<path style="fill:none;stroke:black;" d="M2767,2344C2894,2384 3068,2439 3140,2461"/>
<polygon style="fill:black;stroke:black;" points="3141,2458 3150,2464 3139,2464 3141,2458"/>
</g>
<g id="node18" class="node"><title>spokenin</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3160,1957 3160,1895 3324,1895 3324,1957 3160,1957"/>
<polygon style="fill:white;stroke:white;" points="3163,1912 3163,1898 3321,1898 3321,1912 3163,1912"/>
<text text-anchor="middle" style="font-size:8.00;" x="3242" y="1908">spokenin</text>
<polygon style="fill:none;stroke:black;" points="3163,1912 3163,1898 3321,1898 3321,1912 3163,1912"/>
<text text-anchor="middle" style="font-size:8.00;" x="3181" y="1923">language</text>
<text text-anchor="middle" style="font-size:8.00;" x="3214" y="1923">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3276" y="1923"> REFERENCES language </text>
<text text-anchor="middle" style="font-size:8.00;" x="3178" y="1937">country</text>
<text text-anchor="middle" style="font-size:8.00;" x="3214" y="1937">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3273" y="1937"> REFERENCES country </text>
<text text-anchor="middle" style="font-size:8.00;" x="3169" y="1951">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3214" y="1951">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3262" y="1951"> PRIMARY KEY </text>
<polygon style="fill:none;stroke:black;" points="3160,1957 3160,1895 3324,1895 3324,1957 3160,1957"/>
</g>
<g id="edge92" class="edge"><title>spokenin->country</title>
<path style="fill:none;stroke:black;" d="M3282,1961C3300,1977 3322,1997 3343,2016"/>
<polygon style="fill:black;stroke:black;" points="3346,2014 3351,2023 3341,2019 3346,2014"/>
</g>
<g id="edge90" class="edge"><title>spokenin->language</title>
<path style="fill:none;stroke:black;" d="M3190,1891C3178,1883 3164,1874 3151,1865"/>
<polygon style="fill:black;stroke:black;" points="3148,1867 3142,1859 3152,1862 3148,1867"/>
</g>
<g id="node19" class="node"><title>translationeffort</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3764,809 3764,677 3928,677 3928,809 3764,809"/>
<polygon style="fill:white;stroke:white;" points="3767,694 3767,680 3925,680 3925,694 3767,694"/>
<text text-anchor="middle" style="font-size:8.00;" x="3846" y="690">translationeffort</text>
<polygon style="fill:none;stroke:black;" points="3767,694 3767,680 3925,680 3925,694 3767,694"/>
<text text-anchor="middle" style="font-size:8.00;" x="3773" y="705">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3820" y="705">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3871" y="705"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="3780" y="719">owner</text>
<text text-anchor="middle" style="font-size:8.00;" x="3823" y="719">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3881" y="719"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="3781" y="733">project</text>
<text text-anchor="middle" style="font-size:8.00;" x="3823" y="733">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3881" y="733"> REFERENCES project </text>
<text text-anchor="middle" style="font-size:8.00;" x="3779" y="747">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="3818" y="747">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3859" y="747"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="3776" y="761">title</text>
<text text-anchor="middle" style="font-size:8.00;" x="3818" y="761">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3785" y="775">summary</text>
<text text-anchor="middle" style="font-size:8.00;" x="3818" y="775">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3787" y="789">description</text>
<text text-anchor="middle" style="font-size:8.00;" x="3818" y="789">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3786" y="803">categories</text>
<text text-anchor="middle" style="font-size:8.00;" x="3823" y="803">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3882" y="803"> REFERENCES schema </text>
<polygon style="fill:none;stroke:black;" points="3764,809 3764,677 3928,677 3928,809 3764,809"/>
</g>
<g id="node93" class="node"><title>fake_person_416</title>
<ellipse cx="4099" cy="467" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4099" y="470">person</text>
</g>
<g id="edge94" class="edge"><title>translationeffort->fake_person_416</title>
<path style="fill:none;stroke:black;" d="M3910,673C3965,613 4041,530 4078,491"/>
<polygon style="fill:black;stroke:black;" points="4076,488 4085,483 4081,493 4076,488"/>
</g>
<g id="node95" class="node"><title>fake_project_418</title>
<ellipse cx="4212" cy="626" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4212" y="629">project</text>
</g>
<g id="edge96" class="edge"><title>translationeffort->fake_project_418</title>
<path style="fill:none;stroke:black;" d="M3936,714C4014,690 4123,654 4178,637"/>
<polygon style="fill:black;stroke:black;" points="4177,634 4188,634 4179,640 4177,634"/>
</g>
<g id="node97" class="node"><title>fake_schema_420</title>
<ellipse cx="4211" cy="823" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4211" y="826">schema</text>
</g>
<g id="edge98" class="edge"><title>translationeffort->fake_schema_420</title>
<path style="fill:none;stroke:black;" d="M3936,763C4013,779 4120,803 4175,815"/>
<polygon style="fill:black;stroke:black;" points="4176,812 4185,817 4175,818 4176,812"/>
</g>
<g id="node20" class="node"><title>translationeffortpotemplate</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3012,1008 3012,932 3252,932 3252,1008 3012,1008"/>
<polygon style="fill:white;stroke:white;" points="3015,949 3015,935 3249,935 3249,949 3015,949"/>
<text text-anchor="middle" style="font-size:8.00;" x="3132" y="945">translationeffortpotemplate</text>
<polygon style="fill:none;stroke:black;" points="3015,949 3015,935 3249,935 3249,949 3015,949"/>
<text text-anchor="middle" style="font-size:8.00;" x="3044" y="960">translationeffort</text>
<text text-anchor="middle" style="font-size:8.00;" x="3088" y="960">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3177" y="960"> REFERENCES translationeffort UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="3036" y="974">potemplate</text>
<text text-anchor="middle" style="font-size:8.00;" x="3088" y="974">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3169" y="974"> REFERENCES potemplate UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="3030" y="988">priority</text>
<text text-anchor="middle" style="font-size:8.00;" x="3088" y="988">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3031" y="1002">category</text>
<text text-anchor="middle" style="font-size:8.00;" x="3088" y="1002">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3143" y="1002"> REFERENCES label </text>
<polygon style="fill:none;stroke:black;" points="3012,1008 3012,932 3252,932 3252,1008 3012,1008"/>
</g>
<g id="edge102" class="edge"><title>translationeffortpotemplate->potemplate</title>
<path style="fill:none;stroke:black;" d="M3004,1006C2895,1037 2734,1083 2595,1123 2497,1151 2388,1183 2299,1208"/>
<polygon style="fill:black;stroke:black;" points="2300,1211 2289,1211 2298,1205 2300,1211"/>
</g>
<g id="edge100" class="edge"><title>translationeffortpotemplate->translationeffort</title>
<path style="fill:none;stroke:black;" d="M3260,929C3399,885 3619,816 3746,775"/>
<polygon style="fill:black;stroke:black;" points="3745,772 3756,772 3747,778 3745,772"/>
</g>
<g id="node101" class="node"><title>fake_label_424</title>
<ellipse cx="3496" cy="906" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3496" y="909">label</text>
</g>
<g id="edge104" class="edge"><title>translationeffortpotemplate->fake_label_424</title>
<path style="fill:none;stroke:black;" d="M3260,947C3331,935 3413,920 3460,913"/>
<polygon style="fill:black;stroke:black;" points="3460,910 3470,911 3461,916 3460,910"/>
</g>
<g id="node21" class="node"><title>translationgroup</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2757,1835 2757,1731 2931,1731 2931,1835 2757,1835"/>
<polygon style="fill:white;stroke:white;" points="2760,1748 2760,1734 2928,1734 2928,1748 2760,1748"/>
<text text-anchor="middle" style="font-size:8.00;" x="2844" y="1744">translationgroup</text>
<polygon style="fill:none;stroke:black;" points="2760,1748 2760,1734 2928,1734 2928,1748 2760,1748"/>
<text text-anchor="middle" style="font-size:8.00;" x="2766" y="1759">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2815" y="1759">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2877" y="1759"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2772" y="1773">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="2813" y="1773">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2865" y="1773"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2769" y="1787">title</text>
<text text-anchor="middle" style="font-size:8.00;" x="2813" y="1787">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2778" y="1801">summary</text>
<text text-anchor="middle" style="font-size:8.00;" x="2813" y="1801">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2781" y="1815">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="2824" y="1815">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="2773" y="1829">owner</text>
<text text-anchor="middle" style="font-size:8.00;" x="2818" y="1829">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2887" y="1829"> REFERENCES person </text>
<polygon style="fill:none;stroke:black;" points="2757,1835 2757,1731 2931,1731 2931,1835 2757,1835"/>
</g>
<g id="node103" class="node"><title>fake_person_426</title>
<ellipse cx="2721" cy="1882" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2721" y="1885">person</text>
</g>
<g id="edge106" class="edge"><title>translationgroup->fake_person_426</title>
<path style="fill:none;stroke:black;" d="M2774,1839C2764,1846 2755,1855 2746,1861"/>
<polygon style="fill:black;stroke:black;" points="2748,1864 2738,1868 2743,1859 2748,1864"/>
</g>
<g id="node22" class="node"><title>translationimportqueueentry</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="1682,2278 1682,2076 1930,2076 1930,2278 1682,2278"/>
<polygon style="fill:white;stroke:white;" points="1685,2093 1685,2079 1927,2079 1927,2093 1685,2093"/>
<text text-anchor="middle" style="font-size:8.00;" x="1806" y="2089">translationimportqueueentry</text>
<polygon style="fill:none;stroke:black;" points="1685,2093 1685,2079 1927,2079 1927,2093 1685,2093"/>
<text text-anchor="middle" style="font-size:8.00;" x="1691" y="2104">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="1770" y="2104">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="1832" y="2104"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="1695" y="2118">path</text>
<text text-anchor="middle" style="font-size:8.00;" x="1768" y="2118">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="1699" y="2132">content</text>
<text text-anchor="middle" style="font-size:8.00;" x="1773" y="2132">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1854" y="2132"> REFERENCES libraryfilealias </text>
<text text-anchor="middle" style="font-size:8.00;" x="1702" y="2146">importer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1773" y="2146">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1842" y="2146"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="1709" y="2160">dateimported</text>
<text text-anchor="middle" style="font-size:8.00;" x="1779" y="2160">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="1708" y="2174">distrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="1773" y="2174">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1851" y="2174"> REFERENCES distrorelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="1720" y="2188">sourcepackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="1773" y="2188">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1864" y="2188"> REFERENCES sourcepackagename </text>
<text text-anchor="middle" style="font-size:8.00;" x="1710" y="2202">productseries</text>
<text text-anchor="middle" style="font-size:8.00;" x="1773" y="2202">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1852" y="2202"> REFERENCES productseries </text>
<text text-anchor="middle" style="font-size:8.00;" x="1708" y="2216">is_published</text>
<text text-anchor="middle" style="font-size:8.00;" x="1775" y="2216">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="1697" y="2230">pofile</text>
<text text-anchor="middle" style="font-size:8.00;" x="1773" y="2230">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1840" y="2230"> REFERENCES pofile </text>
<text text-anchor="middle" style="font-size:8.00;" x="1706" y="2244">potemplate</text>
<text text-anchor="middle" style="font-size:8.00;" x="1773" y="2244">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1849" y="2244"> REFERENCES potemplate </text>
<text text-anchor="middle" style="font-size:8.00;" x="1697" y="2258">status</text>
<text text-anchor="middle" style="font-size:8.00;" x="1773" y="2258">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1721" y="2272">date_status_changed</text>
<text text-anchor="middle" style="font-size:8.00;" x="1779" y="2272">timestamp</text>
<polygon style="fill:none;stroke:black;" points="1682,2278 1682,2076 1930,2076 1930,2278 1682,2278"/>
</g>
<g id="edge118" class="edge"><title>translationimportqueueentry->pofile</title>
<path style="fill:none;stroke:black;" d="M1674,2094C1543,2012 1341,1884 1204,1797"/>
<polygon style="fill:black;stroke:black;" points="1202,1800 1195,1792 1205,1794 1202,1800"/>
</g>
<g id="edge120" class="edge"><title>translationimportqueueentry->potemplate</title>
<path style="fill:none;stroke:black;" d="M1842,2072C1897,1914 2000,1613 2065,1425"/>
<polygon style="fill:black;stroke:black;" points="2062,1424 2068,1415 2068,1426 2062,1424"/>
</g>
<g id="edge116" class="edge"><title>translationimportqueueentry->productseries</title>
<path style="fill:none;stroke:black;" d="M1938,2197C2083,2219 2314,2253 2467,2276"/>
<polygon style="fill:black;stroke:black;" points="2467,2273 2477,2277 2467,2279 2467,2273"/>
</g>
<g id="node105" class="node"><title>fake_libraryfilealias_428</title>
<ellipse cx="1527" cy="2544" rx="35" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="1527" y="2547">libraryfilealias</text>
</g>
<g id="edge108" class="edge"><title>translationimportqueueentry->fake_libraryfilealias_428</title>
<path style="fill:none;stroke:black;" d="M1726,2282C1664,2364 1583,2471 1546,2519"/>
<polygon style="fill:black;stroke:black;" points="1549,2521 1540,2527 1543,2517 1549,2521"/>
</g>
<g id="node107" class="node"><title>fake_person_430</title>
<ellipse cx="2024" cy="2548" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2024" y="2551">person</text>
</g>
<g id="edge110" class="edge"><title>translationimportqueueentry->fake_person_430</title>
<path style="fill:none;stroke:black;" d="M1868,2282C1916,2365 1980,2474 2009,2522"/>
<polygon style="fill:black;stroke:black;" points="2012,2521 2014,2531 2006,2524 2012,2521"/>
</g>
<g id="node109" class="node"><title>fake_distrorelease_432</title>
<ellipse cx="1689" cy="2629" rx="32" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="1689" y="2632">distrorelease</text>
</g>
<g id="edge112" class="edge"><title>translationimportqueueentry->fake_distrorelease_432</title>
<path style="fill:none;stroke:black;" d="M1779,2282C1752,2386 1713,2539 1697,2601"/>
<polygon style="fill:black;stroke:black;" points="1700,2602 1694,2611 1694,2600 1700,2602"/>
</g>
<g id="node111" class="node"><title>fake_sourcepackagename_434</title>
<ellipse cx="1863" cy="2670" rx="44" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="1863" y="2673">sourcepackagename</text>
</g>
<g id="edge114" class="edge"><title>translationimportqueueentry->fake_sourcepackagename_434</title>
<path style="fill:none;stroke:black;" d="M1818,2282C1831,2397 1852,2574 1860,2642"/>
<polygon style="fill:black;stroke:black;" points="1863,2642 1861,2652 1857,2642 1863,2642"/>
</g>
<g id="node23" class="node"><title>translator</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2892,1703 2892,1613 3146,1613 3146,1703 2892,1703"/>
<polygon style="fill:white;stroke:white;" points="2895,1630 2895,1616 3143,1616 3143,1630 2895,1630"/>
<text text-anchor="middle" style="font-size:8.00;" x="3019" y="1626">translator</text>
<polygon style="fill:none;stroke:black;" points="2895,1630 2895,1616 3143,1616 3143,1630 2895,1630"/>
<text text-anchor="middle" style="font-size:8.00;" x="2901" y="1641">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2966" y="1641">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3028" y="1641"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2924" y="1655">translationgroup</text>
<text text-anchor="middle" style="font-size:8.00;" x="2969" y="1655">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3070" y="1655"> UNIQUE REFERENCES translationgroup </text>
<text text-anchor="middle" style="font-size:8.00;" x="2913" y="1669">language</text>
<text text-anchor="middle" style="font-size:8.00;" x="2969" y="1669">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3058" y="1669"> UNIQUE REFERENCES language </text>
<text text-anchor="middle" style="font-size:8.00;" x="2913" y="1683">translator</text>
<text text-anchor="middle" style="font-size:8.00;" x="2969" y="1683">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3038" y="1683"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="2916" y="1697">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="2975" y="1697">timestamp</text>
<polygon style="fill:none;stroke:black;" points="2892,1703 2892,1613 3146,1613 3146,1703 2892,1703"/>
</g>
<g id="edge124" class="edge"><title>translator->language</title>
<path style="fill:none;stroke:black;" d="M3031,1707C3032,1711 3033,1715 3034,1719"/>
<polygon style="fill:black;stroke:black;" points="3037,1719 3036,1729 3031,1720 3037,1719"/>
</g>
<g id="edge122" class="edge"><title>translator->translationgroup</title>
<path style="fill:none;stroke:black;" d="M2950,1707C2944,1711 2937,1716 2930,1721"/>
<polygon style="fill:black;stroke:black;" points="2932,1724 2922,1727 2928,1718 2932,1724"/>
</g>
<g id="node118" class="node"><title>fake_person_441</title>
<ellipse cx="3101" cy="1482" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3101" y="1485">person</text>
</g>
<g id="edge126" class="edge"><title>translator->fake_person_441</title>
<path style="fill:none;stroke:black;" d="M3042,1609C3057,1576 3076,1535 3089,1508"/>
<polygon style="fill:black;stroke:black;" points="3086,1507 3093,1499 3092,1510 3086,1507"/>
</g>
</g>
</svg>
|