init research
This commit is contained in:
+14308
File diff suppressed because one or more lines are too long
@@ -0,0 +1,304 @@
|
||||
# DEMO for DataFrame, this might differ from the actual API (it's updated a bit)
|
||||
openapi: 3.0.0
|
||||
info:
|
||||
version: 2.0.2
|
||||
title: APIs.guru
|
||||
description: >
|
||||
Wikipedia for Web APIs. Repository of API specs in OpenAPI format.
|
||||
|
||||
|
||||
**Warning**: If you want to be notified about changes in advance please join our [Slack channel](https://join.slack.com/t/mermade/shared_invite/zt-g78g7xir-MLE_CTCcXCdfJfG3CJe9qA).
|
||||
|
||||
|
||||
Client sample: [[Demo]](https://apis.guru/simple-ui) [[Repo]](https://github.com/APIs-guru/simple-ui)
|
||||
contact:
|
||||
name: APIs.guru
|
||||
url: https://APIs.guru
|
||||
email: mike.ralphson@gmail.com
|
||||
license:
|
||||
name: CC0 1.0
|
||||
url: https://github.com/APIs-guru/openapi-directory#licenses
|
||||
x-logo:
|
||||
url: https://apis.guru/branding/logo_vertical.svg
|
||||
externalDocs:
|
||||
url: https://github.com/APIs-guru/openapi-directory/blob/master/API.md
|
||||
security: [ ]
|
||||
tags:
|
||||
- name: APIs
|
||||
description: Actions relating to APIs in the collection
|
||||
paths:
|
||||
/list.json:
|
||||
get:
|
||||
operationId: listAPIs
|
||||
tags:
|
||||
- APIs
|
||||
summary: List all APIs
|
||||
description: >
|
||||
List all APIs in the directory.
|
||||
|
||||
Returns links to OpenAPI specification for each API in the directory.
|
||||
|
||||
If API exist in multiple versions `preferred` one is explicitly marked.
|
||||
|
||||
|
||||
Some basic info from OpenAPI spec is cached inside each object.
|
||||
|
||||
This allows to generate some simple views without need to fetch OpenAPI spec for each API.
|
||||
responses:
|
||||
"200":
|
||||
description: OK
|
||||
content:
|
||||
application/json; charset=utf-8:
|
||||
schema:
|
||||
$ref: "#/components/schemas/APIs"
|
||||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/APIs"
|
||||
/metrics.json:
|
||||
get:
|
||||
operationId: getMetrics
|
||||
summary: Get basic metrics
|
||||
description: >
|
||||
Some basic metrics for the entire directory.
|
||||
|
||||
Just stunning numbers to put on a front page and are intended purely for WoW effect :)
|
||||
tags:
|
||||
- APIs
|
||||
responses:
|
||||
"200":
|
||||
description: OK
|
||||
content:
|
||||
application/json; charset=utf-8:
|
||||
schema:
|
||||
$ref: "#/components/schemas/Metrics"
|
||||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/Metrics"
|
||||
components:
|
||||
schemas:
|
||||
APIs:
|
||||
description: |
|
||||
List of API details.
|
||||
It is a JSON object with API IDs(`<provider>[:<service>]`) as keys.
|
||||
type: object
|
||||
additionalProperties:
|
||||
$ref: "#/components/schemas/API"
|
||||
minProperties: 1
|
||||
example:
|
||||
googleapis.com:drive:
|
||||
added: 2015-02-22T20:00:45.000Z
|
||||
preferred: v3
|
||||
versions:
|
||||
v2:
|
||||
added: 2015-02-22T20:00:45.000Z
|
||||
info:
|
||||
title: Drive
|
||||
version: v2
|
||||
x-apiClientRegistration:
|
||||
url: https://console.developers.google.com
|
||||
x-logo:
|
||||
url: https://api.apis.guru/v2/cache/logo/https_www.gstatic.com_images_icons_material_product_2x_drive_32dp.png
|
||||
x-origin:
|
||||
format: google
|
||||
url: https://www.googleapis.com/discovery/v1/apis/drive/v2/rest
|
||||
version: v1
|
||||
x-preferred: false
|
||||
x-providerName: googleapis.com
|
||||
x-serviceName: drive
|
||||
swaggerUrl: https://api.apis.guru/v2/specs/googleapis.com/drive/v2/swagger.json
|
||||
swaggerYamlUrl: https://api.apis.guru/v2/specs/googleapis.com/drive/v2/swagger.yaml
|
||||
updated: 2016-06-17T00:21:44.000Z
|
||||
v3:
|
||||
added: 2015-12-12T00:25:13.000Z
|
||||
info:
|
||||
title: Drive
|
||||
version: v3
|
||||
x-apiClientRegistration:
|
||||
url: https://console.developers.google.com
|
||||
x-logo:
|
||||
url: https://api.apis.guru/v2/cache/logo/https_www.gstatic.com_images_icons_material_product_2x_drive_32dp.png
|
||||
x-origin:
|
||||
format: google
|
||||
url: https://www.googleapis.com/discovery/v1/apis/drive/v3/rest
|
||||
version: v1
|
||||
x-preferred: true
|
||||
x-providerName: googleapis.com
|
||||
x-serviceName: drive
|
||||
swaggerUrl: https://api.apis.guru/v2/specs/googleapis.com/drive/v3/swagger.json
|
||||
swaggerYamlUrl: https://api.apis.guru/v2/specs/googleapis.com/drive/v3/swagger.yaml
|
||||
updated: 2016-06-17T00:21:44.000Z
|
||||
API:
|
||||
description: Meta information about API
|
||||
type: object
|
||||
required:
|
||||
- added
|
||||
- preferred
|
||||
- versions
|
||||
properties:
|
||||
added:
|
||||
description: Timestamp when the API was first added to the directory
|
||||
type: string
|
||||
format: date-time
|
||||
preferred:
|
||||
description: Recommended version
|
||||
type: string
|
||||
versions:
|
||||
description: List of supported versions of the API
|
||||
type: object
|
||||
additionalProperties:
|
||||
$ref: "#/components/schemas/ApiVersion"
|
||||
minProperties: 1
|
||||
additionalProperties: false
|
||||
ApiVersion:
|
||||
type: object
|
||||
required:
|
||||
- added
|
||||
# - updated apparently not required!
|
||||
- swaggerUrl
|
||||
- swaggerYamlUrl
|
||||
- info
|
||||
- openapiVer
|
||||
properties:
|
||||
added:
|
||||
description: Timestamp when the version was added
|
||||
type: string
|
||||
format: date-time
|
||||
updated: # apparently not required!
|
||||
description: Timestamp when the version was updated
|
||||
type: string
|
||||
format: date-time
|
||||
swaggerUrl:
|
||||
description: URL to OpenAPI definition in JSON format
|
||||
type: string
|
||||
format: url
|
||||
swaggerYamlUrl:
|
||||
description: URL to OpenAPI definition in YAML format
|
||||
type: string
|
||||
format: url
|
||||
info:
|
||||
description: Copy of `info` section from OpenAPI definition
|
||||
type: object
|
||||
minProperties: 1
|
||||
externalDocs:
|
||||
description: Copy of `externalDocs` section from OpenAPI definition
|
||||
type: object
|
||||
minProperties: 1
|
||||
openapiVer:
|
||||
description: OpenAPI version
|
||||
type: string
|
||||
additionalProperties: false
|
||||
|
||||
Metrics:
|
||||
description: List of basic metrics
|
||||
type: object
|
||||
required:
|
||||
- numSpecs
|
||||
- numAPIs
|
||||
- numEndpoints
|
||||
- unreachable
|
||||
- invalid
|
||||
- unofficial
|
||||
- fixes
|
||||
- fixedPct
|
||||
- datasets
|
||||
- stars
|
||||
- issues
|
||||
- thisWeek
|
||||
properties:
|
||||
numSpecs:
|
||||
description: Number of API specifications including different versions of the
|
||||
same API
|
||||
type: integer
|
||||
minimum: 1
|
||||
numAPIs:
|
||||
description: Number of APIs
|
||||
type: integer
|
||||
minimum: 1
|
||||
numEndpoints:
|
||||
description: Total number of endpoints inside all specifications
|
||||
type: integer
|
||||
minimum: 1
|
||||
unreachable:
|
||||
description: Number of unreachable specifications
|
||||
type: integer
|
||||
minimum: 0
|
||||
invalid:
|
||||
description: Number of invalid specifications
|
||||
type: integer
|
||||
minimum: 0
|
||||
unofficial:
|
||||
description: Number of unofficial specifications
|
||||
type: integer
|
||||
minimum: 0
|
||||
fixes:
|
||||
description: Number of fixes applied to specifications
|
||||
type: integer
|
||||
minimum: 0
|
||||
fixedPct:
|
||||
description: Percentage of fixed specifications
|
||||
type: number
|
||||
minimum: 0
|
||||
maximum: 100
|
||||
datasets:
|
||||
description: An overview of the datasets used to gather the APIs
|
||||
type: array
|
||||
items:
|
||||
description: A single metric per dataset
|
||||
type: object
|
||||
required:
|
||||
- title
|
||||
- data
|
||||
properties:
|
||||
title:
|
||||
description: Title of the metric
|
||||
type: string
|
||||
data:
|
||||
description: Value of the metric per dataset
|
||||
type: object
|
||||
additionalProperties:
|
||||
type: integer
|
||||
minimum: 0
|
||||
stars:
|
||||
description: Number of stars on GitHub
|
||||
type: integer
|
||||
minimum: 0
|
||||
issues:
|
||||
description: Number of issues on GitHub
|
||||
type: integer
|
||||
minimum: 0
|
||||
thisWeek:
|
||||
description: Number of new specifications added/updated this week
|
||||
type: object
|
||||
required:
|
||||
- added
|
||||
- updated
|
||||
properties:
|
||||
added:
|
||||
description: Number of new specifications added this week
|
||||
type: integer
|
||||
minimum: 0
|
||||
updated:
|
||||
description: Number of specifications updated this week
|
||||
type: integer
|
||||
minimum: 0
|
||||
additionalProperties: false
|
||||
example:
|
||||
numSpecs: 1000
|
||||
numAPIs: 100
|
||||
numEndpoints: 10000
|
||||
unreachable: 10
|
||||
invalid: 10
|
||||
unofficial: 10
|
||||
fixes: 10
|
||||
fixedPct: 10
|
||||
datasets:
|
||||
- title: providerCount
|
||||
data:
|
||||
"a.com": 10
|
||||
"b.com": 20
|
||||
"c.com": 30
|
||||
stars: 1000
|
||||
issues: 100
|
||||
thisWeek:
|
||||
added: 10
|
||||
updated: 10
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"numSpecs": 3809,
|
||||
"numAPIs": 2362,
|
||||
"numEndpoints": 79405,
|
||||
"unreachable": 138,
|
||||
"invalid": 634,
|
||||
"unofficial": 24,
|
||||
"fixes": 34001,
|
||||
"fixedPct": 21,
|
||||
"datasets": [
|
||||
{
|
||||
"title": "providerCount",
|
||||
"data": {
|
||||
"adyen.com": 69,
|
||||
"amazonaws.com": 295,
|
||||
"apideck.com": 14,
|
||||
"apisetu.gov.in": 181,
|
||||
"azure.com": 1832,
|
||||
"ebay.com": 20,
|
||||
"fungenerators.com": 12,
|
||||
"googleapis.com": 443,
|
||||
"hubapi.com": 11,
|
||||
"interzoid.com": 20,
|
||||
"mastercard.com": 14,
|
||||
"microsoft.com": 27,
|
||||
"nexmo.com": 20,
|
||||
"nytimes.com": 11,
|
||||
"parliament.uk": 11,
|
||||
"sportsdata.io": 35,
|
||||
"twilio.com": 41,
|
||||
"windows.net": 10,
|
||||
"Others": 743
|
||||
}
|
||||
}
|
||||
],
|
||||
"stars": 2964,
|
||||
"issues": 206,
|
||||
"thisWeek": {
|
||||
"added": 123,
|
||||
"updated": 119
|
||||
}
|
||||
}
|
||||
+98363
File diff suppressed because one or more lines are too long
@@ -0,0 +1,21 @@
|
||||
movieId,title,genres
|
||||
9b30aff7943f44579e92c261f3adc193,Women in Black (1997),Fantasy|Suspenseful|Comedy
|
||||
2a1ba1fc5caf492a80188e032995843e,Bumblebee Movie (2007),Comedy|Jazz|Family|Animation
|
||||
f44ceb4771504342bb856d76c112d5a6,Magical School Boy and the Rock of Wise Men (2001),Fantasy|Growing up|Magic
|
||||
43d02fb064514ff3bd30d1e3a7398357,Master of the Jewlery: The Company of the Jewel (2001),Fantasy|Magic|Suspenseful
|
||||
6aa0d26a483148998c250b9c80ddf550,Sun Conflicts: Part IV: A Novel Espair (1977),Fantasy
|
||||
eace16e59ce24eff90bf8924eb6a926c,The Outstanding Bulk (2008),Fantasy|Superhero|Family
|
||||
ae916bc4844a4bb7b42b70d9573d05cd,In Automata (2014),Horror|Existential
|
||||
c1f0a868aeb44c5ea8d154ec3ca295ac,Interplanetary (2014),Sci-fi|Futuristic
|
||||
9595b771f87f42a3b8dd07d91e7cb328,Woods Run (1994),Family|Drama
|
||||
aa9fc400e068443488b259ea0802a975,Anthropod-Dude (2002),Superhero|Fantasy|Family|Growing up
|
||||
22d20c2ba11d44cab83aceea39dc00bd,The Chamber (2003),Comedy|Drama
|
||||
8cf4d0c1bd7b41fab6af9d92c892141f,That Thing About an Iceberg (1997),Drama|History|Family|Romance
|
||||
c2f3e7588da84684a7d78d6bd8d8e1f4,Vehicles (2006),Animation|Family
|
||||
ce06175106af4105945f245161eac3c7,Playthings Tale (1995),Animation|Family
|
||||
ee28d7e69103485c83e10b8055ef15fb,Metal Man 2 (2010),Fantasy|Superhero|Family
|
||||
c32bdeed466f4ec09de828bb4b6fc649,Surgeon Odd in the Omniverse of Crazy (2022),Fantasy|Superhero|Family|Horror
|
||||
d4a325ab648a42c4a2d6f35dfabb387f,Bad Dream on Pine Street (1984),Horror
|
||||
60ebe74947234ddcab49dea1a958faed,The Shimmering (1980),Horror
|
||||
f24327f2b05147b197ca34bf13ae3524,Krubit: Societal Teachings for Do Many Good Amazing Country of Uzbekistan (2006),Comedy
|
||||
2bb29b3a245e434fa80542e711fd2cee,This is No Movie (1950),(no genres listed)
|
||||
|
+12834
File diff suppressed because one or more lines are too long
@@ -0,0 +1,115 @@
|
||||
country,code,iso,lat,lon
|
||||
United States,US,USA,39.7837304,-100.4458825
|
||||
India,IN,IND,22.3511148,78.6677428
|
||||
United Kingdom,GB,GBR,54.7023545,-3.2765753
|
||||
null,Unknown,Unknown,51.1461391,12.233285
|
||||
Canada,CA,CAN,61.0666922,-107.991707
|
||||
France,FR,FRA,46.603354,1.8883335
|
||||
Japan,JP,JPN,36.5748441,139.2394179
|
||||
Spain,ES,ESP,39.3260685,-4.8379791
|
||||
South Korea,KR,KOR,36.638392,127.6961188
|
||||
Germany,DE,DEU,51.0834196,10.4234469
|
||||
Mexico,MX,MEX,22.5000485,-100.0000375
|
||||
China,CN,CHN,35.000074,104.999927
|
||||
Australia,AU,AUS,-24.7761086,134.755
|
||||
Egypt,EG,EGY,26.2540493,29.2675469
|
||||
Turkey,TR,TUR,38.9597594,34.9249653
|
||||
Hong Kong,HK,HKG,22.2793278,114.1628131
|
||||
Italy,IT,ITA,42.6384261,12.674297
|
||||
Brazil,BR,BRA,-10.3333333,-53.2
|
||||
Taiwan,TW,TWN,23.9739374,120.9820179
|
||||
Belgium,BE,BEL,50.6402809,4.6667145
|
||||
Argentina,AR,ARG,-34.9964963,-64.9672817
|
||||
Indonesia,ID,IDN,-2.4833826,117.8902853
|
||||
Philippines,PH,PHL,12.7503486,122.7312101
|
||||
Nigeria,NG,NGA,9.6000359,7.9999721
|
||||
Thailand,TH,THA,14.8971921,100.83273
|
||||
South Africa,ZA,ZAF,-28.8166236,24.991639
|
||||
Colombia,CO,COL,2.8894434,-73.783892
|
||||
Netherlands,NL,NLD,52.5001698,5.7480821
|
||||
Denmark,DK,DNK,55.670249,10.3333283
|
||||
Ireland,IE,IRL,52.865196,-7.9794599
|
||||
Sweden,SE,SWE,59.6749712,14.5208584
|
||||
Singapore,SG,SGP,1.357107,103.8194992
|
||||
Poland,PL,POL,52.215933,19.134422
|
||||
United Arab Emirates,AE,ARE,24.0002488,53.9994829
|
||||
Norway,NO,NOR,60.5000209,9.0999715
|
||||
New Zealand,NZ,NZL,-41.5000831,172.8344077
|
||||
Russia,RU,RUS,64.6863136,97.7453061
|
||||
Israel,IL,IMN,31.5313113,34.8667654
|
||||
Chile,CL,CHL,-31.7613365,-71.3187697
|
||||
Lebanon,LB,LBN,33.8750629,35.843409
|
||||
Malaysia,MY,MYS,4.5693754,102.2656823
|
||||
Pakistan,PK,PAK,30.3308401,71.247499
|
||||
Czech Republic,CZ,CZE,49.8167003,15.4749544
|
||||
Switzerland,CH,CHE,46.813331250000005,8.444947437939408
|
||||
Uruguay,UY,URY,-32.8755548,-56.0201525
|
||||
Romania,RO,ROU,45.9852129,24.6859225
|
||||
Finland,FI,FIN,63.2467777,25.9209164
|
||||
Austria,AT,AUT,47.2,13.2
|
||||
Luxembourg,LU,LUX,49.8158683,6.1296751
|
||||
Peru,PE,PER,-6.8699697,-75.0458515
|
||||
Saudi Arabia,SA,SAU,25.6242618,42.3528328
|
||||
Greece,GR,GRC,38.9953683,21.9877132
|
||||
Hungary,HU,HUN,47.1817585,19.5060937
|
||||
Iceland,IS,ISL,64.9841821,-18.1059013
|
||||
Bulgaria,BG,BGR,42.6073975,25.4856617
|
||||
Jordan,JO,JOR,31.1667049,36.941628
|
||||
Serbia,RS,SRB,44.1534121,20.55144
|
||||
Kuwait,KW,KWT,29.2733964,47.4979476
|
||||
Qatar,QA,QAT,25.3336984,51.2295295
|
||||
Morocco,MA,MAR,31.1728205,-7.3362482
|
||||
Cambodia,KH,KHM,13.5066394,104.869423
|
||||
Kenya,KE,KEN,1.4419683,38.4313975
|
||||
Vietnam,VN,VNM,13.2904027,108.4265113
|
||||
Portugal,PT,PRT,40.0332629,-7.8896263
|
||||
Ghana,GH,GHA,7.8573710000000005,-1.0840975468820433
|
||||
Croatia,HR,HRV,45.5643442,17.0118954
|
||||
Iran,IR,IRN,32.6475314,54.5643516
|
||||
Bangladesh,BD,BGD,24.4768783,90.2932426
|
||||
Zimbabwe,ZW,ZWE,-19.01688,29.35365015971339
|
||||
Senegal,SN,SEN,14.46517725,-14.765340959100413
|
||||
Malta,MT,MLT,35.8885993,14.4476911
|
||||
Slovenia,SI,SVN,45.8133113,14.4808369
|
||||
Venezuela,VE,VEN,8.0018709,-66.1109318
|
||||
Ukraine,UA,UKR,49.4871968,31.2718321
|
||||
Cayman Islands,KY,CYM,19.703182249999998,-79.9174627243246
|
||||
Guatemala,GT,GTM,15.6356088,-89.8988087
|
||||
Namibia,NA,NAM,-23.2335499,17.3231107
|
||||
Georgia,GE,GEO,32.3293809,-83.1137366
|
||||
Nepal,NP,NPL,28.1083929,84.0917139
|
||||
Iraq,IQ,IRQ,33.0955793,44.1749775
|
||||
Algeria,DZ,DZA,28.0000272,2.9999825
|
||||
Bermuda,BM,BMU,32.3018217,-64.7603583
|
||||
Afghanistan,AF,AFG,33.7680065,66.2385139
|
||||
Albania,AL,ALB,41.000028,19.9999619
|
||||
Sri Lanka,LK,LKA,7.5554942,80.7137847
|
||||
Sudan,SD,SDN,14.5844444,29.4917691
|
||||
Botswana,BW,BWA,-23.1681782,24.5928742
|
||||
Angola,AO,AGO,-11.8775768,17.5691241
|
||||
Syria,SY,SYR,34.6401861,39.0494106
|
||||
Belarus,BY,BLR,53.4250605,27.6971358
|
||||
Bahamas,BS,BHS,24.7736546,-78.0000547
|
||||
Azerbaijan,AZ,AZE,40.3936294,47.7872508
|
||||
Somalia,SO,SOM,8.3676771,49.083416
|
||||
Armenia,AM,ARM,40.7696272,44.6736646
|
||||
Uganda,UG,UGA,1.5333554,32.2166578
|
||||
Jamaica,JM,JAM,18.1850507,-77.3947693
|
||||
Slovakia,SK,SVK,48.7411522,19.4528646
|
||||
Nicaragua,NI,NIC,12.6090157,-85.2936911
|
||||
Kazakhstan,KZ,KAZ,47.2286086,65.2093197
|
||||
Latvia,LV,LVA,56.8406494,24.7537645
|
||||
Liechtenstein,LI,LIE,47.1416307,9.5531527
|
||||
Malawi,MW,MWI,-13.2687204,33.9301963
|
||||
Mauritius,MU,MUS,-20.2759451,57.5703566
|
||||
Mongolia,MN,MNG,46.8250388,103.8499736
|
||||
Montenegro,ME,MNE,42.9868853,19.5180992
|
||||
Panama,PA,PAN,8.559559,-81.1308434
|
||||
Samoa,WS,WSM,-13.7693895,-172.1200508
|
||||
Ecuador,EC,ECU,-1.3397668,-79.3666965
|
||||
Dominican Republic,DO,DOM,19.28131815,-70.035906834967
|
||||
Paraguay,PY,PRY,-23.3165935,-58.1693445
|
||||
Puerto Rico,PR,PRI,18.2214149,-66.41328179513847
|
||||
Cyprus,CY,CYP,34.9823018,33.1451285
|
||||
Cuba,CU,CUB,23.0131338,-80.8328748
|
||||
Lithuania,LT,LTU,55.3500003,23.7499997
|
||||
|
+36711
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
+33985
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
+35874
File diff suppressed because one or more lines are too long
+1310
File diff suppressed because it is too large
Load Diff
+385
@@ -0,0 +1,385 @@
|
||||
Company,Period,Revenue,Net Income,Liabilities,Assets,Equity,ROA (%),ROE (%),Debt to Equity,percentage Debt to Equity
|
||||
Volkswagen AG,12/31/2017,9750496618,516889818.4,21354201295,54861302788,33507101493,942.175.618,1.542.627.668,637.303.746,"0,00%"
|
||||
Siemens AG,12/31/2017,19716237464,1276840007,45009303223,75268101508,30258798286,1.696.389.282,4.219.731.382,1.487.478.214,"283,68%"
|
||||
Allianz SE,12/31/2017,19458831198,1600107100,48538978480,69583711255,21044732775,2.299.542.624,7.603.361.452,2.306.466.848,"329,65%"
|
||||
BMW AG,12/31/2017,18808147150,960184349.6,35382107627,67327482638,31945375011,142.614.028,3.005.706.927,1.107.581.539,"0,00%"
|
||||
BASF SE,12/31/2017,16895580815,1797081911,28309420014,68036567115,39727147101,2.641.347.127,4.523.561.449,71.259.635,"634,80%"
|
||||
Deutsche Telekom AG,12/31/2017,11505351408,1425682028,36680109736,61941763399,25261653663,2.301.649.081,5.643.660.732,1.452.007.467,"388,68%"
|
||||
Daimler AG,12/31/2017,17133317238,1743084807,19707492188,56381587968,36674095780,309.158.516,4.752.904.659,537.368.182,"884,48%"
|
||||
SAP SE,12/31/2017,17560385805,2276360916,40828269592,73785136305,32956866713,3.085.121.245,6.907.091.429,123.883.954,"557,55%"
|
||||
Bayer AG,12/31/2017,18251254610,2670535587,16524775630,29169852309,12645076680,915.512.207,2.111.917.274,130.681.498,"1616,08%"
|
||||
Deutsche Bank AG,12/31/2017,9318303083,958508333.7,11123712659,49692010679,38568298020,1.928.898.269,2.485.223.313,288.415.959,"0,00%"
|
||||
Porsche AG,12/31/2017,12119018742,894091080.3,28361763209,73909302825,45547539617,120.971.386,1.962.984.363,622.684.857,"0,00%"
|
||||
Merck KGaA,12/31/2017,11760953647,812341476,29296072481,51828662312,22532589831,1.567.359.526,3.605.184.677,130.016.446,"277,29%"
|
||||
Volkswagen AG,12/31/2018,15132692627,1296423798,22603216585,52612061095,30008844510,2.464.119.008,432.013.901,753.218.491,"573,56%"
|
||||
Siemens AG,12/31/2018,9738110535,1128540207,47796930083,86681431720,38884501637,1.301.939.971,2.902.287.954,1.229.202.589,"236,11%"
|
||||
Allianz SE,12/31/2018,11358222175,1091045445,25112465464,47584136480,22471671016,229.287.642,4.855.203.888,1.117.516.603,"434,46%"
|
||||
BMW AG,12/31/2018,6557505339,618883604.9,33315961378,60538144207,27222182829,1.022.303.562,2.273.453.267,1.223.853.414,"0,00%"
|
||||
BASF SE,12/31/2018,10270182691,708863277.1,42708053991,57050114588,14342060597,124.252.735,4.942.548.334,2.977.818.543,"0,00%"
|
||||
Deutsche Telekom AG,12/31/2018,15273880507,1698666925,35514608139,56589637247,21075029108,3.001.727.892,8.060.092.903,1.685.151.084,"478,30%"
|
||||
Daimler AG,12/31/2018,14737735881,1726421482,41539802392,60496305967,18956503575,2.853.763.473,9.107.278.014,2.191.321.951,"415,61%"
|
||||
SAP SE,12/31/2018,10184334320,1365996842,44932510908,90595603440,45663092533,1.507.795.953,299.146.809,98.400.061,"304,01%"
|
||||
Bayer AG,12/31/2018,18541451915,2242441772,28896911499,58238408654,29341497155,3.850.451.659,7.642.560.842,984.847.888,"776,01%"
|
||||
Deutsche Bank AG,12/31/2018,8808021584,1274941171,36770248755,55390246152,18619997397,2.301.743.104,6.847.160.844,197.477.196,"346,73%"
|
||||
Porsche AG,12/31/2018,7955302121,939711762.4,35954156213,65117507958,29163351745,1.443.101.543,3.222.235.121,1.232.854.047,"0,00%"
|
||||
Merck KGaA,12/31/2018,14241334382,1165009578,37401670447,71252783664,33851113217,1.635.037.283,3.441.569.472,1.104.887.458,"311,49%"
|
||||
Volkswagen AG,12/31/2019,15448794996,1760261975,43856467673,93429721556,49573253883,1.884.049.257,3.550.830.008,884.680.029,"401,37%"
|
||||
Siemens AG,12/31/2019,12841952642,1411970100,29126693633,55130546327,26003852694,2.561.139.322,5.429.849.634,1.120.091.472,"484,77%"
|
||||
Allianz SE,12/31/2019,15508664175,1417702229,18132341778,46620472331,28488130553,3.040.943.514,4.976.466.345,636.487.598,"781,86%"
|
||||
BMW AG,12/31/2019,8859340166,1144565565,40538252302,78168514026,37630261724,1.464.228.377,3.041.609.365,1.077.277.979,"282,34%"
|
||||
BASF SE,12/31/2019,17877114298,1224635136,31860731568,65500282723,33639551155,1.869.663.892,3.640.462.175,947.121.185,"384,37%"
|
||||
Deutsche Telekom AG,12/31/2019,15796654133,805016265.8,11494162751,47776069193,36281906442,1.684.978.022,2.218.781.604,31.680.151,"0,00%"
|
||||
Daimler AG,12/31/2019,10937481164,1145842379,19578678306,31178454239,11599775933,3.675.109.647,9.878.142.355,1.687.849.698,"585,25%"
|
||||
SAP SE,12/31/2019,8046709255,662165230.7,39424977655,89177961232,49752983577,742.521.158,1.330.905.572,79.241.434,"0,00%"
|
||||
Bayer AG,12/31/2019,17402979577,1387637302,31887265220,61548783018,29661517798,2.254.532.476,467.824.105,1.075.038.217,"435,17%"
|
||||
Deutsche Bank AG,12/31/2019,9814156310,576451352.5,25131659304,46301105258,21169445954,1.245.005.598,2.723.034.669,1.187.166.606,"0,00%"
|
||||
Porsche AG,12/31/2019,15806884536,845076735.9,34376508276,55201546863,20825038587,1.530.893.216,405.798.401,1.650.729.632,"0,00%"
|
||||
Merck KGaA,12/31/2019,17666094987,1547381835,47717175754,76466035769,28748860015,2.023.619.793,5.382.411.109,1.659.793.666,"324,28%"
|
||||
Volkswagen AG,12/31/2020,6074909806,875656602.5,42262965768,80569106208,38306140440,1.086.839.167,2.285.943.174,1.103.294.806,"0,00%"
|
||||
Siemens AG,12/31/2020,17731550761,1893885668,10137976567,39067986912,28930010345,4.847.666.382,6.546.439.648,350.431.142,"1868,11%"
|
||||
Allianz SE,12/31/2020,10098889889,1161225924,39497490703,77791788915,38294298213,1.492.735.853,3.032.372.908,1.031.419.625,"294,00%"
|
||||
BMW AG,12/31/2020,6940311223,962499322.1,29150494667,41331347093,12180852427,2.328.739.298,7.901.740.276,2.393.140.779,"0,00%"
|
||||
BASF SE,12/31/2020,11583572658,1407524593,37122614462,82673694404,45551079942,1.702.505.982,3.089.991.707,814.966.725,"379,16%"
|
||||
Deutsche Telekom AG,12/31/2020,19614896783,1231038198,45625478678,94598230353,48972751675,1.301.333.221,2.513.720.704,931.650.298,"269,81%"
|
||||
Daimler AG,12/31/2020,8582626126,482111535,40109942612,86478204177,46368261566,55.749.485,1.039.744.685,865.030.115,"120,20%"
|
||||
SAP SE,12/31/2020,9687560178,1027662516,40817136100,65594337613,24777201513,1.566.693.946,4.147.613.343,1.647.366.676,"251,77%"
|
||||
Bayer AG,12/31/2020,14954913916,1086100755,49223539015,87910824435,38687285420,1.235.457.365,2.807.384.243,1.272.344.091,"220,65%"
|
||||
Deutsche Bank AG,12/31/2020,16454038855,1761523797,29090502114,64555499757,35464997643,2.728.696.708,4.966.936.173,820.259.525,"605,53%"
|
||||
Porsche AG,12/31/2020,14994514428,1118453310,13089516203,26894911034,13805394830,4.158.605.723,8.101.566.983,948.145.009,"854,46%"
|
||||
Merck KGaA,12/31/2020,5897253747,625948791.2,38506883950,51548729961,13041846011,1.214.285.573,4.799.541.343,2.952.563.918,"0,00%"
|
||||
Volkswagen AG,12/31/2021,11544833810,1709962819,14660160673,40260511363,25600350690,4.247.245.654,6.679.450.762,572.654.682,"1166,40%"
|
||||
Siemens AG,12/31/2021,15389996263,923394181.6,21808491986,40095375980,18286883994,2.302.994.196,5.049.488.923,1.192.575.618,"0,00%"
|
||||
Allianz SE,12/31/2021,9380555380,1350100953,41223028779,68933524997,27710496218,195.855.493,4.872.164.475,1.487.632.284,"327,51%"
|
||||
BMW AG,12/31/2021,18321682480,1436804767,33230894855,73659285546,40428390691,1.950.609.154,355.394.994,821.969.272,"432,37%"
|
||||
BASF SE,12/31/2021,18793891125,2702710428,12423193661,54396450621,41973256961,4.968.541.876,6.439.124.871,295.978.787,"2175,54%"
|
||||
Deutsche Telekom AG,12/31/2021,18588737724,2116759905,15557689149,64787149652,49229460503,3.267.252.713,429.978.286,316.023.962,"1360,59%"
|
||||
Daimler AG,12/31/2021,19604996789,2406144332,39627936994,77954949919,38327012925,3.086.583.128,6.277.933.363,1.033.942.746,"607,18%"
|
||||
SAP SE,12/31/2021,12465229611,800983300.4,28257880783,51866957482,23609076699,1.544.303.617,3.392.692.186,1.196.907.492,"0,00%"
|
||||
Bayer AG,12/31/2021,13009192330,1451167596,31049801948,49482603845,18432801897,2.932.682.364,7.872.745.579,1.684.486.283,"467,37%"
|
||||
Deutsche Bank AG,12/31/2021,10414516344,1120888368,33962234582,80244374780,46282140198,1.396.843.544,2.421.859.412,733.808.645,"330,04%"
|
||||
Porsche AG,12/31/2021,14047287806,1489899027,14851641486,42561319258,27709677772,3.500.594.092,5.376.818.307,535.973.085,"1003,19%"
|
||||
Merck KGaA,12/31/2021,12917187369,1708731611,17319486583,43037893850,25718407267,3.970.295.613,664.400.246,673.427.651,"986,59%"
|
||||
Volkswagen AG,12/31/2022,11168902003,587168043.4,20072750684,67464272122,47391521437,870.339.255,1.238.972.765,423.551.515,"0,00%"
|
||||
Siemens AG,12/31/2022,16861000234,918419211.5,32873432607,81487723152,48614290545,1.127.064.515,1.889.195.957,676.209.243,"0,00%"
|
||||
Allianz SE,12/31/2022,16472180169,2043609431,34718393733,62464433746,27746040013,3.271.636.847,736.540.937,125.129.185,"588,62%"
|
||||
BMW AG,12/31/2022,7382434260,1093800017,35338248318,45898916976,10560668658,2.383.062.802,1.035.729.888,3.346.213.148,"309,52%"
|
||||
BASF SE,12/31/2022,13018762765,1704211990,11167034881,30031637051,18864602170,567.472.225,9.033.914.282,591.957.083,"1526,11%"
|
||||
Deutsche Telekom AG,12/31/2022,9420241101,990420474.4,12931047199,34081834188,21150786988,2.906.006.963,4.682.664.881,611.374.282,"0,00%"
|
||||
Daimler AG,12/31/2022,9363037363,704852259.1,34778269496,54701473950,19923204453,1.288.543.449,3.537.845.836,1.745.616.253,"0,00%"
|
||||
SAP SE,12/31/2022,16805465254,1837934274,10102113588,37939001132,27836887544,4.844.445.609,6.602.513.558,362.903.847,"1819,36%"
|
||||
Bayer AG,12/31/2022,19647577142,1826544478,10046371516,37513857859,27467486343,4.868.985.975,6.649.842.126,365.755.038,"1818,11%"
|
||||
Deutsche Bank AG,12/31/2022,7252204354,949551701.2,44858188981,86269206025,41411017045,110.068.441,229.299.295,1.083.242.871,"0,00%"
|
||||
Porsche AG,12/31/2022,5536870879,298030924.1,19445445005,30265348449,10819903444,984.726.558,275.446.935,1.797.192.101,"0,00%"
|
||||
Merck KGaA,12/31/2022,7610452133,536310750.1,48688712492,88688270941,39999558449,604.714.405,1.340.791.676,1.217.231.249,"0,00%"
|
||||
Volkswagen AG,12/31/2023,16782030250,1481049554,32384571623,78417189252,46032617629,1.888.679.725,3.217.391.559,70.351.358,"457,33%"
|
||||
Siemens AG,12/31/2023,8282175431,459390813.5,28551545477,64407150986,35855605509,713.260.572,1.281.224.531,796.292.381,"0,00%"
|
||||
Allianz SE,12/31/2023,13941085692,1722322782,32850325731,66248470463,33398144732,2.599.792.523,5.156.941.487,983.597.322,"524,29%"
|
||||
BMW AG,12/31/2023,8469619625,602960048.5,32716601950,78863289364,46146687414,764.563.656,1.306.616.103,708.969.674,"0,00%"
|
||||
BASF SE,12/31/2023,12852011317,684110085.9,18179739764,53040583203,34860843439,1.289.786.131,1.962.402.565,521.494.547,"0,00%"
|
||||
Deutsche Telekom AG,12/31/2023,12752580163,884167446.6,28470052842,53978751141,25508698298,1.637.991.669,3.466.140.986,1.116.091.951,"0,00%"
|
||||
Daimler AG,12/31/2023,5161220914,527374446.2,15838145692,51630867307,35792721615,1.021.432.476,1.473.412.533,442.496.267,"0,00%"
|
||||
SAP SE,12/31/2023,13414872686,1069408471,35679098743,80239095201,44559996459,1.332.777.331,2.399.929.435,800.697.971,"299,73%"
|
||||
Bayer AG,12/31/2023,15851738346,905684923,42371799830,52389418748,10017618918,1.728.755.433,9.040.920.106,422.972.766,"213,75%"
|
||||
Deutsche Bank AG,12/31/2023,12421650351,967097057.5,33786415736,79888234351,46101818615,1.210.562.563,2.097.741.665,73.286.514,"0,00%"
|
||||
Porsche AG,12/31/2023,16438581863,1419961878,19415830018,36726316966,17310486949,386.633.345,8.202.899.676,1.121.622.406,"731,34%"
|
||||
Merck KGaA,12/31/2023,17637490503,2103890014,44486109206,61628452463,17142343256,3.413.829.051,1.227.305.965,259.510.083,"472,93%"
|
||||
Volkswagen AG,12/31/2024,14186610709,2107123762,14632441063,32642980976,18010539913,6.455.059.247,1.169.939.253,812.437.669,"1440,04%"
|
||||
Siemens AG,12/31/2024,8451674463,530013312.6,43381572844,83248031989,39866459145,636.667.678,1.329.471.751,1.088.172.207,"0,00%"
|
||||
Allianz SE,12/31/2024,7203400075,631684017.9,23852825717,41830939577,17978113860,1.510.088.046,3.513.627.863,13.267.702,"0,00%"
|
||||
BMW AG,12/31/2024,6152045684,707968936.5,29243056689,57427208762,28184152074,1.232.810.982,2.511.939.811,1.037.570.923,"0,00%"
|
||||
BASF SE,12/31/2024,15113132584,1914494156,43259483243,88221659272,44962176029,2.170.095.385,4.258.010.455,962.130.552,"442,56%"
|
||||
Deutsche Telekom AG,12/31/2024,19139621006,2834016899,18313729720,41643539977,23329810257,6.805.417.841,1.214.762.087,784.992.656,"1547,48%"
|
||||
Daimler AG,12/31/2024,16456922307,1492220093,48085311015,79618978403,31533667388,1.874.201.507,4.732.148.895,1.524.888.001,"310,33%"
|
||||
SAP SE,12/31/2024,16754700510,923006607.2,49206362475,96053458782,46847096308,96.093.011,1.970.253.612,105.036.099,"0,00%"
|
||||
Bayer AG,12/31/2024,5728072323,604515777.3,34398569588,80121015584,45722445996,754.503.388,1.322.142.252,752.334.413,"0,00%"
|
||||
Deutsche Bank AG,12/31/2024,19852203756,2223753463,36451064643,76222443508,39771378864,2.917.452.342,5.591.341.126,916.514.983,"610,07%"
|
||||
Porsche AG,12/31/2024,13056746207,1500333956,33698449632,62560115073,28861665442,2.398.227.615,519.836.237,1.167.585.069,"445,22%"
|
||||
Merck KGaA,12/31/2024,18915504026,2413914962,30820597362,65357495789,34536898427,3.693.401.855,6.989.379.684,892.396.213,"783,21%"
|
||||
Volkswagen AG,3/31/2017,19695988685,1329397719,24520605687,58120450678,33599844991,2.287.314.883,3.956.559.082,729.783.298,"542,16%"
|
||||
Siemens AG,3/31/2017,19833452617,1519697640,16063730954,53272532961,37208802008,2.852.685.156,4.084.242.325,431.718.574,"946,04%"
|
||||
Allianz SE,3/31/2017,9164246774,981041952.6,19407851173,43999960378,24592109205,2.229.642.809,3.989.255.027,789.190.183,"0,00%"
|
||||
BMW AG,3/31/2017,18765462866,1081539894,34543581067,80126669599,45583088532,1.349.787.655,2.372.677.959,75.781.572,"313,09%"
|
||||
BASF SE,3/31/2017,16836243798,2100216671,19360624506,64506392372,45145767866,3.255.827.204,4.652.078.745,428.846.942,"1084,79%"
|
||||
Deutsche Telekom AG,3/31/2017,13951553720,1348710564,21828517855,62780698314,40952180459,2.148.288.567,3.293.379.129,533.024.557,"617,87%"
|
||||
Daimler AG,3/31/2017,7142318181,980884827.4,33400146455,69867319792,36467173338,1.403.925.083,2.689.774.769,915.896.227,"0,00%"
|
||||
SAP SE,3/31/2017,6568715630,719090971.2,18570025227,65782612977,47212587750,1.093.132.271,1.523.091.628,393.327.841,"0,00%"
|
||||
Bayer AG,3/31/2017,13027840283,1127343336,48157761467,85094142147,36936380680,1.324.818.968,3.052.121.825,1.303.802.933,"234,09%"
|
||||
Deutsche Bank AG,3/31/2017,14843015558,1680873545,14840428879,46770654578,31930225699,3.593.863.632,5.264.208.155,464.776.824,"1132,63%"
|
||||
Porsche AG,3/31/2017,5883512064,440184439.5,47041623953,76926443805,29884819852,572.214.726,1.472.936.567,1.574.097.625,"0,00%"
|
||||
Merck KGaA,3/31/2017,6974057939,389688114,31405828053,49969368014,18563539961,779.853.997,2.099.212.299,1.691.801.678,"124,08%"
|
||||
Volkswagen AG,3/31/2018,15989256775,1291419013,42659096630,53863933584,11204836955,2.397.557.934,1.152.554.935,3.807.203.693,"302,73%"
|
||||
Siemens AG,3/31/2018,10138254767,1262116952,45296373926,72972094010,27675720085,1.729.588.508,45.603.762,163.668.276,"278,64%"
|
||||
Allianz SE,3/31/2018,17610247426,2015329868,40259793264,68504291957,28244498693,294.190.307,7.135.300.541,1.425.403.003,"500,58%"
|
||||
BMW AG,3/31/2018,7335760537,743322627.7,48776154787,95122657900,46346503113,781.435.931,1.603.837.566,1.052.423.624,"0,00%"
|
||||
BASF SE,3/31/2018,16240083291,1330285061,20620789244,35863861269,15243072025,3.709.263.346,872.714.541,1.352.797.468,"645,12%"
|
||||
Deutsche Telekom AG,3/31/2018,17427808963,1967928248,36127253691,72733202053,36605948363,2.705.680.752,5.375.979.415,986.923.036,"544,72%"
|
||||
Daimler AG,3/31/2018,8641226117,983139976.9,36665610699,59016046453,22350435755,1.665.885.867,4.398.750.824,164.048.751,"0,00%"
|
||||
SAP SE,3/31/2018,19774628627,1421900578,42095348780,63447988091,21352639311,224.104.912,6.659.132.662,1.971.435.389,"337,78%"
|
||||
Bayer AG,3/31/2018,6560227745,884011217.4,46074070728,59231903754,13157833026,1.492.457.884,6.718.516.763,3.501.645.798,"0,00%"
|
||||
Deutsche Bank AG,3/31/2018,13740924616,1900766775,46035800087,57764409125,11728609038,3.290.550.018,1.620.624.209,3.925.086.081,"412,89%"
|
||||
Porsche AG,3/31/2018,17555661518,1335299860,46994742351,88007178782,41012436432,1.517.262.431,3.255.841.341,1.145.865.655,"284,14%"
|
||||
Merck KGaA,3/31/2018,9318197850,641817429.8,48172882387,65628926423,17456044036,977.949,3.676.763.352,2.759.667.785,"0,00%"
|
||||
Volkswagen AG,3/31/2019,14907937768,1438598483,20854112480,54405171112,33551058632,2.644.231.152,4.287.788.646,621.563.472,"689,84%"
|
||||
Siemens AG,3/31/2019,11643264079,1453293868,35825693285,75665486452,39839793167,1.920.682.647,3.647.844.912,899.243.958,"405,66%"
|
||||
Allianz SE,3/31/2019,11744716344,1284599881,31388781794,60735397643,29346615849,2.115.076.103,4.377.335.663,1.069.587.783,"409,25%"
|
||||
BMW AG,3/31/2019,15132523755,1022601951,38023980809,86825852703,48801871894,1.177.762.059,2.095.415.424,779.150.048,"268,94%"
|
||||
BASF SE,3/31/2019,13827496449,1133835190,46117811894,82240340578,36122528684,1.378.684.939,3.138.858.853,127.670.497,"245,86%"
|
||||
Deutsche Telekom AG,3/31/2019,17933328881,1112803764,47538352610,96220600130,48682247520,1.156.513.016,2.285.851.252,976.502.833,"234,09%"
|
||||
Daimler AG,3/31/2019,11018589464,1097018126,21597719176,57241727973,35644008796,1.916.465.776,3.077.706.922,605.928.455,"507,93%"
|
||||
SAP SE,3/31/2019,18300753695,989934361.3,24181084351,42408075770,18226991420,2.334.306.245,5.431.145.154,1.326.663.507,"0,00%"
|
||||
Bayer AG,3/31/2019,15790567330,951709509,15068249757,54818573513,39750323756,1.736.107.761,2.394.218.258,379.072.378,"631,60%"
|
||||
Deutsche Bank AG,3/31/2019,11192425819,1563079220,10546244209,38688850201,28142605992,4.040.128.387,5.554.138.164,374.742.986,"1482,12%"
|
||||
Porsche AG,3/31/2019,12923331618,1676027156,26939537534,57056948432,30117410898,2.937.463.714,5.564.977.554,894.483.846,"622,14%"
|
||||
Merck KGaA,3/31/2019,19217681417,2238884002,12733925598,36970270841,24236345242,6.055.903.707,9.237.712.947,525.406.181,"1758,20%"
|
||||
Volkswagen AG,3/31/2020,15933280023,1743770422,44490184859,59864740520,15374555661,2.912.850.548,1.134.192.402,289.375.419,"391,94%"
|
||||
Siemens AG,3/31/2020,15947068708,835207323,19623471264,54178518349,34555047086,1.541.583.913,241.703.425,567.890.161,"425,62%"
|
||||
Allianz SE,3/31/2020,9263668849,635671166.8,12187372783,46576570031,34389197248,1.364.787.416,1.848.461.778,354.395.385,"0,00%"
|
||||
BMW AG,3/31/2020,12864732630,1045458883,40800355871,78928197945,38127842074,1.324.569.559,2.741.982.831,1.070.093.497,"256,24%"
|
||||
BASF SE,3/31/2020,9927936838,1197785480,37635556954,86394249061,48758692107,138.641.807,2.456.557.854,7.718.738,"318,26%"
|
||||
Deutsche Telekom AG,3/31/2020,17673360637,1501884164,32122639453,73938353262,41815713810,2.031.265.369,3.591.674.104,768.195.411,"467,55%"
|
||||
Daimler AG,3/31/2020,17781237366,1179606125,18447303156,42728183777,24280880621,2.760.721.427,4.858.168.628,759.746.051,"639,45%"
|
||||
SAP SE,3/31/2020,9236017256,529982877.3,48081211472,96574017987,48492806515,548.784.123,10.929.103,991.512.245,"0,00%"
|
||||
Bayer AG,3/31/2020,14107423353,1367599932,13615077246,27849556029,14234478784,4.910.670.497,9.607.657.241,956.485.829,"1004,47%"
|
||||
Deutsche Bank AG,3/31/2020,11812773682,980285159.4,44322011186,92083567435,47761556249,1.064.560.363,2.052.456.487,927.985.071,"0,00%"
|
||||
Porsche AG,3/31/2020,10779438774,1358943185,33525281805,71745524050,38220242245,189.411.563,3.555.558.796,877.160.369,"405,35%"
|
||||
Merck KGaA,3/31/2020,15236467952,894574066,36909348765,72030787429,35121438664,1.241.932.926,2.547.088.331,1.050.906.517,"242,37%"
|
||||
Volkswagen AG,3/31/2021,19710269369,1137314233,36066540496,64427162211,28360621715,1.765.271.344,4.010.187.943,1.271.711.913,"315,34%"
|
||||
Siemens AG,3/31/2021,18942636889,1771268697,15918566390,49830943520,33912377129,3.554.555.808,5.223.074.426,469.402.848,"1112,71%"
|
||||
Allianz SE,3/31/2021,8226780982,522858114.5,39148815906,54906293986,15757478080,952.273.549,3.318.158.603,2.484.459.487,"0,00%"
|
||||
BMW AG,3/31/2021,8417325544,742678238,36333752143,50307101979,13973349836,147.628.905,5.314.962.029,2.600.217.741,"204,40%"
|
||||
BASF SE,3/31/2021,6644620233,990744714.5,21424039042,52878014917,31453975875,1.873.642.035,314.982.347,681.123.402,"0,00%"
|
||||
Deutsche Telekom AG,3/31/2021,6356573780,831921707.3,22622163266,70081083207,47458919941,1.187.084.544,1.752.930.131,476.668.312,"0,00%"
|
||||
Daimler AG,3/31/2021,17838709007,1559286116,42906482998,53748741344,10842258346,2.901.065.359,1.438.156.209,3.957.338.188,"363,42%"
|
||||
SAP SE,3/31/2021,6588278496,731216298.1,11461577968,53638409260,42176831292,1.363.232.632,1.733.691.877,271.750.571,"0,00%"
|
||||
Bayer AG,3/31/2021,15481381698,1813221637,20090535950,39516175321,19425639371,4.588.555.503,933.416.709,1.034.227.784,"902,53%"
|
||||
Deutsche Bank AG,3/31/2021,8720665039,1028066418,14173153454,61397948008,47224794554,1.674.431.233,2.176.963.241,300.121.019,"725,36%"
|
||||
Porsche AG,3/31/2021,7884337935,1152213820,19342832660,61176556532,41833723872,1.883.423.791,2.754.270.272,462.374.153,"595,68%"
|
||||
Merck KGaA,3/31/2021,14786170161,1680074258,26820455279,61714717112,34894261833,2.722.323.518,4.814.757.986,768.620.795,"626,42%"
|
||||
Volkswagen AG,3/31/2022,17383281301,2467286454,26847350661,44033610784,17186260123,5.603.189.041,1.435.615.681,1.562.140.365,"919,01%"
|
||||
Siemens AG,3/31/2022,7786480387,484400549.7,33021752886,60040484961,27018732075,806.789.869,1.792.832.278,122.217.996,"0,00%"
|
||||
Allianz SE,3/31/2022,16640634818,2400803163,16356578486,32583061956,16226483469,7.368.255.218,1.479.558.505,100.801.745,"1467,79%"
|
||||
BMW AG,3/31/2022,11652663475,1123917078,30713910663,55316480279,24602569617,2.031.794.272,4.568.291.423,1.248.402.551,"365,93%"
|
||||
BASF SE,3/31/2022,7020216669,504888024.6,19566830326,62928514411,43361684085,802.319.949,1.164.364.427,451.247.011,"0,00%"
|
||||
Deutsche Telekom AG,3/31/2022,6523953565,440649540.1,18792941935,60677034815,41884092879,726.221.282,1.052.068.959,448.689.243,"0,00%"
|
||||
Daimler AG,3/31/2022,13358841713,1013271417,43437924866,86840936189,43403011323,1.166.813.097,2.334.564.784,1.000.804.404,"233,27%"
|
||||
SAP SE,3/31/2022,14896500404,1471513321,30918779103,51643572423,20724793320,2.849.363.924,7.100.255.712,1.491.873.942,"475,93%"
|
||||
Bayer AG,3/31/2022,9090799678,904181650.9,49055627276,76658563614,27602936339,1.179.492.034,3.275.671.979,1.777.188.726,"0,00%"
|
||||
Deutsche Bank AG,3/31/2022,15495522952,1232326295,38566723026,72355738353,33789015327,1.703.149.361,3.647.121.064,1.141.398.252,"319,53%"
|
||||
Porsche AG,3/31/2022,10774855240,975556879.2,15417730087,40879706571,25461976485,2.386.408.712,3.831.426.362,605.519.768,"0,00%"
|
||||
Merck KGaA,3/31/2022,7570645554,419794972.7,36325434183,64924945929,28599511746,646.585.017,1.467.839.648,127.014.176,"0,00%"
|
||||
Volkswagen AG,3/31/2023,13460197722,1122578628,37590881745,71858135493,34267253748,1.562.215.079,3.275.951.543,1.096.991.373,"298,63%"
|
||||
Siemens AG,3/31/2023,13888922534,1095226689,47947497289,70943083888,22995586599,1.543.810.374,4.762.769.081,2.085.073.894,"228,42%"
|
||||
Allianz SE,3/31/2023,14581130415,1529637744,32236390204,47068791910,14832401705,3.249.791.809,1.031.281.228,2.173.376.291,"474,51%"
|
||||
BMW AG,3/31/2023,19456335114,2009563555,47081333393,64537094762,17455761369,3.113.811.618,1.151.232.256,2.697.180.169,"426,83%"
|
||||
BASF SE,3/31/2023,9496852852,691692392.2,36704020555,77712763784,41008743229,890.062.788,1.686.694.928,895.029.149,"0,00%"
|
||||
Deutsche Telekom AG,3/31/2023,10942719196,1439735669,35021279445,51489159430,16467879985,279.619.183,8.742.689.833,2.126.641.649,"411,10%"
|
||||
Daimler AG,3/31/2023,13197347212,691428622,43343894473,57721074868,14377180395,1.197.878.979,4.809.208.781,3.014.770.162,"159,52%"
|
||||
SAP SE,3/31/2023,14505450248,863046066.9,22921333603,46384701674,23463368071,1.860.626.534,3.678.270.163,976.898.693,"0,00%"
|
||||
Bayer AG,3/31/2023,15711957620,2201969781,29454258021,71356904907,41902646886,3.085.853.826,5.254.965.841,702.921.181,"747,59%"
|
||||
Deutsche Bank AG,3/31/2023,7317098693,887813882.3,23138553563,72645962598,49507409035,1.222.110.425,1.793.294.983,467.375.571,"0,00%"
|
||||
Porsche AG,3/31/2023,8880891013,668545569.7,40027402595,66992846031,26965443436,997.935.764,247.926.785,1.484.396.231,"0,00%"
|
||||
Merck KGaA,3/31/2023,18085416710,2126765225,44629946816,61554558843,16924612027,3.455.089.704,1.256.610.918,2.636.984.927,"476,53%"
|
||||
Volkswagen AG,3/31/2024,7309084994,1039334580,30910642675,64531416585,33620773909,161.058.696,3.091.346.389,91.939.117,"336,24%"
|
||||
Siemens AG,3/31/2024,15785741204,1106822544,13225063565,51661794785,38436731220,2.142.439.202,287.959.592,344.073.576,"836,91%"
|
||||
Allianz SE,3/31/2024,18801502624,1006058196,48264388990,86904149774,38639760784,1.157.664.161,2.603.686.398,1.249.086.123,"208,45%"
|
||||
BMW AG,3/31/2024,15848632086,2129654605,38842203399,87315704066,48473500667,2.439.028.154,4.393.440.901,80.130.799,"548,28%"
|
||||
BASF SE,3/31/2024,19756965859,1431835601,10848294146,60234434421,49386140275,2.377.104.749,2.899.266.055,219.662.725,"1319,87%"
|
||||
Deutsche Telekom AG,3/31/2024,16377852382,1007117429,43228375752,78855235024,35626859272,1.277.172.567,2.826.848.759,1.213.364.766,"232,98%"
|
||||
Daimler AG,3/31/2024,17637310202,1618745275,24936555962,37936073156,12999517193,4.267.034.357,124.523.492,1.918.267.855,"649,15%"
|
||||
SAP SE,3/31/2024,13351789947,761306516.2,45369290420,94052696634,48683406213,809.446.771,1.563.790.571,931.925.146,"0,00%"
|
||||
Bayer AG,3/31/2024,10194351917,1512864021,26311852797,62689824382,36377971585,2.413.252.926,4.158.736.606,723.290.817,"574,97%"
|
||||
Deutsche Bank AG,3/31/2024,19417487313,2333015849,28301209342,55585382174,27284172832,4.197.175.153,8.550.802.927,1.037.275.695,"824,35%"
|
||||
Porsche AG,3/31/2024,12668426079,744579528.3,33183980227,53340703796,20156723569,1.395.893.708,3.693.951.181,1.646.298.324,"0,00%"
|
||||
Merck KGaA,3/31/2024,18818295502,2691544192,27944602045,74405164472,46460562427,3.617.415.823,5.793.180.392,601.469.302,"963,17%"
|
||||
Volkswagen AG,6/30/2017,7201825633,722080990.6,27556950386,53860356064,26303405678,1.340.653.949,2.745.199.612,1.047.657.126,"0,00%"
|
||||
Siemens AG,6/30/2017,9065572324,736570414.4,47957169639,95650487131,47693317491,770.064.468,1.544.389.137,1.005.532.267,"0,00%"
|
||||
Allianz SE,6/30/2017,14340884258,1865680236,22448503705,35401436947,12952933241,5.270.069.233,1.440.353.472,1.733.082.637,"831,09%"
|
||||
BMW AG,6/30/2017,10211703797,526461438.3,13575717212,61177654063,47601936851,860.545.319,1.105.966.423,285.192.539,"0,00%"
|
||||
BASF SE,6/30/2017,16139422505,1276985447,16542748372,53339154988,36796406616,2.394.086.384,3.470.408.021,449.575.105,"771,93%"
|
||||
Deutsche Telekom AG,6/30/2017,15409119271,924345905.8,44651352138,77649206644,32997854506,1.190.412.556,2.801.230.321,1.353.159.252,"0,00%"
|
||||
Daimler AG,6/30/2017,10611576433,1197653535,31728621908,65800353827,34071731919,1.820.132.363,3.515.094.384,931.230.088,"377,47%"
|
||||
SAP SE,6/30/2017,6644029236,744873003.7,11294935497,23437806831,12142871334,317.808.321,6.134.241.097,930.170.072,"0,00%"
|
||||
Bayer AG,6/30/2017,8439918128,854234127.5,26356391355,61242421820,34886030465,139.484.054,2.448.642.382,755.499.866,"0,00%"
|
||||
Deutsche Bank AG,6/30/2017,19544012256,2752792674,13706520368,55551723268,41845202900,4.955.368.641,6.578.514.343,327.552.967,"2008,38%"
|
||||
Porsche AG,6/30/2017,11523447744,1069672005,31531931981,51328720570,19796788588,2.083.963.896,5.403.260.231,1.592.780.154,"339,23%"
|
||||
Merck KGaA,6/30/2017,11003803134,1050945998,30579291828,50859030282,20279738454,2.066.390.162,5.182.246.312,1.507.874.073,"343,68%"
|
||||
Volkswagen AG,6/30/2018,6601886883,674015397.4,48397997453,95156833814,46758836361,708.320.538,1.441.471.709,1.035.055.643,"0,00%"
|
||||
Siemens AG,6/30/2018,11314535587,1340341283,33163887180,56794362553,23630475373,2.359.990.011,5.672.087.683,1.403.437.157,"404,16%"
|
||||
Allianz SE,6/30/2018,11661846976,1354192659,23626577882,54731462963,31104885082,247.424.897,4.353.633.376,759.577.726,"573,16%"
|
||||
BMW AG,6/30/2018,17315578796,1167741135,16852576890,50991540077,34138963187,2.290.068.378,342.055.243,493.646.418,"692,92%"
|
||||
BASF SE,6/30/2018,11432373323,902833070.5,15796422658,55141147698,39344725041,1.637.312.802,2.294.673.732,401.487.687,"0,00%"
|
||||
Deutsche Telekom AG,6/30/2018,10561657912,1025524147,18824834094,53785357297,34960523204,1.906.697.655,2.933.377.572,538.459.736,"544,77%"
|
||||
Daimler AG,6/30/2018,18960217812,2711256442,20217118393,63441922522,43224804128,4.273.603.847,6.272.455.125,467.720.301,"1341,07%"
|
||||
SAP SE,6/30/2018,5282345417,541864195.9,34968772981,55603015081,20634242100,974.523.045,2.626.043.609,1.694.696.263,"0,00%"
|
||||
Bayer AG,6/30/2018,14443060707,1684483053,37340600075,64364816177,27024216101,2.617.086.715,6.233.235.581,138.174.591,"451,11%"
|
||||
Deutsche Bank AG,6/30/2018,7788761208,663079894,30096796442,49497014532,19400218090,1.339.636.138,3.417.899.175,155.136.382,"220,32%"
|
||||
Porsche AG,6/30/2018,9586227654,1382170553,40862854527,89907869527,49045015000,1.537.318.769,2.818.167.256,833.170.395,"338,25%"
|
||||
Merck KGaA,6/30/2018,7868422908,477697388.2,36789908510,81877040048,45087131537,583.432.655,1.059.498.291,815.973.588,"0,00%"
|
||||
Volkswagen AG,6/30/2019,8797334817,1311084923,25365853191,40151924792,14786071601,3.265.310.268,8.867.026.743,1.715.523.492,"516,87%"
|
||||
Siemens AG,6/30/2019,6550073893,733627118.4,19919552350,37424903073,17505350723,1.960.264.578,4.190.873.579,1.137.912.211,"0,00%"
|
||||
Allianz SE,6/30/2019,9612688482,1071424359,26052899280,55802879567,29749980287,1.920.016.257,3.601.428.805,875.728.287,"411,25%"
|
||||
BMW AG,6/30/2019,13411319092,782523298.9,19531535755,37657712776,18126177021,2.077.989.451,4.317.089.577,1.077.531.999,"0,00%"
|
||||
BASF SE,6/30/2019,11534207296,1513985001,19270767207,53405386175,34134618968,2.834.891.963,4.435.335.874,564.551.994,"785,64%"
|
||||
Deutsche Telekom AG,6/30/2019,9246129285,1035650167,29184989731,52641709425,23456719694,1.967.356.642,4.415.153.442,124.420.593,"354,86%"
|
||||
Daimler AG,6/30/2019,12504841895,639354361.8,41871491156,82039997300,40168506143,779.320.311,1.591.680.705,1.042.396.026,"0,00%"
|
||||
SAP SE,6/30/2019,13878289168,932271478.5,29658734145,62964273740,33305539595,1.480.635.642,2.799.148.399,890.504.538,"0,00%"
|
||||
Bayer AG,6/30/2019,13365845309,1437180604,30394456127,61175428677,30780972550,2.349.277.536,4.669.055.214,987.443.008,"472,84%"
|
||||
Deutsche Bank AG,6/30/2019,9538166828,766520233.9,38799826104,70810004871,32010178767,1.082.502.727,2.394.614.037,121.210.901,"0,00%"
|
||||
Porsche AG,6/30/2019,16367236342,1857704381,11368621660,21773242219,10404620558,8.532.052.149,1.785.460.959,109.265.125,"1634,06%"
|
||||
Merck KGaA,6/30/2019,16209619277,1894725317,17305347324,45432894647,28127547323,4.170.382.124,673.619.102,615.245.514,"1094,88%"
|
||||
Volkswagen AG,6/30/2020,7895384436,511149178.9,17592686846,61107816340,43515129494,836.471.027,1.174.647.036,404.288.969,"0,00%"
|
||||
Siemens AG,6/30/2020,7571178877,527700192,14328955584,29444881442,15115925857,1.792.162.733,3.491.021.304,947.937.673,"368,28%"
|
||||
Allianz SE,6/30/2020,13787621203,1605393739,33743352626,56826390011,23083037385,2.825.084.858,695.486.349,1.461.824.632,"475,77%"
|
||||
BMW AG,6/30/2020,19909637251,2732548048,15058770523,36892503606,21833733082,7.406.783.982,125.152.581,689.702.053,"1814,59%"
|
||||
BASF SE,6/30/2020,11914158554,1054111676,43298236595,83113769380,39815532785,1.268.275.622,2.647.488.561,1.087.470.983,"243,45%"
|
||||
Deutsche Telekom AG,6/30/2020,16609605942,2209253956,40969123319,78858492215,37889368896,2.801.542.223,5.830.801.675,1.081.282.811,"539,25%"
|
||||
Daimler AG,6/30/2020,14075946856,1786382228,42169052107,79023797685,36854745578,2.260.562.362,4.847.088.752,114.419.599,"423,62%"
|
||||
SAP SE,6/30/2020,6413035553,941195826.2,19793091472,35210598357,15417506885,2.673.046.952,6.104.721.296,1.283.806.235,"0,00%"
|
||||
Bayer AG,6/30/2020,12664152205,953498605.8,14551986231,38961279021,24409292791,2.447.298.009,3.906.293.451,596.165.827,"0,00%"
|
||||
Deutsche Bank AG,6/30/2020,16087302422,1326310547,32589277601,54693171121,22103893521,2.425.002.097,6.000.348.063,1.474.368.195,"406,98%"
|
||||
Porsche AG,6/30/2020,7764718758,920211365.8,34970670581,72558969348,37588298767,1.268.225.519,244.813.252,930.360.557,"0,00%"
|
||||
Merck KGaA,6/30/2020,17048403140,1779998241,31894204894,69469086501,37574881608,2.562.288.251,4.737.202.528,848.817.176,"558,09%"
|
||||
Volkswagen AG,6/30/2021,12858026662,1124878943,17059669622,65938237159,48878567538,1.705.958.471,2.301.374.609,349.021.473,"659,38%"
|
||||
Siemens AG,6/30/2021,6387462404,911547751.1,43580496165,59758020643,16177524478,1.525.398.166,5.634.655.366,269.389.153,"0,00%"
|
||||
Allianz SE,6/30/2021,17019949886,2402780363,10477167725,40916062724,30438894999,5.872.462.313,7.893.783.146,344.203.287,"2293,35%"
|
||||
BMW AG,6/30/2021,12011483364,1571388192,16704351188,36319540470,19615189283,4.326.564.081,8.011.078.402,851.602.855,"940,71%"
|
||||
BASF SE,6/30/2021,18768998808,1373518726,31667361119,58519002305,26851641187,2.347.132.848,5.115.213.316,117.934.546,"433,73%"
|
||||
Deutsche Telekom AG,6/30/2021,5509568002,378951538.1,36585800973,54397521144,17811720171,696.633.836,2.127.540.375,2.054.029.629,"0,00%"
|
||||
Daimler AG,6/30/2021,15648054896,1066739844,40442076671,75441053988,34998977318,1.414.004.428,3.047.917.184,1.155.521.669,"263,77%"
|
||||
SAP SE,6/30/2021,11199189899,719949867.5,45007114334,92397807990,47390693656,779.185.008,1.519.179.847,949.703.641,"0,00%"
|
||||
Bayer AG,6/30/2021,11712522838,1191464502,39707273398,77463236730,37755963332,1.538.103.173,3.155.698.855,1.051.682.169,"300,06%"
|
||||
Deutsche Bank AG,6/30/2021,5220250485,460458002.1,44926554184,91889065168,46962510984,501.102.064,980.479.945,95.664.719,"0,00%"
|
||||
Porsche AG,6/30/2021,12452147525,908357933.3,42131566815,76799130880,34667564065,1.182.771.111,2.620.195.442,1.215.302.198,"0,00%"
|
||||
Merck KGaA,6/30/2021,14025754117,1636333354,16839994355,60072011589,43232017234,2.723.952.986,3.785.003.473,389.525.991,"971,69%"
|
||||
Volkswagen AG,6/30/2022,12314464977,1478784803,25112871815,44050938495,18938066680,3.356.988.191,7.808.530.977,1.326.052.561,"588,86%"
|
||||
Siemens AG,6/30/2022,17737880122,2592267899,23358323946,38107807520,14749483574,6.802.458.781,1.757.531.297,158.367.063,"1109,78%"
|
||||
Allianz SE,6/30/2022,8089768870,488084935.3,45657380068,93604660446,47947280377,521.432.302,1.017.961.668,952.241.289,"0,00%"
|
||||
BMW AG,6/30/2022,11584036388,1399147461,22546412228,53277235987,30730823758,2.626.163.755,455.291.232,73.367.419,"620,56%"
|
||||
BASF SE,6/30/2022,11227593925,1221025867,27001572213,45570891422,18569319208,2.679.398.689,6.575.501.522,1.454.095.969,"452,21%"
|
||||
Deutsche Telekom AG,6/30/2022,8444063288,1187007039,47810647914,69756044623,21945396709,1.701.654.739,5.408.911.286,217.861.853,"248,27%"
|
||||
Daimler AG,6/30/2022,16579977460,877145067,30509379123,76296463396,45787084273,1.149.653.638,1.915.704.136,666.331.556,"287,50%"
|
||||
SAP SE,6/30/2022,14799049316,1792143630,35425741218,52933352519,17507611301,3.385.660.542,1.023.636.862,2.023.448.008,"505,89%"
|
||||
Bayer AG,6/30/2022,7918029220,810924591.5,42824962792,91140421051,48315458259,889.752.957,1.678.395.737,886.361.515,"0,00%"
|
||||
Deutsche Bank AG,6/30/2022,13527313706,1369609294,47047722396,76309903159,29262180763,1.794.798.889,4.680.475.816,1.607.799.596,"291,11%"
|
||||
Porsche AG,6/30/2022,9602996001,1224040111,42066934650,86789124292,44722189642,1.410.361.172,2.736.986.092,940.627.795,"290,97%"
|
||||
Merck KGaA,6/30/2022,19175705351,1921123977,39424400695,70149764250,30725363554,2.738.603.611,6.252.567.113,128.312.235,"487,29%"
|
||||
Volkswagen AG,6/30/2023,12729418594,1662688493,39022576433,81451183390,42428606957,2.041.331.291,3.918.791.148,919.723.254,"426,08%"
|
||||
Siemens AG,6/30/2023,14327627383,1625286889,41679203694,52235242339,10556038645,3.111.475.732,1.539.675.009,3.948.375.437,"389,95%"
|
||||
Allianz SE,6/30/2023,5318114486,431100966,42312531626,58725506361,16412974734,734.094.932,2.626.586.423,2.577.992.857,"101,88%"
|
||||
BMW AG,6/30/2023,14368618381,1533626886,42361743521,64353154119,21991410599,2.383.141.754,6.973.754.044,1.926.285.871,"362,03%"
|
||||
BASF SE,6/30/2023,14800185962,1295428284,11911955269,57692706612,45780751343,2.245.393.499,2.829.635.264,260.195.714,"1087,50%"
|
||||
Deutsche Telekom AG,6/30/2023,10399408221,561732001.5,38426371195,68448568389,30022197194,820.662.893,1.871.055.599,127.993.201,"0,00%"
|
||||
Daimler AG,6/30/2023,6677625789,440969634.7,45505367856,68668748604,23163380748,642.169.318,1.903.736.072,196.453.913,"0,00%"
|
||||
SAP SE,6/30/2023,10806122549,698788622.5,46400326109,56419077430,10018751320,1.238.567.971,697.480.754,4.631.348.222,"0,00%"
|
||||
Bayer AG,6/30/2023,10038837028,1319011419,42095419645,52756441711,10661022066,2.500.190.263,1.237.227.923,3.948.535.083,"313,34%"
|
||||
Deutsche Bank AG,6/30/2023,7129233268,804182359.4,37136074738,74971932150,37835857412,107.264.457,2.125.450.338,981.504.776,"0,00%"
|
||||
Porsche AG,6/30/2023,16477351074,1226392611,42857529033,61495517042,18637988008,1.994.279.698,6.580.069.753,2.299.471.864,"286,16%"
|
||||
Merck KGaA,6/30/2023,9146296754,868361702.9,43413456694,56455610934,13042154240,1.538.131.797,6.658.115.576,3.328.702.904,"0,00%"
|
||||
Volkswagen AG,6/30/2024,13076152982,1526410746,24545656357,68124372355,43578715998,2.240.623.573,3.502.651.951,563.248.728,"621,87%"
|
||||
Siemens AG,6/30/2024,9018099865,963180373.7,36993263217,49531602468,12538339252,1.944.577.453,7.681.881.582,2.950.411.731,"0,00%"
|
||||
Allianz SE,6/30/2024,13059939771,864826440.5,21561018412,57150274352,35589255939,1.513.249.849,2.430.021.133,605.829.424,"0,00%"
|
||||
BMW AG,6/30/2024,17928146832,2182113657,12109060417,56333682316,44224621899,3.873.550.543,4.934.160.121,273.808.116,"1802,05%"
|
||||
BASF SE,6/30/2024,11122911230,1144594204,29846781652,60313552592,30466770941,1.897.739.653,3.756.860.897,979.650.312,"383,49%"
|
||||
Deutsche Telekom AG,6/30/2024,15923641671,1238976660,29108930053,40292182768,11183252715,3.074.980.245,1.107.885.775,2.602.903.716,"425,63%"
|
||||
Daimler AG,6/30/2024,9897018704,888471372.7,33856303197,55117754937,21261451739,161.195.131,4.178.789.781,1.592.379.656,"0,00%"
|
||||
SAP SE,6/30/2024,8144018454,529257365.4,31360696540,57876694077,26515997537,914.456.801,1.995.992.663,1.182.708.533,"0,00%"
|
||||
Bayer AG,6/30/2024,7369565272,1064148244,20591206981,42904241960,22313034979,2.480.286.785,47.691.775,922.833.088,"516,80%"
|
||||
Deutsche Bank AG,6/30/2024,9306050327,729847876.9,23854663266,48476616703,24621953437,1.505.566.862,2.964.215.974,968.837.153,"0,00%"
|
||||
Porsche AG,6/30/2024,16413767338,1074145603,25161220888,52217608876,27056387988,2.057.056.282,3.970.025.873,929.954.911,"426,91%"
|
||||
Merck KGaA,6/30/2024,16561793827,2435933937,19456844175,52664090849,33207246674,4.625.417.238,7.335.549.257,585.921.632,"1251,97%"
|
||||
Volkswagen AG,9/30/2017,15706422457,2263166301,11556351337,26096752248,14540400911,8.672.214.379,1.556.467.607,794.775.289,"1958,37%"
|
||||
Siemens AG,9/30/2017,5703877749,588622371.4,24982736979,39727077870,14744340891,1.481.665.411,3.992.191.823,1.694.394.966,"0,00%"
|
||||
Allianz SE,9/30/2017,7168009253,373428560.2,15187122059,38651159578,23464037519,966.150.988,1.591.493.194,647.251.013,"0,00%"
|
||||
BMW AG,9/30/2017,14824260103,1856672009,49769403556,87097998229,37328594673,213.170.457,4.973.859.919,1.333.278.255,"373,05%"
|
||||
BASF SE,9/30/2017,9548006554,1237046329,27483087953,52090363015,24607275062,2.374.808.425,5.027.156.913,1.116.868.401,"450,11%"
|
||||
Deutsche Telekom AG,9/30/2017,14110556301,1163491999,16591763093,32355610354,15763847262,3.595.951.325,7.380.761.688,1.052.519.909,"701,25%"
|
||||
Daimler AG,9/30/2017,7323507123,793777927.1,27624534772,70422660411,42798125639,1.127.162.653,1.854.702.549,645.461.322,"0,00%"
|
||||
SAP SE,9/30/2017,18227487487,1997618536,40486058249,55383211771,14897153522,3.606.902.655,1.340.939.753,2.717.704.304,"493,41%"
|
||||
Bayer AG,9/30/2017,12670837136,1282915745,20339721000,55136777973,34797056973,2.326.787.657,3.686.851.292,584.524.174,"630,74%"
|
||||
Deutsche Bank AG,9/30/2017,19868905162,1429630591,12720436994,42183197053,29462760059,3.389.099.666,4.852.330.833,431.746.278,"1123,88%"
|
||||
Porsche AG,9/30/2017,9631040999,1113020766,22993549681,72046513305,49052963625,1.544.864.164,226.901.839,468.749.449,"484,06%"
|
||||
Merck KGaA,9/30/2017,17552142118,1316005049,28846310799,40791728305,11945417506,3.226.156.634,110.168.192,2.414.843.247,"456,21%"
|
||||
Volkswagen AG,9/30/2018,11494666314,1658196131,14924498356,62462464157,47537965801,2.654.708.156,3.488.151.213,313.949.032,"1111,06%"
|
||||
Siemens AG,9/30/2018,12634974138,741274735,28126694879,40432233302,12305538423,1.833.375.687,6.023.911.425,2.285.693.962,"263,55%"
|
||||
Allianz SE,9/30/2018,10545031789,1010594241,33534009371,63852779536,30318770165,1.582.694.204,3.333.229.664,1.106.047.811,"301,36%"
|
||||
BMW AG,9/30/2018,5647276212,430192893.6,49486716701,66912699732,17425983031,642.916.659,2.468.686.517,2.839.823.533,"0,00%"
|
||||
BASF SE,9/30/2018,19846387618,2884007106,11017913220,31498369926,20480456706,9.156.051.924,1.408.175.192,537.972.047,"2617,56%"
|
||||
Deutsche Telekom AG,9/30/2018,10796012246,986280250.6,18030445293,66154405096,48123959803,1.490.876.154,2.049.457.806,374.666.702,"0,00%"
|
||||
Daimler AG,9/30/2018,5152922484,599573691.4,24935989828,36383148668,11447158840,1.647.943.384,5.237.751.129,2.178.356.235,"0,00%"
|
||||
SAP SE,9/30/2018,8133295785,750601103.2,12010781130,31029999758,19019218627,2.418.952.978,394.654.017,631.507.601,"0,00%"
|
||||
Bayer AG,9/30/2018,8605806470,524552249.3,34919186753,46399878511,11480691758,1.130.503.497,4.568.995.147,3.041.557.729,"0,00%"
|
||||
Deutsche Bank AG,9/30/2018,17771922214,1082288023,48317236409,88972406897,40655170488,1.216.431.095,2.662.116.553,1.188.464.735,"224,00%"
|
||||
Porsche AG,9/30/2018,17963578177,2139702451,49106113898,95043652065,45937538167,2.251.283.915,4.657.851.806,1.068.975.741,"435,73%"
|
||||
Merck KGaA,9/30/2018,17415152986,1617758811,46995232198,95054854077,48059621879,1.701.921.302,3.366.149.685,977.852.725,"344,24%"
|
||||
Volkswagen AG,9/30/2019,10142417014,1306294910,21657205056,33344564963,11687359907,3.917.564.711,1.117.698.882,1.853.045.104,"603,17%"
|
||||
Siemens AG,9/30/2019,16654538457,1322270205,29781715108,63506323345,33724608237,2.082.107.947,3.920.787.444,883.085.577,"443,99%"
|
||||
Allianz SE,9/30/2019,13700664809,892851810.7,14820437742,51140549989,36320112247,174.587.839,2.458.284.833,408.050.439,"0,00%"
|
||||
BMW AG,9/30/2019,8103350227,738019784.6,20380748219,31832927467,11452179248,2.318.416.317,6.444.361.101,1.779.639.296,"0,00%"
|
||||
BASF SE,9/30/2019,7430177132,551583106,33765326378,50383426520,16618100141,1.094.770.928,3.319.170.671,2.031.840.348,"163,36%"
|
||||
Deutsche Telekom AG,9/30/2019,11461718687,1380378045,27344331892,73302995160,45958663267,1.883.112.746,3.003.520.875,594.976.658,"504,81%"
|
||||
Daimler AG,9/30/2019,9545803943,1253796606,34864875291,53486270610,18621395319,2.344.146.622,6.733.096.979,1.872.301.978,"359,62%"
|
||||
SAP SE,9/30/2019,13973147193,1079900966,48121419304,75654119930,27532700626,1.427.418.583,3.922.248.606,174.779.147,"224,41%"
|
||||
Bayer AG,9/30/2019,11417678713,984493632.9,43202192055,87180029468,43977837414,1.129.265.084,2.238.613.108,982.362.813,"0,00%"
|
||||
Deutsche Bank AG,9/30/2019,6824564419,375695945.9,12634199326,28137106192,15502906866,1.335.233.067,242.339.033,814.956.797,"0,00%"
|
||||
Porsche AG,9/30/2019,10956259576,738896491.2,30918840712,77968242093,47049401381,947.689.048,1.570.469.484,657.156.942,"0,00%"
|
||||
Merck KGaA,9/30/2019,12097020632,1236164244,27900854055,42173393478,14272539423,2.931.147.205,8.661.137.359,1.954.862.637,"443,06%"
|
||||
Volkswagen AG,9/30/2020,12436929028,1654939942,49496396884,90362459109,40866062225,1.831.446.331,4.049.668.237,1.211.185.864,"334,36%"
|
||||
Siemens AG,9/30/2020,11686522494,980715243.5,33647832225,72644583109,38996750884,1.350.018.407,2.514.863.985,862.836.812,"0,00%"
|
||||
Allianz SE,9/30/2020,18005946710,2292027552,30114206666,72398006770,42283800104,316.587.107,5.420.580.804,712.192.532,"761,11%"
|
||||
BMW AG,9/30/2020,9482010377,803442750.4,46174948427,92567055368,46392106941,867.957.555,1.731.852.256,995.319.063,"0,00%"
|
||||
BASF SE,9/30/2020,18130200876,2418330284,49603599758,91937242355,42333642596,2.630.414.207,5.712.549.489,1.171.730.017,"487,53%"
|
||||
Deutsche Telekom AG,9/30/2020,15589999588,1310559971,40139408421,54633825763,14494417343,239.880.688,9.041.825.831,2.769.301.274,"326,50%"
|
||||
Daimler AG,9/30/2020,17815073829,1375991001,34457237297,48064706274,13607468976,2.862.788.745,1.011.202.747,2.532.229.716,"399,33%"
|
||||
SAP SE,9/30/2020,15986728775,2071404633,24329632573,49270478198,24940845625,4.204.149.643,8.305.270.255,975.493.491,"851,39%"
|
||||
Bayer AG,9/30/2020,7778215290,1028179890,32630440063,51398528756,18768088693,2.000.407.238,5.478.340.957,1.738.612.844,"315,10%"
|
||||
Deutsche Bank AG,9/30/2020,11268644278,1309520126,44147215219,66843792777,22696577557,1.959.075.139,5.769.681.015,1.945.104.503,"296,63%"
|
||||
Porsche AG,9/30/2020,6912391322,945409918.5,38735572223,68605740345,29870168123,1.378.033.257,3.165.063.935,1.296.797.931,"0,00%"
|
||||
Merck KGaA,9/30/2020,8081970522,678443942.4,46360819152,75700966235,29340147083,896.215.697,231.233.995,1.580.115.431,"0,00%"
|
||||
Volkswagen AG,9/30/2021,10294096366,1404729444,27027656894,48359524775,21331867881,2.904.762.713,658.512.162,1.267.008.452,"519,74%"
|
||||
Siemens AG,9/30/2021,19026792698,2073416725,23713313938,47556455590,23843141652,4.359.905.925,8.696.071.832,994.554.924,"874,37%"
|
||||
Allianz SE,9/30/2021,11073630310,912822455.7,49692687138,70778247625,21085560486,1.289.693.495,4.329.135.364,2.356.716.444,"0,00%"
|
||||
BMW AG,9/30/2021,14132310152,1250503703,34109472155,60179867780,26070395624,2.077.943.587,4.796.642.602,1.308.360.358,"366,61%"
|
||||
BASF SE,9/30/2021,10808670566,658653438.1,37937729306,85517814001,47580084695,770.194.428,1.384.304.888,79.734.472,"0,00%"
|
||||
Deutsche Telekom AG,9/30/2021,14468035363,1480956904,34748500389,83063430789,48314930400,178.292.287,3.065.215.849,71.920.833,"426,19%"
|
||||
Daimler AG,9/30/2021,15893645982,2170220695,43221215972,62906987078,19685771106,3.449.888.154,1.102.431.133,2.195.556.158,"502,12%"
|
||||
SAP SE,9/30/2021,9000667547,1079598533,20844606335,48683375624,27838769289,2.217.591.773,3.878.039.728,748.761.776,"517,93%"
|
||||
Bayer AG,9/30/2021,13756386408,721617987.5,44559907041,88194004126,43634097086,818.216.606,1.653.793.789,102.121.758,"0,00%"
|
||||
Deutsche Bank AG,9/30/2021,12533912164,782840180.3,42843256371,86694386780,43851130409,902.988.313,1.785.222.349,977.016.008,"0,00%"
|
||||
Porsche AG,9/30/2021,7245971264,1033867668,43655777728,59462856760,15807079033,17.386.781,6.540.535.831,2.761.786.516,"236,82%"
|
||||
Merck KGaA,9/30/2021,14686380695,2175890454,36499903384,85610397087,49110493703,2.541.619.392,4.430.601.873,743.220.046,"596,14%"
|
||||
Volkswagen AG,9/30/2022,10260879440,889227522,10690275300,28159139854,17468864554,3.157.864.646,5.090.356.727,611.961.657,"831,81%"
|
||||
Siemens AG,9/30/2022,12664949131,649372783.1,35555990358,69522102895,33966112537,934.052.274,1.911.825.448,1.046.807.765,"0,00%"
|
||||
Allianz SE,9/30/2022,16931011156,2086994153,18754849198,52873275455,34118426257,3.947.162.597,6.116.912.125,549.698.543,"1112,78%"
|
||||
BMW AG,9/30/2022,18782382394,1614997271,25317192992,38617124033,13299931041,418.207.547,1.214.289.959,1.903.558.215,"637,91%"
|
||||
BASF SE,9/30/2022,8861717408,569761713.3,46662383110,69619249891,22956866781,8.183.968,2.481.879.251,2.032.611.138,"0,00%"
|
||||
Deutsche Telekom AG,9/30/2022,14873007184,1613587509,33957807568,82298368793,48340561225,1.960.655.518,3.337.957.748,70.247.028,"475,17%"
|
||||
Daimler AG,9/30/2022,18430272465,1278461027,44184049308,54843099546,10659050238,2.331.124.677,1.199.413.642,4.145.214.472,"289,35%"
|
||||
SAP SE,9/30/2022,18713092617,1701020228,36355439326,47077977464,10722538138,3.613.197.338,1.586.396.995,3.390.562.837,"467,89%"
|
||||
Bayer AG,9/30/2022,10642582906,1154447670,44364932131,75643621464,31278689333,1.526.166.579,3.690.844.131,1.418.375.676,"260,22%"
|
||||
Deutsche Bank AG,9/30/2022,11924228778,1074208571,47986876748,85149075647,37162198900,1.261.562.223,2.890.594.752,1.291.281.952,"223,85%"
|
||||
Porsche AG,9/30/2022,8621455856,1229669587,32376788972,47679877246,15303088274,2.579.011.647,803.543.419,2.115.702.948,"379,80%"
|
||||
Merck KGaA,9/30/2022,7888146905,698353200.2,33355799273,53175544683,19819745411,131.329.769,3.523.522.556,1.682.958.009,"0,00%"
|
||||
Volkswagen AG,9/30/2023,11664866018,1677667162,15998323030,33372541902,17374218871,5.027.088.338,965.607.245,92.080.819,"1048,65%"
|
||||
Siemens AG,9/30/2023,10185412162,754846740.3,24373958388,59331553465,34957595076,1.272.251.772,2.159.321.139,69.724.357,"0,00%"
|
||||
Allianz SE,9/30/2023,19814938566,1836312727,18499451286,30329911272,11830459986,6.054.461.257,1.552.190.472,1.563.713.609,"992,63%"
|
||||
BMW AG,9/30/2023,12729885504,1804875257,10865997336,56007965536,45141968200,3.222.533.152,3.998.220.124,240.707.213,"1661,03%"
|
||||
BASF SE,9/30/2023,8416753062,980336277,46036015495,95477772055,49441756560,1.026.769.117,1.982.810.372,931.116.099,"212,95%"
|
||||
Deutsche Telekom AG,9/30/2023,5149849693,750613275.1,17312068995,55772071679,38460002684,1.345.858.693,1.951.672.446,450.131.768,"0,00%"
|
||||
Daimler AG,9/30/2023,13104191262,1856279741,29165603027,45413408789,16247805762,4.087.514.659,1.142.480.264,1.795.048.726,"636,46%"
|
||||
SAP SE,9/30/2023,17167661800,1338393789,26063953489,52362126677,26298173188,2.556.034.053,5.089.303.273,991.093.689,"513,50%"
|
||||
Bayer AG,9/30/2023,9457609977,1131311165,40856047831,77252438398,36396390567,1.464.434.247,3.108.305.926,1.122.530.207,"276,90%"
|
||||
Deutsche Bank AG,9/30/2023,17914537947,1449472284,20633879462,43019367872,22385488410,3.369.348.169,6.475.053.201,92.175.248,"702,47%"
|
||||
Porsche AG,9/30/2023,12920254885,1147104411,35348848744,85266963912,49918115168,1.345.309.318,2.297.972.203,708.136.688,"324,51%"
|
||||
Merck KGaA,9/30/2023,9297896247,1145109250,49354599469,67631473649,18276874181,1.693.160.283,6.265.345.152,2.700.385.141,"232,02%"
|
||||
Volkswagen AG,9/30/2024,9752432683,970590418.5,31255665329,70790020629,39534355300,1.371.083.678,2.455.055.637,790.595.043,"0,00%"
|
||||
Siemens AG,9/30/2024,11691964631,1345578064,24477801438,72482874961,48005073523,1.856.408.241,2.802.991.363,509.900.301,"549,71%"
|
||||
Allianz SE,9/30/2024,16908879786,1197174003,48008203569,67570965703,19562762134,177.172.842,611.965.731,2.454.060.589,"249,37%"
|
||||
BMW AG,9/30/2024,17989542164,2639441820,33643521649,69399402463,35755880815,3.803.263.035,7.381.839.743,940.922.748,"784,53%"
|
||||
BASF SE,9/30/2024,16485330446,1727330520,41199120058,58775396940,17576276882,2.938.866.617,9.827.624.651,2.344.018.607,"419,26%"
|
||||
Deutsche Telekom AG,9/30/2024,6531276814,872767531.7,15526905086,49404344791,33877439705,1.766.580.521,2.576.249.974,458.325.813,"0,00%"
|
||||
Daimler AG,9/30/2024,14640665936,2101927829,10787737144,51913035226,41125298082,4.048.940.347,5.111.033.662,262.313.896,"1948,44%"
|
||||
SAP SE,9/30/2024,10824151396,830279996.2,42369695133,72342104340,29972409208,114.771.336,2.770.147.673,1.413.623.271,"0,00%"
|
||||
Bayer AG,9/30/2024,9332023907,746667545.1,23673143006,42677324477,19004181470,1.749.565.031,3.928.964.508,1.245.680.749,"0,00%"
|
||||
Deutsche Bank AG,9/30/2024,18549946525,2323022170,49199711543,64461554635,15261843092,3.603.732.773,1.522.111.161,3.223.707.074,"472,16%"
|
||||
Porsche AG,9/30/2024,15911174550,1241693861,36125130235,84583217359,48458087124,1.468.014.459,2.562.407.917,745.492.288,"343,72%"
|
||||
Merck KGaA,9/30/2024,15036344926,1704097607,30603212259,59444780752,28841568494,2.866.690.036,5.908.477.575,1.061.080.026,"556,84%"
|
||||
|
+8593
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
+8231
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user