1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

chore(codestyle): MCOL-5405: repace windows CRLF with virtious linux one

This commit is contained in:
Leonid Fedorov
2024-07-25 18:44:00 +00:00
committed by Leonid Fedorov
parent 2e61c9909b
commit 13b23e8510
84 changed files with 7032 additions and 7032 deletions

View File

@ -1,103 +1,103 @@
#!/usr/bin/perl -w
print STDOUT "Enter the data size you want(Giga): ";
$size=<STDIN>;
unlink "region.tbl", "nation.tbl","supplier.tbl", "part.tbl","customer.tbl", "partsupp.tbl", "orders.tbl", "lineitem.tbl" ;
print STDOUT "Generating data sets ...\n";
system "./dbgen -s $size";
print STDOUT "Converting to Calpont format ...\n";
open(REGION, "<region.tbl") or die "Can't open region.tbl";
open(REGION1, ">region1.tbl") or die "Can't open region1.tbl";
while ( <REGION> )
{
#!/usr/bin/perl -w
print STDOUT "Enter the data size you want(Giga): ";
$size=<STDIN>;
unlink "region.tbl", "nation.tbl","supplier.tbl", "part.tbl","customer.tbl", "partsupp.tbl", "orders.tbl", "lineitem.tbl" ;
print STDOUT "Generating data sets ...\n";
system "./dbgen -s $size";
print STDOUT "Converting to Calpont format ...\n";
open(REGION, "<region.tbl") or die "Can't open region.tbl";
open(REGION1, ">region1.tbl") or die "Can't open region1.tbl";
while ( <REGION> )
{
chomp;
(@token) = split /\|/ ;
print REGION1 $token[0], ", '", $token[1], "', '", $token[2], "'\n";
}
close(REGION);
close(REGION1);
unlink "region.tbl";
rename "region1.tbl", "region.tbl";
open(NATION, "<nation.tbl") or die "Can't open region.tbl";
open(NATION1, ">nation1.tbl") or die "Can't open region1.tbl";
while ( <NATION> )
{
(@token) = split /\|/ ;
print REGION1 $token[0], ", '", $token[1], "', '", $token[2], "'\n";
}
close(REGION);
close(REGION1);
unlink "region.tbl";
rename "region1.tbl", "region.tbl";
open(NATION, "<nation.tbl") or die "Can't open region.tbl";
open(NATION1, ">nation1.tbl") or die "Can't open region1.tbl";
while ( <NATION> )
{
chomp;
(@token) = split /\|/ ;
print NATION1 $token[0], ", '", $token[1], "', ", $token[2], ", '", $token[3],"'\n";
}
close(NATION);
close(NATION1);
unlink "nation.tbl";
rename "nation1.tbl", "nation.tbl";
open(SUPPLIER, "<supplier.tbl") or die "Can't open region.tbl";
open(SUPPLIER1, ">supplier1.tbl") or die "Can't open region1.tbl";
while ( <SUPPLIER> )
{
(@token) = split /\|/ ;
print NATION1 $token[0], ", '", $token[1], "', ", $token[2], ", '", $token[3],"'\n";
}
close(NATION);
close(NATION1);
unlink "nation.tbl";
rename "nation1.tbl", "nation.tbl";
open(SUPPLIER, "<supplier.tbl") or die "Can't open region.tbl";
open(SUPPLIER1, ">supplier1.tbl") or die "Can't open region1.tbl";
while ( <SUPPLIER> )
{
chomp;
(@token) = split /\|/ ;
print SUPPLIER1 $token[0], ", '", $token[1], "', '", $token[2], "', ", $token[3], ", '", $token[4], "', ", $token[5], ", '", $token[6],"'\n";
}
close(SUPPLIER);
close(SUPPLIER);
unlink "supplier.tbl";
rename "supplier1.tbl", "supplier.tbl";
open(PART, "<part.tbl") or die "Can't open region.tbl";
open(PART1, ">part1.tbl") or die "Can't open region1.tbl";
while ( <PART> )
{
(@token) = split /\|/ ;
print SUPPLIER1 $token[0], ", '", $token[1], "', '", $token[2], "', ", $token[3], ", '", $token[4], "', ", $token[5], ", '", $token[6],"'\n";
}
close(SUPPLIER);
close(SUPPLIER);
unlink "supplier.tbl";
rename "supplier1.tbl", "supplier.tbl";
open(PART, "<part.tbl") or die "Can't open region.tbl";
open(PART1, ">part1.tbl") or die "Can't open region1.tbl";
while ( <PART> )
{
chomp;
(@token) = split /\|/ ;
print PART1 $token[0], ", '", $token[1], "', '", $token[2], "', '", $token[3], "', '", $token[4], "', ", $token[5], ", '", $token[6], "', ", $token[7], ", '", $token[8],"'\n";
}
close(PART);
close(PART1);
unlink "part.tbl";
rename "part1.tbl", "part.tbl";
open(CUSTOMER, "<customer.tbl") or die "Can't open region.tbl";
open(CUSTOMER1, ">customer1.tbl") or die "Can't open region1.tbl";
while ( <CUSTOMER> )
{
(@token) = split /\|/ ;
print PART1 $token[0], ", '", $token[1], "', '", $token[2], "', '", $token[3], "', '", $token[4], "', ", $token[5], ", '", $token[6], "', ", $token[7], ", '", $token[8],"'\n";
}
close(PART);
close(PART1);
unlink "part.tbl";
rename "part1.tbl", "part.tbl";
open(CUSTOMER, "<customer.tbl") or die "Can't open region.tbl";
open(CUSTOMER1, ">customer1.tbl") or die "Can't open region1.tbl";
while ( <CUSTOMER> )
{
chomp;
(@token) = split /\|/ ;
print CUSTOMER1 $token[0], ", '", $token[1], "', '", $token[2], "', ", $token[3], ", '", $token[4], "', ", $token[5], ", '", $token[6], "', '", $token[7],"'\n";
}
close(CUSTOMER);
close(CUSTOMER1);
unlink "customer.tbl";
rename "customer1.tbl", "customer.tbl";
open(PARTSUPP, "<partsupp.tbl") or die "Can't open region.tbl";
open(PARTSUPP1, ">partsupp1.tbl") or die "Can't open region1.tbl";
while ( <PARTSUPP> )
{
(@token) = split /\|/ ;
print CUSTOMER1 $token[0], ", '", $token[1], "', '", $token[2], "', ", $token[3], ", '", $token[4], "', ", $token[5], ", '", $token[6], "', '", $token[7],"'\n";
}
close(CUSTOMER);
close(CUSTOMER1);
unlink "customer.tbl";
rename "customer1.tbl", "customer.tbl";
open(PARTSUPP, "<partsupp.tbl") or die "Can't open region.tbl";
open(PARTSUPP1, ">partsupp1.tbl") or die "Can't open region1.tbl";
while ( <PARTSUPP> )
{
chomp;
(@token) = split /\|/ ;
print PARTSUPP1 $token[0], ", ", $token[1], ", ", $token[2], ", ", $token[3], ", '", $token[4],"'\n";
}
close(PARTSUPP);
close(PARTSUPP1);
unlink "partsupp.tbl";
rename "partsupp1.tbl", "partsupp.tbl";
open(ORDERS, "<orders.tbl") or die "Can't open region.tbl";
open(ORDERS1, ">orders1.tbl") or die "Can't open region1.tbl";
while ( <ORDERS> )
{
(@token) = split /\|/ ;
print PARTSUPP1 $token[0], ", ", $token[1], ", ", $token[2], ", ", $token[3], ", '", $token[4],"'\n";
}
close(PARTSUPP);
close(PARTSUPP1);
unlink "partsupp.tbl";
rename "partsupp1.tbl", "partsupp.tbl";
open(ORDERS, "<orders.tbl") or die "Can't open region.tbl";
open(ORDERS1, ">orders1.tbl") or die "Can't open region1.tbl";
while ( <ORDERS> )
{
chomp;
(@token) = split /\|/ ;
print ORDERS1 $token[0], ", ", $token[1], ", '", $token[2], "', ", $token[3], ", '", $token[4], "', '", $token[5], "', '", $token[6], "', ", $token[7], ", '", $token[8],"'\n";
}
close(ORDERS);
close(ORDERS1);
unlink "orders.tbl";
rename "orders1.tbl", "orders.tbl";
open(LINEITEM, "<lineitem.tbl") or die "Can't open region.tbl";
open(LINEITEM1, ">lineitem1.tbl") or die "Can't open region1.tbl";
while ( <LINEITEM> )
{
(@token) = split /\|/ ;
print ORDERS1 $token[0], ", ", $token[1], ", '", $token[2], "', ", $token[3], ", '", $token[4], "', '", $token[5], "', '", $token[6], "', ", $token[7], ", '", $token[8],"'\n";
}
close(ORDERS);
close(ORDERS1);
unlink "orders.tbl";
rename "orders1.tbl", "orders.tbl";
open(LINEITEM, "<lineitem.tbl") or die "Can't open region.tbl";
open(LINEITEM1, ">lineitem1.tbl") or die "Can't open region1.tbl";
while ( <LINEITEM> )
{
chomp;
(@token) = split /\|/ ;
print LINEITEM1 $token[0], ", ", $token[1], ", ", $token[2], ", ", $token[3], ", ", $token[4], ", ", $token[5], ", ", $token[6], ", ", $token[7], ", '", $token[8], "', '", $token[9], "', '", $token[10], "', '", $token[11], "', '", $token[12], "', '", $token[13], "', '", $token[14], "', '", $token[15],"'\n";
}
close(LINEITEM);
close(LINEITEM1);
unlink "lineitem.tbl";
(@token) = split /\|/ ;
print LINEITEM1 $token[0], ", ", $token[1], ", ", $token[2], ", ", $token[3], ", ", $token[4], ", ", $token[5], ", ", $token[6], ", ", $token[7], ", '", $token[8], "', '", $token[9], "', '", $token[10], "', '", $token[11], "', '", $token[12], "', '", $token[13], "', '", $token[14], "', '", $token[15],"'\n";
}
close(LINEITEM);
close(LINEITEM1);
unlink "lineitem.tbl";
rename "lineitem1.tbl", "lineitem.tbl";

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
0,'AFRICA','special Tiresias about the furiously even dolphins are furi'
1,'AMERICA','even, ironic theodolites according to the bold platelets wa'
2,'ASIA','silent, bold requests sleep slyly across the quickly sly dependencies. furiously silent instructions alongside '
3,'EUROPE','special, bold deposits haggle foxes. platelet'
0,'AFRICA','special Tiresias about the furiously even dolphins are furi'
1,'AMERICA','even, ironic theodolites according to the bold platelets wa'
2,'ASIA','silent, bold requests sleep slyly across the quickly sly dependencies. furiously silent instructions alongside '
3,'EUROPE','special, bold deposits haggle foxes. platelet'
4,'MIDDLE EAST','furiously unusual packages use carefully above the unusual, exp'
1 0,'AFRICA','special Tiresias about the furiously even dolphins are furi'
2 1,'AMERICA','even, ironic theodolites according to the bold platelets wa'
3 2,'ASIA','silent, bold requests sleep slyly across the quickly sly dependencies. furiously silent instructions alongside '
4 3,'EUROPE','special, bold deposits haggle foxes. platelet'
5 4,'MIDDLE EAST','furiously unusual packages use carefully above the unusual, exp'

