followthemoney 3.6.3__py2.py3-none-any.whl → 3.7.0__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. followthemoney/__init__.py +1 -1
  2. followthemoney/mapping/entity.py +15 -6
  3. followthemoney/proxy.py +4 -4
  4. followthemoney/schema/Airplane.yaml +2 -1
  5. followthemoney/schema/Article.yaml +2 -1
  6. followthemoney/schema/Assessment.yaml +2 -1
  7. followthemoney/schema/Associate.yaml +4 -2
  8. followthemoney/schema/Audio.yaml +2 -1
  9. followthemoney/schema/BankAccount.yaml +3 -2
  10. followthemoney/schema/Contract.yaml +2 -1
  11. followthemoney/schema/ContractAward.yaml +2 -1
  12. followthemoney/schema/CourtCase.yaml +2 -1
  13. followthemoney/schema/CourtCaseParty.yaml +4 -2
  14. followthemoney/schema/Debt.yaml +2 -1
  15. followthemoney/schema/Directorship.yaml +4 -2
  16. followthemoney/schema/Documentation.yml +5 -3
  17. followthemoney/schema/Employment.yaml +4 -2
  18. followthemoney/schema/Family.yaml +4 -2
  19. followthemoney/schema/Folder.yaml +2 -1
  20. followthemoney/schema/HyperText.yaml +2 -1
  21. followthemoney/schema/Identification.yaml +2 -1
  22. followthemoney/schema/Image.yaml +2 -1
  23. followthemoney/schema/Interest.yaml +2 -1
  24. followthemoney/schema/LegalEntity.yaml +2 -1
  25. followthemoney/schema/Membership.yaml +4 -2
  26. followthemoney/schema/Occupancy.yaml +2 -1
  27. followthemoney/schema/Organization.yaml +3 -2
  28. followthemoney/schema/Ownership.yaml +4 -2
  29. followthemoney/schema/Package.yaml +2 -1
  30. followthemoney/schema/Pages.yaml +2 -1
  31. followthemoney/schema/Passport.yaml +2 -1
  32. followthemoney/schema/Person.yaml +14 -1
  33. followthemoney/schema/PlainText.yaml +2 -1
  34. followthemoney/schema/Position.yaml +3 -2
  35. followthemoney/schema/Post.yaml +3 -2
  36. followthemoney/schema/Project.yaml +1 -1
  37. followthemoney/schema/ProjectParticipant.yaml +4 -2
  38. followthemoney/schema/PublicBody.yaml +2 -1
  39. followthemoney/schema/RealEstate.yaml +2 -1
  40. followthemoney/schema/Representation.yaml +4 -2
  41. followthemoney/schema/Sanction.yaml +2 -1
  42. followthemoney/schema/Security.yaml +2 -1
  43. followthemoney/schema/Succession.yaml +4 -2
  44. followthemoney/schema/Table.yaml +2 -1
  45. followthemoney/schema/TaxRoll.yaml +2 -1
  46. followthemoney/schema/UnknownLink.yaml +4 -2
  47. followthemoney/schema/Vehicle.yaml +2 -1
  48. followthemoney/schema/Vessel.yaml +2 -1
  49. followthemoney/schema/Video.yaml +2 -1
  50. followthemoney/schema/Workbook.yaml +2 -1
  51. followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo +0 -0
  52. followthemoney/translations/ar/LC_MESSAGES/followthemoney.po +5 -5
  53. followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo +0 -0
  54. followthemoney/translations/bs/LC_MESSAGES/followthemoney.po +3 -3
  55. followthemoney/translations/de/LC_MESSAGES/followthemoney.mo +0 -0
  56. followthemoney/translations/de/LC_MESSAGES/followthemoney.po +5 -5
  57. followthemoney/translations/es/LC_MESSAGES/followthemoney.mo +0 -0
  58. followthemoney/translations/es/LC_MESSAGES/followthemoney.po +5 -5
  59. followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo +0 -0
  60. followthemoney/translations/fr/LC_MESSAGES/followthemoney.po +5 -5
  61. followthemoney/translations/fr/followthemoney.po +3 -3
  62. followthemoney/translations/messages.pot +143 -60
  63. followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo +0 -0
  64. followthemoney/translations/nb/LC_MESSAGES/followthemoney.po +3 -3
  65. followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo +0 -0
  66. followthemoney/translations/nl/LC_MESSAGES/followthemoney.po +3 -3
  67. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo +0 -0
  68. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po +3 -3
  69. followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo +0 -0
  70. followthemoney/translations/ru/LC_MESSAGES/followthemoney.po +5 -5
  71. followthemoney/translations/ru/followthemoney.po +4 -4
  72. followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo +0 -0
  73. followthemoney/translations/tr/LC_MESSAGES/followthemoney.po +3 -3
  74. followthemoney/types/checksum.py +1 -0
  75. followthemoney/types/common.py +12 -4
  76. followthemoney/types/country.py +1 -0
  77. followthemoney/types/date.py +1 -0
  78. followthemoney/types/gender.py +1 -0
  79. followthemoney/types/iban.py +4 -1
  80. followthemoney/types/identifier.py +1 -0
  81. followthemoney/types/ip.py +1 -0
  82. followthemoney/types/language.py +1 -0
  83. followthemoney/types/phone.py +1 -0
  84. followthemoney/types/string.py +5 -2
  85. followthemoney/types/topic.py +4 -0
  86. followthemoney/types/url.py +1 -0
  87. {followthemoney-3.6.3.dist-info → followthemoney-3.7.0.dist-info}/METADATA +36 -40
  88. {followthemoney-3.6.3.dist-info → followthemoney-3.7.0.dist-info}/RECORD +93 -93
  89. {followthemoney-3.6.3.dist-info → followthemoney-3.7.0.dist-info}/WHEEL +1 -1
  90. {followthemoney-3.6.3.dist-info → followthemoney-3.7.0.dist-info}/entry_points.txt +0 -1
  91. {followthemoney-3.6.3.dist-info → followthemoney-3.7.0.dist-info}/LICENSE +0 -0
  92. {followthemoney-3.6.3.dist-info → followthemoney-3.7.0.dist-info}/namespace_packages.txt +0 -0
  93. {followthemoney-3.6.3.dist-info → followthemoney-3.7.0.dist-info}/top_level.txt +0 -0
@@ -19,6 +19,7 @@ class PropertyTypeToDict(TypedDict, total=False):
19
19
  label: str
20
20
  plural: str
21
21
  description: Optional[str]
22
+ max_length: int
22
23
  group: Optional[str]
23
24
  matchable: Optional[bool]
24
25
  pivot: Optional[bool]
@@ -57,7 +58,13 @@ class PropertyType(object):
57
58
  other entities that mention the same phone number, email address or name as the
58
59
  one currently seen by the user."""
59
60
 
60
- max_size: Optional[int] = None
61
+ max_length: int = 250
62
+ """The maximum length of a single value of this type. This is used to warn when
63
+ adding individual values that may be malformed or too long to be stored in
64
+ downstream databases with fixed column lengths. The unit is unicode codepoints
65
+ (not bytes), the output of Python len()."""
66
+
67
+ total_size: Optional[int] = None
61
68
  """Some types have overall size limitations in place in order to avoid generating
62
69
  entities that are very large (upstream ElasticSearch has a 100MB document limit).
63
70
  Once the total size of all properties of this type has exceed the given limit,
@@ -147,8 +154,8 @@ class PropertyType(object):
147
154
  ) -> float:
148
155
  """Compare two sets of values and select the highest-scored result."""
149
156
  results = []
