gtadef.inc 214 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445
  1. /**--------------------------------------------------------------------------**\
  2. ==========================
  3. y_colours - X11 colours!
  4. ==========================
  5. Description:
  6. This holds the colour information that used to be part of the text system
  7. but which is far more useful than just for text. This now supports the full
  8. set of X11 colours, both by name and by definition. You can also define
  9. your own if you so choose (up to 32 - should be enough given that this
  10. includes the X11 colours).
  11. Legal:
  12. Version: MPL 1.1
  13. The contents of this file are subject to the Mozilla Public License Version
  14. 1.1 (the "License"); you may not use this file except in compliance with
  15. the License. You may obtain a copy of the License at
  16. http://www.mozilla.org/MPL/
  17. Software distributed under the License is distributed on an "AS IS" basis,
  18. WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  19. for the specific language governing rights and limitations under the
  20. License.
  21. The Original Code is the YSI colours include.
  22. The Initial Developer of the Original Code is Alex "Y_Less" Cole.
  23. Portions created by the Initial Developer are Copyright (C) 2011
  24. the Initial Developer. All Rights Reserved.
  25. Contributors:
  26. ZeeX, koolk, JoeBullet/Google63, g_aSlice/Slice
  27. Thanks:
  28. JoeBullet/Google63 - Handy arbitrary ASM jump code using SCTRL.
  29. ZeeX - Very productive conversations.
  30. koolk - IsPlayerinAreaEx code.
  31. TheAlpha - Danish translation.
  32. breadfish - German translation.
  33. Fireburn - Dutch translation.
  34. yom - French translation.
  35. 50p - Polish translation.
  36. Zamaroht - Spanish translation.
  37. Dracoblue, sintax, mabako, Xtreme, other coders - Producing other modes
  38. for me to strive to better.
  39. Pixels^ - Running XScripters where the idea was born.
  40. Matite - Pestering me to release it and using it.
  41. Very special thanks to:
  42. Thiadmer - PAWN, whose limits continue to amaze me!
  43. Kye/Kalcor - SA:MP.
  44. SA:MP Team past, present and future - SA:MP.
  45. Version:
  46. 1.0
  47. Changelog:
  48. 16/03/15:
  49. Added SA:MP and GTA colours.
  50. Changed naming scheme for consistency.
  51. \**--------------------------------------------------------------------------**/
  52. #define @CARCOL_0 0x000000AA
  53. #define @CARCOL_1 0xF5F5F5AA
  54. #define @CARCOL_2 0x2A77A1AA
  55. #define @CARCOL_3 0x840410AA
  56. #define @CARCOL_4 0x263739AA
  57. #define @CARCOL_5 0x86446EAA
  58. #define @CARCOL_6 0xD78E10AA
  59. #define @CARCOL_7 0x4C75B7AA
  60. #define @CARCOL_8 0xBDBEC6AA
  61. #define @CARCOL_9 0x5E7072AA
  62. #define @CARCOL_10 0x46597AAA
  63. #define @CARCOL_11 0x656A79AA
  64. #define @CARCOL_12 0x5D7E8DAA
  65. #define @CARCOL_13 0x58595AAA
  66. #define @CARCOL_14 0xD6DAD6AA
  67. #define @CARCOL_15 0x9CA1A3AA
  68. #define @CARCOL_16 0x335F3FAA
  69. #define @CARCOL_17 0x730E1AAA
  70. #define @CARCOL_18 0x7B0A2AAA
  71. #define @CARCOL_19 0x9F9D94AA
  72. #define @CARCOL_20 0x3B4E78AA
  73. #define @CARCOL_21 0x732E3EAA
  74. #define @CARCOL_22 0x691E3BAA
  75. #define @CARCOL_23 0x96918CAA
  76. #define @CARCOL_24 0x515459AA
  77. #define @CARCOL_25 0x3F3E45AA
  78. #define @CARCOL_26 0xA5A9A7AA
  79. #define @CARCOL_27 0x635C5AAA
  80. #define @CARCOL_28 0x3D4A68AA
  81. #define @CARCOL_29 0x979592AA
  82. #define @CARCOL_30 0x421F21AA
  83. #define @CARCOL_31 0x5F272BAA
  84. #define @CARCOL_32 0x8494ABAA
  85. #define @CARCOL_33 0x767B7CAA
  86. #define @CARCOL_34 0x646464AA
  87. #define @CARCOL_35 0x5A5752AA
  88. #define @CARCOL_36 0x252527AA
  89. #define @CARCOL_37 0x2D3A35AA
  90. #define @CARCOL_38 0x93A396AA
  91. #define @CARCOL_39 0x6D7A88AA
  92. #define @CARCOL_40 0x221918AA
  93. #define @CARCOL_41 0x6F675FAA
  94. #define @CARCOL_42 0x7C1C2AAA
  95. #define @CARCOL_43 0x5F0A15AA
  96. #define @CARCOL_44 0x193826AA
  97. #define @CARCOL_45 0x5D1B20AA
  98. #define @CARCOL_46 0x9D9872AA
  99. #define @CARCOL_47 0x7A7560AA
  100. #define @CARCOL_48 0x989586AA
  101. #define @CARCOL_49 0xADB0B0AA
  102. #define @CARCOL_50 0x848988AA
  103. #define @CARCOL_51 0x304F45AA
  104. #define @CARCOL_52 0x4D6268AA
  105. #define @CARCOL_53 0x162248AA
  106. #define @CARCOL_54 0x272F4BAA
  107. #define @CARCOL_55 0x7D6256AA
  108. #define @CARCOL_56 0x9EA4ABAA
  109. #define @CARCOL_57 0x9C8D71AA
  110. #define @CARCOL_58 0x6D1822AA
  111. #define @CARCOL_59 0x4E6881AA
  112. #define @CARCOL_60 0x9C9C98AA
  113. #define @CARCOL_61 0x917347AA
  114. #define @CARCOL_62 0x661C26AA
  115. #define @CARCOL_63 0x949D9FAA
  116. #define @CARCOL_64 0xA4A7A5AA
  117. #define @CARCOL_65 0x8E8C46AA
  118. #define @CARCOL_66 0x341A1EAA
  119. #define @CARCOL_67 0x6A7A8CAA
  120. #define @CARCOL_68 0xAAAD8EAA
  121. #define @CARCOL_69 0xAB988FAA
  122. #define @CARCOL_70 0x851F2EAA
  123. #define @CARCOL_71 0x6F8297AA
  124. #define @CARCOL_72 0x585853AA
  125. #define @CARCOL_73 0x9AA790AA
  126. #define @CARCOL_74 0x601A23AA
  127. #define @CARCOL_75 0x20202CAA
  128. #define @CARCOL_76 0xA4A096AA
  129. #define @CARCOL_77 0xAA9D84AA
  130. #define @CARCOL_78 0x78222BAA
  131. #define @CARCOL_79 0x0E316DAA
  132. #define @CARCOL_80 0x722A3FAA
  133. #define @CARCOL_81 0x7B715EAA
  134. #define @CARCOL_82 0x741D28AA
  135. #define @CARCOL_83 0x1E2E32AA
  136. #define @CARCOL_84 0x4D322FAA
  137. #define @CARCOL_85 0x7C1B44AA
  138. #define @CARCOL_86 0x2E5B20AA
  139. #define @CARCOL_87 0x395A83AA
  140. #define @CARCOL_88 0x6D2837AA
  141. #define @CARCOL_89 0xA7A28FAA
  142. #define @CARCOL_90 0xAFB1B1AA
  143. #define @CARCOL_91 0x364155AA
  144. #define @CARCOL_92 0x6D6C6EAA
  145. #define @CARCOL_93 0x0F6A89AA
  146. #define @CARCOL_94 0x204B6BAA
  147. #define @CARCOL_95 0x2B3E57AA
  148. #define @CARCOL_96 0x9B9F9DAA
  149. #define @CARCOL_97 0x6C8495AA
  150. #define @CARCOL_98 0x4D5D60AA
  151. #define @CARCOL_99 0xAE9B7FAA
  152. #define @CARCOL_100 0x406C8FAA
  153. #define @CARCOL_101 0x1F253BAA
  154. #define @CARCOL_102 0xAB9276AA
  155. #define @CARCOL_103 0x134573AA
  156. #define @CARCOL_104 0x96816CAA
  157. #define @CARCOL_105 0x64686AAA
  158. #define @CARCOL_106 0x105082AA
  159. #define @CARCOL_107 0xA19983AA
  160. #define @CARCOL_108 0x385694AA
  161. #define @CARCOL_109 0x525661AA
  162. #define @CARCOL_110 0x7F6956AA
  163. #define @CARCOL_111 0x8C929AAA
  164. #define @CARCOL_112 0x596E87AA
  165. #define @CARCOL_113 0x473532AA
  166. #define @CARCOL_114 0x44624FAA
  167. #define @CARCOL_115 0x730A27AA
  168. #define @CARCOL_116 0x223457AA
  169. #define @CARCOL_117 0x640D1BAA
  170. #define @CARCOL_118 0xA3ADC6AA
  171. #define @CARCOL_119 0x695853AA
  172. #define @CARCOL_120 0x9B8B80AA
  173. #define @CARCOL_121 0x620B1CAA
  174. #define @CARCOL_122 0x5B5D5EAA
  175. #define @CARCOL_123 0x624428AA
  176. #define @CARCOL_124 0x731827AA
  177. #define @CARCOL_125 0x1B376DAA
  178. #define @CARCOL_126 0xEC6AAEAA
  179. #define @CARCOL0 0x000000AA
  180. #define @CARCOL1 0xF5F5F5AA
  181. #define @CARCOL2 0x2A77A1AA
  182. #define @CARCOL3 0x840410AA
  183. #define @CARCOL4 0x263739AA
  184. #define @CARCOL5 0x86446EAA
  185. #define @CARCOL6 0xD78E10AA
  186. #define @CARCOL7 0x4C75B7AA
  187. #define @CARCOL8 0xBDBEC6AA
  188. #define @CARCOL9 0x5E7072AA
  189. #define @CARCOL10 0x46597AAA
  190. #define @CARCOL11 0x656A79AA
  191. #define @CARCOL12 0x5D7E8DAA
  192. #define @CARCOL13 0x58595AAA
  193. #define @CARCOL14 0xD6DAD6AA
  194. #define @CARCOL15 0x9CA1A3AA
  195. #define @CARCOL16 0x335F3FAA
  196. #define @CARCOL17 0x730E1AAA
  197. #define @CARCOL18 0x7B0A2AAA
  198. #define @CARCOL19 0x9F9D94AA
  199. #define @CARCOL20 0x3B4E78AA
  200. #define @CARCOL21 0x732E3EAA
  201. #define @CARCOL22 0x691E3BAA
  202. #define @CARCOL23 0x96918CAA
  203. #define @CARCOL24 0x515459AA
  204. #define @CARCOL25 0x3F3E45AA
  205. #define @CARCOL26 0xA5A9A7AA
  206. #define @CARCOL27 0x635C5AAA
  207. #define @CARCOL28 0x3D4A68AA
  208. #define @CARCOL29 0x979592AA
  209. #define @CARCOL30 0x421F21AA
  210. #define @CARCOL31 0x5F272BAA
  211. #define @CARCOL32 0x8494ABAA
  212. #define @CARCOL33 0x767B7CAA
  213. #define @CARCOL34 0x646464AA
  214. #define @CARCOL35 0x5A5752AA
  215. #define @CARCOL36 0x252527AA
  216. #define @CARCOL37 0x2D3A35AA
  217. #define @CARCOL38 0x93A396AA
  218. #define @CARCOL39 0x6D7A88AA
  219. #define @CARCOL40 0x221918AA
  220. #define @CARCOL41 0x6F675FAA
  221. #define @CARCOL42 0x7C1C2AAA
  222. #define @CARCOL43 0x5F0A15AA
  223. #define @CARCOL44 0x193826AA
  224. #define @CARCOL45 0x5D1B20AA
  225. #define @CARCOL46 0x9D9872AA
  226. #define @CARCOL47 0x7A7560AA
  227. #define @CARCOL48 0x989586AA
  228. #define @CARCOL49 0xADB0B0AA
  229. #define @CARCOL50 0x848988AA
  230. #define @CARCOL51 0x304F45AA
  231. #define @CARCOL52 0x4D6268AA
  232. #define @CARCOL53 0x162248AA
  233. #define @CARCOL54 0x272F4BAA
  234. #define @CARCOL55 0x7D6256AA
  235. #define @CARCOL56 0x9EA4ABAA
  236. #define @CARCOL57 0x9C8D71AA
  237. #define @CARCOL58 0x6D1822AA
  238. #define @CARCOL59 0x4E6881AA
  239. #define @CARCOL60 0x9C9C98AA
  240. #define @CARCOL61 0x917347AA
  241. #define @CARCOL62 0x661C26AA
  242. #define @CARCOL63 0x949D9FAA
  243. #define @CARCOL64 0xA4A7A5AA
  244. #define @CARCOL65 0x8E8C46AA
  245. #define @CARCOL66 0x341A1EAA
  246. #define @CARCOL67 0x6A7A8CAA
  247. #define @CARCOL68 0xAAAD8EAA
  248. #define @CARCOL69 0xAB988FAA
  249. #define @CARCOL70 0x851F2EAA
  250. #define @CARCOL71 0x6F8297AA
  251. #define @CARCOL72 0x585853AA
  252. #define @CARCOL73 0x9AA790AA
  253. #define @CARCOL74 0x601A23AA
  254. #define @CARCOL75 0x20202CAA
  255. #define @CARCOL76 0xA4A096AA
  256. #define @CARCOL77 0xAA9D84AA
  257. #define @CARCOL78 0x78222BAA
  258. #define @CARCOL79 0x0E316DAA
  259. #define @CARCOL80 0x722A3FAA
  260. #define @CARCOL81 0x7B715EAA
  261. #define @CARCOL82 0x741D28AA
  262. #define @CARCOL83 0x1E2E32AA
  263. #define @CARCOL84 0x4D322FAA
  264. #define @CARCOL85 0x7C1B44AA
  265. #define @CARCOL86 0x2E5B20AA
  266. #define @CARCOL87 0x395A83AA
  267. #define @CARCOL88 0x6D2837AA
  268. #define @CARCOL89 0xA7A28FAA
  269. #define @CARCOL90 0xAFB1B1AA
  270. #define @CARCOL91 0x364155AA
  271. #define @CARCOL92 0x6D6C6EAA
  272. #define @CARCOL93 0x0F6A89AA
  273. #define @CARCOL94 0x204B6BAA
  274. #define @CARCOL95 0x2B3E57AA
  275. #define @CARCOL96 0x9B9F9DAA
  276. #define @CARCOL97 0x6C8495AA
  277. #define @CARCOL98 0x4D5D60AA
  278. #define @CARCOL99 0xAE9B7FAA
  279. #define @CARCOL100 0x406C8FAA
  280. #define @CARCOL101 0x1F253BAA
  281. #define @CARCOL102 0xAB9276AA
  282. #define @CARCOL103 0x134573AA
  283. #define @CARCOL104 0x96816CAA
  284. #define @CARCOL105 0x64686AAA
  285. #define @CARCOL106 0x105082AA
  286. #define @CARCOL107 0xA19983AA
  287. #define @CARCOL108 0x385694AA
  288. #define @CARCOL109 0x525661AA
  289. #define @CARCOL110 0x7F6956AA
  290. #define @CARCOL111 0x8C929AAA
  291. #define @CARCOL112 0x596E87AA
  292. #define @CARCOL113 0x473532AA
  293. #define @CARCOL114 0x44624FAA
  294. #define @CARCOL115 0x730A27AA
  295. #define @CARCOL116 0x223457AA
  296. #define @CARCOL117 0x640D1BAA
  297. #define @CARCOL118 0xA3ADC6AA
  298. #define @CARCOL119 0x695853AA
  299. #define @CARCOL120 0x9B8B80AA
  300. #define @CARCOL121 0x620B1CAA
  301. #define @CARCOL122 0x5B5D5EAA
  302. #define @CARCOL123 0x624428AA
  303. #define @CARCOL124 0x731827AA
  304. #define @CARCOL125 0x1B376DAA
  305. #define @CARCOL126 0xEC6AAEAA
  306. #define _CARCOL_0 0x00000000
  307. #define _CARCOL_1 0xF5F5F500
  308. #define _CARCOL_2 0x2A77A100
  309. #define _CARCOL_3 0x84041000
  310. #define _CARCOL_4 0x26373900
  311. #define _CARCOL_5 0x86446E00
  312. #define _CARCOL_6 0xD78E1000
  313. #define _CARCOL_7 0x4C75B700
  314. #define _CARCOL_8 0xBDBEC600
  315. #define _CARCOL_9 0x5E707200
  316. #define _CARCOL_10 0x46597A00
  317. #define _CARCOL_11 0x656A7900
  318. #define _CARCOL_12 0x5D7E8D00
  319. #define _CARCOL_13 0x58595A00
  320. #define _CARCOL_14 0xD6DAD600
  321. #define _CARCOL_15 0x9CA1A300
  322. #define _CARCOL_16 0x335F3F00
  323. #define _CARCOL_17 0x730E1A00
  324. #define _CARCOL_18 0x7B0A2A00
  325. #define _CARCOL_19 0x9F9D9400
  326. #define _CARCOL_20 0x3B4E7800
  327. #define _CARCOL_21 0x732E3E00
  328. #define _CARCOL_22 0x691E3B00
  329. #define _CARCOL_23 0x96918C00
  330. #define _CARCOL_24 0x51545900
  331. #define _CARCOL_25 0x3F3E4500
  332. #define _CARCOL_26 0xA5A9A700
  333. #define _CARCOL_27 0x635C5A00
  334. #define _CARCOL_28 0x3D4A6800
  335. #define _CARCOL_29 0x97959200
  336. #define _CARCOL_30 0x421F2100
  337. #define _CARCOL_31 0x5F272B00
  338. #define _CARCOL_32 0x8494AB00
  339. #define _CARCOL_33 0x767B7C00
  340. #define _CARCOL_34 0x64646400
  341. #define _CARCOL_35 0x5A575200
  342. #define _CARCOL_36 0x25252700
  343. #define _CARCOL_37 0x2D3A3500
  344. #define _CARCOL_38 0x93A39600
  345. #define _CARCOL_39 0x6D7A8800
  346. #define _CARCOL_40 0x22191800
  347. #define _CARCOL_41 0x6F675F00
  348. #define _CARCOL_42 0x7C1C2A00
  349. #define _CARCOL_43 0x5F0A1500
  350. #define _CARCOL_44 0x19382600
  351. #define _CARCOL_45 0x5D1B2000
  352. #define _CARCOL_46 0x9D987200
  353. #define _CARCOL_47 0x7A756000
  354. #define _CARCOL_48 0x98958600
  355. #define _CARCOL_49 0xADB0B000
  356. #define _CARCOL_50 0x84898800
  357. #define _CARCOL_51 0x304F4500
  358. #define _CARCOL_52 0x4D626800
  359. #define _CARCOL_53 0x16224800
  360. #define _CARCOL_54 0x272F4B00
  361. #define _CARCOL_55 0x7D625600
  362. #define _CARCOL_56 0x9EA4AB00
  363. #define _CARCOL_57 0x9C8D7100
  364. #define _CARCOL_58 0x6D182200
  365. #define _CARCOL_59 0x4E688100
  366. #define _CARCOL_60 0x9C9C9800
  367. #define _CARCOL_61 0x91734700
  368. #define _CARCOL_62 0x661C2600
  369. #define _CARCOL_63 0x949D9F00
  370. #define _CARCOL_64 0xA4A7A500
  371. #define _CARCOL_65 0x8E8C4600
  372. #define _CARCOL_66 0x341A1E00
  373. #define _CARCOL_67 0x6A7A8C00
  374. #define _CARCOL_68 0xAAAD8E00
  375. #define _CARCOL_69 0xAB988F00
  376. #define _CARCOL_70 0x851F2E00
  377. #define _CARCOL_71 0x6F829700
  378. #define _CARCOL_72 0x58585300
  379. #define _CARCOL_73 0x9AA79000
  380. #define _CARCOL_74 0x601A2300
  381. #define _CARCOL_75 0x20202C00
  382. #define _CARCOL_76 0xA4A09600
  383. #define _CARCOL_77 0xAA9D8400
  384. #define _CARCOL_78 0x78222B00
  385. #define _CARCOL_79 0x0E316D00
  386. #define _CARCOL_80 0x722A3F00
  387. #define _CARCOL_81 0x7B715E00
  388. #define _CARCOL_82 0x741D2800
  389. #define _CARCOL_83 0x1E2E3200
  390. #define _CARCOL_84 0x4D322F00
  391. #define _CARCOL_85 0x7C1B4400
  392. #define _CARCOL_86 0x2E5B2000
  393. #define _CARCOL_87 0x395A8300
  394. #define _CARCOL_88 0x6D283700
  395. #define _CARCOL_89 0xA7A28F00
  396. #define _CARCOL_90 0xAFB1B100
  397. #define _CARCOL_91 0x36415500
  398. #define _CARCOL_92 0x6D6C6E00
  399. #define _CARCOL_93 0x0F6A8900
  400. #define _CARCOL_94 0x204B6B00
  401. #define _CARCOL_95 0x2B3E5700
  402. #define _CARCOL_96 0x9B9F9D00
  403. #define _CARCOL_97 0x6C849500
  404. #define _CARCOL_98 0x4D5D6000
  405. #define _CARCOL_99 0xAE9B7F00
  406. #define _CARCOL_100 0x406C8F00
  407. #define _CARCOL_101 0x1F253B00
  408. #define _CARCOL_102 0xAB927600
  409. #define _CARCOL_103 0x13457300
  410. #define _CARCOL_104 0x96816C00
  411. #define _CARCOL_105 0x64686A00
  412. #define _CARCOL_106 0x10508200
  413. #define _CARCOL_107 0xA1998300
  414. #define _CARCOL_108 0x38569400
  415. #define _CARCOL_109 0x52566100
  416. #define _CARCOL_110 0x7F695600
  417. #define _CARCOL_111 0x8C929A00
  418. #define _CARCOL_112 0x596E8700
  419. #define _CARCOL_113 0x47353200
  420. #define _CARCOL_114 0x44624F00
  421. #define _CARCOL_115 0x730A2700
  422. #define _CARCOL_116 0x22345700
  423. #define _CARCOL_117 0x640D1B00
  424. #define _CARCOL_118 0xA3ADC600
  425. #define _CARCOL_119 0x69585300
  426. #define _CARCOL_120 0x9B8B8000
  427. #define _CARCOL_121 0x620B1C00
  428. #define _CARCOL_122 0x5B5D5E00
  429. #define _CARCOL_123 0x62442800
  430. #define _CARCOL_124 0x73182700
  431. #define _CARCOL_125 0x1B376D00
  432. #define _CARCOL_126 0xEC6AAE00
  433. #define _CARCOL0 0x00000000
  434. #define _CARCOL1 0xF5F5F500
  435. #define _CARCOL2 0x2A77A100
  436. #define _CARCOL3 0x84041000
  437. #define _CARCOL4 0x26373900
  438. #define _CARCOL5 0x86446E00
  439. #define _CARCOL6 0xD78E1000
  440. #define _CARCOL7 0x4C75B700
  441. #define _CARCOL8 0xBDBEC600
  442. #define _CARCOL9 0x5E707200
  443. #define _CARCOL10 0x46597A00
  444. #define _CARCOL11 0x656A7900
  445. #define _CARCOL12 0x5D7E8D00
  446. #define _CARCOL13 0x58595A00
  447. #define _CARCOL14 0xD6DAD600
  448. #define _CARCOL15 0x9CA1A300
  449. #define _CARCOL16 0x335F3F00
  450. #define _CARCOL17 0x730E1A00
  451. #define _CARCOL18 0x7B0A2A00
  452. #define _CARCOL19 0x9F9D9400
  453. #define _CARCOL20 0x3B4E7800
  454. #define _CARCOL21 0x732E3E00
  455. #define _CARCOL22 0x691E3B00
  456. #define _CARCOL23 0x96918C00
  457. #define _CARCOL24 0x51545900
  458. #define _CARCOL25 0x3F3E4500
  459. #define _CARCOL26 0xA5A9A700
  460. #define _CARCOL27 0x635C5A00
  461. #define _CARCOL28 0x3D4A6800
  462. #define _CARCOL29 0x97959200
  463. #define _CARCOL30 0x421F2100
  464. #define _CARCOL31 0x5F272B00
  465. #define _CARCOL32 0x8494AB00
  466. #define _CARCOL33 0x767B7C00
  467. #define _CARCOL34 0x64646400
  468. #define _CARCOL35 0x5A575200
  469. #define _CARCOL36 0x25252700
  470. #define _CARCOL37 0x2D3A3500
  471. #define _CARCOL38 0x93A39600
  472. #define _CARCOL39 0x6D7A8800
  473. #define _CARCOL40 0x22191800
  474. #define _CARCOL41 0x6F675F00
  475. #define _CARCOL42 0x7C1C2A00
  476. #define _CARCOL43 0x5F0A1500
  477. #define _CARCOL44 0x19382600
  478. #define _CARCOL45 0x5D1B2000
  479. #define _CARCOL46 0x9D987200
  480. #define _CARCOL47 0x7A756000
  481. #define _CARCOL48 0x98958600
  482. #define _CARCOL49 0xADB0B000
  483. #define _CARCOL50 0x84898800
  484. #define _CARCOL51 0x304F4500
  485. #define _CARCOL52 0x4D626800
  486. #define _CARCOL53 0x16224800
  487. #define _CARCOL54 0x272F4B00
  488. #define _CARCOL55 0x7D625600
  489. #define _CARCOL56 0x9EA4AB00
  490. #define _CARCOL57 0x9C8D7100
  491. #define _CARCOL58 0x6D182200
  492. #define _CARCOL59 0x4E688100
  493. #define _CARCOL60 0x9C9C9800
  494. #define _CARCOL61 0x91734700
  495. #define _CARCOL62 0x661C2600
  496. #define _CARCOL63 0x949D9F00
  497. #define _CARCOL64 0xA4A7A500
  498. #define _CARCOL65 0x8E8C4600
  499. #define _CARCOL66 0x341A1E00
  500. #define _CARCOL67 0x6A7A8C00
  501. #define _CARCOL68 0xAAAD8E00
  502. #define _CARCOL69 0xAB988F00
  503. #define _CARCOL70 0x851F2E00
  504. #define _CARCOL71 0x6F829700
  505. #define _CARCOL72 0x58585300
  506. #define _CARCOL73 0x9AA79000
  507. #define _CARCOL74 0x601A2300
  508. #define _CARCOL75 0x20202C00
  509. #define _CARCOL76 0xA4A09600
  510. #define _CARCOL77 0xAA9D8400
  511. #define _CARCOL78 0x78222B00
  512. #define _CARCOL79 0x0E316D00
  513. #define _CARCOL80 0x722A3F00
  514. #define _CARCOL81 0x7B715E00
  515. #define _CARCOL82 0x741D2800
  516. #define _CARCOL83 0x1E2E3200
  517. #define _CARCOL84 0x4D322F00
  518. #define _CARCOL85 0x7C1B4400
  519. #define _CARCOL86 0x2E5B2000
  520. #define _CARCOL87 0x395A8300
  521. #define _CARCOL88 0x6D283700
  522. #define _CARCOL89 0xA7A28F00
  523. #define _CARCOL90 0xAFB1B100
  524. #define _CARCOL91 0x36415500
  525. #define _CARCOL92 0x6D6C6E00
  526. #define _CARCOL93 0x0F6A8900
  527. #define _CARCOL94 0x204B6B00
  528. #define _CARCOL95 0x2B3E5700
  529. #define _CARCOL96 0x9B9F9D00
  530. #define _CARCOL97 0x6C849500
  531. #define _CARCOL98 0x4D5D6000
  532. #define _CARCOL99 0xAE9B7F00
  533. #define _CARCOL100 0x406C8F00
  534. #define _CARCOL101 0x1F253B00
  535. #define _CARCOL102 0xAB927600
  536. #define _CARCOL103 0x13457300
  537. #define _CARCOL104 0x96816C00
  538. #define _CARCOL105 0x64686A00
  539. #define _CARCOL106 0x10508200
  540. #define _CARCOL107 0xA1998300
  541. #define _CARCOL108 0x38569400
  542. #define _CARCOL109 0x52566100
  543. #define _CARCOL110 0x7F695600
  544. #define _CARCOL111 0x8C929A00
  545. #define _CARCOL112 0x596E8700
  546. #define _CARCOL113 0x47353200
  547. #define _CARCOL114 0x44624F00
  548. #define _CARCOL115 0x730A2700
  549. #define _CARCOL116 0x22345700
  550. #define _CARCOL117 0x640D1B00
  551. #define _CARCOL118 0xA3ADC600
  552. #define _CARCOL119 0x69585300
  553. #define _CARCOL120 0x9B8B8000
  554. #define _CARCOL121 0x620B1C00
  555. #define _CARCOL122 0x5B5D5E00
  556. #define _CARCOL123 0x62442800
  557. #define _CARCOL124 0x73182700
  558. #define _CARCOL125 0x1B376D00
  559. #define _CARCOL126 0xEC6AAE00
  560. #define CARCOL_0 {000000}
  561. #define CARCOL_1 {F5F5F5}
  562. #define CARCOL_2 {2A77A1}
  563. #define CARCOL_3 {840410}
  564. #define CARCOL_4 {263739}
  565. #define CARCOL_5 {86446E}
  566. #define CARCOL_6 {D78E10}
  567. #define CARCOL_7 {4C75B7}
  568. #define CARCOL_8 {BDBEC6}
  569. #define CARCOL_9 {5E7072}
  570. #define CARCOL_10 {46597A}
  571. #define CARCOL_11 {656A79}
  572. #define CARCOL_12 {5D7E8D}
  573. #define CARCOL_13 {58595A}
  574. #define CARCOL_14 {D6DAD6}
  575. #define CARCOL_15 {9CA1A3}
  576. #define CARCOL_16 {335F3F}
  577. #define CARCOL_17 {730E1A}
  578. #define CARCOL_18 {7B0A2A}
  579. #define CARCOL_19 {9F9D94}
  580. #define CARCOL_20 {3B4E78}
  581. #define CARCOL_21 {732E3E}
  582. #define CARCOL_22 {691E3B}
  583. #define CARCOL_23 {96918C}
  584. #define CARCOL_24 {515459}
  585. #define CARCOL_25 {3F3E45}
  586. #define CARCOL_26 {A5A9A7}
  587. #define CARCOL_27 {635C5A}
  588. #define CARCOL_28 {3D4A68}
  589. #define CARCOL_29 {979592}
  590. #define CARCOL_30 {421F21}
  591. #define CARCOL_31 {5F272B}
  592. #define CARCOL_32 {8494AB}
  593. #define CARCOL_33 {767B7C}
  594. #define CARCOL_34 {646464}
  595. #define CARCOL_35 {5A5752}
  596. #define CARCOL_36 {252527}
  597. #define CARCOL_37 {2D3A35}
  598. #define CARCOL_38 {93A396}
  599. #define CARCOL_39 {6D7A88}
  600. #define CARCOL_40 {221918}
  601. #define CARCOL_41 {6F675F}
  602. #define CARCOL_42 {7C1C2A}
  603. #define CARCOL_43 {5F0A15}
  604. #define CARCOL_44 {193826}
  605. #define CARCOL_45 {5D1B20}
  606. #define CARCOL_46 {9D9872}
  607. #define CARCOL_47 {7A7560}
  608. #define CARCOL_48 {989586}
  609. #define CARCOL_49 {ADB0B0}
  610. #define CARCOL_50 {848988}
  611. #define CARCOL_51 {304F45}
  612. #define CARCOL_52 {4D6268}
  613. #define CARCOL_53 {162248}
  614. #define CARCOL_54 {272F4B}
  615. #define CARCOL_55 {7D6256}
  616. #define CARCOL_56 {9EA4AB}
  617. #define CARCOL_57 {9C8D71}
  618. #define CARCOL_58 {6D1822}
  619. #define CARCOL_59 {4E6881}
  620. #define CARCOL_60 {9C9C98}
  621. #define CARCOL_61 {917347}
  622. #define CARCOL_62 {661C26}
  623. #define CARCOL_63 {949D9F}
  624. #define CARCOL_64 {A4A7A5}
  625. #define CARCOL_65 {8E8C46}
  626. #define CARCOL_66 {341A1E}
  627. #define CARCOL_67 {6A7A8C}
  628. #define CARCOL_68 {AAAD8E}
  629. #define CARCOL_69 {AB988F}
  630. #define CARCOL_70 {851F2E}
  631. #define CARCOL_71 {6F8297}
  632. #define CARCOL_72 {585853}
  633. #define CARCOL_73 {9AA790}
  634. #define CARCOL_74 {601A23}
  635. #define CARCOL_75 {20202C}
  636. #define CARCOL_76 {A4A096}
  637. #define CARCOL_77 {AA9D84}
  638. #define CARCOL_78 {78222B}
  639. #define CARCOL_79 {0E316D}
  640. #define CARCOL_80 {722A3F}
  641. #define CARCOL_81 {7B715E}
  642. #define CARCOL_82 {741D28}
  643. #define CARCOL_83 {1E2E32}
  644. #define CARCOL_84 {4D322F}
  645. #define CARCOL_85 {7C1B44}
  646. #define CARCOL_86 {2E5B20}
  647. #define CARCOL_87 {395A83}
  648. #define CARCOL_88 {6D2837}
  649. #define CARCOL_89 {A7A28F}
  650. #define CARCOL_90 {AFB1B1}
  651. #define CARCOL_91 {364155}
  652. #define CARCOL_92 {6D6C6E}
  653. #define CARCOL_93 {0F6A89}
  654. #define CARCOL_94 {204B6B}
  655. #define CARCOL_95 {2B3E57}
  656. #define CARCOL_96 {9B9F9D}
  657. #define CARCOL_97 {6C8495}
  658. #define CARCOL_98 {4D5D60}
  659. #define CARCOL_99 {AE9B7F}
  660. #define CARCOL_100 {406C8F}
  661. #define CARCOL_101 {1F253B}
  662. #define CARCOL_102 {AB9276}
  663. #define CARCOL_103 {134573}
  664. #define CARCOL_104 {96816C}
  665. #define CARCOL_105 {64686A}
  666. #define CARCOL_106 {105082}
  667. #define CARCOL_107 {A19983}
  668. #define CARCOL_108 {385694}
  669. #define CARCOL_109 {525661}
  670. #define CARCOL_110 {7F6956}
  671. #define CARCOL_111 {8C929A}
  672. #define CARCOL_112 {596E87}
  673. #define CARCOL_113 {473532}
  674. #define CARCOL_114 {44624F}
  675. #define CARCOL_115 {730A27}
  676. #define CARCOL_116 {223457}
  677. #define CARCOL_117 {640D1B}
  678. #define CARCOL_118 {A3ADC6}
  679. #define CARCOL_119 {695853}
  680. #define CARCOL_120 {9B8B80}
  681. #define CARCOL_121 {620B1C}
  682. #define CARCOL_122 {5B5D5E}
  683. #define CARCOL_123 {624428}
  684. #define CARCOL_124 {731827}
  685. #define CARCOL_125 {1B376D}
  686. #define CARCOL_126 {EC6AAE}
  687. #define CARCOL0 {000000}
  688. #define CARCOL1 {F5F5F5}
  689. #define CARCOL2 {2A77A1}
  690. #define CARCOL3 {840410}
  691. #define CARCOL4 {263739}
  692. #define CARCOL5 {86446E}
  693. #define CARCOL6 {D78E10}
  694. #define CARCOL7 {4C75B7}
  695. #define CARCOL8 {BDBEC6}
  696. #define CARCOL9 {5E7072}
  697. #define CARCOL10 {46597A}
  698. #define CARCOL11 {656A79}
  699. #define CARCOL12 {5D7E8D}
  700. #define CARCOL13 {58595A}
  701. #define CARCOL14 {D6DAD6}
  702. #define CARCOL15 {9CA1A3}
  703. #define CARCOL16 {335F3F}
  704. #define CARCOL17 {730E1A}
  705. #define CARCOL18 {7B0A2A}
  706. #define CARCOL19 {9F9D94}
  707. #define CARCOL20 {3B4E78}
  708. #define CARCOL21 {732E3E}
  709. #define CARCOL22 {691E3B}
  710. #define CARCOL23 {96918C}
  711. #define CARCOL24 {515459}
  712. #define CARCOL25 {3F3E45}
  713. #define CARCOL26 {A5A9A7}
  714. #define CARCOL27 {635C5A}
  715. #define CARCOL28 {3D4A68}
  716. #define CARCOL29 {979592}
  717. #define CARCOL30 {421F21}
  718. #define CARCOL31 {5F272B}
  719. #define CARCOL32 {8494AB}
  720. #define CARCOL33 {767B7C}
  721. #define CARCOL34 {646464}
  722. #define CARCOL35 {5A5752}
  723. #define CARCOL36 {252527}
  724. #define CARCOL37 {2D3A35}
  725. #define CARCOL38 {93A396}
  726. #define CARCOL39 {6D7A88}
  727. #define CARCOL40 {221918}
  728. #define CARCOL41 {6F675F}
  729. #define CARCOL42 {7C1C2A}
  730. #define CARCOL43 {5F0A15}
  731. #define CARCOL44 {193826}
  732. #define CARCOL45 {5D1B20}
  733. #define CARCOL46 {9D9872}
  734. #define CARCOL47 {7A7560}
  735. #define CARCOL48 {989586}
  736. #define CARCOL49 {ADB0B0}
  737. #define CARCOL50 {848988}
  738. #define CARCOL51 {304F45}
  739. #define CARCOL52 {4D6268}
  740. #define CARCOL53 {162248}
  741. #define CARCOL54 {272F4B}
  742. #define CARCOL55 {7D6256}
  743. #define CARCOL56 {9EA4AB}
  744. #define CARCOL57 {9C8D71}
  745. #define CARCOL58 {6D1822}
  746. #define CARCOL59 {4E6881}
  747. #define CARCOL60 {9C9C98}
  748. #define CARCOL61 {917347}
  749. #define CARCOL62 {661C26}
  750. #define CARCOL63 {949D9F}
  751. #define CARCOL64 {A4A7A5}
  752. #define CARCOL65 {8E8C46}
  753. #define CARCOL66 {341A1E}
  754. #define CARCOL67 {6A7A8C}
  755. #define CARCOL68 {AAAD8E}
  756. #define CARCOL69 {AB988F}
  757. #define CARCOL70 {851F2E}
  758. #define CARCOL71 {6F8297}
  759. #define CARCOL72 {585853}
  760. #define CARCOL73 {9AA790}
  761. #define CARCOL74 {601A23}
  762. #define CARCOL75 {20202C}
  763. #define CARCOL76 {A4A096}
  764. #define CARCOL77 {AA9D84}
  765. #define CARCOL78 {78222B}
  766. #define CARCOL79 {0E316D}
  767. #define CARCOL80 {722A3F}
  768. #define CARCOL81 {7B715E}
  769. #define CARCOL82 {741D28}
  770. #define CARCOL83 {1E2E32}
  771. #define CARCOL84 {4D322F}
  772. #define CARCOL85 {7C1B44}
  773. #define CARCOL86 {2E5B20}
  774. #define CARCOL87 {395A83}
  775. #define CARCOL88 {6D2837}
  776. #define CARCOL89 {A7A28F}
  777. #define CARCOL90 {AFB1B1}
  778. #define CARCOL91 {364155}
  779. #define CARCOL92 {6D6C6E}
  780. #define CARCOL93 {0F6A89}
  781. #define CARCOL94 {204B6B}
  782. #define CARCOL95 {2B3E57}
  783. #define CARCOL96 {9B9F9D}
  784. #define CARCOL97 {6C8495}
  785. #define CARCOL98 {4D5D60}
  786. #define CARCOL99 {AE9B7F}
  787. #define CARCOL100 {406C8F}
  788. #define CARCOL101 {1F253B}
  789. #define CARCOL102 {AB9276}
  790. #define CARCOL103 {134573}
  791. #define CARCOL104 {96816C}
  792. #define CARCOL105 {64686A}
  793. #define CARCOL106 {105082}
  794. #define CARCOL107 {A19983}
  795. #define CARCOL108 {385694}
  796. #define CARCOL109 {525661}
  797. #define CARCOL110 {7F6956}
  798. #define CARCOL111 {8C929A}
  799. #define CARCOL112 {596E87}
  800. #define CARCOL113 {473532}
  801. #define CARCOL114 {44624F}
  802. #define CARCOL115 {730A27}
  803. #define CARCOL116 {223457}
  804. #define CARCOL117 {640D1B}
  805. #define CARCOL118 {A3ADC6}
  806. #define CARCOL119 {695853}
  807. #define CARCOL120 {9B8B80}
  808. #define CARCOL121 {620B1C}
  809. #define CARCOL122 {5B5D5E}
  810. #define CARCOL123 {624428}
  811. #define CARCOL124 {731827}
  812. #define CARCOL125 {1B376D}
  813. #define CARCOL126 {EC6AAE}
  814. #define @PLAYER_0 0xFF8C13AA
  815. #define @PLAYER_1 0xC715FFAA
  816. #define @PLAYER_2 0x20B2AAAA
  817. #define @PLAYER_3 0xDC143CAA
  818. #define @PLAYER_4 0x6495EDAA
  819. #define @PLAYER_5 0xF0E68CAA
  820. #define @PLAYER_6 0x778899AA
  821. #define @PLAYER_7 0xFF1493AA
  822. #define @PLAYER_8 0xF4A460AA
  823. #define @PLAYER_9 0xEE82EEAA
  824. #define @PLAYER_10 0xFFD720AA
  825. #define @PLAYER_11 0x8B4513AA
  826. #define @PLAYER_12 0x4949A0AA
  827. #define @PLAYER_13 0x148B8BAA
  828. #define @PLAYER_14 0x14FF7FAA
  829. #define @PLAYER_15 0x556B2FAA
  830. #define @PLAYER_16 0x0FD9FAAA
  831. #define @PLAYER_17 0x10DC29AA
  832. #define @PLAYER_18 0x534081AA
  833. #define @PLAYER_19 0x0495CDAA
  834. #define @PLAYER_20 0xEF6CE8AA
  835. #define @PLAYER_21 0xBD34DAAA
  836. #define @PLAYER_22 0x247C1BAA
  837. #define @PLAYER_23 0x0C8E5DAA
  838. #define @PLAYER_24 0x635B03AA
  839. #define @PLAYER_25 0xCB7ED3AA
  840. #define @PLAYER_26 0x65ADEBAA
  841. #define @PLAYER_27 0x5C1ACCAA
  842. #define @PLAYER_28 0xF2F853AA
  843. #define @PLAYER_29 0x11F891AA
  844. #define @PLAYER_30 0x7B39AAAA
  845. #define @PLAYER_31 0x53EB10AA
  846. #define @PLAYER_32 0x54137DAA
  847. #define @PLAYER_33 0x275222AA
  848. #define @PLAYER_34 0xF09F5BAA
  849. #define @PLAYER_35 0x3D0A4FAA
  850. #define @PLAYER_36 0x22F767AA
  851. #define @PLAYER_37 0xD63034AA
  852. #define @PLAYER_38 0x9A6980AA
  853. #define @PLAYER_39 0xDFB935AA
  854. #define @PLAYER_40 0x3793FAAA
  855. #define @PLAYER_41 0x90239DAA
  856. #define @PLAYER_42 0xE9AB2FAA
  857. #define @PLAYER_43 0xAF2FF3AA
  858. #define @PLAYER_44 0x057F94AA
  859. #define @PLAYER_45 0xB98519AA
  860. #define @PLAYER_46 0x388EEAAA
  861. #define @PLAYER_47 0x028151AA
  862. #define @PLAYER_48 0xA55043AA
  863. #define @PLAYER_49 0x0DE018AA
  864. #define @PLAYER_50 0x93AB1CAA
  865. #define @PLAYER_51 0x95BAF0AA
  866. #define @PLAYER_52 0x369976AA
  867. #define @PLAYER_53 0x18F71FAA
  868. #define @PLAYER_54 0x4B8987AA
  869. #define @PLAYER_55 0x491B9EAA
  870. #define @PLAYER_56 0x829DC7AA
  871. #define @PLAYER_57 0xBCE635AA
  872. #define @PLAYER_58 0xCEA6DFAA
  873. #define @PLAYER_59 0x20D4ADAA
  874. #define @PLAYER_60 0x2D74FDAA
  875. #define @PLAYER_61 0x3C1C0DAA
  876. #define @PLAYER_62 0x12D6D4AA
  877. #define @PLAYER_63 0x48C000AA
  878. #define @PLAYER_64 0x2A51E2AA
  879. #define @PLAYER_65 0xE3AC12AA
  880. #define @PLAYER_66 0xFC42A8AA
  881. #define @PLAYER_67 0x2FC827AA
  882. #define @PLAYER_68 0x1A30BFAA
  883. #define @PLAYER_69 0xB740C2AA
  884. #define @PLAYER_70 0x42ACF5AA
  885. #define @PLAYER_71 0x2FD9DEAA
  886. #define @PLAYER_72 0xFAFB71AA
  887. #define @PLAYER_73 0x05D1CDAA
  888. #define @PLAYER_74 0xC471BDAA
  889. #define @PLAYER_75 0x94436EAA
  890. #define @PLAYER_76 0xC1F7ECAA
  891. #define @PLAYER_77 0xCE79EEAA
  892. #define @PLAYER_78 0xBD1EF2AA
  893. #define @PLAYER_79 0x93B7E4AA
  894. #define @PLAYER_80 0x3214AAAA
  895. #define @PLAYER_81 0x184D3BAA
  896. #define @PLAYER_82 0xAE4B99AA
  897. #define @PLAYER_83 0x7E49D7AA
  898. #define @PLAYER_84 0x4C436EAA
  899. #define @PLAYER_85 0xFA24CCAA
  900. #define @PLAYER_86 0xCE76BEAA
  901. #define @PLAYER_87 0xA04E0AAA
  902. #define @PLAYER_88 0x9F945CAA
  903. #define @PLAYER_89 0xDCDE3DAA
  904. #define @PLAYER_90 0x10C9C5AA
  905. #define @PLAYER_91 0x70524DAA
  906. #define @PLAYER_92 0x0BE472AA
  907. #define @PLAYER_93 0x8A2CD7AA
  908. #define @PLAYER_94 0x6152C2AA
  909. #define @PLAYER_95 0xCF72A9AA
  910. #define @PLAYER_96 0xE59338AA
  911. #define @PLAYER_97 0xEEDC2DAA
  912. #define @PLAYER_98 0xD8C762AA
  913. #define @PLAYER_99 0xD8C762AA
  914. #define @PLAYER_000 0xFF8C13AA
  915. #define @PLAYER_001 0xC715FFAA
  916. #define @PLAYER_002 0x20B2AAAA
  917. #define @PLAYER_003 0xDC143CAA
  918. #define @PLAYER_004 0x6495EDAA
  919. #define @PLAYER_005 0xF0E68CAA
  920. #define @PLAYER_006 0x778899AA
  921. #define @PLAYER_007 0xFF1493AA
  922. #define @PLAYER_008 0xF4A460AA
  923. #define @PLAYER_009 0xEE82EEAA
  924. #define @PLAYER_010 0xFFD720AA
  925. #define @PLAYER_011 0x8B4513AA
  926. #define @PLAYER_012 0x4949A0AA
  927. #define @PLAYER_013 0x148B8BAA
  928. #define @PLAYER_014 0x14FF7FAA
  929. #define @PLAYER_015 0x556B2FAA
  930. #define @PLAYER_016 0x0FD9FAAA
  931. #define @PLAYER_017 0x10DC29AA
  932. #define @PLAYER_018 0x534081AA
  933. #define @PLAYER_019 0x0495CDAA
  934. #define @PLAYER_020 0xEF6CE8AA
  935. #define @PLAYER_021 0xBD34DAAA
  936. #define @PLAYER_022 0x247C1BAA
  937. #define @PLAYER_023 0x0C8E5DAA
  938. #define @PLAYER_024 0x635B03AA
  939. #define @PLAYER_025 0xCB7ED3AA
  940. #define @PLAYER_026 0x65ADEBAA
  941. #define @PLAYER_027 0x5C1ACCAA
  942. #define @PLAYER_028 0xF2F853AA
  943. #define @PLAYER_029 0x11F891AA
  944. #define @PLAYER_030 0x7B39AAAA
  945. #define @PLAYER_031 0x53EB10AA
  946. #define @PLAYER_032 0x54137DAA
  947. #define @PLAYER_033 0x275222AA
  948. #define @PLAYER_034 0xF09F5BAA
  949. #define @PLAYER_035 0x3D0A4FAA
  950. #define @PLAYER_036 0x22F767AA
  951. #define @PLAYER_037 0xD63034AA
  952. #define @PLAYER_038 0x9A6980AA
  953. #define @PLAYER_039 0xDFB935AA
  954. #define @PLAYER_040 0x3793FAAA
  955. #define @PLAYER_041 0x90239DAA
  956. #define @PLAYER_042 0xE9AB2FAA
  957. #define @PLAYER_043 0xAF2FF3AA
  958. #define @PLAYER_044 0x057F94AA
  959. #define @PLAYER_045 0xB98519AA
  960. #define @PLAYER_046 0x388EEAAA
  961. #define @PLAYER_047 0x028151AA
  962. #define @PLAYER_048 0xA55043AA
  963. #define @PLAYER_049 0x0DE018AA
  964. #define @PLAYER_050 0x93AB1CAA
  965. #define @PLAYER_051 0x95BAF0AA
  966. #define @PLAYER_052 0x369976AA
  967. #define @PLAYER_053 0x18F71FAA
  968. #define @PLAYER_054 0x4B8987AA
  969. #define @PLAYER_055 0x491B9EAA
  970. #define @PLAYER_056 0x829DC7AA
  971. #define @PLAYER_057 0xBCE635AA
  972. #define @PLAYER_058 0xCEA6DFAA
  973. #define @PLAYER_059 0x20D4ADAA
  974. #define @PLAYER_060 0x2D74FDAA
  975. #define @PLAYER_061 0x3C1C0DAA
  976. #define @PLAYER_062 0x12D6D4AA
  977. #define @PLAYER_063 0x48C000AA
  978. #define @PLAYER_064 0x2A51E2AA
  979. #define @PLAYER_065 0xE3AC12AA
  980. #define @PLAYER_066 0xFC42A8AA
  981. #define @PLAYER_067 0x2FC827AA
  982. #define @PLAYER_068 0x1A30BFAA
  983. #define @PLAYER_069 0xB740C2AA
  984. #define @PLAYER_070 0x42ACF5AA
  985. #define @PLAYER_071 0x2FD9DEAA
  986. #define @PLAYER_072 0xFAFB71AA
  987. #define @PLAYER_073 0x05D1CDAA
  988. #define @PLAYER_074 0xC471BDAA
  989. #define @PLAYER_075 0x94436EAA
  990. #define @PLAYER_076 0xC1F7ECAA
  991. #define @PLAYER_077 0xCE79EEAA
  992. #define @PLAYER_078 0xBD1EF2AA
  993. #define @PLAYER_079 0x93B7E4AA
  994. #define @PLAYER_080 0x3214AAAA
  995. #define @PLAYER_081 0x184D3BAA
  996. #define @PLAYER_082 0xAE4B99AA
  997. #define @PLAYER_083 0x7E49D7AA
  998. #define @PLAYER_084 0x4C436EAA
  999. #define @PLAYER_085 0xFA24CCAA
  1000. #define @PLAYER_086 0xCE76BEAA
  1001. #define @PLAYER_087 0xA04E0AAA
  1002. #define @PLAYER_088 0x9F945CAA
  1003. #define @PLAYER_089 0xDCDE3DAA
  1004. #define @PLAYER_090 0x10C9C5AA
  1005. #define @PLAYER_091 0x70524DAA
  1006. #define @PLAYER_092 0x0BE472AA
  1007. #define @PLAYER_093 0x8A2CD7AA
  1008. #define @PLAYER_094 0x6152C2AA
  1009. #define @PLAYER_095 0xCF72A9AA
  1010. #define @PLAYER_096 0xE59338AA
  1011. #define @PLAYER_097 0xEEDC2DAA
  1012. #define @PLAYER_098 0xD8C762AA
  1013. #define @PLAYER_099 0xD8C762AA
  1014. #define @PLAYER_100 0xFF8C13AA
  1015. #define @PLAYER_101 0xC715FFAA
  1016. #define @PLAYER_102 0x20B2AAAA
  1017. #define @PLAYER_103 0xDC143CAA
  1018. #define @PLAYER_104 0x6495EDAA
  1019. #define @PLAYER_105 0xF0E68CAA
  1020. #define @PLAYER_106 0x778899AA
  1021. #define @PLAYER_107 0xFF1493AA
  1022. #define @PLAYER_108 0xF4A460AA
  1023. #define @PLAYER_109 0xEE82EEAA
  1024. #define @PLAYER_110 0xFFD720AA
  1025. #define @PLAYER_111 0x8B4513AA
  1026. #define @PLAYER_112 0x4949A0AA
  1027. #define @PLAYER_113 0x148B8BAA
  1028. #define @PLAYER_114 0x14FF7FAA
  1029. #define @PLAYER_115 0x556B2FAA
  1030. #define @PLAYER_116 0x0FD9FAAA
  1031. #define @PLAYER_117 0x10DC29AA
  1032. #define @PLAYER_118 0x534081AA
  1033. #define @PLAYER_119 0x0495CDAA
  1034. #define @PLAYER_120 0xEF6CE8AA
  1035. #define @PLAYER_121 0xBD34DAAA
  1036. #define @PLAYER_122 0x247C1BAA
  1037. #define @PLAYER_123 0x0C8E5DAA
  1038. #define @PLAYER_124 0x635B03AA
  1039. #define @PLAYER_125 0xCB7ED3AA
  1040. #define @PLAYER_126 0x65ADEBAA
  1041. #define @PLAYER_127 0x5C1ACCAA
  1042. #define @PLAYER_128 0xF2F853AA
  1043. #define @PLAYER_129 0x11F891AA
  1044. #define @PLAYER_130 0x7B39AAAA
  1045. #define @PLAYER_131 0x53EB10AA
  1046. #define @PLAYER_132 0x54137DAA
  1047. #define @PLAYER_133 0x275222AA
  1048. #define @PLAYER_134 0xF09F5BAA
  1049. #define @PLAYER_135 0x3D0A4FAA
  1050. #define @PLAYER_136 0x22F767AA
  1051. #define @PLAYER_137 0xD63034AA
  1052. #define @PLAYER_138 0x9A6980AA
  1053. #define @PLAYER_139 0xDFB935AA
  1054. #define @PLAYER_140 0x3793FAAA
  1055. #define @PLAYER_141 0x90239DAA
  1056. #define @PLAYER_142 0xE9AB2FAA
  1057. #define @PLAYER_143 0xAF2FF3AA
  1058. #define @PLAYER_144 0x057F94AA
  1059. #define @PLAYER_145 0xB98519AA
  1060. #define @PLAYER_146 0x388EEAAA
  1061. #define @PLAYER_147 0x028151AA
  1062. #define @PLAYER_148 0xA55043AA
  1063. #define @PLAYER_149 0x0DE018AA
  1064. #define @PLAYER_150 0x93AB1CAA
  1065. #define @PLAYER_151 0x95BAF0AA
  1066. #define @PLAYER_152 0x369976AA
  1067. #define @PLAYER_153 0x18F71FAA
  1068. #define @PLAYER_154 0x4B8987AA
  1069. #define @PLAYER_155 0x491B9EAA
  1070. #define @PLAYER_156 0x829DC7AA
  1071. #define @PLAYER_157 0xBCE635AA
  1072. #define @PLAYER_158 0xCEA6DFAA
  1073. #define @PLAYER_159 0x20D4ADAA
  1074. #define @PLAYER_160 0x2D74FDAA
  1075. #define @PLAYER_161 0x3C1C0DAA
  1076. #define @PLAYER_162 0x12D6D4AA
  1077. #define @PLAYER_163 0x48C000AA
  1078. #define @PLAYER_164 0x2A51E2AA
  1079. #define @PLAYER_165 0xE3AC12AA
  1080. #define @PLAYER_166 0xFC42A8AA
  1081. #define @PLAYER_167 0x2FC827AA
  1082. #define @PLAYER_168 0x1A30BFAA
  1083. #define @PLAYER_169 0xB740C2AA
  1084. #define @PLAYER_170 0x42ACF5AA
  1085. #define @PLAYER_171 0x2FD9DEAA
  1086. #define @PLAYER_172 0xFAFB71AA
  1087. #define @PLAYER_173 0x05D1CDAA
  1088. #define @PLAYER_174 0xC471BDAA
  1089. #define @PLAYER_175 0x94436EAA
  1090. #define @PLAYER_176 0xC1F7ECAA
  1091. #define @PLAYER_177 0xCE79EEAA
  1092. #define @PLAYER_178 0xBD1EF2AA
  1093. #define @PLAYER_179 0x93B7E4AA
  1094. #define @PLAYER_180 0x3214AAAA
  1095. #define @PLAYER_181 0x184D3BAA
  1096. #define @PLAYER_182 0xAE4B99AA
  1097. #define @PLAYER_183 0x7E49D7AA
  1098. #define @PLAYER_184 0x4C436EAA
  1099. #define @PLAYER_185 0xFA24CCAA
  1100. #define @PLAYER_186 0xCE76BEAA
  1101. #define @PLAYER_187 0xA04E0AAA
  1102. #define @PLAYER_188 0x9F945CAA
  1103. #define @PLAYER_189 0xDCDE3DAA
  1104. #define @PLAYER_190 0x10C9C5AA
  1105. #define @PLAYER_191 0x70524DAA
  1106. #define @PLAYER_192 0x0BE472AA
  1107. #define @PLAYER_193 0x8A2CD7AA
  1108. #define @PLAYER_194 0x6152C2AA
  1109. #define @PLAYER_195 0xCF72A9AA
  1110. #define @PLAYER_196 0xE59338AA
  1111. #define @PLAYER_197 0xEEDC2DAA
  1112. #define @PLAYER_198 0xD8C762AA
  1113. #define @PLAYER_199 0xD8C762AA
  1114. #define @PLAYER_200 0xFF8C13AA
  1115. #define @PLAYER_201 0xC715FFAA
  1116. #define @PLAYER_202 0x20B2AAAA
  1117. #define @PLAYER_203 0xDC143CAA
  1118. #define @PLAYER_204 0x6495EDAA
  1119. #define @PLAYER_205 0xF0E68CAA
  1120. #define @PLAYER_206 0x778899AA
  1121. #define @PLAYER_207 0xFF1493AA
  1122. #define @PLAYER_208 0xF4A460AA
  1123. #define @PLAYER_209 0xEE82EEAA
  1124. #define @PLAYER_210 0xFFD720AA
  1125. #define @PLAYER_211 0x8B4513AA
  1126. #define @PLAYER_212 0x4949A0AA
  1127. #define @PLAYER_213 0x148B8BAA
  1128. #define @PLAYER_214 0x14FF7FAA
  1129. #define @PLAYER_215 0x556B2FAA
  1130. #define @PLAYER_216 0x0FD9FAAA
  1131. #define @PLAYER_217 0x10DC29AA
  1132. #define @PLAYER_218 0x534081AA
  1133. #define @PLAYER_219 0x0495CDAA
  1134. #define @PLAYER_220 0xEF6CE8AA
  1135. #define @PLAYER_221 0xBD34DAAA
  1136. #define @PLAYER_222 0x247C1BAA
  1137. #define @PLAYER_223 0x0C8E5DAA
  1138. #define @PLAYER_224 0x635B03AA
  1139. #define @PLAYER_225 0xCB7ED3AA
  1140. #define @PLAYER_226 0x65ADEBAA
  1141. #define @PLAYER_227 0x5C1ACCAA
  1142. #define @PLAYER_228 0xF2F853AA
  1143. #define @PLAYER_229 0x11F891AA
  1144. #define @PLAYER_230 0x7B39AAAA
  1145. #define @PLAYER_231 0x53EB10AA
  1146. #define @PLAYER_232 0x54137DAA
  1147. #define @PLAYER_233 0x275222AA
  1148. #define @PLAYER_234 0xF09F5BAA
  1149. #define @PLAYER_235 0x3D0A4FAA
  1150. #define @PLAYER_236 0x22F767AA
  1151. #define @PLAYER_237 0xD63034AA
  1152. #define @PLAYER_238 0x9A6980AA
  1153. #define @PLAYER_239 0xDFB935AA
  1154. #define @PLAYER_240 0x3793FAAA
  1155. #define @PLAYER_241 0x90239DAA
  1156. #define @PLAYER_242 0xE9AB2FAA
  1157. #define @PLAYER_243 0xAF2FF3AA
  1158. #define @PLAYER_244 0x057F94AA
  1159. #define @PLAYER_245 0xB98519AA
  1160. #define @PLAYER_246 0x388EEAAA
  1161. #define @PLAYER_247 0x028151AA
  1162. #define @PLAYER_248 0xA55043AA
  1163. #define @PLAYER_249 0x0DE018AA
  1164. #define @PLAYER_250 0x93AB1CAA
  1165. #define @PLAYER_251 0x95BAF0AA
  1166. #define @PLAYER_252 0x369976AA
  1167. #define @PLAYER_253 0x18F71FAA
  1168. #define @PLAYER_254 0x4B8987AA
  1169. #define @PLAYER_255 0x491B9EAA
  1170. #define @PLAYER_256 0x829DC7AA
  1171. #define @PLAYER_257 0xBCE635AA
  1172. #define @PLAYER_258 0xCEA6DFAA
  1173. #define @PLAYER_259 0x20D4ADAA
  1174. #define @PLAYER_260 0x2D74FDAA
  1175. #define @PLAYER_261 0x3C1C0DAA
  1176. #define @PLAYER_262 0x12D6D4AA
  1177. #define @PLAYER_263 0x48C000AA
  1178. #define @PLAYER_264 0x2A51E2AA
  1179. #define @PLAYER_265 0xE3AC12AA
  1180. #define @PLAYER_266 0xFC42A8AA
  1181. #define @PLAYER_267 0x2FC827AA
  1182. #define @PLAYER_268 0x1A30BFAA
  1183. #define @PLAYER_269 0xB740C2AA
  1184. #define @PLAYER_270 0x42ACF5AA
  1185. #define @PLAYER_271 0x2FD9DEAA
  1186. #define @PLAYER_272 0xFAFB71AA
  1187. #define @PLAYER_273 0x05D1CDAA
  1188. #define @PLAYER_274 0xC471BDAA
  1189. #define @PLAYER_275 0x94436EAA
  1190. #define @PLAYER_276 0xC1F7ECAA
  1191. #define @PLAYER_277 0xCE79EEAA
  1192. #define @PLAYER_278 0xBD1EF2AA
  1193. #define @PLAYER_279 0x93B7E4AA
  1194. #define @PLAYER_280 0x3214AAAA
  1195. #define @PLAYER_281 0x184D3BAA
  1196. #define @PLAYER_282 0xAE4B99AA
  1197. #define @PLAYER_283 0x7E49D7AA
  1198. #define @PLAYER_284 0x4C436EAA
  1199. #define @PLAYER_285 0xFA24CCAA
  1200. #define @PLAYER_286 0xCE76BEAA
  1201. #define @PLAYER_287 0xA04E0AAA
  1202. #define @PLAYER_288 0x9F945CAA
  1203. #define @PLAYER_289 0xDCDE3DAA
  1204. #define @PLAYER_290 0x10C9C5AA
  1205. #define @PLAYER_291 0x70524DAA
  1206. #define @PLAYER_292 0x0BE472AA
  1207. #define @PLAYER_293 0x8A2CD7AA
  1208. #define @PLAYER_294 0x6152C2AA
  1209. #define @PLAYER_295 0xCF72A9AA
  1210. #define @PLAYER_296 0xE59338AA
  1211. #define @PLAYER_297 0xEEDC2DAA
  1212. #define @PLAYER_298 0xD8C762AA
  1213. #define @PLAYER_299 0xD8C762AA
  1214. #define @PLAYER_300 0xFF8C13AA
  1215. #define @PLAYER_301 0xC715FFAA
  1216. #define @PLAYER_302 0x20B2AAAA
  1217. #define @PLAYER_303 0xDC143CAA
  1218. #define @PLAYER_304 0x6495EDAA
  1219. #define @PLAYER_305 0xF0E68CAA
  1220. #define @PLAYER_306 0x778899AA
  1221. #define @PLAYER_307 0xFF1493AA
  1222. #define @PLAYER_308 0xF4A460AA
  1223. #define @PLAYER_309 0xEE82EEAA
  1224. #define @PLAYER_310 0xFFD720AA
  1225. #define @PLAYER_311 0x8B4513AA
  1226. #define @PLAYER_312 0x4949A0AA
  1227. #define @PLAYER_313 0x148B8BAA
  1228. #define @PLAYER_314 0x14FF7FAA
  1229. #define @PLAYER_315 0x556B2FAA
  1230. #define @PLAYER_316 0x0FD9FAAA
  1231. #define @PLAYER_317 0x10DC29AA
  1232. #define @PLAYER_318 0x534081AA
  1233. #define @PLAYER_319 0x0495CDAA
  1234. #define @PLAYER_320 0xEF6CE8AA
  1235. #define @PLAYER_321 0xBD34DAAA
  1236. #define @PLAYER_322 0x247C1BAA
  1237. #define @PLAYER_323 0x0C8E5DAA
  1238. #define @PLAYER_324 0x635B03AA
  1239. #define @PLAYER_325 0xCB7ED3AA
  1240. #define @PLAYER_326 0x65ADEBAA
  1241. #define @PLAYER_327 0x5C1ACCAA
  1242. #define @PLAYER_328 0xF2F853AA
  1243. #define @PLAYER_329 0x11F891AA
  1244. #define @PLAYER_330 0x7B39AAAA
  1245. #define @PLAYER_331 0x53EB10AA
  1246. #define @PLAYER_332 0x54137DAA
  1247. #define @PLAYER_333 0x275222AA
  1248. #define @PLAYER_334 0xF09F5BAA
  1249. #define @PLAYER_335 0x3D0A4FAA
  1250. #define @PLAYER_336 0x22F767AA
  1251. #define @PLAYER_337 0xD63034AA
  1252. #define @PLAYER_338 0x9A6980AA
  1253. #define @PLAYER_339 0xDFB935AA
  1254. #define @PLAYER_340 0x3793FAAA
  1255. #define @PLAYER_341 0x90239DAA
  1256. #define @PLAYER_342 0xE9AB2FAA
  1257. #define @PLAYER_343 0xAF2FF3AA
  1258. #define @PLAYER_344 0x057F94AA
  1259. #define @PLAYER_345 0xB98519AA
  1260. #define @PLAYER_346 0x388EEAAA
  1261. #define @PLAYER_347 0x028151AA
  1262. #define @PLAYER_348 0xA55043AA
  1263. #define @PLAYER_349 0x0DE018AA
  1264. #define @PLAYER_350 0x93AB1CAA
  1265. #define @PLAYER_351 0x95BAF0AA
  1266. #define @PLAYER_352 0x369976AA
  1267. #define @PLAYER_353 0x18F71FAA
  1268. #define @PLAYER_354 0x4B8987AA
  1269. #define @PLAYER_355 0x491B9EAA
  1270. #define @PLAYER_356 0x829DC7AA
  1271. #define @PLAYER_357 0xBCE635AA
  1272. #define @PLAYER_358 0xCEA6DFAA
  1273. #define @PLAYER_359 0x20D4ADAA
  1274. #define @PLAYER_360 0x2D74FDAA
  1275. #define @PLAYER_361 0x3C1C0DAA
  1276. #define @PLAYER_362 0x12D6D4AA
  1277. #define @PLAYER_363 0x48C000AA
  1278. #define @PLAYER_364 0x2A51E2AA
  1279. #define @PLAYER_365 0xE3AC12AA
  1280. #define @PLAYER_366 0xFC42A8AA
  1281. #define @PLAYER_367 0x2FC827AA
  1282. #define @PLAYER_368 0x1A30BFAA
  1283. #define @PLAYER_369 0xB740C2AA
  1284. #define @PLAYER_370 0x42ACF5AA
  1285. #define @PLAYER_371 0x2FD9DEAA
  1286. #define @PLAYER_372 0xFAFB71AA
  1287. #define @PLAYER_373 0x05D1CDAA
  1288. #define @PLAYER_374 0xC471BDAA
  1289. #define @PLAYER_375 0x94436EAA
  1290. #define @PLAYER_376 0xC1F7ECAA
  1291. #define @PLAYER_377 0xCE79EEAA
  1292. #define @PLAYER_378 0xBD1EF2AA
  1293. #define @PLAYER_379 0x93B7E4AA
  1294. #define @PLAYER_380 0x3214AAAA
  1295. #define @PLAYER_381 0x184D3BAA
  1296. #define @PLAYER_382 0xAE4B99AA
  1297. #define @PLAYER_383 0x7E49D7AA
  1298. #define @PLAYER_384 0x4C436EAA
  1299. #define @PLAYER_385 0xFA24CCAA
  1300. #define @PLAYER_386 0xCE76BEAA
  1301. #define @PLAYER_387 0xA04E0AAA
  1302. #define @PLAYER_388 0x9F945CAA
  1303. #define @PLAYER_389 0xDCDE3DAA
  1304. #define @PLAYER_390 0x10C9C5AA
  1305. #define @PLAYER_391 0x70524DAA
  1306. #define @PLAYER_392 0x0BE472AA
  1307. #define @PLAYER_393 0x8A2CD7AA
  1308. #define @PLAYER_394 0x6152C2AA
  1309. #define @PLAYER_395 0xCF72A9AA
  1310. #define @PLAYER_396 0xE59338AA
  1311. #define @PLAYER_397 0xEEDC2DAA
  1312. #define @PLAYER_398 0xD8C762AA
  1313. #define @PLAYER_399 0xD8C762AA
  1314. #define @PLAYER_400 0xFF8C13AA
  1315. #define @PLAYER_401 0xC715FFAA
  1316. #define @PLAYER_402 0x20B2AAAA
  1317. #define @PLAYER_403 0xDC143CAA
  1318. #define @PLAYER_404 0x6495EDAA
  1319. #define @PLAYER_405 0xF0E68CAA
  1320. #define @PLAYER_406 0x778899AA
  1321. #define @PLAYER_407 0xFF1493AA
  1322. #define @PLAYER_408 0xF4A460AA
  1323. #define @PLAYER_409 0xEE82EEAA
  1324. #define @PLAYER_410 0xFFD720AA
  1325. #define @PLAYER_411 0x8B4513AA
  1326. #define @PLAYER_412 0x4949A0AA
  1327. #define @PLAYER_413 0x148B8BAA
  1328. #define @PLAYER_414 0x14FF7FAA
  1329. #define @PLAYER_415 0x556B2FAA
  1330. #define @PLAYER_416 0x0FD9FAAA
  1331. #define @PLAYER_417 0x10DC29AA
  1332. #define @PLAYER_418 0x534081AA
  1333. #define @PLAYER_419 0x0495CDAA
  1334. #define @PLAYER_420 0xEF6CE8AA
  1335. #define @PLAYER_421 0xBD34DAAA
  1336. #define @PLAYER_422 0x247C1BAA
  1337. #define @PLAYER_423 0x0C8E5DAA
  1338. #define @PLAYER_424 0x635B03AA
  1339. #define @PLAYER_425 0xCB7ED3AA
  1340. #define @PLAYER_426 0x65ADEBAA
  1341. #define @PLAYER_427 0x5C1ACCAA
  1342. #define @PLAYER_428 0xF2F853AA
  1343. #define @PLAYER_429 0x11F891AA
  1344. #define @PLAYER_430 0x7B39AAAA
  1345. #define @PLAYER_431 0x53EB10AA
  1346. #define @PLAYER_432 0x54137DAA
  1347. #define @PLAYER_433 0x275222AA
  1348. #define @PLAYER_434 0xF09F5BAA
  1349. #define @PLAYER_435 0x3D0A4FAA
  1350. #define @PLAYER_436 0x22F767AA
  1351. #define @PLAYER_437 0xD63034AA
  1352. #define @PLAYER_438 0x9A6980AA
  1353. #define @PLAYER_439 0xDFB935AA
  1354. #define @PLAYER_440 0x3793FAAA
  1355. #define @PLAYER_441 0x90239DAA
  1356. #define @PLAYER_442 0xE9AB2FAA
  1357. #define @PLAYER_443 0xAF2FF3AA
  1358. #define @PLAYER_444 0x057F94AA
  1359. #define @PLAYER_445 0xB98519AA
  1360. #define @PLAYER_446 0x388EEAAA
  1361. #define @PLAYER_447 0x028151AA
  1362. #define @PLAYER_448 0xA55043AA
  1363. #define @PLAYER_449 0x0DE018AA
  1364. #define @PLAYER_450 0x93AB1CAA
  1365. #define @PLAYER_451 0x95BAF0AA
  1366. #define @PLAYER_452 0x369976AA
  1367. #define @PLAYER_453 0x18F71FAA
  1368. #define @PLAYER_454 0x4B8987AA
  1369. #define @PLAYER_455 0x491B9EAA
  1370. #define @PLAYER_456 0x829DC7AA
  1371. #define @PLAYER_457 0xBCE635AA
  1372. #define @PLAYER_458 0xCEA6DFAA
  1373. #define @PLAYER_459 0x20D4ADAA
  1374. #define @PLAYER_460 0x2D74FDAA
  1375. #define @PLAYER_461 0x3C1C0DAA
  1376. #define @PLAYER_462 0x12D6D4AA
  1377. #define @PLAYER_463 0x48C000AA
  1378. #define @PLAYER_464 0x2A51E2AA
  1379. #define @PLAYER_465 0xE3AC12AA
  1380. #define @PLAYER_466 0xFC42A8AA
  1381. #define @PLAYER_467 0x2FC827AA
  1382. #define @PLAYER_468 0x1A30BFAA
  1383. #define @PLAYER_469 0xB740C2AA
  1384. #define @PLAYER_470 0x42ACF5AA
  1385. #define @PLAYER_471 0x2FD9DEAA
  1386. #define @PLAYER_472 0xFAFB71AA
  1387. #define @PLAYER_473 0x05D1CDAA
  1388. #define @PLAYER_474 0xC471BDAA
  1389. #define @PLAYER_475 0x94436EAA
  1390. #define @PLAYER_476 0xC1F7ECAA
  1391. #define @PLAYER_477 0xCE79EEAA
  1392. #define @PLAYER_478 0xBD1EF2AA
  1393. #define @PLAYER_479 0x93B7E4AA
  1394. #define @PLAYER_480 0x3214AAAA
  1395. #define @PLAYER_481 0x184D3BAA
  1396. #define @PLAYER_482 0xAE4B99AA
  1397. #define @PLAYER_483 0x7E49D7AA
  1398. #define @PLAYER_484 0x4C436EAA
  1399. #define @PLAYER_485 0xFA24CCAA
  1400. #define @PLAYER_486 0xCE76BEAA
  1401. #define @PLAYER_487 0xA04E0AAA
  1402. #define @PLAYER_488 0x9F945CAA
  1403. #define @PLAYER_489 0xDCDE3DAA
  1404. #define @PLAYER_490 0x10C9C5AA
  1405. #define @PLAYER_491 0x70524DAA
  1406. #define @PLAYER_492 0x0BE472AA
  1407. #define @PLAYER_493 0x8A2CD7AA
  1408. #define @PLAYER_494 0x6152C2AA
  1409. #define @PLAYER_495 0xCF72A9AA
  1410. #define @PLAYER_496 0xE59338AA
  1411. #define @PLAYER_497 0xEEDC2DAA
  1412. #define @PLAYER_498 0xD8C762AA
  1413. #define @PLAYER_499 0xD8C762AA
  1414. #define @PLAYER_500 0xFF8C13AA
  1415. #define @PLAYER_501 0xC715FFAA
  1416. #define @PLAYER_502 0x20B2AAAA
  1417. #define @PLAYER_503 0xDC143CAA
  1418. #define @PLAYER_504 0x6495EDAA
  1419. #define @PLAYER_505 0xF0E68CAA
  1420. #define @PLAYER_506 0x778899AA
  1421. #define @PLAYER_507 0xFF1493AA
  1422. #define @PLAYER_508 0xF4A460AA
  1423. #define @PLAYER_509 0xEE82EEAA
  1424. #define @PLAYER_510 0xFFD720AA
  1425. #define @PLAYER_511 0x8B4513AA
  1426. #define @PLAYER_512 0x4949A0AA
  1427. #define @PLAYER_513 0x148B8BAA
  1428. #define @PLAYER_514 0x14FF7FAA
  1429. #define @PLAYER_515 0x556B2FAA
  1430. #define @PLAYER_516 0x0FD9FAAA
  1431. #define @PLAYER_517 0x10DC29AA
  1432. #define @PLAYER_518 0x534081AA
  1433. #define @PLAYER_519 0x0495CDAA
  1434. #define @PLAYER_520 0xEF6CE8AA
  1435. #define @PLAYER_521 0xBD34DAAA
  1436. #define @PLAYER_522 0x247C1BAA
  1437. #define @PLAYER_523 0x0C8E5DAA
  1438. #define @PLAYER_524 0x635B03AA
  1439. #define @PLAYER_525 0xCB7ED3AA
  1440. #define @PLAYER_526 0x65ADEBAA
  1441. #define @PLAYER_527 0x5C1ACCAA
  1442. #define @PLAYER_528 0xF2F853AA
  1443. #define @PLAYER_529 0x11F891AA
  1444. #define @PLAYER_530 0x7B39AAAA
  1445. #define @PLAYER_531 0x53EB10AA
  1446. #define @PLAYER_532 0x54137DAA
  1447. #define @PLAYER_533 0x275222AA
  1448. #define @PLAYER_534 0xF09F5BAA
  1449. #define @PLAYER_535 0x3D0A4FAA
  1450. #define @PLAYER_536 0x22F767AA
  1451. #define @PLAYER_537 0xD63034AA
  1452. #define @PLAYER_538 0x9A6980AA
  1453. #define @PLAYER_539 0xDFB935AA
  1454. #define @PLAYER_540 0x3793FAAA
  1455. #define @PLAYER_541 0x90239DAA
  1456. #define @PLAYER_542 0xE9AB2FAA
  1457. #define @PLAYER_543 0xAF2FF3AA
  1458. #define @PLAYER_544 0x057F94AA
  1459. #define @PLAYER_545 0xB98519AA
  1460. #define @PLAYER_546 0x388EEAAA
  1461. #define @PLAYER_547 0x028151AA
  1462. #define @PLAYER_548 0xA55043AA
  1463. #define @PLAYER_549 0x0DE018AA
  1464. #define @PLAYER_550 0x93AB1CAA
  1465. #define @PLAYER_551 0x95BAF0AA
  1466. #define @PLAYER_552 0x369976AA
  1467. #define @PLAYER_553 0x18F71FAA
  1468. #define @PLAYER_554 0x4B8987AA
  1469. #define @PLAYER_555 0x491B9EAA
  1470. #define @PLAYER_556 0x829DC7AA
  1471. #define @PLAYER_557 0xBCE635AA
  1472. #define @PLAYER_558 0xCEA6DFAA
  1473. #define @PLAYER_559 0x20D4ADAA
  1474. #define @PLAYER_560 0x2D74FDAA
  1475. #define @PLAYER_561 0x3C1C0DAA
  1476. #define @PLAYER_562 0x12D6D4AA
  1477. #define @PLAYER_563 0x48C000AA
  1478. #define @PLAYER_564 0x2A51E2AA
  1479. #define @PLAYER_565 0xE3AC12AA
  1480. #define @PLAYER_566 0xFC42A8AA
  1481. #define @PLAYER_567 0x2FC827AA
  1482. #define @PLAYER_568 0x1A30BFAA
  1483. #define @PLAYER_569 0xB740C2AA
  1484. #define @PLAYER_570 0x42ACF5AA
  1485. #define @PLAYER_571 0x2FD9DEAA
  1486. #define @PLAYER_572 0xFAFB71AA
  1487. #define @PLAYER_573 0x05D1CDAA
  1488. #define @PLAYER_574 0xC471BDAA
  1489. #define @PLAYER_575 0x94436EAA
  1490. #define @PLAYER_576 0xC1F7ECAA
  1491. #define @PLAYER_577 0xCE79EEAA
  1492. #define @PLAYER_578 0xBD1EF2AA
  1493. #define @PLAYER_579 0x93B7E4AA
  1494. #define @PLAYER_580 0x3214AAAA
  1495. #define @PLAYER_581 0x184D3BAA
  1496. #define @PLAYER_582 0xAE4B99AA
  1497. #define @PLAYER_583 0x7E49D7AA
  1498. #define @PLAYER_584 0x4C436EAA
  1499. #define @PLAYER_585 0xFA24CCAA
  1500. #define @PLAYER_586 0xCE76BEAA
  1501. #define @PLAYER_587 0xA04E0AAA
  1502. #define @PLAYER_588 0x9F945CAA
  1503. #define @PLAYER_589 0xDCDE3DAA
  1504. #define @PLAYER_590 0x10C9C5AA
  1505. #define @PLAYER_591 0x70524DAA
  1506. #define @PLAYER_592 0x0BE472AA
  1507. #define @PLAYER_593 0x8A2CD7AA
  1508. #define @PLAYER_594 0x6152C2AA
  1509. #define @PLAYER_595 0xCF72A9AA
  1510. #define @PLAYER_596 0xE59338AA
  1511. #define @PLAYER_597 0xEEDC2DAA
  1512. #define @PLAYER_598 0xD8C762AA
  1513. #define @PLAYER_599 0xD8C762AA
  1514. #define @PLAYER_600 0xFF8C13AA
  1515. #define @PLAYER_601 0xC715FFAA
  1516. #define @PLAYER_602 0x20B2AAAA
  1517. #define @PLAYER_603 0xDC143CAA
  1518. #define @PLAYER_604 0x6495EDAA
  1519. #define @PLAYER_605 0xF0E68CAA
  1520. #define @PLAYER_606 0x778899AA
  1521. #define @PLAYER_607 0xFF1493AA
  1522. #define @PLAYER_608 0xF4A460AA
  1523. #define @PLAYER_609 0xEE82EEAA
  1524. #define @PLAYER_610 0xFFD720AA
  1525. #define @PLAYER_611 0x8B4513AA
  1526. #define @PLAYER_612 0x4949A0AA
  1527. #define @PLAYER_613 0x148B8BAA
  1528. #define @PLAYER_614 0x14FF7FAA
  1529. #define @PLAYER_615 0x556B2FAA
  1530. #define @PLAYER_616 0x0FD9FAAA
  1531. #define @PLAYER_617 0x10DC29AA
  1532. #define @PLAYER_618 0x534081AA
  1533. #define @PLAYER_619 0x0495CDAA
  1534. #define @PLAYER_620 0xEF6CE8AA
  1535. #define @PLAYER_621 0xBD34DAAA
  1536. #define @PLAYER_622 0x247C1BAA
  1537. #define @PLAYER_623 0x0C8E5DAA
  1538. #define @PLAYER_624 0x635B03AA
  1539. #define @PLAYER_625 0xCB7ED3AA
  1540. #define @PLAYER_626 0x65ADEBAA
  1541. #define @PLAYER_627 0x5C1ACCAA
  1542. #define @PLAYER_628 0xF2F853AA
  1543. #define @PLAYER_629 0x11F891AA
  1544. #define @PLAYER_630 0x7B39AAAA
  1545. #define @PLAYER_631 0x53EB10AA
  1546. #define @PLAYER_632 0x54137DAA
  1547. #define @PLAYER_633 0x275222AA
  1548. #define @PLAYER_634 0xF09F5BAA
  1549. #define @PLAYER_635 0x3D0A4FAA
  1550. #define @PLAYER_636 0x22F767AA
  1551. #define @PLAYER_637 0xD63034AA
  1552. #define @PLAYER_638 0x9A6980AA
  1553. #define @PLAYER_639 0xDFB935AA
  1554. #define @PLAYER_640 0x3793FAAA
  1555. #define @PLAYER_641 0x90239DAA
  1556. #define @PLAYER_642 0xE9AB2FAA
  1557. #define @PLAYER_643 0xAF2FF3AA
  1558. #define @PLAYER_644 0x057F94AA
  1559. #define @PLAYER_645 0xB98519AA
  1560. #define @PLAYER_646 0x388EEAAA
  1561. #define @PLAYER_647 0x028151AA
  1562. #define @PLAYER_648 0xA55043AA
  1563. #define @PLAYER_649 0x0DE018AA
  1564. #define @PLAYER_650 0x93AB1CAA
  1565. #define @PLAYER_651 0x95BAF0AA
  1566. #define @PLAYER_652 0x369976AA
  1567. #define @PLAYER_653 0x18F71FAA
  1568. #define @PLAYER_654 0x4B8987AA
  1569. #define @PLAYER_655 0x491B9EAA
  1570. #define @PLAYER_656 0x829DC7AA
  1571. #define @PLAYER_657 0xBCE635AA
  1572. #define @PLAYER_658 0xCEA6DFAA
  1573. #define @PLAYER_659 0x20D4ADAA
  1574. #define @PLAYER_660 0x2D74FDAA
  1575. #define @PLAYER_661 0x3C1C0DAA
  1576. #define @PLAYER_662 0x12D6D4AA
  1577. #define @PLAYER_663 0x48C000AA
  1578. #define @PLAYER_664 0x2A51E2AA
  1579. #define @PLAYER_665 0xE3AC12AA
  1580. #define @PLAYER_666 0xFC42A8AA
  1581. #define @PLAYER_667 0x2FC827AA
  1582. #define @PLAYER_668 0x1A30BFAA
  1583. #define @PLAYER_669 0xB740C2AA
  1584. #define @PLAYER_670 0x42ACF5AA
  1585. #define @PLAYER_671 0x2FD9DEAA
  1586. #define @PLAYER_672 0xFAFB71AA
  1587. #define @PLAYER_673 0x05D1CDAA
  1588. #define @PLAYER_674 0xC471BDAA
  1589. #define @PLAYER_675 0x94436EAA
  1590. #define @PLAYER_676 0xC1F7ECAA
  1591. #define @PLAYER_677 0xCE79EEAA
  1592. #define @PLAYER_678 0xBD1EF2AA
  1593. #define @PLAYER_679 0x93B7E4AA
  1594. #define @PLAYER_680 0x3214AAAA
  1595. #define @PLAYER_681 0x184D3BAA
  1596. #define @PLAYER_682 0xAE4B99AA
  1597. #define @PLAYER_683 0x7E49D7AA
  1598. #define @PLAYER_684 0x4C436EAA
  1599. #define @PLAYER_685 0xFA24CCAA
  1600. #define @PLAYER_686 0xCE76BEAA
  1601. #define @PLAYER_687 0xA04E0AAA
  1602. #define @PLAYER_688 0x9F945CAA
  1603. #define @PLAYER_689 0xDCDE3DAA
  1604. #define @PLAYER_690 0x10C9C5AA
  1605. #define @PLAYER_691 0x70524DAA
  1606. #define @PLAYER_692 0x0BE472AA
  1607. #define @PLAYER_693 0x8A2CD7AA
  1608. #define @PLAYER_694 0x6152C2AA
  1609. #define @PLAYER_695 0xCF72A9AA
  1610. #define @PLAYER_696 0xE59338AA
  1611. #define @PLAYER_697 0xEEDC2DAA
  1612. #define @PLAYER_698 0xD8C762AA
  1613. #define @PLAYER_699 0xD8C762AA
  1614. #define @PLAYER_700 0xFF8C13AA
  1615. #define @PLAYER_701 0xC715FFAA
  1616. #define @PLAYER_702 0x20B2AAAA
  1617. #define @PLAYER_703 0xDC143CAA
  1618. #define @PLAYER_704 0x6495EDAA
  1619. #define @PLAYER_705 0xF0E68CAA
  1620. #define @PLAYER_706 0x778899AA
  1621. #define @PLAYER_707 0xFF1493AA
  1622. #define @PLAYER_708 0xF4A460AA
  1623. #define @PLAYER_709 0xEE82EEAA
  1624. #define @PLAYER_710 0xFFD720AA
  1625. #define @PLAYER_711 0x8B4513AA
  1626. #define @PLAYER_712 0x4949A0AA
  1627. #define @PLAYER_713 0x148B8BAA
  1628. #define @PLAYER_714 0x14FF7FAA
  1629. #define @PLAYER_715 0x556B2FAA
  1630. #define @PLAYER_716 0x0FD9FAAA
  1631. #define @PLAYER_717 0x10DC29AA
  1632. #define @PLAYER_718 0x534081AA
  1633. #define @PLAYER_719 0x0495CDAA
  1634. #define @PLAYER_720 0xEF6CE8AA
  1635. #define @PLAYER_721 0xBD34DAAA
  1636. #define @PLAYER_722 0x247C1BAA
  1637. #define @PLAYER_723 0x0C8E5DAA
  1638. #define @PLAYER_724 0x635B03AA
  1639. #define @PLAYER_725 0xCB7ED3AA
  1640. #define @PLAYER_726 0x65ADEBAA
  1641. #define @PLAYER_727 0x5C1ACCAA
  1642. #define @PLAYER_728 0xF2F853AA
  1643. #define @PLAYER_729 0x11F891AA
  1644. #define @PLAYER_730 0x7B39AAAA
  1645. #define @PLAYER_731 0x53EB10AA
  1646. #define @PLAYER_732 0x54137DAA
  1647. #define @PLAYER_733 0x275222AA
  1648. #define @PLAYER_734 0xF09F5BAA
  1649. #define @PLAYER_735 0x3D0A4FAA
  1650. #define @PLAYER_736 0x22F767AA
  1651. #define @PLAYER_737 0xD63034AA
  1652. #define @PLAYER_738 0x9A6980AA
  1653. #define @PLAYER_739 0xDFB935AA
  1654. #define @PLAYER_740 0x3793FAAA
  1655. #define @PLAYER_741 0x90239DAA
  1656. #define @PLAYER_742 0xE9AB2FAA
  1657. #define @PLAYER_743 0xAF2FF3AA
  1658. #define @PLAYER_744 0x057F94AA
  1659. #define @PLAYER_745 0xB98519AA
  1660. #define @PLAYER_746 0x388EEAAA
  1661. #define @PLAYER_747 0x028151AA
  1662. #define @PLAYER_748 0xA55043AA
  1663. #define @PLAYER_749 0x0DE018AA
  1664. #define @PLAYER_750 0x93AB1CAA
  1665. #define @PLAYER_751 0x95BAF0AA
  1666. #define @PLAYER_752 0x369976AA
  1667. #define @PLAYER_753 0x18F71FAA
  1668. #define @PLAYER_754 0x4B8987AA
  1669. #define @PLAYER_755 0x491B9EAA
  1670. #define @PLAYER_756 0x829DC7AA
  1671. #define @PLAYER_757 0xBCE635AA
  1672. #define @PLAYER_758 0xCEA6DFAA
  1673. #define @PLAYER_759 0x20D4ADAA
  1674. #define @PLAYER_760 0x2D74FDAA
  1675. #define @PLAYER_761 0x3C1C0DAA
  1676. #define @PLAYER_762 0x12D6D4AA
  1677. #define @PLAYER_763 0x48C000AA
  1678. #define @PLAYER_764 0x2A51E2AA
  1679. #define @PLAYER_765 0xE3AC12AA
  1680. #define @PLAYER_766 0xFC42A8AA
  1681. #define @PLAYER_767 0x2FC827AA
  1682. #define @PLAYER_768 0x1A30BFAA
  1683. #define @PLAYER_769 0xB740C2AA
  1684. #define @PLAYER_770 0x42ACF5AA
  1685. #define @PLAYER_771 0x2FD9DEAA
  1686. #define @PLAYER_772 0xFAFB71AA
  1687. #define @PLAYER_773 0x05D1CDAA
  1688. #define @PLAYER_774 0xC471BDAA
  1689. #define @PLAYER_775 0x94436EAA
  1690. #define @PLAYER_776 0xC1F7ECAA
  1691. #define @PLAYER_777 0xCE79EEAA
  1692. #define @PLAYER_778 0xBD1EF2AA
  1693. #define @PLAYER_779 0x93B7E4AA
  1694. #define @PLAYER_780 0x3214AAAA
  1695. #define @PLAYER_781 0x184D3BAA
  1696. #define @PLAYER_782 0xAE4B99AA
  1697. #define @PLAYER_783 0x7E49D7AA
  1698. #define @PLAYER_784 0x4C436EAA
  1699. #define @PLAYER_785 0xFA24CCAA
  1700. #define @PLAYER_786 0xCE76BEAA
  1701. #define @PLAYER_787 0xA04E0AAA
  1702. #define @PLAYER_788 0x9F945CAA
  1703. #define @PLAYER_789 0xDCDE3DAA
  1704. #define @PLAYER_790 0x10C9C5AA
  1705. #define @PLAYER_791 0x70524DAA
  1706. #define @PLAYER_792 0x0BE472AA
  1707. #define @PLAYER_793 0x8A2CD7AA
  1708. #define @PLAYER_794 0x6152C2AA
  1709. #define @PLAYER_795 0xCF72A9AA
  1710. #define @PLAYER_796 0xE59338AA
  1711. #define @PLAYER_797 0xEEDC2DAA
  1712. #define @PLAYER_798 0xD8C762AA
  1713. #define @PLAYER_799 0xD8C762AA
  1714. #define @PLAYER_800 0xFF8C13AA
  1715. #define @PLAYER_801 0xC715FFAA
  1716. #define @PLAYER_802 0x20B2AAAA
  1717. #define @PLAYER_803 0xDC143CAA
  1718. #define @PLAYER_804 0x6495EDAA
  1719. #define @PLAYER_805 0xF0E68CAA
  1720. #define @PLAYER_806 0x778899AA
  1721. #define @PLAYER_807 0xFF1493AA
  1722. #define @PLAYER_808 0xF4A460AA
  1723. #define @PLAYER_809 0xEE82EEAA
  1724. #define @PLAYER_810 0xFFD720AA
  1725. #define @PLAYER_811 0x8B4513AA
  1726. #define @PLAYER_812 0x4949A0AA
  1727. #define @PLAYER_813 0x148B8BAA
  1728. #define @PLAYER_814 0x14FF7FAA
  1729. #define @PLAYER_815 0x556B2FAA
  1730. #define @PLAYER_816 0x0FD9FAAA
  1731. #define @PLAYER_817 0x10DC29AA
  1732. #define @PLAYER_818 0x534081AA
  1733. #define @PLAYER_819 0x0495CDAA
  1734. #define @PLAYER_820 0xEF6CE8AA
  1735. #define @PLAYER_821 0xBD34DAAA
  1736. #define @PLAYER_822 0x247C1BAA
  1737. #define @PLAYER_823 0x0C8E5DAA
  1738. #define @PLAYER_824 0x635B03AA
  1739. #define @PLAYER_825 0xCB7ED3AA
  1740. #define @PLAYER_826 0x65ADEBAA
  1741. #define @PLAYER_827 0x5C1ACCAA
  1742. #define @PLAYER_828 0xF2F853AA
  1743. #define @PLAYER_829 0x11F891AA
  1744. #define @PLAYER_830 0x7B39AAAA
  1745. #define @PLAYER_831 0x53EB10AA
  1746. #define @PLAYER_832 0x54137DAA
  1747. #define @PLAYER_833 0x275222AA
  1748. #define @PLAYER_834 0xF09F5BAA
  1749. #define @PLAYER_835 0x3D0A4FAA
  1750. #define @PLAYER_836 0x22F767AA
  1751. #define @PLAYER_837 0xD63034AA
  1752. #define @PLAYER_838 0x9A6980AA
  1753. #define @PLAYER_839 0xDFB935AA
  1754. #define @PLAYER_840 0x3793FAAA
  1755. #define @PLAYER_841 0x90239DAA
  1756. #define @PLAYER_842 0xE9AB2FAA
  1757. #define @PLAYER_843 0xAF2FF3AA
  1758. #define @PLAYER_844 0x057F94AA
  1759. #define @PLAYER_845 0xB98519AA
  1760. #define @PLAYER_846 0x388EEAAA
  1761. #define @PLAYER_847 0x028151AA
  1762. #define @PLAYER_848 0xA55043AA
  1763. #define @PLAYER_849 0x0DE018AA
  1764. #define @PLAYER_850 0x93AB1CAA
  1765. #define @PLAYER_851 0x95BAF0AA
  1766. #define @PLAYER_852 0x369976AA
  1767. #define @PLAYER_853 0x18F71FAA
  1768. #define @PLAYER_854 0x4B8987AA
  1769. #define @PLAYER_855 0x491B9EAA
  1770. #define @PLAYER_856 0x829DC7AA
  1771. #define @PLAYER_857 0xBCE635AA
  1772. #define @PLAYER_858 0xCEA6DFAA
  1773. #define @PLAYER_859 0x20D4ADAA
  1774. #define @PLAYER_860 0x2D74FDAA
  1775. #define @PLAYER_861 0x3C1C0DAA
  1776. #define @PLAYER_862 0x12D6D4AA
  1777. #define @PLAYER_863 0x48C000AA
  1778. #define @PLAYER_864 0x2A51E2AA
  1779. #define @PLAYER_865 0xE3AC12AA
  1780. #define @PLAYER_866 0xFC42A8AA
  1781. #define @PLAYER_867 0x2FC827AA
  1782. #define @PLAYER_868 0x1A30BFAA
  1783. #define @PLAYER_869 0xB740C2AA
  1784. #define @PLAYER_870 0x42ACF5AA
  1785. #define @PLAYER_871 0x2FD9DEAA
  1786. #define @PLAYER_872 0xFAFB71AA
  1787. #define @PLAYER_873 0x05D1CDAA
  1788. #define @PLAYER_874 0xC471BDAA
  1789. #define @PLAYER_875 0x94436EAA
  1790. #define @PLAYER_876 0xC1F7ECAA
  1791. #define @PLAYER_877 0xCE79EEAA
  1792. #define @PLAYER_878 0xBD1EF2AA
  1793. #define @PLAYER_879 0x93B7E4AA
  1794. #define @PLAYER_880 0x3214AAAA
  1795. #define @PLAYER_881 0x184D3BAA
  1796. #define @PLAYER_882 0xAE4B99AA
  1797. #define @PLAYER_883 0x7E49D7AA
  1798. #define @PLAYER_884 0x4C436EAA
  1799. #define @PLAYER_885 0xFA24CCAA
  1800. #define @PLAYER_886 0xCE76BEAA
  1801. #define @PLAYER_887 0xA04E0AAA
  1802. #define @PLAYER_888 0x9F945CAA
  1803. #define @PLAYER_889 0xDCDE3DAA
  1804. #define @PLAYER_890 0x10C9C5AA
  1805. #define @PLAYER_891 0x70524DAA
  1806. #define @PLAYER_892 0x0BE472AA
  1807. #define @PLAYER_893 0x8A2CD7AA
  1808. #define @PLAYER_894 0x6152C2AA
  1809. #define @PLAYER_895 0xCF72A9AA
  1810. #define @PLAYER_896 0xE59338AA
  1811. #define @PLAYER_897 0xEEDC2DAA
  1812. #define @PLAYER_898 0xD8C762AA
  1813. #define @PLAYER_899 0xD8C762AA
  1814. #define @PLAYER_900 0xFF8C13AA
  1815. #define @PLAYER_901 0xC715FFAA
  1816. #define @PLAYER_902 0x20B2AAAA
  1817. #define @PLAYER_903 0xDC143CAA
  1818. #define @PLAYER_904 0x6495EDAA
  1819. #define @PLAYER_905 0xF0E68CAA
  1820. #define @PLAYER_906 0x778899AA
  1821. #define @PLAYER_907 0xFF1493AA
  1822. #define @PLAYER_908 0xF4A460AA
  1823. #define @PLAYER_909 0xEE82EEAA
  1824. #define @PLAYER_910 0xFFD720AA
  1825. #define @PLAYER_911 0x8B4513AA
  1826. #define @PLAYER_912 0x4949A0AA
  1827. #define @PLAYER_913 0x148B8BAA
  1828. #define @PLAYER_914 0x14FF7FAA
  1829. #define @PLAYER_915 0x556B2FAA
  1830. #define @PLAYER_916 0x0FD9FAAA
  1831. #define @PLAYER_917 0x10DC29AA
  1832. #define @PLAYER_918 0x534081AA
  1833. #define @PLAYER_919 0x0495CDAA
  1834. #define @PLAYER_920 0xEF6CE8AA
  1835. #define @PLAYER_921 0xBD34DAAA
  1836. #define @PLAYER_922 0x247C1BAA
  1837. #define @PLAYER_923 0x0C8E5DAA
  1838. #define @PLAYER_924 0x635B03AA
  1839. #define @PLAYER_925 0xCB7ED3AA
  1840. #define @PLAYER_926 0x65ADEBAA
  1841. #define @PLAYER_927 0x5C1ACCAA
  1842. #define @PLAYER_928 0xF2F853AA
  1843. #define @PLAYER_929 0x11F891AA
  1844. #define @PLAYER_930 0x7B39AAAA
  1845. #define @PLAYER_931 0x53EB10AA
  1846. #define @PLAYER_932 0x54137DAA
  1847. #define @PLAYER_933 0x275222AA
  1848. #define @PLAYER_934 0xF09F5BAA
  1849. #define @PLAYER_935 0x3D0A4FAA
  1850. #define @PLAYER_936 0x22F767AA
  1851. #define @PLAYER_937 0xD63034AA
  1852. #define @PLAYER_938 0x9A6980AA
  1853. #define @PLAYER_939 0xDFB935AA
  1854. #define @PLAYER_940 0x3793FAAA
  1855. #define @PLAYER_941 0x90239DAA
  1856. #define @PLAYER_942 0xE9AB2FAA
  1857. #define @PLAYER_943 0xAF2FF3AA
  1858. #define @PLAYER_944 0x057F94AA
  1859. #define @PLAYER_945 0xB98519AA
  1860. #define @PLAYER_946 0x388EEAAA
  1861. #define @PLAYER_947 0x028151AA
  1862. #define @PLAYER_948 0xA55043AA
  1863. #define @PLAYER_949 0x0DE018AA
  1864. #define @PLAYER_950 0x93AB1CAA
  1865. #define @PLAYER_951 0x95BAF0AA
  1866. #define @PLAYER_952 0x369976AA
  1867. #define @PLAYER_953 0x18F71FAA
  1868. #define @PLAYER_954 0x4B8987AA
  1869. #define @PLAYER_955 0x491B9EAA
  1870. #define @PLAYER_956 0x829DC7AA
  1871. #define @PLAYER_957 0xBCE635AA
  1872. #define @PLAYER_958 0xCEA6DFAA
  1873. #define @PLAYER_959 0x20D4ADAA
  1874. #define @PLAYER_960 0x2D74FDAA
  1875. #define @PLAYER_961 0x3C1C0DAA
  1876. #define @PLAYER_962 0x12D6D4AA
  1877. #define @PLAYER_963 0x48C000AA
  1878. #define @PLAYER_964 0x2A51E2AA
  1879. #define @PLAYER_965 0xE3AC12AA
  1880. #define @PLAYER_966 0xFC42A8AA
  1881. #define @PLAYER_967 0x2FC827AA
  1882. #define @PLAYER_968 0x1A30BFAA
  1883. #define @PLAYER_969 0xB740C2AA
  1884. #define @PLAYER_970 0x42ACF5AA
  1885. #define @PLAYER_971 0x2FD9DEAA
  1886. #define @PLAYER_972 0xFAFB71AA
  1887. #define @PLAYER_973 0x05D1CDAA
  1888. #define @PLAYER_974 0xC471BDAA
  1889. #define @PLAYER_975 0x94436EAA
  1890. #define @PLAYER_976 0xC1F7ECAA
  1891. #define @PLAYER_977 0xCE79EEAA
  1892. #define @PLAYER_978 0xBD1EF2AA
  1893. #define @PLAYER_979 0x93B7E4AA
  1894. #define @PLAYER_980 0x3214AAAA
  1895. #define @PLAYER_981 0x184D3BAA
  1896. #define @PLAYER_982 0xAE4B99AA
  1897. #define @PLAYER_983 0x7E49D7AA
  1898. #define @PLAYER_984 0x4C436EAA
  1899. #define @PLAYER_985 0xFA24CCAA
  1900. #define @PLAYER_986 0xCE76BEAA
  1901. #define @PLAYER_987 0xA04E0AAA
  1902. #define @PLAYER_988 0x9F945CAA
  1903. #define @PLAYER_989 0xDCDE3DAA
  1904. #define @PLAYER_990 0x10C9C5AA
  1905. #define @PLAYER_991 0x70524DAA
  1906. #define @PLAYER_992 0x0BE472AA
  1907. #define @PLAYER_993 0x8A2CD7AA
  1908. #define @PLAYER_994 0x6152C2AA
  1909. #define @PLAYER_995 0xCF72A9AA
  1910. #define @PLAYER_996 0xE59338AA
  1911. #define @PLAYER_997 0xEEDC2DAA
  1912. #define @PLAYER_998 0xD8C762AA
  1913. #define @PLAYER_999 0xD8C762AA
  1914. #define @PLAYER0 0xFF8C13AA
  1915. #define @PLAYER1 0xC715FFAA
  1916. #define @PLAYER2 0x20B2AAAA
  1917. #define @PLAYER3 0xDC143CAA
  1918. #define @PLAYER4 0x6495EDAA
  1919. #define @PLAYER5 0xF0E68CAA
  1920. #define @PLAYER6 0x778899AA
  1921. #define @PLAYER7 0xFF1493AA
  1922. #define @PLAYER8 0xF4A460AA
  1923. #define @PLAYER9 0xEE82EEAA
  1924. #define @PLAYER10 0xFFD720AA
  1925. #define @PLAYER11 0x8B4513AA
  1926. #define @PLAYER12 0x4949A0AA
  1927. #define @PLAYER13 0x148B8BAA
  1928. #define @PLAYER14 0x14FF7FAA
  1929. #define @PLAYER15 0x556B2FAA
  1930. #define @PLAYER16 0x0FD9FAAA
  1931. #define @PLAYER17 0x10DC29AA
  1932. #define @PLAYER18 0x534081AA
  1933. #define @PLAYER19 0x0495CDAA
  1934. #define @PLAYER20 0xEF6CE8AA
  1935. #define @PLAYER21 0xBD34DAAA
  1936. #define @PLAYER22 0x247C1BAA
  1937. #define @PLAYER23 0x0C8E5DAA
  1938. #define @PLAYER24 0x635B03AA
  1939. #define @PLAYER25 0xCB7ED3AA
  1940. #define @PLAYER26 0x65ADEBAA
  1941. #define @PLAYER27 0x5C1ACCAA
  1942. #define @PLAYER28 0xF2F853AA
  1943. #define @PLAYER29 0x11F891AA
  1944. #define @PLAYER30 0x7B39AAAA
  1945. #define @PLAYER31 0x53EB10AA
  1946. #define @PLAYER32 0x54137DAA
  1947. #define @PLAYER33 0x275222AA
  1948. #define @PLAYER34 0xF09F5BAA
  1949. #define @PLAYER35 0x3D0A4FAA
  1950. #define @PLAYER36 0x22F767AA
  1951. #define @PLAYER37 0xD63034AA
  1952. #define @PLAYER38 0x9A6980AA
  1953. #define @PLAYER39 0xDFB935AA
  1954. #define @PLAYER40 0x3793FAAA
  1955. #define @PLAYER41 0x90239DAA
  1956. #define @PLAYER42 0xE9AB2FAA
  1957. #define @PLAYER43 0xAF2FF3AA
  1958. #define @PLAYER44 0x057F94AA
  1959. #define @PLAYER45 0xB98519AA
  1960. #define @PLAYER46 0x388EEAAA
  1961. #define @PLAYER47 0x028151AA
  1962. #define @PLAYER48 0xA55043AA
  1963. #define @PLAYER49 0x0DE018AA
  1964. #define @PLAYER50 0x93AB1CAA
  1965. #define @PLAYER51 0x95BAF0AA
  1966. #define @PLAYER52 0x369976AA
  1967. #define @PLAYER53 0x18F71FAA
  1968. #define @PLAYER54 0x4B8987AA
  1969. #define @PLAYER55 0x491B9EAA
  1970. #define @PLAYER56 0x829DC7AA
  1971. #define @PLAYER57 0xBCE635AA
  1972. #define @PLAYER58 0xCEA6DFAA
  1973. #define @PLAYER59 0x20D4ADAA
  1974. #define @PLAYER60 0x2D74FDAA
  1975. #define @PLAYER61 0x3C1C0DAA
  1976. #define @PLAYER62 0x12D6D4AA
  1977. #define @PLAYER63 0x48C000AA
  1978. #define @PLAYER64 0x2A51E2AA
  1979. #define @PLAYER65 0xE3AC12AA
  1980. #define @PLAYER66 0xFC42A8AA
  1981. #define @PLAYER67 0x2FC827AA
  1982. #define @PLAYER68 0x1A30BFAA
  1983. #define @PLAYER69 0xB740C2AA
  1984. #define @PLAYER70 0x42ACF5AA
  1985. #define @PLAYER71 0x2FD9DEAA
  1986. #define @PLAYER72 0xFAFB71AA
  1987. #define @PLAYER73 0x05D1CDAA
  1988. #define @PLAYER74 0xC471BDAA
  1989. #define @PLAYER75 0x94436EAA
  1990. #define @PLAYER76 0xC1F7ECAA
  1991. #define @PLAYER77 0xCE79EEAA
  1992. #define @PLAYER78 0xBD1EF2AA
  1993. #define @PLAYER79 0x93B7E4AA
  1994. #define @PLAYER80 0x3214AAAA
  1995. #define @PLAYER81 0x184D3BAA
  1996. #define @PLAYER82 0xAE4B99AA
  1997. #define @PLAYER83 0x7E49D7AA
  1998. #define @PLAYER84 0x4C436EAA
  1999. #define @PLAYER85 0xFA24CCAA
  2000. #define @PLAYER86 0xCE76BEAA
  2001. #define @PLAYER87 0xA04E0AAA
  2002. #define @PLAYER88 0x9F945CAA
  2003. #define @PLAYER89 0xDCDE3DAA
  2004. #define @PLAYER90 0x10C9C5AA
  2005. #define @PLAYER91 0x70524DAA
  2006. #define @PLAYER92 0x0BE472AA
  2007. #define @PLAYER93 0x8A2CD7AA
  2008. #define @PLAYER94 0x6152C2AA
  2009. #define @PLAYER95 0xCF72A9AA
  2010. #define @PLAYER96 0xE59338AA
  2011. #define @PLAYER97 0xEEDC2DAA
  2012. #define @PLAYER98 0xD8C762AA
  2013. #define @PLAYER99 0xD8C762AA
  2014. #define @PLAYER000 0xFF8C13AA
  2015. #define @PLAYER001 0xC715FFAA
  2016. #define @PLAYER002 0x20B2AAAA
  2017. #define @PLAYER003 0xDC143CAA
  2018. #define @PLAYER004 0x6495EDAA
  2019. #define @PLAYER005 0xF0E68CAA
  2020. #define @PLAYER006 0x778899AA
  2021. #define @PLAYER007 0xFF1493AA
  2022. #define @PLAYER008 0xF4A460AA
  2023. #define @PLAYER009 0xEE82EEAA
  2024. #define @PLAYER010 0xFFD720AA
  2025. #define @PLAYER011 0x8B4513AA
  2026. #define @PLAYER012 0x4949A0AA
  2027. #define @PLAYER013 0x148B8BAA
  2028. #define @PLAYER014 0x14FF7FAA
  2029. #define @PLAYER015 0x556B2FAA
  2030. #define @PLAYER016 0x0FD9FAAA
  2031. #define @PLAYER017 0x10DC29AA
  2032. #define @PLAYER018 0x534081AA
  2033. #define @PLAYER019 0x0495CDAA
  2034. #define @PLAYER020 0xEF6CE8AA
  2035. #define @PLAYER021 0xBD34DAAA
  2036. #define @PLAYER022 0x247C1BAA
  2037. #define @PLAYER023 0x0C8E5DAA
  2038. #define @PLAYER024 0x635B03AA
  2039. #define @PLAYER025 0xCB7ED3AA
  2040. #define @PLAYER026 0x65ADEBAA
  2041. #define @PLAYER027 0x5C1ACCAA
  2042. #define @PLAYER028 0xF2F853AA
  2043. #define @PLAYER029 0x11F891AA
  2044. #define @PLAYER030 0x7B39AAAA
  2045. #define @PLAYER031 0x53EB10AA
  2046. #define @PLAYER032 0x54137DAA
  2047. #define @PLAYER033 0x275222AA
  2048. #define @PLAYER034 0xF09F5BAA
  2049. #define @PLAYER035 0x3D0A4FAA
  2050. #define @PLAYER036 0x22F767AA
  2051. #define @PLAYER037 0xD63034AA
  2052. #define @PLAYER038 0x9A6980AA
  2053. #define @PLAYER039 0xDFB935AA
  2054. #define @PLAYER040 0x3793FAAA
  2055. #define @PLAYER041 0x90239DAA
  2056. #define @PLAYER042 0xE9AB2FAA
  2057. #define @PLAYER043 0xAF2FF3AA
  2058. #define @PLAYER044 0x057F94AA
  2059. #define @PLAYER045 0xB98519AA
  2060. #define @PLAYER046 0x388EEAAA
  2061. #define @PLAYER047 0x028151AA
  2062. #define @PLAYER048 0xA55043AA
  2063. #define @PLAYER049 0x0DE018AA
  2064. #define @PLAYER050 0x93AB1CAA
  2065. #define @PLAYER051 0x95BAF0AA
  2066. #define @PLAYER052 0x369976AA
  2067. #define @PLAYER053 0x18F71FAA
  2068. #define @PLAYER054 0x4B8987AA
  2069. #define @PLAYER055 0x491B9EAA
  2070. #define @PLAYER056 0x829DC7AA
  2071. #define @PLAYER057 0xBCE635AA
  2072. #define @PLAYER058 0xCEA6DFAA
  2073. #define @PLAYER059 0x20D4ADAA
  2074. #define @PLAYER060 0x2D74FDAA
  2075. #define @PLAYER061 0x3C1C0DAA
  2076. #define @PLAYER062 0x12D6D4AA
  2077. #define @PLAYER063 0x48C000AA
  2078. #define @PLAYER064 0x2A51E2AA
  2079. #define @PLAYER065 0xE3AC12AA
  2080. #define @PLAYER066 0xFC42A8AA
  2081. #define @PLAYER067 0x2FC827AA
  2082. #define @PLAYER068 0x1A30BFAA
  2083. #define @PLAYER069 0xB740C2AA
  2084. #define @PLAYER070 0x42ACF5AA
  2085. #define @PLAYER071 0x2FD9DEAA
  2086. #define @PLAYER072 0xFAFB71AA
  2087. #define @PLAYER073 0x05D1CDAA
  2088. #define @PLAYER074 0xC471BDAA
  2089. #define @PLAYER075 0x94436EAA
  2090. #define @PLAYER076 0xC1F7ECAA
  2091. #define @PLAYER077 0xCE79EEAA
  2092. #define @PLAYER078 0xBD1EF2AA
  2093. #define @PLAYER079 0x93B7E4AA
  2094. #define @PLAYER080 0x3214AAAA
  2095. #define @PLAYER081 0x184D3BAA
  2096. #define @PLAYER082 0xAE4B99AA
  2097. #define @PLAYER083 0x7E49D7AA
  2098. #define @PLAYER084 0x4C436EAA
  2099. #define @PLAYER085 0xFA24CCAA
  2100. #define @PLAYER086 0xCE76BEAA
  2101. #define @PLAYER087 0xA04E0AAA
  2102. #define @PLAYER088 0x9F945CAA
  2103. #define @PLAYER089 0xDCDE3DAA
  2104. #define @PLAYER090 0x10C9C5AA
  2105. #define @PLAYER091 0x70524DAA
  2106. #define @PLAYER092 0x0BE472AA
  2107. #define @PLAYER093 0x8A2CD7AA
  2108. #define @PLAYER094 0x6152C2AA
  2109. #define @PLAYER095 0xCF72A9AA
  2110. #define @PLAYER096 0xE59338AA
  2111. #define @PLAYER097 0xEEDC2DAA
  2112. #define @PLAYER098 0xD8C762AA
  2113. #define @PLAYER099 0xD8C762AA
  2114. #define @PLAYER100 0xFF8C13AA
  2115. #define @PLAYER101 0xC715FFAA
  2116. #define @PLAYER102 0x20B2AAAA
  2117. #define @PLAYER103 0xDC143CAA
  2118. #define @PLAYER104 0x6495EDAA
  2119. #define @PLAYER105 0xF0E68CAA
  2120. #define @PLAYER106 0x778899AA
  2121. #define @PLAYER107 0xFF1493AA
  2122. #define @PLAYER108 0xF4A460AA
  2123. #define @PLAYER109 0xEE82EEAA
  2124. #define @PLAYER110 0xFFD720AA
  2125. #define @PLAYER111 0x8B4513AA
  2126. #define @PLAYER112 0x4949A0AA
  2127. #define @PLAYER113 0x148B8BAA
  2128. #define @PLAYER114 0x14FF7FAA
  2129. #define @PLAYER115 0x556B2FAA
  2130. #define @PLAYER116 0x0FD9FAAA
  2131. #define @PLAYER117 0x10DC29AA
  2132. #define @PLAYER118 0x534081AA
  2133. #define @PLAYER119 0x0495CDAA
  2134. #define @PLAYER120 0xEF6CE8AA
  2135. #define @PLAYER121 0xBD34DAAA
  2136. #define @PLAYER122 0x247C1BAA
  2137. #define @PLAYER123 0x0C8E5DAA
  2138. #define @PLAYER124 0x635B03AA
  2139. #define @PLAYER125 0xCB7ED3AA
  2140. #define @PLAYER126 0x65ADEBAA
  2141. #define @PLAYER127 0x5C1ACCAA
  2142. #define @PLAYER128 0xF2F853AA
  2143. #define @PLAYER129 0x11F891AA
  2144. #define @PLAYER130 0x7B39AAAA
  2145. #define @PLAYER131 0x53EB10AA
  2146. #define @PLAYER132 0x54137DAA
  2147. #define @PLAYER133 0x275222AA
  2148. #define @PLAYER134 0xF09F5BAA
  2149. #define @PLAYER135 0x3D0A4FAA
  2150. #define @PLAYER136 0x22F767AA
  2151. #define @PLAYER137 0xD63034AA
  2152. #define @PLAYER138 0x9A6980AA
  2153. #define @PLAYER139 0xDFB935AA
  2154. #define @PLAYER140 0x3793FAAA
  2155. #define @PLAYER141 0x90239DAA
  2156. #define @PLAYER142 0xE9AB2FAA
  2157. #define @PLAYER143 0xAF2FF3AA
  2158. #define @PLAYER144 0x057F94AA
  2159. #define @PLAYER145 0xB98519AA
  2160. #define @PLAYER146 0x388EEAAA
  2161. #define @PLAYER147 0x028151AA
  2162. #define @PLAYER148 0xA55043AA
  2163. #define @PLAYER149 0x0DE018AA
  2164. #define @PLAYER150 0x93AB1CAA
  2165. #define @PLAYER151 0x95BAF0AA
  2166. #define @PLAYER152 0x369976AA
  2167. #define @PLAYER153 0x18F71FAA
  2168. #define @PLAYER154 0x4B8987AA
  2169. #define @PLAYER155 0x491B9EAA
  2170. #define @PLAYER156 0x829DC7AA
  2171. #define @PLAYER157 0xBCE635AA
  2172. #define @PLAYER158 0xCEA6DFAA
  2173. #define @PLAYER159 0x20D4ADAA
  2174. #define @PLAYER160 0x2D74FDAA
  2175. #define @PLAYER161 0x3C1C0DAA
  2176. #define @PLAYER162 0x12D6D4AA
  2177. #define @PLAYER163 0x48C000AA
  2178. #define @PLAYER164 0x2A51E2AA
  2179. #define @PLAYER165 0xE3AC12AA
  2180. #define @PLAYER166 0xFC42A8AA
  2181. #define @PLAYER167 0x2FC827AA
  2182. #define @PLAYER168 0x1A30BFAA
  2183. #define @PLAYER169 0xB740C2AA
  2184. #define @PLAYER170 0x42ACF5AA
  2185. #define @PLAYER171 0x2FD9DEAA
  2186. #define @PLAYER172 0xFAFB71AA
  2187. #define @PLAYER173 0x05D1CDAA
  2188. #define @PLAYER174 0xC471BDAA
  2189. #define @PLAYER175 0x94436EAA
  2190. #define @PLAYER176 0xC1F7ECAA
  2191. #define @PLAYER177 0xCE79EEAA
  2192. #define @PLAYER178 0xBD1EF2AA
  2193. #define @PLAYER179 0x93B7E4AA
  2194. #define @PLAYER180 0x3214AAAA
  2195. #define @PLAYER181 0x184D3BAA
  2196. #define @PLAYER182 0xAE4B99AA
  2197. #define @PLAYER183 0x7E49D7AA
  2198. #define @PLAYER184 0x4C436EAA
  2199. #define @PLAYER185 0xFA24CCAA
  2200. #define @PLAYER186 0xCE76BEAA
  2201. #define @PLAYER187 0xA04E0AAA
  2202. #define @PLAYER188 0x9F945CAA
  2203. #define @PLAYER189 0xDCDE3DAA
  2204. #define @PLAYER190 0x10C9C5AA
  2205. #define @PLAYER191 0x70524DAA
  2206. #define @PLAYER192 0x0BE472AA
  2207. #define @PLAYER193 0x8A2CD7AA
  2208. #define @PLAYER194 0x6152C2AA
  2209. #define @PLAYER195 0xCF72A9AA
  2210. #define @PLAYER196 0xE59338AA
  2211. #define @PLAYER197 0xEEDC2DAA
  2212. #define @PLAYER198 0xD8C762AA
  2213. #define @PLAYER199 0xD8C762AA
  2214. #define @PLAYER200 0xFF8C13AA
  2215. #define @PLAYER201 0xC715FFAA
  2216. #define @PLAYER202 0x20B2AAAA
  2217. #define @PLAYER203 0xDC143CAA
  2218. #define @PLAYER204 0x6495EDAA
  2219. #define @PLAYER205 0xF0E68CAA
  2220. #define @PLAYER206 0x778899AA
  2221. #define @PLAYER207 0xFF1493AA
  2222. #define @PLAYER208 0xF4A460AA
  2223. #define @PLAYER209 0xEE82EEAA
  2224. #define @PLAYER210 0xFFD720AA
  2225. #define @PLAYER211 0x8B4513AA
  2226. #define @PLAYER212 0x4949A0AA
  2227. #define @PLAYER213 0x148B8BAA
  2228. #define @PLAYER214 0x14FF7FAA
  2229. #define @PLAYER215 0x556B2FAA
  2230. #define @PLAYER216 0x0FD9FAAA
  2231. #define @PLAYER217 0x10DC29AA
  2232. #define @PLAYER218 0x534081AA
  2233. #define @PLAYER219 0x0495CDAA
  2234. #define @PLAYER220 0xEF6CE8AA
  2235. #define @PLAYER221 0xBD34DAAA
  2236. #define @PLAYER222 0x247C1BAA
  2237. #define @PLAYER223 0x0C8E5DAA
  2238. #define @PLAYER224 0x635B03AA
  2239. #define @PLAYER225 0xCB7ED3AA
  2240. #define @PLAYER226 0x65ADEBAA
  2241. #define @PLAYER227 0x5C1ACCAA
  2242. #define @PLAYER228 0xF2F853AA
  2243. #define @PLAYER229 0x11F891AA
  2244. #define @PLAYER230 0x7B39AAAA
  2245. #define @PLAYER231 0x53EB10AA
  2246. #define @PLAYER232 0x54137DAA
  2247. #define @PLAYER233 0x275222AA
  2248. #define @PLAYER234 0xF09F5BAA
  2249. #define @PLAYER235 0x3D0A4FAA
  2250. #define @PLAYER236 0x22F767AA
  2251. #define @PLAYER237 0xD63034AA
  2252. #define @PLAYER238 0x9A6980AA
  2253. #define @PLAYER239 0xDFB935AA
  2254. #define @PLAYER240 0x3793FAAA
  2255. #define @PLAYER241 0x90239DAA
  2256. #define @PLAYER242 0xE9AB2FAA
  2257. #define @PLAYER243 0xAF2FF3AA
  2258. #define @PLAYER244 0x057F94AA
  2259. #define @PLAYER245 0xB98519AA
  2260. #define @PLAYER246 0x388EEAAA
  2261. #define @PLAYER247 0x028151AA
  2262. #define @PLAYER248 0xA55043AA
  2263. #define @PLAYER249 0x0DE018AA
  2264. #define @PLAYER250 0x93AB1CAA
  2265. #define @PLAYER251 0x95BAF0AA
  2266. #define @PLAYER252 0x369976AA
  2267. #define @PLAYER253 0x18F71FAA
  2268. #define @PLAYER254 0x4B8987AA
  2269. #define @PLAYER255 0x491B9EAA
  2270. #define @PLAYER256 0x829DC7AA
  2271. #define @PLAYER257 0xBCE635AA
  2272. #define @PLAYER258 0xCEA6DFAA
  2273. #define @PLAYER259 0x20D4ADAA
  2274. #define @PLAYER260 0x2D74FDAA
  2275. #define @PLAYER261 0x3C1C0DAA
  2276. #define @PLAYER262 0x12D6D4AA
  2277. #define @PLAYER263 0x48C000AA
  2278. #define @PLAYER264 0x2A51E2AA
  2279. #define @PLAYER265 0xE3AC12AA
  2280. #define @PLAYER266 0xFC42A8AA
  2281. #define @PLAYER267 0x2FC827AA
  2282. #define @PLAYER268 0x1A30BFAA
  2283. #define @PLAYER269 0xB740C2AA
  2284. #define @PLAYER270 0x42ACF5AA
  2285. #define @PLAYER271 0x2FD9DEAA
  2286. #define @PLAYER272 0xFAFB71AA
  2287. #define @PLAYER273 0x05D1CDAA
  2288. #define @PLAYER274 0xC471BDAA
  2289. #define @PLAYER275 0x94436EAA
  2290. #define @PLAYER276 0xC1F7ECAA
  2291. #define @PLAYER277 0xCE79EEAA
  2292. #define @PLAYER278 0xBD1EF2AA
  2293. #define @PLAYER279 0x93B7E4AA
  2294. #define @PLAYER280 0x3214AAAA
  2295. #define @PLAYER281 0x184D3BAA
  2296. #define @PLAYER282 0xAE4B99AA
  2297. #define @PLAYER283 0x7E49D7AA
  2298. #define @PLAYER284 0x4C436EAA
  2299. #define @PLAYER285 0xFA24CCAA
  2300. #define @PLAYER286 0xCE76BEAA
  2301. #define @PLAYER287 0xA04E0AAA
  2302. #define @PLAYER288 0x9F945CAA
  2303. #define @PLAYER289 0xDCDE3DAA
  2304. #define @PLAYER290 0x10C9C5AA
  2305. #define @PLAYER291 0x70524DAA
  2306. #define @PLAYER292 0x0BE472AA
  2307. #define @PLAYER293 0x8A2CD7AA
  2308. #define @PLAYER294 0x6152C2AA
  2309. #define @PLAYER295 0xCF72A9AA
  2310. #define @PLAYER296 0xE59338AA
  2311. #define @PLAYER297 0xEEDC2DAA
  2312. #define @PLAYER298 0xD8C762AA
  2313. #define @PLAYER299 0xD8C762AA
  2314. #define @PLAYER300 0xFF8C13AA
  2315. #define @PLAYER301 0xC715FFAA
  2316. #define @PLAYER302 0x20B2AAAA
  2317. #define @PLAYER303 0xDC143CAA
  2318. #define @PLAYER304 0x6495EDAA
  2319. #define @PLAYER305 0xF0E68CAA
  2320. #define @PLAYER306 0x778899AA
  2321. #define @PLAYER307 0xFF1493AA
  2322. #define @PLAYER308 0xF4A460AA
  2323. #define @PLAYER309 0xEE82EEAA
  2324. #define @PLAYER310 0xFFD720AA
  2325. #define @PLAYER311 0x8B4513AA
  2326. #define @PLAYER312 0x4949A0AA
  2327. #define @PLAYER313 0x148B8BAA
  2328. #define @PLAYER314 0x14FF7FAA
  2329. #define @PLAYER315 0x556B2FAA
  2330. #define @PLAYER316 0x0FD9FAAA
  2331. #define @PLAYER317 0x10DC29AA
  2332. #define @PLAYER318 0x534081AA
  2333. #define @PLAYER319 0x0495CDAA
  2334. #define @PLAYER320 0xEF6CE8AA
  2335. #define @PLAYER321 0xBD34DAAA
  2336. #define @PLAYER322 0x247C1BAA
  2337. #define @PLAYER323 0x0C8E5DAA
  2338. #define @PLAYER324 0x635B03AA
  2339. #define @PLAYER325 0xCB7ED3AA
  2340. #define @PLAYER326 0x65ADEBAA
  2341. #define @PLAYER327 0x5C1ACCAA
  2342. #define @PLAYER328 0xF2F853AA
  2343. #define @PLAYER329 0x11F891AA
  2344. #define @PLAYER330 0x7B39AAAA
  2345. #define @PLAYER331 0x53EB10AA
  2346. #define @PLAYER332 0x54137DAA
  2347. #define @PLAYER333 0x275222AA
  2348. #define @PLAYER334 0xF09F5BAA
  2349. #define @PLAYER335 0x3D0A4FAA
  2350. #define @PLAYER336 0x22F767AA
  2351. #define @PLAYER337 0xD63034AA
  2352. #define @PLAYER338 0x9A6980AA
  2353. #define @PLAYER339 0xDFB935AA
  2354. #define @PLAYER340 0x3793FAAA
  2355. #define @PLAYER341 0x90239DAA
  2356. #define @PLAYER342 0xE9AB2FAA
  2357. #define @PLAYER343 0xAF2FF3AA
  2358. #define @PLAYER344 0x057F94AA
  2359. #define @PLAYER345 0xB98519AA
  2360. #define @PLAYER346 0x388EEAAA
  2361. #define @PLAYER347 0x028151AA
  2362. #define @PLAYER348 0xA55043AA
  2363. #define @PLAYER349 0x0DE018AA
  2364. #define @PLAYER350 0x93AB1CAA
  2365. #define @PLAYER351 0x95BAF0AA
  2366. #define @PLAYER352 0x369976AA
  2367. #define @PLAYER353 0x18F71FAA
  2368. #define @PLAYER354 0x4B8987AA
  2369. #define @PLAYER355 0x491B9EAA
  2370. #define @PLAYER356 0x829DC7AA
  2371. #define @PLAYER357 0xBCE635AA
  2372. #define @PLAYER358 0xCEA6DFAA
  2373. #define @PLAYER359 0x20D4ADAA
  2374. #define @PLAYER360 0x2D74FDAA
  2375. #define @PLAYER361 0x3C1C0DAA
  2376. #define @PLAYER362 0x12D6D4AA
  2377. #define @PLAYER363 0x48C000AA
  2378. #define @PLAYER364 0x2A51E2AA
  2379. #define @PLAYER365 0xE3AC12AA
  2380. #define @PLAYER366 0xFC42A8AA
  2381. #define @PLAYER367 0x2FC827AA
  2382. #define @PLAYER368 0x1A30BFAA
  2383. #define @PLAYER369 0xB740C2AA
  2384. #define @PLAYER370 0x42ACF5AA
  2385. #define @PLAYER371 0x2FD9DEAA
  2386. #define @PLAYER372 0xFAFB71AA
  2387. #define @PLAYER373 0x05D1CDAA
  2388. #define @PLAYER374 0xC471BDAA
  2389. #define @PLAYER375 0x94436EAA
  2390. #define @PLAYER376 0xC1F7ECAA
  2391. #define @PLAYER377 0xCE79EEAA
  2392. #define @PLAYER378 0xBD1EF2AA
  2393. #define @PLAYER379 0x93B7E4AA
  2394. #define @PLAYER380 0x3214AAAA
  2395. #define @PLAYER381 0x184D3BAA
  2396. #define @PLAYER382 0xAE4B99AA
  2397. #define @PLAYER383 0x7E49D7AA
  2398. #define @PLAYER384 0x4C436EAA
  2399. #define @PLAYER385 0xFA24CCAA
  2400. #define @PLAYER386 0xCE76BEAA
  2401. #define @PLAYER387 0xA04E0AAA
  2402. #define @PLAYER388 0x9F945CAA
  2403. #define @PLAYER389 0xDCDE3DAA
  2404. #define @PLAYER390 0x10C9C5AA
  2405. #define @PLAYER391 0x70524DAA
  2406. #define @PLAYER392 0x0BE472AA
  2407. #define @PLAYER393 0x8A2CD7AA
  2408. #define @PLAYER394 0x6152C2AA
  2409. #define @PLAYER395 0xCF72A9AA
  2410. #define @PLAYER396 0xE59338AA
  2411. #define @PLAYER397 0xEEDC2DAA
  2412. #define @PLAYER398 0xD8C762AA
  2413. #define @PLAYER399 0xD8C762AA
  2414. #define @PLAYER400 0xFF8C13AA
  2415. #define @PLAYER401 0xC715FFAA
  2416. #define @PLAYER402 0x20B2AAAA
  2417. #define @PLAYER403 0xDC143CAA
  2418. #define @PLAYER404 0x6495EDAA
  2419. #define @PLAYER405 0xF0E68CAA
  2420. #define @PLAYER406 0x778899AA
  2421. #define @PLAYER407 0xFF1493AA
  2422. #define @PLAYER408 0xF4A460AA
  2423. #define @PLAYER409 0xEE82EEAA
  2424. #define @PLAYER410 0xFFD720AA
  2425. #define @PLAYER411 0x8B4513AA
  2426. #define @PLAYER412 0x4949A0AA
  2427. #define @PLAYER413 0x148B8BAA
  2428. #define @PLAYER414 0x14FF7FAA
  2429. #define @PLAYER415 0x556B2FAA
  2430. #define @PLAYER416 0x0FD9FAAA
  2431. #define @PLAYER417 0x10DC29AA
  2432. #define @PLAYER418 0x534081AA
  2433. #define @PLAYER419 0x0495CDAA
  2434. #define @PLAYER420 0xEF6CE8AA
  2435. #define @PLAYER421 0xBD34DAAA
  2436. #define @PLAYER422 0x247C1BAA
  2437. #define @PLAYER423 0x0C8E5DAA
  2438. #define @PLAYER424 0x635B03AA
  2439. #define @PLAYER425 0xCB7ED3AA
  2440. #define @PLAYER426 0x65ADEBAA
  2441. #define @PLAYER427 0x5C1ACCAA
  2442. #define @PLAYER428 0xF2F853AA
  2443. #define @PLAYER429 0x11F891AA
  2444. #define @PLAYER430 0x7B39AAAA
  2445. #define @PLAYER431 0x53EB10AA
  2446. #define @PLAYER432 0x54137DAA
  2447. #define @PLAYER433 0x275222AA
  2448. #define @PLAYER434 0xF09F5BAA
  2449. #define @PLAYER435 0x3D0A4FAA
  2450. #define @PLAYER436 0x22F767AA
  2451. #define @PLAYER437 0xD63034AA
  2452. #define @PLAYER438 0x9A6980AA
  2453. #define @PLAYER439 0xDFB935AA
  2454. #define @PLAYER440 0x3793FAAA
  2455. #define @PLAYER441 0x90239DAA
  2456. #define @PLAYER442 0xE9AB2FAA
  2457. #define @PLAYER443 0xAF2FF3AA
  2458. #define @PLAYER444 0x057F94AA
  2459. #define @PLAYER445 0xB98519AA
  2460. #define @PLAYER446 0x388EEAAA
  2461. #define @PLAYER447 0x028151AA
  2462. #define @PLAYER448 0xA55043AA
  2463. #define @PLAYER449 0x0DE018AA
  2464. #define @PLAYER450 0x93AB1CAA
  2465. #define @PLAYER451 0x95BAF0AA
  2466. #define @PLAYER452 0x369976AA
  2467. #define @PLAYER453 0x18F71FAA
  2468. #define @PLAYER454 0x4B8987AA
  2469. #define @PLAYER455 0x491B9EAA
  2470. #define @PLAYER456 0x829DC7AA
  2471. #define @PLAYER457 0xBCE635AA
  2472. #define @PLAYER458 0xCEA6DFAA
  2473. #define @PLAYER459 0x20D4ADAA
  2474. #define @PLAYER460 0x2D74FDAA
  2475. #define @PLAYER461 0x3C1C0DAA
  2476. #define @PLAYER462 0x12D6D4AA
  2477. #define @PLAYER463 0x48C000AA
  2478. #define @PLAYER464 0x2A51E2AA
  2479. #define @PLAYER465 0xE3AC12AA
  2480. #define @PLAYER466 0xFC42A8AA
  2481. #define @PLAYER467 0x2FC827AA
  2482. #define @PLAYER468 0x1A30BFAA
  2483. #define @PLAYER469 0xB740C2AA
  2484. #define @PLAYER470 0x42ACF5AA
  2485. #define @PLAYER471 0x2FD9DEAA
  2486. #define @PLAYER472 0xFAFB71AA
  2487. #define @PLAYER473 0x05D1CDAA
  2488. #define @PLAYER474 0xC471BDAA
  2489. #define @PLAYER475 0x94436EAA
  2490. #define @PLAYER476 0xC1F7ECAA
  2491. #define @PLAYER477 0xCE79EEAA
  2492. #define @PLAYER478 0xBD1EF2AA
  2493. #define @PLAYER479 0x93B7E4AA
  2494. #define @PLAYER480 0x3214AAAA
  2495. #define @PLAYER481 0x184D3BAA
  2496. #define @PLAYER482 0xAE4B99AA
  2497. #define @PLAYER483 0x7E49D7AA
  2498. #define @PLAYER484 0x4C436EAA
  2499. #define @PLAYER485 0xFA24CCAA
  2500. #define @PLAYER486 0xCE76BEAA
  2501. #define @PLAYER487 0xA04E0AAA
  2502. #define @PLAYER488 0x9F945CAA
  2503. #define @PLAYER489 0xDCDE3DAA
  2504. #define @PLAYER490 0x10C9C5AA
  2505. #define @PLAYER491 0x70524DAA
  2506. #define @PLAYER492 0x0BE472AA
  2507. #define @PLAYER493 0x8A2CD7AA
  2508. #define @PLAYER494 0x6152C2AA
  2509. #define @PLAYER495 0xCF72A9AA
  2510. #define @PLAYER496 0xE59338AA
  2511. #define @PLAYER497 0xEEDC2DAA
  2512. #define @PLAYER498 0xD8C762AA
  2513. #define @PLAYER499 0xD8C762AA
  2514. #define @PLAYER500 0xFF8C13AA
  2515. #define @PLAYER501 0xC715FFAA
  2516. #define @PLAYER502 0x20B2AAAA
  2517. #define @PLAYER503 0xDC143CAA
  2518. #define @PLAYER504 0x6495EDAA
  2519. #define @PLAYER505 0xF0E68CAA
  2520. #define @PLAYER506 0x778899AA
  2521. #define @PLAYER507 0xFF1493AA
  2522. #define @PLAYER508 0xF4A460AA
  2523. #define @PLAYER509 0xEE82EEAA
  2524. #define @PLAYER510 0xFFD720AA
  2525. #define @PLAYER511 0x8B4513AA
  2526. #define @PLAYER512 0x4949A0AA
  2527. #define @PLAYER513 0x148B8BAA
  2528. #define @PLAYER514 0x14FF7FAA
  2529. #define @PLAYER515 0x556B2FAA
  2530. #define @PLAYER516 0x0FD9FAAA
  2531. #define @PLAYER517 0x10DC29AA
  2532. #define @PLAYER518 0x534081AA
  2533. #define @PLAYER519 0x0495CDAA
  2534. #define @PLAYER520 0xEF6CE8AA
  2535. #define @PLAYER521 0xBD34DAAA
  2536. #define @PLAYER522 0x247C1BAA
  2537. #define @PLAYER523 0x0C8E5DAA
  2538. #define @PLAYER524 0x635B03AA
  2539. #define @PLAYER525 0xCB7ED3AA
  2540. #define @PLAYER526 0x65ADEBAA
  2541. #define @PLAYER527 0x5C1ACCAA
  2542. #define @PLAYER528 0xF2F853AA
  2543. #define @PLAYER529 0x11F891AA
  2544. #define @PLAYER530 0x7B39AAAA
  2545. #define @PLAYER531 0x53EB10AA
  2546. #define @PLAYER532 0x54137DAA
  2547. #define @PLAYER533 0x275222AA
  2548. #define @PLAYER534 0xF09F5BAA
  2549. #define @PLAYER535 0x3D0A4FAA
  2550. #define @PLAYER536 0x22F767AA
  2551. #define @PLAYER537 0xD63034AA
  2552. #define @PLAYER538 0x9A6980AA
  2553. #define @PLAYER539 0xDFB935AA
  2554. #define @PLAYER540 0x3793FAAA
  2555. #define @PLAYER541 0x90239DAA
  2556. #define @PLAYER542 0xE9AB2FAA
  2557. #define @PLAYER543 0xAF2FF3AA
  2558. #define @PLAYER544 0x057F94AA
  2559. #define @PLAYER545 0xB98519AA
  2560. #define @PLAYER546 0x388EEAAA
  2561. #define @PLAYER547 0x028151AA
  2562. #define @PLAYER548 0xA55043AA
  2563. #define @PLAYER549 0x0DE018AA
  2564. #define @PLAYER550 0x93AB1CAA
  2565. #define @PLAYER551 0x95BAF0AA
  2566. #define @PLAYER552 0x369976AA
  2567. #define @PLAYER553 0x18F71FAA
  2568. #define @PLAYER554 0x4B8987AA
  2569. #define @PLAYER555 0x491B9EAA
  2570. #define @PLAYER556 0x829DC7AA
  2571. #define @PLAYER557 0xBCE635AA
  2572. #define @PLAYER558 0xCEA6DFAA
  2573. #define @PLAYER559 0x20D4ADAA
  2574. #define @PLAYER560 0x2D74FDAA
  2575. #define @PLAYER561 0x3C1C0DAA
  2576. #define @PLAYER562 0x12D6D4AA
  2577. #define @PLAYER563 0x48C000AA
  2578. #define @PLAYER564 0x2A51E2AA
  2579. #define @PLAYER565 0xE3AC12AA
  2580. #define @PLAYER566 0xFC42A8AA
  2581. #define @PLAYER567 0x2FC827AA
  2582. #define @PLAYER568 0x1A30BFAA
  2583. #define @PLAYER569 0xB740C2AA
  2584. #define @PLAYER570 0x42ACF5AA
  2585. #define @PLAYER571 0x2FD9DEAA
  2586. #define @PLAYER572 0xFAFB71AA
  2587. #define @PLAYER573 0x05D1CDAA
  2588. #define @PLAYER574 0xC471BDAA
  2589. #define @PLAYER575 0x94436EAA
  2590. #define @PLAYER576 0xC1F7ECAA
  2591. #define @PLAYER577 0xCE79EEAA
  2592. #define @PLAYER578 0xBD1EF2AA
  2593. #define @PLAYER579 0x93B7E4AA
  2594. #define @PLAYER580 0x3214AAAA
  2595. #define @PLAYER581 0x184D3BAA
  2596. #define @PLAYER582 0xAE4B99AA
  2597. #define @PLAYER583 0x7E49D7AA
  2598. #define @PLAYER584 0x4C436EAA
  2599. #define @PLAYER585 0xFA24CCAA
  2600. #define @PLAYER586 0xCE76BEAA
  2601. #define @PLAYER587 0xA04E0AAA
  2602. #define @PLAYER588 0x9F945CAA
  2603. #define @PLAYER589 0xDCDE3DAA
  2604. #define @PLAYER590 0x10C9C5AA
  2605. #define @PLAYER591 0x70524DAA
  2606. #define @PLAYER592 0x0BE472AA
  2607. #define @PLAYER593 0x8A2CD7AA
  2608. #define @PLAYER594 0x6152C2AA
  2609. #define @PLAYER595 0xCF72A9AA
  2610. #define @PLAYER596 0xE59338AA
  2611. #define @PLAYER597 0xEEDC2DAA
  2612. #define @PLAYER598 0xD8C762AA
  2613. #define @PLAYER599 0xD8C762AA
  2614. #define @PLAYER600 0xFF8C13AA
  2615. #define @PLAYER601 0xC715FFAA
  2616. #define @PLAYER602 0x20B2AAAA
  2617. #define @PLAYER603 0xDC143CAA
  2618. #define @PLAYER604 0x6495EDAA
  2619. #define @PLAYER605 0xF0E68CAA
  2620. #define @PLAYER606 0x778899AA
  2621. #define @PLAYER607 0xFF1493AA
  2622. #define @PLAYER608 0xF4A460AA
  2623. #define @PLAYER609 0xEE82EEAA
  2624. #define @PLAYER610 0xFFD720AA
  2625. #define @PLAYER611 0x8B4513AA
  2626. #define @PLAYER612 0x4949A0AA
  2627. #define @PLAYER613 0x148B8BAA
  2628. #define @PLAYER614 0x14FF7FAA
  2629. #define @PLAYER615 0x556B2FAA
  2630. #define @PLAYER616 0x0FD9FAAA
  2631. #define @PLAYER617 0x10DC29AA
  2632. #define @PLAYER618 0x534081AA
  2633. #define @PLAYER619 0x0495CDAA
  2634. #define @PLAYER620 0xEF6CE8AA
  2635. #define @PLAYER621 0xBD34DAAA
  2636. #define @PLAYER622 0x247C1BAA
  2637. #define @PLAYER623 0x0C8E5DAA
  2638. #define @PLAYER624 0x635B03AA
  2639. #define @PLAYER625 0xCB7ED3AA
  2640. #define @PLAYER626 0x65ADEBAA
  2641. #define @PLAYER627 0x5C1ACCAA
  2642. #define @PLAYER628 0xF2F853AA
  2643. #define @PLAYER629 0x11F891AA
  2644. #define @PLAYER630 0x7B39AAAA
  2645. #define @PLAYER631 0x53EB10AA
  2646. #define @PLAYER632 0x54137DAA
  2647. #define @PLAYER633 0x275222AA
  2648. #define @PLAYER634 0xF09F5BAA
  2649. #define @PLAYER635 0x3D0A4FAA
  2650. #define @PLAYER636 0x22F767AA
  2651. #define @PLAYER637 0xD63034AA
  2652. #define @PLAYER638 0x9A6980AA
  2653. #define @PLAYER639 0xDFB935AA
  2654. #define @PLAYER640 0x3793FAAA
  2655. #define @PLAYER641 0x90239DAA
  2656. #define @PLAYER642 0xE9AB2FAA
  2657. #define @PLAYER643 0xAF2FF3AA
  2658. #define @PLAYER644 0x057F94AA
  2659. #define @PLAYER645 0xB98519AA
  2660. #define @PLAYER646 0x388EEAAA
  2661. #define @PLAYER647 0x028151AA
  2662. #define @PLAYER648 0xA55043AA
  2663. #define @PLAYER649 0x0DE018AA
  2664. #define @PLAYER650 0x93AB1CAA
  2665. #define @PLAYER651 0x95BAF0AA
  2666. #define @PLAYER652 0x369976AA
  2667. #define @PLAYER653 0x18F71FAA
  2668. #define @PLAYER654 0x4B8987AA
  2669. #define @PLAYER655 0x491B9EAA
  2670. #define @PLAYER656 0x829DC7AA
  2671. #define @PLAYER657 0xBCE635AA
  2672. #define @PLAYER658 0xCEA6DFAA
  2673. #define @PLAYER659 0x20D4ADAA
  2674. #define @PLAYER660 0x2D74FDAA
  2675. #define @PLAYER661 0x3C1C0DAA
  2676. #define @PLAYER662 0x12D6D4AA
  2677. #define @PLAYER663 0x48C000AA
  2678. #define @PLAYER664 0x2A51E2AA
  2679. #define @PLAYER665 0xE3AC12AA
  2680. #define @PLAYER666 0xFC42A8AA
  2681. #define @PLAYER667 0x2FC827AA
  2682. #define @PLAYER668 0x1A30BFAA
  2683. #define @PLAYER669 0xB740C2AA
  2684. #define @PLAYER670 0x42ACF5AA
  2685. #define @PLAYER671 0x2FD9DEAA
  2686. #define @PLAYER672 0xFAFB71AA
  2687. #define @PLAYER673 0x05D1CDAA
  2688. #define @PLAYER674 0xC471BDAA
  2689. #define @PLAYER675 0x94436EAA
  2690. #define @PLAYER676 0xC1F7ECAA
  2691. #define @PLAYER677 0xCE79EEAA
  2692. #define @PLAYER678 0xBD1EF2AA
  2693. #define @PLAYER679 0x93B7E4AA
  2694. #define @PLAYER680 0x3214AAAA
  2695. #define @PLAYER681 0x184D3BAA
  2696. #define @PLAYER682 0xAE4B99AA
  2697. #define @PLAYER683 0x7E49D7AA
  2698. #define @PLAYER684 0x4C436EAA
  2699. #define @PLAYER685 0xFA24CCAA
  2700. #define @PLAYER686 0xCE76BEAA
  2701. #define @PLAYER687 0xA04E0AAA
  2702. #define @PLAYER688 0x9F945CAA
  2703. #define @PLAYER689 0xDCDE3DAA
  2704. #define @PLAYER690 0x10C9C5AA
  2705. #define @PLAYER691 0x70524DAA
  2706. #define @PLAYER692 0x0BE472AA
  2707. #define @PLAYER693 0x8A2CD7AA
  2708. #define @PLAYER694 0x6152C2AA
  2709. #define @PLAYER695 0xCF72A9AA
  2710. #define @PLAYER696 0xE59338AA
  2711. #define @PLAYER697 0xEEDC2DAA
  2712. #define @PLAYER698 0xD8C762AA
  2713. #define @PLAYER699 0xD8C762AA
  2714. #define @PLAYER700 0xFF8C13AA
  2715. #define @PLAYER701 0xC715FFAA
  2716. #define @PLAYER702 0x20B2AAAA
  2717. #define @PLAYER703 0xDC143CAA
  2718. #define @PLAYER704 0x6495EDAA
  2719. #define @PLAYER705 0xF0E68CAA
  2720. #define @PLAYER706 0x778899AA
  2721. #define @PLAYER707 0xFF1493AA
  2722. #define @PLAYER708 0xF4A460AA
  2723. #define @PLAYER709 0xEE82EEAA
  2724. #define @PLAYER710 0xFFD720AA
  2725. #define @PLAYER711 0x8B4513AA
  2726. #define @PLAYER712 0x4949A0AA
  2727. #define @PLAYER713 0x148B8BAA
  2728. #define @PLAYER714 0x14FF7FAA
  2729. #define @PLAYER715 0x556B2FAA
  2730. #define @PLAYER716 0x0FD9FAAA
  2731. #define @PLAYER717 0x10DC29AA
  2732. #define @PLAYER718 0x534081AA
  2733. #define @PLAYER719 0x0495CDAA
  2734. #define @PLAYER720 0xEF6CE8AA
  2735. #define @PLAYER721 0xBD34DAAA
  2736. #define @PLAYER722 0x247C1BAA
  2737. #define @PLAYER723 0x0C8E5DAA
  2738. #define @PLAYER724 0x635B03AA
  2739. #define @PLAYER725 0xCB7ED3AA
  2740. #define @PLAYER726 0x65ADEBAA
  2741. #define @PLAYER727 0x5C1ACCAA
  2742. #define @PLAYER728 0xF2F853AA
  2743. #define @PLAYER729 0x11F891AA
  2744. #define @PLAYER730 0x7B39AAAA
  2745. #define @PLAYER731 0x53EB10AA
  2746. #define @PLAYER732 0x54137DAA
  2747. #define @PLAYER733 0x275222AA
  2748. #define @PLAYER734 0xF09F5BAA
  2749. #define @PLAYER735 0x3D0A4FAA
  2750. #define @PLAYER736 0x22F767AA
  2751. #define @PLAYER737 0xD63034AA
  2752. #define @PLAYER738 0x9A6980AA
  2753. #define @PLAYER739 0xDFB935AA
  2754. #define @PLAYER740 0x3793FAAA
  2755. #define @PLAYER741 0x90239DAA
  2756. #define @PLAYER742 0xE9AB2FAA
  2757. #define @PLAYER743 0xAF2FF3AA
  2758. #define @PLAYER744 0x057F94AA
  2759. #define @PLAYER745 0xB98519AA
  2760. #define @PLAYER746 0x388EEAAA
  2761. #define @PLAYER747 0x028151AA
  2762. #define @PLAYER748 0xA55043AA
  2763. #define @PLAYER749 0x0DE018AA
  2764. #define @PLAYER750 0x93AB1CAA
  2765. #define @PLAYER751 0x95BAF0AA
  2766. #define @PLAYER752 0x369976AA
  2767. #define @PLAYER753 0x18F71FAA
  2768. #define @PLAYER754 0x4B8987AA
  2769. #define @PLAYER755 0x491B9EAA
  2770. #define @PLAYER756 0x829DC7AA
  2771. #define @PLAYER757 0xBCE635AA
  2772. #define @PLAYER758 0xCEA6DFAA
  2773. #define @PLAYER759 0x20D4ADAA
  2774. #define @PLAYER760 0x2D74FDAA
  2775. #define @PLAYER761 0x3C1C0DAA
  2776. #define @PLAYER762 0x12D6D4AA
  2777. #define @PLAYER763 0x48C000AA
  2778. #define @PLAYER764 0x2A51E2AA
  2779. #define @PLAYER765 0xE3AC12AA
  2780. #define @PLAYER766 0xFC42A8AA
  2781. #define @PLAYER767 0x2FC827AA
  2782. #define @PLAYER768 0x1A30BFAA
  2783. #define @PLAYER769 0xB740C2AA
  2784. #define @PLAYER770 0x42ACF5AA
  2785. #define @PLAYER771 0x2FD9DEAA
  2786. #define @PLAYER772 0xFAFB71AA
  2787. #define @PLAYER773 0x05D1CDAA
  2788. #define @PLAYER774 0xC471BDAA
  2789. #define @PLAYER775 0x94436EAA
  2790. #define @PLAYER776 0xC1F7ECAA
  2791. #define @PLAYER777 0xCE79EEAA
  2792. #define @PLAYER778 0xBD1EF2AA
  2793. #define @PLAYER779 0x93B7E4AA
  2794. #define @PLAYER780 0x3214AAAA
  2795. #define @PLAYER781 0x184D3BAA
  2796. #define @PLAYER782 0xAE4B99AA
  2797. #define @PLAYER783 0x7E49D7AA
  2798. #define @PLAYER784 0x4C436EAA
  2799. #define @PLAYER785 0xFA24CCAA
  2800. #define @PLAYER786 0xCE76BEAA
  2801. #define @PLAYER787 0xA04E0AAA
  2802. #define @PLAYER788 0x9F945CAA
  2803. #define @PLAYER789 0xDCDE3DAA
  2804. #define @PLAYER790 0x10C9C5AA
  2805. #define @PLAYER791 0x70524DAA
  2806. #define @PLAYER792 0x0BE472AA
  2807. #define @PLAYER793 0x8A2CD7AA
  2808. #define @PLAYER794 0x6152C2AA
  2809. #define @PLAYER795 0xCF72A9AA
  2810. #define @PLAYER796 0xE59338AA
  2811. #define @PLAYER797 0xEEDC2DAA
  2812. #define @PLAYER798 0xD8C762AA
  2813. #define @PLAYER799 0xD8C762AA
  2814. #define @PLAYER800 0xFF8C13AA
  2815. #define @PLAYER801 0xC715FFAA
  2816. #define @PLAYER802 0x20B2AAAA
  2817. #define @PLAYER803 0xDC143CAA
  2818. #define @PLAYER804 0x6495EDAA
  2819. #define @PLAYER805 0xF0E68CAA
  2820. #define @PLAYER806 0x778899AA
  2821. #define @PLAYER807 0xFF1493AA
  2822. #define @PLAYER808 0xF4A460AA
  2823. #define @PLAYER809 0xEE82EEAA
  2824. #define @PLAYER810 0xFFD720AA
  2825. #define @PLAYER811 0x8B4513AA
  2826. #define @PLAYER812 0x4949A0AA
  2827. #define @PLAYER813 0x148B8BAA
  2828. #define @PLAYER814 0x14FF7FAA
  2829. #define @PLAYER815 0x556B2FAA
  2830. #define @PLAYER816 0x0FD9FAAA
  2831. #define @PLAYER817 0x10DC29AA
  2832. #define @PLAYER818 0x534081AA
  2833. #define @PLAYER819 0x0495CDAA
  2834. #define @PLAYER820 0xEF6CE8AA
  2835. #define @PLAYER821 0xBD34DAAA
  2836. #define @PLAYER822 0x247C1BAA
  2837. #define @PLAYER823 0x0C8E5DAA
  2838. #define @PLAYER824 0x635B03AA
  2839. #define @PLAYER825 0xCB7ED3AA
  2840. #define @PLAYER826 0x65ADEBAA
  2841. #define @PLAYER827 0x5C1ACCAA
  2842. #define @PLAYER828 0xF2F853AA
  2843. #define @PLAYER829 0x11F891AA
  2844. #define @PLAYER830 0x7B39AAAA
  2845. #define @PLAYER831 0x53EB10AA
  2846. #define @PLAYER832 0x54137DAA
  2847. #define @PLAYER833 0x275222AA
  2848. #define @PLAYER834 0xF09F5BAA
  2849. #define @PLAYER835 0x3D0A4FAA
  2850. #define @PLAYER836 0x22F767AA
  2851. #define @PLAYER837 0xD63034AA
  2852. #define @PLAYER838 0x9A6980AA
  2853. #define @PLAYER839 0xDFB935AA
  2854. #define @PLAYER840 0x3793FAAA
  2855. #define @PLAYER841 0x90239DAA
  2856. #define @PLAYER842 0xE9AB2FAA
  2857. #define @PLAYER843 0xAF2FF3AA
  2858. #define @PLAYER844 0x057F94AA
  2859. #define @PLAYER845 0xB98519AA
  2860. #define @PLAYER846 0x388EEAAA
  2861. #define @PLAYER847 0x028151AA
  2862. #define @PLAYER848 0xA55043AA
  2863. #define @PLAYER849 0x0DE018AA
  2864. #define @PLAYER850 0x93AB1CAA
  2865. #define @PLAYER851 0x95BAF0AA
  2866. #define @PLAYER852 0x369976AA
  2867. #define @PLAYER853 0x18F71FAA
  2868. #define @PLAYER854 0x4B8987AA
  2869. #define @PLAYER855 0x491B9EAA
  2870. #define @PLAYER856 0x829DC7AA
  2871. #define @PLAYER857 0xBCE635AA
  2872. #define @PLAYER858 0xCEA6DFAA
  2873. #define @PLAYER859 0x20D4ADAA
  2874. #define @PLAYER860 0x2D74FDAA
  2875. #define @PLAYER861 0x3C1C0DAA
  2876. #define @PLAYER862 0x12D6D4AA
  2877. #define @PLAYER863 0x48C000AA
  2878. #define @PLAYER864 0x2A51E2AA
  2879. #define @PLAYER865 0xE3AC12AA
  2880. #define @PLAYER866 0xFC42A8AA
  2881. #define @PLAYER867 0x2FC827AA
  2882. #define @PLAYER868 0x1A30BFAA
  2883. #define @PLAYER869 0xB740C2AA
  2884. #define @PLAYER870 0x42ACF5AA
  2885. #define @PLAYER871 0x2FD9DEAA
  2886. #define @PLAYER872 0xFAFB71AA
  2887. #define @PLAYER873 0x05D1CDAA
  2888. #define @PLAYER874 0xC471BDAA
  2889. #define @PLAYER875 0x94436EAA
  2890. #define @PLAYER876 0xC1F7ECAA
  2891. #define @PLAYER877 0xCE79EEAA
  2892. #define @PLAYER878 0xBD1EF2AA
  2893. #define @PLAYER879 0x93B7E4AA
  2894. #define @PLAYER880 0x3214AAAA
  2895. #define @PLAYER881 0x184D3BAA
  2896. #define @PLAYER882 0xAE4B99AA
  2897. #define @PLAYER883 0x7E49D7AA
  2898. #define @PLAYER884 0x4C436EAA
  2899. #define @PLAYER885 0xFA24CCAA
  2900. #define @PLAYER886 0xCE76BEAA
  2901. #define @PLAYER887 0xA04E0AAA
  2902. #define @PLAYER888 0x9F945CAA
  2903. #define @PLAYER889 0xDCDE3DAA
  2904. #define @PLAYER890 0x10C9C5AA
  2905. #define @PLAYER891 0x70524DAA
  2906. #define @PLAYER892 0x0BE472AA
  2907. #define @PLAYER893 0x8A2CD7AA
  2908. #define @PLAYER894 0x6152C2AA
  2909. #define @PLAYER895 0xCF72A9AA
  2910. #define @PLAYER896 0xE59338AA
  2911. #define @PLAYER897 0xEEDC2DAA
  2912. #define @PLAYER898 0xD8C762AA
  2913. #define @PLAYER899 0xD8C762AA
  2914. #define @PLAYER900 0xFF8C13AA
  2915. #define @PLAYER901 0xC715FFAA
  2916. #define @PLAYER902 0x20B2AAAA
  2917. #define @PLAYER903 0xDC143CAA
  2918. #define @PLAYER904 0x6495EDAA
  2919. #define @PLAYER905 0xF0E68CAA
  2920. #define @PLAYER906 0x778899AA
  2921. #define @PLAYER907 0xFF1493AA
  2922. #define @PLAYER908 0xF4A460AA
  2923. #define @PLAYER909 0xEE82EEAA
  2924. #define @PLAYER910 0xFFD720AA
  2925. #define @PLAYER911 0x8B4513AA
  2926. #define @PLAYER912 0x4949A0AA
  2927. #define @PLAYER913 0x148B8BAA
  2928. #define @PLAYER914 0x14FF7FAA
  2929. #define @PLAYER915 0x556B2FAA
  2930. #define @PLAYER916 0x0FD9FAAA
  2931. #define @PLAYER917 0x10DC29AA
  2932. #define @PLAYER918 0x534081AA
  2933. #define @PLAYER919 0x0495CDAA
  2934. #define @PLAYER920 0xEF6CE8AA
  2935. #define @PLAYER921 0xBD34DAAA
  2936. #define @PLAYER922 0x247C1BAA
  2937. #define @PLAYER923 0x0C8E5DAA
  2938. #define @PLAYER924 0x635B03AA
  2939. #define @PLAYER925 0xCB7ED3AA
  2940. #define @PLAYER926 0x65ADEBAA
  2941. #define @PLAYER927 0x5C1ACCAA
  2942. #define @PLAYER928 0xF2F853AA
  2943. #define @PLAYER929 0x11F891AA
  2944. #define @PLAYER930 0x7B39AAAA
  2945. #define @PLAYER931 0x53EB10AA
  2946. #define @PLAYER932 0x54137DAA
  2947. #define @PLAYER933 0x275222AA
  2948. #define @PLAYER934 0xF09F5BAA
  2949. #define @PLAYER935 0x3D0A4FAA
  2950. #define @PLAYER936 0x22F767AA
  2951. #define @PLAYER937 0xD63034AA
  2952. #define @PLAYER938 0x9A6980AA
  2953. #define @PLAYER939 0xDFB935AA
  2954. #define @PLAYER940 0x3793FAAA
  2955. #define @PLAYER941 0x90239DAA
  2956. #define @PLAYER942 0xE9AB2FAA
  2957. #define @PLAYER943 0xAF2FF3AA
  2958. #define @PLAYER944 0x057F94AA
  2959. #define @PLAYER945 0xB98519AA
  2960. #define @PLAYER946 0x388EEAAA
  2961. #define @PLAYER947 0x028151AA
  2962. #define @PLAYER948 0xA55043AA
  2963. #define @PLAYER949 0x0DE018AA
  2964. #define @PLAYER950 0x93AB1CAA
  2965. #define @PLAYER951 0x95BAF0AA
  2966. #define @PLAYER952 0x369976AA
  2967. #define @PLAYER953 0x18F71FAA
  2968. #define @PLAYER954 0x4B8987AA
  2969. #define @PLAYER955 0x491B9EAA
  2970. #define @PLAYER956 0x829DC7AA
  2971. #define @PLAYER957 0xBCE635AA
  2972. #define @PLAYER958 0xCEA6DFAA
  2973. #define @PLAYER959 0x20D4ADAA
  2974. #define @PLAYER960 0x2D74FDAA
  2975. #define @PLAYER961 0x3C1C0DAA
  2976. #define @PLAYER962 0x12D6D4AA
  2977. #define @PLAYER963 0x48C000AA
  2978. #define @PLAYER964 0x2A51E2AA
  2979. #define @PLAYER965 0xE3AC12AA
  2980. #define @PLAYER966 0xFC42A8AA
  2981. #define @PLAYER967 0x2FC827AA
  2982. #define @PLAYER968 0x1A30BFAA
  2983. #define @PLAYER969 0xB740C2AA
  2984. #define @PLAYER970 0x42ACF5AA
  2985. #define @PLAYER971 0x2FD9DEAA
  2986. #define @PLAYER972 0xFAFB71AA
  2987. #define @PLAYER973 0x05D1CDAA
  2988. #define @PLAYER974 0xC471BDAA
  2989. #define @PLAYER975 0x94436EAA
  2990. #define @PLAYER976 0xC1F7ECAA
  2991. #define @PLAYER977 0xCE79EEAA
  2992. #define @PLAYER978 0xBD1EF2AA
  2993. #define @PLAYER979 0x93B7E4AA
  2994. #define @PLAYER980 0x3214AAAA
  2995. #define @PLAYER981 0x184D3BAA
  2996. #define @PLAYER982 0xAE4B99AA
  2997. #define @PLAYER983 0x7E49D7AA
  2998. #define @PLAYER984 0x4C436EAA
  2999. #define @PLAYER985 0xFA24CCAA
  3000. #define @PLAYER986 0xCE76BEAA
  3001. #define @PLAYER987 0xA04E0AAA
  3002. #define @PLAYER988 0x9F945CAA
  3003. #define @PLAYER989 0xDCDE3DAA
  3004. #define @PLAYER990 0x10C9C5AA
  3005. #define @PLAYER991 0x70524DAA
  3006. #define @PLAYER992 0x0BE472AA
  3007. #define @PLAYER993 0x8A2CD7AA
  3008. #define @PLAYER994 0x6152C2AA
  3009. #define @PLAYER995 0xCF72A9AA
  3010. #define @PLAYER996 0xE59338AA
  3011. #define @PLAYER997 0xEEDC2DAA
  3012. #define @PLAYER998 0xD8C762AA
  3013. #define @PLAYER999 0xD8C762AA
  3014. #define _PLAYER_0 0xFF8C1300
  3015. #define _PLAYER_1 0xC715FF00
  3016. #define _PLAYER_2 0x20B2AA00
  3017. #define _PLAYER_3 0xDC143C00
  3018. #define _PLAYER_4 0x6495ED00
  3019. #define _PLAYER_5 0xF0E68C00
  3020. #define _PLAYER_6 0x77889900
  3021. #define _PLAYER_7 0xFF149300
  3022. #define _PLAYER_8 0xF4A46000
  3023. #define _PLAYER_9 0xEE82EE00
  3024. #define _PLAYER_10 0xFFD72000
  3025. #define _PLAYER_11 0x8B451300
  3026. #define _PLAYER_12 0x4949A000
  3027. #define _PLAYER_13 0x148B8B00
  3028. #define _PLAYER_14 0x14FF7F00
  3029. #define _PLAYER_15 0x556B2F00
  3030. #define _PLAYER_16 0x0FD9FA00
  3031. #define _PLAYER_17 0x10DC2900
  3032. #define _PLAYER_18 0x53408100
  3033. #define _PLAYER_19 0x0495CD00
  3034. #define _PLAYER_20 0xEF6CE800
  3035. #define _PLAYER_21 0xBD34DA00
  3036. #define _PLAYER_22 0x247C1B00
  3037. #define _PLAYER_23 0x0C8E5D00
  3038. #define _PLAYER_24 0x635B0300
  3039. #define _PLAYER_25 0xCB7ED300
  3040. #define _PLAYER_26 0x65ADEB00
  3041. #define _PLAYER_27 0x5C1ACC00
  3042. #define _PLAYER_28 0xF2F85300
  3043. #define _PLAYER_29 0x11F89100
  3044. #define _PLAYER_30 0x7B39AA00
  3045. #define _PLAYER_31 0x53EB1000
  3046. #define _PLAYER_32 0x54137D00
  3047. #define _PLAYER_33 0x27522200
  3048. #define _PLAYER_34 0xF09F5B00
  3049. #define _PLAYER_35 0x3D0A4F00
  3050. #define _PLAYER_36 0x22F76700
  3051. #define _PLAYER_37 0xD6303400
  3052. #define _PLAYER_38 0x9A698000
  3053. #define _PLAYER_39 0xDFB93500
  3054. #define _PLAYER_40 0x3793FA00
  3055. #define _PLAYER_41 0x90239D00
  3056. #define _PLAYER_42 0xE9AB2F00
  3057. #define _PLAYER_43 0xAF2FF300
  3058. #define _PLAYER_44 0x057F9400
  3059. #define _PLAYER_45 0xB9851900
  3060. #define _PLAYER_46 0x388EEA00
  3061. #define _PLAYER_47 0x02815100
  3062. #define _PLAYER_48 0xA5504300
  3063. #define _PLAYER_49 0x0DE01800
  3064. #define _PLAYER_50 0x93AB1C00
  3065. #define _PLAYER_51 0x95BAF000
  3066. #define _PLAYER_52 0x36997600
  3067. #define _PLAYER_53 0x18F71F00
  3068. #define _PLAYER_54 0x4B898700
  3069. #define _PLAYER_55 0x491B9E00
  3070. #define _PLAYER_56 0x829DC700
  3071. #define _PLAYER_57 0xBCE63500
  3072. #define _PLAYER_58 0xCEA6DF00
  3073. #define _PLAYER_59 0x20D4AD00
  3074. #define _PLAYER_60 0x2D74FD00
  3075. #define _PLAYER_61 0x3C1C0D00
  3076. #define _PLAYER_62 0x12D6D400
  3077. #define _PLAYER_63 0x48C00000
  3078. #define _PLAYER_64 0x2A51E200
  3079. #define _PLAYER_65 0xE3AC1200
  3080. #define _PLAYER_66 0xFC42A800
  3081. #define _PLAYER_67 0x2FC82700
  3082. #define _PLAYER_68 0x1A30BF00
  3083. #define _PLAYER_69 0xB740C200
  3084. #define _PLAYER_70 0x42ACF500
  3085. #define _PLAYER_71 0x2FD9DE00
  3086. #define _PLAYER_72 0xFAFB7100
  3087. #define _PLAYER_73 0x05D1CD00
  3088. #define _PLAYER_74 0xC471BD00
  3089. #define _PLAYER_75 0x94436E00
  3090. #define _PLAYER_76 0xC1F7EC00
  3091. #define _PLAYER_77 0xCE79EE00
  3092. #define _PLAYER_78 0xBD1EF200
  3093. #define _PLAYER_79 0x93B7E400
  3094. #define _PLAYER_80 0x3214AA00
  3095. #define _PLAYER_81 0x184D3B00
  3096. #define _PLAYER_82 0xAE4B9900
  3097. #define _PLAYER_83 0x7E49D700
  3098. #define _PLAYER_84 0x4C436E00
  3099. #define _PLAYER_85 0xFA24CC00
  3100. #define _PLAYER_86 0xCE76BE00
  3101. #define _PLAYER_87 0xA04E0A00
  3102. #define _PLAYER_88 0x9F945C00
  3103. #define _PLAYER_89 0xDCDE3D00
  3104. #define _PLAYER_90 0x10C9C500
  3105. #define _PLAYER_91 0x70524D00
  3106. #define _PLAYER_92 0x0BE47200
  3107. #define _PLAYER_93 0x8A2CD700
  3108. #define _PLAYER_94 0x6152C200
  3109. #define _PLAYER_95 0xCF72A900
  3110. #define _PLAYER_96 0xE5933800
  3111. #define _PLAYER_97 0xEEDC2D00
  3112. #define _PLAYER_98 0xD8C76200
  3113. #define _PLAYER_99 0xD8C76200
  3114. #define _PLAYER_000 0xFF8C1300
  3115. #define _PLAYER_001 0xC715FF00
  3116. #define _PLAYER_002 0x20B2AA00
  3117. #define _PLAYER_003 0xDC143C00
  3118. #define _PLAYER_004 0x6495ED00
  3119. #define _PLAYER_005 0xF0E68C00
  3120. #define _PLAYER_006 0x77889900
  3121. #define _PLAYER_007 0xFF149300
  3122. #define _PLAYER_008 0xF4A46000
  3123. #define _PLAYER_009 0xEE82EE00
  3124. #define _PLAYER_010 0xFFD72000
  3125. #define _PLAYER_011 0x8B451300
  3126. #define _PLAYER_012 0x4949A000
  3127. #define _PLAYER_013 0x148B8B00
  3128. #define _PLAYER_014 0x14FF7F00
  3129. #define _PLAYER_015 0x556B2F00
  3130. #define _PLAYER_016 0x0FD9FA00
  3131. #define _PLAYER_017 0x10DC2900
  3132. #define _PLAYER_018 0x53408100
  3133. #define _PLAYER_019 0x0495CD00
  3134. #define _PLAYER_020 0xEF6CE800
  3135. #define _PLAYER_021 0xBD34DA00
  3136. #define _PLAYER_022 0x247C1B00
  3137. #define _PLAYER_023 0x0C8E5D00
  3138. #define _PLAYER_024 0x635B0300
  3139. #define _PLAYER_025 0xCB7ED300
  3140. #define _PLAYER_026 0x65ADEB00
  3141. #define _PLAYER_027 0x5C1ACC00
  3142. #define _PLAYER_028 0xF2F85300
  3143. #define _PLAYER_029 0x11F89100
  3144. #define _PLAYER_030 0x7B39AA00
  3145. #define _PLAYER_031 0x53EB1000
  3146. #define _PLAYER_032 0x54137D00
  3147. #define _PLAYER_033 0x27522200
  3148. #define _PLAYER_034 0xF09F5B00
  3149. #define _PLAYER_035 0x3D0A4F00
  3150. #define _PLAYER_036 0x22F76700
  3151. #define _PLAYER_037 0xD6303400
  3152. #define _PLAYER_038 0x9A698000
  3153. #define _PLAYER_039 0xDFB93500
  3154. #define _PLAYER_040 0x3793FA00
  3155. #define _PLAYER_041 0x90239D00
  3156. #define _PLAYER_042 0xE9AB2F00
  3157. #define _PLAYER_043 0xAF2FF300
  3158. #define _PLAYER_044 0x057F9400
  3159. #define _PLAYER_045 0xB9851900
  3160. #define _PLAYER_046 0x388EEA00
  3161. #define _PLAYER_047 0x02815100
  3162. #define _PLAYER_048 0xA5504300
  3163. #define _PLAYER_049 0x0DE01800
  3164. #define _PLAYER_050 0x93AB1C00
  3165. #define _PLAYER_051 0x95BAF000
  3166. #define _PLAYER_052 0x36997600
  3167. #define _PLAYER_053 0x18F71F00
  3168. #define _PLAYER_054 0x4B898700
  3169. #define _PLAYER_055 0x491B9E00
  3170. #define _PLAYER_056 0x829DC700
  3171. #define _PLAYER_057 0xBCE63500
  3172. #define _PLAYER_058 0xCEA6DF00
  3173. #define _PLAYER_059 0x20D4AD00
  3174. #define _PLAYER_060 0x2D74FD00
  3175. #define _PLAYER_061 0x3C1C0D00
  3176. #define _PLAYER_062 0x12D6D400
  3177. #define _PLAYER_063 0x48C00000
  3178. #define _PLAYER_064 0x2A51E200
  3179. #define _PLAYER_065 0xE3AC1200
  3180. #define _PLAYER_066 0xFC42A800
  3181. #define _PLAYER_067 0x2FC82700
  3182. #define _PLAYER_068 0x1A30BF00
  3183. #define _PLAYER_069 0xB740C200
  3184. #define _PLAYER_070 0x42ACF500
  3185. #define _PLAYER_071 0x2FD9DE00
  3186. #define _PLAYER_072 0xFAFB7100
  3187. #define _PLAYER_073 0x05D1CD00
  3188. #define _PLAYER_074 0xC471BD00
  3189. #define _PLAYER_075 0x94436E00
  3190. #define _PLAYER_076 0xC1F7EC00
  3191. #define _PLAYER_077 0xCE79EE00
  3192. #define _PLAYER_078 0xBD1EF200
  3193. #define _PLAYER_079 0x93B7E400
  3194. #define _PLAYER_080 0x3214AA00
  3195. #define _PLAYER_081 0x184D3B00
  3196. #define _PLAYER_082 0xAE4B9900
  3197. #define _PLAYER_083 0x7E49D700
  3198. #define _PLAYER_084 0x4C436E00
  3199. #define _PLAYER_085 0xFA24CC00
  3200. #define _PLAYER_086 0xCE76BE00
  3201. #define _PLAYER_087 0xA04E0A00
  3202. #define _PLAYER_088 0x9F945C00
  3203. #define _PLAYER_089 0xDCDE3D00
  3204. #define _PLAYER_090 0x10C9C500
  3205. #define _PLAYER_091 0x70524D00
  3206. #define _PLAYER_092 0x0BE47200
  3207. #define _PLAYER_093 0x8A2CD700
  3208. #define _PLAYER_094 0x6152C200
  3209. #define _PLAYER_095 0xCF72A900
  3210. #define _PLAYER_096 0xE5933800
  3211. #define _PLAYER_097 0xEEDC2D00
  3212. #define _PLAYER_098 0xD8C76200
  3213. #define _PLAYER_099 0xD8C76200
  3214. #define _PLAYER_100 0xFF8C1300
  3215. #define _PLAYER_101 0xC715FF00
  3216. #define _PLAYER_102 0x20B2AA00
  3217. #define _PLAYER_103 0xDC143C00
  3218. #define _PLAYER_104 0x6495ED00
  3219. #define _PLAYER_105 0xF0E68C00
  3220. #define _PLAYER_106 0x77889900
  3221. #define _PLAYER_107 0xFF149300
  3222. #define _PLAYER_108 0xF4A46000
  3223. #define _PLAYER_109 0xEE82EE00
  3224. #define _PLAYER_110 0xFFD72000
  3225. #define _PLAYER_111 0x8B451300
  3226. #define _PLAYER_112 0x4949A000
  3227. #define _PLAYER_113 0x148B8B00
  3228. #define _PLAYER_114 0x14FF7F00
  3229. #define _PLAYER_115 0x556B2F00
  3230. #define _PLAYER_116 0x0FD9FA00
  3231. #define _PLAYER_117 0x10DC2900
  3232. #define _PLAYER_118 0x53408100
  3233. #define _PLAYER_119 0x0495CD00
  3234. #define _PLAYER_120 0xEF6CE800
  3235. #define _PLAYER_121 0xBD34DA00
  3236. #define _PLAYER_122 0x247C1B00
  3237. #define _PLAYER_123 0x0C8E5D00
  3238. #define _PLAYER_124 0x635B0300
  3239. #define _PLAYER_125 0xCB7ED300
  3240. #define _PLAYER_126 0x65ADEB00
  3241. #define _PLAYER_127 0x5C1ACC00
  3242. #define _PLAYER_128 0xF2F85300
  3243. #define _PLAYER_129 0x11F89100
  3244. #define _PLAYER_130 0x7B39AA00
  3245. #define _PLAYER_131 0x53EB1000
  3246. #define _PLAYER_132 0x54137D00
  3247. #define _PLAYER_133 0x27522200
  3248. #define _PLAYER_134 0xF09F5B00
  3249. #define _PLAYER_135 0x3D0A4F00
  3250. #define _PLAYER_136 0x22F76700
  3251. #define _PLAYER_137 0xD6303400
  3252. #define _PLAYER_138 0x9A698000
  3253. #define _PLAYER_139 0xDFB93500
  3254. #define _PLAYER_140 0x3793FA00
  3255. #define _PLAYER_141 0x90239D00
  3256. #define _PLAYER_142 0xE9AB2F00
  3257. #define _PLAYER_143 0xAF2FF300
  3258. #define _PLAYER_144 0x057F9400
  3259. #define _PLAYER_145 0xB9851900
  3260. #define _PLAYER_146 0x388EEA00
  3261. #define _PLAYER_147 0x02815100
  3262. #define _PLAYER_148 0xA5504300
  3263. #define _PLAYER_149 0x0DE01800
  3264. #define _PLAYER_150 0x93AB1C00
  3265. #define _PLAYER_151 0x95BAF000
  3266. #define _PLAYER_152 0x36997600
  3267. #define _PLAYER_153 0x18F71F00
  3268. #define _PLAYER_154 0x4B898700
  3269. #define _PLAYER_155 0x491B9E00
  3270. #define _PLAYER_156 0x829DC700
  3271. #define _PLAYER_157 0xBCE63500
  3272. #define _PLAYER_158 0xCEA6DF00
  3273. #define _PLAYER_159 0x20D4AD00
  3274. #define _PLAYER_160 0x2D74FD00
  3275. #define _PLAYER_161 0x3C1C0D00
  3276. #define _PLAYER_162 0x12D6D400
  3277. #define _PLAYER_163 0x48C00000
  3278. #define _PLAYER_164 0x2A51E200
  3279. #define _PLAYER_165 0xE3AC1200
  3280. #define _PLAYER_166 0xFC42A800
  3281. #define _PLAYER_167 0x2FC82700
  3282. #define _PLAYER_168 0x1A30BF00
  3283. #define _PLAYER_169 0xB740C200
  3284. #define _PLAYER_170 0x42ACF500
  3285. #define _PLAYER_171 0x2FD9DE00
  3286. #define _PLAYER_172 0xFAFB7100
  3287. #define _PLAYER_173 0x05D1CD00
  3288. #define _PLAYER_174 0xC471BD00
  3289. #define _PLAYER_175 0x94436E00
  3290. #define _PLAYER_176 0xC1F7EC00
  3291. #define _PLAYER_177 0xCE79EE00
  3292. #define _PLAYER_178 0xBD1EF200
  3293. #define _PLAYER_179 0x93B7E400
  3294. #define _PLAYER_180 0x3214AA00
  3295. #define _PLAYER_181 0x184D3B00
  3296. #define _PLAYER_182 0xAE4B9900
  3297. #define _PLAYER_183 0x7E49D700
  3298. #define _PLAYER_184 0x4C436E00
  3299. #define _PLAYER_185 0xFA24CC00
  3300. #define _PLAYER_186 0xCE76BE00
  3301. #define _PLAYER_187 0xA04E0A00
  3302. #define _PLAYER_188 0x9F945C00
  3303. #define _PLAYER_189 0xDCDE3D00
  3304. #define _PLAYER_190 0x10C9C500
  3305. #define _PLAYER_191 0x70524D00
  3306. #define _PLAYER_192 0x0BE47200
  3307. #define _PLAYER_193 0x8A2CD700
  3308. #define _PLAYER_194 0x6152C200
  3309. #define _PLAYER_195 0xCF72A900
  3310. #define _PLAYER_196 0xE5933800
  3311. #define _PLAYER_197 0xEEDC2D00
  3312. #define _PLAYER_198 0xD8C76200
  3313. #define _PLAYER_199 0xD8C76200
  3314. #define _PLAYER_200 0xFF8C1300
  3315. #define _PLAYER_201 0xC715FF00
  3316. #define _PLAYER_202 0x20B2AA00
  3317. #define _PLAYER_203 0xDC143C00
  3318. #define _PLAYER_204 0x6495ED00
  3319. #define _PLAYER_205 0xF0E68C00
  3320. #define _PLAYER_206 0x77889900
  3321. #define _PLAYER_207 0xFF149300
  3322. #define _PLAYER_208 0xF4A46000
  3323. #define _PLAYER_209 0xEE82EE00
  3324. #define _PLAYER_210 0xFFD72000
  3325. #define _PLAYER_211 0x8B451300
  3326. #define _PLAYER_212 0x4949A000
  3327. #define _PLAYER_213 0x148B8B00
  3328. #define _PLAYER_214 0x14FF7F00
  3329. #define _PLAYER_215 0x556B2F00
  3330. #define _PLAYER_216 0x0FD9FA00
  3331. #define _PLAYER_217 0x10DC2900
  3332. #define _PLAYER_218 0x53408100
  3333. #define _PLAYER_219 0x0495CD00
  3334. #define _PLAYER_220 0xEF6CE800
  3335. #define _PLAYER_221 0xBD34DA00
  3336. #define _PLAYER_222 0x247C1B00
  3337. #define _PLAYER_223 0x0C8E5D00
  3338. #define _PLAYER_224 0x635B0300
  3339. #define _PLAYER_225 0xCB7ED300
  3340. #define _PLAYER_226 0x65ADEB00
  3341. #define _PLAYER_227 0x5C1ACC00
  3342. #define _PLAYER_228 0xF2F85300
  3343. #define _PLAYER_229 0x11F89100
  3344. #define _PLAYER_230 0x7B39AA00
  3345. #define _PLAYER_231 0x53EB1000
  3346. #define _PLAYER_232 0x54137D00
  3347. #define _PLAYER_233 0x27522200
  3348. #define _PLAYER_234 0xF09F5B00
  3349. #define _PLAYER_235 0x3D0A4F00
  3350. #define _PLAYER_236 0x22F76700
  3351. #define _PLAYER_237 0xD6303400
  3352. #define _PLAYER_238 0x9A698000
  3353. #define _PLAYER_239 0xDFB93500
  3354. #define _PLAYER_240 0x3793FA00
  3355. #define _PLAYER_241 0x90239D00
  3356. #define _PLAYER_242 0xE9AB2F00
  3357. #define _PLAYER_243 0xAF2FF300
  3358. #define _PLAYER_244 0x057F9400
  3359. #define _PLAYER_245 0xB9851900
  3360. #define _PLAYER_246 0x388EEA00
  3361. #define _PLAYER_247 0x02815100
  3362. #define _PLAYER_248 0xA5504300
  3363. #define _PLAYER_249 0x0DE01800
  3364. #define _PLAYER_250 0x93AB1C00
  3365. #define _PLAYER_251 0x95BAF000
  3366. #define _PLAYER_252 0x36997600
  3367. #define _PLAYER_253 0x18F71F00
  3368. #define _PLAYER_254 0x4B898700
  3369. #define _PLAYER_255 0x491B9E00
  3370. #define _PLAYER_256 0x829DC700
  3371. #define _PLAYER_257 0xBCE63500
  3372. #define _PLAYER_258 0xCEA6DF00
  3373. #define _PLAYER_259 0x20D4AD00
  3374. #define _PLAYER_260 0x2D74FD00
  3375. #define _PLAYER_261 0x3C1C0D00
  3376. #define _PLAYER_262 0x12D6D400
  3377. #define _PLAYER_263 0x48C00000
  3378. #define _PLAYER_264 0x2A51E200
  3379. #define _PLAYER_265 0xE3AC1200
  3380. #define _PLAYER_266 0xFC42A800
  3381. #define _PLAYER_267 0x2FC82700
  3382. #define _PLAYER_268 0x1A30BF00
  3383. #define _PLAYER_269 0xB740C200
  3384. #define _PLAYER_270 0x42ACF500
  3385. #define _PLAYER_271 0x2FD9DE00
  3386. #define _PLAYER_272 0xFAFB7100
  3387. #define _PLAYER_273 0x05D1CD00
  3388. #define _PLAYER_274 0xC471BD00
  3389. #define _PLAYER_275 0x94436E00
  3390. #define _PLAYER_276 0xC1F7EC00
  3391. #define _PLAYER_277 0xCE79EE00
  3392. #define _PLAYER_278 0xBD1EF200
  3393. #define _PLAYER_279 0x93B7E400
  3394. #define _PLAYER_280 0x3214AA00
  3395. #define _PLAYER_281 0x184D3B00
  3396. #define _PLAYER_282 0xAE4B9900
  3397. #define _PLAYER_283 0x7E49D700
  3398. #define _PLAYER_284 0x4C436E00
  3399. #define _PLAYER_285 0xFA24CC00
  3400. #define _PLAYER_286 0xCE76BE00
  3401. #define _PLAYER_287 0xA04E0A00
  3402. #define _PLAYER_288 0x9F945C00
  3403. #define _PLAYER_289 0xDCDE3D00
  3404. #define _PLAYER_290 0x10C9C500
  3405. #define _PLAYER_291 0x70524D00
  3406. #define _PLAYER_292 0x0BE47200
  3407. #define _PLAYER_293 0x8A2CD700
  3408. #define _PLAYER_294 0x6152C200
  3409. #define _PLAYER_295 0xCF72A900
  3410. #define _PLAYER_296 0xE5933800
  3411. #define _PLAYER_297 0xEEDC2D00
  3412. #define _PLAYER_298 0xD8C76200
  3413. #define _PLAYER_299 0xD8C76200
  3414. #define _PLAYER_300 0xFF8C1300
  3415. #define _PLAYER_301 0xC715FF00
  3416. #define _PLAYER_302 0x20B2AA00
  3417. #define _PLAYER_303 0xDC143C00
  3418. #define _PLAYER_304 0x6495ED00
  3419. #define _PLAYER_305 0xF0E68C00
  3420. #define _PLAYER_306 0x77889900
  3421. #define _PLAYER_307 0xFF149300
  3422. #define _PLAYER_308 0xF4A46000
  3423. #define _PLAYER_309 0xEE82EE00
  3424. #define _PLAYER_310 0xFFD72000
  3425. #define _PLAYER_311 0x8B451300
  3426. #define _PLAYER_312 0x4949A000
  3427. #define _PLAYER_313 0x148B8B00
  3428. #define _PLAYER_314 0x14FF7F00
  3429. #define _PLAYER_315 0x556B2F00
  3430. #define _PLAYER_316 0x0FD9FA00
  3431. #define _PLAYER_317 0x10DC2900
  3432. #define _PLAYER_318 0x53408100
  3433. #define _PLAYER_319 0x0495CD00
  3434. #define _PLAYER_320 0xEF6CE800
  3435. #define _PLAYER_321 0xBD34DA00
  3436. #define _PLAYER_322 0x247C1B00
  3437. #define _PLAYER_323 0x0C8E5D00
  3438. #define _PLAYER_324 0x635B0300
  3439. #define _PLAYER_325 0xCB7ED300
  3440. #define _PLAYER_326 0x65ADEB00
  3441. #define _PLAYER_327 0x5C1ACC00
  3442. #define _PLAYER_328 0xF2F85300
  3443. #define _PLAYER_329 0x11F89100
  3444. #define _PLAYER_330 0x7B39AA00
  3445. #define _PLAYER_331 0x53EB1000
  3446. #define _PLAYER_332 0x54137D00
  3447. #define _PLAYER_333 0x27522200
  3448. #define _PLAYER_334 0xF09F5B00
  3449. #define _PLAYER_335 0x3D0A4F00
  3450. #define _PLAYER_336 0x22F76700
  3451. #define _PLAYER_337 0xD6303400
  3452. #define _PLAYER_338 0x9A698000
  3453. #define _PLAYER_339 0xDFB93500
  3454. #define _PLAYER_340 0x3793FA00
  3455. #define _PLAYER_341 0x90239D00
  3456. #define _PLAYER_342 0xE9AB2F00
  3457. #define _PLAYER_343 0xAF2FF300
  3458. #define _PLAYER_344 0x057F9400
  3459. #define _PLAYER_345 0xB9851900
  3460. #define _PLAYER_346 0x388EEA00
  3461. #define _PLAYER_347 0x02815100
  3462. #define _PLAYER_348 0xA5504300
  3463. #define _PLAYER_349 0x0DE01800
  3464. #define _PLAYER_350 0x93AB1C00
  3465. #define _PLAYER_351 0x95BAF000
  3466. #define _PLAYER_352 0x36997600
  3467. #define _PLAYER_353 0x18F71F00
  3468. #define _PLAYER_354 0x4B898700
  3469. #define _PLAYER_355 0x491B9E00
  3470. #define _PLAYER_356 0x829DC700
  3471. #define _PLAYER_357 0xBCE63500
  3472. #define _PLAYER_358 0xCEA6DF00
  3473. #define _PLAYER_359 0x20D4AD00
  3474. #define _PLAYER_360 0x2D74FD00
  3475. #define _PLAYER_361 0x3C1C0D00
  3476. #define _PLAYER_362 0x12D6D400
  3477. #define _PLAYER_363 0x48C00000
  3478. #define _PLAYER_364 0x2A51E200
  3479. #define _PLAYER_365 0xE3AC1200
  3480. #define _PLAYER_366 0xFC42A800
  3481. #define _PLAYER_367 0x2FC82700
  3482. #define _PLAYER_368 0x1A30BF00
  3483. #define _PLAYER_369 0xB740C200
  3484. #define _PLAYER_370 0x42ACF500
  3485. #define _PLAYER_371 0x2FD9DE00
  3486. #define _PLAYER_372 0xFAFB7100
  3487. #define _PLAYER_373 0x05D1CD00
  3488. #define _PLAYER_374 0xC471BD00
  3489. #define _PLAYER_375 0x94436E00
  3490. #define _PLAYER_376 0xC1F7EC00
  3491. #define _PLAYER_377 0xCE79EE00
  3492. #define _PLAYER_378 0xBD1EF200
  3493. #define _PLAYER_379 0x93B7E400
  3494. #define _PLAYER_380 0x3214AA00
  3495. #define _PLAYER_381 0x184D3B00
  3496. #define _PLAYER_382 0xAE4B9900
  3497. #define _PLAYER_383 0x7E49D700
  3498. #define _PLAYER_384 0x4C436E00
  3499. #define _PLAYER_385 0xFA24CC00
  3500. #define _PLAYER_386 0xCE76BE00
  3501. #define _PLAYER_387 0xA04E0A00
  3502. #define _PLAYER_388 0x9F945C00
  3503. #define _PLAYER_389 0xDCDE3D00
  3504. #define _PLAYER_390 0x10C9C500
  3505. #define _PLAYER_391 0x70524D00
  3506. #define _PLAYER_392 0x0BE47200
  3507. #define _PLAYER_393 0x8A2CD700
  3508. #define _PLAYER_394 0x6152C200
  3509. #define _PLAYER_395 0xCF72A900
  3510. #define _PLAYER_396 0xE5933800
  3511. #define _PLAYER_397 0xEEDC2D00
  3512. #define _PLAYER_398 0xD8C76200
  3513. #define _PLAYER_399 0xD8C76200
  3514. #define _PLAYER_400 0xFF8C1300
  3515. #define _PLAYER_401 0xC715FF00
  3516. #define _PLAYER_402 0x20B2AA00
  3517. #define _PLAYER_403 0xDC143C00
  3518. #define _PLAYER_404 0x6495ED00
  3519. #define _PLAYER_405 0xF0E68C00
  3520. #define _PLAYER_406 0x77889900
  3521. #define _PLAYER_407 0xFF149300
  3522. #define _PLAYER_408 0xF4A46000
  3523. #define _PLAYER_409 0xEE82EE00
  3524. #define _PLAYER_410 0xFFD72000
  3525. #define _PLAYER_411 0x8B451300
  3526. #define _PLAYER_412 0x4949A000
  3527. #define _PLAYER_413 0x148B8B00
  3528. #define _PLAYER_414 0x14FF7F00
  3529. #define _PLAYER_415 0x556B2F00
  3530. #define _PLAYER_416 0x0FD9FA00
  3531. #define _PLAYER_417 0x10DC2900
  3532. #define _PLAYER_418 0x53408100
  3533. #define _PLAYER_419 0x0495CD00
  3534. #define _PLAYER_420 0xEF6CE800
  3535. #define _PLAYER_421 0xBD34DA00
  3536. #define _PLAYER_422 0x247C1B00
  3537. #define _PLAYER_423 0x0C8E5D00
  3538. #define _PLAYER_424 0x635B0300
  3539. #define _PLAYER_425 0xCB7ED300
  3540. #define _PLAYER_426 0x65ADEB00
  3541. #define _PLAYER_427 0x5C1ACC00
  3542. #define _PLAYER_428 0xF2F85300
  3543. #define _PLAYER_429 0x11F89100
  3544. #define _PLAYER_430 0x7B39AA00
  3545. #define _PLAYER_431 0x53EB1000
  3546. #define _PLAYER_432 0x54137D00
  3547. #define _PLAYER_433 0x27522200
  3548. #define _PLAYER_434 0xF09F5B00
  3549. #define _PLAYER_435 0x3D0A4F00
  3550. #define _PLAYER_436 0x22F76700
  3551. #define _PLAYER_437 0xD6303400
  3552. #define _PLAYER_438 0x9A698000
  3553. #define _PLAYER_439 0xDFB93500
  3554. #define _PLAYER_440 0x3793FA00
  3555. #define _PLAYER_441 0x90239D00
  3556. #define _PLAYER_442 0xE9AB2F00
  3557. #define _PLAYER_443 0xAF2FF300
  3558. #define _PLAYER_444 0x057F9400
  3559. #define _PLAYER_445 0xB9851900
  3560. #define _PLAYER_446 0x388EEA00
  3561. #define _PLAYER_447 0x02815100
  3562. #define _PLAYER_448 0xA5504300
  3563. #define _PLAYER_449 0x0DE01800
  3564. #define _PLAYER_450 0x93AB1C00
  3565. #define _PLAYER_451 0x95BAF000
  3566. #define _PLAYER_452 0x36997600
  3567. #define _PLAYER_453 0x18F71F00
  3568. #define _PLAYER_454 0x4B898700
  3569. #define _PLAYER_455 0x491B9E00
  3570. #define _PLAYER_456 0x829DC700
  3571. #define _PLAYER_457 0xBCE63500
  3572. #define _PLAYER_458 0xCEA6DF00
  3573. #define _PLAYER_459 0x20D4AD00
  3574. #define _PLAYER_460 0x2D74FD00
  3575. #define _PLAYER_461 0x3C1C0D00
  3576. #define _PLAYER_462 0x12D6D400
  3577. #define _PLAYER_463 0x48C00000
  3578. #define _PLAYER_464 0x2A51E200
  3579. #define _PLAYER_465 0xE3AC1200
  3580. #define _PLAYER_466 0xFC42A800
  3581. #define _PLAYER_467 0x2FC82700
  3582. #define _PLAYER_468 0x1A30BF00
  3583. #define _PLAYER_469 0xB740C200
  3584. #define _PLAYER_470 0x42ACF500
  3585. #define _PLAYER_471 0x2FD9DE00
  3586. #define _PLAYER_472 0xFAFB7100
  3587. #define _PLAYER_473 0x05D1CD00
  3588. #define _PLAYER_474 0xC471BD00
  3589. #define _PLAYER_475 0x94436E00
  3590. #define _PLAYER_476 0xC1F7EC00
  3591. #define _PLAYER_477 0xCE79EE00
  3592. #define _PLAYER_478 0xBD1EF200
  3593. #define _PLAYER_479 0x93B7E400
  3594. #define _PLAYER_480 0x3214AA00
  3595. #define _PLAYER_481 0x184D3B00
  3596. #define _PLAYER_482 0xAE4B9900
  3597. #define _PLAYER_483 0x7E49D700
  3598. #define _PLAYER_484 0x4C436E00
  3599. #define _PLAYER_485 0xFA24CC00
  3600. #define _PLAYER_486 0xCE76BE00
  3601. #define _PLAYER_487 0xA04E0A00
  3602. #define _PLAYER_488 0x9F945C00
  3603. #define _PLAYER_489 0xDCDE3D00
  3604. #define _PLAYER_490 0x10C9C500
  3605. #define _PLAYER_491 0x70524D00
  3606. #define _PLAYER_492 0x0BE47200
  3607. #define _PLAYER_493 0x8A2CD700
  3608. #define _PLAYER_494 0x6152C200
  3609. #define _PLAYER_495 0xCF72A900
  3610. #define _PLAYER_496 0xE5933800
  3611. #define _PLAYER_497 0xEEDC2D00
  3612. #define _PLAYER_498 0xD8C76200
  3613. #define _PLAYER_499 0xD8C76200
  3614. #define _PLAYER_500 0xFF8C1300
  3615. #define _PLAYER_501 0xC715FF00
  3616. #define _PLAYER_502 0x20B2AA00
  3617. #define _PLAYER_503 0xDC143C00
  3618. #define _PLAYER_504 0x6495ED00
  3619. #define _PLAYER_505 0xF0E68C00
  3620. #define _PLAYER_506 0x77889900
  3621. #define _PLAYER_507 0xFF149300
  3622. #define _PLAYER_508 0xF4A46000
  3623. #define _PLAYER_509 0xEE82EE00
  3624. #define _PLAYER_510 0xFFD72000
  3625. #define _PLAYER_511 0x8B451300
  3626. #define _PLAYER_512 0x4949A000
  3627. #define _PLAYER_513 0x148B8B00
  3628. #define _PLAYER_514 0x14FF7F00
  3629. #define _PLAYER_515 0x556B2F00
  3630. #define _PLAYER_516 0x0FD9FA00
  3631. #define _PLAYER_517 0x10DC2900
  3632. #define _PLAYER_518 0x53408100
  3633. #define _PLAYER_519 0x0495CD00
  3634. #define _PLAYER_520 0xEF6CE800
  3635. #define _PLAYER_521 0xBD34DA00
  3636. #define _PLAYER_522 0x247C1B00
  3637. #define _PLAYER_523 0x0C8E5D00
  3638. #define _PLAYER_524 0x635B0300
  3639. #define _PLAYER_525 0xCB7ED300
  3640. #define _PLAYER_526 0x65ADEB00
  3641. #define _PLAYER_527 0x5C1ACC00
  3642. #define _PLAYER_528 0xF2F85300
  3643. #define _PLAYER_529 0x11F89100
  3644. #define _PLAYER_530 0x7B39AA00
  3645. #define _PLAYER_531 0x53EB1000
  3646. #define _PLAYER_532 0x54137D00
  3647. #define _PLAYER_533 0x27522200
  3648. #define _PLAYER_534 0xF09F5B00
  3649. #define _PLAYER_535 0x3D0A4F00
  3650. #define _PLAYER_536 0x22F76700
  3651. #define _PLAYER_537 0xD6303400
  3652. #define _PLAYER_538 0x9A698000
  3653. #define _PLAYER_539 0xDFB93500
  3654. #define _PLAYER_540 0x3793FA00
  3655. #define _PLAYER_541 0x90239D00
  3656. #define _PLAYER_542 0xE9AB2F00
  3657. #define _PLAYER_543 0xAF2FF300
  3658. #define _PLAYER_544 0x057F9400
  3659. #define _PLAYER_545 0xB9851900
  3660. #define _PLAYER_546 0x388EEA00
  3661. #define _PLAYER_547 0x02815100
  3662. #define _PLAYER_548 0xA5504300
  3663. #define _PLAYER_549 0x0DE01800
  3664. #define _PLAYER_550 0x93AB1C00
  3665. #define _PLAYER_551 0x95BAF000
  3666. #define _PLAYER_552 0x36997600
  3667. #define _PLAYER_553 0x18F71F00
  3668. #define _PLAYER_554 0x4B898700
  3669. #define _PLAYER_555 0x491B9E00
  3670. #define _PLAYER_556 0x829DC700
  3671. #define _PLAYER_557 0xBCE63500
  3672. #define _PLAYER_558 0xCEA6DF00
  3673. #define _PLAYER_559 0x20D4AD00
  3674. #define _PLAYER_560 0x2D74FD00
  3675. #define _PLAYER_561 0x3C1C0D00
  3676. #define _PLAYER_562 0x12D6D400
  3677. #define _PLAYER_563 0x48C00000
  3678. #define _PLAYER_564 0x2A51E200
  3679. #define _PLAYER_565 0xE3AC1200
  3680. #define _PLAYER_566 0xFC42A800
  3681. #define _PLAYER_567 0x2FC82700
  3682. #define _PLAYER_568 0x1A30BF00
  3683. #define _PLAYER_569 0xB740C200
  3684. #define _PLAYER_570 0x42ACF500
  3685. #define _PLAYER_571 0x2FD9DE00
  3686. #define _PLAYER_572 0xFAFB7100
  3687. #define _PLAYER_573 0x05D1CD00
  3688. #define _PLAYER_574 0xC471BD00
  3689. #define _PLAYER_575 0x94436E00
  3690. #define _PLAYER_576 0xC1F7EC00
  3691. #define _PLAYER_577 0xCE79EE00
  3692. #define _PLAYER_578 0xBD1EF200
  3693. #define _PLAYER_579 0x93B7E400
  3694. #define _PLAYER_580 0x3214AA00
  3695. #define _PLAYER_581 0x184D3B00
  3696. #define _PLAYER_582 0xAE4B9900
  3697. #define _PLAYER_583 0x7E49D700
  3698. #define _PLAYER_584 0x4C436E00
  3699. #define _PLAYER_585 0xFA24CC00
  3700. #define _PLAYER_586 0xCE76BE00
  3701. #define _PLAYER_587 0xA04E0A00
  3702. #define _PLAYER_588 0x9F945C00
  3703. #define _PLAYER_589 0xDCDE3D00
  3704. #define _PLAYER_590 0x10C9C500
  3705. #define _PLAYER_591 0x70524D00
  3706. #define _PLAYER_592 0x0BE47200
  3707. #define _PLAYER_593 0x8A2CD700
  3708. #define _PLAYER_594 0x6152C200
  3709. #define _PLAYER_595 0xCF72A900
  3710. #define _PLAYER_596 0xE5933800
  3711. #define _PLAYER_597 0xEEDC2D00
  3712. #define _PLAYER_598 0xD8C76200
  3713. #define _PLAYER_599 0xD8C76200
  3714. #define _PLAYER_600 0xFF8C1300
  3715. #define _PLAYER_601 0xC715FF00
  3716. #define _PLAYER_602 0x20B2AA00
  3717. #define _PLAYER_603 0xDC143C00
  3718. #define _PLAYER_604 0x6495ED00
  3719. #define _PLAYER_605 0xF0E68C00
  3720. #define _PLAYER_606 0x77889900
  3721. #define _PLAYER_607 0xFF149300
  3722. #define _PLAYER_608 0xF4A46000
  3723. #define _PLAYER_609 0xEE82EE00
  3724. #define _PLAYER_610 0xFFD72000
  3725. #define _PLAYER_611 0x8B451300
  3726. #define _PLAYER_612 0x4949A000
  3727. #define _PLAYER_613 0x148B8B00
  3728. #define _PLAYER_614 0x14FF7F00
  3729. #define _PLAYER_615 0x556B2F00
  3730. #define _PLAYER_616 0x0FD9FA00
  3731. #define _PLAYER_617 0x10DC2900
  3732. #define _PLAYER_618 0x53408100
  3733. #define _PLAYER_619 0x0495CD00
  3734. #define _PLAYER_620 0xEF6CE800
  3735. #define _PLAYER_621 0xBD34DA00
  3736. #define _PLAYER_622 0x247C1B00
  3737. #define _PLAYER_623 0x0C8E5D00
  3738. #define _PLAYER_624 0x635B0300
  3739. #define _PLAYER_625 0xCB7ED300
  3740. #define _PLAYER_626 0x65ADEB00
  3741. #define _PLAYER_627 0x5C1ACC00
  3742. #define _PLAYER_628 0xF2F85300
  3743. #define _PLAYER_629 0x11F89100
  3744. #define _PLAYER_630 0x7B39AA00
  3745. #define _PLAYER_631 0x53EB1000
  3746. #define _PLAYER_632 0x54137D00
  3747. #define _PLAYER_633 0x27522200
  3748. #define _PLAYER_634 0xF09F5B00
  3749. #define _PLAYER_635 0x3D0A4F00
  3750. #define _PLAYER_636 0x22F76700
  3751. #define _PLAYER_637 0xD6303400
  3752. #define _PLAYER_638 0x9A698000
  3753. #define _PLAYER_639 0xDFB93500
  3754. #define _PLAYER_640 0x3793FA00
  3755. #define _PLAYER_641 0x90239D00
  3756. #define _PLAYER_642 0xE9AB2F00
  3757. #define _PLAYER_643 0xAF2FF300
  3758. #define _PLAYER_644 0x057F9400
  3759. #define _PLAYER_645 0xB9851900
  3760. #define _PLAYER_646 0x388EEA00
  3761. #define _PLAYER_647 0x02815100
  3762. #define _PLAYER_648 0xA5504300
  3763. #define _PLAYER_649 0x0DE01800
  3764. #define _PLAYER_650 0x93AB1C00
  3765. #define _PLAYER_651 0x95BAF000
  3766. #define _PLAYER_652 0x36997600
  3767. #define _PLAYER_653 0x18F71F00
  3768. #define _PLAYER_654 0x4B898700
  3769. #define _PLAYER_655 0x491B9E00
  3770. #define _PLAYER_656 0x829DC700
  3771. #define _PLAYER_657 0xBCE63500
  3772. #define _PLAYER_658 0xCEA6DF00
  3773. #define _PLAYER_659 0x20D4AD00
  3774. #define _PLAYER_660 0x2D74FD00
  3775. #define _PLAYER_661 0x3C1C0D00
  3776. #define _PLAYER_662 0x12D6D400
  3777. #define _PLAYER_663 0x48C00000
  3778. #define _PLAYER_664 0x2A51E200
  3779. #define _PLAYER_665 0xE3AC1200
  3780. #define _PLAYER_666 0xFC42A800
  3781. #define _PLAYER_667 0x2FC82700
  3782. #define _PLAYER_668 0x1A30BF00
  3783. #define _PLAYER_669 0xB740C200
  3784. #define _PLAYER_670 0x42ACF500
  3785. #define _PLAYER_671 0x2FD9DE00
  3786. #define _PLAYER_672 0xFAFB7100
  3787. #define _PLAYER_673 0x05D1CD00
  3788. #define _PLAYER_674 0xC471BD00
  3789. #define _PLAYER_675 0x94436E00
  3790. #define _PLAYER_676 0xC1F7EC00
  3791. #define _PLAYER_677 0xCE79EE00
  3792. #define _PLAYER_678 0xBD1EF200
  3793. #define _PLAYER_679 0x93B7E400
  3794. #define _PLAYER_680 0x3214AA00
  3795. #define _PLAYER_681 0x184D3B00
  3796. #define _PLAYER_682 0xAE4B9900
  3797. #define _PLAYER_683 0x7E49D700
  3798. #define _PLAYER_684 0x4C436E00
  3799. #define _PLAYER_685 0xFA24CC00
  3800. #define _PLAYER_686 0xCE76BE00
  3801. #define _PLAYER_687 0xA04E0A00
  3802. #define _PLAYER_688 0x9F945C00
  3803. #define _PLAYER_689 0xDCDE3D00
  3804. #define _PLAYER_690 0x10C9C500
  3805. #define _PLAYER_691 0x70524D00
  3806. #define _PLAYER_692 0x0BE47200
  3807. #define _PLAYER_693 0x8A2CD700
  3808. #define _PLAYER_694 0x6152C200
  3809. #define _PLAYER_695 0xCF72A900
  3810. #define _PLAYER_696 0xE5933800
  3811. #define _PLAYER_697 0xEEDC2D00
  3812. #define _PLAYER_698 0xD8C76200
  3813. #define _PLAYER_699 0xD8C76200
  3814. #define _PLAYER_700 0xFF8C1300
  3815. #define _PLAYER_701 0xC715FF00
  3816. #define _PLAYER_702 0x20B2AA00
  3817. #define _PLAYER_703 0xDC143C00
  3818. #define _PLAYER_704 0x6495ED00
  3819. #define _PLAYER_705 0xF0E68C00
  3820. #define _PLAYER_706 0x77889900
  3821. #define _PLAYER_707 0xFF149300
  3822. #define _PLAYER_708 0xF4A46000
  3823. #define _PLAYER_709 0xEE82EE00
  3824. #define _PLAYER_710 0xFFD72000
  3825. #define _PLAYER_711 0x8B451300
  3826. #define _PLAYER_712 0x4949A000
  3827. #define _PLAYER_713 0x148B8B00
  3828. #define _PLAYER_714 0x14FF7F00
  3829. #define _PLAYER_715 0x556B2F00
  3830. #define _PLAYER_716 0x0FD9FA00
  3831. #define _PLAYER_717 0x10DC2900
  3832. #define _PLAYER_718 0x53408100
  3833. #define _PLAYER_719 0x0495CD00
  3834. #define _PLAYER_720 0xEF6CE800
  3835. #define _PLAYER_721 0xBD34DA00
  3836. #define _PLAYER_722 0x247C1B00
  3837. #define _PLAYER_723 0x0C8E5D00
  3838. #define _PLAYER_724 0x635B0300
  3839. #define _PLAYER_725 0xCB7ED300
  3840. #define _PLAYER_726 0x65ADEB00
  3841. #define _PLAYER_727 0x5C1ACC00
  3842. #define _PLAYER_728 0xF2F85300
  3843. #define _PLAYER_729 0x11F89100
  3844. #define _PLAYER_730 0x7B39AA00
  3845. #define _PLAYER_731 0x53EB1000
  3846. #define _PLAYER_732 0x54137D00
  3847. #define _PLAYER_733 0x27522200
  3848. #define _PLAYER_734 0xF09F5B00
  3849. #define _PLAYER_735 0x3D0A4F00
  3850. #define _PLAYER_736 0x22F76700
  3851. #define _PLAYER_737 0xD6303400
  3852. #define _PLAYER_738 0x9A698000
  3853. #define _PLAYER_739 0xDFB93500
  3854. #define _PLAYER_740 0x3793FA00
  3855. #define _PLAYER_741 0x90239D00
  3856. #define _PLAYER_742 0xE9AB2F00
  3857. #define _PLAYER_743 0xAF2FF300
  3858. #define _PLAYER_744 0x057F9400
  3859. #define _PLAYER_745 0xB9851900
  3860. #define _PLAYER_746 0x388EEA00
  3861. #define _PLAYER_747 0x02815100
  3862. #define _PLAYER_748 0xA5504300
  3863. #define _PLAYER_749 0x0DE01800
  3864. #define _PLAYER_750 0x93AB1C00
  3865. #define _PLAYER_751 0x95BAF000
  3866. #define _PLAYER_752 0x36997600
  3867. #define _PLAYER_753 0x18F71F00
  3868. #define _PLAYER_754 0x4B898700
  3869. #define _PLAYER_755 0x491B9E00
  3870. #define _PLAYER_756 0x829DC700
  3871. #define _PLAYER_757 0xBCE63500
  3872. #define _PLAYER_758 0xCEA6DF00
  3873. #define _PLAYER_759 0x20D4AD00
  3874. #define _PLAYER_760 0x2D74FD00
  3875. #define _PLAYER_761 0x3C1C0D00
  3876. #define _PLAYER_762 0x12D6D400
  3877. #define _PLAYER_763 0x48C00000
  3878. #define _PLAYER_764 0x2A51E200
  3879. #define _PLAYER_765 0xE3AC1200
  3880. #define _PLAYER_766 0xFC42A800
  3881. #define _PLAYER_767 0x2FC82700
  3882. #define _PLAYER_768 0x1A30BF00
  3883. #define _PLAYER_769 0xB740C200
  3884. #define _PLAYER_770 0x42ACF500
  3885. #define _PLAYER_771 0x2FD9DE00
  3886. #define _PLAYER_772 0xFAFB7100
  3887. #define _PLAYER_773 0x05D1CD00
  3888. #define _PLAYER_774 0xC471BD00
  3889. #define _PLAYER_775 0x94436E00
  3890. #define _PLAYER_776 0xC1F7EC00
  3891. #define _PLAYER_777 0xCE79EE00
  3892. #define _PLAYER_778 0xBD1EF200
  3893. #define _PLAYER_779 0x93B7E400
  3894. #define _PLAYER_780 0x3214AA00
  3895. #define _PLAYER_781 0x184D3B00
  3896. #define _PLAYER_782 0xAE4B9900
  3897. #define _PLAYER_783 0x7E49D700
  3898. #define _PLAYER_784 0x4C436E00
  3899. #define _PLAYER_785 0xFA24CC00
  3900. #define _PLAYER_786 0xCE76BE00
  3901. #define _PLAYER_787 0xA04E0A00
  3902. #define _PLAYER_788 0x9F945C00
  3903. #define _PLAYER_789 0xDCDE3D00
  3904. #define _PLAYER_790 0x10C9C500
  3905. #define _PLAYER_791 0x70524D00
  3906. #define _PLAYER_792 0x0BE47200
  3907. #define _PLAYER_793 0x8A2CD700
  3908. #define _PLAYER_794 0x6152C200
  3909. #define _PLAYER_795 0xCF72A900
  3910. #define _PLAYER_796 0xE5933800
  3911. #define _PLAYER_797 0xEEDC2D00
  3912. #define _PLAYER_798 0xD8C76200
  3913. #define _PLAYER_799 0xD8C76200
  3914. #define _PLAYER_800 0xFF8C1300
  3915. #define _PLAYER_801 0xC715FF00
  3916. #define _PLAYER_802 0x20B2AA00
  3917. #define _PLAYER_803 0xDC143C00
  3918. #define _PLAYER_804 0x6495ED00
  3919. #define _PLAYER_805 0xF0E68C00
  3920. #define _PLAYER_806 0x77889900
  3921. #define _PLAYER_807 0xFF149300
  3922. #define _PLAYER_808 0xF4A46000
  3923. #define _PLAYER_809 0xEE82EE00
  3924. #define _PLAYER_810 0xFFD72000
  3925. #define _PLAYER_811 0x8B451300
  3926. #define _PLAYER_812 0x4949A000
  3927. #define _PLAYER_813 0x148B8B00
  3928. #define _PLAYER_814 0x14FF7F00
  3929. #define _PLAYER_815 0x556B2F00
  3930. #define _PLAYER_816 0x0FD9FA00
  3931. #define _PLAYER_817 0x10DC2900
  3932. #define _PLAYER_818 0x53408100
  3933. #define _PLAYER_819 0x0495CD00
  3934. #define _PLAYER_820 0xEF6CE800
  3935. #define _PLAYER_821 0xBD34DA00
  3936. #define _PLAYER_822 0x247C1B00
  3937. #define _PLAYER_823 0x0C8E5D00
  3938. #define _PLAYER_824 0x635B0300
  3939. #define _PLAYER_825 0xCB7ED300
  3940. #define _PLAYER_826 0x65ADEB00
  3941. #define _PLAYER_827 0x5C1ACC00
  3942. #define _PLAYER_828 0xF2F85300
  3943. #define _PLAYER_829 0x11F89100
  3944. #define _PLAYER_830 0x7B39AA00
  3945. #define _PLAYER_831 0x53EB1000
  3946. #define _PLAYER_832 0x54137D00
  3947. #define _PLAYER_833 0x27522200
  3948. #define _PLAYER_834 0xF09F5B00
  3949. #define _PLAYER_835 0x3D0A4F00
  3950. #define _PLAYER_836 0x22F76700
  3951. #define _PLAYER_837 0xD6303400
  3952. #define _PLAYER_838 0x9A698000
  3953. #define _PLAYER_839 0xDFB93500
  3954. #define _PLAYER_840 0x3793FA00
  3955. #define _PLAYER_841 0x90239D00
  3956. #define _PLAYER_842 0xE9AB2F00
  3957. #define _PLAYER_843 0xAF2FF300
  3958. #define _PLAYER_844 0x057F9400
  3959. #define _PLAYER_845 0xB9851900
  3960. #define _PLAYER_846 0x388EEA00
  3961. #define _PLAYER_847 0x02815100
  3962. #define _PLAYER_848 0xA5504300
  3963. #define _PLAYER_849 0x0DE01800
  3964. #define _PLAYER_850 0x93AB1C00
  3965. #define _PLAYER_851 0x95BAF000
  3966. #define _PLAYER_852 0x36997600
  3967. #define _PLAYER_853 0x18F71F00
  3968. #define _PLAYER_854 0x4B898700
  3969. #define _PLAYER_855 0x491B9E00
  3970. #define _PLAYER_856 0x829DC700
  3971. #define _PLAYER_857 0xBCE63500
  3972. #define _PLAYER_858 0xCEA6DF00
  3973. #define _PLAYER_859 0x20D4AD00
  3974. #define _PLAYER_860 0x2D74FD00
  3975. #define _PLAYER_861 0x3C1C0D00
  3976. #define _PLAYER_862 0x12D6D400
  3977. #define _PLAYER_863 0x48C00000
  3978. #define _PLAYER_864 0x2A51E200
  3979. #define _PLAYER_865 0xE3AC1200
  3980. #define _PLAYER_866 0xFC42A800
  3981. #define _PLAYER_867 0x2FC82700
  3982. #define _PLAYER_868 0x1A30BF00
  3983. #define _PLAYER_869 0xB740C200
  3984. #define _PLAYER_870 0x42ACF500
  3985. #define _PLAYER_871 0x2FD9DE00
  3986. #define _PLAYER_872 0xFAFB7100
  3987. #define _PLAYER_873 0x05D1CD00
  3988. #define _PLAYER_874 0xC471BD00
  3989. #define _PLAYER_875 0x94436E00
  3990. #define _PLAYER_876 0xC1F7EC00
  3991. #define _PLAYER_877 0xCE79EE00
  3992. #define _PLAYER_878 0xBD1EF200
  3993. #define _PLAYER_879 0x93B7E400
  3994. #define _PLAYER_880 0x3214AA00
  3995. #define _PLAYER_881 0x184D3B00
  3996. #define _PLAYER_882 0xAE4B9900
  3997. #define _PLAYER_883 0x7E49D700
  3998. #define _PLAYER_884 0x4C436E00
  3999. #define _PLAYER_885 0xFA24CC00
  4000. #define _PLAYER_886 0xCE76BE00
  4001. #define _PLAYER_887 0xA04E0A00
  4002. #define _PLAYER_888 0x9F945C00
  4003. #define _PLAYER_889 0xDCDE3D00
  4004. #define _PLAYER_890 0x10C9C500
  4005. #define _PLAYER_891 0x70524D00
  4006. #define _PLAYER_892 0x0BE47200
  4007. #define _PLAYER_893 0x8A2CD700
  4008. #define _PLAYER_894 0x6152C200
  4009. #define _PLAYER_895 0xCF72A900
  4010. #define _PLAYER_896 0xE5933800
  4011. #define _PLAYER_897 0xEEDC2D00
  4012. #define _PLAYER_898 0xD8C76200
  4013. #define _PLAYER_899 0xD8C76200
  4014. #define _PLAYER_900 0xFF8C1300
  4015. #define _PLAYER_901 0xC715FF00
  4016. #define _PLAYER_902 0x20B2AA00
  4017. #define _PLAYER_903 0xDC143C00
  4018. #define _PLAYER_904 0x6495ED00
  4019. #define _PLAYER_905 0xF0E68C00
  4020. #define _PLAYER_906 0x77889900
  4021. #define _PLAYER_907 0xFF149300
  4022. #define _PLAYER_908 0xF4A46000
  4023. #define _PLAYER_909 0xEE82EE00
  4024. #define _PLAYER_910 0xFFD72000
  4025. #define _PLAYER_911 0x8B451300
  4026. #define _PLAYER_912 0x4949A000
  4027. #define _PLAYER_913 0x148B8B00
  4028. #define _PLAYER_914 0x14FF7F00
  4029. #define _PLAYER_915 0x556B2F00
  4030. #define _PLAYER_916 0x0FD9FA00
  4031. #define _PLAYER_917 0x10DC2900
  4032. #define _PLAYER_918 0x53408100
  4033. #define _PLAYER_919 0x0495CD00
  4034. #define _PLAYER_920 0xEF6CE800
  4035. #define _PLAYER_921 0xBD34DA00
  4036. #define _PLAYER_922 0x247C1B00
  4037. #define _PLAYER_923 0x0C8E5D00
  4038. #define _PLAYER_924 0x635B0300
  4039. #define _PLAYER_925 0xCB7ED300
  4040. #define _PLAYER_926 0x65ADEB00
  4041. #define _PLAYER_927 0x5C1ACC00
  4042. #define _PLAYER_928 0xF2F85300
  4043. #define _PLAYER_929 0x11F89100
  4044. #define _PLAYER_930 0x7B39AA00
  4045. #define _PLAYER_931 0x53EB1000
  4046. #define _PLAYER_932 0x54137D00
  4047. #define _PLAYER_933 0x27522200
  4048. #define _PLAYER_934 0xF09F5B00
  4049. #define _PLAYER_935 0x3D0A4F00
  4050. #define _PLAYER_936 0x22F76700
  4051. #define _PLAYER_937 0xD6303400
  4052. #define _PLAYER_938 0x9A698000
  4053. #define _PLAYER_939 0xDFB93500
  4054. #define _PLAYER_940 0x3793FA00
  4055. #define _PLAYER_941 0x90239D00
  4056. #define _PLAYER_942 0xE9AB2F00
  4057. #define _PLAYER_943 0xAF2FF300
  4058. #define _PLAYER_944 0x057F9400
  4059. #define _PLAYER_945 0xB9851900
  4060. #define _PLAYER_946 0x388EEA00
  4061. #define _PLAYER_947 0x02815100
  4062. #define _PLAYER_948 0xA5504300
  4063. #define _PLAYER_949 0x0DE01800
  4064. #define _PLAYER_950 0x93AB1C00
  4065. #define _PLAYER_951 0x95BAF000
  4066. #define _PLAYER_952 0x36997600
  4067. #define _PLAYER_953 0x18F71F00
  4068. #define _PLAYER_954 0x4B898700
  4069. #define _PLAYER_955 0x491B9E00
  4070. #define _PLAYER_956 0x829DC700
  4071. #define _PLAYER_957 0xBCE63500
  4072. #define _PLAYER_958 0xCEA6DF00
  4073. #define _PLAYER_959 0x20D4AD00
  4074. #define _PLAYER_960 0x2D74FD00
  4075. #define _PLAYER_961 0x3C1C0D00
  4076. #define _PLAYER_962 0x12D6D400
  4077. #define _PLAYER_963 0x48C00000
  4078. #define _PLAYER_964 0x2A51E200
  4079. #define _PLAYER_965 0xE3AC1200
  4080. #define _PLAYER_966 0xFC42A800
  4081. #define _PLAYER_967 0x2FC82700
  4082. #define _PLAYER_968 0x1A30BF00
  4083. #define _PLAYER_969 0xB740C200
  4084. #define _PLAYER_970 0x42ACF500
  4085. #define _PLAYER_971 0x2FD9DE00
  4086. #define _PLAYER_972 0xFAFB7100
  4087. #define _PLAYER_973 0x05D1CD00
  4088. #define _PLAYER_974 0xC471BD00
  4089. #define _PLAYER_975 0x94436E00
  4090. #define _PLAYER_976 0xC1F7EC00
  4091. #define _PLAYER_977 0xCE79EE00
  4092. #define _PLAYER_978 0xBD1EF200
  4093. #define _PLAYER_979 0x93B7E400
  4094. #define _PLAYER_980 0x3214AA00
  4095. #define _PLAYER_981 0x184D3B00
  4096. #define _PLAYER_982 0xAE4B9900
  4097. #define _PLAYER_983 0x7E49D700
  4098. #define _PLAYER_984 0x4C436E00
  4099. #define _PLAYER_985 0xFA24CC00
  4100. #define _PLAYER_986 0xCE76BE00
  4101. #define _PLAYER_987 0xA04E0A00
  4102. #define _PLAYER_988 0x9F945C00
  4103. #define _PLAYER_989 0xDCDE3D00
  4104. #define _PLAYER_990 0x10C9C500
  4105. #define _PLAYER_991 0x70524D00
  4106. #define _PLAYER_992 0x0BE47200
  4107. #define _PLAYER_993 0x8A2CD700
  4108. #define _PLAYER_994 0x6152C200
  4109. #define _PLAYER_995 0xCF72A900
  4110. #define _PLAYER_996 0xE5933800
  4111. #define _PLAYER_997 0xEEDC2D00
  4112. #define _PLAYER_998 0xD8C76200
  4113. #define _PLAYER_999 0xD8C76200
  4114. #define _PLAYER0 0xFF8C1300
  4115. #define _PLAYER1 0xC715FF00
  4116. #define _PLAYER2 0x20B2AA00
  4117. #define _PLAYER3 0xDC143C00
  4118. #define _PLAYER4 0x6495ED00
  4119. #define _PLAYER5 0xF0E68C00
  4120. #define _PLAYER6 0x77889900
  4121. #define _PLAYER7 0xFF149300
  4122. #define _PLAYER8 0xF4A46000
  4123. #define _PLAYER9 0xEE82EE00
  4124. #define _PLAYER10 0xFFD72000
  4125. #define _PLAYER11 0x8B451300
  4126. #define _PLAYER12 0x4949A000
  4127. #define _PLAYER13 0x148B8B00
  4128. #define _PLAYER14 0x14FF7F00
  4129. #define _PLAYER15 0x556B2F00
  4130. #define _PLAYER16 0x0FD9FA00
  4131. #define _PLAYER17 0x10DC2900
  4132. #define _PLAYER18 0x53408100
  4133. #define _PLAYER19 0x0495CD00
  4134. #define _PLAYER20 0xEF6CE800
  4135. #define _PLAYER21 0xBD34DA00
  4136. #define _PLAYER22 0x247C1B00
  4137. #define _PLAYER23 0x0C8E5D00
  4138. #define _PLAYER24 0x635B0300
  4139. #define _PLAYER25 0xCB7ED300
  4140. #define _PLAYER26 0x65ADEB00
  4141. #define _PLAYER27 0x5C1ACC00
  4142. #define _PLAYER28 0xF2F85300
  4143. #define _PLAYER29 0x11F89100
  4144. #define _PLAYER30 0x7B39AA00
  4145. #define _PLAYER31 0x53EB1000
  4146. #define _PLAYER32 0x54137D00
  4147. #define _PLAYER33 0x27522200
  4148. #define _PLAYER34 0xF09F5B00
  4149. #define _PLAYER35 0x3D0A4F00
  4150. #define _PLAYER36 0x22F76700
  4151. #define _PLAYER37 0xD6303400
  4152. #define _PLAYER38 0x9A698000
  4153. #define _PLAYER39 0xDFB93500
  4154. #define _PLAYER40 0x3793FA00
  4155. #define _PLAYER41 0x90239D00
  4156. #define _PLAYER42 0xE9AB2F00
  4157. #define _PLAYER43 0xAF2FF300
  4158. #define _PLAYER44 0x057F9400
  4159. #define _PLAYER45 0xB9851900
  4160. #define _PLAYER46 0x388EEA00
  4161. #define _PLAYER47 0x02815100
  4162. #define _PLAYER48 0xA5504300
  4163. #define _PLAYER49 0x0DE01800
  4164. #define _PLAYER50 0x93AB1C00
  4165. #define _PLAYER51 0x95BAF000
  4166. #define _PLAYER52 0x36997600
  4167. #define _PLAYER53 0x18F71F00
  4168. #define _PLAYER54 0x4B898700
  4169. #define _PLAYER55 0x491B9E00
  4170. #define _PLAYER56 0x829DC700
  4171. #define _PLAYER57 0xBCE63500
  4172. #define _PLAYER58 0xCEA6DF00
  4173. #define _PLAYER59 0x20D4AD00
  4174. #define _PLAYER60 0x2D74FD00
  4175. #define _PLAYER61 0x3C1C0D00
  4176. #define _PLAYER62 0x12D6D400
  4177. #define _PLAYER63 0x48C00000
  4178. #define _PLAYER64 0x2A51E200
  4179. #define _PLAYER65 0xE3AC1200
  4180. #define _PLAYER66 0xFC42A800
  4181. #define _PLAYER67 0x2FC82700
  4182. #define _PLAYER68 0x1A30BF00
  4183. #define _PLAYER69 0xB740C200
  4184. #define _PLAYER70 0x42ACF500
  4185. #define _PLAYER71 0x2FD9DE00
  4186. #define _PLAYER72 0xFAFB7100
  4187. #define _PLAYER73 0x05D1CD00
  4188. #define _PLAYER74 0xC471BD00
  4189. #define _PLAYER75 0x94436E00
  4190. #define _PLAYER76 0xC1F7EC00
  4191. #define _PLAYER77 0xCE79EE00
  4192. #define _PLAYER78 0xBD1EF200
  4193. #define _PLAYER79 0x93B7E400
  4194. #define _PLAYER80 0x3214AA00
  4195. #define _PLAYER81 0x184D3B00
  4196. #define _PLAYER82 0xAE4B9900
  4197. #define _PLAYER83 0x7E49D700
  4198. #define _PLAYER84 0x4C436E00
  4199. #define _PLAYER85 0xFA24CC00
  4200. #define _PLAYER86 0xCE76BE00
  4201. #define _PLAYER87 0xA04E0A00
  4202. #define _PLAYER88 0x9F945C00
  4203. #define _PLAYER89 0xDCDE3D00
  4204. #define _PLAYER90 0x10C9C500
  4205. #define _PLAYER91 0x70524D00
  4206. #define _PLAYER92 0x0BE47200
  4207. #define _PLAYER93 0x8A2CD700
  4208. #define _PLAYER94 0x6152C200
  4209. #define _PLAYER95 0xCF72A900
  4210. #define _PLAYER96 0xE5933800
  4211. #define _PLAYER97 0xEEDC2D00
  4212. #define _PLAYER98 0xD8C76200
  4213. #define _PLAYER99 0xD8C76200
  4214. #define _PLAYER000 0xFF8C1300
  4215. #define _PLAYER001 0xC715FF00
  4216. #define _PLAYER002 0x20B2AA00
  4217. #define _PLAYER003 0xDC143C00
  4218. #define _PLAYER004 0x6495ED00
  4219. #define _PLAYER005 0xF0E68C00
  4220. #define _PLAYER006 0x77889900
  4221. #define _PLAYER007 0xFF149300
  4222. #define _PLAYER008 0xF4A46000
  4223. #define _PLAYER009 0xEE82EE00
  4224. #define _PLAYER010 0xFFD72000
  4225. #define _PLAYER011 0x8B451300
  4226. #define _PLAYER012 0x4949A000
  4227. #define _PLAYER013 0x148B8B00
  4228. #define _PLAYER014 0x14FF7F00
  4229. #define _PLAYER015 0x556B2F00
  4230. #define _PLAYER016 0x0FD9FA00
  4231. #define _PLAYER017 0x10DC2900
  4232. #define _PLAYER018 0x53408100
  4233. #define _PLAYER019 0x0495CD00
  4234. #define _PLAYER020 0xEF6CE800
  4235. #define _PLAYER021 0xBD34DA00
  4236. #define _PLAYER022 0x247C1B00
  4237. #define _PLAYER023 0x0C8E5D00
  4238. #define _PLAYER024 0x635B0300
  4239. #define _PLAYER025 0xCB7ED300
  4240. #define _PLAYER026 0x65ADEB00
  4241. #define _PLAYER027 0x5C1ACC00
  4242. #define _PLAYER028 0xF2F85300
  4243. #define _PLAYER029 0x11F89100
  4244. #define _PLAYER030 0x7B39AA00
  4245. #define _PLAYER031 0x53EB1000
  4246. #define _PLAYER032 0x54137D00
  4247. #define _PLAYER033 0x27522200
  4248. #define _PLAYER034 0xF09F5B00
  4249. #define _PLAYER035 0x3D0A4F00
  4250. #define _PLAYER036 0x22F76700
  4251. #define _PLAYER037 0xD6303400
  4252. #define _PLAYER038 0x9A698000
  4253. #define _PLAYER039 0xDFB93500
  4254. #define _PLAYER040 0x3793FA00
  4255. #define _PLAYER041 0x90239D00
  4256. #define _PLAYER042 0xE9AB2F00
  4257. #define _PLAYER043 0xAF2FF300
  4258. #define _PLAYER044 0x057F9400
  4259. #define _PLAYER045 0xB9851900
  4260. #define _PLAYER046 0x388EEA00
  4261. #define _PLAYER047 0x02815100
  4262. #define _PLAYER048 0xA5504300
  4263. #define _PLAYER049 0x0DE01800
  4264. #define _PLAYER050 0x93AB1C00
  4265. #define _PLAYER051 0x95BAF000
  4266. #define _PLAYER052 0x36997600
  4267. #define _PLAYER053 0x18F71F00
  4268. #define _PLAYER054 0x4B898700
  4269. #define _PLAYER055 0x491B9E00
  4270. #define _PLAYER056 0x829DC700
  4271. #define _PLAYER057 0xBCE63500
  4272. #define _PLAYER058 0xCEA6DF00
  4273. #define _PLAYER059 0x20D4AD00
  4274. #define _PLAYER060 0x2D74FD00
  4275. #define _PLAYER061 0x3C1C0D00
  4276. #define _PLAYER062 0x12D6D400
  4277. #define _PLAYER063 0x48C00000
  4278. #define _PLAYER064 0x2A51E200
  4279. #define _PLAYER065 0xE3AC1200
  4280. #define _PLAYER066 0xFC42A800
  4281. #define _PLAYER067 0x2FC82700
  4282. #define _PLAYER068 0x1A30BF00
  4283. #define _PLAYER069 0xB740C200
  4284. #define _PLAYER070 0x42ACF500
  4285. #define _PLAYER071 0x2FD9DE00
  4286. #define _PLAYER072 0xFAFB7100
  4287. #define _PLAYER073 0x05D1CD00
  4288. #define _PLAYER074 0xC471BD00
  4289. #define _PLAYER075 0x94436E00
  4290. #define _PLAYER076 0xC1F7EC00
  4291. #define _PLAYER077 0xCE79EE00
  4292. #define _PLAYER078 0xBD1EF200
  4293. #define _PLAYER079 0x93B7E400
  4294. #define _PLAYER080 0x3214AA00
  4295. #define _PLAYER081 0x184D3B00
  4296. #define _PLAYER082 0xAE4B9900
  4297. #define _PLAYER083 0x7E49D700
  4298. #define _PLAYER084 0x4C436E00
  4299. #define _PLAYER085 0xFA24CC00
  4300. #define _PLAYER086 0xCE76BE00
  4301. #define _PLAYER087 0xA04E0A00
  4302. #define _PLAYER088 0x9F945C00
  4303. #define _PLAYER089 0xDCDE3D00
  4304. #define _PLAYER090 0x10C9C500
  4305. #define _PLAYER091 0x70524D00
  4306. #define _PLAYER092 0x0BE47200
  4307. #define _PLAYER093 0x8A2CD700
  4308. #define _PLAYER094 0x6152C200
  4309. #define _PLAYER095 0xCF72A900
  4310. #define _PLAYER096 0xE5933800
  4311. #define _PLAYER097 0xEEDC2D00
  4312. #define _PLAYER098 0xD8C76200
  4313. #define _PLAYER099 0xD8C76200
  4314. #define _PLAYER100 0xFF8C1300
  4315. #define _PLAYER101 0xC715FF00
  4316. #define _PLAYER102 0x20B2AA00
  4317. #define _PLAYER103 0xDC143C00
  4318. #define _PLAYER104 0x6495ED00
  4319. #define _PLAYER105 0xF0E68C00
  4320. #define _PLAYER106 0x77889900
  4321. #define _PLAYER107 0xFF149300
  4322. #define _PLAYER108 0xF4A46000
  4323. #define _PLAYER109 0xEE82EE00
  4324. #define _PLAYER110 0xFFD72000
  4325. #define _PLAYER111 0x8B451300
  4326. #define _PLAYER112 0x4949A000
  4327. #define _PLAYER113 0x148B8B00
  4328. #define _PLAYER114 0x14FF7F00
  4329. #define _PLAYER115 0x556B2F00
  4330. #define _PLAYER116 0x0FD9FA00
  4331. #define _PLAYER117 0x10DC2900
  4332. #define _PLAYER118 0x53408100
  4333. #define _PLAYER119 0x0495CD00
  4334. #define _PLAYER120 0xEF6CE800
  4335. #define _PLAYER121 0xBD34DA00
  4336. #define _PLAYER122 0x247C1B00
  4337. #define _PLAYER123 0x0C8E5D00
  4338. #define _PLAYER124 0x635B0300
  4339. #define _PLAYER125 0xCB7ED300
  4340. #define _PLAYER126 0x65ADEB00
  4341. #define _PLAYER127 0x5C1ACC00
  4342. #define _PLAYER128 0xF2F85300
  4343. #define _PLAYER129 0x11F89100
  4344. #define _PLAYER130 0x7B39AA00
  4345. #define _PLAYER131 0x53EB1000
  4346. #define _PLAYER132 0x54137D00
  4347. #define _PLAYER133 0x27522200
  4348. #define _PLAYER134 0xF09F5B00
  4349. #define _PLAYER135 0x3D0A4F00
  4350. #define _PLAYER136 0x22F76700
  4351. #define _PLAYER137 0xD6303400
  4352. #define _PLAYER138 0x9A698000
  4353. #define _PLAYER139 0xDFB93500
  4354. #define _PLAYER140 0x3793FA00
  4355. #define _PLAYER141 0x90239D00
  4356. #define _PLAYER142 0xE9AB2F00
  4357. #define _PLAYER143 0xAF2FF300
  4358. #define _PLAYER144 0x057F9400
  4359. #define _PLAYER145 0xB9851900
  4360. #define _PLAYER146 0x388EEA00
  4361. #define _PLAYER147 0x02815100
  4362. #define _PLAYER148 0xA5504300
  4363. #define _PLAYER149 0x0DE01800
  4364. #define _PLAYER150 0x93AB1C00
  4365. #define _PLAYER151 0x95BAF000
  4366. #define _PLAYER152 0x36997600
  4367. #define _PLAYER153 0x18F71F00
  4368. #define _PLAYER154 0x4B898700
  4369. #define _PLAYER155 0x491B9E00
  4370. #define _PLAYER156 0x829DC700
  4371. #define _PLAYER157 0xBCE63500
  4372. #define _PLAYER158 0xCEA6DF00
  4373. #define _PLAYER159 0x20D4AD00
  4374. #define _PLAYER160 0x2D74FD00
  4375. #define _PLAYER161 0x3C1C0D00
  4376. #define _PLAYER162 0x12D6D400
  4377. #define _PLAYER163 0x48C00000
  4378. #define _PLAYER164 0x2A51E200
  4379. #define _PLAYER165 0xE3AC1200
  4380. #define _PLAYER166 0xFC42A800
  4381. #define _PLAYER167 0x2FC82700
  4382. #define _PLAYER168 0x1A30BF00
  4383. #define _PLAYER169 0xB740C200
  4384. #define _PLAYER170 0x42ACF500
  4385. #define _PLAYER171 0x2FD9DE00
  4386. #define _PLAYER172 0xFAFB7100
  4387. #define _PLAYER173 0x05D1CD00
  4388. #define _PLAYER174 0xC471BD00
  4389. #define _PLAYER175 0x94436E00
  4390. #define _PLAYER176 0xC1F7EC00
  4391. #define _PLAYER177 0xCE79EE00
  4392. #define _PLAYER178 0xBD1EF200
  4393. #define _PLAYER179 0x93B7E400
  4394. #define _PLAYER180 0x3214AA00
  4395. #define _PLAYER181 0x184D3B00
  4396. #define _PLAYER182 0xAE4B9900
  4397. #define _PLAYER183 0x7E49D700
  4398. #define _PLAYER184 0x4C436E00
  4399. #define _PLAYER185 0xFA24CC00
  4400. #define _PLAYER186 0xCE76BE00
  4401. #define _PLAYER187 0xA04E0A00
  4402. #define _PLAYER188 0x9F945C00
  4403. #define _PLAYER189 0xDCDE3D00
  4404. #define _PLAYER190 0x10C9C500
  4405. #define _PLAYER191 0x70524D00
  4406. #define _PLAYER192 0x0BE47200
  4407. #define _PLAYER193 0x8A2CD700
  4408. #define _PLAYER194 0x6152C200
  4409. #define _PLAYER195 0xCF72A900
  4410. #define _PLAYER196 0xE5933800
  4411. #define _PLAYER197 0xEEDC2D00
  4412. #define _PLAYER198 0xD8C76200
  4413. #define _PLAYER199 0xD8C76200
  4414. #define _PLAYER200 0xFF8C1300
  4415. #define _PLAYER201 0xC715FF00
  4416. #define _PLAYER202 0x20B2AA00
  4417. #define _PLAYER203 0xDC143C00
  4418. #define _PLAYER204 0x6495ED00
  4419. #define _PLAYER205 0xF0E68C00
  4420. #define _PLAYER206 0x77889900
  4421. #define _PLAYER207 0xFF149300
  4422. #define _PLAYER208 0xF4A46000
  4423. #define _PLAYER209 0xEE82EE00
  4424. #define _PLAYER210 0xFFD72000
  4425. #define _PLAYER211 0x8B451300
  4426. #define _PLAYER212 0x4949A000
  4427. #define _PLAYER213 0x148B8B00
  4428. #define _PLAYER214 0x14FF7F00
  4429. #define _PLAYER215 0x556B2F00
  4430. #define _PLAYER216 0x0FD9FA00
  4431. #define _PLAYER217 0x10DC2900
  4432. #define _PLAYER218 0x53408100
  4433. #define _PLAYER219 0x0495CD00
  4434. #define _PLAYER220 0xEF6CE800
  4435. #define _PLAYER221 0xBD34DA00
  4436. #define _PLAYER222 0x247C1B00
  4437. #define _PLAYER223 0x0C8E5D00
  4438. #define _PLAYER224 0x635B0300
  4439. #define _PLAYER225 0xCB7ED300
  4440. #define _PLAYER226 0x65ADEB00
  4441. #define _PLAYER227 0x5C1ACC00
  4442. #define _PLAYER228 0xF2F85300
  4443. #define _PLAYER229 0x11F89100
  4444. #define _PLAYER230 0x7B39AA00
  4445. #define _PLAYER231 0x53EB1000
  4446. #define _PLAYER232 0x54137D00
  4447. #define _PLAYER233 0x27522200
  4448. #define _PLAYER234 0xF09F5B00
  4449. #define _PLAYER235 0x3D0A4F00
  4450. #define _PLAYER236 0x22F76700
  4451. #define _PLAYER237 0xD6303400
  4452. #define _PLAYER238 0x9A698000
  4453. #define _PLAYER239 0xDFB93500
  4454. #define _PLAYER240 0x3793FA00
  4455. #define _PLAYER241 0x90239D00
  4456. #define _PLAYER242 0xE9AB2F00
  4457. #define _PLAYER243 0xAF2FF300
  4458. #define _PLAYER244 0x057F9400
  4459. #define _PLAYER245 0xB9851900
  4460. #define _PLAYER246 0x388EEA00
  4461. #define _PLAYER247 0x02815100
  4462. #define _PLAYER248 0xA5504300
  4463. #define _PLAYER249 0x0DE01800
  4464. #define _PLAYER250 0x93AB1C00
  4465. #define _PLAYER251 0x95BAF000
  4466. #define _PLAYER252 0x36997600
  4467. #define _PLAYER253 0x18F71F00
  4468. #define _PLAYER254 0x4B898700
  4469. #define _PLAYER255 0x491B9E00
  4470. #define _PLAYER256 0x829DC700
  4471. #define _PLAYER257 0xBCE63500
  4472. #define _PLAYER258 0xCEA6DF00
  4473. #define _PLAYER259 0x20D4AD00
  4474. #define _PLAYER260 0x2D74FD00
  4475. #define _PLAYER261 0x3C1C0D00
  4476. #define _PLAYER262 0x12D6D400
  4477. #define _PLAYER263 0x48C00000
  4478. #define _PLAYER264 0x2A51E200
  4479. #define _PLAYER265 0xE3AC1200
  4480. #define _PLAYER266 0xFC42A800
  4481. #define _PLAYER267 0x2FC82700
  4482. #define _PLAYER268 0x1A30BF00
  4483. #define _PLAYER269 0xB740C200
  4484. #define _PLAYER270 0x42ACF500
  4485. #define _PLAYER271 0x2FD9DE00
  4486. #define _PLAYER272 0xFAFB7100
  4487. #define _PLAYER273 0x05D1CD00
  4488. #define _PLAYER274 0xC471BD00
  4489. #define _PLAYER275 0x94436E00
  4490. #define _PLAYER276 0xC1F7EC00
  4491. #define _PLAYER277 0xCE79EE00
  4492. #define _PLAYER278 0xBD1EF200
  4493. #define _PLAYER279 0x93B7E400
  4494. #define _PLAYER280 0x3214AA00
  4495. #define _PLAYER281 0x184D3B00
  4496. #define _PLAYER282 0xAE4B9900
  4497. #define _PLAYER283 0x7E49D700
  4498. #define _PLAYER284 0x4C436E00
  4499. #define _PLAYER285 0xFA24CC00
  4500. #define _PLAYER286 0xCE76BE00
  4501. #define _PLAYER287 0xA04E0A00
  4502. #define _PLAYER288 0x9F945C00
  4503. #define _PLAYER289 0xDCDE3D00
  4504. #define _PLAYER290 0x10C9C500
  4505. #define _PLAYER291 0x70524D00
  4506. #define _PLAYER292 0x0BE47200
  4507. #define _PLAYER293 0x8A2CD700
  4508. #define _PLAYER294 0x6152C200
  4509. #define _PLAYER295 0xCF72A900
  4510. #define _PLAYER296 0xE5933800
  4511. #define _PLAYER297 0xEEDC2D00
  4512. #define _PLAYER298 0xD8C76200
  4513. #define _PLAYER299 0xD8C76200
  4514. #define _PLAYER300 0xFF8C1300
  4515. #define _PLAYER301 0xC715FF00
  4516. #define _PLAYER302 0x20B2AA00
  4517. #define _PLAYER303 0xDC143C00
  4518. #define _PLAYER304 0x6495ED00
  4519. #define _PLAYER305 0xF0E68C00
  4520. #define _PLAYER306 0x77889900
  4521. #define _PLAYER307 0xFF149300
  4522. #define _PLAYER308 0xF4A46000
  4523. #define _PLAYER309 0xEE82EE00
  4524. #define _PLAYER310 0xFFD72000
  4525. #define _PLAYER311 0x8B451300
  4526. #define _PLAYER312 0x4949A000
  4527. #define _PLAYER313 0x148B8B00
  4528. #define _PLAYER314 0x14FF7F00
  4529. #define _PLAYER315 0x556B2F00
  4530. #define _PLAYER316 0x0FD9FA00
  4531. #define _PLAYER317 0x10DC2900
  4532. #define _PLAYER318 0x53408100
  4533. #define _PLAYER319 0x0495CD00
  4534. #define _PLAYER320 0xEF6CE800
  4535. #define _PLAYER321 0xBD34DA00
  4536. #define _PLAYER322 0x247C1B00
  4537. #define _PLAYER323 0x0C8E5D00
  4538. #define _PLAYER324 0x635B0300
  4539. #define _PLAYER325 0xCB7ED300
  4540. #define _PLAYER326 0x65ADEB00
  4541. #define _PLAYER327 0x5C1ACC00
  4542. #define _PLAYER328 0xF2F85300
  4543. #define _PLAYER329 0x11F89100
  4544. #define _PLAYER330 0x7B39AA00
  4545. #define _PLAYER331 0x53EB1000
  4546. #define _PLAYER332 0x54137D00
  4547. #define _PLAYER333 0x27522200
  4548. #define _PLAYER334 0xF09F5B00
  4549. #define _PLAYER335 0x3D0A4F00
  4550. #define _PLAYER336 0x22F76700
  4551. #define _PLAYER337 0xD6303400
  4552. #define _PLAYER338 0x9A698000
  4553. #define _PLAYER339 0xDFB93500
  4554. #define _PLAYER340 0x3793FA00
  4555. #define _PLAYER341 0x90239D00
  4556. #define _PLAYER342 0xE9AB2F00
  4557. #define _PLAYER343 0xAF2FF300
  4558. #define _PLAYER344 0x057F9400
  4559. #define _PLAYER345 0xB9851900
  4560. #define _PLAYER346 0x388EEA00
  4561. #define _PLAYER347 0x02815100
  4562. #define _PLAYER348 0xA5504300
  4563. #define _PLAYER349 0x0DE01800
  4564. #define _PLAYER350 0x93AB1C00
  4565. #define _PLAYER351 0x95BAF000
  4566. #define _PLAYER352 0x36997600
  4567. #define _PLAYER353 0x18F71F00
  4568. #define _PLAYER354 0x4B898700
  4569. #define _PLAYER355 0x491B9E00
  4570. #define _PLAYER356 0x829DC700
  4571. #define _PLAYER357 0xBCE63500
  4572. #define _PLAYER358 0xCEA6DF00
  4573. #define _PLAYER359 0x20D4AD00
  4574. #define _PLAYER360 0x2D74FD00
  4575. #define _PLAYER361 0x3C1C0D00
  4576. #define _PLAYER362 0x12D6D400
  4577. #define _PLAYER363 0x48C00000
  4578. #define _PLAYER364 0x2A51E200
  4579. #define _PLAYER365 0xE3AC1200
  4580. #define _PLAYER366 0xFC42A800
  4581. #define _PLAYER367 0x2FC82700
  4582. #define _PLAYER368 0x1A30BF00
  4583. #define _PLAYER369 0xB740C200
  4584. #define _PLAYER370 0x42ACF500
  4585. #define _PLAYER371 0x2FD9DE00
  4586. #define _PLAYER372 0xFAFB7100
  4587. #define _PLAYER373 0x05D1CD00
  4588. #define _PLAYER374 0xC471BD00
  4589. #define _PLAYER375 0x94436E00
  4590. #define _PLAYER376 0xC1F7EC00
  4591. #define _PLAYER377 0xCE79EE00
  4592. #define _PLAYER378 0xBD1EF200
  4593. #define _PLAYER379 0x93B7E400
  4594. #define _PLAYER380 0x3214AA00
  4595. #define _PLAYER381 0x184D3B00
  4596. #define _PLAYER382 0xAE4B9900
  4597. #define _PLAYER383 0x7E49D700
  4598. #define _PLAYER384 0x4C436E00
  4599. #define _PLAYER385 0xFA24CC00
  4600. #define _PLAYER386 0xCE76BE00
  4601. #define _PLAYER387 0xA04E0A00
  4602. #define _PLAYER388 0x9F945C00
  4603. #define _PLAYER389 0xDCDE3D00
  4604. #define _PLAYER390 0x10C9C500
  4605. #define _PLAYER391 0x70524D00
  4606. #define _PLAYER392 0x0BE47200
  4607. #define _PLAYER393 0x8A2CD700
  4608. #define _PLAYER394 0x6152C200
  4609. #define _PLAYER395 0xCF72A900
  4610. #define _PLAYER396 0xE5933800
  4611. #define _PLAYER397 0xEEDC2D00
  4612. #define _PLAYER398 0xD8C76200
  4613. #define _PLAYER399 0xD8C76200
  4614. #define _PLAYER400 0xFF8C1300
  4615. #define _PLAYER401 0xC715FF00
  4616. #define _PLAYER402 0x20B2AA00
  4617. #define _PLAYER403 0xDC143C00
  4618. #define _PLAYER404 0x6495ED00
  4619. #define _PLAYER405 0xF0E68C00
  4620. #define _PLAYER406 0x77889900
  4621. #define _PLAYER407 0xFF149300
  4622. #define _PLAYER408 0xF4A46000
  4623. #define _PLAYER409 0xEE82EE00
  4624. #define _PLAYER410 0xFFD72000
  4625. #define _PLAYER411 0x8B451300
  4626. #define _PLAYER412 0x4949A000
  4627. #define _PLAYER413 0x148B8B00
  4628. #define _PLAYER414 0x14FF7F00
  4629. #define _PLAYER415 0x556B2F00
  4630. #define _PLAYER416 0x0FD9FA00
  4631. #define _PLAYER417 0x10DC2900
  4632. #define _PLAYER418 0x53408100
  4633. #define _PLAYER419 0x0495CD00
  4634. #define _PLAYER420 0xEF6CE800
  4635. #define _PLAYER421 0xBD34DA00
  4636. #define _PLAYER422 0x247C1B00
  4637. #define _PLAYER423 0x0C8E5D00
  4638. #define _PLAYER424 0x635B0300
  4639. #define _PLAYER425 0xCB7ED300
  4640. #define _PLAYER426 0x65ADEB00
  4641. #define _PLAYER427 0x5C1ACC00
  4642. #define _PLAYER428 0xF2F85300
  4643. #define _PLAYER429 0x11F89100
  4644. #define _PLAYER430 0x7B39AA00
  4645. #define _PLAYER431 0x53EB1000
  4646. #define _PLAYER432 0x54137D00
  4647. #define _PLAYER433 0x27522200
  4648. #define _PLAYER434 0xF09F5B00
  4649. #define _PLAYER435 0x3D0A4F00
  4650. #define _PLAYER436 0x22F76700
  4651. #define _PLAYER437 0xD6303400
  4652. #define _PLAYER438 0x9A698000
  4653. #define _PLAYER439 0xDFB93500
  4654. #define _PLAYER440 0x3793FA00
  4655. #define _PLAYER441 0x90239D00
  4656. #define _PLAYER442 0xE9AB2F00
  4657. #define _PLAYER443 0xAF2FF300
  4658. #define _PLAYER444 0x057F9400
  4659. #define _PLAYER445 0xB9851900
  4660. #define _PLAYER446 0x388EEA00
  4661. #define _PLAYER447 0x02815100
  4662. #define _PLAYER448 0xA5504300
  4663. #define _PLAYER449 0x0DE01800
  4664. #define _PLAYER450 0x93AB1C00
  4665. #define _PLAYER451 0x95BAF000
  4666. #define _PLAYER452 0x36997600
  4667. #define _PLAYER453 0x18F71F00
  4668. #define _PLAYER454 0x4B898700
  4669. #define _PLAYER455 0x491B9E00
  4670. #define _PLAYER456 0x829DC700
  4671. #define _PLAYER457 0xBCE63500
  4672. #define _PLAYER458 0xCEA6DF00
  4673. #define _PLAYER459 0x20D4AD00
  4674. #define _PLAYER460 0x2D74FD00
  4675. #define _PLAYER461 0x3C1C0D00
  4676. #define _PLAYER462 0x12D6D400
  4677. #define _PLAYER463 0x48C00000
  4678. #define _PLAYER464 0x2A51E200
  4679. #define _PLAYER465 0xE3AC1200
  4680. #define _PLAYER466 0xFC42A800
  4681. #define _PLAYER467 0x2FC82700
  4682. #define _PLAYER468 0x1A30BF00
  4683. #define _PLAYER469 0xB740C200
  4684. #define _PLAYER470 0x42ACF500
  4685. #define _PLAYER471 0x2FD9DE00
  4686. #define _PLAYER472 0xFAFB7100
  4687. #define _PLAYER473 0x05D1CD00
  4688. #define _PLAYER474 0xC471BD00
  4689. #define _PLAYER475 0x94436E00
  4690. #define _PLAYER476 0xC1F7EC00
  4691. #define _PLAYER477 0xCE79EE00
  4692. #define _PLAYER478 0xBD1EF200
  4693. #define _PLAYER479 0x93B7E400
  4694. #define _PLAYER480 0x3214AA00
  4695. #define _PLAYER481 0x184D3B00
  4696. #define _PLAYER482 0xAE4B9900
  4697. #define _PLAYER483 0x7E49D700
  4698. #define _PLAYER484 0x4C436E00
  4699. #define _PLAYER485 0xFA24CC00
  4700. #define _PLAYER486 0xCE76BE00
  4701. #define _PLAYER487 0xA04E0A00
  4702. #define _PLAYER488 0x9F945C00
  4703. #define _PLAYER489 0xDCDE3D00
  4704. #define _PLAYER490 0x10C9C500
  4705. #define _PLAYER491 0x70524D00
  4706. #define _PLAYER492 0x0BE47200
  4707. #define _PLAYER493 0x8A2CD700
  4708. #define _PLAYER494 0x6152C200
  4709. #define _PLAYER495 0xCF72A900
  4710. #define _PLAYER496 0xE5933800
  4711. #define _PLAYER497 0xEEDC2D00
  4712. #define _PLAYER498 0xD8C76200
  4713. #define _PLAYER499 0xD8C76200
  4714. #define _PLAYER500 0xFF8C1300
  4715. #define _PLAYER501 0xC715FF00
  4716. #define _PLAYER502 0x20B2AA00
  4717. #define _PLAYER503 0xDC143C00
  4718. #define _PLAYER504 0x6495ED00
  4719. #define _PLAYER505 0xF0E68C00
  4720. #define _PLAYER506 0x77889900
  4721. #define _PLAYER507 0xFF149300
  4722. #define _PLAYER508 0xF4A46000
  4723. #define _PLAYER509 0xEE82EE00
  4724. #define _PLAYER510 0xFFD72000
  4725. #define _PLAYER511 0x8B451300
  4726. #define _PLAYER512 0x4949A000
  4727. #define _PLAYER513 0x148B8B00
  4728. #define _PLAYER514 0x14FF7F00
  4729. #define _PLAYER515 0x556B2F00
  4730. #define _PLAYER516 0x0FD9FA00
  4731. #define _PLAYER517 0x10DC2900
  4732. #define _PLAYER518 0x53408100
  4733. #define _PLAYER519 0x0495CD00
  4734. #define _PLAYER520 0xEF6CE800
  4735. #define _PLAYER521 0xBD34DA00
  4736. #define _PLAYER522 0x247C1B00
  4737. #define _PLAYER523 0x0C8E5D00
  4738. #define _PLAYER524 0x635B0300
  4739. #define _PLAYER525 0xCB7ED300
  4740. #define _PLAYER526 0x65ADEB00
  4741. #define _PLAYER527 0x5C1ACC00
  4742. #define _PLAYER528 0xF2F85300
  4743. #define _PLAYER529 0x11F89100
  4744. #define _PLAYER530 0x7B39AA00
  4745. #define _PLAYER531 0x53EB1000
  4746. #define _PLAYER532 0x54137D00
  4747. #define _PLAYER533 0x27522200
  4748. #define _PLAYER534 0xF09F5B00
  4749. #define _PLAYER535 0x3D0A4F00
  4750. #define _PLAYER536 0x22F76700
  4751. #define _PLAYER537 0xD6303400
  4752. #define _PLAYER538 0x9A698000
  4753. #define _PLAYER539 0xDFB93500
  4754. #define _PLAYER540 0x3793FA00
  4755. #define _PLAYER541 0x90239D00
  4756. #define _PLAYER542 0xE9AB2F00
  4757. #define _PLAYER543 0xAF2FF300
  4758. #define _PLAYER544 0x057F9400
  4759. #define _PLAYER545 0xB9851900
  4760. #define _PLAYER546 0x388EEA00
  4761. #define _PLAYER547 0x02815100
  4762. #define _PLAYER548 0xA5504300
  4763. #define _PLAYER549 0x0DE01800
  4764. #define _PLAYER550 0x93AB1C00
  4765. #define _PLAYER551 0x95BAF000
  4766. #define _PLAYER552 0x36997600
  4767. #define _PLAYER553 0x18F71F00
  4768. #define _PLAYER554 0x4B898700
  4769. #define _PLAYER555 0x491B9E00
  4770. #define _PLAYER556 0x829DC700
  4771. #define _PLAYER557 0xBCE63500
  4772. #define _PLAYER558 0xCEA6DF00
  4773. #define _PLAYER559 0x20D4AD00
  4774. #define _PLAYER560 0x2D74FD00
  4775. #define _PLAYER561 0x3C1C0D00
  4776. #define _PLAYER562 0x12D6D400
  4777. #define _PLAYER563 0x48C00000
  4778. #define _PLAYER564 0x2A51E200
  4779. #define _PLAYER565 0xE3AC1200
  4780. #define _PLAYER566 0xFC42A800
  4781. #define _PLAYER567 0x2FC82700
  4782. #define _PLAYER568 0x1A30BF00
  4783. #define _PLAYER569 0xB740C200
  4784. #define _PLAYER570 0x42ACF500
  4785. #define _PLAYER571 0x2FD9DE00
  4786. #define _PLAYER572 0xFAFB7100
  4787. #define _PLAYER573 0x05D1CD00
  4788. #define _PLAYER574 0xC471BD00
  4789. #define _PLAYER575 0x94436E00
  4790. #define _PLAYER576 0xC1F7EC00
  4791. #define _PLAYER577 0xCE79EE00
  4792. #define _PLAYER578 0xBD1EF200
  4793. #define _PLAYER579 0x93B7E400
  4794. #define _PLAYER580 0x3214AA00
  4795. #define _PLAYER581 0x184D3B00
  4796. #define _PLAYER582 0xAE4B9900
  4797. #define _PLAYER583 0x7E49D700
  4798. #define _PLAYER584 0x4C436E00
  4799. #define _PLAYER585 0xFA24CC00
  4800. #define _PLAYER586 0xCE76BE00
  4801. #define _PLAYER587 0xA04E0A00
  4802. #define _PLAYER588 0x9F945C00
  4803. #define _PLAYER589 0xDCDE3D00
  4804. #define _PLAYER590 0x10C9C500
  4805. #define _PLAYER591 0x70524D00
  4806. #define _PLAYER592 0x0BE47200
  4807. #define _PLAYER593 0x8A2CD700
  4808. #define _PLAYER594 0x6152C200
  4809. #define _PLAYER595 0xCF72A900
  4810. #define _PLAYER596 0xE5933800
  4811. #define _PLAYER597 0xEEDC2D00
  4812. #define _PLAYER598 0xD8C76200
  4813. #define _PLAYER599 0xD8C76200
  4814. #define _PLAYER600 0xFF8C1300
  4815. #define _PLAYER601 0xC715FF00
  4816. #define _PLAYER602 0x20B2AA00
  4817. #define _PLAYER603 0xDC143C00
  4818. #define _PLAYER604 0x6495ED00
  4819. #define _PLAYER605 0xF0E68C00
  4820. #define _PLAYER606 0x77889900
  4821. #define _PLAYER607 0xFF149300
  4822. #define _PLAYER608 0xF4A46000
  4823. #define _PLAYER609 0xEE82EE00
  4824. #define _PLAYER610 0xFFD72000
  4825. #define _PLAYER611 0x8B451300
  4826. #define _PLAYER612 0x4949A000
  4827. #define _PLAYER613 0x148B8B00
  4828. #define _PLAYER614 0x14FF7F00
  4829. #define _PLAYER615 0x556B2F00
  4830. #define _PLAYER616 0x0FD9FA00
  4831. #define _PLAYER617 0x10DC2900
  4832. #define _PLAYER618 0x53408100
  4833. #define _PLAYER619 0x0495CD00
  4834. #define _PLAYER620 0xEF6CE800
  4835. #define _PLAYER621 0xBD34DA00
  4836. #define _PLAYER622 0x247C1B00
  4837. #define _PLAYER623 0x0C8E5D00
  4838. #define _PLAYER624 0x635B0300
  4839. #define _PLAYER625 0xCB7ED300
  4840. #define _PLAYER626 0x65ADEB00
  4841. #define _PLAYER627 0x5C1ACC00
  4842. #define _PLAYER628 0xF2F85300
  4843. #define _PLAYER629 0x11F89100
  4844. #define _PLAYER630 0x7B39AA00
  4845. #define _PLAYER631 0x53EB1000
  4846. #define _PLAYER632 0x54137D00
  4847. #define _PLAYER633 0x27522200
  4848. #define _PLAYER634 0xF09F5B00
  4849. #define _PLAYER635 0x3D0A4F00
  4850. #define _PLAYER636 0x22F76700
  4851. #define _PLAYER637 0xD6303400
  4852. #define _PLAYER638 0x9A698000
  4853. #define _PLAYER639 0xDFB93500
  4854. #define _PLAYER640 0x3793FA00
  4855. #define _PLAYER641 0x90239D00
  4856. #define _PLAYER642 0xE9AB2F00
  4857. #define _PLAYER643 0xAF2FF300
  4858. #define _PLAYER644 0x057F9400
  4859. #define _PLAYER645 0xB9851900
  4860. #define _PLAYER646 0x388EEA00
  4861. #define _PLAYER647 0x02815100
  4862. #define _PLAYER648 0xA5504300
  4863. #define _PLAYER649 0x0DE01800
  4864. #define _PLAYER650 0x93AB1C00
  4865. #define _PLAYER651 0x95BAF000
  4866. #define _PLAYER652 0x36997600
  4867. #define _PLAYER653 0x18F71F00
  4868. #define _PLAYER654 0x4B898700
  4869. #define _PLAYER655 0x491B9E00
  4870. #define _PLAYER656 0x829DC700
  4871. #define _PLAYER657 0xBCE63500
  4872. #define _PLAYER658 0xCEA6DF00
  4873. #define _PLAYER659 0x20D4AD00
  4874. #define _PLAYER660 0x2D74FD00
  4875. #define _PLAYER661 0x3C1C0D00
  4876. #define _PLAYER662 0x12D6D400
  4877. #define _PLAYER663 0x48C00000
  4878. #define _PLAYER664 0x2A51E200
  4879. #define _PLAYER665 0xE3AC1200
  4880. #define _PLAYER666 0xFC42A800
  4881. #define _PLAYER667 0x2FC82700
  4882. #define _PLAYER668 0x1A30BF00
  4883. #define _PLAYER669 0xB740C200
  4884. #define _PLAYER670 0x42ACF500
  4885. #define _PLAYER671 0x2FD9DE00
  4886. #define _PLAYER672 0xFAFB7100
  4887. #define _PLAYER673 0x05D1CD00
  4888. #define _PLAYER674 0xC471BD00
  4889. #define _PLAYER675 0x94436E00
  4890. #define _PLAYER676 0xC1F7EC00
  4891. #define _PLAYER677 0xCE79EE00
  4892. #define _PLAYER678 0xBD1EF200
  4893. #define _PLAYER679 0x93B7E400
  4894. #define _PLAYER680 0x3214AA00
  4895. #define _PLAYER681 0x184D3B00
  4896. #define _PLAYER682 0xAE4B9900
  4897. #define _PLAYER683 0x7E49D700
  4898. #define _PLAYER684 0x4C436E00
  4899. #define _PLAYER685 0xFA24CC00
  4900. #define _PLAYER686 0xCE76BE00
  4901. #define _PLAYER687 0xA04E0A00
  4902. #define _PLAYER688 0x9F945C00
  4903. #define _PLAYER689 0xDCDE3D00
  4904. #define _PLAYER690 0x10C9C500
  4905. #define _PLAYER691 0x70524D00
  4906. #define _PLAYER692 0x0BE47200
  4907. #define _PLAYER693 0x8A2CD700
  4908. #define _PLAYER694 0x6152C200
  4909. #define _PLAYER695 0xCF72A900
  4910. #define _PLAYER696 0xE5933800
  4911. #define _PLAYER697 0xEEDC2D00
  4912. #define _PLAYER698 0xD8C76200
  4913. #define _PLAYER699 0xD8C76200
  4914. #define _PLAYER700 0xFF8C1300
  4915. #define _PLAYER701 0xC715FF00
  4916. #define _PLAYER702 0x20B2AA00
  4917. #define _PLAYER703 0xDC143C00
  4918. #define _PLAYER704 0x6495ED00
  4919. #define _PLAYER705 0xF0E68C00
  4920. #define _PLAYER706 0x77889900
  4921. #define _PLAYER707 0xFF149300
  4922. #define _PLAYER708 0xF4A46000
  4923. #define _PLAYER709 0xEE82EE00
  4924. #define _PLAYER710 0xFFD72000
  4925. #define _PLAYER711 0x8B451300
  4926. #define _PLAYER712 0x4949A000
  4927. #define _PLAYER713 0x148B8B00
  4928. #define _PLAYER714 0x14FF7F00
  4929. #define _PLAYER715 0x556B2F00
  4930. #define _PLAYER716 0x0FD9FA00
  4931. #define _PLAYER717 0x10DC2900
  4932. #define _PLAYER718 0x53408100
  4933. #define _PLAYER719 0x0495CD00
  4934. #define _PLAYER720 0xEF6CE800
  4935. #define _PLAYER721 0xBD34DA00
  4936. #define _PLAYER722 0x247C1B00
  4937. #define _PLAYER723 0x0C8E5D00
  4938. #define _PLAYER724 0x635B0300
  4939. #define _PLAYER725 0xCB7ED300
  4940. #define _PLAYER726 0x65ADEB00
  4941. #define _PLAYER727 0x5C1ACC00
  4942. #define _PLAYER728 0xF2F85300
  4943. #define _PLAYER729 0x11F89100
  4944. #define _PLAYER730 0x7B39AA00
  4945. #define _PLAYER731 0x53EB1000
  4946. #define _PLAYER732 0x54137D00
  4947. #define _PLAYER733 0x27522200
  4948. #define _PLAYER734 0xF09F5B00
  4949. #define _PLAYER735 0x3D0A4F00
  4950. #define _PLAYER736 0x22F76700
  4951. #define _PLAYER737 0xD6303400
  4952. #define _PLAYER738 0x9A698000
  4953. #define _PLAYER739 0xDFB93500
  4954. #define _PLAYER740 0x3793FA00
  4955. #define _PLAYER741 0x90239D00
  4956. #define _PLAYER742 0xE9AB2F00
  4957. #define _PLAYER743 0xAF2FF300
  4958. #define _PLAYER744 0x057F9400
  4959. #define _PLAYER745 0xB9851900
  4960. #define _PLAYER746 0x388EEA00
  4961. #define _PLAYER747 0x02815100
  4962. #define _PLAYER748 0xA5504300
  4963. #define _PLAYER749 0x0DE01800
  4964. #define _PLAYER750 0x93AB1C00
  4965. #define _PLAYER751 0x95BAF000
  4966. #define _PLAYER752 0x36997600
  4967. #define _PLAYER753 0x18F71F00
  4968. #define _PLAYER754 0x4B898700
  4969. #define _PLAYER755 0x491B9E00
  4970. #define _PLAYER756 0x829DC700
  4971. #define _PLAYER757 0xBCE63500
  4972. #define _PLAYER758 0xCEA6DF00
  4973. #define _PLAYER759 0x20D4AD00
  4974. #define _PLAYER760 0x2D74FD00
  4975. #define _PLAYER761 0x3C1C0D00
  4976. #define _PLAYER762 0x12D6D400
  4977. #define _PLAYER763 0x48C00000
  4978. #define _PLAYER764 0x2A51E200
  4979. #define _PLAYER765 0xE3AC1200
  4980. #define _PLAYER766 0xFC42A800
  4981. #define _PLAYER767 0x2FC82700
  4982. #define _PLAYER768 0x1A30BF00
  4983. #define _PLAYER769 0xB740C200
  4984. #define _PLAYER770 0x42ACF500
  4985. #define _PLAYER771 0x2FD9DE00
  4986. #define _PLAYER772 0xFAFB7100
  4987. #define _PLAYER773 0x05D1CD00
  4988. #define _PLAYER774 0xC471BD00
  4989. #define _PLAYER775 0x94436E00
  4990. #define _PLAYER776 0xC1F7EC00
  4991. #define _PLAYER777 0xCE79EE00
  4992. #define _PLAYER778 0xBD1EF200
  4993. #define _PLAYER779 0x93B7E400
  4994. #define _PLAYER780 0x3214AA00
  4995. #define _PLAYER781 0x184D3B00
  4996. #define _PLAYER782 0xAE4B9900
  4997. #define _PLAYER783 0x7E49D700
  4998. #define _PLAYER784 0x4C436E00
  4999. #define _PLAYER785 0xFA24CC00
  5000. #define _PLAYER786 0xCE76BE00
  5001. #define _PLAYER787 0xA04E0A00
  5002. #define _PLAYER788 0x9F945C00
  5003. #define _PLAYER789 0xDCDE3D00
  5004. #define _PLAYER790 0x10C9C500
  5005. #define _PLAYER791 0x70524D00
  5006. #define _PLAYER792 0x0BE47200
  5007. #define _PLAYER793 0x8A2CD700
  5008. #define _PLAYER794 0x6152C200
  5009. #define _PLAYER795 0xCF72A900
  5010. #define _PLAYER796 0xE5933800
  5011. #define _PLAYER797 0xEEDC2D00
  5012. #define _PLAYER798 0xD8C76200
  5013. #define _PLAYER799 0xD8C76200
  5014. #define _PLAYER800 0xFF8C1300
  5015. #define _PLAYER801 0xC715FF00
  5016. #define _PLAYER802 0x20B2AA00
  5017. #define _PLAYER803 0xDC143C00
  5018. #define _PLAYER804 0x6495ED00
  5019. #define _PLAYER805 0xF0E68C00
  5020. #define _PLAYER806 0x77889900
  5021. #define _PLAYER807 0xFF149300
  5022. #define _PLAYER808 0xF4A46000
  5023. #define _PLAYER809 0xEE82EE00
  5024. #define _PLAYER810 0xFFD72000
  5025. #define _PLAYER811 0x8B451300
  5026. #define _PLAYER812 0x4949A000
  5027. #define _PLAYER813 0x148B8B00
  5028. #define _PLAYER814 0x14FF7F00
  5029. #define _PLAYER815 0x556B2F00
  5030. #define _PLAYER816 0x0FD9FA00
  5031. #define _PLAYER817 0x10DC2900
  5032. #define _PLAYER818 0x53408100
  5033. #define _PLAYER819 0x0495CD00
  5034. #define _PLAYER820 0xEF6CE800
  5035. #define _PLAYER821 0xBD34DA00
  5036. #define _PLAYER822 0x247C1B00
  5037. #define _PLAYER823 0x0C8E5D00
  5038. #define _PLAYER824 0x635B0300
  5039. #define _PLAYER825 0xCB7ED300
  5040. #define _PLAYER826 0x65ADEB00
  5041. #define _PLAYER827 0x5C1ACC00
  5042. #define _PLAYER828 0xF2F85300
  5043. #define _PLAYER829 0x11F89100
  5044. #define _PLAYER830 0x7B39AA00
  5045. #define _PLAYER831 0x53EB1000
  5046. #define _PLAYER832 0x54137D00
  5047. #define _PLAYER833 0x27522200
  5048. #define _PLAYER834 0xF09F5B00
  5049. #define _PLAYER835 0x3D0A4F00
  5050. #define _PLAYER836 0x22F76700
  5051. #define _PLAYER837 0xD6303400
  5052. #define _PLAYER838 0x9A698000
  5053. #define _PLAYER839 0xDFB93500
  5054. #define _PLAYER840 0x3793FA00
  5055. #define _PLAYER841 0x90239D00
  5056. #define _PLAYER842 0xE9AB2F00
  5057. #define _PLAYER843 0xAF2FF300
  5058. #define _PLAYER844 0x057F9400
  5059. #define _PLAYER845 0xB9851900
  5060. #define _PLAYER846 0x388EEA00
  5061. #define _PLAYER847 0x02815100
  5062. #define _PLAYER848 0xA5504300
  5063. #define _PLAYER849 0x0DE01800
  5064. #define _PLAYER850 0x93AB1C00
  5065. #define _PLAYER851 0x95BAF000
  5066. #define _PLAYER852 0x36997600
  5067. #define _PLAYER853 0x18F71F00
  5068. #define _PLAYER854 0x4B898700
  5069. #define _PLAYER855 0x491B9E00
  5070. #define _PLAYER856 0x829DC700
  5071. #define _PLAYER857 0xBCE63500
  5072. #define _PLAYER858 0xCEA6DF00
  5073. #define _PLAYER859 0x20D4AD00
  5074. #define _PLAYER860 0x2D74FD00
  5075. #define _PLAYER861 0x3C1C0D00
  5076. #define _PLAYER862 0x12D6D400
  5077. #define _PLAYER863 0x48C00000
  5078. #define _PLAYER864 0x2A51E200
  5079. #define _PLAYER865 0xE3AC1200
  5080. #define _PLAYER866 0xFC42A800
  5081. #define _PLAYER867 0x2FC82700
  5082. #define _PLAYER868 0x1A30BF00
  5083. #define _PLAYER869 0xB740C200
  5084. #define _PLAYER870 0x42ACF500
  5085. #define _PLAYER871 0x2FD9DE00
  5086. #define _PLAYER872 0xFAFB7100
  5087. #define _PLAYER873 0x05D1CD00
  5088. #define _PLAYER874 0xC471BD00
  5089. #define _PLAYER875 0x94436E00
  5090. #define _PLAYER876 0xC1F7EC00
  5091. #define _PLAYER877 0xCE79EE00
  5092. #define _PLAYER878 0xBD1EF200
  5093. #define _PLAYER879 0x93B7E400
  5094. #define _PLAYER880 0x3214AA00
  5095. #define _PLAYER881 0x184D3B00
  5096. #define _PLAYER882 0xAE4B9900
  5097. #define _PLAYER883 0x7E49D700
  5098. #define _PLAYER884 0x4C436E00
  5099. #define _PLAYER885 0xFA24CC00
  5100. #define _PLAYER886 0xCE76BE00
  5101. #define _PLAYER887 0xA04E0A00
  5102. #define _PLAYER888 0x9F945C00
  5103. #define _PLAYER889 0xDCDE3D00
  5104. #define _PLAYER890 0x10C9C500
  5105. #define _PLAYER891 0x70524D00
  5106. #define _PLAYER892 0x0BE47200
  5107. #define _PLAYER893 0x8A2CD700
  5108. #define _PLAYER894 0x6152C200
  5109. #define _PLAYER895 0xCF72A900
  5110. #define _PLAYER896 0xE5933800
  5111. #define _PLAYER897 0xEEDC2D00
  5112. #define _PLAYER898 0xD8C76200
  5113. #define _PLAYER899 0xD8C76200
  5114. #define _PLAYER900 0xFF8C1300
  5115. #define _PLAYER901 0xC715FF00
  5116. #define _PLAYER902 0x20B2AA00
  5117. #define _PLAYER903 0xDC143C00
  5118. #define _PLAYER904 0x6495ED00
  5119. #define _PLAYER905 0xF0E68C00
  5120. #define _PLAYER906 0x77889900
  5121. #define _PLAYER907 0xFF149300
  5122. #define _PLAYER908 0xF4A46000
  5123. #define _PLAYER909 0xEE82EE00
  5124. #define _PLAYER910 0xFFD72000
  5125. #define _PLAYER911 0x8B451300
  5126. #define _PLAYER912 0x4949A000
  5127. #define _PLAYER913 0x148B8B00
  5128. #define _PLAYER914 0x14FF7F00
  5129. #define _PLAYER915 0x556B2F00
  5130. #define _PLAYER916 0x0FD9FA00
  5131. #define _PLAYER917 0x10DC2900
  5132. #define _PLAYER918 0x53408100
  5133. #define _PLAYER919 0x0495CD00
  5134. #define _PLAYER920 0xEF6CE800
  5135. #define _PLAYER921 0xBD34DA00
  5136. #define _PLAYER922 0x247C1B00
  5137. #define _PLAYER923 0x0C8E5D00
  5138. #define _PLAYER924 0x635B0300
  5139. #define _PLAYER925 0xCB7ED300
  5140. #define _PLAYER926 0x65ADEB00
  5141. #define _PLAYER927 0x5C1ACC00
  5142. #define _PLAYER928 0xF2F85300
  5143. #define _PLAYER929 0x11F89100
  5144. #define _PLAYER930 0x7B39AA00
  5145. #define _PLAYER931 0x53EB1000
  5146. #define _PLAYER932 0x54137D00
  5147. #define _PLAYER933 0x27522200
  5148. #define _PLAYER934 0xF09F5B00
  5149. #define _PLAYER935 0x3D0A4F00
  5150. #define _PLAYER936 0x22F76700
  5151. #define _PLAYER937 0xD6303400
  5152. #define _PLAYER938 0x9A698000
  5153. #define _PLAYER939 0xDFB93500
  5154. #define _PLAYER940 0x3793FA00
  5155. #define _PLAYER941 0x90239D00
  5156. #define _PLAYER942 0xE9AB2F00
  5157. #define _PLAYER943 0xAF2FF300
  5158. #define _PLAYER944 0x057F9400
  5159. #define _PLAYER945 0xB9851900
  5160. #define _PLAYER946 0x388EEA00
  5161. #define _PLAYER947 0x02815100
  5162. #define _PLAYER948 0xA5504300
  5163. #define _PLAYER949 0x0DE01800
  5164. #define _PLAYER950 0x93AB1C00
  5165. #define _PLAYER951 0x95BAF000
  5166. #define _PLAYER952 0x36997600
  5167. #define _PLAYER953 0x18F71F00
  5168. #define _PLAYER954 0x4B898700
  5169. #define _PLAYER955 0x491B9E00
  5170. #define _PLAYER956 0x829DC700
  5171. #define _PLAYER957 0xBCE63500
  5172. #define _PLAYER958 0xCEA6DF00
  5173. #define _PLAYER959 0x20D4AD00
  5174. #define _PLAYER960 0x2D74FD00
  5175. #define _PLAYER961 0x3C1C0D00
  5176. #define _PLAYER962 0x12D6D400
  5177. #define _PLAYER963 0x48C00000
  5178. #define _PLAYER964 0x2A51E200
  5179. #define _PLAYER965 0xE3AC1200
  5180. #define _PLAYER966 0xFC42A800
  5181. #define _PLAYER967 0x2FC82700
  5182. #define _PLAYER968 0x1A30BF00
  5183. #define _PLAYER969 0xB740C200
  5184. #define _PLAYER970 0x42ACF500
  5185. #define _PLAYER971 0x2FD9DE00
  5186. #define _PLAYER972 0xFAFB7100
  5187. #define _PLAYER973 0x05D1CD00
  5188. #define _PLAYER974 0xC471BD00
  5189. #define _PLAYER975 0x94436E00
  5190. #define _PLAYER976 0xC1F7EC00
  5191. #define _PLAYER977 0xCE79EE00
  5192. #define _PLAYER978 0xBD1EF200
  5193. #define _PLAYER979 0x93B7E400
  5194. #define _PLAYER980 0x3214AA00
  5195. #define _PLAYER981 0x184D3B00
  5196. #define _PLAYER982 0xAE4B9900
  5197. #define _PLAYER983 0x7E49D700
  5198. #define _PLAYER984 0x4C436E00
  5199. #define _PLAYER985 0xFA24CC00
  5200. #define _PLAYER986 0xCE76BE00
  5201. #define _PLAYER987 0xA04E0A00
  5202. #define _PLAYER988 0x9F945C00
  5203. #define _PLAYER989 0xDCDE3D00
  5204. #define _PLAYER990 0x10C9C500
  5205. #define _PLAYER991 0x70524D00
  5206. #define _PLAYER992 0x0BE47200
  5207. #define _PLAYER993 0x8A2CD700
  5208. #define _PLAYER994 0x6152C200
  5209. #define _PLAYER995 0xCF72A900
  5210. #define _PLAYER996 0xE5933800
  5211. #define _PLAYER997 0xEEDC2D00
  5212. #define _PLAYER998 0xD8C76200
  5213. #define _PLAYER999 0xD8C76200
  5214. #define PLAYER_0 {FF8C13}
  5215. #define PLAYER_1 {C715FF}
  5216. #define PLAYER_2 {20B2AA}
  5217. #define PLAYER_3 {DC143C}
  5218. #define PLAYER_4 {6495ED}
  5219. #define PLAYER_5 {F0E68C}
  5220. #define PLAYER_6 {778899}
  5221. #define PLAYER_7 {FF1493}
  5222. #define PLAYER_8 {F4A460}
  5223. #define PLAYER_9 {EE82EE}
  5224. #define PLAYER_10 {FFD720}
  5225. #define PLAYER_11 {8B4513}
  5226. #define PLAYER_12 {4949A0}
  5227. #define PLAYER_13 {148B8B}
  5228. #define PLAYER_14 {14FF7F}
  5229. #define PLAYER_15 {556B2F}
  5230. #define PLAYER_16 {0FD9FA}
  5231. #define PLAYER_17 {10DC29}
  5232. #define PLAYER_18 {534081}
  5233. #define PLAYER_19 {0495CD}
  5234. #define PLAYER_20 {EF6CE8}
  5235. #define PLAYER_21 {BD34DA}
  5236. #define PLAYER_22 {247C1B}
  5237. #define PLAYER_23 {0C8E5D}
  5238. #define PLAYER_24 {635B03}
  5239. #define PLAYER_25 {CB7ED3}
  5240. #define PLAYER_26 {65ADEB}
  5241. #define PLAYER_27 {5C1ACC}
  5242. #define PLAYER_28 {F2F853}
  5243. #define PLAYER_29 {11F891}
  5244. #define PLAYER_30 {7B39AA}
  5245. #define PLAYER_31 {53EB10}
  5246. #define PLAYER_32 {54137D}
  5247. #define PLAYER_33 {275222}
  5248. #define PLAYER_34 {F09F5B}
  5249. #define PLAYER_35 {3D0A4F}
  5250. #define PLAYER_36 {22F767}
  5251. #define PLAYER_37 {D63034}
  5252. #define PLAYER_38 {9A6980}
  5253. #define PLAYER_39 {DFB935}
  5254. #define PLAYER_40 {3793FA}
  5255. #define PLAYER_41 {90239D}
  5256. #define PLAYER_42 {E9AB2F}
  5257. #define PLAYER_43 {AF2FF3}
  5258. #define PLAYER_44 {057F94}
  5259. #define PLAYER_45 {B98519}
  5260. #define PLAYER_46 {388EEA}
  5261. #define PLAYER_47 {028151}
  5262. #define PLAYER_48 {A55043}
  5263. #define PLAYER_49 {0DE018}
  5264. #define PLAYER_50 {93AB1C}
  5265. #define PLAYER_51 {95BAF0}
  5266. #define PLAYER_52 {369976}
  5267. #define PLAYER_53 {18F71F}
  5268. #define PLAYER_54 {4B8987}
  5269. #define PLAYER_55 {491B9E}
  5270. #define PLAYER_56 {829DC7}
  5271. #define PLAYER_57 {BCE635}
  5272. #define PLAYER_58 {CEA6DF}
  5273. #define PLAYER_59 {20D4AD}
  5274. #define PLAYER_60 {2D74FD}
  5275. #define PLAYER_61 {3C1C0D}
  5276. #define PLAYER_62 {12D6D4}
  5277. #define PLAYER_63 {48C000}
  5278. #define PLAYER_64 {2A51E2}
  5279. #define PLAYER_65 {E3AC12}
  5280. #define PLAYER_66 {FC42A8}
  5281. #define PLAYER_67 {2FC827}
  5282. #define PLAYER_68 {1A30BF}
  5283. #define PLAYER_69 {B740C2}
  5284. #define PLAYER_70 {42ACF5}
  5285. #define PLAYER_71 {2FD9DE}
  5286. #define PLAYER_72 {FAFB71}
  5287. #define PLAYER_73 {05D1CD}
  5288. #define PLAYER_74 {C471BD}
  5289. #define PLAYER_75 {94436E}
  5290. #define PLAYER_76 {C1F7EC}
  5291. #define PLAYER_77 {CE79EE}
  5292. #define PLAYER_78 {BD1EF2}
  5293. #define PLAYER_79 {93B7E4}
  5294. #define PLAYER_80 {3214AA}
  5295. #define PLAYER_81 {184D3B}
  5296. #define PLAYER_82 {AE4B99}
  5297. #define PLAYER_83 {7E49D7}
  5298. #define PLAYER_84 {4C436E}
  5299. #define PLAYER_85 {FA24CC}
  5300. #define PLAYER_86 {CE76BE}
  5301. #define PLAYER_87 {A04E0A}
  5302. #define PLAYER_88 {9F945C}
  5303. #define PLAYER_89 {DCDE3D}
  5304. #define PLAYER_90 {10C9C5}
  5305. #define PLAYER_91 {70524D}
  5306. #define PLAYER_92 {0BE472}
  5307. #define PLAYER_93 {8A2CD7}
  5308. #define PLAYER_94 {6152C2}
  5309. #define PLAYER_95 {CF72A9}
  5310. #define PLAYER_96 {E59338}
  5311. #define PLAYER_97 {EEDC2D}
  5312. #define PLAYER_98 {D8C762}
  5313. #define PLAYER_99 {D8C762}
  5314. #define PLAYER_000 {FF8C13}
  5315. #define PLAYER_001 {C715FF}
  5316. #define PLAYER_002 {20B2AA}
  5317. #define PLAYER_003 {DC143C}
  5318. #define PLAYER_004 {6495ED}
  5319. #define PLAYER_005 {F0E68C}
  5320. #define PLAYER_006 {778899}
  5321. #define PLAYER_007 {FF1493}
  5322. #define PLAYER_008 {F4A460}
  5323. #define PLAYER_009 {EE82EE}
  5324. #define PLAYER_010 {FFD720}
  5325. #define PLAYER_011 {8B4513}
  5326. #define PLAYER_012 {4949A0}
  5327. #define PLAYER_013 {148B8B}
  5328. #define PLAYER_014 {14FF7F}
  5329. #define PLAYER_015 {556B2F}
  5330. #define PLAYER_016 {0FD9FA}
  5331. #define PLAYER_017 {10DC29}
  5332. #define PLAYER_018 {534081}
  5333. #define PLAYER_019 {0495CD}
  5334. #define PLAYER_020 {EF6CE8}
  5335. #define PLAYER_021 {BD34DA}
  5336. #define PLAYER_022 {247C1B}
  5337. #define PLAYER_023 {0C8E5D}
  5338. #define PLAYER_024 {635B03}
  5339. #define PLAYER_025 {CB7ED3}
  5340. #define PLAYER_026 {65ADEB}
  5341. #define PLAYER_027 {5C1ACC}
  5342. #define PLAYER_028 {F2F853}
  5343. #define PLAYER_029 {11F891}
  5344. #define PLAYER_030 {7B39AA}
  5345. #define PLAYER_031 {53EB10}
  5346. #define PLAYER_032 {54137D}
  5347. #define PLAYER_033 {275222}
  5348. #define PLAYER_034 {F09F5B}
  5349. #define PLAYER_035 {3D0A4F}
  5350. #define PLAYER_036 {22F767}
  5351. #define PLAYER_037 {D63034}
  5352. #define PLAYER_038 {9A6980}
  5353. #define PLAYER_039 {DFB935}
  5354. #define PLAYER_040 {3793FA}
  5355. #define PLAYER_041 {90239D}
  5356. #define PLAYER_042 {E9AB2F}
  5357. #define PLAYER_043 {AF2FF3}
  5358. #define PLAYER_044 {057F94}
  5359. #define PLAYER_045 {B98519}
  5360. #define PLAYER_046 {388EEA}
  5361. #define PLAYER_047 {028151}
  5362. #define PLAYER_048 {A55043}
  5363. #define PLAYER_049 {0DE018}
  5364. #define PLAYER_050 {93AB1C}
  5365. #define PLAYER_051 {95BAF0}
  5366. #define PLAYER_052 {369976}
  5367. #define PLAYER_053 {18F71F}
  5368. #define PLAYER_054 {4B8987}
  5369. #define PLAYER_055 {491B9E}
  5370. #define PLAYER_056 {829DC7}
  5371. #define PLAYER_057 {BCE635}
  5372. #define PLAYER_058 {CEA6DF}
  5373. #define PLAYER_059 {20D4AD}
  5374. #define PLAYER_060 {2D74FD}
  5375. #define PLAYER_061 {3C1C0D}
  5376. #define PLAYER_062 {12D6D4}
  5377. #define PLAYER_063 {48C000}
  5378. #define PLAYER_064 {2A51E2}
  5379. #define PLAYER_065 {E3AC12}
  5380. #define PLAYER_066 {FC42A8}
  5381. #define PLAYER_067 {2FC827}
  5382. #define PLAYER_068 {1A30BF}
  5383. #define PLAYER_069 {B740C2}
  5384. #define PLAYER_070 {42ACF5}
  5385. #define PLAYER_071 {2FD9DE}
  5386. #define PLAYER_072 {FAFB71}
  5387. #define PLAYER_073 {05D1CD}
  5388. #define PLAYER_074 {C471BD}
  5389. #define PLAYER_075 {94436E}
  5390. #define PLAYER_076 {C1F7EC}
  5391. #define PLAYER_077 {CE79EE}
  5392. #define PLAYER_078 {BD1EF2}
  5393. #define PLAYER_079 {93B7E4}
  5394. #define PLAYER_080 {3214AA}
  5395. #define PLAYER_081 {184D3B}
  5396. #define PLAYER_082 {AE4B99}
  5397. #define PLAYER_083 {7E49D7}
  5398. #define PLAYER_084 {4C436E}
  5399. #define PLAYER_085 {FA24CC}
  5400. #define PLAYER_086 {CE76BE}
  5401. #define PLAYER_087 {A04E0A}
  5402. #define PLAYER_088 {9F945C}
  5403. #define PLAYER_089 {DCDE3D}
  5404. #define PLAYER_090 {10C9C5}
  5405. #define PLAYER_091 {70524D}
  5406. #define PLAYER_092 {0BE472}
  5407. #define PLAYER_093 {8A2CD7}
  5408. #define PLAYER_094 {6152C2}
  5409. #define PLAYER_095 {CF72A9}
  5410. #define PLAYER_096 {E59338}
  5411. #define PLAYER_097 {EEDC2D}
  5412. #define PLAYER_098 {D8C762}
  5413. #define PLAYER_099 {D8C762}
  5414. #define PLAYER_100 {FF8C13}
  5415. #define PLAYER_101 {C715FF}
  5416. #define PLAYER_102 {20B2AA}
  5417. #define PLAYER_103 {DC143C}
  5418. #define PLAYER_104 {6495ED}
  5419. #define PLAYER_105 {F0E68C}
  5420. #define PLAYER_106 {778899}
  5421. #define PLAYER_107 {FF1493}
  5422. #define PLAYER_108 {F4A460}
  5423. #define PLAYER_109 {EE82EE}
  5424. #define PLAYER_110 {FFD720}
  5425. #define PLAYER_111 {8B4513}
  5426. #define PLAYER_112 {4949A0}
  5427. #define PLAYER_113 {148B8B}
  5428. #define PLAYER_114 {14FF7F}
  5429. #define PLAYER_115 {556B2F}
  5430. #define PLAYER_116 {0FD9FA}
  5431. #define PLAYER_117 {10DC29}
  5432. #define PLAYER_118 {534081}
  5433. #define PLAYER_119 {0495CD}
  5434. #define PLAYER_120 {EF6CE8}
  5435. #define PLAYER_121 {BD34DA}
  5436. #define PLAYER_122 {247C1B}
  5437. #define PLAYER_123 {0C8E5D}
  5438. #define PLAYER_124 {635B03}
  5439. #define PLAYER_125 {CB7ED3}
  5440. #define PLAYER_126 {65ADEB}
  5441. #define PLAYER_127 {5C1ACC}
  5442. #define PLAYER_128 {F2F853}
  5443. #define PLAYER_129 {11F891}
  5444. #define PLAYER_130 {7B39AA}
  5445. #define PLAYER_131 {53EB10}
  5446. #define PLAYER_132 {54137D}
  5447. #define PLAYER_133 {275222}
  5448. #define PLAYER_134 {F09F5B}
  5449. #define PLAYER_135 {3D0A4F}
  5450. #define PLAYER_136 {22F767}
  5451. #define PLAYER_137 {D63034}
  5452. #define PLAYER_138 {9A6980}
  5453. #define PLAYER_139 {DFB935}
  5454. #define PLAYER_140 {3793FA}
  5455. #define PLAYER_141 {90239D}
  5456. #define PLAYER_142 {E9AB2F}
  5457. #define PLAYER_143 {AF2FF3}
  5458. #define PLAYER_144 {057F94}
  5459. #define PLAYER_145 {B98519}
  5460. #define PLAYER_146 {388EEA}
  5461. #define PLAYER_147 {028151}
  5462. #define PLAYER_148 {A55043}
  5463. #define PLAYER_149 {0DE018}
  5464. #define PLAYER_150 {93AB1C}
  5465. #define PLAYER_151 {95BAF0}
  5466. #define PLAYER_152 {369976}
  5467. #define PLAYER_153 {18F71F}
  5468. #define PLAYER_154 {4B8987}
  5469. #define PLAYER_155 {491B9E}
  5470. #define PLAYER_156 {829DC7}
  5471. #define PLAYER_157 {BCE635}
  5472. #define PLAYER_158 {CEA6DF}
  5473. #define PLAYER_159 {20D4AD}
  5474. #define PLAYER_160 {2D74FD}
  5475. #define PLAYER_161 {3C1C0D}
  5476. #define PLAYER_162 {12D6D4}
  5477. #define PLAYER_163 {48C000}
  5478. #define PLAYER_164 {2A51E2}
  5479. #define PLAYER_165 {E3AC12}
  5480. #define PLAYER_166 {FC42A8}
  5481. #define PLAYER_167 {2FC827}
  5482. #define PLAYER_168 {1A30BF}
  5483. #define PLAYER_169 {B740C2}
  5484. #define PLAYER_170 {42ACF5}
  5485. #define PLAYER_171 {2FD9DE}
  5486. #define PLAYER_172 {FAFB71}
  5487. #define PLAYER_173 {05D1CD}
  5488. #define PLAYER_174 {C471BD}
  5489. #define PLAYER_175 {94436E}
  5490. #define PLAYER_176 {C1F7EC}
  5491. #define PLAYER_177 {CE79EE}
  5492. #define PLAYER_178 {BD1EF2}
  5493. #define PLAYER_179 {93B7E4}
  5494. #define PLAYER_180 {3214AA}
  5495. #define PLAYER_181 {184D3B}
  5496. #define PLAYER_182 {AE4B99}
  5497. #define PLAYER_183 {7E49D7}
  5498. #define PLAYER_184 {4C436E}
  5499. #define PLAYER_185 {FA24CC}
  5500. #define PLAYER_186 {CE76BE}
  5501. #define PLAYER_187 {A04E0A}
  5502. #define PLAYER_188 {9F945C}
  5503. #define PLAYER_189 {DCDE3D}
  5504. #define PLAYER_190 {10C9C5}
  5505. #define PLAYER_191 {70524D}
  5506. #define PLAYER_192 {0BE472}
  5507. #define PLAYER_193 {8A2CD7}
  5508. #define PLAYER_194 {6152C2}
  5509. #define PLAYER_195 {CF72A9}
  5510. #define PLAYER_196 {E59338}
  5511. #define PLAYER_197 {EEDC2D}
  5512. #define PLAYER_198 {D8C762}
  5513. #define PLAYER_199 {D8C762}
  5514. #define PLAYER_200 {FF8C13}
  5515. #define PLAYER_201 {C715FF}
  5516. #define PLAYER_202 {20B2AA}
  5517. #define PLAYER_203 {DC143C}
  5518. #define PLAYER_204 {6495ED}
  5519. #define PLAYER_205 {F0E68C}
  5520. #define PLAYER_206 {778899}
  5521. #define PLAYER_207 {FF1493}
  5522. #define PLAYER_208 {F4A460}
  5523. #define PLAYER_209 {EE82EE}
  5524. #define PLAYER_210 {FFD720}
  5525. #define PLAYER_211 {8B4513}
  5526. #define PLAYER_212 {4949A0}
  5527. #define PLAYER_213 {148B8B}
  5528. #define PLAYER_214 {14FF7F}
  5529. #define PLAYER_215 {556B2F}
  5530. #define PLAYER_216 {0FD9FA}
  5531. #define PLAYER_217 {10DC29}
  5532. #define PLAYER_218 {534081}
  5533. #define PLAYER_219 {0495CD}
  5534. #define PLAYER_220 {EF6CE8}
  5535. #define PLAYER_221 {BD34DA}
  5536. #define PLAYER_222 {247C1B}
  5537. #define PLAYER_223 {0C8E5D}
  5538. #define PLAYER_224 {635B03}
  5539. #define PLAYER_225 {CB7ED3}
  5540. #define PLAYER_226 {65ADEB}
  5541. #define PLAYER_227 {5C1ACC}
  5542. #define PLAYER_228 {F2F853}
  5543. #define PLAYER_229 {11F891}
  5544. #define PLAYER_230 {7B39AA}
  5545. #define PLAYER_231 {53EB10}
  5546. #define PLAYER_232 {54137D}
  5547. #define PLAYER_233 {275222}
  5548. #define PLAYER_234 {F09F5B}
  5549. #define PLAYER_235 {3D0A4F}
  5550. #define PLAYER_236 {22F767}
  5551. #define PLAYER_237 {D63034}
  5552. #define PLAYER_238 {9A6980}
  5553. #define PLAYER_239 {DFB935}
  5554. #define PLAYER_240 {3793FA}
  5555. #define PLAYER_241 {90239D}
  5556. #define PLAYER_242 {E9AB2F}
  5557. #define PLAYER_243 {AF2FF3}
  5558. #define PLAYER_244 {057F94}
  5559. #define PLAYER_245 {B98519}
  5560. #define PLAYER_246 {388EEA}
  5561. #define PLAYER_247 {028151}
  5562. #define PLAYER_248 {A55043}
  5563. #define PLAYER_249 {0DE018}
  5564. #define PLAYER_250 {93AB1C}
  5565. #define PLAYER_251 {95BAF0}
  5566. #define PLAYER_252 {369976}
  5567. #define PLAYER_253 {18F71F}
  5568. #define PLAYER_254 {4B8987}
  5569. #define PLAYER_255 {491B9E}
  5570. #define PLAYER_256 {829DC7}
  5571. #define PLAYER_257 {BCE635}
  5572. #define PLAYER_258 {CEA6DF}
  5573. #define PLAYER_259 {20D4AD}
  5574. #define PLAYER_260 {2D74FD}
  5575. #define PLAYER_261 {3C1C0D}
  5576. #define PLAYER_262 {12D6D4}
  5577. #define PLAYER_263 {48C000}
  5578. #define PLAYER_264 {2A51E2}
  5579. #define PLAYER_265 {E3AC12}
  5580. #define PLAYER_266 {FC42A8}
  5581. #define PLAYER_267 {2FC827}
  5582. #define PLAYER_268 {1A30BF}
  5583. #define PLAYER_269 {B740C2}
  5584. #define PLAYER_270 {42ACF5}
  5585. #define PLAYER_271 {2FD9DE}
  5586. #define PLAYER_272 {FAFB71}
  5587. #define PLAYER_273 {05D1CD}
  5588. #define PLAYER_274 {C471BD}
  5589. #define PLAYER_275 {94436E}
  5590. #define PLAYER_276 {C1F7EC}
  5591. #define PLAYER_277 {CE79EE}
  5592. #define PLAYER_278 {BD1EF2}
  5593. #define PLAYER_279 {93B7E4}
  5594. #define PLAYER_280 {3214AA}
  5595. #define PLAYER_281 {184D3B}
  5596. #define PLAYER_282 {AE4B99}
  5597. #define PLAYER_283 {7E49D7}
  5598. #define PLAYER_284 {4C436E}
  5599. #define PLAYER_285 {FA24CC}
  5600. #define PLAYER_286 {CE76BE}
  5601. #define PLAYER_287 {A04E0A}
  5602. #define PLAYER_288 {9F945C}
  5603. #define PLAYER_289 {DCDE3D}
  5604. #define PLAYER_290 {10C9C5}
  5605. #define PLAYER_291 {70524D}
  5606. #define PLAYER_292 {0BE472}
  5607. #define PLAYER_293 {8A2CD7}
  5608. #define PLAYER_294 {6152C2}
  5609. #define PLAYER_295 {CF72A9}
  5610. #define PLAYER_296 {E59338}
  5611. #define PLAYER_297 {EEDC2D}
  5612. #define PLAYER_298 {D8C762}
  5613. #define PLAYER_299 {D8C762}
  5614. #define PLAYER_300 {FF8C13}
  5615. #define PLAYER_301 {C715FF}
  5616. #define PLAYER_302 {20B2AA}
  5617. #define PLAYER_303 {DC143C}
  5618. #define PLAYER_304 {6495ED}
  5619. #define PLAYER_305 {F0E68C}
  5620. #define PLAYER_306 {778899}
  5621. #define PLAYER_307 {FF1493}
  5622. #define PLAYER_308 {F4A460}
  5623. #define PLAYER_309 {EE82EE}
  5624. #define PLAYER_310 {FFD720}
  5625. #define PLAYER_311 {8B4513}
  5626. #define PLAYER_312 {4949A0}
  5627. #define PLAYER_313 {148B8B}
  5628. #define PLAYER_314 {14FF7F}
  5629. #define PLAYER_315 {556B2F}
  5630. #define PLAYER_316 {0FD9FA}
  5631. #define PLAYER_317 {10DC29}
  5632. #define PLAYER_318 {534081}
  5633. #define PLAYER_319 {0495CD}
  5634. #define PLAYER_320 {EF6CE8}
  5635. #define PLAYER_321 {BD34DA}
  5636. #define PLAYER_322 {247C1B}
  5637. #define PLAYER_323 {0C8E5D}
  5638. #define PLAYER_324 {635B03}
  5639. #define PLAYER_325 {CB7ED3}
  5640. #define PLAYER_326 {65ADEB}
  5641. #define PLAYER_327 {5C1ACC}
  5642. #define PLAYER_328 {F2F853}
  5643. #define PLAYER_329 {11F891}
  5644. #define PLAYER_330 {7B39AA}
  5645. #define PLAYER_331 {53EB10}
  5646. #define PLAYER_332 {54137D}
  5647. #define PLAYER_333 {275222}
  5648. #define PLAYER_334 {F09F5B}
  5649. #define PLAYER_335 {3D0A4F}
  5650. #define PLAYER_336 {22F767}
  5651. #define PLAYER_337 {D63034}
  5652. #define PLAYER_338 {9A6980}
  5653. #define PLAYER_339 {DFB935}
  5654. #define PLAYER_340 {3793FA}
  5655. #define PLAYER_341 {90239D}
  5656. #define PLAYER_342 {E9AB2F}
  5657. #define PLAYER_343 {AF2FF3}
  5658. #define PLAYER_344 {057F94}
  5659. #define PLAYER_345 {B98519}
  5660. #define PLAYER_346 {388EEA}
  5661. #define PLAYER_347 {028151}
  5662. #define PLAYER_348 {A55043}
  5663. #define PLAYER_349 {0DE018}
  5664. #define PLAYER_350 {93AB1C}
  5665. #define PLAYER_351 {95BAF0}
  5666. #define PLAYER_352 {369976}
  5667. #define PLAYER_353 {18F71F}
  5668. #define PLAYER_354 {4B8987}
  5669. #define PLAYER_355 {491B9E}
  5670. #define PLAYER_356 {829DC7}
  5671. #define PLAYER_357 {BCE635}
  5672. #define PLAYER_358 {CEA6DF}
  5673. #define PLAYER_359 {20D4AD}
  5674. #define PLAYER_360 {2D74FD}
  5675. #define PLAYER_361 {3C1C0D}
  5676. #define PLAYER_362 {12D6D4}
  5677. #define PLAYER_363 {48C000}
  5678. #define PLAYER_364 {2A51E2}
  5679. #define PLAYER_365 {E3AC12}
  5680. #define PLAYER_366 {FC42A8}
  5681. #define PLAYER_367 {2FC827}
  5682. #define PLAYER_368 {1A30BF}
  5683. #define PLAYER_369 {B740C2}
  5684. #define PLAYER_370 {42ACF5}
  5685. #define PLAYER_371 {2FD9DE}
  5686. #define PLAYER_372 {FAFB71}
  5687. #define PLAYER_373 {05D1CD}
  5688. #define PLAYER_374 {C471BD}
  5689. #define PLAYER_375 {94436E}
  5690. #define PLAYER_376 {C1F7EC}
  5691. #define PLAYER_377 {CE79EE}
  5692. #define PLAYER_378 {BD1EF2}
  5693. #define PLAYER_379 {93B7E4}
  5694. #define PLAYER_380 {3214AA}
  5695. #define PLAYER_381 {184D3B}
  5696. #define PLAYER_382 {AE4B99}
  5697. #define PLAYER_383 {7E49D7}
  5698. #define PLAYER_384 {4C436E}
  5699. #define PLAYER_385 {FA24CC}
  5700. #define PLAYER_386 {CE76BE}
  5701. #define PLAYER_387 {A04E0A}
  5702. #define PLAYER_388 {9F945C}
  5703. #define PLAYER_389 {DCDE3D}
  5704. #define PLAYER_390 {10C9C5}
  5705. #define PLAYER_391 {70524D}
  5706. #define PLAYER_392 {0BE472}
  5707. #define PLAYER_393 {8A2CD7}
  5708. #define PLAYER_394 {6152C2}
  5709. #define PLAYER_395 {CF72A9}
  5710. #define PLAYER_396 {E59338}
  5711. #define PLAYER_397 {EEDC2D}
  5712. #define PLAYER_398 {D8C762}
  5713. #define PLAYER_399 {D8C762}
  5714. #define PLAYER_400 {FF8C13}
  5715. #define PLAYER_401 {C715FF}
  5716. #define PLAYER_402 {20B2AA}
  5717. #define PLAYER_403 {DC143C}
  5718. #define PLAYER_404 {6495ED}
  5719. #define PLAYER_405 {F0E68C}
  5720. #define PLAYER_406 {778899}
  5721. #define PLAYER_407 {FF1493}
  5722. #define PLAYER_408 {F4A460}
  5723. #define PLAYER_409 {EE82EE}
  5724. #define PLAYER_410 {FFD720}
  5725. #define PLAYER_411 {8B4513}
  5726. #define PLAYER_412 {4949A0}
  5727. #define PLAYER_413 {148B8B}
  5728. #define PLAYER_414 {14FF7F}
  5729. #define PLAYER_415 {556B2F}
  5730. #define PLAYER_416 {0FD9FA}
  5731. #define PLAYER_417 {10DC29}
  5732. #define PLAYER_418 {534081}
  5733. #define PLAYER_419 {0495CD}
  5734. #define PLAYER_420 {EF6CE8}
  5735. #define PLAYER_421 {BD34DA}
  5736. #define PLAYER_422 {247C1B}
  5737. #define PLAYER_423 {0C8E5D}
  5738. #define PLAYER_424 {635B03}
  5739. #define PLAYER_425 {CB7ED3}
  5740. #define PLAYER_426 {65ADEB}
  5741. #define PLAYER_427 {5C1ACC}
  5742. #define PLAYER_428 {F2F853}
  5743. #define PLAYER_429 {11F891}
  5744. #define PLAYER_430 {7B39AA}
  5745. #define PLAYER_431 {53EB10}
  5746. #define PLAYER_432 {54137D}
  5747. #define PLAYER_433 {275222}
  5748. #define PLAYER_434 {F09F5B}
  5749. #define PLAYER_435 {3D0A4F}
  5750. #define PLAYER_436 {22F767}
  5751. #define PLAYER_437 {D63034}
  5752. #define PLAYER_438 {9A6980}
  5753. #define PLAYER_439 {DFB935}
  5754. #define PLAYER_440 {3793FA}
  5755. #define PLAYER_441 {90239D}
  5756. #define PLAYER_442 {E9AB2F}
  5757. #define PLAYER_443 {AF2FF3}
  5758. #define PLAYER_444 {057F94}
  5759. #define PLAYER_445 {B98519}
  5760. #define PLAYER_446 {388EEA}
  5761. #define PLAYER_447 {028151}
  5762. #define PLAYER_448 {A55043}
  5763. #define PLAYER_449 {0DE018}
  5764. #define PLAYER_450 {93AB1C}
  5765. #define PLAYER_451 {95BAF0}
  5766. #define PLAYER_452 {369976}
  5767. #define PLAYER_453 {18F71F}
  5768. #define PLAYER_454 {4B8987}
  5769. #define PLAYER_455 {491B9E}
  5770. #define PLAYER_456 {829DC7}
  5771. #define PLAYER_457 {BCE635}
  5772. #define PLAYER_458 {CEA6DF}
  5773. #define PLAYER_459 {20D4AD}
  5774. #define PLAYER_460 {2D74FD}
  5775. #define PLAYER_461 {3C1C0D}
  5776. #define PLAYER_462 {12D6D4}
  5777. #define PLAYER_463 {48C000}
  5778. #define PLAYER_464 {2A51E2}
  5779. #define PLAYER_465 {E3AC12}
  5780. #define PLAYER_466 {FC42A8}
  5781. #define PLAYER_467 {2FC827}
  5782. #define PLAYER_468 {1A30BF}
  5783. #define PLAYER_469 {B740C2}
  5784. #define PLAYER_470 {42ACF5}
  5785. #define PLAYER_471 {2FD9DE}
  5786. #define PLAYER_472 {FAFB71}
  5787. #define PLAYER_473 {05D1CD}
  5788. #define PLAYER_474 {C471BD}
  5789. #define PLAYER_475 {94436E}
  5790. #define PLAYER_476 {C1F7EC}
  5791. #define PLAYER_477 {CE79EE}
  5792. #define PLAYER_478 {BD1EF2}
  5793. #define PLAYER_479 {93B7E4}
  5794. #define PLAYER_480 {3214AA}
  5795. #define PLAYER_481 {184D3B}
  5796. #define PLAYER_482 {AE4B99}
  5797. #define PLAYER_483 {7E49D7}
  5798. #define PLAYER_484 {4C436E}
  5799. #define PLAYER_485 {FA24CC}
  5800. #define PLAYER_486 {CE76BE}
  5801. #define PLAYER_487 {A04E0A}
  5802. #define PLAYER_488 {9F945C}
  5803. #define PLAYER_489 {DCDE3D}
  5804. #define PLAYER_490 {10C9C5}
  5805. #define PLAYER_491 {70524D}
  5806. #define PLAYER_492 {0BE472}
  5807. #define PLAYER_493 {8A2CD7}
  5808. #define PLAYER_494 {6152C2}
  5809. #define PLAYER_495 {CF72A9}
  5810. #define PLAYER_496 {E59338}
  5811. #define PLAYER_497 {EEDC2D}
  5812. #define PLAYER_498 {D8C762}
  5813. #define PLAYER_499 {D8C762}
  5814. #define PLAYER_500 {FF8C13}
  5815. #define PLAYER_501 {C715FF}
  5816. #define PLAYER_502 {20B2AA}
  5817. #define PLAYER_503 {DC143C}
  5818. #define PLAYER_504 {6495ED}
  5819. #define PLAYER_505 {F0E68C}
  5820. #define PLAYER_506 {778899}
  5821. #define PLAYER_507 {FF1493}
  5822. #define PLAYER_508 {F4A460}
  5823. #define PLAYER_509 {EE82EE}
  5824. #define PLAYER_510 {FFD720}
  5825. #define PLAYER_511 {8B4513}
  5826. #define PLAYER_512 {4949A0}
  5827. #define PLAYER_513 {148B8B}
  5828. #define PLAYER_514 {14FF7F}
  5829. #define PLAYER_515 {556B2F}
  5830. #define PLAYER_516 {0FD9FA}
  5831. #define PLAYER_517 {10DC29}
  5832. #define PLAYER_518 {534081}
  5833. #define PLAYER_519 {0495CD}
  5834. #define PLAYER_520 {EF6CE8}
  5835. #define PLAYER_521 {BD34DA}
  5836. #define PLAYER_522 {247C1B}
  5837. #define PLAYER_523 {0C8E5D}
  5838. #define PLAYER_524 {635B03}
  5839. #define PLAYER_525 {CB7ED3}
  5840. #define PLAYER_526 {65ADEB}
  5841. #define PLAYER_527 {5C1ACC}
  5842. #define PLAYER_528 {F2F853}
  5843. #define PLAYER_529 {11F891}
  5844. #define PLAYER_530 {7B39AA}
  5845. #define PLAYER_531 {53EB10}
  5846. #define PLAYER_532 {54137D}
  5847. #define PLAYER_533 {275222}
  5848. #define PLAYER_534 {F09F5B}
  5849. #define PLAYER_535 {3D0A4F}
  5850. #define PLAYER_536 {22F767}
  5851. #define PLAYER_537 {D63034}
  5852. #define PLAYER_538 {9A6980}
  5853. #define PLAYER_539 {DFB935}
  5854. #define PLAYER_540 {3793FA}
  5855. #define PLAYER_541 {90239D}
  5856. #define PLAYER_542 {E9AB2F}
  5857. #define PLAYER_543 {AF2FF3}
  5858. #define PLAYER_544 {057F94}
  5859. #define PLAYER_545 {B98519}
  5860. #define PLAYER_546 {388EEA}
  5861. #define PLAYER_547 {028151}
  5862. #define PLAYER_548 {A55043}
  5863. #define PLAYER_549 {0DE018}
  5864. #define PLAYER_550 {93AB1C}
  5865. #define PLAYER_551 {95BAF0}
  5866. #define PLAYER_552 {369976}
  5867. #define PLAYER_553 {18F71F}
  5868. #define PLAYER_554 {4B8987}
  5869. #define PLAYER_555 {491B9E}
  5870. #define PLAYER_556 {829DC7}
  5871. #define PLAYER_557 {BCE635}
  5872. #define PLAYER_558 {CEA6DF}
  5873. #define PLAYER_559 {20D4AD}
  5874. #define PLAYER_560 {2D74FD}
  5875. #define PLAYER_561 {3C1C0D}
  5876. #define PLAYER_562 {12D6D4}
  5877. #define PLAYER_563 {48C000}
  5878. #define PLAYER_564 {2A51E2}
  5879. #define PLAYER_565 {E3AC12}
  5880. #define PLAYER_566 {FC42A8}
  5881. #define PLAYER_567 {2FC827}
  5882. #define PLAYER_568 {1A30BF}
  5883. #define PLAYER_569 {B740C2}
  5884. #define PLAYER_570 {42ACF5}
  5885. #define PLAYER_571 {2FD9DE}
  5886. #define PLAYER_572 {FAFB71}
  5887. #define PLAYER_573 {05D1CD}
  5888. #define PLAYER_574 {C471BD}
  5889. #define PLAYER_575 {94436E}
  5890. #define PLAYER_576 {C1F7EC}
  5891. #define PLAYER_577 {CE79EE}
  5892. #define PLAYER_578 {BD1EF2}
  5893. #define PLAYER_579 {93B7E4}
  5894. #define PLAYER_580 {3214AA}
  5895. #define PLAYER_581 {184D3B}
  5896. #define PLAYER_582 {AE4B99}
  5897. #define PLAYER_583 {7E49D7}
  5898. #define PLAYER_584 {4C436E}
  5899. #define PLAYER_585 {FA24CC}
  5900. #define PLAYER_586 {CE76BE}
  5901. #define PLAYER_587 {A04E0A}
  5902. #define PLAYER_588 {9F945C}
  5903. #define PLAYER_589 {DCDE3D}
  5904. #define PLAYER_590 {10C9C5}
  5905. #define PLAYER_591 {70524D}
  5906. #define PLAYER_592 {0BE472}
  5907. #define PLAYER_593 {8A2CD7}
  5908. #define PLAYER_594 {6152C2}
  5909. #define PLAYER_595 {CF72A9}
  5910. #define PLAYER_596 {E59338}
  5911. #define PLAYER_597 {EEDC2D}
  5912. #define PLAYER_598 {D8C762}
  5913. #define PLAYER_599 {D8C762}
  5914. #define PLAYER_600 {FF8C13}
  5915. #define PLAYER_601 {C715FF}
  5916. #define PLAYER_602 {20B2AA}
  5917. #define PLAYER_603 {DC143C}
  5918. #define PLAYER_604 {6495ED}
  5919. #define PLAYER_605 {F0E68C}
  5920. #define PLAYER_606 {778899}
  5921. #define PLAYER_607 {FF1493}
  5922. #define PLAYER_608 {F4A460}
  5923. #define PLAYER_609 {EE82EE}
  5924. #define PLAYER_610 {FFD720}
  5925. #define PLAYER_611 {8B4513}
  5926. #define PLAYER_612 {4949A0}
  5927. #define PLAYER_613 {148B8B}
  5928. #define PLAYER_614 {14FF7F}
  5929. #define PLAYER_615 {556B2F}
  5930. #define PLAYER_616 {0FD9FA}
  5931. #define PLAYER_617 {10DC29}
  5932. #define PLAYER_618 {534081}
  5933. #define PLAYER_619 {0495CD}
  5934. #define PLAYER_620 {EF6CE8}
  5935. #define PLAYER_621 {BD34DA}
  5936. #define PLAYER_622 {247C1B}
  5937. #define PLAYER_623 {0C8E5D}
  5938. #define PLAYER_624 {635B03}
  5939. #define PLAYER_625 {CB7ED3}
  5940. #define PLAYER_626 {65ADEB}
  5941. #define PLAYER_627 {5C1ACC}
  5942. #define PLAYER_628 {F2F853}
  5943. #define PLAYER_629 {11F891}
  5944. #define PLAYER_630 {7B39AA}
  5945. #define PLAYER_631 {53EB10}
  5946. #define PLAYER_632 {54137D}
  5947. #define PLAYER_633 {275222}
  5948. #define PLAYER_634 {F09F5B}
  5949. #define PLAYER_635 {3D0A4F}
  5950. #define PLAYER_636 {22F767}
  5951. #define PLAYER_637 {D63034}
  5952. #define PLAYER_638 {9A6980}
  5953. #define PLAYER_639 {DFB935}
  5954. #define PLAYER_640 {3793FA}
  5955. #define PLAYER_641 {90239D}
  5956. #define PLAYER_642 {E9AB2F}
  5957. #define PLAYER_643 {AF2FF3}
  5958. #define PLAYER_644 {057F94}
  5959. #define PLAYER_645 {B98519}
  5960. #define PLAYER_646 {388EEA}
  5961. #define PLAYER_647 {028151}
  5962. #define PLAYER_648 {A55043}
  5963. #define PLAYER_649 {0DE018}
  5964. #define PLAYER_650 {93AB1C}
  5965. #define PLAYER_651 {95BAF0}
  5966. #define PLAYER_652 {369976}
  5967. #define PLAYER_653 {18F71F}
  5968. #define PLAYER_654 {4B8987}
  5969. #define PLAYER_655 {491B9E}
  5970. #define PLAYER_656 {829DC7}
  5971. #define PLAYER_657 {BCE635}
  5972. #define PLAYER_658 {CEA6DF}
  5973. #define PLAYER_659 {20D4AD}
  5974. #define PLAYER_660 {2D74FD}
  5975. #define PLAYER_661 {3C1C0D}
  5976. #define PLAYER_662 {12D6D4}
  5977. #define PLAYER_663 {48C000}
  5978. #define PLAYER_664 {2A51E2}
  5979. #define PLAYER_665 {E3AC12}
  5980. #define PLAYER_666 {FC42A8}
  5981. #define PLAYER_667 {2FC827}
  5982. #define PLAYER_668 {1A30BF}
  5983. #define PLAYER_669 {B740C2}
  5984. #define PLAYER_670 {42ACF5}
  5985. #define PLAYER_671 {2FD9DE}
  5986. #define PLAYER_672 {FAFB71}
  5987. #define PLAYER_673 {05D1CD}
  5988. #define PLAYER_674 {C471BD}
  5989. #define PLAYER_675 {94436E}
  5990. #define PLAYER_676 {C1F7EC}
  5991. #define PLAYER_677 {CE79EE}
  5992. #define PLAYER_678 {BD1EF2}
  5993. #define PLAYER_679 {93B7E4}
  5994. #define PLAYER_680 {3214AA}
  5995. #define PLAYER_681 {184D3B}
  5996. #define PLAYER_682 {AE4B99}
  5997. #define PLAYER_683 {7E49D7}
  5998. #define PLAYER_684 {4C436E}
  5999. #define PLAYER_685 {FA24CC}
  6000. #define PLAYER_686 {CE76BE}
  6001. #define PLAYER_687 {A04E0A}
  6002. #define PLAYER_688 {9F945C}
  6003. #define PLAYER_689 {DCDE3D}
  6004. #define PLAYER_690 {10C9C5}
  6005. #define PLAYER_691 {70524D}
  6006. #define PLAYER_692 {0BE472}
  6007. #define PLAYER_693 {8A2CD7}
  6008. #define PLAYER_694 {6152C2}
  6009. #define PLAYER_695 {CF72A9}
  6010. #define PLAYER_696 {E59338}
  6011. #define PLAYER_697 {EEDC2D}
  6012. #define PLAYER_698 {D8C762}
  6013. #define PLAYER_699 {D8C762}
  6014. #define PLAYER_700 {FF8C13}
  6015. #define PLAYER_701 {C715FF}
  6016. #define PLAYER_702 {20B2AA}
  6017. #define PLAYER_703 {DC143C}
  6018. #define PLAYER_704 {6495ED}
  6019. #define PLAYER_705 {F0E68C}
  6020. #define PLAYER_706 {778899}
  6021. #define PLAYER_707 {FF1493}
  6022. #define PLAYER_708 {F4A460}
  6023. #define PLAYER_709 {EE82EE}
  6024. #define PLAYER_710 {FFD720}
  6025. #define PLAYER_711 {8B4513}
  6026. #define PLAYER_712 {4949A0}
  6027. #define PLAYER_713 {148B8B}
  6028. #define PLAYER_714 {14FF7F}
  6029. #define PLAYER_715 {556B2F}
  6030. #define PLAYER_716 {0FD9FA}
  6031. #define PLAYER_717 {10DC29}
  6032. #define PLAYER_718 {534081}
  6033. #define PLAYER_719 {0495CD}
  6034. #define PLAYER_720 {EF6CE8}
  6035. #define PLAYER_721 {BD34DA}
  6036. #define PLAYER_722 {247C1B}
  6037. #define PLAYER_723 {0C8E5D}
  6038. #define PLAYER_724 {635B03}
  6039. #define PLAYER_725 {CB7ED3}
  6040. #define PLAYER_726 {65ADEB}
  6041. #define PLAYER_727 {5C1ACC}
  6042. #define PLAYER_728 {F2F853}
  6043. #define PLAYER_729 {11F891}
  6044. #define PLAYER_730 {7B39AA}
  6045. #define PLAYER_731 {53EB10}
  6046. #define PLAYER_732 {54137D}
  6047. #define PLAYER_733 {275222}
  6048. #define PLAYER_734 {F09F5B}
  6049. #define PLAYER_735 {3D0A4F}
  6050. #define PLAYER_736 {22F767}
  6051. #define PLAYER_737 {D63034}
  6052. #define PLAYER_738 {9A6980}
  6053. #define PLAYER_739 {DFB935}
  6054. #define PLAYER_740 {3793FA}
  6055. #define PLAYER_741 {90239D}
  6056. #define PLAYER_742 {E9AB2F}
  6057. #define PLAYER_743 {AF2FF3}
  6058. #define PLAYER_744 {057F94}
  6059. #define PLAYER_745 {B98519}
  6060. #define PLAYER_746 {388EEA}
  6061. #define PLAYER_747 {028151}
  6062. #define PLAYER_748 {A55043}
  6063. #define PLAYER_749 {0DE018}
  6064. #define PLAYER_750 {93AB1C}
  6065. #define PLAYER_751 {95BAF0}
  6066. #define PLAYER_752 {369976}
  6067. #define PLAYER_753 {18F71F}
  6068. #define PLAYER_754 {4B8987}
  6069. #define PLAYER_755 {491B9E}
  6070. #define PLAYER_756 {829DC7}
  6071. #define PLAYER_757 {BCE635}
  6072. #define PLAYER_758 {CEA6DF}
  6073. #define PLAYER_759 {20D4AD}
  6074. #define PLAYER_760 {2D74FD}
  6075. #define PLAYER_761 {3C1C0D}
  6076. #define PLAYER_762 {12D6D4}
  6077. #define PLAYER_763 {48C000}
  6078. #define PLAYER_764 {2A51E2}
  6079. #define PLAYER_765 {E3AC12}
  6080. #define PLAYER_766 {FC42A8}
  6081. #define PLAYER_767 {2FC827}
  6082. #define PLAYER_768 {1A30BF}
  6083. #define PLAYER_769 {B740C2}
  6084. #define PLAYER_770 {42ACF5}
  6085. #define PLAYER_771 {2FD9DE}
  6086. #define PLAYER_772 {FAFB71}
  6087. #define PLAYER_773 {05D1CD}
  6088. #define PLAYER_774 {C471BD}
  6089. #define PLAYER_775 {94436E}
  6090. #define PLAYER_776 {C1F7EC}
  6091. #define PLAYER_777 {CE79EE}
  6092. #define PLAYER_778 {BD1EF2}
  6093. #define PLAYER_779 {93B7E4}
  6094. #define PLAYER_780 {3214AA}
  6095. #define PLAYER_781 {184D3B}
  6096. #define PLAYER_782 {AE4B99}
  6097. #define PLAYER_783 {7E49D7}
  6098. #define PLAYER_784 {4C436E}
  6099. #define PLAYER_785 {FA24CC}
  6100. #define PLAYER_786 {CE76BE}
  6101. #define PLAYER_787 {A04E0A}
  6102. #define PLAYER_788 {9F945C}
  6103. #define PLAYER_789 {DCDE3D}
  6104. #define PLAYER_790 {10C9C5}
  6105. #define PLAYER_791 {70524D}
  6106. #define PLAYER_792 {0BE472}
  6107. #define PLAYER_793 {8A2CD7}
  6108. #define PLAYER_794 {6152C2}
  6109. #define PLAYER_795 {CF72A9}
  6110. #define PLAYER_796 {E59338}
  6111. #define PLAYER_797 {EEDC2D}
  6112. #define PLAYER_798 {D8C762}
  6113. #define PLAYER_799 {D8C762}
  6114. #define PLAYER_800 {FF8C13}
  6115. #define PLAYER_801 {C715FF}
  6116. #define PLAYER_802 {20B2AA}
  6117. #define PLAYER_803 {DC143C}
  6118. #define PLAYER_804 {6495ED}
  6119. #define PLAYER_805 {F0E68C}
  6120. #define PLAYER_806 {778899}
  6121. #define PLAYER_807 {FF1493}
  6122. #define PLAYER_808 {F4A460}
  6123. #define PLAYER_809 {EE82EE}
  6124. #define PLAYER_810 {FFD720}
  6125. #define PLAYER_811 {8B4513}
  6126. #define PLAYER_812 {4949A0}
  6127. #define PLAYER_813 {148B8B}
  6128. #define PLAYER_814 {14FF7F}
  6129. #define PLAYER_815 {556B2F}
  6130. #define PLAYER_816 {0FD9FA}
  6131. #define PLAYER_817 {10DC29}
  6132. #define PLAYER_818 {534081}
  6133. #define PLAYER_819 {0495CD}
  6134. #define PLAYER_820 {EF6CE8}
  6135. #define PLAYER_821 {BD34DA}
  6136. #define PLAYER_822 {247C1B}
  6137. #define PLAYER_823 {0C8E5D}
  6138. #define PLAYER_824 {635B03}
  6139. #define PLAYER_825 {CB7ED3}
  6140. #define PLAYER_826 {65ADEB}
  6141. #define PLAYER_827 {5C1ACC}
  6142. #define PLAYER_828 {F2F853}
  6143. #define PLAYER_829 {11F891}
  6144. #define PLAYER_830 {7B39AA}
  6145. #define PLAYER_831 {53EB10}
  6146. #define PLAYER_832 {54137D}
  6147. #define PLAYER_833 {275222}
  6148. #define PLAYER_834 {F09F5B}
  6149. #define PLAYER_835 {3D0A4F}
  6150. #define PLAYER_836 {22F767}
  6151. #define PLAYER_837 {D63034}
  6152. #define PLAYER_838 {9A6980}
  6153. #define PLAYER_839 {DFB935}
  6154. #define PLAYER_840 {3793FA}
  6155. #define PLAYER_841 {90239D}
  6156. #define PLAYER_842 {E9AB2F}
  6157. #define PLAYER_843 {AF2FF3}
  6158. #define PLAYER_844 {057F94}
  6159. #define PLAYER_845 {B98519}
  6160. #define PLAYER_846 {388EEA}
  6161. #define PLAYER_847 {028151}
  6162. #define PLAYER_848 {A55043}
  6163. #define PLAYER_849 {0DE018}
  6164. #define PLAYER_850 {93AB1C}
  6165. #define PLAYER_851 {95BAF0}
  6166. #define PLAYER_852 {369976}
  6167. #define PLAYER_853 {18F71F}
  6168. #define PLAYER_854 {4B8987}
  6169. #define PLAYER_855 {491B9E}
  6170. #define PLAYER_856 {829DC7}
  6171. #define PLAYER_857 {BCE635}
  6172. #define PLAYER_858 {CEA6DF}
  6173. #define PLAYER_859 {20D4AD}
  6174. #define PLAYER_860 {2D74FD}
  6175. #define PLAYER_861 {3C1C0D}
  6176. #define PLAYER_862 {12D6D4}
  6177. #define PLAYER_863 {48C000}
  6178. #define PLAYER_864 {2A51E2}
  6179. #define PLAYER_865 {E3AC12}
  6180. #define PLAYER_866 {FC42A8}
  6181. #define PLAYER_867 {2FC827}
  6182. #define PLAYER_868 {1A30BF}
  6183. #define PLAYER_869 {B740C2}
  6184. #define PLAYER_870 {42ACF5}
  6185. #define PLAYER_871 {2FD9DE}
  6186. #define PLAYER_872 {FAFB71}
  6187. #define PLAYER_873 {05D1CD}
  6188. #define PLAYER_874 {C471BD}
  6189. #define PLAYER_875 {94436E}
  6190. #define PLAYER_876 {C1F7EC}
  6191. #define PLAYER_877 {CE79EE}
  6192. #define PLAYER_878 {BD1EF2}
  6193. #define PLAYER_879 {93B7E4}
  6194. #define PLAYER_880 {3214AA}
  6195. #define PLAYER_881 {184D3B}
  6196. #define PLAYER_882 {AE4B99}
  6197. #define PLAYER_883 {7E49D7}
  6198. #define PLAYER_884 {4C436E}
  6199. #define PLAYER_885 {FA24CC}
  6200. #define PLAYER_886 {CE76BE}
  6201. #define PLAYER_887 {A04E0A}
  6202. #define PLAYER_888 {9F945C}
  6203. #define PLAYER_889 {DCDE3D}
  6204. #define PLAYER_890 {10C9C5}
  6205. #define PLAYER_891 {70524D}
  6206. #define PLAYER_892 {0BE472}
  6207. #define PLAYER_893 {8A2CD7}
  6208. #define PLAYER_894 {6152C2}
  6209. #define PLAYER_895 {CF72A9}
  6210. #define PLAYER_896 {E59338}
  6211. #define PLAYER_897 {EEDC2D}
  6212. #define PLAYER_898 {D8C762}
  6213. #define PLAYER_899 {D8C762}
  6214. #define PLAYER_900 {FF8C13}
  6215. #define PLAYER_901 {C715FF}
  6216. #define PLAYER_902 {20B2AA}
  6217. #define PLAYER_903 {DC143C}
  6218. #define PLAYER_904 {6495ED}
  6219. #define PLAYER_905 {F0E68C}
  6220. #define PLAYER_906 {778899}
  6221. #define PLAYER_907 {FF1493}
  6222. #define PLAYER_908 {F4A460}
  6223. #define PLAYER_909 {EE82EE}
  6224. #define PLAYER_910 {FFD720}
  6225. #define PLAYER_911 {8B4513}
  6226. #define PLAYER_912 {4949A0}
  6227. #define PLAYER_913 {148B8B}
  6228. #define PLAYER_914 {14FF7F}
  6229. #define PLAYER_915 {556B2F}
  6230. #define PLAYER_916 {0FD9FA}
  6231. #define PLAYER_917 {10DC29}
  6232. #define PLAYER_918 {534081}
  6233. #define PLAYER_919 {0495CD}
  6234. #define PLAYER_920 {EF6CE8}
  6235. #define PLAYER_921 {BD34DA}
  6236. #define PLAYER_922 {247C1B}
  6237. #define PLAYER_923 {0C8E5D}
  6238. #define PLAYER_924 {635B03}
  6239. #define PLAYER_925 {CB7ED3}
  6240. #define PLAYER_926 {65ADEB}
  6241. #define PLAYER_927 {5C1ACC}
  6242. #define PLAYER_928 {F2F853}
  6243. #define PLAYER_929 {11F891}
  6244. #define PLAYER_930 {7B39AA}
  6245. #define PLAYER_931 {53EB10}
  6246. #define PLAYER_932 {54137D}
  6247. #define PLAYER_933 {275222}
  6248. #define PLAYER_934 {F09F5B}
  6249. #define PLAYER_935 {3D0A4F}
  6250. #define PLAYER_936 {22F767}
  6251. #define PLAYER_937 {D63034}
  6252. #define PLAYER_938 {9A6980}
  6253. #define PLAYER_939 {DFB935}
  6254. #define PLAYER_940 {3793FA}
  6255. #define PLAYER_941 {90239D}
  6256. #define PLAYER_942 {E9AB2F}
  6257. #define PLAYER_943 {AF2FF3}
  6258. #define PLAYER_944 {057F94}
  6259. #define PLAYER_945 {B98519}
  6260. #define PLAYER_946 {388EEA}
  6261. #define PLAYER_947 {028151}
  6262. #define PLAYER_948 {A55043}
  6263. #define PLAYER_949 {0DE018}
  6264. #define PLAYER_950 {93AB1C}
  6265. #define PLAYER_951 {95BAF0}
  6266. #define PLAYER_952 {369976}
  6267. #define PLAYER_953 {18F71F}
  6268. #define PLAYER_954 {4B8987}
  6269. #define PLAYER_955 {491B9E}
  6270. #define PLAYER_956 {829DC7}
  6271. #define PLAYER_957 {BCE635}
  6272. #define PLAYER_958 {CEA6DF}
  6273. #define PLAYER_959 {20D4AD}
  6274. #define PLAYER_960 {2D74FD}
  6275. #define PLAYER_961 {3C1C0D}
  6276. #define PLAYER_962 {12D6D4}
  6277. #define PLAYER_963 {48C000}
  6278. #define PLAYER_964 {2A51E2}
  6279. #define PLAYER_965 {E3AC12}
  6280. #define PLAYER_966 {FC42A8}
  6281. #define PLAYER_967 {2FC827}
  6282. #define PLAYER_968 {1A30BF}
  6283. #define PLAYER_969 {B740C2}
  6284. #define PLAYER_970 {42ACF5}
  6285. #define PLAYER_971 {2FD9DE}
  6286. #define PLAYER_972 {FAFB71}
  6287. #define PLAYER_973 {05D1CD}
  6288. #define PLAYER_974 {C471BD}
  6289. #define PLAYER_975 {94436E}
  6290. #define PLAYER_976 {C1F7EC}
  6291. #define PLAYER_977 {CE79EE}
  6292. #define PLAYER_978 {BD1EF2}
  6293. #define PLAYER_979 {93B7E4}
  6294. #define PLAYER_980 {3214AA}
  6295. #define PLAYER_981 {184D3B}
  6296. #define PLAYER_982 {AE4B99}
  6297. #define PLAYER_983 {7E49D7}
  6298. #define PLAYER_984 {4C436E}
  6299. #define PLAYER_985 {FA24CC}
  6300. #define PLAYER_986 {CE76BE}
  6301. #define PLAYER_987 {A04E0A}
  6302. #define PLAYER_988 {9F945C}
  6303. #define PLAYER_989 {DCDE3D}
  6304. #define PLAYER_990 {10C9C5}
  6305. #define PLAYER_991 {70524D}
  6306. #define PLAYER_992 {0BE472}
  6307. #define PLAYER_993 {8A2CD7}
  6308. #define PLAYER_994 {6152C2}
  6309. #define PLAYER_995 {CF72A9}
  6310. #define PLAYER_996 {E59338}
  6311. #define PLAYER_997 {EEDC2D}
  6312. #define PLAYER_998 {D8C762}
  6313. #define PLAYER_999 {D8C762}
  6314. #define PLAYER0 {FF8C13}
  6315. #define PLAYER1 {C715FF}
  6316. #define PLAYER2 {20B2AA}
  6317. #define PLAYER3 {DC143C}
  6318. #define PLAYER4 {6495ED}
  6319. #define PLAYER5 {F0E68C}
  6320. #define PLAYER6 {778899}
  6321. #define PLAYER7 {FF1493}
  6322. #define PLAYER8 {F4A460}
  6323. #define PLAYER9 {EE82EE}
  6324. #define PLAYER10 {FFD720}
  6325. #define PLAYER11 {8B4513}
  6326. #define PLAYER12 {4949A0}
  6327. #define PLAYER13 {148B8B}
  6328. #define PLAYER14 {14FF7F}
  6329. #define PLAYER15 {556B2F}
  6330. #define PLAYER16 {0FD9FA}
  6331. #define PLAYER17 {10DC29}
  6332. #define PLAYER18 {534081}
  6333. #define PLAYER19 {0495CD}
  6334. #define PLAYER20 {EF6CE8}
  6335. #define PLAYER21 {BD34DA}
  6336. #define PLAYER22 {247C1B}
  6337. #define PLAYER23 {0C8E5D}
  6338. #define PLAYER24 {635B03}
  6339. #define PLAYER25 {CB7ED3}
  6340. #define PLAYER26 {65ADEB}
  6341. #define PLAYER27 {5C1ACC}
  6342. #define PLAYER28 {F2F853}
  6343. #define PLAYER29 {11F891}
  6344. #define PLAYER30 {7B39AA}
  6345. #define PLAYER31 {53EB10}
  6346. #define PLAYER32 {54137D}
  6347. #define PLAYER33 {275222}
  6348. #define PLAYER34 {F09F5B}
  6349. #define PLAYER35 {3D0A4F}
  6350. #define PLAYER36 {22F767}
  6351. #define PLAYER37 {D63034}
  6352. #define PLAYER38 {9A6980}
  6353. #define PLAYER39 {DFB935}
  6354. #define PLAYER40 {3793FA}
  6355. #define PLAYER41 {90239D}
  6356. #define PLAYER42 {E9AB2F}
  6357. #define PLAYER43 {AF2FF3}
  6358. #define PLAYER44 {057F94}
  6359. #define PLAYER45 {B98519}
  6360. #define PLAYER46 {388EEA}
  6361. #define PLAYER47 {028151}
  6362. #define PLAYER48 {A55043}
  6363. #define PLAYER49 {0DE018}
  6364. #define PLAYER50 {93AB1C}
  6365. #define PLAYER51 {95BAF0}
  6366. #define PLAYER52 {369976}
  6367. #define PLAYER53 {18F71F}
  6368. #define PLAYER54 {4B8987}
  6369. #define PLAYER55 {491B9E}
  6370. #define PLAYER56 {829DC7}
  6371. #define PLAYER57 {BCE635}
  6372. #define PLAYER58 {CEA6DF}
  6373. #define PLAYER59 {20D4AD}
  6374. #define PLAYER60 {2D74FD}
  6375. #define PLAYER61 {3C1C0D}
  6376. #define PLAYER62 {12D6D4}
  6377. #define PLAYER63 {48C000}
  6378. #define PLAYER64 {2A51E2}
  6379. #define PLAYER65 {E3AC12}
  6380. #define PLAYER66 {FC42A8}
  6381. #define PLAYER67 {2FC827}
  6382. #define PLAYER68 {1A30BF}
  6383. #define PLAYER69 {B740C2}
  6384. #define PLAYER70 {42ACF5}
  6385. #define PLAYER71 {2FD9DE}
  6386. #define PLAYER72 {FAFB71}
  6387. #define PLAYER73 {05D1CD}
  6388. #define PLAYER74 {C471BD}
  6389. #define PLAYER75 {94436E}
  6390. #define PLAYER76 {C1F7EC}
  6391. #define PLAYER77 {CE79EE}
  6392. #define PLAYER78 {BD1EF2}
  6393. #define PLAYER79 {93B7E4}
  6394. #define PLAYER80 {3214AA}
  6395. #define PLAYER81 {184D3B}
  6396. #define PLAYER82 {AE4B99}
  6397. #define PLAYER83 {7E49D7}
  6398. #define PLAYER84 {4C436E}
  6399. #define PLAYER85 {FA24CC}
  6400. #define PLAYER86 {CE76BE}
  6401. #define PLAYER87 {A04E0A}
  6402. #define PLAYER88 {9F945C}
  6403. #define PLAYER89 {DCDE3D}
  6404. #define PLAYER90 {10C9C5}
  6405. #define PLAYER91 {70524D}
  6406. #define PLAYER92 {0BE472}
  6407. #define PLAYER93 {8A2CD7}
  6408. #define PLAYER94 {6152C2}
  6409. #define PLAYER95 {CF72A9}
  6410. #define PLAYER96 {E59338}
  6411. #define PLAYER97 {EEDC2D}
  6412. #define PLAYER98 {D8C762}
  6413. #define PLAYER99 {D8C762}
  6414. #define PLAYER000 {FF8C13}
  6415. #define PLAYER001 {C715FF}
  6416. #define PLAYER002 {20B2AA}
  6417. #define PLAYER003 {DC143C}
  6418. #define PLAYER004 {6495ED}
  6419. #define PLAYER005 {F0E68C}
  6420. #define PLAYER006 {778899}
  6421. #define PLAYER007 {FF1493}
  6422. #define PLAYER008 {F4A460}
  6423. #define PLAYER009 {EE82EE}
  6424. #define PLAYER010 {FFD720}
  6425. #define PLAYER011 {8B4513}
  6426. #define PLAYER012 {4949A0}
  6427. #define PLAYER013 {148B8B}
  6428. #define PLAYER014 {14FF7F}
  6429. #define PLAYER015 {556B2F}
  6430. #define PLAYER016 {0FD9FA}
  6431. #define PLAYER017 {10DC29}
  6432. #define PLAYER018 {534081}
  6433. #define PLAYER019 {0495CD}
  6434. #define PLAYER020 {EF6CE8}
  6435. #define PLAYER021 {BD34DA}
  6436. #define PLAYER022 {247C1B}
  6437. #define PLAYER023 {0C8E5D}
  6438. #define PLAYER024 {635B03}
  6439. #define PLAYER025 {CB7ED3}
  6440. #define PLAYER026 {65ADEB}
  6441. #define PLAYER027 {5C1ACC}
  6442. #define PLAYER028 {F2F853}
  6443. #define PLAYER029 {11F891}
  6444. #define PLAYER030 {7B39AA}
  6445. #define PLAYER031 {53EB10}
  6446. #define PLAYER032 {54137D}
  6447. #define PLAYER033 {275222}
  6448. #define PLAYER034 {F09F5B}
  6449. #define PLAYER035 {3D0A4F}
  6450. #define PLAYER036 {22F767}
  6451. #define PLAYER037 {D63034}
  6452. #define PLAYER038 {9A6980}
  6453. #define PLAYER039 {DFB935}
  6454. #define PLAYER040 {3793FA}
  6455. #define PLAYER041 {90239D}
  6456. #define PLAYER042 {E9AB2F}
  6457. #define PLAYER043 {AF2FF3}
  6458. #define PLAYER044 {057F94}
  6459. #define PLAYER045 {B98519}
  6460. #define PLAYER046 {388EEA}
  6461. #define PLAYER047 {028151}
  6462. #define PLAYER048 {A55043}
  6463. #define PLAYER049 {0DE018}
  6464. #define PLAYER050 {93AB1C}
  6465. #define PLAYER051 {95BAF0}
  6466. #define PLAYER052 {369976}
  6467. #define PLAYER053 {18F71F}
  6468. #define PLAYER054 {4B8987}
  6469. #define PLAYER055 {491B9E}
  6470. #define PLAYER056 {829DC7}
  6471. #define PLAYER057 {BCE635}
  6472. #define PLAYER058 {CEA6DF}
  6473. #define PLAYER059 {20D4AD}
  6474. #define PLAYER060 {2D74FD}
  6475. #define PLAYER061 {3C1C0D}
  6476. #define PLAYER062 {12D6D4}
  6477. #define PLAYER063 {48C000}
  6478. #define PLAYER064 {2A51E2}
  6479. #define PLAYER065 {E3AC12}
  6480. #define PLAYER066 {FC42A8}
  6481. #define PLAYER067 {2FC827}
  6482. #define PLAYER068 {1A30BF}
  6483. #define PLAYER069 {B740C2}
  6484. #define PLAYER070 {42ACF5}
  6485. #define PLAYER071 {2FD9DE}
  6486. #define PLAYER072 {FAFB71}
  6487. #define PLAYER073 {05D1CD}
  6488. #define PLAYER074 {C471BD}
  6489. #define PLAYER075 {94436E}
  6490. #define PLAYER076 {C1F7EC}
  6491. #define PLAYER077 {CE79EE}
  6492. #define PLAYER078 {BD1EF2}
  6493. #define PLAYER079 {93B7E4}
  6494. #define PLAYER080 {3214AA}
  6495. #define PLAYER081 {184D3B}
  6496. #define PLAYER082 {AE4B99}
  6497. #define PLAYER083 {7E49D7}
  6498. #define PLAYER084 {4C436E}
  6499. #define PLAYER085 {FA24CC}
  6500. #define PLAYER086 {CE76BE}
  6501. #define PLAYER087 {A04E0A}
  6502. #define PLAYER088 {9F945C}
  6503. #define PLAYER089 {DCDE3D}
  6504. #define PLAYER090 {10C9C5}
  6505. #define PLAYER091 {70524D}
  6506. #define PLAYER092 {0BE472}
  6507. #define PLAYER093 {8A2CD7}
  6508. #define PLAYER094 {6152C2}
  6509. #define PLAYER095 {CF72A9}
  6510. #define PLAYER096 {E59338}
  6511. #define PLAYER097 {EEDC2D}
  6512. #define PLAYER098 {D8C762}
  6513. #define PLAYER099 {D8C762}
  6514. #define PLAYER100 {FF8C13}
  6515. #define PLAYER101 {C715FF}
  6516. #define PLAYER102 {20B2AA}
  6517. #define PLAYER103 {DC143C}
  6518. #define PLAYER104 {6495ED}
  6519. #define PLAYER105 {F0E68C}
  6520. #define PLAYER106 {778899}
  6521. #define PLAYER107 {FF1493}
  6522. #define PLAYER108 {F4A460}
  6523. #define PLAYER109 {EE82EE}
  6524. #define PLAYER110 {FFD720}
  6525. #define PLAYER111 {8B4513}
  6526. #define PLAYER112 {4949A0}
  6527. #define PLAYER113 {148B8B}
  6528. #define PLAYER114 {14FF7F}
  6529. #define PLAYER115 {556B2F}
  6530. #define PLAYER116 {0FD9FA}
  6531. #define PLAYER117 {10DC29}
  6532. #define PLAYER118 {534081}
  6533. #define PLAYER119 {0495CD}
  6534. #define PLAYER120 {EF6CE8}
  6535. #define PLAYER121 {BD34DA}
  6536. #define PLAYER122 {247C1B}
  6537. #define PLAYER123 {0C8E5D}
  6538. #define PLAYER124 {635B03}
  6539. #define PLAYER125 {CB7ED3}
  6540. #define PLAYER126 {65ADEB}
  6541. #define PLAYER127 {5C1ACC}
  6542. #define PLAYER128 {F2F853}
  6543. #define PLAYER129 {11F891}
  6544. #define PLAYER130 {7B39AA}
  6545. #define PLAYER131 {53EB10}
  6546. #define PLAYER132 {54137D}
  6547. #define PLAYER133 {275222}
  6548. #define PLAYER134 {F09F5B}
  6549. #define PLAYER135 {3D0A4F}
  6550. #define PLAYER136 {22F767}
  6551. #define PLAYER137 {D63034}
  6552. #define PLAYER138 {9A6980}
  6553. #define PLAYER139 {DFB935}
  6554. #define PLAYER140 {3793FA}
  6555. #define PLAYER141 {90239D}
  6556. #define PLAYER142 {E9AB2F}
  6557. #define PLAYER143 {AF2FF3}
  6558. #define PLAYER144 {057F94}
  6559. #define PLAYER145 {B98519}
  6560. #define PLAYER146 {388EEA}
  6561. #define PLAYER147 {028151}
  6562. #define PLAYER148 {A55043}
  6563. #define PLAYER149 {0DE018}
  6564. #define PLAYER150 {93AB1C}
  6565. #define PLAYER151 {95BAF0}
  6566. #define PLAYER152 {369976}
  6567. #define PLAYER153 {18F71F}
  6568. #define PLAYER154 {4B8987}
  6569. #define PLAYER155 {491B9E}
  6570. #define PLAYER156 {829DC7}
  6571. #define PLAYER157 {BCE635}
  6572. #define PLAYER158 {CEA6DF}
  6573. #define PLAYER159 {20D4AD}
  6574. #define PLAYER160 {2D74FD}
  6575. #define PLAYER161 {3C1C0D}
  6576. #define PLAYER162 {12D6D4}
  6577. #define PLAYER163 {48C000}
  6578. #define PLAYER164 {2A51E2}
  6579. #define PLAYER165 {E3AC12}
  6580. #define PLAYER166 {FC42A8}
  6581. #define PLAYER167 {2FC827}
  6582. #define PLAYER168 {1A30BF}
  6583. #define PLAYER169 {B740C2}
  6584. #define PLAYER170 {42ACF5}
  6585. #define PLAYER171 {2FD9DE}
  6586. #define PLAYER172 {FAFB71}
  6587. #define PLAYER173 {05D1CD}
  6588. #define PLAYER174 {C471BD}
  6589. #define PLAYER175 {94436E}
  6590. #define PLAYER176 {C1F7EC}
  6591. #define PLAYER177 {CE79EE}
  6592. #define PLAYER178 {BD1EF2}
  6593. #define PLAYER179 {93B7E4}
  6594. #define PLAYER180 {3214AA}
  6595. #define PLAYER181 {184D3B}
  6596. #define PLAYER182 {AE4B99}
  6597. #define PLAYER183 {7E49D7}
  6598. #define PLAYER184 {4C436E}
  6599. #define PLAYER185 {FA24CC}
  6600. #define PLAYER186 {CE76BE}
  6601. #define PLAYER187 {A04E0A}
  6602. #define PLAYER188 {9F945C}
  6603. #define PLAYER189 {DCDE3D}
  6604. #define PLAYER190 {10C9C5}
  6605. #define PLAYER191 {70524D}
  6606. #define PLAYER192 {0BE472}
  6607. #define PLAYER193 {8A2CD7}
  6608. #define PLAYER194 {6152C2}
  6609. #define PLAYER195 {CF72A9}
  6610. #define PLAYER196 {E59338}
  6611. #define PLAYER197 {EEDC2D}
  6612. #define PLAYER198 {D8C762}
  6613. #define PLAYER199 {D8C762}
  6614. #define PLAYER200 {FF8C13}
  6615. #define PLAYER201 {C715FF}
  6616. #define PLAYER202 {20B2AA}
  6617. #define PLAYER203 {DC143C}
  6618. #define PLAYER204 {6495ED}
  6619. #define PLAYER205 {F0E68C}
  6620. #define PLAYER206 {778899}
  6621. #define PLAYER207 {FF1493}
  6622. #define PLAYER208 {F4A460}
  6623. #define PLAYER209 {EE82EE}
  6624. #define PLAYER210 {FFD720}
  6625. #define PLAYER211 {8B4513}
  6626. #define PLAYER212 {4949A0}
  6627. #define PLAYER213 {148B8B}
  6628. #define PLAYER214 {14FF7F}
  6629. #define PLAYER215 {556B2F}
  6630. #define PLAYER216 {0FD9FA}
  6631. #define PLAYER217 {10DC29}
  6632. #define PLAYER218 {534081}
  6633. #define PLAYER219 {0495CD}
  6634. #define PLAYER220 {EF6CE8}
  6635. #define PLAYER221 {BD34DA}
  6636. #define PLAYER222 {247C1B}
  6637. #define PLAYER223 {0C8E5D}
  6638. #define PLAYER224 {635B03}
  6639. #define PLAYER225 {CB7ED3}
  6640. #define PLAYER226 {65ADEB}
  6641. #define PLAYER227 {5C1ACC}
  6642. #define PLAYER228 {F2F853}
  6643. #define PLAYER229 {11F891}
  6644. #define PLAYER230 {7B39AA}
  6645. #define PLAYER231 {53EB10}
  6646. #define PLAYER232 {54137D}
  6647. #define PLAYER233 {275222}
  6648. #define PLAYER234 {F09F5B}
  6649. #define PLAYER235 {3D0A4F}
  6650. #define PLAYER236 {22F767}
  6651. #define PLAYER237 {D63034}
  6652. #define PLAYER238 {9A6980}
  6653. #define PLAYER239 {DFB935}
  6654. #define PLAYER240 {3793FA}
  6655. #define PLAYER241 {90239D}
  6656. #define PLAYER242 {E9AB2F}
  6657. #define PLAYER243 {AF2FF3}
  6658. #define PLAYER244 {057F94}
  6659. #define PLAYER245 {B98519}
  6660. #define PLAYER246 {388EEA}
  6661. #define PLAYER247 {028151}
  6662. #define PLAYER248 {A55043}
  6663. #define PLAYER249 {0DE018}
  6664. #define PLAYER250 {93AB1C}
  6665. #define PLAYER251 {95BAF0}
  6666. #define PLAYER252 {369976}
  6667. #define PLAYER253 {18F71F}
  6668. #define PLAYER254 {4B8987}
  6669. #define PLAYER255 {491B9E}
  6670. #define PLAYER256 {829DC7}
  6671. #define PLAYER257 {BCE635}
  6672. #define PLAYER258 {CEA6DF}
  6673. #define PLAYER259 {20D4AD}
  6674. #define PLAYER260 {2D74FD}
  6675. #define PLAYER261 {3C1C0D}
  6676. #define PLAYER262 {12D6D4}
  6677. #define PLAYER263 {48C000}
  6678. #define PLAYER264 {2A51E2}
  6679. #define PLAYER265 {E3AC12}
  6680. #define PLAYER266 {FC42A8}
  6681. #define PLAYER267 {2FC827}
  6682. #define PLAYER268 {1A30BF}
  6683. #define PLAYER269 {B740C2}
  6684. #define PLAYER270 {42ACF5}
  6685. #define PLAYER271 {2FD9DE}
  6686. #define PLAYER272 {FAFB71}
  6687. #define PLAYER273 {05D1CD}
  6688. #define PLAYER274 {C471BD}
  6689. #define PLAYER275 {94436E}
  6690. #define PLAYER276 {C1F7EC}
  6691. #define PLAYER277 {CE79EE}
  6692. #define PLAYER278 {BD1EF2}
  6693. #define PLAYER279 {93B7E4}
  6694. #define PLAYER280 {3214AA}
  6695. #define PLAYER281 {184D3B}
  6696. #define PLAYER282 {AE4B99}
  6697. #define PLAYER283 {7E49D7}
  6698. #define PLAYER284 {4C436E}
  6699. #define PLAYER285 {FA24CC}
  6700. #define PLAYER286 {CE76BE}
  6701. #define PLAYER287 {A04E0A}
  6702. #define PLAYER288 {9F945C}
  6703. #define PLAYER289 {DCDE3D}
  6704. #define PLAYER290 {10C9C5}
  6705. #define PLAYER291 {70524D}
  6706. #define PLAYER292 {0BE472}
  6707. #define PLAYER293 {8A2CD7}
  6708. #define PLAYER294 {6152C2}
  6709. #define PLAYER295 {CF72A9}
  6710. #define PLAYER296 {E59338}
  6711. #define PLAYER297 {EEDC2D}
  6712. #define PLAYER298 {D8C762}
  6713. #define PLAYER299 {D8C762}
  6714. #define PLAYER300 {FF8C13}
  6715. #define PLAYER301 {C715FF}
  6716. #define PLAYER302 {20B2AA}
  6717. #define PLAYER303 {DC143C}
  6718. #define PLAYER304 {6495ED}
  6719. #define PLAYER305 {F0E68C}
  6720. #define PLAYER306 {778899}
  6721. #define PLAYER307 {FF1493}
  6722. #define PLAYER308 {F4A460}
  6723. #define PLAYER309 {EE82EE}
  6724. #define PLAYER310 {FFD720}
  6725. #define PLAYER311 {8B4513}
  6726. #define PLAYER312 {4949A0}
  6727. #define PLAYER313 {148B8B}
  6728. #define PLAYER314 {14FF7F}
  6729. #define PLAYER315 {556B2F}
  6730. #define PLAYER316 {0FD9FA}
  6731. #define PLAYER317 {10DC29}
  6732. #define PLAYER318 {534081}
  6733. #define PLAYER319 {0495CD}
  6734. #define PLAYER320 {EF6CE8}
  6735. #define PLAYER321 {BD34DA}
  6736. #define PLAYER322 {247C1B}
  6737. #define PLAYER323 {0C8E5D}
  6738. #define PLAYER324 {635B03}
  6739. #define PLAYER325 {CB7ED3}
  6740. #define PLAYER326 {65ADEB}
  6741. #define PLAYER327 {5C1ACC}
  6742. #define PLAYER328 {F2F853}
  6743. #define PLAYER329 {11F891}
  6744. #define PLAYER330 {7B39AA}
  6745. #define PLAYER331 {53EB10}
  6746. #define PLAYER332 {54137D}
  6747. #define PLAYER333 {275222}
  6748. #define PLAYER334 {F09F5B}
  6749. #define PLAYER335 {3D0A4F}
  6750. #define PLAYER336 {22F767}
  6751. #define PLAYER337 {D63034}
  6752. #define PLAYER338 {9A6980}
  6753. #define PLAYER339 {DFB935}
  6754. #define PLAYER340 {3793FA}
  6755. #define PLAYER341 {90239D}
  6756. #define PLAYER342 {E9AB2F}
  6757. #define PLAYER343 {AF2FF3}
  6758. #define PLAYER344 {057F94}
  6759. #define PLAYER345 {B98519}
  6760. #define PLAYER346 {388EEA}
  6761. #define PLAYER347 {028151}
  6762. #define PLAYER348 {A55043}
  6763. #define PLAYER349 {0DE018}
  6764. #define PLAYER350 {93AB1C}
  6765. #define PLAYER351 {95BAF0}
  6766. #define PLAYER352 {369976}
  6767. #define PLAYER353 {18F71F}
  6768. #define PLAYER354 {4B8987}
  6769. #define PLAYER355 {491B9E}
  6770. #define PLAYER356 {829DC7}
  6771. #define PLAYER357 {BCE635}
  6772. #define PLAYER358 {CEA6DF}
  6773. #define PLAYER359 {20D4AD}
  6774. #define PLAYER360 {2D74FD}
  6775. #define PLAYER361 {3C1C0D}
  6776. #define PLAYER362 {12D6D4}
  6777. #define PLAYER363 {48C000}
  6778. #define PLAYER364 {2A51E2}
  6779. #define PLAYER365 {E3AC12}
  6780. #define PLAYER366 {FC42A8}
  6781. #define PLAYER367 {2FC827}
  6782. #define PLAYER368 {1A30BF}
  6783. #define PLAYER369 {B740C2}
  6784. #define PLAYER370 {42ACF5}
  6785. #define PLAYER371 {2FD9DE}
  6786. #define PLAYER372 {FAFB71}
  6787. #define PLAYER373 {05D1CD}
  6788. #define PLAYER374 {C471BD}
  6789. #define PLAYER375 {94436E}
  6790. #define PLAYER376 {C1F7EC}
  6791. #define PLAYER377 {CE79EE}
  6792. #define PLAYER378 {BD1EF2}
  6793. #define PLAYER379 {93B7E4}
  6794. #define PLAYER380 {3214AA}
  6795. #define PLAYER381 {184D3B}
  6796. #define PLAYER382 {AE4B99}
  6797. #define PLAYER383 {7E49D7}
  6798. #define PLAYER384 {4C436E}
  6799. #define PLAYER385 {FA24CC}
  6800. #define PLAYER386 {CE76BE}
  6801. #define PLAYER387 {A04E0A}
  6802. #define PLAYER388 {9F945C}
  6803. #define PLAYER389 {DCDE3D}
  6804. #define PLAYER390 {10C9C5}
  6805. #define PLAYER391 {70524D}
  6806. #define PLAYER392 {0BE472}
  6807. #define PLAYER393 {8A2CD7}
  6808. #define PLAYER394 {6152C2}
  6809. #define PLAYER395 {CF72A9}
  6810. #define PLAYER396 {E59338}
  6811. #define PLAYER397 {EEDC2D}
  6812. #define PLAYER398 {D8C762}
  6813. #define PLAYER399 {D8C762}
  6814. #define PLAYER400 {FF8C13}
  6815. #define PLAYER401 {C715FF}
  6816. #define PLAYER402 {20B2AA}
  6817. #define PLAYER403 {DC143C}
  6818. #define PLAYER404 {6495ED}
  6819. #define PLAYER405 {F0E68C}
  6820. #define PLAYER406 {778899}
  6821. #define PLAYER407 {FF1493}
  6822. #define PLAYER408 {F4A460}
  6823. #define PLAYER409 {EE82EE}
  6824. #define PLAYER410 {FFD720}
  6825. #define PLAYER411 {8B4513}
  6826. #define PLAYER412 {4949A0}
  6827. #define PLAYER413 {148B8B}
  6828. #define PLAYER414 {14FF7F}
  6829. #define PLAYER415 {556B2F}
  6830. #define PLAYER416 {0FD9FA}
  6831. #define PLAYER417 {10DC29}
  6832. #define PLAYER418 {534081}
  6833. #define PLAYER419 {0495CD}
  6834. #define PLAYER420 {EF6CE8}
  6835. #define PLAYER421 {BD34DA}
  6836. #define PLAYER422 {247C1B}
  6837. #define PLAYER423 {0C8E5D}
  6838. #define PLAYER424 {635B03}
  6839. #define PLAYER425 {CB7ED3}
  6840. #define PLAYER426 {65ADEB}
  6841. #define PLAYER427 {5C1ACC}
  6842. #define PLAYER428 {F2F853}
  6843. #define PLAYER429 {11F891}
  6844. #define PLAYER430 {7B39AA}
  6845. #define PLAYER431 {53EB10}
  6846. #define PLAYER432 {54137D}
  6847. #define PLAYER433 {275222}
  6848. #define PLAYER434 {F09F5B}
  6849. #define PLAYER435 {3D0A4F}
  6850. #define PLAYER436 {22F767}
  6851. #define PLAYER437 {D63034}
  6852. #define PLAYER438 {9A6980}
  6853. #define PLAYER439 {DFB935}
  6854. #define PLAYER440 {3793FA}
  6855. #define PLAYER441 {90239D}
  6856. #define PLAYER442 {E9AB2F}
  6857. #define PLAYER443 {AF2FF3}
  6858. #define PLAYER444 {057F94}
  6859. #define PLAYER445 {B98519}
  6860. #define PLAYER446 {388EEA}
  6861. #define PLAYER447 {028151}
  6862. #define PLAYER448 {A55043}
  6863. #define PLAYER449 {0DE018}
  6864. #define PLAYER450 {93AB1C}
  6865. #define PLAYER451 {95BAF0}
  6866. #define PLAYER452 {369976}
  6867. #define PLAYER453 {18F71F}
  6868. #define PLAYER454 {4B8987}
  6869. #define PLAYER455 {491B9E}
  6870. #define PLAYER456 {829DC7}
  6871. #define PLAYER457 {BCE635}
  6872. #define PLAYER458 {CEA6DF}
  6873. #define PLAYER459 {20D4AD}
  6874. #define PLAYER460 {2D74FD}
  6875. #define PLAYER461 {3C1C0D}
  6876. #define PLAYER462 {12D6D4}
  6877. #define PLAYER463 {48C000}
  6878. #define PLAYER464 {2A51E2}
  6879. #define PLAYER465 {E3AC12}
  6880. #define PLAYER466 {FC42A8}
  6881. #define PLAYER467 {2FC827}
  6882. #define PLAYER468 {1A30BF}
  6883. #define PLAYER469 {B740C2}
  6884. #define PLAYER470 {42ACF5}
  6885. #define PLAYER471 {2FD9DE}
  6886. #define PLAYER472 {FAFB71}
  6887. #define PLAYER473 {05D1CD}
  6888. #define PLAYER474 {C471BD}
  6889. #define PLAYER475 {94436E}
  6890. #define PLAYER476 {C1F7EC}
  6891. #define PLAYER477 {CE79EE}
  6892. #define PLAYER478 {BD1EF2}
  6893. #define PLAYER479 {93B7E4}
  6894. #define PLAYER480 {3214AA}
  6895. #define PLAYER481 {184D3B}
  6896. #define PLAYER482 {AE4B99}
  6897. #define PLAYER483 {7E49D7}
  6898. #define PLAYER484 {4C436E}
  6899. #define PLAYER485 {FA24CC}
  6900. #define PLAYER486 {CE76BE}
  6901. #define PLAYER487 {A04E0A}
  6902. #define PLAYER488 {9F945C}
  6903. #define PLAYER489 {DCDE3D}
  6904. #define PLAYER490 {10C9C5}
  6905. #define PLAYER491 {70524D}
  6906. #define PLAYER492 {0BE472}
  6907. #define PLAYER493 {8A2CD7}
  6908. #define PLAYER494 {6152C2}
  6909. #define PLAYER495 {CF72A9}
  6910. #define PLAYER496 {E59338}
  6911. #define PLAYER497 {EEDC2D}
  6912. #define PLAYER498 {D8C762}
  6913. #define PLAYER499 {D8C762}
  6914. #define PLAYER500 {FF8C13}
  6915. #define PLAYER501 {C715FF}
  6916. #define PLAYER502 {20B2AA}
  6917. #define PLAYER503 {DC143C}
  6918. #define PLAYER504 {6495ED}
  6919. #define PLAYER505 {F0E68C}
  6920. #define PLAYER506 {778899}
  6921. #define PLAYER507 {FF1493}
  6922. #define PLAYER508 {F4A460}
  6923. #define PLAYER509 {EE82EE}
  6924. #define PLAYER510 {FFD720}
  6925. #define PLAYER511 {8B4513}
  6926. #define PLAYER512 {4949A0}
  6927. #define PLAYER513 {148B8B}
  6928. #define PLAYER514 {14FF7F}
  6929. #define PLAYER515 {556B2F}
  6930. #define PLAYER516 {0FD9FA}
  6931. #define PLAYER517 {10DC29}
  6932. #define PLAYER518 {534081}
  6933. #define PLAYER519 {0495CD}
  6934. #define PLAYER520 {EF6CE8}
  6935. #define PLAYER521 {BD34DA}
  6936. #define PLAYER522 {247C1B}
  6937. #define PLAYER523 {0C8E5D}
  6938. #define PLAYER524 {635B03}
  6939. #define PLAYER525 {CB7ED3}
  6940. #define PLAYER526 {65ADEB}
  6941. #define PLAYER527 {5C1ACC}
  6942. #define PLAYER528 {F2F853}
  6943. #define PLAYER529 {11F891}
  6944. #define PLAYER530 {7B39AA}
  6945. #define PLAYER531 {53EB10}
  6946. #define PLAYER532 {54137D}
  6947. #define PLAYER533 {275222}
  6948. #define PLAYER534 {F09F5B}
  6949. #define PLAYER535 {3D0A4F}
  6950. #define PLAYER536 {22F767}
  6951. #define PLAYER537 {D63034}
  6952. #define PLAYER538 {9A6980}
  6953. #define PLAYER539 {DFB935}
  6954. #define PLAYER540 {3793FA}
  6955. #define PLAYER541 {90239D}
  6956. #define PLAYER542 {E9AB2F}
  6957. #define PLAYER543 {AF2FF3}
  6958. #define PLAYER544 {057F94}
  6959. #define PLAYER545 {B98519}
  6960. #define PLAYER546 {388EEA}
  6961. #define PLAYER547 {028151}
  6962. #define PLAYER548 {A55043}
  6963. #define PLAYER549 {0DE018}
  6964. #define PLAYER550 {93AB1C}
  6965. #define PLAYER551 {95BAF0}
  6966. #define PLAYER552 {369976}
  6967. #define PLAYER553 {18F71F}
  6968. #define PLAYER554 {4B8987}
  6969. #define PLAYER555 {491B9E}
  6970. #define PLAYER556 {829DC7}
  6971. #define PLAYER557 {BCE635}
  6972. #define PLAYER558 {CEA6DF}
  6973. #define PLAYER559 {20D4AD}
  6974. #define PLAYER560 {2D74FD}
  6975. #define PLAYER561 {3C1C0D}
  6976. #define PLAYER562 {12D6D4}
  6977. #define PLAYER563 {48C000}
  6978. #define PLAYER564 {2A51E2}
  6979. #define PLAYER565 {E3AC12}
  6980. #define PLAYER566 {FC42A8}
  6981. #define PLAYER567 {2FC827}
  6982. #define PLAYER568 {1A30BF}
  6983. #define PLAYER569 {B740C2}
  6984. #define PLAYER570 {42ACF5}
  6985. #define PLAYER571 {2FD9DE}
  6986. #define PLAYER572 {FAFB71}
  6987. #define PLAYER573 {05D1CD}
  6988. #define PLAYER574 {C471BD}
  6989. #define PLAYER575 {94436E}
  6990. #define PLAYER576 {C1F7EC}
  6991. #define PLAYER577 {CE79EE}
  6992. #define PLAYER578 {BD1EF2}
  6993. #define PLAYER579 {93B7E4}
  6994. #define PLAYER580 {3214AA}
  6995. #define PLAYER581 {184D3B}
  6996. #define PLAYER582 {AE4B99}
  6997. #define PLAYER583 {7E49D7}
  6998. #define PLAYER584 {4C436E}
  6999. #define PLAYER585 {FA24CC}
  7000. #define PLAYER586 {CE76BE}
  7001. #define PLAYER587 {A04E0A}
  7002. #define PLAYER588 {9F945C}
  7003. #define PLAYER589 {DCDE3D}
  7004. #define PLAYER590 {10C9C5}
  7005. #define PLAYER591 {70524D}
  7006. #define PLAYER592 {0BE472}
  7007. #define PLAYER593 {8A2CD7}
  7008. #define PLAYER594 {6152C2}
  7009. #define PLAYER595 {CF72A9}
  7010. #define PLAYER596 {E59338}
  7011. #define PLAYER597 {EEDC2D}
  7012. #define PLAYER598 {D8C762}
  7013. #define PLAYER599 {D8C762}
  7014. #define PLAYER600 {FF8C13}
  7015. #define PLAYER601 {C715FF}
  7016. #define PLAYER602 {20B2AA}
  7017. #define PLAYER603 {DC143C}
  7018. #define PLAYER604 {6495ED}
  7019. #define PLAYER605 {F0E68C}
  7020. #define PLAYER606 {778899}
  7021. #define PLAYER607 {FF1493}
  7022. #define PLAYER608 {F4A460}
  7023. #define PLAYER609 {EE82EE}
  7024. #define PLAYER610 {FFD720}
  7025. #define PLAYER611 {8B4513}
  7026. #define PLAYER612 {4949A0}
  7027. #define PLAYER613 {148B8B}
  7028. #define PLAYER614 {14FF7F}
  7029. #define PLAYER615 {556B2F}
  7030. #define PLAYER616 {0FD9FA}
  7031. #define PLAYER617 {10DC29}
  7032. #define PLAYER618 {534081}
  7033. #define PLAYER619 {0495CD}
  7034. #define PLAYER620 {EF6CE8}
  7035. #define PLAYER621 {BD34DA}
  7036. #define PLAYER622 {247C1B}
  7037. #define PLAYER623 {0C8E5D}
  7038. #define PLAYER624 {635B03}
  7039. #define PLAYER625 {CB7ED3}
  7040. #define PLAYER626 {65ADEB}
  7041. #define PLAYER627 {5C1ACC}
  7042. #define PLAYER628 {F2F853}
  7043. #define PLAYER629 {11F891}
  7044. #define PLAYER630 {7B39AA}
  7045. #define PLAYER631 {53EB10}
  7046. #define PLAYER632 {54137D}
  7047. #define PLAYER633 {275222}
  7048. #define PLAYER634 {F09F5B}
  7049. #define PLAYER635 {3D0A4F}
  7050. #define PLAYER636 {22F767}
  7051. #define PLAYER637 {D63034}
  7052. #define PLAYER638 {9A6980}
  7053. #define PLAYER639 {DFB935}
  7054. #define PLAYER640 {3793FA}
  7055. #define PLAYER641 {90239D}
  7056. #define PLAYER642 {E9AB2F}
  7057. #define PLAYER643 {AF2FF3}
  7058. #define PLAYER644 {057F94}
  7059. #define PLAYER645 {B98519}
  7060. #define PLAYER646 {388EEA}
  7061. #define PLAYER647 {028151}
  7062. #define PLAYER648 {A55043}
  7063. #define PLAYER649 {0DE018}
  7064. #define PLAYER650 {93AB1C}
  7065. #define PLAYER651 {95BAF0}
  7066. #define PLAYER652 {369976}
  7067. #define PLAYER653 {18F71F}
  7068. #define PLAYER654 {4B8987}
  7069. #define PLAYER655 {491B9E}
  7070. #define PLAYER656 {829DC7}
  7071. #define PLAYER657 {BCE635}
  7072. #define PLAYER658 {CEA6DF}
  7073. #define PLAYER659 {20D4AD}
  7074. #define PLAYER660 {2D74FD}
  7075. #define PLAYER661 {3C1C0D}
  7076. #define PLAYER662 {12D6D4}
  7077. #define PLAYER663 {48C000}
  7078. #define PLAYER664 {2A51E2}
  7079. #define PLAYER665 {E3AC12}
  7080. #define PLAYER666 {FC42A8}
  7081. #define PLAYER667 {2FC827}
  7082. #define PLAYER668 {1A30BF}
  7083. #define PLAYER669 {B740C2}
  7084. #define PLAYER670 {42ACF5}
  7085. #define PLAYER671 {2FD9DE}
  7086. #define PLAYER672 {FAFB71}
  7087. #define PLAYER673 {05D1CD}
  7088. #define PLAYER674 {C471BD}
  7089. #define PLAYER675 {94436E}
  7090. #define PLAYER676 {C1F7EC}
  7091. #define PLAYER677 {CE79EE}
  7092. #define PLAYER678 {BD1EF2}
  7093. #define PLAYER679 {93B7E4}
  7094. #define PLAYER680 {3214AA}
  7095. #define PLAYER681 {184D3B}
  7096. #define PLAYER682 {AE4B99}
  7097. #define PLAYER683 {7E49D7}
  7098. #define PLAYER684 {4C436E}
  7099. #define PLAYER685 {FA24CC}
  7100. #define PLAYER686 {CE76BE}
  7101. #define PLAYER687 {A04E0A}
  7102. #define PLAYER688 {9F945C}
  7103. #define PLAYER689 {DCDE3D}
  7104. #define PLAYER690 {10C9C5}
  7105. #define PLAYER691 {70524D}
  7106. #define PLAYER692 {0BE472}
  7107. #define PLAYER693 {8A2CD7}
  7108. #define PLAYER694 {6152C2}
  7109. #define PLAYER695 {CF72A9}
  7110. #define PLAYER696 {E59338}
  7111. #define PLAYER697 {EEDC2D}
  7112. #define PLAYER698 {D8C762}
  7113. #define PLAYER699 {D8C762}
  7114. #define PLAYER700 {FF8C13}
  7115. #define PLAYER701 {C715FF}
  7116. #define PLAYER702 {20B2AA}
  7117. #define PLAYER703 {DC143C}
  7118. #define PLAYER704 {6495ED}
  7119. #define PLAYER705 {F0E68C}
  7120. #define PLAYER706 {778899}
  7121. #define PLAYER707 {FF1493}
  7122. #define PLAYER708 {F4A460}
  7123. #define PLAYER709 {EE82EE}
  7124. #define PLAYER710 {FFD720}
  7125. #define PLAYER711 {8B4513}
  7126. #define PLAYER712 {4949A0}
  7127. #define PLAYER713 {148B8B}
  7128. #define PLAYER714 {14FF7F}
  7129. #define PLAYER715 {556B2F}
  7130. #define PLAYER716 {0FD9FA}
  7131. #define PLAYER717 {10DC29}
  7132. #define PLAYER718 {534081}
  7133. #define PLAYER719 {0495CD}
  7134. #define PLAYER720 {EF6CE8}
  7135. #define PLAYER721 {BD34DA}
  7136. #define PLAYER722 {247C1B}
  7137. #define PLAYER723 {0C8E5D}
  7138. #define PLAYER724 {635B03}
  7139. #define PLAYER725 {CB7ED3}
  7140. #define PLAYER726 {65ADEB}
  7141. #define PLAYER727 {5C1ACC}
  7142. #define PLAYER728 {F2F853}
  7143. #define PLAYER729 {11F891}
  7144. #define PLAYER730 {7B39AA}
  7145. #define PLAYER731 {53EB10}
  7146. #define PLAYER732 {54137D}
  7147. #define PLAYER733 {275222}
  7148. #define PLAYER734 {F09F5B}
  7149. #define PLAYER735 {3D0A4F}
  7150. #define PLAYER736 {22F767}
  7151. #define PLAYER737 {D63034}
  7152. #define PLAYER738 {9A6980}
  7153. #define PLAYER739 {DFB935}
  7154. #define PLAYER740 {3793FA}
  7155. #define PLAYER741 {90239D}
  7156. #define PLAYER742 {E9AB2F}
  7157. #define PLAYER743 {AF2FF3}
  7158. #define PLAYER744 {057F94}
  7159. #define PLAYER745 {B98519}
  7160. #define PLAYER746 {388EEA}
  7161. #define PLAYER747 {028151}
  7162. #define PLAYER748 {A55043}
  7163. #define PLAYER749 {0DE018}
  7164. #define PLAYER750 {93AB1C}
  7165. #define PLAYER751 {95BAF0}
  7166. #define PLAYER752 {369976}
  7167. #define PLAYER753 {18F71F}
  7168. #define PLAYER754 {4B8987}
  7169. #define PLAYER755 {491B9E}
  7170. #define PLAYER756 {829DC7}
  7171. #define PLAYER757 {BCE635}
  7172. #define PLAYER758 {CEA6DF}
  7173. #define PLAYER759 {20D4AD}
  7174. #define PLAYER760 {2D74FD}
  7175. #define PLAYER761 {3C1C0D}
  7176. #define PLAYER762 {12D6D4}
  7177. #define PLAYER763 {48C000}
  7178. #define PLAYER764 {2A51E2}
  7179. #define PLAYER765 {E3AC12}
  7180. #define PLAYER766 {FC42A8}
  7181. #define PLAYER767 {2FC827}
  7182. #define PLAYER768 {1A30BF}
  7183. #define PLAYER769 {B740C2}
  7184. #define PLAYER770 {42ACF5}
  7185. #define PLAYER771 {2FD9DE}
  7186. #define PLAYER772 {FAFB71}
  7187. #define PLAYER773 {05D1CD}
  7188. #define PLAYER774 {C471BD}
  7189. #define PLAYER775 {94436E}
  7190. #define PLAYER776 {C1F7EC}
  7191. #define PLAYER777 {CE79EE}
  7192. #define PLAYER778 {BD1EF2}
  7193. #define PLAYER779 {93B7E4}
  7194. #define PLAYER780 {3214AA}
  7195. #define PLAYER781 {184D3B}
  7196. #define PLAYER782 {AE4B99}
  7197. #define PLAYER783 {7E49D7}
  7198. #define PLAYER784 {4C436E}
  7199. #define PLAYER785 {FA24CC}
  7200. #define PLAYER786 {CE76BE}
  7201. #define PLAYER787 {A04E0A}
  7202. #define PLAYER788 {9F945C}
  7203. #define PLAYER789 {DCDE3D}
  7204. #define PLAYER790 {10C9C5}
  7205. #define PLAYER791 {70524D}
  7206. #define PLAYER792 {0BE472}
  7207. #define PLAYER793 {8A2CD7}
  7208. #define PLAYER794 {6152C2}
  7209. #define PLAYER795 {CF72A9}
  7210. #define PLAYER796 {E59338}
  7211. #define PLAYER797 {EEDC2D}
  7212. #define PLAYER798 {D8C762}
  7213. #define PLAYER799 {D8C762}
  7214. #define PLAYER800 {FF8C13}
  7215. #define PLAYER801 {C715FF}
  7216. #define PLAYER802 {20B2AA}
  7217. #define PLAYER803 {DC143C}
  7218. #define PLAYER804 {6495ED}
  7219. #define PLAYER805 {F0E68C}
  7220. #define PLAYER806 {778899}
  7221. #define PLAYER807 {FF1493}
  7222. #define PLAYER808 {F4A460}
  7223. #define PLAYER809 {EE82EE}
  7224. #define PLAYER810 {FFD720}
  7225. #define PLAYER811 {8B4513}
  7226. #define PLAYER812 {4949A0}
  7227. #define PLAYER813 {148B8B}
  7228. #define PLAYER814 {14FF7F}
  7229. #define PLAYER815 {556B2F}
  7230. #define PLAYER816 {0FD9FA}
  7231. #define PLAYER817 {10DC29}
  7232. #define PLAYER818 {534081}
  7233. #define PLAYER819 {0495CD}
  7234. #define PLAYER820 {EF6CE8}
  7235. #define PLAYER821 {BD34DA}
  7236. #define PLAYER822 {247C1B}
  7237. #define PLAYER823 {0C8E5D}
  7238. #define PLAYER824 {635B03}
  7239. #define PLAYER825 {CB7ED3}
  7240. #define PLAYER826 {65ADEB}
  7241. #define PLAYER827 {5C1ACC}
  7242. #define PLAYER828 {F2F853}
  7243. #define PLAYER829 {11F891}
  7244. #define PLAYER830 {7B39AA}
  7245. #define PLAYER831 {53EB10}
  7246. #define PLAYER832 {54137D}
  7247. #define PLAYER833 {275222}
  7248. #define PLAYER834 {F09F5B}
  7249. #define PLAYER835 {3D0A4F}
  7250. #define PLAYER836 {22F767}
  7251. #define PLAYER837 {D63034}
  7252. #define PLAYER838 {9A6980}
  7253. #define PLAYER839 {DFB935}
  7254. #define PLAYER840 {3793FA}
  7255. #define PLAYER841 {90239D}
  7256. #define PLAYER842 {E9AB2F}
  7257. #define PLAYER843 {AF2FF3}
  7258. #define PLAYER844 {057F94}
  7259. #define PLAYER845 {B98519}
  7260. #define PLAYER846 {388EEA}
  7261. #define PLAYER847 {028151}
  7262. #define PLAYER848 {A55043}
  7263. #define PLAYER849 {0DE018}
  7264. #define PLAYER850 {93AB1C}
  7265. #define PLAYER851 {95BAF0}
  7266. #define PLAYER852 {369976}
  7267. #define PLAYER853 {18F71F}
  7268. #define PLAYER854 {4B8987}
  7269. #define PLAYER855 {491B9E}
  7270. #define PLAYER856 {829DC7}
  7271. #define PLAYER857 {BCE635}
  7272. #define PLAYER858 {CEA6DF}
  7273. #define PLAYER859 {20D4AD}
  7274. #define PLAYER860 {2D74FD}
  7275. #define PLAYER861 {3C1C0D}
  7276. #define PLAYER862 {12D6D4}
  7277. #define PLAYER863 {48C000}
  7278. #define PLAYER864 {2A51E2}
  7279. #define PLAYER865 {E3AC12}
  7280. #define PLAYER866 {FC42A8}
  7281. #define PLAYER867 {2FC827}
  7282. #define PLAYER868 {1A30BF}
  7283. #define PLAYER869 {B740C2}
  7284. #define PLAYER870 {42ACF5}
  7285. #define PLAYER871 {2FD9DE}
  7286. #define PLAYER872 {FAFB71}
  7287. #define PLAYER873 {05D1CD}
  7288. #define PLAYER874 {C471BD}
  7289. #define PLAYER875 {94436E}
  7290. #define PLAYER876 {C1F7EC}
  7291. #define PLAYER877 {CE79EE}
  7292. #define PLAYER878 {BD1EF2}
  7293. #define PLAYER879 {93B7E4}
  7294. #define PLAYER880 {3214AA}
  7295. #define PLAYER881 {184D3B}
  7296. #define PLAYER882 {AE4B99}
  7297. #define PLAYER883 {7E49D7}
  7298. #define PLAYER884 {4C436E}
  7299. #define PLAYER885 {FA24CC}
  7300. #define PLAYER886 {CE76BE}
  7301. #define PLAYER887 {A04E0A}
  7302. #define PLAYER888 {9F945C}
  7303. #define PLAYER889 {DCDE3D}
  7304. #define PLAYER890 {10C9C5}
  7305. #define PLAYER891 {70524D}
  7306. #define PLAYER892 {0BE472}
  7307. #define PLAYER893 {8A2CD7}
  7308. #define PLAYER894 {6152C2}
  7309. #define PLAYER895 {CF72A9}
  7310. #define PLAYER896 {E59338}
  7311. #define PLAYER897 {EEDC2D}
  7312. #define PLAYER898 {D8C762}
  7313. #define PLAYER899 {D8C762}
  7314. #define PLAYER900 {FF8C13}
  7315. #define PLAYER901 {C715FF}
  7316. #define PLAYER902 {20B2AA}
  7317. #define PLAYER903 {DC143C}
  7318. #define PLAYER904 {6495ED}
  7319. #define PLAYER905 {F0E68C}
  7320. #define PLAYER906 {778899}
  7321. #define PLAYER907 {FF1493}
  7322. #define PLAYER908 {F4A460}
  7323. #define PLAYER909 {EE82EE}
  7324. #define PLAYER910 {FFD720}
  7325. #define PLAYER911 {8B4513}
  7326. #define PLAYER912 {4949A0}
  7327. #define PLAYER913 {148B8B}
  7328. #define PLAYER914 {14FF7F}
  7329. #define PLAYER915 {556B2F}
  7330. #define PLAYER916 {0FD9FA}
  7331. #define PLAYER917 {10DC29}
  7332. #define PLAYER918 {534081}
  7333. #define PLAYER919 {0495CD}
  7334. #define PLAYER920 {EF6CE8}
  7335. #define PLAYER921 {BD34DA}
  7336. #define PLAYER922 {247C1B}
  7337. #define PLAYER923 {0C8E5D}
  7338. #define PLAYER924 {635B03}
  7339. #define PLAYER925 {CB7ED3}
  7340. #define PLAYER926 {65ADEB}
  7341. #define PLAYER927 {5C1ACC}
  7342. #define PLAYER928 {F2F853}
  7343. #define PLAYER929 {11F891}
  7344. #define PLAYER930 {7B39AA}
  7345. #define PLAYER931 {53EB10}
  7346. #define PLAYER932 {54137D}
  7347. #define PLAYER933 {275222}
  7348. #define PLAYER934 {F09F5B}
  7349. #define PLAYER935 {3D0A4F}
  7350. #define PLAYER936 {22F767}
  7351. #define PLAYER937 {D63034}
  7352. #define PLAYER938 {9A6980}
  7353. #define PLAYER939 {DFB935}
  7354. #define PLAYER940 {3793FA}
  7355. #define PLAYER941 {90239D}
  7356. #define PLAYER942 {E9AB2F}
  7357. #define PLAYER943 {AF2FF3}
  7358. #define PLAYER944 {057F94}
  7359. #define PLAYER945 {B98519}
  7360. #define PLAYER946 {388EEA}
  7361. #define PLAYER947 {028151}
  7362. #define PLAYER948 {A55043}
  7363. #define PLAYER949 {0DE018}
  7364. #define PLAYER950 {93AB1C}
  7365. #define PLAYER951 {95BAF0}
  7366. #define PLAYER952 {369976}
  7367. #define PLAYER953 {18F71F}
  7368. #define PLAYER954 {4B8987}
  7369. #define PLAYER955 {491B9E}
  7370. #define PLAYER956 {829DC7}
  7371. #define PLAYER957 {BCE635}
  7372. #define PLAYER958 {CEA6DF}
  7373. #define PLAYER959 {20D4AD}
  7374. #define PLAYER960 {2D74FD}
  7375. #define PLAYER961 {3C1C0D}
  7376. #define PLAYER962 {12D6D4}
  7377. #define PLAYER963 {48C000}
  7378. #define PLAYER964 {2A51E2}
  7379. #define PLAYER965 {E3AC12}
  7380. #define PLAYER966 {FC42A8}
  7381. #define PLAYER967 {2FC827}
  7382. #define PLAYER968 {1A30BF}
  7383. #define PLAYER969 {B740C2}
  7384. #define PLAYER970 {42ACF5}
  7385. #define PLAYER971 {2FD9DE}
  7386. #define PLAYER972 {FAFB71}
  7387. #define PLAYER973 {05D1CD}
  7388. #define PLAYER974 {C471BD}
  7389. #define PLAYER975 {94436E}
  7390. #define PLAYER976 {C1F7EC}
  7391. #define PLAYER977 {CE79EE}
  7392. #define PLAYER978 {BD1EF2}
  7393. #define PLAYER979 {93B7E4}
  7394. #define PLAYER980 {3214AA}
  7395. #define PLAYER981 {184D3B}
  7396. #define PLAYER982 {AE4B99}
  7397. #define PLAYER983 {7E49D7}
  7398. #define PLAYER984 {4C436E}
  7399. #define PLAYER985 {FA24CC}
  7400. #define PLAYER986 {CE76BE}
  7401. #define PLAYER987 {A04E0A}
  7402. #define PLAYER988 {9F945C}
  7403. #define PLAYER989 {DCDE3D}
  7404. #define PLAYER990 {10C9C5}
  7405. #define PLAYER991 {70524D}
  7406. #define PLAYER992 {0BE472}
  7407. #define PLAYER993 {8A2CD7}
  7408. #define PLAYER994 {6152C2}
  7409. #define PLAYER995 {CF72A9}
  7410. #define PLAYER996 {E59338}
  7411. #define PLAYER997 {EEDC2D}
  7412. #define PLAYER998 {D8C762}
  7413. #define PLAYER999 {D8C762}