View File

@ -1,50 +1,50 @@
1,'Supplier#000000001',' N kD4on9OM Ipw3,gf0JBoQDd7tgrzrddZ',17,'27-918-335-1736',5755.94,'requests haggle carefully. accounts sublate finally. carefully ironic pa'
2,'Supplier#000000002','89eJ5ksX3ImxJQBvxObC,',5,'15-679-861-2259',4032.68,'furiously stealthy frays thrash alongside of the slyly express deposits. blithely regular req'
3,'Supplier#000000003','q1,G3Pj6OjIuUYfUoH18BFTKP5aU9bEV3',1,'11-383-516-1199',4192.40,'furiously regular instructions impress slyly! carefu'
4,'Supplier#000000004','Bk7ah4CK8SYQTepEmvMkkgMwg',15,'25-843-787-7479',4641.08,'final ideas cajole. furiously close dep'
5,'Supplier#000000005','Gcdm2rJRzl5qlTVzc',11,'21-151-690-3663',283.84,'carefully silent instructions are slyly according t'
6,'Supplier#000000006','tQxuVm7s7CnK',14,'24-696-997-4969',1365.79,'even requests wake carefully! fluffily final pinto beans run slyly among t'
7,'Supplier#000000007','s,4TicNGB4uO6PaSqNBUq',23,'33-990-965-2201',6820.35,'carefully express packages believe furiously after the fur'
8,'Supplier#000000008','9Sq4bBH2FQEmaFOocY45sRTxo6yuoG',17,'27-498-742-3860',7627.85,'carefully express escapades are slyly '
9,'Supplier#000000009','1KhUgZegwM3ua7dsYmekYBsK',10,'20-403-398-8662',5302.37,'slyly regular decoys mold slyly ironic dugouts. requests are carefully-- carefully'
10,'Supplier#000000010','Saygah3gYWMp72i PY',24,'34-852-489-8585',3891.91,'ironic deposits poach quickly furiously final accounts. carefull'
11,'Supplier#000000011','JfwTs,LZrV, M,9C',18,'28-613-996-1505',3393.08,'quickly bold asymptotes mold carefully unusual pearls. requests boost at the blith'
12,'Supplier#000000012','aLIW q0HYd',8,'18-179-925-7181',1432.69,'evenly pending theodolites lose. '
13,'Supplier#000000013','HK71HQyWoqRWOX8GI FpgAifW,2PoH',3,'13-727-620-7813',9107.22,'ironically busy packages thrash '
14,'Supplier#000000014','EXsnO5pTNj4iZRm',15,'25-656-247-5058',9189.82,'enticingly bold platelets wake against the'
15,'Supplier#000000015','olXVbNBfVzRqgokr1T,Ie',8,'18-453-357-6394',308.56,'regular attainments cajole. furiously final reques'
16,'Supplier#000000016','YjP5C55zHDXL7LalK27zfQnwejdpin4AMpvh',22,'32-822-502-4215',2972.26,'quick, final pains above the ironic, final instructions use furio'
17,'Supplier#000000017','c2d,ESHRSkK3WYnxpgw6aOqN0q',19,'29-601-884-9219',1687.81,'slyly pending deposits boost quickly.'
18,'Supplier#000000018','PGGVE5PWAMwKDZw ',16,'26-729-551-1115',7040.82,'carefully pending deposits haggle regular the'
19,'Supplier#000000019','edZT3es,nBFD8lBXTGeTl',24,'34-278-310-2731',6150.38,'quickly regular pinto beans mold blithely slyly pending packages. unusual platelets are furiou'
20,'Supplier#000000020','iybAE,RmTymrZVYaFZva2SH,j',3,'13-715-945-6730',530.82,'finally regular asymptotes play furiously among the carefully special warhorses. slyly'
21,'Supplier#000000021','81CavellcrJ0PQ3CPBID0Z0JwyJm0ka5igEs',2,'12-253-590-5816',9365.80,'bravely ironic Tiresias run carefully. regular deposits integrate with the fluffily even f'
22,'Supplier#000000022','okiiQFk 8lm6EVX6Q0,bEcO',4,'14-144-830-2814',966.20,'slyly special waters wake fluffily along the unusual package'
23,'Supplier#000000023','ssetugTcXc096qlD7 2TL5crEEeS3zk',9,'19-559-422-5776',5926.41,'carefully special requests haggle. furiously busy theodolites haggle b'
24,'Supplier#000000024','C4nPvLrVmKPPabFCj',0,'10-620-939-2254',9170.71,'quietly even theodolites alongside of the blithely special pin'
25,'Supplier#000000025','RCQKONXMFnrodzz6w7fObFVV6CUm2q',22,'32-431-945-3541',9198.31,'even excuses wake about the carefully special packa'
26,'Supplier#000000026','iV,MHzAx6Z939uzFNkq09M0a1 MBfH7',21,'31-758-894-4436',21.18,'slyly unusual pinto beans sleep carefully alongside of the furiously sly frets. regular, regula'
27,'Supplier#000000027','lC4CjKwNHUr6L4xIpzOBK4NlHkFTg',18,'28-708-999-2028',1887.62,'furiously thin packages use '
28,'Supplier#000000028','GBhvoRh,7YIN V',0,'10-538-384-8460',891.99,'regular, regular excuses boost quickl'
29,'Supplier#000000029','658tEqXLPvRd6xpFdqC2',1,'11-555-705-5922',811.62,'blithely pending theodolites are carefully ironic requests! fluffily express instructions ab'
30,'Supplier#000000030','84NmC1rmQfO0fj3zkobLT',16,'26-940-594-4852',8080.14,'express, bold deposits sleep according to th'
31,'Supplier#000000031','fRJimA7zchyApqRLHcQeocVpP',16,'26-515-530-4159',5916.91,'blithely bold deposits boost fluffily slyly final'
32,'Supplier#000000032','yvoD3TtZSx1skQNCK8agk5bZlZLug',23,'33-484-637-7873',3556.47,'furiously thin asymptotes are a'
33,'Supplier#000000033','gfeKpYw3400L0SDywXA6Ya1Qmq1w6YB9f3R',7,'17-138-897-9374',8564.12,'ironic instructions are. special pearls above '
34,'Supplier#000000034','mYRe3KvA2O4lL4HhxDKkkrPUDPMKRCSp,Xpa',10,'20-519-982-2343',237.31,'asymptotes are. special, ironic ideas on the close'
35,'Supplier#000000035','QymmGXxjVVQ5OuABCXVVsu,4eF gU0Qc6',21,'31-720-790-5245',4381.41,'slyly bold pinto beans wake. dependencies nag furiously according to the asymptotes. car'
36,'Supplier#000000036','mzSpBBJvbjdx3UKTW3bLFewRD78D91lAC879',13,'23-273-493-3679',2371.51,'slyly special braids among the regular, blithe p'
37,'Supplier#000000037','cqjyB5h1nV',0,'10-470-144-1330',3017.47,'ironic requests alongside of the blithely express accounts wake fluffily above the carefully express'
38,'Supplier#000000038','xEcx45vD0FXHT7c9mvWFY',4,'14-361-296-6426',2512.41,'blithely bold excuses haggle ironic, pending excuses. carefully bold deposits wake blithel'
39,'Supplier#000000039','ZM, nSYpEPWr1yAFHaC91qjFcijjeU5eH',8,'18-851-856-5633',6115.65,'ironic, express instructions can sleep bl'
40,'Supplier#000000040','zyIeWzbbpkTV37vm1nmSGBxSgd2Kp',22,'32-231-247-6991',290.06,'carefully regular accounts sleep ca'
41,'Supplier#000000041','G 1FKHR435 wMKFmyt',18,'28-739-447-2525',6942.67,'silently regular packages hinder. blithely express decoys must '
42,'Supplier#000000042','1Y5lwEgpe3j2vbUBYj3SwLhK62JlwEMtDC',22,'32-698-298-6317',6565.11,'carefully thin courts against the final, regular accounts ar'
43,'Supplier#000000043','Z5mLuAoTUEeKY5v22VnnA4D87Ao6jF2LvMYnlX8h',12,'22-421-568-4862',7773.41,'slyly final accounts wake blithely slyly regular requests. sl'
44,'Supplier#000000044','kERxlLDnlIZJdN66zAPHklyL',7,'17-713-930-5667',9759.38,'quickly final instructions after the bold requests hagg'
45,'Supplier#000000045','LcKnsa8XGtIO0WYSB7hkOrH rnzRg1',9,'19-189-635-8862',2944.23,'furiously bold deposits use expres'
46,'Supplier#000000046','e0URUXfDOYMdKe16Z5h5StMRbzGmTs,D2cjap',24,'34-748-308-3215',3580.35,'slyly express dependencies behind the blithely silent platelets use '
47,'Supplier#000000047','3XM1x,Pcxqw,HK4XNlgbnZMbLhBHLA',14,'24-810-354-4471',2958.09,'regular deposits engage slyly with the'
48,'Supplier#000000048','jg0U FNPMQDuyuKvTnLXXaLf3Wl6OtONA6mQlWJ',14,'24-722-551-9498',5630.62,'carefully unusual packages print '
49,'Supplier#000000049','Nvq 6macF4GtJvz',24,'34-211-567-6800',9915.24,'blithely silent pinto beans hang slyly. blithely eve'
1,'Supplier#000000001',' N kD4on9OM Ipw3,gf0JBoQDd7tgrzrddZ',17,'27-918-335-1736',5755.94,'requests haggle carefully. accounts sublate finally. carefully ironic pa'
2,'Supplier#000000002','89eJ5ksX3ImxJQBvxObC,',5,'15-679-861-2259',4032.68,'furiously stealthy frays thrash alongside of the slyly express deposits. blithely regular req'
3,'Supplier#000000003','q1,G3Pj6OjIuUYfUoH18BFTKP5aU9bEV3',1,'11-383-516-1199',4192.40,'furiously regular instructions impress slyly! carefu'
4,'Supplier#000000004','Bk7ah4CK8SYQTepEmvMkkgMwg',15,'25-843-787-7479',4641.08,'final ideas cajole. furiously close dep'
5,'Supplier#000000005','Gcdm2rJRzl5qlTVzc',11,'21-151-690-3663',283.84,'carefully silent instructions are slyly according t'
6,'Supplier#000000006','tQxuVm7s7CnK',14,'24-696-997-4969',1365.79,'even requests wake carefully! fluffily final pinto beans run slyly among t'
7,'Supplier#000000007','s,4TicNGB4uO6PaSqNBUq',23,'33-990-965-2201',6820.35,'carefully express packages believe furiously after the fur'
8,'Supplier#000000008','9Sq4bBH2FQEmaFOocY45sRTxo6yuoG',17,'27-498-742-3860',7627.85,'carefully express escapades are slyly '
9,'Supplier#000000009','1KhUgZegwM3ua7dsYmekYBsK',10,'20-403-398-8662',5302.37,'slyly regular decoys mold slyly ironic dugouts. requests are carefully-- carefully'
10,'Supplier#000000010','Saygah3gYWMp72i PY',24,'34-852-489-8585',3891.91,'ironic deposits poach quickly furiously final accounts. carefull'
11,'Supplier#000000011','JfwTs,LZrV, M,9C',18,'28-613-996-1505',3393.08,'quickly bold asymptotes mold carefully unusual pearls. requests boost at the blith'
12,'Supplier#000000012','aLIW q0HYd',8,'18-179-925-7181',1432.69,'evenly pending theodolites lose. '
13,'Supplier#000000013','HK71HQyWoqRWOX8GI FpgAifW,2PoH',3,'13-727-620-7813',9107.22,'ironically busy packages thrash '
14,'Supplier#000000014','EXsnO5pTNj4iZRm',15,'25-656-247-5058',9189.82,'enticingly bold platelets wake against the'
15,'Supplier#000000015','olXVbNBfVzRqgokr1T,Ie',8,'18-453-357-6394',308.56,'regular attainments cajole. furiously final reques'
16,'Supplier#000000016','YjP5C55zHDXL7LalK27zfQnwejdpin4AMpvh',22,'32-822-502-4215',2972.26,'quick, final pains above the ironic, final instructions use furio'
17,'Supplier#000000017','c2d,ESHRSkK3WYnxpgw6aOqN0q',19,'29-601-884-9219',1687.81,'slyly pending deposits boost quickly.'
18,'Supplier#000000018','PGGVE5PWAMwKDZw ',16,'26-729-551-1115',7040.82,'carefully pending deposits haggle regular the'
19,'Supplier#000000019','edZT3es,nBFD8lBXTGeTl',24,'34-278-310-2731',6150.38,'quickly regular pinto beans mold blithely slyly pending packages. unusual platelets are furiou'
20,'Supplier#000000020','iybAE,RmTymrZVYaFZva2SH,j',3,'13-715-945-6730',530.82,'finally regular asymptotes play furiously among the carefully special warhorses. slyly'
21,'Supplier#000000021','81CavellcrJ0PQ3CPBID0Z0JwyJm0ka5igEs',2,'12-253-590-5816',9365.80,'bravely ironic Tiresias run carefully. regular deposits integrate with the fluffily even f'
22,'Supplier#000000022','okiiQFk 8lm6EVX6Q0,bEcO',4,'14-144-830-2814',966.20,'slyly special waters wake fluffily along the unusual package'
23,'Supplier#000000023','ssetugTcXc096qlD7 2TL5crEEeS3zk',9,'19-559-422-5776',5926.41,'carefully special requests haggle. furiously busy theodolites haggle b'
24,'Supplier#000000024','C4nPvLrVmKPPabFCj',0,'10-620-939-2254',9170.71,'quietly even theodolites alongside of the blithely special pin'
25,'Supplier#000000025','RCQKONXMFnrodzz6w7fObFVV6CUm2q',22,'32-431-945-3541',9198.31,'even excuses wake about the carefully special packa'
26,'Supplier#000000026','iV,MHzAx6Z939uzFNkq09M0a1 MBfH7',21,'31-758-894-4436',21.18,'slyly unusual pinto beans sleep carefully alongside of the furiously sly frets. regular, regula'
27,'Supplier#000000027','lC4CjKwNHUr6L4xIpzOBK4NlHkFTg',18,'28-708-999-2028',1887.62,'furiously thin packages use '
28,'Supplier#000000028','GBhvoRh,7YIN V',0,'10-538-384-8460',891.99,'regular, regular excuses boost quickl'
29,'Supplier#000000029','658tEqXLPvRd6xpFdqC2',1,'11-555-705-5922',811.62,'blithely pending theodolites are carefully ironic requests! fluffily express instructions ab'
30,'Supplier#000000030','84NmC1rmQfO0fj3zkobLT',16,'26-940-594-4852',8080.14,'express, bold deposits sleep according to th'
31,'Supplier#000000031','fRJimA7zchyApqRLHcQeocVpP',16,'26-515-530-4159',5916.91,'blithely bold deposits boost fluffily slyly final'
32,'Supplier#000000032','yvoD3TtZSx1skQNCK8agk5bZlZLug',23,'33-484-637-7873',3556.47,'furiously thin asymptotes are a'
33,'Supplier#000000033','gfeKpYw3400L0SDywXA6Ya1Qmq1w6YB9f3R',7,'17-138-897-9374',8564.12,'ironic instructions are. special pearls above '
34,'Supplier#000000034','mYRe3KvA2O4lL4HhxDKkkrPUDPMKRCSp,Xpa',10,'20-519-982-2343',237.31,'asymptotes are. special, ironic ideas on the close'
35,'Supplier#000000035','QymmGXxjVVQ5OuABCXVVsu,4eF gU0Qc6',21,'31-720-790-5245',4381.41,'slyly bold pinto beans wake. dependencies nag furiously according to the asymptotes. car'
36,'Supplier#000000036','mzSpBBJvbjdx3UKTW3bLFewRD78D91lAC879',13,'23-273-493-3679',2371.51,'slyly special braids among the regular, blithe p'
37,'Supplier#000000037','cqjyB5h1nV',0,'10-470-144-1330',3017.47,'ironic requests alongside of the blithely express accounts wake fluffily above the carefully express'
38,'Supplier#000000038','xEcx45vD0FXHT7c9mvWFY',4,'14-361-296-6426',2512.41,'blithely bold excuses haggle ironic, pending excuses. carefully bold deposits wake blithel'
39,'Supplier#000000039','ZM, nSYpEPWr1yAFHaC91qjFcijjeU5eH',8,'18-851-856-5633',6115.65,'ironic, express instructions can sleep bl'
40,'Supplier#000000040','zyIeWzbbpkTV37vm1nmSGBxSgd2Kp',22,'32-231-247-6991',290.06,'carefully regular accounts sleep ca'
41,'Supplier#000000041','G 1FKHR435 wMKFmyt',18,'28-739-447-2525',6942.67,'silently regular packages hinder. blithely express decoys must '
42,'Supplier#000000042','1Y5lwEgpe3j2vbUBYj3SwLhK62JlwEMtDC',22,'32-698-298-6317',6565.11,'carefully thin courts against the final, regular accounts ar'
43,'Supplier#000000043','Z5mLuAoTUEeKY5v22VnnA4D87Ao6jF2LvMYnlX8h',12,'22-421-568-4862',7773.41,'slyly final accounts wake blithely slyly regular requests. sl'
44,'Supplier#000000044','kERxlLDnlIZJdN66zAPHklyL',7,'17-713-930-5667',9759.38,'quickly final instructions after the bold requests hagg'
45,'Supplier#000000045','LcKnsa8XGtIO0WYSB7hkOrH rnzRg1',9,'19-189-635-8862',2944.23,'furiously bold deposits use expres'
46,'Supplier#000000046','e0URUXfDOYMdKe16Z5h5StMRbzGmTs,D2cjap',24,'34-748-308-3215',3580.35,'slyly express dependencies behind the blithely silent platelets use '
47,'Supplier#000000047','3XM1x,Pcxqw,HK4XNlgbnZMbLhBHLA',14,'24-810-354-4471',2958.09,'regular deposits engage slyly with the'
48,'Supplier#000000048','jg0U FNPMQDuyuKvTnLXXaLf3Wl6OtONA6mQlWJ',14,'24-722-551-9498',5630.62,'carefully unusual packages print '
49,'Supplier#000000049','Nvq 6macF4GtJvz',24,'34-211-567-6800',9915.24,'blithely silent pinto beans hang slyly. blithely eve'
50,'Supplier#000000050','rGobqSMMYz0ErrPhCGS',9,'19-561-560-7437',4515.87,'quickly regular theodolites wake within the slyly even accounts. furiously express accounts'
1 1,'Supplier#000000001',' N kD4on9OM Ipw3,gf0JBoQDd7tgrzrddZ',17,'27-918-335-1736',5755.94,'requests haggle carefully. accounts sublate finally. carefully ironic pa'
2 2,'Supplier#000000002','89eJ5ksX3ImxJQBvxObC,',5,'15-679-861-2259',4032.68,'furiously stealthy frays thrash alongside of the slyly express deposits. blithely regular req'
3 3,'Supplier#000000003','q1,G3Pj6OjIuUYfUoH18BFTKP5aU9bEV3',1,'11-383-516-1199',4192.40,'furiously regular instructions impress slyly! carefu'
4 4,'Supplier#000000004','Bk7ah4CK8SYQTepEmvMkkgMwg',15,'25-843-787-7479',4641.08,'final ideas cajole. furiously close dep'
5 5,'Supplier#000000005','Gcdm2rJRzl5qlTVzc',11,'21-151-690-3663',283.84,'carefully silent instructions are slyly according t'
6 6,'Supplier#000000006','tQxuVm7s7CnK',14,'24-696-997-4969',1365.79,'even requests wake carefully! fluffily final pinto beans run slyly among t'
7 7,'Supplier#000000007','s,4TicNGB4uO6PaSqNBUq',23,'33-990-965-2201',6820.35,'carefully express packages believe furiously after the fur'
8 8,'Supplier#000000008','9Sq4bBH2FQEmaFOocY45sRTxo6yuoG',17,'27-498-742-3860',7627.85,'carefully express escapades are slyly '
9 9,'Supplier#000000009','1KhUgZegwM3ua7dsYmekYBsK',10,'20-403-398-8662',5302.37,'slyly regular decoys mold slyly ironic dugouts. requests are carefully-- carefully'
10 10,'Supplier#000000010','Saygah3gYWMp72i PY',24,'34-852-489-8585',3891.91,'ironic deposits poach quickly furiously final accounts. carefull'
11 11,'Supplier#000000011','JfwTs,LZrV, M,9C',18,'28-613-996-1505',3393.08,'quickly bold asymptotes mold carefully unusual pearls. requests boost at the blith'
12 12,'Supplier#000000012','aLIW q0HYd',8,'18-179-925-7181',1432.69,'evenly pending theodolites lose. '
13 13,'Supplier#000000013','HK71HQyWoqRWOX8GI FpgAifW,2PoH',3,'13-727-620-7813',9107.22,'ironically busy packages thrash '
14 14,'Supplier#000000014','EXsnO5pTNj4iZRm',15,'25-656-247-5058',9189.82,'enticingly bold platelets wake against the'
15 15,'Supplier#000000015','olXVbNBfVzRqgokr1T,Ie',8,'18-453-357-6394',308.56,'regular attainments cajole. furiously final reques'
16 16,'Supplier#000000016','YjP5C55zHDXL7LalK27zfQnwejdpin4AMpvh',22,'32-822-502-4215',2972.26,'quick, final pains above the ironic, final instructions use furio'
17 17,'Supplier#000000017','c2d,ESHRSkK3WYnxpgw6aOqN0q',19,'29-601-884-9219',1687.81,'slyly pending deposits boost quickly.'
18 18,'Supplier#000000018','PGGVE5PWAMwKDZw ',16,'26-729-551-1115',7040.82,'carefully pending deposits haggle regular the'
19 19,'Supplier#000000019','edZT3es,nBFD8lBXTGeTl',24,'34-278-310-2731',6150.38,'quickly regular pinto beans mold blithely slyly pending packages. unusual platelets are furiou'
20 20,'Supplier#000000020','iybAE,RmTymrZVYaFZva2SH,j',3,'13-715-945-6730',530.82,'finally regular asymptotes play furiously among the carefully special warhorses. slyly'
21 21,'Supplier#000000021','81CavellcrJ0PQ3CPBID0Z0JwyJm0ka5igEs',2,'12-253-590-5816',9365.80,'bravely ironic Tiresias run carefully. regular deposits integrate with the fluffily even f'
22 22,'Supplier#000000022','okiiQFk 8lm6EVX6Q0,bEcO',4,'14-144-830-2814',966.20,'slyly special waters wake fluffily along the unusual package'
23 23,'Supplier#000000023','ssetugTcXc096qlD7 2TL5crEEeS3zk',9,'19-559-422-5776',5926.41,'carefully special requests haggle. furiously busy theodolites haggle b'
24 24,'Supplier#000000024','C4nPvLrVmKPPabFCj',0,'10-620-939-2254',9170.71,'quietly even theodolites alongside of the blithely special pin'
25 25,'Supplier#000000025','RCQKONXMFnrodzz6w7fObFVV6CUm2q',22,'32-431-945-3541',9198.31,'even excuses wake about the carefully special packa'
26 26,'Supplier#000000026','iV,MHzAx6Z939uzFNkq09M0a1 MBfH7',21,'31-758-894-4436',21.18,'slyly unusual pinto beans sleep carefully alongside of the furiously sly frets. regular, regula'
27 27,'Supplier#000000027','lC4CjKwNHUr6L4xIpzOBK4NlHkFTg',18,'28-708-999-2028',1887.62,'furiously thin packages use '
28 28,'Supplier#000000028','GBhvoRh,7YIN V',0,'10-538-384-8460',891.99,'regular, regular excuses boost quickl'
29 29,'Supplier#000000029','658tEqXLPvRd6xpFdqC2',1,'11-555-705-5922',811.62,'blithely pending theodolites are carefully ironic requests! fluffily express instructions ab'
30 30,'Supplier#000000030','84NmC1rmQfO0fj3zkobLT',16,'26-940-594-4852',8080.14,'express, bold deposits sleep according to th'
31 31,'Supplier#000000031','fRJimA7zchyApqRLHcQeocVpP',16,'26-515-530-4159',5916.91,'blithely bold deposits boost fluffily slyly final'
32 32,'Supplier#000000032','yvoD3TtZSx1skQNCK8agk5bZlZLug',23,'33-484-637-7873',3556.47,'furiously thin asymptotes are a'
33 33,'Supplier#000000033','gfeKpYw3400L0SDywXA6Ya1Qmq1w6YB9f3R',7,'17-138-897-9374',8564.12,'ironic instructions are. special pearls above '
34 34,'Supplier#000000034','mYRe3KvA2O4lL4HhxDKkkrPUDPMKRCSp,Xpa',10,'20-519-982-2343',237.31,'asymptotes are. special, ironic ideas on the close'
35 35,'Supplier#000000035','QymmGXxjVVQ5OuABCXVVsu,4eF gU0Qc6',21,'31-720-790-5245',4381.41,'slyly bold pinto beans wake. dependencies nag furiously according to the asymptotes. car'
36 36,'Supplier#000000036','mzSpBBJvbjdx3UKTW3bLFewRD78D91lAC879',13,'23-273-493-3679',2371.51,'slyly special braids among the regular, blithe p'
37 37,'Supplier#000000037','cqjyB5h1nV',0,'10-470-144-1330',3017.47,'ironic requests alongside of the blithely express accounts wake fluffily above the carefully express'
38 38,'Supplier#000000038','xEcx45vD0FXHT7c9mvWFY',4,'14-361-296-6426',2512.41,'blithely bold excuses haggle ironic, pending excuses. carefully bold deposits wake blithel'
39 39,'Supplier#000000039','ZM, nSYpEPWr1yAFHaC91qjFcijjeU5eH',8,'18-851-856-5633',6115.65,'ironic, express instructions can sleep bl'
40 40,'Supplier#000000040','zyIeWzbbpkTV37vm1nmSGBxSgd2Kp',22,'32-231-247-6991',290.06,'carefully regular accounts sleep ca'
41 41,'Supplier#000000041','G 1FKHR435 wMKFmyt',18,'28-739-447-2525',6942.67,'silently regular packages hinder. blithely express decoys must '
42 42,'Supplier#000000042','1Y5lwEgpe3j2vbUBYj3SwLhK62JlwEMtDC',22,'32-698-298-6317',6565.11,'carefully thin courts against the final, regular accounts ar'
43 43,'Supplier#000000043','Z5mLuAoTUEeKY5v22VnnA4D87Ao6jF2LvMYnlX8h',12,'22-421-568-4862',7773.41,'slyly final accounts wake blithely slyly regular requests. sl'
44 44,'Supplier#000000044','kERxlLDnlIZJdN66zAPHklyL',7,'17-713-930-5667',9759.38,'quickly final instructions after the bold requests hagg'
45 45,'Supplier#000000045','LcKnsa8XGtIO0WYSB7hkOrH rnzRg1',9,'19-189-635-8862',2944.23,'furiously bold deposits use expres'
46 46,'Supplier#000000046','e0URUXfDOYMdKe16Z5h5StMRbzGmTs,D2cjap',24,'34-748-308-3215',3580.35,'slyly express dependencies behind the blithely silent platelets use '
47 47,'Supplier#000000047','3XM1x,Pcxqw,HK4XNlgbnZMbLhBHLA',14,'24-810-354-4471',2958.09,'regular deposits engage slyly with the'
48 48,'Supplier#000000048','jg0U FNPMQDuyuKvTnLXXaLf3Wl6OtONA6mQlWJ',14,'24-722-551-9498',5630.62,'carefully unusual packages print '
49 49,'Supplier#000000049','Nvq 6macF4GtJvz',24,'34-211-567-6800',9915.24,'blithely silent pinto beans hang slyly. blithely eve'
50 50,'Supplier#000000050','rGobqSMMYz0ErrPhCGS',9,'19-561-560-7437',4515.87,'quickly regular theodolites wake within the slyly even accounts. furiously express accounts'