-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.sql
2794 lines (2788 loc) · 200 KB
/
database.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 8.0.22 - MySQL Community Server - GPL
-- Server OS: Linux
-- HeidiSQL Version: 11.2.0.6265
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- Dumping database structure for Billionaires
CREATE DATABASE IF NOT EXISTS `Billionaires` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
USE `Billionaires`;
-- Dumping structure for table Billionaires.Forbes Billionaires
CREATE TABLE IF NOT EXISTS `Forbes Billionaires` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`Name` text NOT NULL,
`NetWorth` bigint NOT NULL,
`Country` text NOT NULL,
`Source` text NOT NULL,
`Rank` smallint NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2756 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- Dumping data for table Billionaires.Forbes Billionaires: ~0 rows (approximately)
/*!40000 ALTER TABLE `Forbes Billionaires` DISABLE KEYS */;
REPLACE INTO `Forbes Billionaires` (`id`, `Name`, `NetWorth`, `Country`, `Source`, `Rank`) VALUES
(1, 'Jeff Bezos', 177000000000, 'United States', 'Amazon', 1),
(2, 'Elon Musk', 151000000000, 'United States', 'Tesla, SpaceX', 2),
(3, 'Bernard Arnault & family', 150000000000, 'France', 'LVMH', 3),
(4, 'Bill Gates', 124000000000, 'United States', 'Microsoft', 4),
(5, 'Mark Zuckerberg', 97000000000, 'United States', 'Facebook', 5),
(6, 'Warren Buffett', 96000000000, 'United States', 'Berkshire Hathaway', 6),
(7, 'Larry Ellison', 93000000000, 'United States', 'software', 7),
(8, 'Larry Page', 91500000000, 'United States', 'Google', 8),
(9, 'Sergey Brin', 89000000000, 'United States', 'Google', 9),
(10, 'Mukesh Ambani', 84500000000, 'India', 'diversified', 10),
(11, 'Amancio Ortega', 77000000000, 'Spain', 'Zara', 11),
(12, 'Francoise Bettencourt Meyers & family', 73600000000, 'France', 'L\'Oréal', 12),
(13, 'Zhong Shanshan', 68900000000, 'China', 'beverages, pharmaceuticals', 13),
(14, 'Steve Ballmer', 68700000000, 'United States', 'Microsoft', 14),
(15, 'Ma Huateng', 65800000000, 'China', 'internet media', 15),
(16, 'Carlos Slim Helu & family', 62800000000, 'Mexico', 'telecom', 16),
(17, 'Alice Walton', 61800000000, 'United States', 'Walmart', 17),
(18, 'Jim Walton', 60200000000, 'United States', 'Walmart', 18),
(19, 'Rob Walton', 59500000000, 'United States', 'Walmart', 19),
(20, 'Michael Bloomberg', 59000000000, 'United States', 'Bloomberg LP', 20),
(21, 'Colin Zheng Huang', 55300000000, 'China', 'e-commerce', 21),
(22, 'MacKenzie Scott', 53000000000, 'United States', 'Amazon', 22),
(23, 'Daniel Gilbert', 51900000000, 'United States', 'Quicken Loans', 23),
(24, 'Gautam Adani & family', 50500000000, 'India', 'infrastructure, commodities', 24),
(25, 'Phil Knight & family', 49900000000, 'United States', 'Nike', 25),
(26, 'Jack Ma', 48400000000, 'China', 'e-commerce', 26),
(27, 'Charles Koch', 46400000000, 'United States', 'Koch Industries', 27),
(28, 'Julia Koch & family', 46400000000, 'United States', 'Koch Industries', 27),
(29, 'Masayoshi Son', 45400000000, 'Japan', 'internet, telecom', 29),
(30, 'Michael Dell', 45100000000, 'United States', 'Dell computers', 30),
(31, 'Tadashi Yanai & family', 44100000000, 'Japan', 'fashion retail', 31),
(32, 'François Pinault & family', 42300000000, 'France', 'luxury goods', 32),
(33, 'David Thomson & family', 41800000000, 'Canada', 'media', 33),
(34, 'Beate Heister & Karl Albrecht Jr.', 39200000000, 'Germany', 'supermarkets', 34),
(35, 'Wang Wei', 39000000000, 'China', 'package delivery', 35),
(36, 'Miriam Adelson', 38200000000, 'United States', 'casinos', 36),
(37, 'He Xiangjian', 37700000000, 'China', 'home appliances', 37),
(38, 'Dieter Schwarz', 36900000000, 'Germany', 'retail', 38),
(39, 'Zhang Yiming', 35600000000, 'China', 'TikTok', 39),
(40, 'Giovanni Ferrero', 35100000000, 'Italy', 'Nutella, chocolates', 40),
(41, 'Alain Wertheimer', 34500000000, 'France', 'Chanel', 41),
(42, 'Gerard Wertheimer', 34500000000, 'France', 'Chanel', 41),
(43, 'Li Ka-shing', 33700000000, 'Hong Kong', 'diversified', 43),
(44, 'Qin Yinglin & family', 33500000000, 'China', 'pig breeding', 44),
(45, 'William Lei Ding', 33000000000, 'China', 'online games', 45),
(46, 'Len Blavatnik', 32000000000, 'United States', 'music, chemicals', 46),
(47, 'Lee Shau Kee', 31700000000, 'Hong Kong', 'real estate', 47),
(48, 'Jacqueline Mars', 31300000000, 'United States', 'candy, pet food', 48),
(49, 'John Mars', 31300000000, 'United States', 'candy, pet food', 48),
(50, 'Yang Huiyan & family', 29600000000, 'China', 'real estate', 50),
(51, 'Alexey Mordashov & family', 29100000000, 'Russia', 'steel, investments', 51),
(52, 'Robin Zeng', 28400000000, 'Hong Kong', 'batteries', 52),
(53, 'Hui Ka Yan', 27700000000, 'China', 'real estate', 53),
(54, 'Susanne Klatten', 27700000000, 'Germany', 'BMW, pharmaceuticals', 53),
(55, 'Vladimir Potanin', 27000000000, 'Russia', 'metals', 55),
(56, 'Dietrich Mateschitz', 26900000000, 'Austria', 'Red Bull', 56),
(57, 'Pang Kang', 26400000000, 'China', 'soy sauce', 57),
(58, 'Klaus-Michael Kuehne', 26300000000, 'Germany', 'shipping', 58),
(59, 'Vladimir Lisin', 26200000000, 'Russia', 'steel, transport', 59),
(60, 'Wang Xing', 26100000000, 'China', 'e-commerce', 60),
(61, 'German Larrea Mota Velasco & family', 25900000000, 'Mexico', 'mining', 61),
(62, 'Leonardo Del Vecchio & family', 25800000000, 'Italy', 'eyeglasses', 62),
(63, 'Takemitsu Takizaki', 25800000000, 'Japan', 'sensors', 62),
(64, 'Leonard Lauder', 25500000000, 'United States', 'Estee Lauder', 64),
(65, 'Thomas Peterffy', 25000000000, 'United States', 'discount brokerage', 65),
(66, 'Vagit Alekperov', 24900000000, 'Russia', 'oil', 66),
(67, 'Leonid Mikhelson', 24900000000, 'Russia', 'gas, chemicals', 66),
(68, 'Jim Simons', 24600000000, 'United States', 'hedge funds', 68),
(69, 'Jiang Rensheng & family', 24400000000, 'China', 'vaccines', 69),
(70, 'Gina Rinehart', 23600000000, 'Australia', 'mining', 70),
(71, 'Rupert Murdoch & family', 23500000000, 'United States', 'newspapers, TV network', 71),
(72, 'Shiv Nadar', 23500000000, 'India', 'software services', 71),
(73, 'Zhang Zhidong', 23400000000, 'China', 'internet media', 73),
(74, 'Iris Fontbona & family', 23300000000, 'Chile', 'mining', 74),
(75, 'Lei Jun', 23000000000, 'China', 'smartphones', 75),
(76, 'Zhang Yong', 23000000000, 'Singapore', 'restaurants', 75),
(77, 'Richard Qiangdong Liu', 22400000000, 'China', 'e-commerce', 77),
(78, 'Gennady Timchenko', 22000000000, 'Russia', 'oil, gas', 78),
(79, 'Stephen Schwarzman', 21900000000, 'United States', 'investments', 79),
(80, 'Goh Cheng Liang', 21700000000, 'Singapore', 'paints', 80),
(81, 'Stefan Quandt', 21600000000, 'Germany', 'BMW', 81),
(82, 'Li Xiting', 21500000000, 'Singapore', 'medical devices', 82),
(83, 'Pierre Omidyar', 21400000000, 'United States', 'eBay, PayPal', 83),
(84, 'Stefan Persson', 21300000000, 'Sweden', 'H&M', 84),
(85, 'Abigail Johnson', 20900000000, 'United States', 'money management', 85),
(86, 'R. Budi Hartono', 20500000000, 'Indonesia', 'banking, tobacco', 86),
(87, 'Andrew Forrest', 20400000000, 'Australia', 'mining', 87),
(88, 'Ray Dalio', 20300000000, 'United States', 'hedge funds', 88),
(89, 'Michael Hartono', 19700000000, 'Indonesia', 'banking, tobacco', 89),
(90, 'Li Shufu', 19700000000, 'China', 'automobiles', 89),
(91, 'Zhong Huijuan', 19700000000, 'China', 'pharmaceuticals', 89),
(92, 'Xu Hang', 19500000000, 'Hong Kong', 'medical devices', 92),
(93, 'Lui Che Woo & family', 19400000000, 'Hong Kong', 'casinos/hotels', 93),
(94, 'Emmanuel Besnier', 19100000000, 'France', 'cheese', 94),
(95, 'Laurene Powell Jobs & family', 19000000000, 'United States', 'Apple, Disney', 95),
(96, 'Eric Schmidt', 18900000000, 'United States', 'Google', 96),
(97, 'Sun Piaoyang', 18900000000, 'China', 'pharmaceuticals', 96),
(98, 'Theo Albrecht, Jr. & family', 18800000000, 'Germany', 'Aldi, Trader Joe\'s', 98),
(99, 'Alisher Usmanov', 18400000000, 'Russia', 'steel, telecom, investments', 99),
(100, 'Robert Pera', 18300000000, 'United States', 'wireless networking gear', 100),
(101, 'Wu Yajun', 18300000000, 'China', 'real estate', 100),
(102, 'Fan Hongwei & family', 18200000000, 'China', 'petrochemicals', 102),
(103, 'Dhanin Chearavanont', 18100000000, 'Thailand', 'diversified', 103),
(104, 'Peter Woo', 18000000000, 'Hong Kong', 'real estate', 104),
(105, 'Chen Bang', 17900000000, 'China', 'hospitals', 105),
(106, 'Andrey Melnichenko', 17900000000, 'Russia', 'coal, fertilizers', 105),
(107, 'Dustin Moskovitz', 17800000000, 'United States', 'Facebook', 107),
(108, 'Su Hua', 17800000000, 'China', 'video streaming', 107),
(109, 'Donald Newhouse', 17600000000, 'United States', 'media', 109),
(110, 'Petr Kellner', 17500000000, 'Czechia', 'finance, telecommunications', 110),
(111, 'Lee Man Tat', 17400000000, 'Hong Kong', 'food', 111),
(112, 'Pavel Durov', 17200000000, 'Russia', 'messaging app', 112),
(113, 'James Ratcliffe', 17000000000, 'United Kingdom', 'chemicals', 113),
(114, 'Jorge Paulo Lemann & family', 16900000000, 'Brazil', 'beer', 114),
(115, 'Reinhold Wuerth & family', 16800000000, 'Germany', 'fasteners', 115),
(116, 'Charlene de Carvalho-Heineken & family', 16700000000, 'Netherlands', 'Heineken', 116),
(117, 'Radhakishan Damani', 16500000000, 'India', 'retail, investments', 117),
(118, 'Wang Chuanfu', 16300000000, 'China', 'batteries, automobiles', 118),
(119, 'Steve Cohen', 16000000000, 'United States', 'hedge funds', 119),
(120, 'Ken Griffin', 16000000000, 'United States', 'hedge funds', 119),
(121, 'Chen Zhiping', 15900000000, 'China', 'e-cigarettes', 121),
(122, 'Ernest Garcia, II.', 15900000000, 'United States', 'used cars', 121),
(123, 'Uday Kotak', 15900000000, 'India', 'banking', 121),
(124, 'Carl Icahn', 15800000000, 'United States', 'investments', 124),
(125, 'Suleiman Kerimov & family', 15800000000, 'Russia', 'investments', 124),
(126, 'Thomas Frist, Jr. & family', 15700000000, 'United States', 'hospitals', 126),
(127, 'Lukas Walton', 15600000000, 'United States', 'Walmart', 127),
(128, 'Mikhail Fridman', 15500000000, 'Russia', 'oil, banking, telecom', 128),
(129, 'Wei Jianjun & family', 15500000000, 'China', 'automobiles', 128),
(130, 'Zuo Hui', 15500000000, 'China', 'real estate services', 128),
(131, 'Zhou Qunfei & family', 15400000000, 'Hong Kong', 'smartphone screens', 131),
(132, 'Donald Bren', 15300000000, 'United States', 'real estate', 132),
(133, 'Hinduja brothers', 14900000000, 'United Kingdom', 'diversified', 133),
(134, 'Lakshmi Mittal', 14900000000, 'India', 'steel', 133),
(135, 'Georg Schaeffler', 14900000000, 'Germany', 'auto parts', 133),
(136, 'Eric Yuan & family', 14900000000, 'United States', 'video conferencing', 133),
(137, 'Wang Jianlin', 14800000000, 'China', 'real estate', 137),
(138, 'Kwong Siu-hing', 14700000000, 'Hong Kong', 'real estate', 138),
(139, 'Robin Li', 14700000000, 'China', 'internet search', 138),
(140, 'Pallonji Mistry', 14600000000, 'Ireland', 'construction', 140),
(141, 'Eduardo Saverin', 14600000000, 'Brazil', 'Facebook', 140),
(142, 'Roman Abramovich', 14500000000, 'Russia', 'steel, investments', 142),
(143, 'David Tepper', 14500000000, 'United States', 'hedge funds', 142),
(144, 'Gong Hongjia & family', 14400000000, 'Hong Kong', 'video surveillance', 144),
(145, 'Mike Cannon-Brookes', 14200000000, 'Australia', 'software', 145),
(146, 'John Menard, Jr.', 14200000000, 'United States', 'home improvement stores', 145),
(147, 'Seo Jung-jin', 14200000000, 'South Korea', 'biotech', 145),
(148, 'Cheng Yixiao', 14100000000, 'China', 'video streaming app', 148),
(149, 'Liang Wengen', 14100000000, 'China', 'construction equipment', 148),
(150, 'Scott Farquhar', 14000000000, 'Australia', 'software', 150),
(151, 'Finn Rausing', 13900000000, 'Sweden', 'packaging', 151),
(152, 'Jorn Rausing', 13900000000, 'Sweden', 'packaging', 151),
(153, 'Kirsten Rausing', 13900000000, 'Sweden', 'packaging', 151),
(154, 'Brian Chesky', 13700000000, 'United States', 'Airbnb', 154),
(155, 'Joseph Lau', 13600000000, 'Hong Kong', 'real estate', 155),
(156, 'David Duffield', 13500000000, 'United States', 'business software', 156),
(157, 'Charoen Sirivadhanabhakdi', 13500000000, 'Thailand', 'alcohol, real estate', 156),
(158, 'Kim Jung-ju', 13300000000, 'South Korea', 'online games', 158),
(159, 'Robert & Philip Ng', 13300000000, 'Singapore', 'real estate', 158),
(160, 'Zhang Bangxin', 13300000000, 'China', 'education', 158),
(161, 'Anders Holch Povlsen', 13200000000, 'Denmark', 'fashion retail', 161),
(162, 'Wang Wenyin', 13200000000, 'China', 'mining, copper products', 161),
(163, 'Wang Liping & family', 13100000000, 'China', 'hydraulic machinery', 163),
(164, 'Tatyana Bakalchuk', 13000000000, 'Russia', 'ecommerce', 164),
(165, 'Michael Platt', 13000000000, 'United Kingdom', 'hedge funds', 164),
(166, 'Huang Shilin', 12900000000, 'China', 'batteries', 166),
(167, 'Ricardo Salinas Pliego & family', 12900000000, 'Mexico', 'retail, media', 166),
(168, 'Kumar Birla', 12800000000, 'India', 'commodities', 168),
(169, 'Dang Yanbao', 12700000000, 'China', 'coal', 169),
(170, 'Cyrus Poonawalla', 12700000000, 'India', 'vaccines', 169),
(171, 'Robert Kuok', 12600000000, 'Malaysia', 'palm oil, shipping, property', 171),
(172, 'Hank & Doug Meijer', 12600000000, 'United States', 'supermarkets', 171),
(173, 'Jack Dorsey', 12500000000, 'United States', 'Twitter, Square', 173),
(174, 'Lu Zhongfang', 12500000000, 'China', 'education', 173),
(175, 'Ma Jianrong & family', 12500000000, 'China', 'textiles, apparel', 173),
(176, 'Zhang Tao', 12500000000, 'China', 'e-commerce', 173),
(177, 'Nathan Blecharczyk', 12400000000, 'United States', 'Airbnb', 177),
(178, 'John Doerr', 12400000000, 'United States', 'venture capital', 177),
(179, 'Joe Gebbia', 12400000000, 'United States', 'Airbnb', 177),
(180, 'Forrest Li', 12400000000, 'Singapore', 'gaming', 177),
(181, 'Yu Renrong', 12300000000, 'China', 'semiconductors', 181),
(182, 'Liu Yonghao & family', 12100000000, 'China', 'agribusiness', 182),
(183, 'Gordon Moore', 12100000000, 'United States', 'Intel', 182),
(184, 'Jeff Yass', 12000000000, 'United States', 'trading, investments', 184),
(185, 'Bobby Murphy', 11900000000, 'United States', 'Snapchat', 185),
(186, 'Patrick Drahi', 11800000000, 'France', 'telecom', 186),
(187, 'Jensen Huang', 11800000000, 'United States', 'semiconductors', 186),
(188, 'Alexander Otto', 11800000000, 'Germany', 'real estate', 186),
(189, 'Cen Junda', 11600000000, 'China', 'pharmaceuticals', 189),
(190, 'Joseph Tsai', 11600000000, 'Canada', 'e-commerce', 189),
(191, 'Aliko Dangote', 11500000000, 'Nigeria', 'cement, sugar', 191),
(192, 'Marcel Herrmann Telles', 11500000000, 'Brazil', 'beer', 191),
(193, 'Mikhail Prokhorov', 11400000000, 'Russia', 'investments', 193),
(194, 'Jorge Moll Filho & family', 11300000000, 'Brazil', 'hospitals', 194),
(195, 'Viktor Rashnikov', 11200000000, 'Russia', 'steel', 195),
(196, 'Harry Triguboff', 11200000000, 'Australia', 'real estate', 195),
(197, 'Leonid Fedun & family', 11100000000, 'Russia', 'oil', 197),
(198, 'Eyal Ofer', 11100000000, 'Israel', 'real estate, shipping', 197),
(199, 'Evan Spiegel', 11100000000, 'United States', 'Snapchat', 197),
(200, 'Luis Carlos Sarmiento', 11000000000, 'Colombia', 'banking', 200),
(201, 'Andreas Struengmann & family', 11000000000, 'Germany', 'pharmaceuticals', 200),
(202, 'Thomas Struengmann & family', 11000000000, 'Germany', 'pharmaceuticals', 200),
(203, 'Rodolphe Saadé & family', 10900000000, 'France', 'shipping', 203),
(204, 'Dilip Shanghvi', 10900000000, 'India', 'pharmaceuticals', 203),
(205, 'Tom & Judy Love', 10800000000, 'United States', 'retail & gas stations', 205),
(206, 'Anthony Pratt', 10800000000, 'Australia', 'manufacturing', 205),
(207, 'Wang Laisheng', 10800000000, 'China', 'electronics components', 205),
(208, 'Gianluigi & Rafaela Aponte', 10700000000, 'Switzerland', 'Shipping', 208),
(209, 'Wang Laichun', 10700000000, 'China', 'electronics components', 208),
(210, 'Chen Jianhua', 10600000000, 'China', 'chemicals', 210),
(211, 'Leng Youbin', 10600000000, 'China', 'infant formula', 210),
(212, 'Charles Schwab', 10600000000, 'United States', 'discount brokerage', 210),
(213, 'Li Zhenguo & family', 10500000000, 'China', 'solar wafers and modules', 213),
(214, 'Sunil Mittal & family', 10500000000, 'India', 'telecom', 213),
(215, 'Melker Schorling & family', 10500000000, 'Sweden', 'investments', 213),
(216, 'Cai Kui', 10400000000, 'China', 'real estate', 216),
(217, 'John Fredriksen', 10400000000, 'Cyprus', 'shipping', 216),
(218, 'Qi Shi & family', 10400000000, 'China', 'financial information', 216),
(219, 'Chase Coleman, III.', 10300000000, 'United States', 'investments', 219),
(220, 'Hui Wing Mau', 10300000000, 'Hong Kong', 'real estate', 219),
(221, 'Edward Johnson, III.', 10300000000, 'United States', 'money management', 219),
(222, 'Liu Hanyuan', 10300000000, 'China', 'agribusiness', 219),
(223, 'Larry Xiangdong Chen', 10200000000, 'China', 'education', 223),
(224, 'Philip Anschutz', 10100000000, 'United States', 'investments', 224),
(225, 'Dietmar Hopp & family', 10100000000, 'Germany', 'software', 224),
(226, 'German Khan', 10100000000, 'Russia', 'oil, banking, telecom', 224),
(227, 'Li Ge', 10100000000, 'United States', 'pharmaceutical ingredients', 224),
(228, 'Jay Chaudhry', 10000000000, 'United States', 'security software', 228),
(229, 'Eric Wittouck', 10000000000, 'Belgium', 'investments', 228),
(230, 'Carl Cook', 9900000000, 'United States', 'medical devices', 230),
(231, 'Jan Koum', 9900000000, 'United States', 'WhatsApp', 230),
(232, 'Herbert Kohler, Jr. & family', 9800000000, 'United States', 'plumbing fixtures', 232),
(233, 'Tobi Lutke', 9800000000, 'Canada', 'e-commerce', 232),
(234, 'James Dyson', 9700000000, 'United Kingdom', 'vacuums', 234),
(235, 'Mat Ishbia', 9700000000, 'United States', '★', 234),
(236, 'Savitri Jindal & family', 9700000000, 'India', 'steel', 234),
(237, 'Friedhelm Loh', 9700000000, 'Germany', 'manufacturing', 234),
(238, 'Iskander Makhmudov', 9700000000, 'Russia', 'mining, metals, machinery', 234),
(239, 'Stefano Pessina', 9700000000, 'Italy', 'drugstores', 234),
(240, 'Quek Leng Chan', 9700000000, 'Malaysia', 'banking, property', 234),
(241, 'Israel Englander', 9600000000, 'United States', 'hedge funds', 241),
(242, 'Charles Ergen', 9600000000, 'United States', 'satellite TV', 241),
(243, 'Jim Pattison', 9600000000, 'Canada', 'diversified', 241),
(244, 'Yao Liangsong', 9600000000, 'China', 'furniture', 241),
(245, 'David Geffen', 9500000000, 'United States', 'movies, record labels', 245),
(246, 'Yeung Kin-man', 9500000000, 'Hong Kong', 'electronics', 245),
(247, 'Ding Shizhong & family', 9400000000, 'China', 'sports apparel', 247),
(248, 'Harold Hamm & family', 9400000000, 'United States', 'oil & gas', 247),
(249, 'Jim Kennedy', 9400000000, 'United States', 'media, automotive', 247),
(250, 'Blair Parry-Okeden', 9400000000, 'United States', 'media, automotive', 247),
(251, 'Ding Shijia', 9300000000, 'China', 'sports apparel', 251),
(252, 'Kim Beom-su', 9300000000, 'South Korea', 'online services', 251),
(253, 'Ian & Richard Livingstone', 9300000000, 'United Kingdom', 'real estate', 251),
(254, 'Sun Hongbin', 9300000000, 'United States', 'real estate', 251),
(255, 'Alberto Bailleres Gonzalez & family', 9200000000, 'Mexico', 'mining', 255),
(256, 'Lam Wai-ying', 9100000000, 'Hong Kong', 'smartphone screens', 256),
(257, 'Massimiliana Landini Aleotti & family', 9100000000, 'Italy', 'pharmaceuticals', 256),
(258, 'Lu Xiangyang', 9100000000, 'China', 'automobiles, batteries', 256),
(259, 'Wolfgang Marguerre & family', 9100000000, 'Germany', 'pharmaceuticals', 256),
(260, 'David Sun', 9100000000, 'United States', 'computer hardware', 256),
(261, 'John Tu', 9100000000, 'United States', 'computer hardware', 256),
(262, 'Guillaume Pousaz', 9000000000, 'Switzerland', 'fintech', 262),
(263, 'Viktor Vekselberg', 9000000000, 'Russia', 'metals, energy', 262),
(264, 'Jerry Jones', 8900000000, 'United States', 'Dallas Cowboys', 264),
(265, 'Michael Otto', 8900000000, 'Germany', 'retail, real estate', 264),
(266, 'Steven Rales', 8900000000, 'United States', 'manufacturing', 264),
(267, 'Sarath Ratanavadi', 8900000000, 'Thailand', 'energy', 264),
(268, 'Tse Ping', 8900000000, 'China', 'pharmaceuticals', 264),
(269, 'Chan Tan Ching-fen', 8800000000, 'Hong Kong', 'real estate', 269),
(270, 'David Cheriton', 8800000000, 'Canada', 'Google', 269),
(271, 'Xavier Niel', 8800000000, 'France', 'internet, telecom', 269),
(272, 'August von Finck', 8800000000, 'Germany', 'investments', 269),
(273, 'Zong Qinghou', 8800000000, 'China', 'beverages', 269),
(274, 'Benu Gopal Bangur', 8700000000, 'India', 'cement', 274),
(275, 'Sam Bankman-Fried', 8700000000, 'United States', 'cryptocurrency', 274),
(276, 'Cheng Xue', 8700000000, 'China', 'soy sauce', 274),
(277, 'Graeme Hart', 8700000000, 'New Zealand', 'investments', 274),
(278, 'Kjeld Kirk Kristiansen', 8700000000, 'Denmark', 'Lego', 274),
(279, 'Sofie Kirk Kristiansen', 8700000000, 'Denmark', 'Lego', 274),
(280, 'Thomas Kirk Kristiansen', 8700000000, 'Denmark', 'Lego', 274),
(281, 'Lin Bin', 8700000000, 'United States', 'smartphones', 274),
(282, 'Liu Jincheng & family', 8700000000, 'China', 'lithium batteries', 274),
(283, 'Shigenobu Nagamori', 8700000000, 'Japan', 'motors', 274),
(284, 'Carlos Alberto Sicupira & family', 8700000000, 'Brazil', 'beer', 274),
(285, 'Agnete Kirk Thinggaard', 8700000000, 'Denmark', 'Lego', 274),
(286, 'Anthony von Mandl', 8700000000, 'Canada', 'alcoholic beverages', 274),
(287, 'Xu Shihui', 8700000000, 'China', 'snacks, beverages', 274),
(288, 'Ernesto Bertarelli', 8600000000, 'Switzerland', 'biotech, investments', 288),
(289, 'Leon Black', 8600000000, 'United States', 'private equity', 288),
(290, 'Azim Premji', 8600000000, 'India', 'software services', 288),
(291, 'Andrei Skoch & family', 8600000000, 'Russia', 'steel', 288),
(292, 'George Soros', 8600000000, 'United States', 'hedge funds', 288),
(293, 'Zheng Shuliang & family', 8600000000, 'China', 'aluminum products', 288),
(294, 'Marc Benioff', 8400000000, 'United States', 'business software', 294),
(295, 'Kuldip Singh & Gurbachan Singh Dhingra', 8400000000, 'India', 'paints', 294),
(296, 'Ann Walton Kroenke', 8400000000, 'United States', 'Walmart', 294),
(297, 'Bubba Cathy', 8300000000, 'United States', 'Chick-fil-A', 297),
(298, 'Dan Cathy', 8300000000, 'United States', 'Chick-fil-A', 297),
(299, 'Jay Y. Lee', 8300000000, 'South Korea', 'Samsung', 297),
(300, 'Pan Dong', 8300000000, 'Canada', 'consumer goods', 297),
(301, 'Hasso Plattner & family', 8300000000, 'Germany', 'software', 297),
(302, 'Nassef Sawiris', 8300000000, 'Egypt', 'construction, investments', 297),
(303, 'Kushal Pal Singh', 8300000000, 'India', 'real estate', 297),
(304, 'Stanley Kroenke', 8200000000, 'United States', 'sports, real estate', 304),
(305, 'Niels Peter Louis-Hansen', 8200000000, 'Denmark', 'medical devices', 304),
(306, 'Alain Merieux & family', 8200000000, 'France', 'pharmaceuticals', 304),
(307, 'Andreas von Bechtolsheim & family', 8200000000, 'Germany', 'Google', 304),
(308, 'Diane Hendricks', 8000000000, 'United States', 'roofing', 308),
(309, 'Shahid Khan', 8000000000, 'United States', 'auto parts', 308),
(310, 'Nicky Oppenheimer & family', 8000000000, 'South Africa', 'diamonds', 308),
(311, 'Anthony Bamford & family', 7900000000, 'United Kingdom', 'construction equipment', 311),
(312, 'Andrew Beal', 7900000000, 'United States', 'banks, real estate', 311),
(313, 'Dmitry Bukhman', 7900000000, 'Russia', 'online games', 311),
(314, 'Igor Bukhman', 7900000000, 'Russia', 'online games', 311),
(315, 'Takahisa Takahara', 7900000000, 'Japan', 'personal care goods', 311),
(316, 'Kei Hoi Pang', 7800000000, 'China', 'real estate', 316),
(317, 'Alexei Kuzmichev', 7800000000, 'Russia', 'oil, banking, telecom', 316),
(318, 'John Malone', 7800000000, 'United States', 'cable television', 316),
(319, 'Marijke Mars', 7800000000, 'United States', 'candy, pet food', 316),
(320, 'Pamela Mars', 7800000000, 'United States', 'candy, pet food', 316),
(321, 'Valerie Mars', 7800000000, 'United States', 'candy, pet food', 316),
(322, 'Victoria Mars', 7800000000, 'United States', 'candy, pet food', 316),
(323, 'Giorgio Armani', 7700000000, 'Italy', 'luxury goods', 323),
(324, 'Frederik Paulsen', 7700000000, 'Sweden', 'health care', 323),
(325, 'David Reuben', 7700000000, 'United Kingdom', 'investments, real estate', 323),
(326, 'Simon Reuben', 7700000000, 'United Kingdom', 'real estate, investments', 323),
(327, 'Alexander Abramov', 7600000000, 'Russia', 'steel, mining', 327),
(328, 'Rinat Akhmetov', 7600000000, 'Ukraine', 'steel, coal', 327),
(329, 'Silvio Berlusconi & family', 7600000000, 'Italy', 'media', 327),
(330, 'John Grayken', 7600000000, 'Ireland', 'private equity', 327),
(331, 'David Green & family', 7600000000, 'United States', 'retail', 327),
(332, 'George Roberts', 7600000000, 'United States', 'private equity', 327),
(333, 'Zhao Yan', 7600000000, 'China', 'biotech', 327),
(334, 'Nancy Walton Laurie', 7500000000, 'United States', 'Walmart', 334),
(335, 'Pei Zhenhua', 7500000000, 'China', 'batteries', 334),
(336, 'Ruan Liping', 7500000000, 'Hong Kong', 'power strips', 334),
(337, 'Ruan Xueping', 7500000000, 'Hong Kong', 'power strip', 334),
(338, 'Patrick Soon-Shiong', 7500000000, 'United States', 'pharmaceuticals', 334),
(339, 'Antonia Ax:son Johnson & family', 7400000000, 'Sweden', 'diversified', 339),
(340, 'Ernest Garcia, III.', 7400000000, 'United States', 'used cars', 339),
(341, 'George Lucas', 7400000000, 'United States', 'Star Wars', 339),
(342, 'Vicky Safra', 7400000000, 'Greece', 'banking', 339),
(343, 'Zhang Jindong', 7400000000, 'China', 'appliance retailer', 339),
(344, 'Laurent Dassault', 7300000000, 'France', 'diversified', 344),
(345, 'Thierry Dassault', 7300000000, 'France', 'diversified', 344),
(346, 'Marie-Hélène Habert', 7300000000, 'France', 'diversified', 344),
(347, 'Henry Kravis', 7300000000, 'United States', 'private equity', 344),
(348, 'Lai Meisong', 7300000000, 'China', 'package delivery', 344),
(349, 'Sandra Ortega Mera', 7300000000, 'Spain', 'Zara', 344),
(350, 'Pham Nhat Vuong', 7300000000, 'Vietnam', 'diversified', 344),
(351, 'David Shaw', 7300000000, 'United States', 'hedge funds', 344),
(352, 'Rocco Commisso', 7200000000, 'United States', 'telecom', 352),
(353, 'Michael Kadoorie', 7200000000, 'Hong Kong', 'hotels, energy', 352),
(354, 'Bernard Marcus', 7200000000, 'United States', 'Home Depot', 352),
(355, 'Manuel Villar', 7200000000, 'Philippines', 'real estate', 352),
(356, 'Christy Walton', 7200000000, 'United States', 'Walmart', 352),
(357, 'Wang Zhenhua', 7200000000, 'China', 'real estate', 352),
(358, 'Carl Bennet', 7100000000, 'Sweden', 'investments', 358),
(359, 'Rahel Blocher', 7100000000, 'Switzerland', 'chemicals', 358),
(360, 'Johann Graf', 7100000000, 'Austria', 'gambling', 358),
(361, 'Ralph Lauren', 7100000000, 'United States', 'apparel', 358),
(362, 'Li Hua', 7100000000, 'China', 'financial services', 358),
(363, 'Magdalena Martullo-Blocher', 7100000000, 'Switzerland', 'chemicals', 358),
(364, 'Stewart and Lynda Resnick', 7100000000, 'United States', 'agriculture, water', 358),
(365, 'Johann Rupert & family', 7100000000, 'South Africa', 'luxury goods', 358),
(366, 'Safra siblings', 7100000000, 'Brazil', 'banking', 358),
(367, 'Anthony Wood', 7100000000, 'United States', 'Roku', 358),
(368, 'Gang Ye', 7100000000, 'Singapore', 'gaming', 358),
(369, 'Igor Altushkin', 7000000000, 'Russia', 'metals', 369),
(370, 'Bajaj brothers', 7000000000, 'India', 'diversified', 369),
(371, 'Juan Francisco Beckmann Vidal & family', 7000000000, 'Mexico', 'tequila', 369),
(372, 'Alexandre Behring', 7000000000, 'Brazil', 'investments', 369),
(373, 'Vincent Bolloré & family', 7000000000, 'France', 'investments', 369),
(374, 'Gustaf Douglas', 7000000000, 'Sweden', 'investments', 369),
(375, 'Terry Gou', 7000000000, 'Taiwan', 'electronics', 369),
(376, 'Paul Tudor Jones, II.', 7000000000, 'United States', 'hedge funds', 369),
(377, 'Richard Kinder', 7000000000, 'United States', 'pipelines', 369),
(378, 'Ludwig Merckle', 7000000000, 'Germany', 'pharmaceuticals', 369),
(379, 'Stephen Ross', 7000000000, 'United States', 'real estate', 369),
(380, 'Eli Broad', 6900000000, 'United States', 'investments', 380),
(381, 'Jim Davis & family', 6900000000, 'United States', 'New Balance', 380),
(382, 'Guo Guangchang', 6900000000, 'China', 'conglomerate', 380),
(383, 'Robert Kraft', 6900000000, 'United States', 'New England Patriots', 380),
(384, 'Murali Divi & family', 6800000000, 'India', 'pharmaceuticals', 384),
(385, 'Huang Chulong', 6800000000, 'Canada', 'real estate', 384),
(386, 'Li Jianquan & family', 6800000000, 'Hong Kong', 'consumer products', 384),
(387, 'Shi Yonghong & family', 6800000000, 'China', 'restaurants', 384),
(388, 'Wee Cho Yaw', 6800000000, 'Singapore', 'banking', 384),
(389, 'Erich Wesjohann & family', 6800000000, 'Germany', 'poultry genetics', 384),
(390, 'Aloys Wobben', 6800000000, 'Germany', 'wind turbines', 384),
(391, 'Micky Arison', 6700000000, 'United States', 'Carnival Cruises', 391),
(392, 'Jean-Michel Besnier', 6700000000, 'France', 'cheese', 391),
(393, 'Marie Besnier Beauvalot', 6700000000, 'France', 'cheese', 391),
(394, 'Kwon Hyuk-bin', 6700000000, 'South Korea', 'online games', 391),
(395, 'Li Haiyan', 6700000000, 'China', 'restaurants', 391),
(396, 'Fredrik Lundberg', 6700000000, 'Sweden', 'real estate, investments', 391),
(397, 'Hiroshi Mikitani', 6700000000, 'Japan', 'online retail', 391),
(398, 'Dmitry Rybolovlev', 6700000000, 'Russia', 'fertilizer', 391),
(399, 'Reinhold Schmieding', 6700000000, 'United States', 'medical devices', 391),
(400, 'Francis Choi', 6600000000, 'Hong Kong', 'real estate', 400),
(401, 'Bruce Kovner', 6600000000, 'United States', 'hedge funds', 400),
(402, 'Wang Wenjing', 6600000000, 'China', 'business software', 400),
(403, 'Zeng Fangqin', 6600000000, 'China', 'smartphone components', 400),
(404, 'Brian Armstrong', 6500000000, 'United States', 'cryptocurrency', 404),
(405, 'Chu Mang Yee & family', 6500000000, 'China', 'real estate', 404),
(406, 'Denise Coates', 6500000000, 'United Kingdom', 'online gambling', 404),
(407, 'Gopikishan Damani', 6500000000, 'India', 'retail, investments', 404),
(408, 'James Goodnight', 6500000000, 'United States', 'software', 404),
(409, 'Antti Herlin', 6500000000, 'Finland', 'elevators, escalators', 404),
(410, 'Liu Yongxing', 6500000000, 'China', 'diversified', 404),
(411, 'Sri Prakash Lohia', 6500000000, 'Indonesia', 'petrochemicals', 404),
(412, 'John Overdeck', 6500000000, 'United States', 'hedge funds', 404),
(413, 'Prajogo Pangestu', 6500000000, 'Indonesia', 'petrochemicals', 404),
(414, 'Horst Julius Pudwill', 6500000000, 'Germany', 'manufacturing', 404),
(415, 'David Siegel', 6500000000, 'United States', 'hedge funds', 404),
(416, 'Ronda Stryker', 6500000000, 'United States', 'medical equipment', 404),
(417, 'Georg Stumpf', 6500000000, 'Austria', 'real estate, construction', 404),
(418, 'Pauline MacMillan Keinath', 6400000000, 'United States', 'Cargill', 418),
(419, 'Wang Yusuo & family', 6400000000, 'China', 'natural gas distribution', 418),
(420, 'Dennis Washington', 6400000000, 'United States', 'construction, mining', 418),
(421, 'Rahul Bajaj', 6300000000, 'India', 'diversified', 421),
(422, 'Ashwin Dani & family', 6300000000, 'India', 'paints', 421),
(423, 'Andreas Halvorsen', 6300000000, 'Norway', 'hedge funds', 421),
(424, 'Andrei Kozitsyn', 6300000000, 'Russia', 'metals', 421),
(425, 'Axel Oberwelland', 6300000000, 'Germany', 'candy', 421),
(426, 'Shi Yuzhu', 6300000000, 'China', 'online games, investments', 421),
(427, 'Tsai Eng-meng', 6300000000, 'Taiwan', 'food, beverages', 421),
(428, 'Murat Ulker', 6300000000, 'Turkey', 'food', 421),
(429, 'Wang Junlin', 6300000000, 'China', 'liquor', 421),
(430, 'Wang Ning & family', 6300000000, 'China', 'toys', 421),
(431, 'You Xiaoping', 6300000000, 'China', 'chemicals, spandex', 421),
(432, 'Arthur Blank', 6200000000, 'United States', 'Home Depot', 432),
(433, 'James Chambers', 6200000000, 'United States', 'media, automotive', 432),
(434, 'Jiang Bin', 6200000000, 'China', 'acoustic components', 432),
(435, 'Jason Jiang', 6200000000, 'China', 'advertising', 432),
(436, 'Mitchell Rales', 6200000000, 'United States', 'manufacturing, investments', 432),
(437, 'Katharine Rayner', 6200000000, 'United States', 'media, automotive', 432),
(438, 'Margaretta Taylor', 6200000000, 'United States', 'media, automotive', 432),
(439, 'Stef Wertheimer & family', 6200000000, 'Israel', 'metalworking tools', 432),
(440, 'Mike Adenuga', 6100000000, 'Nigeria', 'telecom, oil', 440),
(441, 'Charles Dolan & family', 6100000000, 'United States', 'cable television', 440),
(442, 'Marcos Galperin', 6100000000, 'Argentina', 'e-commerce', 440),
(443, 'Huang Li', 6100000000, 'China', 'imaging systems', 440),
(444, 'Law Kar Po', 6100000000, 'Hong Kong', 'real estate', 440),
(445, 'Li Wa', 6100000000, 'Hong Kong', 'real estate', 440),
(446, 'Idan Ofer', 6100000000, 'Israel', 'drilling, shipping', 440),
(447, 'Qian Dongqi & family', 6100000000, 'China', 'household appliances', 440),
(448, 'Odd Reitan & family', 6100000000, 'Norway', 'retail, real estate', 440),
(449, 'Henry Samueli', 6100000000, 'United States', 'semiconductors', 440),
(450, 'Les Wexner & family', 6100000000, 'United States', 'retail', 440),
(451, 'Dannine Avara', 6000000000, 'United States', 'pipelines', 451),
(452, 'Juergen Blickle', 6000000000, 'Germany', 'auto parts', 451),
(453, 'Robert Brockman', 6000000000, 'United States', 'Software', 451),
(454, 'Mong-Koo Chung', 6000000000, 'South Korea', 'Hyundai', 451),
(455, 'Dulce Pugliese de Godoy Bueno', 6000000000, 'Brazil', 'hospitals, health care', 451),
(456, 'Daniel Dines', 6000000000, 'Romania', 'software', 451),
(457, 'Scott Duncan', 6000000000, 'United States', 'pipelines', 451),
(458, 'Judy Faulkner', 6000000000, 'United States', 'health IT', 451),
(459, 'Guenther Fielmann & family', 6000000000, 'Germany', 'optometry', 451),
(460, 'Milane Frantz', 6000000000, 'United States', 'pipelines', 451),
(461, 'Frits Goldschmeding', 6000000000, 'Netherlands', 'temp agency', 451),
(462, 'Andrei Guriev & family', 6000000000, 'Russia', 'fertilizers', 451),
(463, 'Jane Lauder', 6000000000, 'United States', 'Estée Lauder', 451),
(464, 'Martin Lorentzon', 6000000000, 'Sweden', 'Spotify', 451),
(465, 'Isaac Perlmutter', 6000000000, 'United States', 'Marvel comics', 451),
(466, 'Jeff Skoll', 6000000000, 'United States', 'eBay', 451),
(467, 'Robert F. Smith', 6000000000, 'United States', 'private equity', 451),
(468, 'John A. Sobrato & family', 6000000000, 'United States', 'real estate', 451),
(469, 'Ronald Wanek', 6000000000, 'United States', 'furniture', 451),
(470, 'Randa Duncan Williams', 6000000000, 'United States', 'pipelines', 451),
(471, 'Hansjoerg Wyss', 6000000000, 'Switzerland', 'medical devices', 451),
(472, 'Chen Fashu', 5900000000, 'China', 'investments', 472),
(473, 'Chen Rui', 5900000000, 'China', 'online entertainment', 472),
(474, 'Christopher Hohn', 5900000000, 'United Kingdom', 'hedge funds', 472),
(475, 'Lin Jianhua & family', 5900000000, 'China', 'solar panel components', 472),
(476, 'Maria Asuncion Aramburuzabala & family', 5800000000, 'Mexico', 'beer, investments', 476),
(477, 'Chan Laiwa & family', 5800000000, 'China', 'real estate', 476),
(478, 'George Kaiser', 5800000000, 'United States', 'oil & gas, banking', 476),
(479, 'Ananda Krishnan', 5800000000, 'Malaysia', 'telecoms, media, oil-services', 476),
(480, 'Douglas Leone', 5800000000, 'United States', 'venture capital', 476),
(481, 'Li Chunan', 5800000000, 'China', 'renewable energy', 476),
(482, 'Li Ping', 5800000000, 'Hong Kong', 'batteries', 476),
(483, 'William Li', 5800000000, 'China', 'electric vehicles', 476),
(484, 'Augusto & Giorgio Perfetti', 5800000000, 'Italy', 'candy', 476),
(485, 'Meg Whitman', 5800000000, 'United States', 'eBay', 476),
(486, 'Neil Bluhm', 5700000000, 'United States', 'real estate', 486),
(487, 'Andrew Currie', 5700000000, 'United Kingdom', 'chemicals', 486),
(488, 'Tom Gores', 5700000000, 'United States', 'private equity', 486),
(489, 'Michel Leclercq & family', 5700000000, 'France', 'sporting goods', 486),
(490, 'Michael Moritz', 5700000000, 'United States', 'venture capital', 486),
(491, 'Nicolas Puech', 5700000000, 'France', 'Hermes', 486),
(492, 'John Reece', 5700000000, 'United Kingdom', 'chemicals', 486),
(493, 'Emanuele (Lino) Saputo & family', 5700000000, 'Canada', 'cheese', 486),
(494, 'Fred Smith', 5700000000, 'United States', 'FedEx', 486),
(495, 'Teh Hong Piow', 5700000000, 'Malaysia', 'banking', 486),
(496, 'Rene Benko', 5600000000, 'Austria', 'real estate, retail', 496),
(497, 'Jack Dangermond', 5600000000, 'United States', 'mapping software', 496),
(498, 'Stanley Druckenmiller', 5600000000, 'United States', 'hedge funds', 496),
(499, 'Tamara Gustavson', 5600000000, 'United States', 'self storage', 496),
(500, 'Jian Jun', 5600000000, 'China', 'biomedical products', 496),
(501, 'Kwee brothers', 5600000000, 'Singapore', 'Real Estate', 496),
(502, 'Clive Calder', 5500000000, 'United Kingdom', 'record label', 502),
(503, 'Hasmukh Chudgar & family', 5500000000, 'India', 'pharmaceuticals', 502),
(504, 'Dagmar Dolby & family', 5500000000, 'United States', 'Dolby Laboratories', 502),
(505, 'Dong Wei', 5500000000, 'China', 'pharmaceuticals', 502),
(506, 'Ken Fisher', 5500000000, 'United States', 'money management', 502),
(507, 'Ivan Glasenberg', 5500000000, 'Switzerland', 'mining', 502),
(508, 'He Xiaopeng', 5500000000, 'China', 'electric vehicles', 502),
(509, 'Sumet Jiaravanon', 5500000000, 'Thailand', 'diversified', 502),
(510, 'Karel Komarek', 5500000000, 'Czechia', 'oil and gas, IT, lotteries', 502),
(511, 'Ronald Lauder', 5500000000, 'United States', 'Estee Lauder', 502),
(512, 'Mu Rongjun', 5500000000, 'China', 'e-commerce', 502),
(513, 'J. Christopher Reyes', 5500000000, 'United States', 'food distribution', 502),
(514, 'Jude Reyes', 5500000000, 'United States', 'food distribution', 502),
(515, 'Kjell Inge Rokke', 5500000000, 'Norway', 'shipping, seafood', 502),
(516, 'Edward Roski, Jr.', 5500000000, 'United States', 'real estate', 502),
(517, 'Alexandra Schoerghuber', 5500000000, 'Germany', 'real estate', 502),
(518, 'Shu Ping', 5500000000, 'Singapore', 'restaurants', 502),
(519, 'Christoph Zeller', 5500000000, 'Liechtenstein', 'dental implants', 502),
(520, 'An Kang', 5400000000, 'China', 'pharmaceuticals', 520),
(521, 'Rainer Blickle', 5400000000, 'Germany', 'auto parts', 520),
(522, 'Jaran Chiaravanont', 5400000000, 'Thailand', 'diversified', 520),
(523, 'Alceu Elias Feldmann', 5400000000, 'Brazil', 'fertilizer', 520),
(524, 'Montri Jiaravanont', 5400000000, 'Thailand', 'diversified', 520),
(525, 'Henry Nicholas, III.', 5400000000, 'United States', 'semiconductors', 520),
(526, 'Terrence Pegula', 5400000000, 'United States', 'natural gas', 520),
(527, 'Carrie Perrodo & family', 5400000000, 'France', 'oil', 520),
(528, 'Harry Stine', 5400000000, 'United States', 'agriculture', 520),
(529, 'Pyotr Aven', 5300000000, 'Russia', 'oil, banking, telecom', 529),
(530, 'Kapil & Rahul Bhatia', 5300000000, 'India', 'airlines', 529),
(531, 'Cao Renxian', 5300000000, 'China', 'photovoltaic equipment', 529),
(532, 'Barry Lam', 5300000000, 'Taiwan', 'electronics', 529),
(533, 'Carlos Rodriguez-Pastor', 5300000000, 'Peru', 'finance', 529),
(534, 'Shen Guojun', 5300000000, 'China', 'retail', 529),
(535, 'Luiza Helena Trajano', 5300000000, 'Brazil', 'retail chain', 529),
(536, 'Yao Zhenhua & family', 5300000000, 'China', 'conglomerate', 529),
(537, 'Yu Yong', 5300000000, 'China', 'mining', 529),
(538, 'Sam Zell', 5300000000, 'United States', 'real estate, private equity', 529),
(539, 'John Brown', 5200000000, 'United States', 'medical equipment', 539),
(540, 'Giuseppe De\'Longhi & family', 5200000000, 'Italy', 'coffee makers', 539),
(541, 'Frank Lowy', 5200000000, 'Australia', 'shopping malls', 539),
(542, 'Joe Mansueto', 5200000000, 'United States', 'investment research', 539),
(543, 'Akio Nitori', 5200000000, 'Japan', 'home furnishings', 539),
(544, 'Gary Rollins', 5200000000, 'United States', 'pest control', 539),
(545, 'Ruan Hongliang & family', 5200000000, 'China', 'glass', 539),
(546, 'Teddy Sagi', 5200000000, 'Israel', 'gambling software', 539),
(547, 'Neil Shen', 5200000000, 'China', 'venture capital', 539),
(548, 'David Velez', 5200000000, 'Colombia', 'fintech', 539),
(549, 'Wong Man Li', 5200000000, 'Hong Kong', 'furniture', 539),
(550, 'Robert Bass', 5100000000, 'United States', 'oil, investments', 550),
(551, 'Pierre Chen', 5100000000, 'Taiwan', 'electronics', 550),
(552, 'Mahendra Choksi & family', 5100000000, 'India', 'paints', 550),
(553, 'Gustavo Denegri', 5100000000, 'Italy', 'biotech', 550),
(554, 'Reed Hastings', 5100000000, 'United States', 'Netflix', 550),
(555, 'Michael Herz', 5100000000, 'Germany', 'coffee', 550),
(556, 'Wolfgang Herz', 5100000000, 'Germany', 'coffee', 550),
(557, 'Patrick Lee', 5100000000, 'Hong Kong', 'paper', 550),
(558, 'Lee Yeow Chor & Yeow Seng', 5100000000, 'Malaysia', 'palm oil, property', 550),
(559, 'Theo Mueller', 5100000000, 'Germany', 'dairy', 550),
(560, 'Wu Guanjiang & family', 5100000000, 'China', 'pharmaceuticals', 550),
(561, 'Bernard Broermann', 5000000000, 'Germany', 'hospitals', 561),
(562, 'Jason Chang', 5000000000, 'Singapore', 'electronics', 561),
(563, 'Joshua Harris', 5000000000, 'United States', 'private equity', 561),
(564, 'Vikram Lal & family', 5000000000, 'India', 'motorcycles', 561),
(565, 'Lin Xiucheng & family', 5000000000, 'China', 'electronics', 561),
(566, 'Pankaj Patel', 5000000000, 'India', 'pharmaceuticals', 561),
(567, 'Enrique Razon, Jr.', 5000000000, 'Philippines', 'ports', 561),
(568, 'Walter Scott, Jr. & family', 5000000000, 'United States', 'utilities, telecom', 561),
(569, 'Charles Simonyi', 5000000000, 'United States', 'Microsoft', 561),
(570, 'Kate Wang', 5000000000, 'China', 'e-cigarettes', 561),
(571, 'Daniel Ziff', 5000000000, 'United States', 'investments', 561),
(572, 'Dirk Ziff', 5000000000, 'United States', 'investments', 561),
(573, 'Robert Ziff', 5000000000, 'United States', 'investments', 561),
(574, 'Stephen Bisciotti', 4900000000, 'United States', 'staffing, Baltimore Ravens', 574),
(575, 'Chen Dongsheng', 4900000000, 'China', 'insurance', 574),
(576, 'Charles B. Johnson', 4900000000, 'United States', 'money management', 574),
(577, 'Marc Ladreit de Lacharriere', 4900000000, 'France', 'finance', 574),
(578, 'Joe Lewis', 4900000000, 'United Kingdom', 'investments', 574),
(579, 'Lin Li', 4900000000, 'China', 'investments', 574),
(580, 'Karen Pritzker', 4900000000, 'United States', 'hotels, investments', 574),
(581, 'Abdulsamad Rabiu', 4900000000, 'Nigeria', 'cement, sugar', 574),
(582, 'Mark Scheinberg', 4900000000, 'Canada', 'online gambling', 574),
(583, 'Howard Schultz', 4900000000, 'United States', 'Starbucks', 574),
(584, 'Yasumitsu Shigeta', 4900000000, 'Japan', 'mobile phone retailer', 574),
(585, 'Thomas Siebel', 4900000000, 'United States', 'business software', 574),
(586, 'Peter Thiel', 4900000000, 'United States', 'Facebook', 574),
(587, 'Chip Wilson', 4900000000, 'Canada', 'Lululemon', 574),
(588, 'Zhang Fan', 4900000000, 'China', 'touch screens', 574),
(589, 'Pierre Bellon & family', 4800000000, 'France', 'food services', 589),
(590, 'Richard Branson', 4800000000, 'United Kingdom', 'Virgin', 589),
(591, 'Huang Yi', 4800000000, 'Hong Kong', 'car dealerships', 589),
(592, 'Bidzina Ivanishvili', 4800000000, 'Georgia', 'investments', 589),
(593, 'Edward Johnson, IV.', 4800000000, 'United States', 'money management', 589),
(594, 'Elizabeth Johnson', 4800000000, 'United States', 'money management', 589),
(595, 'Ted Lerner & family', 4800000000, 'United States', 'real estate', 589),
(596, 'Lin Shu-hong', 4800000000, 'Taiwan', 'petrochemicals', 589),
(597, 'Yuri Milner', 4800000000, 'Israel', 'tech investments', 589),
(598, 'Issad Rebrab & family', 4800000000, 'Algeria', 'food', 589),
(599, 'Thomas Schmidheiny', 4800000000, 'Switzerland', 'cement', 589),
(600, 'Chairul Tanjung', 4800000000, 'Indonesia', 'diversified', 589),
(601, 'Alan Trefler', 4800000000, 'United States', 'software', 589),
(602, 'Radovan Vitek', 4800000000, 'Czechia', 'real estate', 589),
(603, 'Frank Wang', 4800000000, 'China', 'drones', 589),
(604, 'Wang Xicheng & family', 4800000000, 'China', 'tires', 589),
(605, 'Wang Zhendong', 4800000000, 'China', 'education', 589),
(606, 'John, Alan & Bruce Wilson', 4800000000, 'Australia', 'retailing', 589),
(607, 'M.A. Yusuff Ali', 4800000000, 'India', 'retail', 589),
(608, 'Maria Fernanda Amorim & family', 4700000000, 'Portugal', 'energy, investments', 608),
(609, 'Dona Bertarelli', 4700000000, 'Switzerland', 'biotech', 608),
(610, 'Hong Jie', 4700000000, 'China', 'paint', 608),
(611, 'Nathan Kirsh', 4700000000, 'Eswatini (Swaziland)', 'retail, real estate', 608),
(612, 'Ken Langone', 4700000000, 'United States', 'investments', 608),
(613, 'Michael Pieper', 4700000000, 'Switzerland', 'kitchen appliances', 608),
(614, 'Richard Schulze', 4700000000, 'United States', 'Best Buy', 608),
(615, 'Eric Smidt', 4700000000, 'United States', 'hardware stores', 608),
(616, 'Tim Sweeney', 4700000000, 'United States', 'video games', 608),
(617, 'Tang Shing-bor', 4700000000, 'Hong Kong', 'real estate', 608),
(618, 'Oleg Tinkov', 4700000000, 'Russia', 'banking', 608),
(619, 'Mark Walter', 4700000000, 'United States', 'finance', 608),
(620, 'Wong Luen Hei', 4700000000, 'China', 'building materials', 608),
(621, 'Zhou Bajin', 4700000000, 'China', 'auto parts', 608),
(622, 'Patrizio Bertelli', 4600000000, 'Italy', 'luxury goods', 622),
(623, 'Bert Beveridge', 4600000000, 'United States', 'vodka', 622),
(624, 'Martin & Olivier Bouygues', 4600000000, 'France', 'construction, media', 622),
(625, 'Chen Lip Keong', 4600000000, 'Malaysia', 'casinos, property, energy', 622),
(626, 'Dong Fan', 4600000000, 'China', 'medical devices', 622),
(627, 'Daniel Ek', 4600000000, 'Sweden', 'Spotify', 622),
(628, 'Tilman Fertitta', 4600000000, 'United States', 'Houston Rockets, entertainment', 622),
(629, 'Luis Frias', 4600000000, 'Brazil', 'mobile payments', 622),
(630, 'Peter Gassner', 4600000000, 'United States', 'software', 622),
(631, 'Vladimir Kim', 4600000000, 'Kazakhstan', 'mining', 622),
(632, 'Li Weiguo', 4600000000, 'China', 'construction materials', 622),
(633, 'Denis O\'Brien', 4600000000, 'Ireland', 'telecom', 622),
(634, 'Miuccia Prada', 4600000000, 'Italy', 'luxury goods', 622),
(635, 'Robert Rich, Jr.', 4600000000, 'United States', 'frozen foods', 622),
(636, 'Abhay Vakil & family', 4600000000, 'India', 'paints', 622),
(637, 'Paul-Heinz Wesjohann & family', 4600000000, 'Germany', 'chicken processing', 622),
(638, 'Ron Baron', 4500000000, 'United States', 'money management', 638),
(639, 'Andre Esteves', 4500000000, 'Brazil', 'banking', 638),
(640, 'Jonathan Gray', 4500000000, 'United States', 'investments', 638),
(641, 'Hu Baifan', 4500000000, 'China', 'pharmaceuticals', 638),
(642, 'Viatcheslav Kantor', 4500000000, 'Russia', 'fertilizer, real estate', 638),
(643, 'Min Kao & family', 4500000000, 'United States', 'navigation equipment', 638),
(644, 'Friedrich Knapp', 4500000000, 'Germany', 'fashion retail', 638),
(645, 'Richard Li', 4500000000, 'Hong Kong', 'telecom', 638),
(646, 'Rudolf Maag', 4500000000, 'Switzerland', 'medical devices', 638),
(647, 'Miao Hangen', 4500000000, 'China', 'textiles, petrochemicals', 638),
(648, 'Sami Mnaymneh', 4500000000, 'United States', 'private equity', 638),
(649, 'Igor Olenicoff', 4500000000, 'United States', 'real estate', 638),
(650, 'Sergei Popov', 4500000000, 'Russia', 'banking', 638),
(651, 'Thomas Pritzker', 4500000000, 'United States', 'hotels, investments', 638),
(652, 'Julian Robertson, Jr.', 4500000000, 'United States', 'hedge funds', 638),
(653, 'Tony Tamer', 4500000000, 'United States', 'private equity', 638),
(654, 'Zhu Baoguo & family', 4500000000, 'China', 'pharmaceuticals', 638),
(655, 'Shari Arison', 4400000000, 'Israel', 'Carnival Cruises', 655),
(656, 'Orlando Bravo', 4400000000, 'United States', 'private equity', 655),
(657, 'Garrett Camp', 4400000000, 'Canada', 'Uber', 655),
(658, 'Nick Caporella', 4400000000, 'United States', 'beverages', 655),
(659, 'Mark Cuban', 4400000000, 'United States', 'online media, Dallas Mavericks', 655),
(660, 'Yakir Gabay', 4400000000, 'Cyprus', 'real estate', 655),
(661, 'Erman Ilicak', 4400000000, 'Turkey', 'construction', 655),
(662, 'Gustav Magnar Witzoe', 4400000000, 'Norway', 'fish farming', 655),
(663, 'Michael Minhong Yu', 4400000000, 'China', 'education', 655),
(664, 'Zhang Daocai', 4400000000, 'China', 'valves', 655),
(665, 'Stéphane Bancel', 4300000000, 'France', 'biotech', 665),
(666, 'Ralph Dommermuth', 4300000000, 'Germany', 'internet service provider', 665),
(667, 'Thomas Hagen', 4300000000, 'United States', 'insurance', 665),
(668, 'Pansy Ho', 4300000000, 'Hong Kong', 'casinos', 665),
(669, 'Rakesh Jhunjhunwala', 4300000000, 'India', 'investments', 665),
(670, 'Lee Yin Yee', 4300000000, 'China', 'glass', 665),
(671, 'Eric Lefkofsky', 4300000000, 'United States', 'Groupon', 665),
(672, 'Edwin Leong', 4300000000, 'Hong Kong', 'real estate', 665),
(673, 'Pawan Munjal & family', 4300000000, 'India', 'motorcycles', 665),
(674, 'Antony Ressler', 4300000000, 'United States', 'finance', 665),
(675, 'Paul Singer', 4300000000, 'United States', 'hedge funds', 665),
(676, 'Kerry Stokes', 4300000000, 'Australia', 'construction equipment, media', 665),
(677, 'Steven Udvar-Hazy', 4300000000, 'United States', 'aircraft leasing', 665),
(678, 'Takao Yasuda', 4300000000, 'Japan', 'retail', 665),
(679, 'Ye Chenghai & family', 4300000000, 'Hong Kong', 'pharmaceuticals', 665),
(680, 'Alain Bouchard', 4200000000, 'Canada', 'retail', 680),
(681, 'Rick Caruso', 4200000000, 'United States', 'real estate', 680),
(682, 'Scott Cook', 4200000000, 'United States', 'software', 680),
(683, 'Barry Diller', 4200000000, 'United States', 'online media', 680),
(684, 'Traudl Engelhorn & family', 4200000000, 'Germany', 'pharmaceuticals, medical equipment', 680),
(685, 'Fang Wei', 4200000000, 'China', 'steel', 680),
(686, 'Fu Liquan & family', 4200000000, 'China', 'surveillance equipment', 680),
(687, 'Luca Garavoglia', 4200000000, 'Italy', 'spirits', 680),
(688, 'Tom Golisano', 4200000000, 'United States', 'payroll services', 680),
(689, 'Peter Hargreaves', 4200000000, 'United Kingdom', 'financial services', 680),
(690, 'Bertil Hult', 4200000000, 'Sweden', 'education', 680),
(691, 'Ray Lee Hunt', 4200000000, 'United States', 'oil, real estate', 680),
(692, 'James Irving', 4200000000, 'Canada', 'diversified', 680),
(693, 'Martin Lau', 4200000000, 'Hong Kong', 'e-commerce', 680),
(694, 'Li Li', 4200000000, 'China', 'healthcare', 680),
(695, 'Liu Fangyi', 4200000000, 'China', 'medical equipment', 680),
(696, 'Luo Liguo & family', 4200000000, 'China', 'chemicals', 680),
(697, 'Pan Laican', 4200000000, 'China', 'soy sauce', 680),
(698, 'Juan Roig', 4200000000, 'Spain', 'supermarkets', 680),
(699, 'Leonard Stern', 4200000000, 'United States', 'real estate', 680),
(700, 'Thomas Straumann', 4200000000, 'Switzerland', 'dental implants', 680),
(701, 'Wang Yanqing & family', 4200000000, 'China', 'electrical equipment', 680),
(702, 'Ken Xie', 4200000000, 'United States', 'cybersecurity', 680),
(703, 'Xue Hua', 4200000000, 'China', 'agribusiness', 680),
(704, 'Steven Meng Yang & family', 4200000000, 'China', 'electronics', 680),
(705, 'Margot Birmingham Perot', 4100000000, 'United States', 'computer services, real estate', 705),
(706, 'David Bonderman', 4100000000, 'United States', 'private equity', 705),
(707, 'Matthew Calkins', 4100000000, 'United States', 'software', 705),
(708, 'Cho Tak Wong', 4100000000, 'Hong Kong', 'auto parts', 705),
(709, 'Piero Ferrari', 4100000000, 'Italy', 'automobiles', 705),
(710, 'Dan Friedkin', 4100000000, 'United States', 'Toyota dealerships', 705),
(711, 'Laurence Graff & family', 4100000000, 'United Kingdom', 'diamond jewelry', 705),
(712, 'Martin Haefner', 4100000000, 'Switzerland', 'software, investments', 705),
(713, 'Hong Ra-hee', 4100000000, 'South Korea', 'Samsung', 705),
(714, 'Ji Qi', 4100000000, 'China', 'hotels, motels', 705),
(715, 'Rupert Johnson, Jr.', 4100000000, 'United States', 'money management', 705),
(716, 'Daniel Kretinsky', 4100000000, 'Czechia', 'energy, investments', 705),
(717, 'William Lauder', 4100000000, 'United States', 'Estee Lauder', 705),
(718, 'Janice McNair', 4100000000, 'United States', 'energy, sports', 705),
(719, 'John Morris', 4100000000, 'United States', 'sporting goods retail', 705),
(720, 'Gabe Newell', 4100000000, 'United States', 'videogames', 705),
(721, 'Katharina Otto-Bernstein', 4100000000, 'Germany', 'real estate', 705),
(722, 'Julio Ponce Lerou', 4100000000, 'Chile', 'fertilizer', 705),
(723, 'Jon Stryker', 4100000000, 'United States', 'medical equipment', 705),
(724, 'Suh Kyung-bae', 4100000000, 'South Korea', 'cosmetics', 705),
(725, 'Xu Jingren', 4100000000, 'China', 'pharmaceuticals', 705),
(726, 'Samuel Yin', 4100000000, 'Taiwan', 'retail', 705),
(727, 'Walter P.J. Droege', 4000000000, 'Germany', 'investing', 727),
(728, 'Du Jiangtao & family', 4000000000, 'China', 'chemicals', 727),
(729, 'Vinod & Anil Rai Gupta', 4000000000, 'India', 'electrical equipment', 727),
(730, 'Masatoshi Ito', 4000000000, 'Japan', 'retail', 727),
(731, 'Igor Kesaev', 4000000000, 'Russia', 'tobacco distribution, retail', 727),
(732, 'Koon Poh Keong', 4000000000, 'Malaysia', 'aluminum', 727),
(733, 'Paul Xiaoming Lee & family', 4000000000, 'United States', 'packaging', 727),
(734, 'Li Xiang', 4000000000, 'China', 'electric vehicles', 727),
(735, 'Melissa Ma', 4000000000, 'China', 'internet search', 727),
(736, 'Kiran Mazumdar-Shaw', 4000000000, 'India', 'biopharmaceuticals', 727),
(737, 'Gwendolyn Sontheim Meyer', 4000000000, 'United States', 'Cargill', 727),
(738, 'Akira Mori & family', 4000000000, 'Japan', 'real estate', 727),
(739, 'Georg Nemetschek & family', 4000000000, 'Germany', 'software', 727),
(740, 'Masahiro Noda', 4000000000, 'Japan', 'software', 727),
(741, 'Ajay Piramal', 4000000000, 'India', 'pharmaceuticals', 727),
(742, 'Qiu Guanghe & family', 4000000000, 'China', 'fashion retail', 727),
(743, 'Trevor Rees-Jones', 4000000000, 'United States', 'oil & gas', 727),
(744, 'Ira Rennert', 4000000000, 'United States', 'investments', 727),
(745, 'Marc Rowan', 4000000000, 'United States', 'private equity', 727),
(746, 'Ugur Sahin', 4000000000, 'Germany', 'biotechnology', 727),
(747, 'Michal Solowow', 4000000000, 'Poland', 'investments', 727),
(748, 'Udo & Harald Tschira', 4000000000, 'Germany', 'software', 727),
(749, 'Wu Jianshu', 4000000000, 'Hong Kong', 'auto parts', 727),
(750, 'Ye Xiaoping', 4000000000, 'China', 'pharmaceuticals', 727),
(751, 'Zhou Hongyi', 4000000000, 'China', 'security software', 727),
(752, 'Che Jianxing', 3900000000, 'China', 'furniture retailing', 752),
(753, 'Beatriz Davila de Santo Domingo', 3900000000, 'Colombia', 'beer', 752),
(754, 'Rafael Del Pino', 3900000000, 'Spain', 'construction', 752),
(755, 'Du Weimin', 3900000000, 'China', 'vaccines', 752),
(756, 'Rakesh Gangwal', 3900000000, 'United States', 'airline', 752),
(757, 'Paul Gauselmann & family', 3900000000, 'Germany', 'gambling', 752),
(758, 'Jeff Greene', 3900000000, 'United States', 'real estate, investments', 752),
(759, 'Johnelle Hunt', 3900000000, 'United States', 'trucking', 752),
(760, 'Jin Baofang', 3900000000, 'China', 'solar energy', 752),
(761, 'Kuan Kam Hon & family', 3900000000, 'Malaysia', 'synthetic gloves', 752),
(762, 'Stephen Mandel, Jr.', 3900000000, 'United States', 'hedge funds', 752),
(763, 'Gilles Martin', 3900000000, 'France', 'laboratory services', 752),
(764, 'Masahiro Miki', 3900000000, 'Japan', 'shoes', 752),
(765, 'Dan Olsson', 3900000000, 'Sweden', 'diversified', 752),
(766, 'Robert Rowling', 3900000000, 'United States', 'hotels, investments', 752),
(767, 'Erik Selin', 3900000000, 'Sweden', 'real estate', 752),
(768, 'Mark Shoen', 3900000000, 'United States', 'U-Haul', 752),
(769, 'Ben Silbermann', 3900000000, 'United States', 'Pinterest', 752),
(770, 'Maximilian Viessmann', 3900000000, 'Germany', 'heating and cooling equipment', 752),
(771, 'Wang Linpeng', 3900000000, 'China', 'furniture retailing', 752),
(772, 'Wu Zhigang & family', 3900000000, 'China', 'bakery chain', 752),
(773, 'Yi Zheng', 3900000000, 'China', 'software', 752),
(774, 'Zhang Wenzhong', 3900000000, 'China', 'supermarkets', 752),
(775, 'Euisun Chung', 3800000000, 'South Korea', 'Hyundai', 775),
(776, 'Daniel D\'Aniello', 3800000000, 'United States', 'private equity', 775),
(777, 'Oleg Deripaska', 3800000000, 'Russia', 'aluminum, utilities', 775),
(778, 'Sergey Dmitriev', 3800000000, 'Russia', 'computer software', 775),
(779, 'Feng Hailiang', 3800000000, 'China', 'copper, education', 775),
(780, 'John Gandel', 3800000000, 'Australia', 'shopping malls', 775),
(781, 'Gao Dekang & family', 3800000000, 'China', 'apparel', 775),
(782, 'Jaime Gilinski Bacal', 3800000000, 'Colombia', 'banking', 775),
(783, 'Sergei Gordeev', 3800000000, 'Russia', 'real estate', 775),
(784, 'Jeff Green', 3800000000, 'United States', 'online advertising', 775),
(785, 'Amos Hostetter, Jr.', 3800000000, 'United States', 'cable television', 775),
(786, 'Kuok Khoon Hong', 3800000000, 'Singapore', 'palm oil', 775),
(787, 'Lai Jianping', 3800000000, 'China', 'soy sauce', 775),
(788, 'Aerin Lauder', 3800000000, 'United States', 'cosmetics', 775),
(789, 'Hans Georg Naeder', 3800000000, 'Germany', 'prosthetics', 775),
(790, 'Maren Otto', 3800000000, 'Germany', 'retail, real estate', 775),
(791, 'Clive Palmer', 3800000000, 'Australia', 'mining', 775),
(792, 'Karsanbhai Patel', 3800000000, 'India', 'consumer goods', 775),
(793, 'Qiu Jianping & family', 3800000000, 'China', 'hand tools', 775),
(794, 'Wolfgang Reimann', 3800000000, 'Germany', 'consumer goods', 775),
(795, 'Matthias Reimann-Andersen', 3800000000, 'Germany', 'consumer goods', 775),
(796, 'Stefan Reimann-Andersen', 3800000000, 'Germany', 'consumer goods', 775),
(797, 'Renate Reimann-Haas', 3800000000, 'Germany', 'consumer goods', 775),
(798, 'Dirk Rossmann & family', 3800000000, 'Germany', 'drugstores', 775),
(799, 'Shaul Shani', 3800000000, 'Israel', 'telecom', 775),
(800, 'Song Fei', 3800000000, 'China', 'machinery', 775),
(801, 'Donald Sterling', 3800000000, 'United States', 'real estate', 775),
(802, 'Ivar Tollefsen', 3800000000, 'Norway', 'real estate', 775),
(803, 'Don Vultaggio & family', 3800000000, 'United States', 'beverages', 775),
(804, 'Nusli Wadia', 3800000000, 'India', 'consumer goods', 775),
(805, 'Zhang Jin', 3800000000, 'China', 'commodities', 775),
(806, 'Zhu Gongshan', 3800000000, 'China', 'solar panel materials', 775),
(807, 'Peter Gilgan', 3700000000, 'Canada', 'homebuilding', 807),
(808, 'Marian Ilitch', 3700000000, 'United States', 'Little Caesars', 807),
(809, 'Kong Jian Min', 3700000000, 'China', 'real estate', 807),
(810, 'Li Liangbin', 3700000000, 'China', 'lithium', 807),
(811, 'Li Yongxin & family', 3700000000, 'China', 'education', 807),
(812, 'Mary Alice Dorrance Malone', 3700000000, 'United States', 'Campbell Soup', 807),
(813, 'Michael Milken', 3700000000, 'United States', 'investments', 807),
(814, 'Ronald Perelman', 3700000000, 'United States', 'leveraged buyouts', 807),
(815, 'Candido Pinheiro Koren de Lima', 3700000000, 'Brazil', 'hospitals, health insurance', 807),
(816, 'J. Joe Ricketts & family', 3700000000, 'United States', 'TD Ameritrade', 807),
(817, 'Paolo & Gianfelice Mario Rocca', 3700000000, 'Italy', 'pipe manufacturing', 807),
(818, 'Jeff Rothschild', 3700000000, 'United States', 'Facebook', 807),
(819, 'David Rubenstein', 3700000000, 'United States', 'private equity', 807),
(820, 'Maria-Elisabeth Schaeffler-Thumann', 3700000000, 'Germany', 'auto parts', 807),
(821, 'Steven Spielberg', 3700000000, 'United States', 'movies', 807),
(822, 'Barry Sternlicht', 3700000000, 'United States', 'private equity', 807),
(823, 'Mark Stevens', 3700000000, 'United States', 'venture capital', 807),
(824, 'David Steward', 3700000000, 'United States', 'IT provider', 807),
(825, 'Vincent Viola', 3700000000, 'United States', 'electronic trading', 807),
(826, 'Todd Wanek', 3700000000, 'United States', 'furniture', 807),
(827, 'Wang Roger', 3700000000, 'United States', 'retail', 807),
(828, 'Russ Weiner', 3700000000, 'United States', 'energy drinks', 807),
(829, 'Herbert Wertheim', 3700000000, 'United States', 'investments', 807),
(830, 'Xu Shugen', 3700000000, 'China', 'construction, mining machinery', 807),
(831, 'Anil Agarwal & family', 3600000000, 'India', 'mining, metals', 831),
(832, 'Majid Al Futtaim & family', 3600000000, 'United Arab Emirates', 'real estate, retail', 831),
(833, 'Leonid Boguslavsky', 3600000000, 'Russia', 'venture capital', 831),
(834, 'Austen Cargill, II.', 3600000000, 'United States', 'Cargill', 831),
(835, 'James Cargill, II.', 3600000000, 'United States', 'Cargill', 831),
(836, 'Chu Lam Yiu', 3600000000, 'Hong Kong', 'flavorings', 831),
(837, 'Steve Conine', 3600000000, 'United States', 'online retail', 831),
(838, 'Hu Kaijun', 3600000000, 'China', 'pharmaceuticals', 831),
(839, 'S. Curtis Johnson', 3600000000, 'United States', 'cleaning products', 831),
(840, 'Helen Johnson-Leipold', 3600000000, 'United States', 'cleaning products', 831),
(841, 'Daryl Katz', 3600000000, 'Canada', 'pharmacies', 831),
(842, 'Peter Kellogg', 3600000000, 'United States', 'investments', 831),
(843, 'Samuel Tak Lee', 3600000000, 'Hong Kong', 'real estate', 831),
(844, 'Li Hongxin & family', 3600000000, 'China', 'paper & related products', 831),
(845, 'Marianne Liebmann', 3600000000, 'United States', 'Cargill', 831),
(846, 'Winifred J. Marquart', 3600000000, 'United States', 'cleaning products', 831),
(847, 'Daniel Och', 3600000000, 'United States', 'hedge funds', 831),
(848, 'Anthony Pritzker', 3600000000, 'United States', 'hotels, investments', 831),
(849, 'Rodger Riney & family', 3600000000, 'United States', 'discount brokerage', 831),
(850, 'Niraj Shah', 3600000000, 'United States', 'online retail', 831),
(851, 'Lynsi Snyder', 3600000000, 'United States', 'In-N-Out Burger', 831),
(852, 'Jerzy Starak', 3600000000, 'Poland', 'pharmaceuticals', 831),
(853, 'Michael Tojner', 3600000000, 'Austria', 'batteries, investments', 831),
(854, 'Richard Tsai', 3600000000, 'Taiwan', 'finance', 831),
(855, 'Ty Warner', 3600000000, 'United States', 'real estate, plush toys', 831),
(856, 'Yang Shaopeng', 3600000000, 'China', 'shipping', 831),
(857, 'Yuan Liping', 3600000000, 'Canada', 'pharmaceuticals', 831),
(858, 'Zhang Hongwei', 3600000000, 'China', 'oil, banking', 831),
(859, 'Andrej Babis', 3500000000, 'Czechia', 'agriculture', 859),
(860, 'Shyam & Hari Bhartia', 3500000000, 'India', 'diversified', 859),
(861, 'Hubert Burda', 3500000000, 'Germany', 'publishing', 859),
(862, 'Chuchat Petaumpai & Daonapa Petampai', 3500000000, 'Thailand', 'motorcycle loans', 859),
(863, 'Charles Cohen', 3500000000, 'United States', 'real estate', 859),
(864, 'David Filo', 3500000000, 'United States', 'Yahoo', 859),
(865, 'Sergei Galitsky', 3500000000, 'Russia', 'retail', 859),
(866, 'Alessandra Garavoglia', 3500000000, 'Italy', 'spirits', 859),
(867, 'Franco Bittar Garcia', 3500000000, 'Brazil', 'retailing', 859),
(868, 'Martha Ingram & family', 3500000000, 'United States', 'book distribution, transportation', 859),
(869, 'H. Fisk Johnson', 3500000000, 'United States', 'cleaning products', 859),
(870, 'Li Guoqiang', 3500000000, 'China', 'auto dealerships', 859),
(871, 'Lim Wee Chai', 3500000000, 'Malaysia', 'rubber gloves', 859),
(872, 'Liu Xiaodong', 3500000000, 'China', 'flavorings', 859),
(873, 'Daniel Loeb', 3500000000, 'United States', 'hedge funds', 859),
(874, 'Jim McKelvey', 3500000000, 'United States', 'mobile payments', 859),
(875, 'Apoorva Mehta', 3500000000, 'Canada', 'grocery delivery service', 859),
(876, 'N.R. Narayana Murthy', 3500000000, 'India', 'software services', 859),
(877, 'John Paulson', 3500000000, 'United States', 'hedge funds', 859),
(878, 'J.B. Pritzker', 3500000000, 'United States', 'hotels, investments', 859),
(879, 'Michael Rubin', 3500000000, 'United States', 'online retail', 859),
(880, 'Arnout Schuijff', 3500000000, 'Netherlands', 'payments software', 859),
(881, 'Thomas Secunda', 3500000000, 'United States', 'Bloomberg LP', 859),
(882, 'Vivek Chaand Sehgal', 3500000000, 'Australia', 'auto parts', 859),
(883, 'E. Joe Shoen', 3500000000, 'United States', 'U-Haul', 859),
(884, 'Leena Tewari', 3500000000, 'India', 'pharmaceuticals', 859),
(885, 'Julia Thiele-Schuerhoff', 3500000000, 'Germany', 'brakes', 859),
(886, 'Romesh T. Wadhwani', 3500000000, 'United States', 'software', 859),
(887, 'Wu Shaoxun', 3500000000, 'China', 'wine', 859),
(888, 'Ye Guofu', 3500000000, 'China', 'retail', 859),
(889, 'Denise York & family', 3500000000, 'United States', 'San Francisco 49ers', 859),
(890, 'Zhou Jianping', 3500000000, 'China', 'fashion retail', 859),
(891, 'Mohed Altrad', 3400000000, 'France', 'scaffolding, cement mixers', 891),
(892, 'Gayle Benson', 3400000000, 'United States', 'pro sports teams', 891),
(893, 'Francesco Gaetano Caltagirone', 3400000000, 'Italy', 'cement, diversified', 891),
(894, 'William Conway, Jr.', 3400000000, 'United States', 'private equity', 891),
(895, 'Jim Davis', 3400000000, 'United States', 'staffing & recruiting', 891),
(896, 'Deng Wen', 3400000000, 'China', 'flavorings', 891),
(897, 'Ennio Doris & family', 3400000000, 'Italy', 'financial services', 891),
(898, 'Bernard Ecclestone & family', 3400000000, 'United Kingdom', 'Formula One', 891),
(899, 'Alexander Frolov', 3400000000, 'Russia', 'mining, steel', 891),
(900, 'Fiona Geminder', 3400000000, 'Australia', 'manufacturing', 891),
(901, 'Zarakh Iliev', 3400000000, 'Russia', 'real estate', 891),
(902, 'Viktor Kharitonin', 3400000000, 'Russia', 'pharmaceuticals', 891),
(903, 'Steven Klinsky', 3400000000, 'United States', 'investments', 891),
(904, 'Chris Larsen', 3400000000, 'United States', 'cryptocurrency', 891),
(905, 'Angela Leong', 3400000000, 'Hong Kong', 'casinos', 891),
(906, 'Margarita Louis-Dreyfus & family', 3400000000, 'Switzerland', 'commodities', 891),
(907, 'John Middleton', 3400000000, 'United States', 'tobacco', 891),
(908, 'Arnon Milchan', 3400000000, 'Israel', 'movie making', 891),
(909, 'Arturo Moreno', 3400000000, 'United States', 'billboards, Anaheim Angels', 891),
(910, 'God Nisanov', 3400000000, 'Russia', 'real estate', 891),
(911, 'Benjamin Zhengmin Pan & family', 3400000000, 'China', 'electronics', 891),
(912, 'Jay Paul', 3400000000, 'United States', 'real estate', 891),
(913, 'Remo Ruffini', 3400000000, 'Italy', 'winter jackets', 891),
(914, 'Patrick Ryan', 3400000000, 'United States', 'insurance', 891),
(915, 'RJ Scaringe', 3400000000, 'United States', 'electric vehicles', 891),
(916, 'Lynn Schusterman', 3400000000, 'United States', 'oil & gas, investments', 891),
(917, 'Eric Ya Shen', 3400000000, 'China', 'online apparel retail', 891),
(918, 'Daniel Tsai', 3400000000, 'Taiwan', 'finance', 891),
(919, 'Tung Chee Chen', 3400000000, 'Hong Kong', 'shipping', 891),
(920, 'Bulat Utemuratov', 3400000000, 'Kazakhstan', 'mining, banking, hotels', 891),
(921, 'Frank VanderSloot', 3400000000, 'United States', 'nutrition, wellness products', 891),
(922, 'Kelcy Warren', 3400000000, 'United States', 'pipelines', 891),
(923, 'Xu Yi', 3400000000, 'China', 'Internet', 891),
(924, 'Vladimir Yevtushenkov', 3400000000, 'Russia', 'telecom, investments', 891),
(925, 'Somphote Ahunai', 3300000000, 'Thailand', 'renewable energy', 925),
(926, 'John Arnold', 3300000000, 'United States', 'hedge funds', 925),
(927, 'Neal Blue & family', 3300000000, 'United States', 'defense', 925),
(928, 'Alejandro Bulgheroni', 3300000000, 'Argentina', 'oil & gas', 925),
(929, 'Dong Jinggui', 3300000000, 'China', 'electric scooters', 925),
(930, 'Joseph Edelman', 3300000000, 'United States', 'hedge funds', 925),
(931, 'Charles Edelstenne', 3300000000, 'France', 'aviation', 925),
(932, 'Senapathy Gopalakrishnan', 3300000000, 'India', 'software services', 925),
(933, 'B. Wayne Hughes', 3300000000, 'United States', 'self storage', 925),
(934, 'Ravi Jaipuria', 3300000000, 'India', 'soft drinks, fast food', 925),
(935, 'Samvel Karapetyan', 3300000000, 'Russia', 'real estate', 925),
(936, 'Vyacheslav Kim', 3300000000, 'Kazakhstan', 'fintech', 925),
(937, 'Jim Koch', 3300000000, 'United States', 'beer', 925),
(938, 'Andre Koo, Sr.', 3300000000, 'Taiwan', 'financial services', 925),
(939, 'Yuri Kovalchuk', 3300000000, 'Russia', 'banking, insurance, media', 925),
(940, 'Richard LeFrak & family', 3300000000, 'United States', 'real estate', 925),
(941, 'Kevin David Lehmann', 3300000000, 'Germany', 'drugstores', 925),
(942, 'Horst Paulmann & family', 3300000000, 'Chile', 'retail', 925),
(943, 'Jean (Gigi) Pritzker', 3300000000, 'United States', 'hotels, investments', 925),
(944, 'Qi Xiangdong', 3300000000, 'China', 'software', 925),
(945, 'Renzo Rosso & family', 3300000000, 'Italy', 'fashion', 925),
(946, 'Stephen Rubin', 3300000000, 'United Kingdom', 'sports apparel', 925),
(947, 'Bernard Saul, II.', 3300000000, 'United States', 'banking, real estate', 925),
(948, 'Klaus-Peter Schulenberg', 3300000000, 'Germany', 'ticketing service', 925),
(949, 'Tahir & family', 3300000000, 'Indonesia', 'diversified', 925),
(950, 'Lucio Tan', 3300000000, 'Philippines', 'diversified', 925),
(951, 'Lottie Tham & family', 3300000000, 'Sweden', 'H&M', 925),
(952, 'Wang Wenxue', 3300000000, 'China', 'real estate', 925),
(953, 'Hans Peter Wild', 3300000000, 'Switzerland', 'flavorings', 925),
(954, 'William Wrigley, Jr.', 3300000000, 'United States', 'chewing gum', 925),
(955, 'Zhang Xin & Pan Shiyi', 3300000000, 'China', 'real estate', 925),
(956, 'Giuliana Benetton', 3200000000, 'Italy', 'fashion retail, investments', 956),
(957, 'Luciano Benetton', 3200000000, 'Italy', 'fashion retail, investments', 956),
(958, 'Tomasz Biernacki', 3200000000, 'Poland', 'supermarkets', 956),
(959, 'Chey Tae-won', 3200000000, 'South Korea', 'oil, semiconductor', 956),
(960, 'John Collison', 3200000000, 'Ireland', 'payments software', 956),
(961, 'Patrick Collison', 3200000000, 'Ireland', 'payment software', 956),
(962, 'Jack Cowin', 3200000000, 'Australia', 'fast food', 956),
(963, 'Archie Aldis Emmerson & family', 3200000000, 'United States', 'timberland, lumber mills', 956),
(964, 'Yoichi & Keiko Erikawa', 3200000000, 'Japan', 'videogames', 956),
(965, 'Juan Carlos Escotet', 3200000000, 'Venezuela', 'banking', 956),
(966, 'Carlo Fidani', 3200000000, 'Canada', 'real estate', 956),
(967, 'Don Hankey', 3200000000, 'United States', 'auto loans', 956),