followthemoney 3.6.4__py2.py3-none-any.whl → 3.7.1__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.

Potentially problematic release.


This version of followthemoney might be problematic. Click here for more details.

Files changed (64) hide show
  1. followthemoney/__init__.py +1 -1
  2. followthemoney/mapping/entity.py +15 -6
  3. followthemoney/property.py +6 -0
  4. followthemoney/proxy.py +4 -4
  5. followthemoney/schema/Address.yaml +1 -0
  6. followthemoney/schema/BankAccount.yaml +4 -1
  7. followthemoney/schema/Company.yaml +3 -0
  8. followthemoney/schema/CryptoWallet.yaml +1 -0
  9. followthemoney/schema/Documentation.yml +3 -2
  10. followthemoney/schema/Identification.yaml +1 -0
  11. followthemoney/schema/LegalEntity.yaml +7 -0
  12. followthemoney/schema/Organization.yaml +1 -1
  13. followthemoney/schema/Person.yaml +2 -2
  14. followthemoney/schema/Position.yaml +1 -1
  15. followthemoney/schema/Post.yaml +1 -1
  16. followthemoney/schema/Project.yaml +1 -1
  17. followthemoney/schema/Sanction.yaml +1 -0
  18. followthemoney/schema/Security.yaml +2 -0
  19. followthemoney/schema/Thing.yaml +1 -0
  20. followthemoney/schema/Vessel.yaml +2 -0
  21. followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo +0 -0
  22. followthemoney/translations/ar/LC_MESSAGES/followthemoney.po +5 -5
  23. followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo +0 -0
  24. followthemoney/translations/bs/LC_MESSAGES/followthemoney.po +3 -3
  25. followthemoney/translations/de/LC_MESSAGES/followthemoney.mo +0 -0
  26. followthemoney/translations/de/LC_MESSAGES/followthemoney.po +5 -5
  27. followthemoney/translations/es/LC_MESSAGES/followthemoney.mo +0 -0
  28. followthemoney/translations/es/LC_MESSAGES/followthemoney.po +5 -5
  29. followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo +0 -0
  30. followthemoney/translations/fr/LC_MESSAGES/followthemoney.po +5 -5
  31. followthemoney/translations/fr/followthemoney.po +3 -3
  32. followthemoney/translations/messages.pot +143 -60
  33. followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo +0 -0
  34. followthemoney/translations/nb/LC_MESSAGES/followthemoney.po +3 -3
  35. followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo +0 -0
  36. followthemoney/translations/nl/LC_MESSAGES/followthemoney.po +3 -3
  37. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo +0 -0
  38. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po +3 -3
  39. followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo +0 -0
  40. followthemoney/translations/ru/LC_MESSAGES/followthemoney.po +5 -5
  41. followthemoney/translations/ru/followthemoney.po +4 -4
  42. followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo +0 -0
  43. followthemoney/translations/tr/LC_MESSAGES/followthemoney.po +3 -3
  44. followthemoney/types/checksum.py +1 -0
  45. followthemoney/types/common.py +12 -4
  46. followthemoney/types/country.py +1 -0
  47. followthemoney/types/date.py +1 -0
  48. followthemoney/types/gender.py +1 -0
  49. followthemoney/types/iban.py +4 -1
  50. followthemoney/types/identifier.py +1 -0
  51. followthemoney/types/ip.py +1 -0
  52. followthemoney/types/language.py +1 -0
  53. followthemoney/types/name.py +5 -1
  54. followthemoney/types/phone.py +1 -0
  55. followthemoney/types/string.py +5 -2
  56. followthemoney/types/topic.py +2 -0
  57. followthemoney/types/url.py +1 -0
  58. {followthemoney-3.6.4.dist-info → followthemoney-3.7.1.dist-info}/METADATA +36 -36
  59. {followthemoney-3.6.4.dist-info → followthemoney-3.7.1.dist-info}/RECORD +64 -64
  60. {followthemoney-3.6.4.dist-info → followthemoney-3.7.1.dist-info}/WHEEL +1 -1
  61. {followthemoney-3.6.4.dist-info → followthemoney-3.7.1.dist-info}/LICENSE +0 -0
  62. {followthemoney-3.6.4.dist-info → followthemoney-3.7.1.dist-info}/entry_points.txt +0 -0
  63. {followthemoney-3.6.4.dist-info → followthemoney-3.7.1.dist-info}/namespace_packages.txt +0 -0
  64. {followthemoney-3.6.4.dist-info → followthemoney-3.7.1.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
+ maxLength: 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
+ "maxLength": 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 = [
@@ -53,7 +53,11 @@ class NameType(PropertyType):
53
53
  right_clean = clean_name_light(right)
54
54
  if left_clean is None or right_clean is None:
55
55
  return 0.0
56
- return levenshtein_similarity(left_clean, right_clean)
56
+ return levenshtein_similarity(
57
+ left_clean,
58
+ right_clean,
59
+ max_length=self.max_length,
60
+ )
57
61
 
58
62
  def node_id(self, value: str) -> Optional[str]:
59
63
  slug = slugify(value)
@@ -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"),
@@ -71,6 +72,7 @@ class TopicType(EnumType):
71
72
  "role.oligarch": _("Oligarch"),
72
73
  "role.journo": _("Journalist"),
73
74
  "role.act": _("Activist"),
75
+ "role.lobby": _("Lobbyist"),
74
76
  "pol.party": _("Political party"),
75
77
  "pol.union": _("Union"),
76
78
  "rel": _("Religion"),
@@ -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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: followthemoney
3
- Version: 3.6.4
3
+ Version: 3.7.1
4
4
  Home-page: https://followthemoney.tech/
5
5
  Author: Organized Crime and Corruption Reporting Project
6
6
  Author-email: data@occrp.org
@@ -11,44 +11,44 @@ Classifier: Programming Language :: Python
11
11
  Classifier: Programming Language :: Python :: 3.9
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
- Requires-Dist: babel <3.0.0,>=2.14.0
15
- 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
16
16
  Requires-Dist: types-PyYAML
17
17
  Requires-Dist: sqlalchemy2-stubs
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
18
+ Requires-Dist: banal<1.1.0,>=1.0.6
19
+ Requires-Dist: rigour<1.0.0,>=0.6.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
35
35
  Provides-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'
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"
52
52
 
53
53
  # Follow the Money
54
54
 
@@ -1,4 +1,4 @@
1
- followthemoney/__init__.py,sha256=BHCJMWKQaiEzg-sdj2qo_5-9g2qzKTZwxzWRQQvF3PI,360
1
+ followthemoney/__init__.py,sha256=6hMjBgb9YywaZiMkhsA8krBJLg9cw2fafkZAovou5mM,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
@@ -8,8 +8,8 @@ followthemoney/model.py,sha256=p4Bk0XPi9z7SKZVgG1FqeM2i45xwAlDIkHwyyUcDKk0,6426
8
8
  followthemoney/namespace.py,sha256=qYplxKn5OO3zDMf3NItKwTwDsJOnski5JbeyhssqhR8,4434
9
9
  followthemoney/offshore.py,sha256=Pf0tx-7GyhIZRueshDRqPNlxkHfGstmW5yNDID5Mnws,1060
10
10
  followthemoney/ontology.py,sha256=7PEoUKISNpkRvVhuLeE3IE9ZiNtdR8mn9_kzZ9yF9l0,2986
11
- followthemoney/property.py,sha256=EXU4kH6rOD9ubmuDXE-3LGc6gwQspW9_NjSacDb4xYA,7494
12
- followthemoney/proxy.py,sha256=YvnAUWtu_BCsK36N6xTcoI0Ffjn-gIyj-eDVhtsjoLA,20033
11
+ followthemoney/property.py,sha256=zi9ss1v0e8Wmv-FuLtZd2aod5iTLfBekBxuOTgIOUMU,7718
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,12 +30,12 @@ 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
- followthemoney/schema/Address.yaml,sha256=xCKyak0qdJC0W5jfROUq6pEMCcSupNSB6GAxx5QfN5E,1689
38
+ followthemoney/schema/Address.yaml,sha256=9cPZfkNiV-5fNfSzBFcE_dwD0V2_WLpGSLT6kL8GbuQ,1709
39
39
  followthemoney/schema/Airplane.yaml,sha256=NUXQk_Yg9RWyhdeI3s00k9GWHBV2S9-QvIhM22LedBE,579
40
40
  followthemoney/schema/Analyzable.yaml,sha256=WvyhjYqI7QzBt3qPDgO7MDasJH1qQtgQMToHkV_xtlU,1237
41
41
  followthemoney/schema/Article.yaml,sha256=jTH63eP2aZ87W_6m8jS4R_btcrI46tYGeCEqKNLTwLU,266
@@ -43,19 +43,19 @@ followthemoney/schema/Assessment.yaml,sha256=-RH_aEz4xGejucRcwl45KVAnzSLeQ7zwJWg
43
43
  followthemoney/schema/Asset.yaml,sha256=xQhHJJtnGLfiOaUncqGv4JR3Yn7l46yAg7p0hKFAFVE,260
44
44
  followthemoney/schema/Associate.yaml,sha256=ijTHd6GDlK4lMtijdkTzERR9DODtqKk0XoZPlDEsUnI,901
45
45
  followthemoney/schema/Audio.yaml,sha256=Eb1rZGUEOX7XDAj_1YIN28NCBzMvkopQBNwgHt_kS18,452
46
- followthemoney/schema/BankAccount.yaml,sha256=-G_9jnOY_qitGh6dt-MkhMtJffIBnzJAeNlENeDcUYo,1393
46
+ followthemoney/schema/BankAccount.yaml,sha256=Pvw9FxJYwwnJMoo3IblyPki9VRjLsM4F30jzKZWv9dE,1452
47
47
  followthemoney/schema/Call.yaml,sha256=kbVCnVxucBrEplxehXHThLSJAJjy_GhWan-IeZZjr0M,980
48
48
  followthemoney/schema/CallForTenders.yaml,sha256=2IWonTzfSbrkynMoEWqv5fekUeFM_xDKpKIbRe1XDbo,3227
49
- followthemoney/schema/Company.yaml,sha256=7dWBPetd7xOJtu8AlhKsjxBYzYBK5E3LssYguSf0glA,3321
49
+ followthemoney/schema/Company.yaml,sha256=T3ATP_RBbdjaTbntD9lW-Ax1veosXKzwFvkKOdO_g_I,3381
50
50
  followthemoney/schema/Contract.yaml,sha256=-wVVUBu_KvmiWEjXrw1zgY2m9AAkiHCDd-hxFCUzj6k,1586
51
51
  followthemoney/schema/ContractAward.yaml,sha256=b2spaZHYCaP1yR1RCsrI7mUjk-fAF7BUE3dc8Vl3cUQ,1689
52
52
  followthemoney/schema/CourtCase.yaml,sha256=lcovnY0Ne_xcggvkqfCW_RHvsRKo8kFTCPCyovAXRtI,599
53
53
  followthemoney/schema/CourtCaseParty.yaml,sha256=MpodN2251V_MYD2dBOHZ_qD7Uv6cLg8Gd_b-I8HZjPI,588
54
- followthemoney/schema/CryptoWallet.yaml,sha256=n5EDKc7IhITdXX3gJJEdCcLJjdcpB0owCc8rTy9ryfQ,1047
54
+ followthemoney/schema/CryptoWallet.yaml,sha256=1Akp0Bzd_x_0GgsUOxW0zkvNDozoMP_8fJyrSn0dAy4,1068
55
55
  followthemoney/schema/Debt.yaml,sha256=gSGl1xKPaPWAYYEcX7MxezVn3Gu-CYBIzxGzMd9UTm4,657
56
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=h3edTCl6mvDvL1Lbqoyzeis5i_BraDrBt9mekM30LNg,755
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
61
  followthemoney/schema/Employment.yaml,sha256=rQXGva4uOKzQbkow4AM4Iez5t7kzm0HTqhhWzvgosl4,674
@@ -63,93 +63,93 @@ followthemoney/schema/Event.yaml,sha256=NclU-s8puxBk-KlJuz3EF1dqM99d5DCwD_xFh-TX
63
63
  followthemoney/schema/Family.yaml,sha256=cgZ7ZM_2p_dzUGrLVj8QL86gpeDM-AoK8AbyHjh5b6E,983
64
64
  followthemoney/schema/Folder.yaml,sha256=W12iJHTYua7bF7oTpgiDbarEkfa0Q2gSmfLdl537HQY,180
65
65
  followthemoney/schema/HyperText.yaml,sha256=Wg5dWeLrVjbXiI-ao69tosJ7rI0DvNU8cCo8AhUXwh4,319
66
- followthemoney/schema/Identification.yaml,sha256=hFS4Ukbgj7zgLCGldYkefUZyuMS0lWw1X9Q5l0QyiJ8,833
66
+ followthemoney/schema/Identification.yaml,sha256=6txjZs6-3Kn94c3G4tDeDt9Jb4FW55-xjSnYVrvmiEA,853
67
67
  followthemoney/schema/Image.yaml,sha256=wuznboWECGiV96_GQiXq1-oKNoxO8zKisR4xyusnEn8,394
68
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=n47_jL3HBD11-4HNT47W7JC6-3B65YaBxp3cusPrVco,3787
70
+ followthemoney/schema/LegalEntity.yaml,sha256=uHwkJAVjhQnRm4yNEq6Z-V_f5a-prQmaEYyx30svajE,3927
71
71
  followthemoney/schema/License.yaml,sha256=9Ye5vGEBhi7ttGqf0DdAGCJCN3zz5HtGu52dCcmCsQk,452
72
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
76
  followthemoney/schema/Occupancy.yaml,sha256=-alsy15cz3RXC_2xYN6rXxwxSOW_hazCNyIvmp7Jawo,773
77
- followthemoney/schema/Organization.yaml,sha256=oq_YHjjOQCXJ2g7Pw3yVUt2bpRA_LE6fBXNha-whzuo,563
77
+ followthemoney/schema/Organization.yaml,sha256=AxASyXY18xGXO9FmAwIrARoRy8OxxRPUXlbUqch7Vi4,562
78
78
  followthemoney/schema/Ownership.yaml,sha256=naWvWoqJph463fwk6SdC14RAVF03l98bWwpscrW_vJg,997
79
79
  followthemoney/schema/Package.yaml,sha256=gPr-P3lcg7OOAav_KVa8baK4yK57JwfcXwxXheD96UQ,310
80
80
  followthemoney/schema/Page.yaml,sha256=sQt_CnVyjDVGVECLQoGYZH4hxpjdPhxVRz4XJW-_1OU,1107
81
81
  followthemoney/schema/Pages.yaml,sha256=KKPGZ06Ehp5mWIGnYfHUBN9jT03bk8nakw0pB5bA_7E,450
82
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=rxgZyt2qvmKJuNknSOYdITTDdZpPNYpx5DnKy-5XnnI,2270
84
+ followthemoney/schema/Person.yaml,sha256=1rQVOCla7kJmexPdh2xIThQCIHaRhib77nJ0XinwVog,2266
85
85
  followthemoney/schema/PlainText.yaml,sha256=hfnVi-HmQeDbqDquSpkPJax9hNm86ioXGr4hzNzyPFE,278
86
- followthemoney/schema/Position.yaml,sha256=L10vB_hc0pYcYc3zNBGucqyAb-vixqTf0ymiFJ5SKfU,1309
87
- followthemoney/schema/Post.yaml,sha256=lECZ5dB3ic2oP2x4FHD_GF5Q6fljFrBLLptgWdaeA-E,1035
88
- followthemoney/schema/Project.yaml,sha256=VQ9E-QYL6xDMf1z5Flt5kMg2N8i4rah9CwIwjw0IoLY,461
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
89
  followthemoney/schema/ProjectParticipant.yaml,sha256=xNehEu90uqUfboNouezhZQ8ZQLxzWq1yyNO4kua-Lyc,727
90
90
  followthemoney/schema/PublicBody.yaml,sha256=BNfLBqH1OapoEninAjWmqZx_n-G5QUnzzydW7300TiY,301
91
91
  followthemoney/schema/RealEstate.yaml,sha256=NWFHXqEHskYQN-kvQESZpu74nztShqoYSZEjZAr-DHM,1363
92
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
93
+ followthemoney/schema/Sanction.yaml,sha256=bYxbdUvxxi6ZtLUkBN0uMnokzncxrvdTcYV2VQcMl8s,957
94
+ followthemoney/schema/Security.yaml,sha256=X-WrnI5OMizLu52OCX6cJm-JTbr_fg4KussYOvTsylw,1166
95
95
  followthemoney/schema/Similar.yaml,sha256=gD8rZEaPQWzU-rEfsKdn62uEucF3KxYBcPMoSdnxvME,817
96
96
  followthemoney/schema/Succession.yaml,sha256=RMJQqZ4Fv88N1RvWTAgjYg9BB5cELSj5CCAjM681Fpg,749
97
97
  followthemoney/schema/Table.yaml,sha256=GcsIAgSO9t2tvObA9zU2HhxlSqTe9CePmUnagu1Z0vI,641
98
98
  followthemoney/schema/TaxRoll.yaml,sha256=ugMzaaS7uyq2OLD50eGLcfvd6Cg0cSt65-T9GVqpRSA,746
99
- followthemoney/schema/Thing.yaml,sha256=72gInrI4VEWxUcld7w4by1QPI46F-NR8QZJ09JyUcnc,2438
99
+ followthemoney/schema/Thing.yaml,sha256=PeseDMTO8rDzoTrxRjL9efyJQ0_lGgRQRTzwLu5OwiU,2458
100
100
  followthemoney/schema/Trip.yaml,sha256=nLQD_ApmVJ8D56Czl7K700hhNZjzFV9FOQ3NBSQDLiM,771
101
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
104
  followthemoney/schema/Vehicle.yaml,sha256=WyjfHL7XxEQQ1h0IyOBYKAZ40BEghQaM7_mkFnWyVBg,990
105
- followthemoney/schema/Vessel.yaml,sha256=dOfWw9HC00xhdGJYSCBg3zr9rJQl6_hvkWM916qGgMw,999
105
+ followthemoney/schema/Vessel.yaml,sha256=k6_EofFv_hW8TkgVE2wQ5AKA7QH7dk6b1ghuVb6T3Yg,1039
106
106
  followthemoney/schema/Video.yaml,sha256=LY3DYMWTHXiAhL0hxBCNCz50cp2sPbUlEhhig5Fbjos,327
107
107
  followthemoney/schema/Workbook.yaml,sha256=iikWPElz4klA7SkWH7eae6xqhbkMCIP_3zdeXzFEMU0,354
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
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=Yk-7LZ6uDgFzKXUZxQ_j5miN2ZMnlBOziU0iFC7FE9I,10202
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
- followthemoney/types/name.py,sha256=WsVVDIPJ0Hdlll3XvUgRHlpAbtUxu_p-yJmHaEH-4Gc,2093
146
+ followthemoney/types/name.py,sha256=bQha6rWEb8nP2KDCp1PEohJK-EQ1O4jkyEgB_HuOWlg,2168
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=dv0lb3sXE-WFShSFwYe7evx0QirmsNuFROs4aq9fr0k,3697
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.4.dist-info/LICENSE,sha256=Jln3uF70A9AQySyrP9JAW6sQTubLoKVQunvuJqISv7w,1098
181
- followthemoney-3.6.4.dist-info/METADATA,sha256=Fna_gKBqmyt4WRsgd80D0JmNE2KIc1cqyjTg3ARAyvo,4494
182
- followthemoney-3.6.4.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
183
- followthemoney-3.6.4.dist-info/entry_points.txt,sha256=wpgi-5-jyqCy-yw0eYZbnhBuPja_q3RJmiEl7NymXtQ,593
184
- followthemoney-3.6.4.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
185
- followthemoney-3.6.4.dist-info/top_level.txt,sha256=O33_kGPehy6-69B_k01UgMK55_JOhwqe2de7ND23b-Y,21
186
- followthemoney-3.6.4.dist-info/RECORD,,
180
+ followthemoney-3.7.1.dist-info/LICENSE,sha256=Jln3uF70A9AQySyrP9JAW6sQTubLoKVQunvuJqISv7w,1098
181
+ followthemoney-3.7.1.dist-info/METADATA,sha256=_2AsZMq64-w-F0Nwg6uJ5ZTbtVpOoEFrSaYfc4Whe1g,4453
182
+ followthemoney-3.7.1.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
183
+ followthemoney-3.7.1.dist-info/entry_points.txt,sha256=wpgi-5-jyqCy-yw0eYZbnhBuPja_q3RJmiEl7NymXtQ,593
184
+ followthemoney-3.7.1.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
185
+ followthemoney-3.7.1.dist-info/top_level.txt,sha256=O33_kGPehy6-69B_k01UgMK55_JOhwqe2de7ND23b-Y,21
186
+ followthemoney-3.7.1.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