150
- for l, r in product(ensure_list(left), ensure_list(right)):
151
- results.append(self.compare(l, r))
157
+ for le, ri in product(ensure_list(left), ensure_list(right)):
158
+ results.append(self.compare(le, ri))
152
159
  if not len(results):
153
160
  return 0.0
154
161
  return func(results)
@@ -165,7 +172,7 @@ class PropertyType(object):
165
172
 
166
173
  def pick(self, values: Sequence[str]) -> Optional[str]:
167
174
  """Pick the best value to show to the user."""
168
- raise NotImplemented
175
+ raise NotImplementedError
169
176
 
170
177
  def node_id(self, value: str) -> Optional[str]:
171
178
  """Return an ID suitable to identify this entity as a typed node in a
@@ -191,6 +198,7 @@ class PropertyType(object):
191
198
  "label": gettext(self.label),
192
199
  "plural": gettext(self.plural),
193
200
  "description": gettext(self.docs),
201
+ "max_length": self.max_length,
194
202
  }
195
203
  if self.group:
196
204
  data["group"] = self.group
@@ -21,6 +21,7 @@ class CountryType(EnumType):
21
21
  label = _("Country")
22
22
  plural = _("Countries")
23
23
  matchable = True
24
+ max_length = 16
24
25
 
25
26
  def _locale_names(self, locale: Locale) -> EnumValues:
26
27
  # extra territories that OCCRP is interested in.
@@ -26,6 +26,7 @@ class DateType(PropertyType):
26
26
  label = _("Date")
27
27
  plural = _("Dates")
28
28
  matchable = True
29
+ max_length = 32
29
30
 
30
31
  def validate(
31
32
  self, value: str, fuzzy: bool = False, format: Optional[str] = None
@@ -40,6 +40,7 @@ class GenderType(EnumType):
40
40
  label = _("Gender")
41
41
  plural = _("Genders")
42
42
  matchable = False
43
+ max_length = 16
43
44
 
44
45
  def _locale_names(self, locale: Locale) -> EnumValues:
45
46
  return {
@@ -24,8 +24,11 @@ class IbanType(PropertyType):
24
24
  plural = _("IBANs")
25
25
  matchable = True
26
26
  pivot = True
27
+ max_length = 64
27
28
 
28
- def validate(self, value: str, fuzzy: bool = False, format: Optional[str] = None) -> bool:
29
+ def validate(
30
+ self, value: str, fuzzy: bool = False, format: Optional[str] = None
31
+ ) -> bool:
29
32
  text = sanitize_text(value)
30
33
  if text is None:
31
34
  return False
@@ -26,6 +26,7 @@ class IdentifierType(PropertyType):
26
26
  plural = _("Identifiers")
27
27
  matchable = True
28
28
  pivot = True
29
+ max_length = 64
29
30
 
30
31
  def clean_text(
31
32
  self,
@@ -20,6 +20,7 @@ class IpType(PropertyType):
20
20
  plural = _("IP-Addresses")
21
21
  matchable = True
22
22
  pivot = True
23
+ max_length = 64
23
24
 
24
25
  def validate(
25
26
  self, value: str, fuzzy: bool = False, format: Optional[str] = None
@@ -22,6 +22,7 @@ class LanguageType(EnumType):
22
22
  label = _("Language")
23
23
  plural = _("Languages")
24
24
  matchable = False
25
+ max_length = 16
25
26
 
26
27
  # Language whitelist
27
28
  LANGUAGES = [
@@ -36,6 +36,7 @@ class PhoneType(PropertyType):
36
36
  plural = _("Phone numbers")
37
37
  matchable = True
38
38
  pivot = True
39
+ max_length = 64
39
40
 
40
41
  def _clean_countries(
41
42
  self, proxy: Optional["EntityProxy"]
@@ -10,6 +10,7 @@ class StringType(PropertyType):
10
10
  label = _("Label")
11
11
  plural = _("Labels")
12
12
  matchable = False
13
+ max_length = 1024
13
14
 
14
15
  def node_id(self, value: str) -> None:
15
16
  return None
@@ -23,7 +24,8 @@ class TextType(StringType):
23
24
  name = "text"
24
25
  label = _("Text")
25
26
  plural = _("Texts")
26
- max_size = 30 * MEGABYTE
27
+ total_size = 30 * MEGABYTE
28
+ max_length = 65000
27
29
 
28
30
 
29
31
  class HTMLType(StringType):
@@ -37,4 +39,5 @@ class HTMLType(StringType):
37
39
  name = "html"
38
40
  label = _("HTML")
39
41
  plural = _("HTMLs")
40
- max_size = 30 * MEGABYTE
42
+ total_size = 30 * MEGABYTE
43
+ max_length = 65000
@@ -21,6 +21,7 @@ class TopicType(EnumType):
21
21
  label = _("Topic")
22
22
  plural = _("Topics")
23
23
  matchable = False
24
+ max_length = 64
24
25
 
25
26
  _TOPICS = {
26
27
  "crime": _("Crime"),
@@ -35,6 +36,7 @@ class TopicType(EnumType):
35
36
  "crime.traffick": _("Trafficking"),
36
37
  "crime.traffick.drug": _("Drug trafficking"),
37
38
  "crime.traffick.human": _("Human trafficking"),
39
+ "wanted": _("Wanted"),
38
40
  "corp.offshore": _("Offshore"),
39
41
  "corp.shell": _("Shell company"),
40
42
  "corp.public": _("Public listed company"),
@@ -70,6 +72,7 @@ class TopicType(EnumType):
70
72
  "role.oligarch": _("Oligarch"),
71
73
  "role.journo": _("Journalist"),
72
74
  "role.act": _("Activist"),
75
+ "role.lobby": _("Lobbyist"),
73
76
  "pol.party": _("Political party"),
74
77
  "pol.union": _("Union"),
75
78
  "rel": _("Religion"),
@@ -79,6 +82,7 @@ class TopicType(EnumType):
79
82
  "sanction.linked": _("Sanction-linked entity"),
80
83
  "sanction.counter": _("Counter-sanctioned entity"),
81
84
  "export.control": _("Export controlled"),
85
+ "export.risk": _("Trade risk"),
82
86
  "debarment": _("Debarred entity"),
83
87
  "poi": _("Person of interest"),
84
88
  }
@@ -23,6 +23,7 @@ class UrlType(PropertyType):
23
23
  plural = _("URLs")
24
24
  matchable = True
25
25
  pivot = True
26
+ max_length = 4096
26
27
 
27
28
  def clean_text(
28
29
  self,
@@ -1,56 +1,54 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: followthemoney
3
- Version: 3.6.3
4
- Summary: UNKNOWN
3
+ Version: 3.7.0
5
4
  Home-page: https://followthemoney.tech/
6
5
  Author: Organized Crime and Corruption Reporting Project
7
6
  Author-email: data@occrp.org
8
7
  License: MIT
9
- Platform: UNKNOWN
10
8
  Classifier: Intended Audience :: Developers
11
9
  Classifier: Operating System :: OS Independent
12
10
  Classifier: Programming Language :: Python
13
11
  Classifier: Programming Language :: Python :: 3.9
14
12
  Description-Content-Type: text/markdown
15
13
  License-File: LICENSE
16
- Requires-Dist: babel <3.0.0,>=2.14.0
17
- Requires-Dist: pyyaml <7.0.0,>=5.0.0
14
+ Requires-Dist: babel<3.0.0,>=2.14.0
15
+ Requires-Dist: pyyaml<7.0.0,>=5.0.0
18
16
  Requires-Dist: types-PyYAML
19
17
  Requires-Dist: sqlalchemy2-stubs
20
- Requires-Dist: banal <1.1.0,>=1.0.6
21
- Requires-Dist: rigour <1.0.0,>=0.5.1
22
- Requires-Dist: click <9.0.0,>=8.0
23
- Requires-Dist: stringcase <2.0.0,>=1.2.0
24
- Requires-Dist: requests <3.0.0,>=2.21.0
25
- Requires-Dist: normality <3.0.0,>=2.4.0
26
- Requires-Dist: sqlalchemy <3.0.0,>=1.4.49
27
- Requires-Dist: countrynames <2.0.0,>=1.13.0
28
- Requires-Dist: prefixdate <1.0.0,>=0.4.0
29
- Requires-Dist: fingerprints <2.0.0,>=1.0.1
30
- Requires-Dist: phonenumbers <9.0.0,>=8.12.22
31
- Requires-Dist: python-stdnum <2.0.0,>=1.16
32
- Requires-Dist: pytz >=2021.1
33
- Requires-Dist: rdflib <7.1.0,>=6.2.0
34
- Requires-Dist: networkx <3.4,>=2.5
35
- Requires-Dist: openpyxl <4.0.0,>=3.0.5
36
- Requires-Dist: orjson <4.0,>=3.7
18
+ Requires-Dist: banal<1.1.0,>=1.0.6
19
+ Requires-Dist: rigour<1.0.0,>=0.5.1
20
+ Requires-Dist: click<9.0.0,>=8.0
21
+ Requires-Dist: stringcase<2.0.0,>=1.2.0
22
+ Requires-Dist: requests<3.0.0,>=2.21.0
23
+ Requires-Dist: normality<3.0.0,>=2.4.0
24
+ Requires-Dist: sqlalchemy<3.0.0,>=1.4.49
25
+ Requires-Dist: countrynames<2.0.0,>=1.13.0
26
+ Requires-Dist: prefixdate<1.0.0,>=0.4.0
27
+ Requires-Dist: fingerprints<2.0.0,>=1.0.1
28
+ Requires-Dist: phonenumbers<9.0.0,>=8.12.22
29
+ Requires-Dist: python-stdnum<2.0.0,>=1.16
30
+ Requires-Dist: pytz>=2021.1
31
+ Requires-Dist: rdflib<7.1.0,>=6.2.0
32
+ Requires-Dist: networkx<3.4,>=2.5
33
+ Requires-Dist: openpyxl<4.0.0,>=3.0.5
34
+ Requires-Dist: orjson<4.0,>=3.7
37
35
  Provides-Extra: dev
38
- Requires-Dist: pip >=10.0.0 ; extra == 'dev'
39
- Requires-Dist: bump2version ; extra == 'dev'
40
- Requires-Dist: wheel >=0.29.0 ; extra == 'dev'
41
- Requires-Dist: twine ; extra == 'dev'
42
- Requires-Dist: mypy ; extra == 'dev'
43
- Requires-Dist: pytest ; extra == 'dev'
44
- Requires-Dist: pytest-cov ; extra == 'dev'
45
- Requires-Dist: types-PyYAML ; extra == 'dev'
46
- Requires-Dist: types-requests ; extra == 'dev'
47
- Requires-Dist: types-setuptools ; extra == 'dev'
48
- Requires-Dist: types-openpyxl ; extra == 'dev'
49
- Requires-Dist: flake8 >=2.6.0 ; extra == 'dev'
50
- Requires-Dist: transifex-client ; extra == 'dev'
51
- Requires-Dist: responses >=0.9.0 ; extra == 'dev'
52
- Requires-Dist: coverage >=4.1 ; extra == 'dev'
53
- Requires-Dist: recommonmark >=0.4.0 ; extra == 'dev'
36
+ Requires-Dist: pip>=10.0.0; extra == "dev"
37
+ Requires-Dist: bump2version; extra == "dev"
38
+ Requires-Dist: wheel>=0.29.0; extra == "dev"
39
+ Requires-Dist: twine; extra == "dev"
40
+ Requires-Dist: mypy; extra == "dev"
41
+ Requires-Dist: pytest; extra == "dev"
42
+ Requires-Dist: pytest-cov; extra == "dev"
43
+ Requires-Dist: types-PyYAML; extra == "dev"
44
+ Requires-Dist: types-requests; extra == "dev"
45
+ Requires-Dist: types-setuptools; extra == "dev"
46
+ Requires-Dist: types-openpyxl; extra == "dev"
47
+ Requires-Dist: flake8>=2.6.0; extra == "dev"
48
+ Requires-Dist: transifex-client; extra == "dev"
49
+ Requires-Dist: responses>=0.9.0; extra == "dev"
50
+ Requires-Dist: coverage>=4.1; extra == "dev"
51
+ Requires-Dist: recommonmark>=0.4.0; extra == "dev"
54
52
 
55
53
  # Follow the Money
56
54
 
@@ -127,5 +125,3 @@ or `major` arguments.
127
125
  When the schema is updated, please update the docs, ideally including the
128
126
  diagrams. For the RDF namespace and JavaScript version of the model,
129
127
  run `make generate`.
130
-
131
-
@@ -1,4 +1,4 @@
1
- followthemoney/__init__.py,sha256=Ru-HFx_mathtuLCnlY1uDlSe3iwytuOu6Lx4OYkzdsw,360
1
+ followthemoney/__init__.py,sha256=Hnq1LeCowKt0gvygwvBnqun2pcEb7tSjE5UmGevjQis,360
2
2
  followthemoney/compare.py,sha256=1GFkCfTzA8QR0CH90kvySR8hvl9hQRUerW5Xw2Ivmpg,5134
3
3
  followthemoney/exc.py,sha256=ynZs_UnTVxHR-iBfat_CpVLraYzVX5yLtVf5Ti14hl4,734
4
4
  followthemoney/graph.py,sha256=VNDKrUBkz_-DmKsr5v-Xm8VfxzabnTwkU_MFk92_TjA,10848
@@ -9,7 +9,7 @@ followthemoney/namespace.py,sha256=qYplxKn5OO3zDMf3NItKwTwDsJOnski5JbeyhssqhR8,4
9
9
  followthemoney/offshore.py,sha256=Pf0tx-7GyhIZRueshDRqPNlxkHfGstmW5yNDID5Mnws,1060
10
10
  followthemoney/ontology.py,sha256=7PEoUKISNpkRvVhuLeE3IE9ZiNtdR8mn9_kzZ9yF9l0,2986
11
11
  followthemoney/property.py,sha256=EXU4kH6rOD9ubmuDXE-3LGc6gwQspW9_NjSacDb4xYA,7494
12
- followthemoney/proxy.py,sha256=YvnAUWtu_BCsK36N6xTcoI0Ffjn-gIyj-eDVhtsjoLA,20033
12
+ followthemoney/proxy.py,sha256=M7RIPF0k-P3v7GYKYhRVVaO1cnUf5FArJepE-2c0KMQ,20033
13
13
  followthemoney/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  followthemoney/rdf.py,sha256=_BzWiBc61UYjiyadvGKya4P4JlJfvZtNrn8SP2hC2JM,328
15
15
  followthemoney/schema.py,sha256=Tk61vRmWaawW-1HOmu-hbYZtkD8it0fIvNtSRxBEQxA,16774
@@ -30,126 +30,126 @@ followthemoney/export/neo4j.py,sha256=JCLb1eW5FFIJXqmnpNMRzRs1KYuYkCtHZp7KJcu-JN
30
30
  followthemoney/export/rdf.py,sha256=E6RiW7oIsJdaBaLAVm6o-MTokARZtqONPuayILqTqo0,786
31
31
  followthemoney/mapping/__init__.py,sha256=iwNqzzvrzJNbNDlOCaDLlBTUrNTlnYHIB5cvo_-9oN4,82
32
32
  followthemoney/mapping/csv.py,sha256=Tvc6VSh7-ca63LEE4G0yqOCeGMETkuKzUjIkVn4_d7Q,3185
33
- followthemoney/mapping/entity.py,sha256=1Mj6qKkFN10IdElRmULZoqTWIAJ9OSk9wpPpmWBlvA0,5697
33
+ followthemoney/mapping/entity.py,sha256=-x_VBHiVthIrZZ-PVKD3oBAq6LYcsyeYW-9TFv80k7M,5905
34
34
  followthemoney/mapping/property.py,sha256=41V16HJh6da7oKdSJWyRcyMkx2XFd6iDm9-4PH7Wihw,5036
35
35
  followthemoney/mapping/query.py,sha256=8M6bOlEX2p_bbVwEwTu_1slEtU0cfRJB7ajZp-F07CE,2622
36
36
  followthemoney/mapping/source.py,sha256=sri-XpSjeHZbQtqNcz1eJYvwVSBNqGO5JwhWswiEx3c,649
37
37
  followthemoney/mapping/sql.py,sha256=m3Ho8B2pFsg6q2zj-y55h0O3x9eb6wzjlPBQyZ6DVcI,4752
38
38
  followthemoney/schema/Address.yaml,sha256=xCKyak0qdJC0W5jfROUq6pEMCcSupNSB6GAxx5QfN5E,1689
39
- followthemoney/schema/Airplane.yaml,sha256=uijTw6-1exomw1clZoDcRvj34mUBmDxNtd6K7nX3XQ4,573
39
+ followthemoney/schema/Airplane.yaml,sha256=NUXQk_Yg9RWyhdeI3s00k9GWHBV2S9-QvIhM22LedBE,579
40
40
  followthemoney/schema/Analyzable.yaml,sha256=WvyhjYqI7QzBt3qPDgO7MDasJH1qQtgQMToHkV_xtlU,1237
41
- followthemoney/schema/Article.yaml,sha256=WI8517oZINSLDmgwJiArWXTjZiK6hY8X3bMlMdwaOn8,260
42
- followthemoney/schema/Assessment.yaml,sha256=UGxJIIe8xf2ddGWaj0l-ui7KwWwbgRPCEWC3ZFAPrhU,624
41
+ followthemoney/schema/Article.yaml,sha256=jTH63eP2aZ87W_6m8jS4R_btcrI46tYGeCEqKNLTwLU,266
42
+ followthemoney/schema/Assessment.yaml,sha256=-RH_aEz4xGejucRcwl45KVAnzSLeQ7zwJWguuKST3m0,630
43
43
  followthemoney/schema/Asset.yaml,sha256=xQhHJJtnGLfiOaUncqGv4JR3Yn7l46yAg7p0hKFAFVE,260
44
- followthemoney/schema/Associate.yaml,sha256=3u3t5bpDBSQ7p5jyrHTEM0GbhBaG1ar9UKN4uquvq9g,887
45
- followthemoney/schema/Audio.yaml,sha256=qEoWTw_WrY7EjkztMdRQ-DRA1DZRCreib2HkOlCqKn8,446
46
- followthemoney/schema/BankAccount.yaml,sha256=PwQWqEox-MrhBNBRiXLr-P_tJ1qyG3cHtUsUH0QbBZo,1387
44
+ followthemoney/schema/Associate.yaml,sha256=ijTHd6GDlK4lMtijdkTzERR9DODtqKk0XoZPlDEsUnI,901
45
+ followthemoney/schema/Audio.yaml,sha256=Eb1rZGUEOX7XDAj_1YIN28NCBzMvkopQBNwgHt_kS18,452
46
+ followthemoney/schema/BankAccount.yaml,sha256=YRfuqgB1W82sgBNGxJ_fj0X9fVa6vTnxJhhNqop7a6Y,1392
47
47
  followthemoney/schema/Call.yaml,sha256=kbVCnVxucBrEplxehXHThLSJAJjy_GhWan-IeZZjr0M,980
48
48
  followthemoney/schema/CallForTenders.yaml,sha256=2IWonTzfSbrkynMoEWqv5fekUeFM_xDKpKIbRe1XDbo,3227
49
49
  followthemoney/schema/Company.yaml,sha256=7dWBPetd7xOJtu8AlhKsjxBYzYBK5E3LssYguSf0glA,3321
50
- followthemoney/schema/Contract.yaml,sha256=1qIt5kq5L52vXT3BTbKg-feWG8H1rAJjqT7GyA9HkJA,1580
51
- followthemoney/schema/ContractAward.yaml,sha256=S1WdReAH73e6EWgJh0kEL0imjjxtFVTZvSBmCgotJaQ,1681
52
- followthemoney/schema/CourtCase.yaml,sha256=eMFSM3u2Zk9iii8TbxnGFZnd0_VcvaaixgQoM1_eV-I,593
53
- followthemoney/schema/CourtCaseParty.yaml,sha256=tKmK0wAkg9oZ5oX2SQSANBZ6ZAEN2IRA3OJObVgfkk0,574
50
+ followthemoney/schema/Contract.yaml,sha256=-wVVUBu_KvmiWEjXrw1zgY2m9AAkiHCDd-hxFCUzj6k,1586
51
+ followthemoney/schema/ContractAward.yaml,sha256=b2spaZHYCaP1yR1RCsrI7mUjk-fAF7BUE3dc8Vl3cUQ,1689
52
+ followthemoney/schema/CourtCase.yaml,sha256=lcovnY0Ne_xcggvkqfCW_RHvsRKo8kFTCPCyovAXRtI,599
53
+ followthemoney/schema/CourtCaseParty.yaml,sha256=MpodN2251V_MYD2dBOHZ_qD7Uv6cLg8Gd_b-I8HZjPI,588
54
54
  followthemoney/schema/CryptoWallet.yaml,sha256=n5EDKc7IhITdXX3gJJEdCcLJjdcpB0owCc8rTy9ryfQ,1047
55
- followthemoney/schema/Debt.yaml,sha256=TIFYEqcWTiNaqxOM6cpZIvc1316iMfw36ESCquUnZww,649
56
- followthemoney/schema/Directorship.yaml,sha256=QKepNfEXrlfPXPW6cji3qTi9weq9i-o4DYH5dJU-CbA,759
55
+ followthemoney/schema/Debt.yaml,sha256=gSGl1xKPaPWAYYEcX7MxezVn3Gu-CYBIzxGzMd9UTm4,657
56
+ followthemoney/schema/Directorship.yaml,sha256=BMx2AQTLy5ta_lWPnYKj7LFjZWTwtu1hgWncISdKf28,773
57
57
  followthemoney/schema/Document.yaml,sha256=MA-vZrK_Imd2HuIhJ7c_BH9Cpecv-DewXJhfjECXjuw,2927
58
- followthemoney/schema/Documentation.yml,sha256=VH5jmUs1UjRFykTffrf7rJbFAhr5X7yHux3J3c8SRgU,747
58
+ followthemoney/schema/Documentation.yml,sha256=AZ1kHiKcvkyv3SINLwAwUyoWMVrF8O0mSJhMN4jNNaE,760
59
59
  followthemoney/schema/EconomicActivity.yaml,sha256=hm2x-p-49fGOZcy6xVtiplpJs4XsQVFYLgb8D41az0k,4049
60
60
  followthemoney/schema/Email.yaml,sha256=IqEHgqUsapbTnCBO7OuV-GvoxLH8LIQscZOyAiateqw,1549
61
- followthemoney/schema/Employment.yaml,sha256=NjTFdqyyRus4Tcas5Py4I4Q-aMjrNkdU20UlImyfz9c,660
61
+ followthemoney/schema/Employment.yaml,sha256=rQXGva4uOKzQbkow4AM4Iez5t7kzm0HTqhhWzvgosl4,674
62
62
  followthemoney/schema/Event.yaml,sha256=NclU-s8puxBk-KlJuz3EF1dqM99d5DCwD_xFh-TXTOU,751
63
- followthemoney/schema/Family.yaml,sha256=SLyf1FlPSFjv1YJg2IpdA_ioqsCJIa3IyuGmK82qzJs,969
64
- followthemoney/schema/Folder.yaml,sha256=7A0pdKokh-hrzzAzdmvxpVlI7ANBfrONexviruqmZjo,174
65
- followthemoney/schema/HyperText.yaml,sha256=lVJnu-VRzEFhP2vmQMSgBfb8DXNUWPEX21nkJQyzoiQ,313
66
- followthemoney/schema/Identification.yaml,sha256=XVvZXTZZUg8qDzTga8dgF3mJqK9eSDgwOBiYLmD-Y6c,827
67
- followthemoney/schema/Image.yaml,sha256=MMrK4wQJBuN07STwTmsPjXXpYZB7fPt_hQtweSBM4m0,388
68
- followthemoney/schema/Interest.yaml,sha256=xPYobeuxFMFXUWlQuPvDjAsr3QQDPteRz68_rq7Dvf0,276
63
+ followthemoney/schema/Family.yaml,sha256=cgZ7ZM_2p_dzUGrLVj8QL86gpeDM-AoK8AbyHjh5b6E,983
64
+ followthemoney/schema/Folder.yaml,sha256=W12iJHTYua7bF7oTpgiDbarEkfa0Q2gSmfLdl537HQY,180
65
+ followthemoney/schema/HyperText.yaml,sha256=Wg5dWeLrVjbXiI-ao69tosJ7rI0DvNU8cCo8AhUXwh4,319
66
+ followthemoney/schema/Identification.yaml,sha256=hFS4Ukbgj7zgLCGldYkefUZyuMS0lWw1X9Q5l0QyiJ8,833
67
+ followthemoney/schema/Image.yaml,sha256=wuznboWECGiV96_GQiXq1-oKNoxO8zKisR4xyusnEn8,394
68
+ followthemoney/schema/Interest.yaml,sha256=VUrehmsN1WgtS1oAa5jn_JGtSkZGGYLGNahp-R5JhOQ,282
69
69
  followthemoney/schema/Interval.yaml,sha256=WtmSoBngajhpNLtDZ8Ocpdd0I0tLG-7A4afuHXxssow,1919
70
- followthemoney/schema/LegalEntity.yaml,sha256=Z970rZPUNifemP6zeAFaGursqIcz02V1a7JT3zPzG0E,3781
70
+ followthemoney/schema/LegalEntity.yaml,sha256=n47_jL3HBD11-4HNT47W7JC6-3B65YaBxp3cusPrVco,3787
71
71
  followthemoney/schema/License.yaml,sha256=9Ye5vGEBhi7ttGqf0DdAGCJCN3zz5HtGu52dCcmCsQk,452
72
- followthemoney/schema/Membership.yaml,sha256=TzU1A-hPVXRJcNkC78N-EPhZ_qUgO14IZ8lB9WQ63AM,696
72
+ followthemoney/schema/Membership.yaml,sha256=IPmaOX4Ai2r4sGcA5ig2WmLvWHb38akdxp4smEdDWOE,710
73
73
  followthemoney/schema/Mention.yaml,sha256=nBeulR_Jm4x75aJ7yNF0TAVhHJqXQaEzOutLIn_YU-4,1086
74
74
  followthemoney/schema/Message.yaml,sha256=89k3kdN2w_Vfz1UjbUUPojZtMsAvmZGiDSkHeSNMl8w,1484
75
75
  followthemoney/schema/Note.yaml,sha256=NohwtFupxIssZuEgQowiQWqKit4uQ-OatAu3yp9eJj4,411
76
- followthemoney/schema/Occupancy.yaml,sha256=KpsEsL8AHx6bsnECCCOC5Xrz2O4Dx6Hgx0p2zv8x-hk,767
77
- followthemoney/schema/Organization.yaml,sha256=Lx2kpyMKLBIiq82VhM0yQyfMvLCl_ZfnRJ49NGxSWdo,557
78
- followthemoney/schema/Ownership.yaml,sha256=YCLSRbs9eeH6p8G2iHzbJDxc7aCioxjHybi--4PCHXQ,983
79
- followthemoney/schema/Package.yaml,sha256=uDEM3ABGA27uQLqgronS0dx7yteLiXHPz0XGvT1m_3c,304
76
+ followthemoney/schema/Occupancy.yaml,sha256=-alsy15cz3RXC_2xYN6rXxwxSOW_hazCNyIvmp7Jawo,773
77
+ followthemoney/schema/Organization.yaml,sha256=AxASyXY18xGXO9FmAwIrARoRy8OxxRPUXlbUqch7Vi4,562
78
+ followthemoney/schema/Ownership.yaml,sha256=naWvWoqJph463fwk6SdC14RAVF03l98bWwpscrW_vJg,997
79
+ followthemoney/schema/Package.yaml,sha256=gPr-P3lcg7OOAav_KVa8baK4yK57JwfcXwxXheD96UQ,310
80
80
  followthemoney/schema/Page.yaml,sha256=sQt_CnVyjDVGVECLQoGYZH4hxpjdPhxVRz4XJW-_1OU,1107
81
- followthemoney/schema/Pages.yaml,sha256=deUgHFxgC_lmfRon9K6JlCyfJ-5WdoTmLiU_lr393u0,444
82
- followthemoney/schema/Passport.yaml,sha256=VkGMSJ2rG3_trME4wci45qmk1f_NUHYOn2YoLzrdre0,730
81
+ followthemoney/schema/Pages.yaml,sha256=KKPGZ06Ehp5mWIGnYfHUBN9jT03bk8nakw0pB5bA_7E,450
82
+ followthemoney/schema/Passport.yaml,sha256=wr7cP2w12pxNF0JP7V00YH2Lz9NAEvuB_FyrQvRQDTA,736
83
83
  followthemoney/schema/Payment.yaml,sha256=WRBJuj9ljsxLBs-0g9Z9UD87uR1RTtuUiYnWOnKr1qA,1757
84
- followthemoney/schema/Person.yaml,sha256=8-ynlkKEjDqKRVrYUAHZ31DgbDKrRL6HzP0mVpb4V-8,2033
85
- followthemoney/schema/PlainText.yaml,sha256=AYShjP5T_YUQypeAGJT7qdXbhBT_KahBKnwoypAqcjQ,272
86
- followthemoney/schema/Position.yaml,sha256=k5xdmowJfxR-A93aWMqZ1Z3EuEHsTwvXefKyy0K9DtU,1303
87
- followthemoney/schema/Post.yaml,sha256=NRn3NZpcDUmFW-uUQP8YAYOMYpWirD7-wrljETNh-lA,1029
88
- followthemoney/schema/Project.yaml,sha256=VQ9E-QYL6xDMf1z5Flt5kMg2N8i4rah9CwIwjw0IoLY,461
89
- followthemoney/schema/ProjectParticipant.yaml,sha256=_NCHMcs_zlUiZcMc_57g8XsFNggMuolDDLZauejqbl4,713
90
- followthemoney/schema/PublicBody.yaml,sha256=QqL_awWLLabrgLo4gUqY99BCmeqz_h16UnrSB5l5PKs,295
91
- followthemoney/schema/RealEstate.yaml,sha256=R_KiyvfKRYgmkZUfmo8ANQUJNi-zIfdc34gQhTgn_3A,1357
92
- followthemoney/schema/Representation.yaml,sha256=gSLx9nc63PgJ8UjR8MpIwzwBm-dvRTgW5vnLPcm4H_0,778
93
- followthemoney/schema/Sanction.yaml,sha256=3q4Xo8xHU03hjWTDypJe_fVIboSa6D8KOurjxzNGSao,931
94
- followthemoney/schema/Security.yaml,sha256=Ix8yCF5sm6JQzitZR7bKb5_P48RNaW1PAF6FDot-ks8,1120
84
+ followthemoney/schema/Person.yaml,sha256=1rQVOCla7kJmexPdh2xIThQCIHaRhib77nJ0XinwVog,2266
85
+ followthemoney/schema/PlainText.yaml,sha256=hfnVi-HmQeDbqDquSpkPJax9hNm86ioXGr4hzNzyPFE,278
86
+ followthemoney/schema/Position.yaml,sha256=ZpxjWOLxwva_on32r9WD5ys0Ty3YxCju41mg9HG-pe0,1308
87
+ followthemoney/schema/Post.yaml,sha256=cbxy8cWXHFKSvr1ylwDilRURhcsyd9-H7fn_Lb4lsFE,1034
88
+ followthemoney/schema/Project.yaml,sha256=2svtyGJopS0UrqPiuYGpBzj30V7k3LRDX4N1U56y4yY,462
89
+ followthemoney/schema/ProjectParticipant.yaml,sha256=xNehEu90uqUfboNouezhZQ8ZQLxzWq1yyNO4kua-Lyc,727
90
+ followthemoney/schema/PublicBody.yaml,sha256=BNfLBqH1OapoEninAjWmqZx_n-G5QUnzzydW7300TiY,301
91
+ followthemoney/schema/RealEstate.yaml,sha256=NWFHXqEHskYQN-kvQESZpu74nztShqoYSZEjZAr-DHM,1363
92
+ followthemoney/schema/Representation.yaml,sha256=sCvFnUDQaElq2cqSB0rILcMYb2gaMZqlzxlHxyX9IGg,792
93
+ followthemoney/schema/Sanction.yaml,sha256=dic-leERQ1ix3MMRqy-_01wQH-7FR1uK5TUe9vyM1hQ,937
94
+ followthemoney/schema/Security.yaml,sha256=dTEeGFxCQu6W17Yh-p0ZeRccj9tnosAnVwFrMDPW9T4,1126
95
95
  followthemoney/schema/Similar.yaml,sha256=gD8rZEaPQWzU-rEfsKdn62uEucF3KxYBcPMoSdnxvME,817
96
- followthemoney/schema/Succession.yaml,sha256=cwz1CwPl8btfUEpmr1YxF6T2WQQuLUboaW9EVEuW2Ng,735
97
- followthemoney/schema/Table.yaml,sha256=VcgOA2wcczHhRCwObIO39yStoMuoPZYE0VlXrAH9xCQ,635
98
- followthemoney/schema/TaxRoll.yaml,sha256=5DXK_rkJimpy2ZLjxx2RntYiGPXiK8Iiphr6cJjUiag,740
96
+ followthemoney/schema/Succession.yaml,sha256=RMJQqZ4Fv88N1RvWTAgjYg9BB5cELSj5CCAjM681Fpg,749
97
+ followthemoney/schema/Table.yaml,sha256=GcsIAgSO9t2tvObA9zU2HhxlSqTe9CePmUnagu1Z0vI,641
98
+ followthemoney/schema/TaxRoll.yaml,sha256=ugMzaaS7uyq2OLD50eGLcfvd6Cg0cSt65-T9GVqpRSA,746
99
99
  followthemoney/schema/Thing.yaml,sha256=72gInrI4VEWxUcld7w4by1QPI46F-NR8QZJ09JyUcnc,2438
100
100
  followthemoney/schema/Trip.yaml,sha256=nLQD_ApmVJ8D56Czl7K700hhNZjzFV9FOQ3NBSQDLiM,771
101
- followthemoney/schema/UnknownLink.yaml,sha256=a7BUbNbrsGylewJGg2fcSody_Kmt4eEw_IKIvgHIt8c,668
101
+ followthemoney/schema/UnknownLink.yaml,sha256=lneS_HZNgeLyJxwzWnLx0ZoyY3MXt99I_K2X_o9z5g8,682
102
102
  followthemoney/schema/UserAccount.yaml,sha256=V1JWwwcggCO4G9ByJY9zlQ0uOVp8HQK2mRXwqaGJnBM,763
103
103
  followthemoney/schema/Value.yaml,sha256=cNHTCtakMTXDW0Qpb6ArZodi9rMJ-Ebvp1WsOIRRzw4,310
104
- followthemoney/schema/Vehicle.yaml,sha256=Wee_M05SxeJiiTx0DPgBXdlaOL_EHyQqKLvSEw6XzGU,984
105
- followthemoney/schema/Vessel.yaml,sha256=-Z9SN-bSkgc6L2Cu_h5uiVgAfZA_kngyfrhikg4KESg,993
106
- followthemoney/schema/Video.yaml,sha256=QuywSWOiPrck0shlpQgyqiljp0uvpUVgXXKIGtgq0Fc,321
107
- followthemoney/schema/Workbook.yaml,sha256=LR0ysJS1H-MhiG_bFgoq1mluR1y8jWzI8vrgc1wSlvY,348
108
- followthemoney/translations/messages.pot,sha256=AOPyoLOz9U3PP9pZWs9SaTClixfHJa7fwNwfhSStVRk,105130
109
- followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo,sha256=VR023uBYRf2KdqJxGI7qRv3CXrhDNRfR46RFsqG5m4A,38795
110
- followthemoney/translations/ar/LC_MESSAGES/followthemoney.po,sha256=lvVYA6huDir32rCqS-qZzGBvUE4KORgpy4yaThzNIRI,121331
111
- followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo,sha256=chlTEZtj0cPL2SOJDUrvGJbaDWwEmdBNxky0YJo3-ao,10751
112
- followthemoney/translations/bs/LC_MESSAGES/followthemoney.po,sha256=zC-RStWVe8ya7OhrKk5a4fE361YShad86PiPND6Eims,93147
113
- followthemoney/translations/de/LC_MESSAGES/followthemoney.mo,sha256=o5b0AewcqNnTfoeOr5Qf8VJagk-cijfPmJcn1njbURo,36070
114
- followthemoney/translations/de/LC_MESSAGES/followthemoney.po,sha256=zXWukC_1GpN9MuRGVGTkROmVB7j1dP2ipE4VLeHUJr8,115533
115
- followthemoney/translations/es/LC_MESSAGES/followthemoney.mo,sha256=owztvF4QmHjCMLPHRWAHeUzlR4YxkSClGbxVwa8gwfc,32142
116
- followthemoney/translations/es/LC_MESSAGES/followthemoney.po,sha256=beb9gAxu0adsbK8-mrlmAH_tD22oPxW6IQCOc8vmdP0,115183
117
- followthemoney/translations/fr/followthemoney.po,sha256=76foJ6yGsprQ0vx1JpygrOzBpbDXiJeZ_eZu4A5RqPo,106802
118
- followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo,sha256=PKGqnSe8mrSMote2zsRdpH3kFnetnRakSkO0q_ytmdI,42517
119
- followthemoney/translations/fr/LC_MESSAGES/followthemoney.po,sha256=ZI_e2-HyzTvDw5DO7Ccvy6utBtJPYfiYgx1pV3vgrvg,119965
120
- followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo,sha256=YQxH06qL1pFNIVe9v7ueje72bfUSwMzxrKxrcyNGGSY,498
121
- followthemoney/translations/nb/LC_MESSAGES/followthemoney.po,sha256=DlCE1XoLwe5JRjvAG1yNlkU_fjp8WbldDkHKVkNBX9o,89796
122
- followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo,sha256=OK1ux67fjQcVXox2DnGBBNyX-UcFiqjz9sbrbrmhhCc,486
123
- followthemoney/translations/nl/LC_MESSAGES/followthemoney.po,sha256=FzgRadJszAxRDJXuSc7uFeotHZMx8tcbT1VLM5eS2p4,90876
124
- followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo,sha256=wes82jLA_q1f8II5Wk3h0TtBp06PeXRhVwmS1oSIaKI,505
125
- followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po,sha256=sSj8Mfu8Oq0m-RF_quETKl4f5zMYtJOYGof4-qff8bE,89847
126
- followthemoney/translations/ru/followthemoney.po,sha256=SgrP3BfjgAp8e4Y9htH7Il2tqGuzy8YXoAqzyQl12Ko,130621
127
- followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo,sha256=K30zowxjvE3UzoO1eXG8qTTL5XeSPkdwCMTmVDXDG68,64182
128
- followthemoney/translations/ru/LC_MESSAGES/followthemoney.po,sha256=Gva5A2VXKfFboAtQc313CJ1SGNmjhsLZiQCwf-1ZVt8,139453
129
- followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo,sha256=3h8kg6ryzuV2xmcG6_I0HtS1atddTmIvkeuU3bJcH14,487
130
- followthemoney/translations/tr/LC_MESSAGES/followthemoney.po,sha256=2yqoZ4vXTpxcSEPwSlF29cXpo3ou4CgaOhIcaalswvA,89829
104
+ followthemoney/schema/Vehicle.yaml,sha256=WyjfHL7XxEQQ1h0IyOBYKAZ40BEghQaM7_mkFnWyVBg,990
105
+ followthemoney/schema/Vessel.yaml,sha256=dOfWw9HC00xhdGJYSCBg3zr9rJQl6_hvkWM916qGgMw,999
106
+ followthemoney/schema/Video.yaml,sha256=LY3DYMWTHXiAhL0hxBCNCz50cp2sPbUlEhhig5Fbjos,327
107
+ followthemoney/schema/Workbook.yaml,sha256=iikWPElz4klA7SkWH7eae6xqhbkMCIP_3zdeXzFEMU0,354
108
+ followthemoney/translations/messages.pot,sha256=P3zcZ-gJhBi8Db7XjaSijhvFhZAInhpcwsA1Vlwjuzg,106899
109
+ followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo,sha256=P3-UT2wsX3g9pSLfw4RepVcICfTajZh_7sHbnUNj6V0,38795
110
+ followthemoney/translations/ar/LC_MESSAGES/followthemoney.po,sha256=DuIfvR5v0sPGwFbeg3y6_jCbeglvHWXQ2LDH6prfwLc,121326
111
+ followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo,sha256=zbGFbRF4jdnRVG0mEGGBPlU2oUELXivONpCz9F0XUuI,10751
112
+ followthemoney/translations/bs/LC_MESSAGES/followthemoney.po,sha256=cQdXsSU0gDtH-cdCuyhHDotRjDCz_xrEOZBP62JocXc,93144
113
+ followthemoney/translations/de/LC_MESSAGES/followthemoney.mo,sha256=lMJ6zqsbV91RzxjTHItj7s5TbGLr9cRpKoyVR1JxD8M,36069
114
+ followthemoney/translations/de/LC_MESSAGES/followthemoney.po,sha256=pB9sZkXx-eS5-WVhGWme03HOiP0XEIluijRHHJlqr_c,115528
115
+ followthemoney/translations/es/LC_MESSAGES/followthemoney.mo,sha256=PsrAassB_zMDnostOg6UBBgfVAQUiQE6OLKuM-M1rts,32142
116
+ followthemoney/translations/es/LC_MESSAGES/followthemoney.po,sha256=AyH6mEivN3tEemqVY6CVrcoVnu2dMjcN1NzuR32Qzz8,115178
117
+ followthemoney/translations/fr/followthemoney.po,sha256=uLWYl4ibZHfQObR_LWvXOq7SvdYC_VaAaisPUzZQDTY,106799
118
+ followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo,sha256=iBf2_6V3MA46-4MIVG5fDdXMGTNNZzFq1A8ciUo65os,42515
119
+ followthemoney/translations/fr/LC_MESSAGES/followthemoney.po,sha256=NBH5chbuqUBqxYZgMnDo2RtQz7UuMGMeHLeFwrEflR8,119960
120
+ followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo,sha256=Gjkr4fPJEkeHRmrDonNt2EtkUjqu5yeOvm5RVn9wUI4,498
121
+ followthemoney/translations/nb/LC_MESSAGES/followthemoney.po,sha256=Tvm7-UzSUGqCcY1wK7rbVP3JFKW-wxCxU1gDJw_9_XQ,89793
122
+ followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo,sha256=PQInglqJjiaL7HJlxddXO6gcD_x2cSXBz9TED70IivA,486
123
+ followthemoney/translations/nl/LC_MESSAGES/followthemoney.po,sha256=qOBe7fZ4AXL9J8pqH2Lv8LFzaHm_C0O8R6dHwlLnQA8,90873
124
+ followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo,sha256=s2EGTBFbR4JwNmX2q9J8vECsUa55wmD4pl0FujC909I,505
125
+ followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po,sha256=pG6tnzGFvsKrNRNwq8_JMH2_IjaOpGm_ztZfR5B20FY,89844
126
+ followthemoney/translations/ru/followthemoney.po,sha256=NYISuFWe_4sPleIqmHjDsIsMBE_oS6yZxbdpizACpUY,130617
127
+ followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo,sha256=iYz5zJCgXJRpcnSYeNQnX7UbTmuUdBX0bubM90pMEQk,66033
128
+ followthemoney/translations/ru/LC_MESSAGES/followthemoney.po,sha256=N9ck77PAscmhFkxSNHNj1GctVxugJRiZST0LmHVDqcU,139448
129
+ followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo,sha256=9cySl9BPdMxIOaV11GL1prvjQKBLcH1ng7aGX4SPzD0,487
130
+ followthemoney/translations/tr/LC_MESSAGES/followthemoney.po,sha256=AZC3marhtVVq8Ck1FOgnt4sbDMz548nX48O9GDwImbQ,89826
131
131
  followthemoney/types/__init__.py,sha256=X9XeM6JktzirAw5gGkyDKGM70NuiJ9Tbjoq0IwVclxU,1745
132
132
  followthemoney/types/address.py,sha256=P6ctzojJks70RZIwk5Bhc9djxejZo4Te0m5pQ9M7bAM,1651
133
- followthemoney/types/checksum.py,sha256=2KLOoZiYUnkButMl_Q8_I4Ju7qfQX8PcdoyzwOf-Aj4,917
134
- followthemoney/types/common.py,sha256=qPVj-jrDMEASWFYjl02NXoDO6lfPRQxE6dERLt_dmu8,9809
135
- followthemoney/types/country.py,sha256=1fAwIc8gqmP004Y22uILLJxBD3m552MoDwaEMGOD58o,3053
136
- followthemoney/types/date.py,sha256=XWFSKPJLpo8JSfcleyaEXih0q65ydf_d42Y_rcWZ-3s,2663
133
+ followthemoney/types/checksum.py,sha256=OqjCsBPyMIV3_Y20kTTvjkyayy32pBtaI5KKwYQb6lY,937
134
+ followthemoney/types/common.py,sha256=gmTLE4krAObnkQAdLWb-ZQqVApgjadmAdIf8Cs1x1aY,10204
135
+ followthemoney/types/country.py,sha256=Ll4NENog6XgPZmt85GCQWnBzpswlZvwDCvhSmJhiVJs,3073
136
+ followthemoney/types/date.py,sha256=4lZCd0aws-T3HE2BYkb-a-t8iQDr0nqFSAEBoUKiTlM,2683
137
137
  followthemoney/types/email.py,sha256=zAnMHwC_FZh7IagpDRhGZf-GfQR6uW8d-lZP4UCdGcM,2745
138
138
  followthemoney/types/entity.py,sha256=RCDD9j7MWA_dd0Ib33dl1E6PubsiS1yfVeIOsDxWYpY,2431
139
- followthemoney/types/gender.py,sha256=N1xghyYtb4WZh8s3ogF9kDTRtx367o3gRZWbG30QGI8,1800
140
- followthemoney/types/iban.py,sha256=C8GdfIdDl8Ip89VsZ_hk6v3tJUrRgab_wFLo9ff2lYo,1763
141
- followthemoney/types/identifier.py,sha256=tX-XepAPreP6u4dzMKyy5mp507NH71DdByYA7pXyKrw,2016
142
- followthemoney/types/ip.py,sha256=Z4s8mIlY5-IK9Oo13_YbL9lMQpY8SE_NAz0eqaonaYo,1392
139
+ followthemoney/types/gender.py,sha256=AVCa6ocsxueVhGW7RA2BIbQEfDRQANDpKkGY7ZakTYE,1820
140
+ followthemoney/types/iban.py,sha256=QYD49erJCB6I2nbtTagRMvpa4RyjezfB4Fpat2QLwAc,1797
141
+ followthemoney/types/identifier.py,sha256=Gk4h75_KyjkdtomrK9Ldsh9rD7-bsenFryevJFwqlX0,2036
142
+ followthemoney/types/ip.py,sha256=BxGARP9JWEWvyRnr7A7xUNwmTxyFd9kwXSZrKR0TK2Q,1412
143
143
  followthemoney/types/json.py,sha256=Hefwns1-ziJf310MWvdfX5ICkOgj9cnnMJuqq1e6qKY,1676
144
- followthemoney/types/language.py,sha256=4GT8_kqCwq4tOs7s9TffM7SSr9AaszAQsNJHK27fqVY,2612
144
+ followthemoney/types/language.py,sha256=gbOnrScpC8bOwlbygaMZa-mddoJonX3GPhCHg03i_0I,2632
145
145
  followthemoney/types/mimetype.py,sha256=EZ5hIdn-wosfLc-GjXDaOzevxaSXPbSPHDUJmPT1h0I,1355
146
146
  followthemoney/types/name.py,sha256=WsVVDIPJ0Hdlll3XvUgRHlpAbtUxu_p-yJmHaEH-4Gc,2093
147
147
  followthemoney/types/number.py,sha256=9l5v3hcAoJ4V6jaBS_-Kc1gtdJlQrY9L98ElC5e_PLQ,943
148
- followthemoney/types/phone.py,sha256=cppWyfZfOFZoGNjjqpMuTgxSgC1j5JFMpPHMHZYvoDQ,4020
148
+ followthemoney/types/phone.py,sha256=2YFbPBtMepvCWTdcxXq3Fq4AU8B4QYk1FARBpsH8xjs,4040
149
149
  followthemoney/types/registry.py,sha256=hvQ1oIWz_4PpyUnKA5azbaZCulNb5LCIPyC-AQYVVyw,1936
150
- followthemoney/types/string.py,sha256=paSCnFt9TJrCmelmw5-OiwCBu0rkqNh6iauteJIj26k,1130
151
- followthemoney/types/topic.py,sha256=BuOpyyTKvXoDZ0C6dcHl90Nz64wsmZ8kKLSyBwylHb0,3626
152
- followthemoney/types/url.py,sha256=6p3ctjh0S_VciPLYuyMPwvK9147rpkhWDd4f2kahe10,1470
150
+ followthemoney/types/string.py,sha256=grDn1OgKWxIzVxGEdp0HjVKIqtQ9W4SW2ty4quv3Pcs,1202
151
+ followthemoney/types/topic.py,sha256=6g57JKTFF_I233-afvuaswFxMaN_Kmg5MZ4_iAKZh9c,3754
152
+ followthemoney/types/url.py,sha256=r7Pd6Yfn--amwMi_nHoTLMwm5SH8h50SMgQaa2G4PJ0,1492
153
153
  tests/export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
154
  tests/export/test_csv.py,sha256=r0ACsWnGdLHIZgXvbshGBQ9An0v1dJGAWulRT-Xittc,1261
155
155
  tests/export/test_excel.py,sha256=ShLtaJ1-zgq-1rzbNoGJp1bVbRKZ-HcGtU8oJpKwjjY,1696
@@ -177,10 +177,10 @@ tests/types/test_phones.py,sha256=_GTl-0r5hok8ovUJPRqP7k9kJYMVbanjYUMLrbzFb5U,11
177
177
  tests/types/test_registry.py,sha256=IkrHjrEiIIPd4PdMFUg_jVh_gsE6CzGXIF8s3LIbnl0,296
178
178
  tests/types/test_topic.py,sha256=m35GSwTy-r77YACGDDac09nYLBIUua42Dy7z292m9EU,707
179
179
  tests/types/test_urls.py,sha256=JVmzJ0DKDBle_xLjmOHn0hgDTCpLmljrcfbOM1GSGRw,1170
180
- followthemoney-3.6.3.dist-info/LICENSE,sha256=Jln3uF70A9AQySyrP9JAW6sQTubLoKVQunvuJqISv7w,1098
181
- followthemoney-3.6.3.dist-info/METADATA,sha256=PnmKcbdLJCAp9mmFGW_WYJg78Qd9WFRu_3G6rlxPlqc,4531
182
- followthemoney-3.6.3.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
183
- followthemoney-3.6.3.dist-info/entry_points.txt,sha256=ONq-BcCB8Cnk_K1nvWqJPKSRm6sDW0RibLFp0gGtz-k,594
184
- followthemoney-3.6.3.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
185
- followthemoney-3.6.3.dist-info/top_level.txt,sha256=O33_kGPehy6-69B_k01UgMK55_JOhwqe2de7ND23b-Y,21
186
- followthemoney-3.6.3.dist-info/RECORD,,
180
+ followthemoney-3.7.0.dist-info/LICENSE,sha256=Jln3uF70A9AQySyrP9JAW6sQTubLoKVQunvuJqISv7w,1098
181
+ followthemoney-3.7.0.dist-info/METADATA,sha256=D0qnWruZX2Jnh1NgYoOs2ytiPWSPA2gnCgQqt0upV2g,4453
182
+ followthemoney-3.7.0.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
183
+ followthemoney-3.7.0.dist-info/entry_points.txt,sha256=wpgi-5-jyqCy-yw0eYZbnhBuPja_q3RJmiEl7NymXtQ,593
184
+ followthemoney-3.7.0.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
185
+ followthemoney-3.7.0.dist-info/top_level.txt,sha256=O33_kGPehy6-69B_k01UgMK55_JOhwqe2de7ND23b-Y,21
186
+ followthemoney-3.7.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: bdist_wheel (0.44.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any
@@ -15,4 +15,3 @@ gexf = followthemoney.cli.exports:export_gexf
15
15
  mapping = followthemoney.cli.mapping:run_mapping
16
16
  rdf = followthemoney.cli.exports:export_rdf
17
17
  sieve = followthemoney.cli.sieve:sieve
18
-