VIP_Default_338.ini 533 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163
  1. [Initial Table - base]
  2. RegCount=0x0
  3. VIP_TABLE_ID=V00330
  4. [Initial Table - set SD range for cnt H-V]
  5. RegCount=0x2
  6. VIP_reg_adi_exts_hs_thd=0xf
  7. VIP_reg_adi_exts_vs_thd=0x7
  8. [Initial Table - dpy color processor init]
  9. RegCount=0x3
  10. VIP_reg_dpy_r_cbc_pivot=0x0
  11. VIP_reg_dpy_g_cbc_pivot=0x0
  12. VIP_reg_dpy_b_cbc_pivot=0x0
  13. [Initial Table - sharpness]
  14. RegCount=0x0
  15. [Initial Table - color region 0]
  16. RegCount=0x2
  17. VIP_reg_dpy_rg0_y_pivot_max=0xfe
  18. [Initial Table - color region 1]
  19. RegCount=0x2
  20. VIP_reg_dpy_rg1_y_pivot_max=0x1
  21. [Initial Table - color region 2]
  22. RegCount=0x2
  23. VIP_reg_dpy_rg2_y_pivot_max=0x1
  24. [Initial Table - color region 3]
  25. RegCount=0x2
  26. VIP_reg_dpy_rg3_y_pivot_max=0x1
  27. [Initial Table - color region 4]
  28. RegCount=0x2
  29. VIP_reg_dpy_rg4_y_pivot_max=0xfe
  30. [Initial Table - color region 5]
  31. RegCount=0x2
  32. VIP_reg_dpy_rg5_y_pivot_max=0x1
  33. [Initial Table - flesh tone]
  34. RegCount=0x2
  35. VIP_reg_dpy_fl_y_pivot_max=0xfe
  36. [Initial Table - dynamic contrast]
  37. RegCount=0xb
  38. VIP_reg_dpy_scene_chg_en=0x1
  39. VIP_reg_dpy_hist_bin0bin15_disable=0
  40. VIP_reg_dpy_hist_mult_schg=0x0
  41. VIP_reg_dpy_hist_max_chg_schg=0xff
  42. VIP_reg_dpy_hist_extra_lp=0x1
  43. VIP_reg_dpy_hist_mult=0x0
  44. VIP_reg_dpy_hist_max_chg=0x40
  45. VIP_reg_dpy_hist_max_slope=0x120
  46. VIP_reg_dpy_hist_min_slope=0xd0
  47. VIP_reg_dpy_hist_chroma_en=1
  48. VIP_reg_dpy_hist_int=0x1
  49. [Initial Table - uv function]
  50. RegCount=0x2
  51. VIP_reg_dpy_uv_coring_trans=0x3
  52. VIP_reg_dpy_uv_coring_th=0x4
  53. [Common Value]
  54. RegCount=0x2f37
  55. VIP_TABLE_MAGIC_NUMBER_1=9504
  56. VIP_var_rgb_dpy_matrix_p11=0x4d8
  57. VIP_var_rgb_dpy_matrix_p12=0x0
  58. VIP_var_rgb_dpy_matrix_p13=0x6a5
  59. VIP_var_rgb_dpy_matrix_p21=0x4d8
  60. VIP_var_rgb_dpy_matrix_p22=0x3e60
  61. VIP_var_rgb_dpy_matrix_p23=0x3c9e
  62. VIP_var_rgb_dpy_matrix_p31=0x4d8
  63. VIP_var_rgb_dpy_matrix_p32=0x866
  64. VIP_var_rgb_dpy_matrix_p33=0x0
  65. VIP_var_rgb_dpy_matrix_c1=0x3ffb
  66. VIP_var_rgb_dpy_matrix_c2=0x3ffb
  67. VIP_var_rgb_dpy_matrix_c3=0x3ffb
  68. VIP_var_601_dpy_matrix_p11=1192
  69. VIP_var_601_dpy_matrix_p12=0
  70. VIP_var_601_dpy_matrix_p13=1634
  71. VIP_var_601_dpy_matrix_p21=1192
  72. VIP_var_601_dpy_matrix_p22=-401
  73. VIP_var_601_dpy_matrix_p23=-833
  74. VIP_var_601_dpy_matrix_p31=1192
  75. VIP_var_601_dpy_matrix_p32=2066
  76. VIP_var_601_dpy_matrix_p33=0
  77. VIP_var_601_dpy_matrix_c1=0
  78. VIP_var_601_dpy_matrix_c2=0
  79. VIP_var_601_dpy_matrix_c3=0
  80. VIP_var_709_dpy_matrix_p11=1192
  81. VIP_var_709_dpy_matrix_p12=0
  82. VIP_var_709_dpy_matrix_p13=1836
  83. VIP_var_709_dpy_matrix_p21=1192
  84. VIP_var_709_dpy_matrix_p22=-218
  85. VIP_var_709_dpy_matrix_p23=-546
  86. VIP_var_709_dpy_matrix_p31=1192
  87. VIP_var_709_dpy_matrix_p32=2163
  88. VIP_var_709_dpy_matrix_p33=0
  89. VIP_var_709_dpy_matrix_c1=0
  90. VIP_var_709_dpy_matrix_c2=0
  91. VIP_var_709_dpy_matrix_c3=0
  92. VIP_TABLE_MAGIC_NUMBER_2=9505
  93. VIP_var_dpy_pc_no_gamma=0
  94. VIP_TABLE_MAGIC_NUMBER_3=9506
  95. VIP_var_load_SCART_RGB_Tab=1
  96. VIP_TABLE_MAGIC_NUMBER_4=9507
  97. VIP_var_sharp_ratio_0=0x6
  98. VIP_var_sharp_ratio_1=0x8
  99. VIP_var_sharp_ratio_2=0x8
  100. VIP_var_sharp_ratio_3=0xa
  101. VIP_var_sharp_ratio_4=0x8
  102. VIP_var_sharp_ratio_5=0x8
  103. VIP_var_sharp_ratio_0_c=8
  104. VIP_var_sharp_ratio_1_c=8
  105. VIP_var_sharp_ratio_2_c=8
  106. VIP_var_sharp_ratio_3_c=8
  107. VIP_var_sharp_ratio_4_c=8
  108. VIP_var_sharp_ratio_5_c=8
  109. VIP_TABLE_MAGIC_NUMBER_5=9508
  110. VIP_var_sharp_ratio_6=0x6
  111. VIP_TABLE_MAGIC_NUMBER_6=9509
  112. VIP_var_sharp_ratio_6_c=8
  113. VIP_TABLE_MAGIC_NUMBER_7=9510
  114. VIP_var_sat_gain_curve_src_0_3=0x1010000
  115. VIP_var_sat_gain_curve_src_4_7=0x3020101
  116. VIP_var_sat_gain_curve_src_8_11=0x5040504
  117. VIP_var_sat_gain_curve_src_12_15=0x6060606
  118. VIP_var_sat_gain_curve_src_16_19=0x6
  119. VIP_var_sat_gain_curve_idx_0_bin_1_4=0x40404040
  120. VIP_var_sat_gain_curve_idx_0_bin_5_8=0x40404040
  121. VIP_var_sat_gain_curve_idx_0_bin_9_12=0x40404040
  122. VIP_var_sat_gain_curve_idx_0_bin_13_16=0x40404040
  123. VIP_var_sat_gain_curve_idx_1_bin_1_4=0x40404040
  124. VIP_var_sat_gain_curve_idx_1_bin_5_8=0x40404040
  125. VIP_var_sat_gain_curve_idx_1_bin_9_12=0x40404040
  126. VIP_var_sat_gain_curve_idx_1_bin_13_16=0x40404040
  127. VIP_var_sat_gain_curve_idx_2_bin_1_4=0x40404040
  128. VIP_var_sat_gain_curve_idx_2_bin_5_8=0x40404040
  129. VIP_var_sat_gain_curve_idx_2_bin_9_12=0x40404040
  130. VIP_var_sat_gain_curve_idx_2_bin_13_16=0x40404040
  131. VIP_var_sat_gain_curve_idx_3_bin_1_4=0x40404040
  132. VIP_var_sat_gain_curve_idx_3_bin_5_8=0x40404040
  133. VIP_var_sat_gain_curve_idx_3_bin_9_12=0x40404040
  134. VIP_var_sat_gain_curve_idx_3_bin_13_16=0x40404040
  135. VIP_var_sat_gain_curve_idx_4_bin_1_4=0x40404040
  136. VIP_var_sat_gain_curve_idx_4_bin_5_8=0x40404040
  137. VIP_var_sat_gain_curve_idx_4_bin_9_12=0x40404040
  138. VIP_var_sat_gain_curve_idx_4_bin_13_16=0x40404040
  139. VIP_var_sat_gain_curve_idx_5_bin_1_4=0x40404040
  140. VIP_var_sat_gain_curve_idx_5_bin_5_8=0x40404040
  141. VIP_var_sat_gain_curve_idx_5_bin_9_12=0x40404040
  142. VIP_var_sat_gain_curve_idx_5_bin_13_16=0x40404040
  143. VIP_var_sat_gain_curve_idx_6_bin_1_4=0x40404040
  144. VIP_var_sat_gain_curve_idx_6_bin_5_8=0x40404040
  145. VIP_var_sat_gain_curve_idx_6_bin_9_12=0x40404040
  146. VIP_var_sat_gain_curve_idx_6_bin_13_16=0x40404040
  147. VIP_var_sat_gain_curve_idx_7_bin_1_4=0x40404040
  148. VIP_var_sat_gain_curve_idx_7_bin_5_8=0x40404040
  149. VIP_var_sat_gain_curve_idx_7_bin_9_12=0x40404040
  150. VIP_var_sat_gain_curve_idx_7_bin_13_16=0x40404040
  151. VIP_TABLE_MAGIC_NUMBER_8=9511
  152. VIP_var_dlc_curve_src_0_3=0x3040304
  153. VIP_var_dlc_curve_src_4_7=0x1010101
  154. VIP_var_dlc_curve_src_8_11=0x1050101
  155. VIP_var_dlc_curve_src_12_15=0x1020202
  156. VIP_var_dlc_curve_src_16_19=0x1
  157. VIP_var_dlc_luma_idx_0_scene0_bin_3=0xa8948a82
  158. VIP_var_dlc_luma_idx_0_scene0_bin_7=0x99a4b0be
  159. VIP_var_dlc_luma_idx_0_scene0_bin_11=0x626e7a87
  160. VIP_var_dlc_luma_idx_0_scene0_bin_15=0x3f454d55
  161. VIP_var_dlc_luma_idx_0_scene1_bin_3=0x98735362
  162. VIP_var_dlc_luma_idx_0_scene1_bin_7=0xa0a6aca2
  163. VIP_var_dlc_luma_idx_0_scene1_bin_11=0x76818a96
  164. VIP_var_dlc_luma_idx_0_scene1_bin_15=0x4855606a
  165. VIP_var_dlc_luma_idx_0_scene2_bin_3=0x927d6f60
  166. VIP_var_dlc_luma_idx_0_scene2_bin_7=0xaab5b1a8
  167. VIP_var_dlc_luma_idx_0_scene2_bin_11=0x737e8b9d
  168. VIP_var_dlc_luma_idx_0_scene2_bin_15=0x404c5766
  169. VIP_var_dlc_luma_idx_0_scene3_bin_3=0x8273553e
  170. VIP_var_dlc_luma_idx_0_scene3_bin_7=0xbdcdaf9d
  171. VIP_var_dlc_luma_idx_0_scene3_bin_11=0x768594a8
  172. VIP_var_dlc_luma_idx_0_scene3_bin_15=0x42515d68
  173. VIP_var_dlc_luma_idx_0_scene4_bin_3=0x8a695a31
  174. VIP_var_dlc_luma_idx_0_scene4_bin_7=0xb5cbb8a2
  175. VIP_var_dlc_luma_idx_0_scene4_bin_11=0x718596a2
  176. VIP_var_dlc_luma_idx_0_scene4_bin_15=0x3e4e5964
  177. VIP_var_dlc_luma_idx_0_scene5_bin_3=0x7f6e6358
  178. VIP_var_dlc_luma_idx_0_scene5_bin_7=0xa4b1aa92
  179. VIP_var_dlc_luma_idx_0_scene5_bin_11=0x74778392
  180. VIP_var_dlc_luma_idx_0_scene5_bin_15=0x56626870
  181. VIP_var_dlc_luma_idx_0_scene6_bin_3=0x7d6e6154
  182. VIP_var_dlc_luma_idx_0_scene6_bin_7=0xa0a1988b
  183. VIP_var_dlc_luma_idx_0_scene6_bin_11=0x80858d9b
  184. VIP_var_dlc_luma_idx_0_scene6_bin_15=0x7070707a
  185. VIP_var_dlc_luma_idx_0_scene7_bin_3=0x725c4d40
  186. VIP_var_dlc_luma_idx_0_scene7_bin_7=0xacb7b18f
  187. VIP_var_dlc_luma_idx_0_scene7_bin_11=0x7a8897a1
  188. VIP_var_dlc_luma_idx_0_scene7_bin_15=0x4e57616c
  189. VIP_var_dlc_luma_idx_0_scene8_bin_3=0x75625242
  190. VIP_var_dlc_luma_idx_0_scene8_bin_7=0xa8ae9e92
  191. VIP_var_dlc_luma_idx_0_scene8_bin_11=0x79808899
  192. VIP_var_dlc_luma_idx_0_scene8_bin_15=0x71717171
  193. VIP_var_dlc_luma_idx_0_scene9_bin_3=0x948e8580
  194. VIP_var_dlc_luma_idx_0_scene9_bin_7=0x9c9c9a94
  195. VIP_var_dlc_luma_idx_0_scene9_bin_11=0x788e959c
  196. VIP_var_dlc_luma_idx_0_scene9_bin_15=0x324b5867
  197. VIP_var_dlc_luma_idx_0_scene10_bin_3=0x7a756e64
  198. VIP_var_dlc_luma_idx_0_scene10_bin_7=0xad968e85
  199. VIP_var_dlc_luma_idx_0_scene10_bin_11=0x79828ea2
  200. VIP_var_dlc_luma_idx_0_scene10_bin_15=0x59616a72
  201. VIP_var_dlc_luma_idx_0_scene11_bin_3=0x836b5345
  202. VIP_var_dlc_luma_idx_0_scene11_bin_7=0xaeb9a28f
  203. VIP_var_dlc_luma_idx_0_scene11_bin_11=0x848c95a4
  204. VIP_var_dlc_luma_idx_0_scene11_bin_15=0x5c636975
  205. VIP_var_dlc_luma_idx_0_scene12_bin_3=0x7667584c
  206. VIP_var_dlc_luma_idx_0_scene12_bin_7=0xa59d9588
  207. VIP_var_dlc_luma_idx_0_scene12_bin_11=0x73809099
  208. VIP_var_dlc_luma_idx_0_scene12_bin_15=0x8981816e
  209. VIP_var_dlc_luma_idx_0_scene13_bin_3=0x9788695d
  210. VIP_var_dlc_luma_idx_0_scene13_bin_7=0x9ea1a5a0
  211. VIP_var_dlc_luma_idx_0_scene13_bin_11=0x7c86909a
  212. VIP_var_dlc_luma_idx_0_scene13_bin_15=0x4a53606c
  213. VIP_var_dlc_luma_idx_0_scene14_bin_3=0x9988694d
  214. VIP_var_dlc_luma_idx_0_scene14_bin_7=0x9ca4aca3
  215. VIP_var_dlc_luma_idx_0_scene14_bin_11=0x7d848c94
  216. VIP_var_dlc_luma_idx_0_scene14_bin_15=0x46566472
  217. VIP_var_dlc_luma_idx_0_scene15_bin_3=0xa18a6d50
  218. VIP_var_dlc_luma_idx_0_scene15_bin_7=0xa3b1beb3
  219. VIP_var_dlc_luma_idx_0_scene15_bin_11=0x6e7d8a95
  220. VIP_var_dlc_luma_idx_0_scene15_bin_15=0x424e5862
  221. VIP_var_dlc_luma_idx_0_scene16_bin_3=0xa38b7258
  222. VIP_var_dlc_luma_idx_0_scene16_bin_7=0x989eadb2
  223. VIP_var_dlc_luma_idx_0_scene16_bin_11=0x76808992
  224. VIP_var_dlc_luma_idx_0_scene16_bin_15=0x46515f6a
  225. VIP_var_dlc_luma_idx_0_scene17_bin_3=0x9c948058
  226. VIP_var_dlc_luma_idx_0_scene17_bin_7=0x9ca3a39c
  227. VIP_var_dlc_luma_idx_0_scene17_bin_11=0x7883868c
  228. VIP_var_dlc_luma_idx_0_scene17_bin_15=0x4259646e
  229. VIP_var_dlc_luma_idx_0_scene18_bin_3=0x9c948072
  230. VIP_var_dlc_luma_idx_0_scene18_bin_7=0x9ca3a39c
  231. VIP_var_dlc_luma_idx_0_scene18_bin_11=0x7883868c
  232. VIP_var_dlc_luma_idx_0_scene18_bin_15=0x4259646e
  233. VIP_var_dlc_luma_idx_0_scene19_bin_3=0xa085634c
  234. VIP_var_dlc_luma_idx_0_scene19_bin_7=0x98a0a8b4
  235. VIP_var_dlc_luma_idx_0_scene19_bin_11=0x7e858c91
  236. VIP_var_dlc_luma_idx_0_scene19_bin_15=0x495a6b75
  237. VIP_var_dlc_luma_idx_0_scene20_bin_3=0xa1968b75
  238. VIP_var_dlc_luma_idx_0_scene20_bin_7=0x949ba6a8
  239. VIP_var_dlc_luma_idx_0_scene20_bin_11=0x727c848d
  240. VIP_var_dlc_luma_idx_0_scene20_bin_15=0x3b455d6a
  241. VIP_var_dlc_luma_idx_0_scene21_bin_3=0x7b68523c
  242. VIP_var_dlc_luma_idx_0_scene21_bin_7=0xbfcdb093
  243. VIP_var_dlc_luma_idx_0_scene21_bin_11=0x798c9caf
  244. VIP_var_dlc_luma_idx_0_scene21_bin_15=0x3b485869
  245. VIP_var_dlc_luma_idx_0_scene22_bin_3=0x82694c64
  246. VIP_var_dlc_luma_idx_0_scene22_bin_7=0xa4b2c09d
  247. VIP_var_dlc_luma_idx_0_scene22_bin_11=0x7581909a
  248. VIP_var_dlc_luma_idx_0_scene22_bin_15=0x6363636b
  249. VIP_var_dlc_luma_idx_0_scene23_bin_3=0x95826e64
  250. VIP_var_dlc_luma_idx_0_scene23_bin_7=0xa1a7ada3
  251. VIP_var_dlc_luma_idx_0_scene23_bin_11=0x73798792
  252. VIP_var_dlc_luma_idx_0_scene23_bin_15=0x525a636b
  253. VIP_var_dlc_luma_idx_0_scene24_bin_3=0x8d70503e
  254. VIP_var_dlc_luma_idx_0_scene24_bin_7=0xaab2a89b
  255. VIP_var_dlc_luma_idx_0_scene24_bin_11=0x77828f9f
  256. VIP_var_dlc_luma_idx_0_scene24_bin_15=0x4d54606d
  257. VIP_var_dlc_luma_idx_0_scene25_bin_3=0x9b8b7f78
  258. VIP_var_dlc_luma_idx_0_scene25_bin_7=0x9b9b9b9b
  259. VIP_var_dlc_luma_idx_0_scene25_bin_11=0x89949b9b
  260. VIP_var_dlc_luma_idx_0_scene25_bin_15=0x2348546f
  261. VIP_var_dlc_luma_idx_0_scene26_bin_3=0xa394815c
  262. VIP_var_dlc_luma_idx_0_scene26_bin_7=0x96a2abb8
  263. VIP_var_dlc_luma_idx_0_scene26_bin_11=0x6a7b808a
  264. VIP_var_dlc_luma_idx_0_scene26_bin_15=0x4e525863
  265. VIP_var_dlc_luma_idx_0_scene27_bin_3=0xa394815c
  266. VIP_var_dlc_luma_idx_0_scene27_bin_7=0x9ba8aeb8
  267. VIP_var_dlc_luma_idx_0_scene27_bin_11=0x707b8894
  268. VIP_var_dlc_luma_idx_0_scene27_bin_15=0x3d4a5863
  269. VIP_var_dlc_luma_idx_0_scene28_bin_3=0x99a0a0a0
  270. VIP_var_dlc_luma_idx_0_scene28_bin_7=0x75787d89
  271. VIP_var_dlc_luma_idx_0_scene28_bin_11=0x6c6c6f73
  272. VIP_var_dlc_luma_idx_0_scene28_bin_15=0x80787068
  273. VIP_var_dlc_luma_idx_0_scene29_bin_3=0x9c948058
  274. VIP_var_dlc_luma_idx_0_scene29_bin_7=0x9ca3a39c
  275. VIP_var_dlc_luma_idx_0_scene29_bin_11=0x7883868c
  276. VIP_var_dlc_luma_idx_0_scene29_bin_15=0x4259646e
  277. VIP_var_dlc_luma_idx_0_scene30_bin_3=0x7d736870
  278. VIP_var_dlc_luma_idx_0_scene30_bin_7=0x918b8682
  279. VIP_var_dlc_luma_idx_0_scene30_bin_11=0x838a9299
  280. VIP_var_dlc_luma_idx_0_scene30_bin_15=0x6c70707b
  281. VIP_var_dlc_luma_idx_0_scene31_bin_3=0x7e756b74
  282. VIP_var_dlc_luma_idx_0_scene31_bin_7=0x8c909189
  283. VIP_var_dlc_luma_idx_0_scene31_bin_11=0x7a7d8285
  284. VIP_var_dlc_luma_idx_0_scene31_bin_15=0x7a7a7a7a
  285. VIP_var_dlc_luma_idx_0_scene32_bin_3=0x593c3127
  286. VIP_var_dlc_luma_idx_0_scene32_bin_7=0xbfd2c38b
  287. VIP_var_dlc_luma_idx_0_scene32_bin_11=0x82858895
  288. VIP_var_dlc_luma_idx_0_scene32_bin_15=0x7c7c8080
  289. VIP_var_dlc_luma_idx_0_scene33_bin_3=0x80808080
  290. VIP_var_dlc_luma_idx_0_scene33_bin_7=0x9a808080
  291. VIP_var_dlc_luma_idx_0_scene33_bin_11=0x8abfd2bc
  292. VIP_var_dlc_luma_idx_0_scene33_bin_15=0x35394a5f
  293. VIP_var_dlc_luma_idx_0_scene34_bin_3=0x4d443b32
  294. VIP_var_dlc_luma_idx_0_scene34_bin_7=0x78676158
  295. VIP_var_dlc_luma_idx_0_scene34_bin_11=0xa89b8678
  296. VIP_var_dlc_luma_idx_0_scene34_bin_15=0xdcd1c5b7
  297. VIP_var_dlc_luma_idx_0_scene35_bin_3=0x6b4c3526
  298. VIP_var_dlc_luma_idx_0_scene35_bin_7=0xd4bc9e8c
  299. VIP_var_dlc_luma_idx_0_scene35_bin_11=0x99b5ead4
  300. VIP_var_dlc_luma_idx_0_scene35_bin_15=0x2a3e5b6b
  301. VIP_var_dlc_chroma_idx_0_scene0_bin_3=0x80808080
  302. VIP_var_dlc_chroma_idx_0_scene0_bin_7=0x80808080
  303. VIP_var_dlc_chroma_idx_0_scene0_bin_11=0x80808080
  304. VIP_var_dlc_chroma_idx_0_scene0_bin_15=0x80808080
  305. VIP_var_dlc_chroma_idx_0_scene1_bin_3=0x80808080
  306. VIP_var_dlc_chroma_idx_0_scene1_bin_7=0x80808080
  307. VIP_var_dlc_chroma_idx_0_scene1_bin_11=0x80808080
  308. VIP_var_dlc_chroma_idx_0_scene1_bin_15=0x80808080
  309. VIP_var_dlc_chroma_idx_0_scene2_bin_3=0x80808080
  310. VIP_var_dlc_chroma_idx_0_scene2_bin_7=0x80808080
  311. VIP_var_dlc_chroma_idx_0_scene2_bin_11=0x80808080
  312. VIP_var_dlc_chroma_idx_0_scene2_bin_15=0x80808080
  313. VIP_var_dlc_chroma_idx_0_scene3_bin_3=0x80808080
  314. VIP_var_dlc_chroma_idx_0_scene3_bin_7=0x80808080
  315. VIP_var_dlc_chroma_idx_0_scene3_bin_11=0x80808080
  316. VIP_var_dlc_chroma_idx_0_scene3_bin_15=0x80808080
  317. VIP_var_dlc_chroma_idx_0_scene4_bin_3=0x80808080
  318. VIP_var_dlc_chroma_idx_0_scene4_bin_7=0x80808080
  319. VIP_var_dlc_chroma_idx_0_scene4_bin_11=0x80808080
  320. VIP_var_dlc_chroma_idx_0_scene4_bin_15=0x80808080
  321. VIP_var_dlc_chroma_idx_0_scene5_bin_3=0x80808080
  322. VIP_var_dlc_chroma_idx_0_scene5_bin_7=0x80808080
  323. VIP_var_dlc_chroma_idx_0_scene5_bin_11=0x80808080
  324. VIP_var_dlc_chroma_idx_0_scene5_bin_15=0x80808080
  325. VIP_var_dlc_chroma_idx_0_scene6_bin_3=0x80808080
  326. VIP_var_dlc_chroma_idx_0_scene6_bin_7=0x80808080
  327. VIP_var_dlc_chroma_idx_0_scene6_bin_11=0x80808080
  328. VIP_var_dlc_chroma_idx_0_scene6_bin_15=0x80808080
  329. VIP_var_dlc_chroma_idx_0_scene7_bin_3=0x80808080
  330. VIP_var_dlc_chroma_idx_0_scene7_bin_7=0x80808080
  331. VIP_var_dlc_chroma_idx_0_scene7_bin_11=0x80808080
  332. VIP_var_dlc_chroma_idx_0_scene7_bin_15=0x80808080
  333. VIP_var_dlc_chroma_idx_0_scene8_bin_3=0x80808080
  334. VIP_var_dlc_chroma_idx_0_scene8_bin_7=0x80808080
  335. VIP_var_dlc_chroma_idx_0_scene8_bin_11=0x80808080
  336. VIP_var_dlc_chroma_idx_0_scene8_bin_15=0x80808080
  337. VIP_var_dlc_chroma_idx_0_scene9_bin_3=0x80808080
  338. VIP_var_dlc_chroma_idx_0_scene9_bin_7=0x80808080
  339. VIP_var_dlc_chroma_idx_0_scene9_bin_11=0x80808080
  340. VIP_var_dlc_chroma_idx_0_scene9_bin_15=0x80808080
  341. VIP_var_dlc_chroma_idx_0_scene10_bin_3=0x80808080
  342. VIP_var_dlc_chroma_idx_0_scene10_bin_7=0x80808080
  343. VIP_var_dlc_chroma_idx_0_scene10_bin_11=0x80808080
  344. VIP_var_dlc_chroma_idx_0_scene10_bin_15=0x80808080
  345. VIP_var_dlc_chroma_idx_0_scene11_bin_3=0x80808080
  346. VIP_var_dlc_chroma_idx_0_scene11_bin_7=0x80808080
  347. VIP_var_dlc_chroma_idx_0_scene11_bin_11=0x80808080
  348. VIP_var_dlc_chroma_idx_0_scene11_bin_15=0x80808080
  349. VIP_var_dlc_chroma_idx_0_scene12_bin_3=0x80808080
  350. VIP_var_dlc_chroma_idx_0_scene12_bin_7=0x80808080
  351. VIP_var_dlc_chroma_idx_0_scene12_bin_11=0x80808080
  352. VIP_var_dlc_chroma_idx_0_scene12_bin_15=0x80808080
  353. VIP_var_dlc_chroma_idx_0_scene13_bin_3=0x80808080
  354. VIP_var_dlc_chroma_idx_0_scene13_bin_7=0x80808080
  355. VIP_var_dlc_chroma_idx_0_scene13_bin_11=0x80808080
  356. VIP_var_dlc_chroma_idx_0_scene13_bin_15=0x80808080
  357. VIP_var_dlc_chroma_idx_0_scene14_bin_3=0x80808080
  358. VIP_var_dlc_chroma_idx_0_scene14_bin_7=0x80808080
  359. VIP_var_dlc_chroma_idx_0_scene14_bin_11=0x80808080
  360. VIP_var_dlc_chroma_idx_0_scene14_bin_15=0x80808080
  361. VIP_var_dlc_chroma_idx_0_scene15_bin_3=0x80808080
  362. VIP_var_dlc_chroma_idx_0_scene15_bin_7=0x80808080
  363. VIP_var_dlc_chroma_idx_0_scene15_bin_11=0x80808080
  364. VIP_var_dlc_chroma_idx_0_scene15_bin_15=0x80808080
  365. VIP_var_dlc_chroma_idx_0_scene16_bin_3=0x80808080
  366. VIP_var_dlc_chroma_idx_0_scene16_bin_7=0x80808080
  367. VIP_var_dlc_chroma_idx_0_scene16_bin_11=0x80808080
  368. VIP_var_dlc_chroma_idx_0_scene16_bin_15=0x80808080
  369. VIP_var_dlc_chroma_idx_0_scene17_bin_3=0x80808080
  370. VIP_var_dlc_chroma_idx_0_scene17_bin_7=0x80808080
  371. VIP_var_dlc_chroma_idx_0_scene17_bin_11=0x80808080
  372. VIP_var_dlc_chroma_idx_0_scene17_bin_15=0x80808080
  373. VIP_var_dlc_chroma_idx_0_scene18_bin_3=0x80808080
  374. VIP_var_dlc_chroma_idx_0_scene18_bin_7=0x80808080
  375. VIP_var_dlc_chroma_idx_0_scene18_bin_11=0x80808080
  376. VIP_var_dlc_chroma_idx_0_scene18_bin_15=0x80808080
  377. VIP_var_dlc_chroma_idx_0_scene19_bin_3=0x80808080
  378. VIP_var_dlc_chroma_idx_0_scene19_bin_7=0x80808080
  379. VIP_var_dlc_chroma_idx_0_scene19_bin_11=0x80808080
  380. VIP_var_dlc_chroma_idx_0_scene19_bin_15=0x80808080
  381. VIP_var_dlc_chroma_idx_0_scene20_bin_3=0x80808080
  382. VIP_var_dlc_chroma_idx_0_scene20_bin_7=0x80808080
  383. VIP_var_dlc_chroma_idx_0_scene20_bin_11=0x80808080
  384. VIP_var_dlc_chroma_idx_0_scene20_bin_15=0x80808080
  385. VIP_var_dlc_chroma_idx_0_scene21_bin_3=0x80808080
  386. VIP_var_dlc_chroma_idx_0_scene21_bin_7=0x80808080
  387. VIP_var_dlc_chroma_idx_0_scene21_bin_11=0x80808080
  388. VIP_var_dlc_chroma_idx_0_scene21_bin_15=0x80808080
  389. VIP_var_dlc_chroma_idx_0_scene22_bin_3=0x80808080
  390. VIP_var_dlc_chroma_idx_0_scene22_bin_7=0x80808080
  391. VIP_var_dlc_chroma_idx_0_scene22_bin_11=0x80808080
  392. VIP_var_dlc_chroma_idx_0_scene22_bin_15=0x80808080
  393. VIP_var_dlc_chroma_idx_0_scene23_bin_3=0x80808080
  394. VIP_var_dlc_chroma_idx_0_scene23_bin_7=0x80808080
  395. VIP_var_dlc_chroma_idx_0_scene23_bin_11=0x80808080
  396. VIP_var_dlc_chroma_idx_0_scene23_bin_15=0x80808080
  397. VIP_var_dlc_chroma_idx_0_scene24_bin_3=0x80808080
  398. VIP_var_dlc_chroma_idx_0_scene24_bin_7=0x80808080
  399. VIP_var_dlc_chroma_idx_0_scene24_bin_11=0x80808080
  400. VIP_var_dlc_chroma_idx_0_scene24_bin_15=0x80808080
  401. VIP_var_dlc_chroma_idx_0_scene25_bin_3=0x80808080
  402. VIP_var_dlc_chroma_idx_0_scene25_bin_7=0x80808080
  403. VIP_var_dlc_chroma_idx_0_scene25_bin_11=0x80808080
  404. VIP_var_dlc_chroma_idx_0_scene25_bin_15=0x80808080
  405. VIP_var_dlc_chroma_idx_0_scene26_bin_3=0x80808080
  406. VIP_var_dlc_chroma_idx_0_scene26_bin_7=0x80808080
  407. VIP_var_dlc_chroma_idx_0_scene26_bin_11=0x80808080
  408. VIP_var_dlc_chroma_idx_0_scene26_bin_15=0x80808080
  409. VIP_var_dlc_chroma_idx_0_scene27_bin_3=0x80808080
  410. VIP_var_dlc_chroma_idx_0_scene27_bin_7=0x80808080
  411. VIP_var_dlc_chroma_idx_0_scene27_bin_11=0x80808080
  412. VIP_var_dlc_chroma_idx_0_scene27_bin_15=0x80808080
  413. VIP_var_dlc_chroma_idx_0_scene28_bin_3=0x80808080
  414. VIP_var_dlc_chroma_idx_0_scene28_bin_7=0x80808080
  415. VIP_var_dlc_chroma_idx_0_scene28_bin_11=0x80808080
  416. VIP_var_dlc_chroma_idx_0_scene28_bin_15=0x80808080
  417. VIP_var_dlc_chroma_idx_0_scene29_bin_3=0x80808080
  418. VIP_var_dlc_chroma_idx_0_scene29_bin_7=0x80808080
  419. VIP_var_dlc_chroma_idx_0_scene29_bin_11=0x80808080
  420. VIP_var_dlc_chroma_idx_0_scene29_bin_15=0x80808080
  421. VIP_var_dlc_chroma_idx_0_scene30_bin_3=0x80808080
  422. VIP_var_dlc_chroma_idx_0_scene30_bin_7=0x80808080
  423. VIP_var_dlc_chroma_idx_0_scene30_bin_11=0x80808080
  424. VIP_var_dlc_chroma_idx_0_scene30_bin_15=0x80808080
  425. VIP_var_dlc_chroma_idx_0_scene31_bin_3=0x80808080
  426. VIP_var_dlc_chroma_idx_0_scene31_bin_7=0x80808080
  427. VIP_var_dlc_chroma_idx_0_scene31_bin_11=0x80808080
  428. VIP_var_dlc_chroma_idx_0_scene31_bin_15=0x80808080
  429. VIP_var_dlc_chroma_idx_0_scene32_bin_3=0x80808080
  430. VIP_var_dlc_chroma_idx_0_scene32_bin_7=0x80808080
  431. VIP_var_dlc_chroma_idx_0_scene32_bin_11=0x80808080
  432. VIP_var_dlc_chroma_idx_0_scene32_bin_15=0x80808080
  433. VIP_var_dlc_chroma_idx_0_scene33_bin_3=0x80808080
  434. VIP_var_dlc_chroma_idx_0_scene33_bin_7=0x80808080
  435. VIP_var_dlc_chroma_idx_0_scene33_bin_11=0x80808080
  436. VIP_var_dlc_chroma_idx_0_scene33_bin_15=0x80808080
  437. VIP_var_dlc_chroma_idx_0_scene34_bin_3=0x80808080
  438. VIP_var_dlc_chroma_idx_0_scene34_bin_7=0x80808080
  439. VIP_var_dlc_chroma_idx_0_scene34_bin_11=0x80808080
  440. VIP_var_dlc_chroma_idx_0_scene34_bin_15=0x80808080
  441. VIP_var_dlc_chroma_idx_0_scene35_bin_3=0x80808080
  442. VIP_var_dlc_chroma_idx_0_scene35_bin_7=0x80808080
  443. VIP_var_dlc_chroma_idx_0_scene35_bin_11=0x80808080
  444. VIP_var_dlc_chroma_idx_0_scene35_bin_15=0x80808080
  445. VIP_var_dlc_idx0_DLC_En=0
  446. VIP_var_dlc_idx0_Var_Cond_En=95
  447. VIP_var_dlc_idx0_Ratio[0]=358
  448. VIP_var_dlc_idx0_Ratio[1]=154
  449. VIP_var_dlc_idx0_Ratio[2]=307
  450. VIP_var_dlc_idx0_Ratio[3]=205
  451. VIP_var_dlc_idx0_Ratio[4]=282
  452. VIP_var_dlc_idx0_Ratio[5]=282
  453. VIP_var_dlc_idx0_Factor[0]=180
  454. VIP_var_dlc_idx0_Factor[1]=175
  455. VIP_var_dlc_idx0_Factor[2]=200
  456. VIP_var_dlc_idx0_Factor[3]=512
  457. VIP_var_dlc_idx0_Factor[4]=512
  458. VIP_var_dlc_idx0_Alpha=254
  459. VIP_var_dlc_idx0_static_alpha[0]=108
  460. VIP_var_dlc_idx0_static_alpha[1]=128
  461. VIP_var_dlc_idx0_static_alpha[2]=128
  462. VIP_var_dlc_idx0_static_alpha[3]=128
  463. VIP_var_dlc_idx0_contrast_lv=255
  464. VIP_var_dlc_idx0_chroma_lv=255
  465. VIP_var_dlc_luma_idx_1_scene0_bin_3=0x998e8563
  466. VIP_var_dlc_luma_idx_1_scene0_bin_7=0x98a2aea8
  467. VIP_var_dlc_luma_idx_1_scene0_bin_11=0x6c747d88
  468. VIP_var_dlc_luma_idx_1_scene0_bin_15=0x51555d65
  469. VIP_var_dlc_luma_idx_1_scene1_bin_3=0x9f87745d
  470. VIP_var_dlc_luma_idx_1_scene1_bin_7=0x959aa7a7
  471. VIP_var_dlc_luma_idx_1_scene1_bin_11=0x59657381
  472. VIP_var_dlc_luma_idx_1_scene1_bin_15=0x59595959
  473. VIP_var_dlc_luma_idx_1_scene2_bin_3=0x927e7165
  474. VIP_var_dlc_luma_idx_1_scene2_bin_7=0x9ba9b8a5
  475. VIP_var_dlc_luma_idx_1_scene2_bin_11=0x767d868c
  476. VIP_var_dlc_luma_idx_1_scene2_bin_15=0x535b626d
  477. VIP_var_dlc_luma_idx_1_scene3_bin_3=0x8d7c644e
  478. VIP_var_dlc_luma_idx_1_scene3_bin_7=0xa4adbea0
  479. VIP_var_dlc_luma_idx_1_scene3_bin_11=0x6d7e8e9a
  480. VIP_var_dlc_luma_idx_1_scene3_bin_15=0x484f5964
  481. VIP_var_dlc_luma_idx_1_scene4_bin_3=0xa287683c
  482. VIP_var_dlc_luma_idx_1_scene4_bin_7=0xa3aaaeb7
  483. VIP_var_dlc_luma_idx_1_scene4_bin_11=0x717c8f9b
  484. VIP_var_dlc_luma_idx_1_scene4_bin_15=0x3e4e5964
  485. VIP_var_dlc_luma_idx_1_scene5_bin_3=0x8e7c6455
  486. VIP_var_dlc_luma_idx_1_scene5_bin_7=0x9daebc9f
  487. VIP_var_dlc_luma_idx_1_scene5_bin_11=0x717a838a
  488. VIP_var_dlc_luma_idx_1_scene5_bin_15=0x5f5f5f69
  489. VIP_var_dlc_luma_idx_1_scene6_bin_3=0x99836951
  490. VIP_var_dlc_luma_idx_1_scene6_bin_7=0x99a2a9a0
  491. VIP_var_dlc_luma_idx_1_scene6_bin_11=0x717c8794
  492. VIP_var_dlc_luma_idx_1_scene6_bin_15=0x585e656b
  493. VIP_var_dlc_luma_idx_1_scene7_bin_3=0x95866d58
  494. VIP_var_dlc_luma_idx_1_scene7_bin_7=0x8e96a0ab
  495. VIP_var_dlc_luma_idx_1_scene7_bin_11=0x72757b84
  496. VIP_var_dlc_luma_idx_1_scene7_bin_15=0x6e6e6e6e
  497. VIP_var_dlc_luma_idx_1_scene8_bin_3=0x9f8e734d
  498. VIP_var_dlc_luma_idx_1_scene8_bin_7=0x878f99b4
  499. VIP_var_dlc_luma_idx_1_scene8_bin_11=0x7272787d
  500. VIP_var_dlc_luma_idx_1_scene8_bin_15=0x72727272
  501. VIP_var_dlc_luma_idx_1_scene9_bin_3=0x8c868278
  502. VIP_var_dlc_luma_idx_1_scene9_bin_7=0x8585898b
  503. VIP_var_dlc_luma_idx_1_scene9_bin_11=0x76767a81
  504. VIP_var_dlc_luma_idx_1_scene9_bin_15=0x76767676
  505. VIP_var_dlc_luma_idx_1_scene10_bin_3=0x86828180
  506. VIP_var_dlc_luma_idx_1_scene10_bin_7=0x83858683
  507. VIP_var_dlc_luma_idx_1_scene10_bin_11=0x787a7d80
  508. VIP_var_dlc_luma_idx_1_scene10_bin_15=0x78787878
  509. VIP_var_dlc_luma_idx_1_scene11_bin_3=0x8682817b
  510. VIP_var_dlc_luma_idx_1_scene11_bin_7=0x83858683
  511. VIP_var_dlc_luma_idx_1_scene11_bin_11=0x787a7d80
  512. VIP_var_dlc_luma_idx_1_scene11_bin_15=0x78787878
  513. VIP_var_dlc_luma_idx_1_scene12_bin_3=0x8176655e
  514. VIP_var_dlc_luma_idx_1_scene12_bin_7=0xa59d9590
  515. VIP_var_dlc_luma_idx_1_scene12_bin_11=0x7d809099
  516. VIP_var_dlc_luma_idx_1_scene12_bin_15=0x89818179
  517. VIP_var_dlc_luma_idx_1_scene13_bin_3=0x9788695d
  518. VIP_var_dlc_luma_idx_1_scene13_bin_7=0x9ea1a5a0
  519. VIP_var_dlc_luma_idx_1_scene13_bin_11=0x7c86909a
  520. VIP_var_dlc_luma_idx_1_scene13_bin_15=0x4a53606c
  521. VIP_var_dlc_luma_idx_1_scene14_bin_3=0x8682817b
  522. VIP_var_dlc_luma_idx_1_scene14_bin_7=0x83858683
  523. VIP_var_dlc_luma_idx_1_scene14_bin_11=0x787a7d80
  524. VIP_var_dlc_luma_idx_1_scene14_bin_15=0x78787878
  525. VIP_var_dlc_luma_idx_1_scene15_bin_3=0xa0896f5c
  526. VIP_var_dlc_luma_idx_1_scene15_bin_7=0xa2a2a1a0
  527. VIP_var_dlc_luma_idx_1_scene15_bin_11=0x98a0a0a1
  528. VIP_var_dlc_luma_idx_1_scene15_bin_15=0x5d707c8c
  529. VIP_var_dlc_luma_idx_1_scene16_bin_3=0xa391714d
  530. VIP_var_dlc_luma_idx_1_scene16_bin_7=0xa7b6cabb
  531. VIP_var_dlc_luma_idx_1_scene16_bin_11=0x70808c99
  532. VIP_var_dlc_luma_idx_1_scene16_bin_15=0x303d4c5b
  533. VIP_var_dlc_luma_idx_1_scene17_bin_3=0x9c948058
  534. VIP_var_dlc_luma_idx_1_scene17_bin_7=0x9ca3a39c
  535. VIP_var_dlc_luma_idx_1_scene17_bin_11=0x7883868c
  536. VIP_var_dlc_luma_idx_1_scene17_bin_15=0x4259646e
  537. VIP_var_dlc_luma_idx_1_scene18_bin_3=0x9c948072
  538. VIP_var_dlc_luma_idx_1_scene18_bin_7=0xa0afa39c
  539. VIP_var_dlc_luma_idx_1_scene18_bin_11=0x707d8892
  540. VIP_var_dlc_luma_idx_1_scene18_bin_15=0x414b5863
  541. VIP_var_dlc_luma_idx_1_scene19_bin_3=0x927c6754
  542. VIP_var_dlc_luma_idx_1_scene19_bin_7=0x8b928f93
  543. VIP_var_dlc_luma_idx_1_scene19_bin_11=0x7e7e8186
  544. VIP_var_dlc_luma_idx_1_scene19_bin_15=0x75757575
  545. VIP_var_dlc_luma_idx_1_scene20_bin_3=0xa1968b75
  546. VIP_var_dlc_luma_idx_1_scene20_bin_7=0x949ba6a8
  547. VIP_var_dlc_luma_idx_1_scene20_bin_11=0x727c848d
  548. VIP_var_dlc_luma_idx_1_scene20_bin_15=0x3b455d6a
  549. VIP_var_dlc_luma_idx_1_scene21_bin_3=0x7b685a50
  550. VIP_var_dlc_luma_idx_1_scene21_bin_7=0xabb9a393
  551. VIP_var_dlc_luma_idx_1_scene21_bin_11=0x798c9ca1
  552. VIP_var_dlc_luma_idx_1_scene21_bin_15=0x4f515869
  553. VIP_var_dlc_luma_idx_1_scene22_bin_3=0x97807064
  554. VIP_var_dlc_luma_idx_1_scene22_bin_7=0x9ba9b8a9
  555. VIP_var_dlc_luma_idx_1_scene22_bin_11=0x74818890
  556. VIP_var_dlc_luma_idx_1_scene22_bin_15=0x46515d68
  557. VIP_var_dlc_luma_idx_1_scene23_bin_3=0x95826e64
  558. VIP_var_dlc_luma_idx_1_scene23_bin_7=0xa1a7ada3
  559. VIP_var_dlc_luma_idx_1_scene23_bin_11=0x73798792
  560. VIP_var_dlc_luma_idx_1_scene23_bin_15=0x525a636b
  561. VIP_var_dlc_luma_idx_1_scene24_bin_3=0x8d807461
  562. VIP_var_dlc_luma_idx_1_scene24_bin_7=0xa3aba89b
  563. VIP_var_dlc_luma_idx_1_scene24_bin_11=0x6d788495
  564. VIP_var_dlc_luma_idx_1_scene24_bin_15=0x4d545c65
  565. VIP_var_dlc_luma_idx_1_scene25_bin_3=0x9b8b7f78
  566. VIP_var_dlc_luma_idx_1_scene25_bin_7=0x9b9b9b9b
  567. VIP_var_dlc_luma_idx_1_scene25_bin_11=0x89949b9b
  568. VIP_var_dlc_luma_idx_1_scene25_bin_15=0x2348546f
  569. VIP_var_dlc_luma_idx_1_scene26_bin_3=0x9b8b755c
  570. VIP_var_dlc_luma_idx_1_scene26_bin_7=0x9daab4aa
  571. VIP_var_dlc_luma_idx_1_scene26_bin_11=0x6a7b8090
  572. VIP_var_dlc_luma_idx_1_scene26_bin_15=0x4e525863
  573. VIP_var_dlc_luma_idx_1_scene27_bin_3=0xa394815c
  574. VIP_var_dlc_luma_idx_1_scene27_bin_7=0x9ba8aeb8
  575. VIP_var_dlc_luma_idx_1_scene27_bin_11=0x707b8894
  576. VIP_var_dlc_luma_idx_1_scene27_bin_15=0x3d4a5863
  577. VIP_var_dlc_luma_idx_1_scene28_bin_3=0x99a0a0a0
  578. VIP_var_dlc_luma_idx_1_scene28_bin_7=0x75787d89
  579. VIP_var_dlc_luma_idx_1_scene28_bin_11=0x6c6c6f73
  580. VIP_var_dlc_luma_idx_1_scene28_bin_15=0x80787068
  581. VIP_var_dlc_luma_idx_1_scene29_bin_3=0x9c948058
  582. VIP_var_dlc_luma_idx_1_scene29_bin_7=0x9ca3a39c
  583. VIP_var_dlc_luma_idx_1_scene29_bin_11=0x7883868c
  584. VIP_var_dlc_luma_idx_1_scene29_bin_15=0x4259646e
  585. VIP_var_dlc_luma_idx_1_scene30_bin_3=0x80808080
  586. VIP_var_dlc_luma_idx_1_scene30_bin_7=0x80808080
  587. VIP_var_dlc_luma_idx_1_scene30_bin_11=0x80808080
  588. VIP_var_dlc_luma_idx_1_scene30_bin_15=0x80808080
  589. VIP_var_dlc_luma_idx_1_scene31_bin_3=0x8f887972
  590. VIP_var_dlc_luma_idx_1_scene31_bin_7=0x85878b8f
  591. VIP_var_dlc_luma_idx_1_scene31_bin_11=0x777c8383
  592. VIP_var_dlc_luma_idx_1_scene31_bin_15=0x6e6e6e72
  593. VIP_var_dlc_luma_idx_1_scene32_bin_3=0x684f3e27
  594. VIP_var_dlc_luma_idx_1_scene32_bin_7=0xbfd2c38b
  595. VIP_var_dlc_luma_idx_1_scene32_bin_11=0x82858895
  596. VIP_var_dlc_luma_idx_1_scene32_bin_15=0x7c7c8080
  597. VIP_var_dlc_luma_idx_1_scene33_bin_3=0x80808080
  598. VIP_var_dlc_luma_idx_1_scene33_bin_7=0x9a808080
  599. VIP_var_dlc_luma_idx_1_scene33_bin_11=0x8abfd2bc
  600. VIP_var_dlc_luma_idx_1_scene33_bin_15=0x35394a5f
  601. VIP_var_dlc_luma_idx_1_scene34_bin_3=0x4d443b32
  602. VIP_var_dlc_luma_idx_1_scene34_bin_7=0x78676158
  603. VIP_var_dlc_luma_idx_1_scene34_bin_11=0xa89b8678
  604. VIP_var_dlc_luma_idx_1_scene34_bin_15=0xdcd1c5b7
  605. VIP_var_dlc_luma_idx_1_scene35_bin_3=0x6b4c3526
  606. VIP_var_dlc_luma_idx_1_scene35_bin_7=0xd4bc9e8c
  607. VIP_var_dlc_luma_idx_1_scene35_bin_11=0x99b5ead4
  608. VIP_var_dlc_luma_idx_1_scene35_bin_15=0x2a3e5b6b
  609. VIP_var_dlc_chroma_idx_1_scene0_bin_3=0x76767676
  610. VIP_var_dlc_chroma_idx_1_scene0_bin_7=0x76767676
  611. VIP_var_dlc_chroma_idx_1_scene0_bin_11=0x76767676
  612. VIP_var_dlc_chroma_idx_1_scene0_bin_15=0x76767676
  613. VIP_var_dlc_chroma_idx_1_scene1_bin_3=0x80808080
  614. VIP_var_dlc_chroma_idx_1_scene1_bin_7=0x80808080
  615. VIP_var_dlc_chroma_idx_1_scene1_bin_11=0x80808080
  616. VIP_var_dlc_chroma_idx_1_scene1_bin_15=0x80808080
  617. VIP_var_dlc_chroma_idx_1_scene2_bin_3=0x80808080
  618. VIP_var_dlc_chroma_idx_1_scene2_bin_7=0x80808080
  619. VIP_var_dlc_chroma_idx_1_scene2_bin_11=0x80808080
  620. VIP_var_dlc_chroma_idx_1_scene2_bin_15=0x80808080
  621. VIP_var_dlc_chroma_idx_1_scene3_bin_3=0x80808080
  622. VIP_var_dlc_chroma_idx_1_scene3_bin_7=0x80808080
  623. VIP_var_dlc_chroma_idx_1_scene3_bin_11=0x80808080
  624. VIP_var_dlc_chroma_idx_1_scene3_bin_15=0x80808080
  625. VIP_var_dlc_chroma_idx_1_scene4_bin_3=0x80808080
  626. VIP_var_dlc_chroma_idx_1_scene4_bin_7=0x80808080
  627. VIP_var_dlc_chroma_idx_1_scene4_bin_11=0x80808080
  628. VIP_var_dlc_chroma_idx_1_scene4_bin_15=0x80808080
  629. VIP_var_dlc_chroma_idx_1_scene5_bin_3=0x80808080
  630. VIP_var_dlc_chroma_idx_1_scene5_bin_7=0x80808080
  631. VIP_var_dlc_chroma_idx_1_scene5_bin_11=0x80808080
  632. VIP_var_dlc_chroma_idx_1_scene5_bin_15=0x80808080
  633. VIP_var_dlc_chroma_idx_1_scene6_bin_3=0x80808080
  634. VIP_var_dlc_chroma_idx_1_scene6_bin_7=0x80808080
  635. VIP_var_dlc_chroma_idx_1_scene6_bin_11=0x80808080
  636. VIP_var_dlc_chroma_idx_1_scene6_bin_15=0x80808080
  637. VIP_var_dlc_chroma_idx_1_scene7_bin_3=0x80808080
  638. VIP_var_dlc_chroma_idx_1_scene7_bin_7=0x80808080
  639. VIP_var_dlc_chroma_idx_1_scene7_bin_11=0x80808080
  640. VIP_var_dlc_chroma_idx_1_scene7_bin_15=0x80808080
  641. VIP_var_dlc_chroma_idx_1_scene8_bin_3=0x80808080
  642. VIP_var_dlc_chroma_idx_1_scene8_bin_7=0x80808080
  643. VIP_var_dlc_chroma_idx_1_scene8_bin_11=0x80808080
  644. VIP_var_dlc_chroma_idx_1_scene8_bin_15=0x80808080
  645. VIP_var_dlc_chroma_idx_1_scene9_bin_3=0x80808080
  646. VIP_var_dlc_chroma_idx_1_scene9_bin_7=0x80808080
  647. VIP_var_dlc_chroma_idx_1_scene9_bin_11=0x80808080
  648. VIP_var_dlc_chroma_idx_1_scene9_bin_15=0x80808080
  649. VIP_var_dlc_chroma_idx_1_scene10_bin_3=0x80808080
  650. VIP_var_dlc_chroma_idx_1_scene10_bin_7=0x80808080
  651. VIP_var_dlc_chroma_idx_1_scene10_bin_11=0x80808080
  652. VIP_var_dlc_chroma_idx_1_scene10_bin_15=0x80808080
  653. VIP_var_dlc_chroma_idx_1_scene11_bin_3=0x80808080
  654. VIP_var_dlc_chroma_idx_1_scene11_bin_7=0x80808080
  655. VIP_var_dlc_chroma_idx_1_scene11_bin_11=0x80808080
  656. VIP_var_dlc_chroma_idx_1_scene11_bin_15=0x80808080
  657. VIP_var_dlc_chroma_idx_1_scene12_bin_3=0x80808080
  658. VIP_var_dlc_chroma_idx_1_scene12_bin_7=0x80808080
  659. VIP_var_dlc_chroma_idx_1_scene12_bin_11=0x80808080
  660. VIP_var_dlc_chroma_idx_1_scene12_bin_15=0x80808080
  661. VIP_var_dlc_chroma_idx_1_scene13_bin_3=0x80808080
  662. VIP_var_dlc_chroma_idx_1_scene13_bin_7=0x80808080
  663. VIP_var_dlc_chroma_idx_1_scene13_bin_11=0x80808080
  664. VIP_var_dlc_chroma_idx_1_scene13_bin_15=0x80808080
  665. VIP_var_dlc_chroma_idx_1_scene14_bin_3=0x80808080
  666. VIP_var_dlc_chroma_idx_1_scene14_bin_7=0x80808080
  667. VIP_var_dlc_chroma_idx_1_scene14_bin_11=0x80808080
  668. VIP_var_dlc_chroma_idx_1_scene14_bin_15=0x80808080
  669. VIP_var_dlc_chroma_idx_1_scene15_bin_3=0x80808080
  670. VIP_var_dlc_chroma_idx_1_scene15_bin_7=0x80808080
  671. VIP_var_dlc_chroma_idx_1_scene15_bin_11=0x80808080
  672. VIP_var_dlc_chroma_idx_1_scene15_bin_15=0x80808080
  673. VIP_var_dlc_chroma_idx_1_scene16_bin_3=0x80808080
  674. VIP_var_dlc_chroma_idx_1_scene16_bin_7=0x80808080
  675. VIP_var_dlc_chroma_idx_1_scene16_bin_11=0x80808080
  676. VIP_var_dlc_chroma_idx_1_scene16_bin_15=0x80808080
  677. VIP_var_dlc_chroma_idx_1_scene17_bin_3=0x80808080
  678. VIP_var_dlc_chroma_idx_1_scene17_bin_7=0x80808080
  679. VIP_var_dlc_chroma_idx_1_scene17_bin_11=0x80808080
  680. VIP_var_dlc_chroma_idx_1_scene17_bin_15=0x80808080
  681. VIP_var_dlc_chroma_idx_1_scene18_bin_3=0x80808080
  682. VIP_var_dlc_chroma_idx_1_scene18_bin_7=0x80808080
  683. VIP_var_dlc_chroma_idx_1_scene18_bin_11=0x80808080
  684. VIP_var_dlc_chroma_idx_1_scene18_bin_15=0x80808080
  685. VIP_var_dlc_chroma_idx_1_scene19_bin_3=0x80808080
  686. VIP_var_dlc_chroma_idx_1_scene19_bin_7=0x80808080
  687. VIP_var_dlc_chroma_idx_1_scene19_bin_11=0x80808080
  688. VIP_var_dlc_chroma_idx_1_scene19_bin_15=0x80808080
  689. VIP_var_dlc_chroma_idx_1_scene20_bin_3=0x80808080
  690. VIP_var_dlc_chroma_idx_1_scene20_bin_7=0x80808080
  691. VIP_var_dlc_chroma_idx_1_scene20_bin_11=0x80808080
  692. VIP_var_dlc_chroma_idx_1_scene20_bin_15=0x80808080
  693. VIP_var_dlc_chroma_idx_1_scene21_bin_3=0x80808080
  694. VIP_var_dlc_chroma_idx_1_scene21_bin_7=0x80808080
  695. VIP_var_dlc_chroma_idx_1_scene21_bin_11=0x80808080
  696. VIP_var_dlc_chroma_idx_1_scene21_bin_15=0x80808080
  697. VIP_var_dlc_chroma_idx_1_scene22_bin_3=0x80808080
  698. VIP_var_dlc_chroma_idx_1_scene22_bin_7=0x80808080
  699. VIP_var_dlc_chroma_idx_1_scene22_bin_11=0x80808080
  700. VIP_var_dlc_chroma_idx_1_scene22_bin_15=0x80808080
  701. VIP_var_dlc_chroma_idx_1_scene23_bin_3=0x80808080
  702. VIP_var_dlc_chroma_idx_1_scene23_bin_7=0x80808080
  703. VIP_var_dlc_chroma_idx_1_scene23_bin_11=0x80808080
  704. VIP_var_dlc_chroma_idx_1_scene23_bin_15=0x80808080
  705. VIP_var_dlc_chroma_idx_1_scene24_bin_3=0x80808080
  706. VIP_var_dlc_chroma_idx_1_scene24_bin_7=0x80808080
  707. VIP_var_dlc_chroma_idx_1_scene24_bin_11=0x80808080
  708. VIP_var_dlc_chroma_idx_1_scene24_bin_15=0x80808080
  709. VIP_var_dlc_chroma_idx_1_scene25_bin_3=0x80808080
  710. VIP_var_dlc_chroma_idx_1_scene25_bin_7=0x80808080
  711. VIP_var_dlc_chroma_idx_1_scene25_bin_11=0x80808080
  712. VIP_var_dlc_chroma_idx_1_scene25_bin_15=0x80808080
  713. VIP_var_dlc_chroma_idx_1_scene26_bin_3=0x80808080
  714. VIP_var_dlc_chroma_idx_1_scene26_bin_7=0x80808080
  715. VIP_var_dlc_chroma_idx_1_scene26_bin_11=0x80808080
  716. VIP_var_dlc_chroma_idx_1_scene26_bin_15=0x80808080
  717. VIP_var_dlc_chroma_idx_1_scene27_bin_3=0x80808080
  718. VIP_var_dlc_chroma_idx_1_scene27_bin_7=0x80808080
  719. VIP_var_dlc_chroma_idx_1_scene27_bin_11=0x80808080
  720. VIP_var_dlc_chroma_idx_1_scene27_bin_15=0x80808080
  721. VIP_var_dlc_chroma_idx_1_scene28_bin_3=0x80808080
  722. VIP_var_dlc_chroma_idx_1_scene28_bin_7=0x80808080
  723. VIP_var_dlc_chroma_idx_1_scene28_bin_11=0x80808080
  724. VIP_var_dlc_chroma_idx_1_scene28_bin_15=0x80808080
  725. VIP_var_dlc_chroma_idx_1_scene29_bin_3=0x80808080
  726. VIP_var_dlc_chroma_idx_1_scene29_bin_7=0x80808080
  727. VIP_var_dlc_chroma_idx_1_scene29_bin_11=0x80808080
  728. VIP_var_dlc_chroma_idx_1_scene29_bin_15=0x80808080
  729. VIP_var_dlc_chroma_idx_1_scene30_bin_3=0x77777777
  730. VIP_var_dlc_chroma_idx_1_scene30_bin_7=0x77777777
  731. VIP_var_dlc_chroma_idx_1_scene30_bin_11=0x77777777
  732. VIP_var_dlc_chroma_idx_1_scene30_bin_15=0x77777777
  733. VIP_var_dlc_chroma_idx_1_scene31_bin_3=0x80808080
  734. VIP_var_dlc_chroma_idx_1_scene31_bin_7=0x80808080
  735. VIP_var_dlc_chroma_idx_1_scene31_bin_11=0x80808080
  736. VIP_var_dlc_chroma_idx_1_scene31_bin_15=0x80808080
  737. VIP_var_dlc_chroma_idx_1_scene32_bin_3=0x80808080
  738. VIP_var_dlc_chroma_idx_1_scene32_bin_7=0x80808080
  739. VIP_var_dlc_chroma_idx_1_scene32_bin_11=0x80808080
  740. VIP_var_dlc_chroma_idx_1_scene32_bin_15=0x80808080
  741. VIP_var_dlc_chroma_idx_1_scene33_bin_3=0x80808080
  742. VIP_var_dlc_chroma_idx_1_scene33_bin_7=0x80808080
  743. VIP_var_dlc_chroma_idx_1_scene33_bin_11=0x80808080
  744. VIP_var_dlc_chroma_idx_1_scene33_bin_15=0x80808080
  745. VIP_var_dlc_chroma_idx_1_scene34_bin_3=0x80808080
  746. VIP_var_dlc_chroma_idx_1_scene34_bin_7=0x80808080
  747. VIP_var_dlc_chroma_idx_1_scene34_bin_11=0x80808080
  748. VIP_var_dlc_chroma_idx_1_scene34_bin_15=0x80808080
  749. VIP_var_dlc_chroma_idx_1_scene35_bin_3=0x80808080
  750. VIP_var_dlc_chroma_idx_1_scene35_bin_7=0x80808080
  751. VIP_var_dlc_chroma_idx_1_scene35_bin_11=0x80808080
  752. VIP_var_dlc_chroma_idx_1_scene35_bin_15=0x80808080
  753. VIP_var_dlc_idx1_DLC_En=1
  754. VIP_var_dlc_idx1_Var_Cond_En=95
  755. VIP_var_dlc_idx1_Ratio[0]=358
  756. VIP_var_dlc_idx1_Ratio[1]=154
  757. VIP_var_dlc_idx1_Ratio[2]=307
  758. VIP_var_dlc_idx1_Ratio[3]=205
  759. VIP_var_dlc_idx1_Ratio[4]=282
  760. VIP_var_dlc_idx1_Ratio[5]=282
  761. VIP_var_dlc_idx1_Factor[0]=180
  762. VIP_var_dlc_idx1_Factor[1]=175
  763. VIP_var_dlc_idx1_Factor[2]=200
  764. VIP_var_dlc_idx1_Factor[3]=512
  765. VIP_var_dlc_idx1_Factor[4]=512
  766. VIP_var_dlc_idx1_Alpha=254
  767. VIP_var_dlc_idx1_static_alpha[0]=128
  768. VIP_var_dlc_idx1_static_alpha[1]=128
  769. VIP_var_dlc_idx1_static_alpha[2]=128
  770. VIP_var_dlc_idx1_static_alpha[3]=128
  771. VIP_var_dlc_idx1_contrast_lv=255
  772. VIP_var_dlc_idx1_chroma_lv=255
  773. VIP_var_dlc_luma_idx_2_scene0_bin_3=0xa8948a82
  774. VIP_var_dlc_luma_idx_2_scene0_bin_7=0x99a4b0be
  775. VIP_var_dlc_luma_idx_2_scene0_bin_11=0x626e7a87
  776. VIP_var_dlc_luma_idx_2_scene0_bin_15=0x3f454d55
  777. VIP_var_dlc_luma_idx_2_scene1_bin_3=0x98735362
  778. VIP_var_dlc_luma_idx_2_scene1_bin_7=0xa0a6aca2
  779. VIP_var_dlc_luma_idx_2_scene1_bin_11=0x76818a96
  780. VIP_var_dlc_luma_idx_2_scene1_bin_15=0x4855606a
  781. VIP_var_dlc_luma_idx_2_scene2_bin_3=0x927d6f60
  782. VIP_var_dlc_luma_idx_2_scene2_bin_7=0xaab5b1a8
  783. VIP_var_dlc_luma_idx_2_scene2_bin_11=0x737e8b9d
  784. VIP_var_dlc_luma_idx_2_scene2_bin_15=0x404c5766
  785. VIP_var_dlc_luma_idx_2_scene3_bin_3=0x8273553e
  786. VIP_var_dlc_luma_idx_2_scene3_bin_7=0xbdcdaf9d
  787. VIP_var_dlc_luma_idx_2_scene3_bin_11=0x768594a8
  788. VIP_var_dlc_luma_idx_2_scene3_bin_15=0x42515d68
  789. VIP_var_dlc_luma_idx_2_scene4_bin_3=0x8a695a31
  790. VIP_var_dlc_luma_idx_2_scene4_bin_7=0xb5cbb8a2
  791. VIP_var_dlc_luma_idx_2_scene4_bin_11=0x718596a2
  792. VIP_var_dlc_luma_idx_2_scene4_bin_15=0x3e4e5964
  793. VIP_var_dlc_luma_idx_2_scene5_bin_3=0x7f6e6358
  794. VIP_var_dlc_luma_idx_2_scene5_bin_7=0xa4b1aa92
  795. VIP_var_dlc_luma_idx_2_scene5_bin_11=0x74778392
  796. VIP_var_dlc_luma_idx_2_scene5_bin_15=0x56626870
  797. VIP_var_dlc_luma_idx_2_scene6_bin_3=0x7d6e6154
  798. VIP_var_dlc_luma_idx_2_scene6_bin_7=0xa0a1988b
  799. VIP_var_dlc_luma_idx_2_scene6_bin_11=0x80858d9b
  800. VIP_var_dlc_luma_idx_2_scene6_bin_15=0x7070707a
  801. VIP_var_dlc_luma_idx_2_scene7_bin_3=0x725c4d40
  802. VIP_var_dlc_luma_idx_2_scene7_bin_7=0xacb7b18f
  803. VIP_var_dlc_luma_idx_2_scene7_bin_11=0x7a8897a1
  804. VIP_var_dlc_luma_idx_2_scene7_bin_15=0x4e57616c
  805. VIP_var_dlc_luma_idx_2_scene8_bin_3=0x75625242
  806. VIP_var_dlc_luma_idx_2_scene8_bin_7=0xa8ae9e92
  807. VIP_var_dlc_luma_idx_2_scene8_bin_11=0x79808899
  808. VIP_var_dlc_luma_idx_2_scene8_bin_15=0x71717171
  809. VIP_var_dlc_luma_idx_2_scene9_bin_3=0x948e8580
  810. VIP_var_dlc_luma_idx_2_scene9_bin_7=0x9c9c9a94
  811. VIP_var_dlc_luma_idx_2_scene9_bin_11=0x788e959c
  812. VIP_var_dlc_luma_idx_2_scene9_bin_15=0x324b5867
  813. VIP_var_dlc_luma_idx_2_scene10_bin_3=0x7a756e64
  814. VIP_var_dlc_luma_idx_2_scene10_bin_7=0xad968e85
  815. VIP_var_dlc_luma_idx_2_scene10_bin_11=0x79828ea2
  816. VIP_var_dlc_luma_idx_2_scene10_bin_15=0x59616a72
  817. VIP_var_dlc_luma_idx_2_scene11_bin_3=0x836b5345
  818. VIP_var_dlc_luma_idx_2_scene11_bin_7=0xaeb9a28f
  819. VIP_var_dlc_luma_idx_2_scene11_bin_11=0x848c95a4
  820. VIP_var_dlc_luma_idx_2_scene11_bin_15=0x5c636975
  821. VIP_var_dlc_luma_idx_2_scene12_bin_3=0x7667584c
  822. VIP_var_dlc_luma_idx_2_scene12_bin_7=0xa59d9588
  823. VIP_var_dlc_luma_idx_2_scene12_bin_11=0x73809099
  824. VIP_var_dlc_luma_idx_2_scene12_bin_15=0x8981816e
  825. VIP_var_dlc_luma_idx_2_scene13_bin_3=0x9788695d
  826. VIP_var_dlc_luma_idx_2_scene13_bin_7=0x9ea1a5a0
  827. VIP_var_dlc_luma_idx_2_scene13_bin_11=0x7c86909a
  828. VIP_var_dlc_luma_idx_2_scene13_bin_15=0x4a53606c
  829. VIP_var_dlc_luma_idx_2_scene14_bin_3=0x9988694d
  830. VIP_var_dlc_luma_idx_2_scene14_bin_7=0x9ca4aca3
  831. VIP_var_dlc_luma_idx_2_scene14_bin_11=0x7d848c94
  832. VIP_var_dlc_luma_idx_2_scene14_bin_15=0x46566472
  833. VIP_var_dlc_luma_idx_2_scene15_bin_3=0xa18a6d50
  834. VIP_var_dlc_luma_idx_2_scene15_bin_7=0xa3b1beb3
  835. VIP_var_dlc_luma_idx_2_scene15_bin_11=0x6e7d8a95
  836. VIP_var_dlc_luma_idx_2_scene15_bin_15=0x424e5862
  837. VIP_var_dlc_luma_idx_2_scene16_bin_3=0xa38b7258
  838. VIP_var_dlc_luma_idx_2_scene16_bin_7=0x989eadb2
  839. VIP_var_dlc_luma_idx_2_scene16_bin_11=0x76808992
  840. VIP_var_dlc_luma_idx_2_scene16_bin_15=0x46515f6a
  841. VIP_var_dlc_luma_idx_2_scene17_bin_3=0x9c948058
  842. VIP_var_dlc_luma_idx_2_scene17_bin_7=0x9ca3a39c
  843. VIP_var_dlc_luma_idx_2_scene17_bin_11=0x7883868c
  844. VIP_var_dlc_luma_idx_2_scene17_bin_15=0x4259646e
  845. VIP_var_dlc_luma_idx_2_scene18_bin_3=0x9c948072
  846. VIP_var_dlc_luma_idx_2_scene18_bin_7=0x9ca3a39c
  847. VIP_var_dlc_luma_idx_2_scene18_bin_11=0x7883868c
  848. VIP_var_dlc_luma_idx_2_scene18_bin_15=0x4259646e
  849. VIP_var_dlc_luma_idx_2_scene19_bin_3=0xa085634c
  850. VIP_var_dlc_luma_idx_2_scene19_bin_7=0x98a0a8b4
  851. VIP_var_dlc_luma_idx_2_scene19_bin_11=0x7e858c91
  852. VIP_var_dlc_luma_idx_2_scene19_bin_15=0x495a6b75
  853. VIP_var_dlc_luma_idx_2_scene20_bin_3=0xa1968b75
  854. VIP_var_dlc_luma_idx_2_scene20_bin_7=0x949ba6a8
  855. VIP_var_dlc_luma_idx_2_scene20_bin_11=0x727c848d
  856. VIP_var_dlc_luma_idx_2_scene20_bin_15=0x3b455d6a
  857. VIP_var_dlc_luma_idx_2_scene21_bin_3=0x7b68523c
  858. VIP_var_dlc_luma_idx_2_scene21_bin_7=0xbfcdb093
  859. VIP_var_dlc_luma_idx_2_scene21_bin_11=0x798c9caf
  860. VIP_var_dlc_luma_idx_2_scene21_bin_15=0x3b485869
  861. VIP_var_dlc_luma_idx_2_scene22_bin_3=0x82694c64
  862. VIP_var_dlc_luma_idx_2_scene22_bin_7=0xa4b2c09d
  863. VIP_var_dlc_luma_idx_2_scene22_bin_11=0x7581909a
  864. VIP_var_dlc_luma_idx_2_scene22_bin_15=0x6363636b
  865. VIP_var_dlc_luma_idx_2_scene23_bin_3=0x95826e64
  866. VIP_var_dlc_luma_idx_2_scene23_bin_7=0xa1a7ada3
  867. VIP_var_dlc_luma_idx_2_scene23_bin_11=0x73798792
  868. VIP_var_dlc_luma_idx_2_scene23_bin_15=0x525a636b
  869. VIP_var_dlc_luma_idx_2_scene24_bin_3=0x8d70503e
  870. VIP_var_dlc_luma_idx_2_scene24_bin_7=0xaab2a89b
  871. VIP_var_dlc_luma_idx_2_scene24_bin_11=0x77828f9f
  872. VIP_var_dlc_luma_idx_2_scene24_bin_15=0x4d54606d
  873. VIP_var_dlc_luma_idx_2_scene25_bin_3=0x9b8b7f78
  874. VIP_var_dlc_luma_idx_2_scene25_bin_7=0x9b9b9b9b
  875. VIP_var_dlc_luma_idx_2_scene25_bin_11=0x89949b9b
  876. VIP_var_dlc_luma_idx_2_scene25_bin_15=0x2348546f
  877. VIP_var_dlc_luma_idx_2_scene26_bin_3=0xa394815c
  878. VIP_var_dlc_luma_idx_2_scene26_bin_7=0x96a2abb8
  879. VIP_var_dlc_luma_idx_2_scene26_bin_11=0x6a7b808a
  880. VIP_var_dlc_luma_idx_2_scene26_bin_15=0x4e525863
  881. VIP_var_dlc_luma_idx_2_scene27_bin_3=0xa394815c
  882. VIP_var_dlc_luma_idx_2_scene27_bin_7=0x9ba8aeb8
  883. VIP_var_dlc_luma_idx_2_scene27_bin_11=0x707b8894
  884. VIP_var_dlc_luma_idx_2_scene27_bin_15=0x3d4a5863
  885. VIP_var_dlc_luma_idx_2_scene28_bin_3=0x99a0a0a0
  886. VIP_var_dlc_luma_idx_2_scene28_bin_7=0x75787d89
  887. VIP_var_dlc_luma_idx_2_scene28_bin_11=0x6c6c6f73
  888. VIP_var_dlc_luma_idx_2_scene28_bin_15=0x80787068
  889. VIP_var_dlc_luma_idx_2_scene29_bin_3=0x9c948058
  890. VIP_var_dlc_luma_idx_2_scene29_bin_7=0x9ca3a39c
  891. VIP_var_dlc_luma_idx_2_scene29_bin_11=0x7883868c
  892. VIP_var_dlc_luma_idx_2_scene29_bin_15=0x4259646e
  893. VIP_var_dlc_luma_idx_2_scene30_bin_3=0x7d736870
  894. VIP_var_dlc_luma_idx_2_scene30_bin_7=0x918b8682
  895. VIP_var_dlc_luma_idx_2_scene30_bin_11=0x838a9299
  896. VIP_var_dlc_luma_idx_2_scene30_bin_15=0x6c70707b
  897. VIP_var_dlc_luma_idx_2_scene31_bin_3=0x7e756b74
  898. VIP_var_dlc_luma_idx_2_scene31_bin_7=0x8c909189
  899. VIP_var_dlc_luma_idx_2_scene31_bin_11=0x7a7d8285
  900. VIP_var_dlc_luma_idx_2_scene31_bin_15=0x7a7a7a7a
  901. VIP_var_dlc_luma_idx_2_scene32_bin_3=0x593c3127
  902. VIP_var_dlc_luma_idx_2_scene32_bin_7=0xbfd2c38b
  903. VIP_var_dlc_luma_idx_2_scene32_bin_11=0x82858895
  904. VIP_var_dlc_luma_idx_2_scene32_bin_15=0x7c7c8080
  905. VIP_var_dlc_luma_idx_2_scene33_bin_3=0x80808080
  906. VIP_var_dlc_luma_idx_2_scene33_bin_7=0x9a808080
  907. VIP_var_dlc_luma_idx_2_scene33_bin_11=0x8abfd2bc
  908. VIP_var_dlc_luma_idx_2_scene33_bin_15=0x35394a5f
  909. VIP_var_dlc_luma_idx_2_scene34_bin_3=0x4d443b32
  910. VIP_var_dlc_luma_idx_2_scene34_bin_7=0x78676158
  911. VIP_var_dlc_luma_idx_2_scene34_bin_11=0xa89b8678
  912. VIP_var_dlc_luma_idx_2_scene34_bin_15=0xdcd1c5b7
  913. VIP_var_dlc_luma_idx_2_scene35_bin_3=0x6b4c3526
  914. VIP_var_dlc_luma_idx_2_scene35_bin_7=0xd4bc9e8c
  915. VIP_var_dlc_luma_idx_2_scene35_bin_11=0x99b5ead4
  916. VIP_var_dlc_luma_idx_2_scene35_bin_15=0x2a3e5b6b
  917. VIP_var_dlc_chroma_idx_2_scene0_bin_3=0x80808080
  918. VIP_var_dlc_chroma_idx_2_scene0_bin_7=0x80808080
  919. VIP_var_dlc_chroma_idx_2_scene0_bin_11=0x80808080
  920. VIP_var_dlc_chroma_idx_2_scene0_bin_15=0x80808080
  921. VIP_var_dlc_chroma_idx_2_scene1_bin_3=0x80808080
  922. VIP_var_dlc_chroma_idx_2_scene1_bin_7=0x80808080
  923. VIP_var_dlc_chroma_idx_2_scene1_bin_11=0x80808080
  924. VIP_var_dlc_chroma_idx_2_scene1_bin_15=0x80808080
  925. VIP_var_dlc_chroma_idx_2_scene2_bin_3=0x80808080
  926. VIP_var_dlc_chroma_idx_2_scene2_bin_7=0x80808080
  927. VIP_var_dlc_chroma_idx_2_scene2_bin_11=0x80808080
  928. VIP_var_dlc_chroma_idx_2_scene2_bin_15=0x80808080
  929. VIP_var_dlc_chroma_idx_2_scene3_bin_3=0x80808080
  930. VIP_var_dlc_chroma_idx_2_scene3_bin_7=0x80808080
  931. VIP_var_dlc_chroma_idx_2_scene3_bin_11=0x80808080
  932. VIP_var_dlc_chroma_idx_2_scene3_bin_15=0x80808080
  933. VIP_var_dlc_chroma_idx_2_scene4_bin_3=0x80808080
  934. VIP_var_dlc_chroma_idx_2_scene4_bin_7=0x80808080
  935. VIP_var_dlc_chroma_idx_2_scene4_bin_11=0x80808080
  936. VIP_var_dlc_chroma_idx_2_scene4_bin_15=0x80808080
  937. VIP_var_dlc_chroma_idx_2_scene5_bin_3=0x80808080
  938. VIP_var_dlc_chroma_idx_2_scene5_bin_7=0x80808080
  939. VIP_var_dlc_chroma_idx_2_scene5_bin_11=0x80808080
  940. VIP_var_dlc_chroma_idx_2_scene5_bin_15=0x80808080
  941. VIP_var_dlc_chroma_idx_2_scene6_bin_3=0x80808080
  942. VIP_var_dlc_chroma_idx_2_scene6_bin_7=0x80808080
  943. VIP_var_dlc_chroma_idx_2_scene6_bin_11=0x80808080
  944. VIP_var_dlc_chroma_idx_2_scene6_bin_15=0x80808080
  945. VIP_var_dlc_chroma_idx_2_scene7_bin_3=0x80808080
  946. VIP_var_dlc_chroma_idx_2_scene7_bin_7=0x80808080
  947. VIP_var_dlc_chroma_idx_2_scene7_bin_11=0x80808080
  948. VIP_var_dlc_chroma_idx_2_scene7_bin_15=0x80808080
  949. VIP_var_dlc_chroma_idx_2_scene8_bin_3=0x80808080
  950. VIP_var_dlc_chroma_idx_2_scene8_bin_7=0x80808080
  951. VIP_var_dlc_chroma_idx_2_scene8_bin_11=0x80808080
  952. VIP_var_dlc_chroma_idx_2_scene8_bin_15=0x80808080
  953. VIP_var_dlc_chroma_idx_2_scene9_bin_3=0x80808080
  954. VIP_var_dlc_chroma_idx_2_scene9_bin_7=0x80808080
  955. VIP_var_dlc_chroma_idx_2_scene9_bin_11=0x80808080
  956. VIP_var_dlc_chroma_idx_2_scene9_bin_15=0x80808080
  957. VIP_var_dlc_chroma_idx_2_scene10_bin_3=0x80808080
  958. VIP_var_dlc_chroma_idx_2_scene10_bin_7=0x80808080
  959. VIP_var_dlc_chroma_idx_2_scene10_bin_11=0x80808080
  960. VIP_var_dlc_chroma_idx_2_scene10_bin_15=0x80808080
  961. VIP_var_dlc_chroma_idx_2_scene11_bin_3=0x80808080
  962. VIP_var_dlc_chroma_idx_2_scene11_bin_7=0x80808080
  963. VIP_var_dlc_chroma_idx_2_scene11_bin_11=0x80808080
  964. VIP_var_dlc_chroma_idx_2_scene11_bin_15=0x80808080
  965. VIP_var_dlc_chroma_idx_2_scene12_bin_3=0x80808080
  966. VIP_var_dlc_chroma_idx_2_scene12_bin_7=0x80808080
  967. VIP_var_dlc_chroma_idx_2_scene12_bin_11=0x80808080
  968. VIP_var_dlc_chroma_idx_2_scene12_bin_15=0x80808080
  969. VIP_var_dlc_chroma_idx_2_scene13_bin_3=0x80808080
  970. VIP_var_dlc_chroma_idx_2_scene13_bin_7=0x80808080
  971. VIP_var_dlc_chroma_idx_2_scene13_bin_11=0x80808080
  972. VIP_var_dlc_chroma_idx_2_scene13_bin_15=0x80808080
  973. VIP_var_dlc_chroma_idx_2_scene14_bin_3=0x80808080
  974. VIP_var_dlc_chroma_idx_2_scene14_bin_7=0x80808080
  975. VIP_var_dlc_chroma_idx_2_scene14_bin_11=0x80808080
  976. VIP_var_dlc_chroma_idx_2_scene14_bin_15=0x80808080
  977. VIP_var_dlc_chroma_idx_2_scene15_bin_3=0x80808080
  978. VIP_var_dlc_chroma_idx_2_scene15_bin_7=0x80808080
  979. VIP_var_dlc_chroma_idx_2_scene15_bin_11=0x80808080
  980. VIP_var_dlc_chroma_idx_2_scene15_bin_15=0x80808080
  981. VIP_var_dlc_chroma_idx_2_scene16_bin_3=0x80808080
  982. VIP_var_dlc_chroma_idx_2_scene16_bin_7=0x80808080
  983. VIP_var_dlc_chroma_idx_2_scene16_bin_11=0x80808080
  984. VIP_var_dlc_chroma_idx_2_scene16_bin_15=0x80808080
  985. VIP_var_dlc_chroma_idx_2_scene17_bin_3=0x80808080
  986. VIP_var_dlc_chroma_idx_2_scene17_bin_7=0x80808080
  987. VIP_var_dlc_chroma_idx_2_scene17_bin_11=0x80808080
  988. VIP_var_dlc_chroma_idx_2_scene17_bin_15=0x80808080
  989. VIP_var_dlc_chroma_idx_2_scene18_bin_3=0x80808080
  990. VIP_var_dlc_chroma_idx_2_scene18_bin_7=0x80808080
  991. VIP_var_dlc_chroma_idx_2_scene18_bin_11=0x80808080
  992. VIP_var_dlc_chroma_idx_2_scene18_bin_15=0x80808080
  993. VIP_var_dlc_chroma_idx_2_scene19_bin_3=0x80808080
  994. VIP_var_dlc_chroma_idx_2_scene19_bin_7=0x80808080
  995. VIP_var_dlc_chroma_idx_2_scene19_bin_11=0x80808080
  996. VIP_var_dlc_chroma_idx_2_scene19_bin_15=0x80808080
  997. VIP_var_dlc_chroma_idx_2_scene20_bin_3=0x80808080
  998. VIP_var_dlc_chroma_idx_2_scene20_bin_7=0x80808080
  999. VIP_var_dlc_chroma_idx_2_scene20_bin_11=0x80808080
  1000. VIP_var_dlc_chroma_idx_2_scene20_bin_15=0x80808080
  1001. VIP_var_dlc_chroma_idx_2_scene21_bin_3=0x80808080
  1002. VIP_var_dlc_chroma_idx_2_scene21_bin_7=0x80808080
  1003. VIP_var_dlc_chroma_idx_2_scene21_bin_11=0x80808080
  1004. VIP_var_dlc_chroma_idx_2_scene21_bin_15=0x80808080
  1005. VIP_var_dlc_chroma_idx_2_scene22_bin_3=0x80808080
  1006. VIP_var_dlc_chroma_idx_2_scene22_bin_7=0x80808080
  1007. VIP_var_dlc_chroma_idx_2_scene22_bin_11=0x80808080
  1008. VIP_var_dlc_chroma_idx_2_scene22_bin_15=0x80808080
  1009. VIP_var_dlc_chroma_idx_2_scene23_bin_3=0x80808080
  1010. VIP_var_dlc_chroma_idx_2_scene23_bin_7=0x80808080
  1011. VIP_var_dlc_chroma_idx_2_scene23_bin_11=0x80808080
  1012. VIP_var_dlc_chroma_idx_2_scene23_bin_15=0x80808080
  1013. VIP_var_dlc_chroma_idx_2_scene24_bin_3=0x80808080
  1014. VIP_var_dlc_chroma_idx_2_scene24_bin_7=0x80808080
  1015. VIP_var_dlc_chroma_idx_2_scene24_bin_11=0x80808080
  1016. VIP_var_dlc_chroma_idx_2_scene24_bin_15=0x80808080
  1017. VIP_var_dlc_chroma_idx_2_scene25_bin_3=0x80808080
  1018. VIP_var_dlc_chroma_idx_2_scene25_bin_7=0x80808080
  1019. VIP_var_dlc_chroma_idx_2_scene25_bin_11=0x80808080
  1020. VIP_var_dlc_chroma_idx_2_scene25_bin_15=0x80808080
  1021. VIP_var_dlc_chroma_idx_2_scene26_bin_3=0x80808080
  1022. VIP_var_dlc_chroma_idx_2_scene26_bin_7=0x80808080
  1023. VIP_var_dlc_chroma_idx_2_scene26_bin_11=0x80808080
  1024. VIP_var_dlc_chroma_idx_2_scene26_bin_15=0x80808080
  1025. VIP_var_dlc_chroma_idx_2_scene27_bin_3=0x80808080
  1026. VIP_var_dlc_chroma_idx_2_scene27_bin_7=0x80808080
  1027. VIP_var_dlc_chroma_idx_2_scene27_bin_11=0x80808080
  1028. VIP_var_dlc_chroma_idx_2_scene27_bin_15=0x80808080
  1029. VIP_var_dlc_chroma_idx_2_scene28_bin_3=0x80808080
  1030. VIP_var_dlc_chroma_idx_2_scene28_bin_7=0x80808080
  1031. VIP_var_dlc_chroma_idx_2_scene28_bin_11=0x80808080
  1032. VIP_var_dlc_chroma_idx_2_scene28_bin_15=0x80808080
  1033. VIP_var_dlc_chroma_idx_2_scene29_bin_3=0x80808080
  1034. VIP_var_dlc_chroma_idx_2_scene29_bin_7=0x80808080
  1035. VIP_var_dlc_chroma_idx_2_scene29_bin_11=0x80808080
  1036. VIP_var_dlc_chroma_idx_2_scene29_bin_15=0x80808080
  1037. VIP_var_dlc_chroma_idx_2_scene30_bin_3=0x80808080
  1038. VIP_var_dlc_chroma_idx_2_scene30_bin_7=0x80808080
  1039. VIP_var_dlc_chroma_idx_2_scene30_bin_11=0x80808080
  1040. VIP_var_dlc_chroma_idx_2_scene30_bin_15=0x80808080
  1041. VIP_var_dlc_chroma_idx_2_scene31_bin_3=0x80808080
  1042. VIP_var_dlc_chroma_idx_2_scene31_bin_7=0x80808080
  1043. VIP_var_dlc_chroma_idx_2_scene31_bin_11=0x80808080
  1044. VIP_var_dlc_chroma_idx_2_scene31_bin_15=0x80808080
  1045. VIP_var_dlc_chroma_idx_2_scene32_bin_3=0x80808080
  1046. VIP_var_dlc_chroma_idx_2_scene32_bin_7=0x80808080
  1047. VIP_var_dlc_chroma_idx_2_scene32_bin_11=0x80808080
  1048. VIP_var_dlc_chroma_idx_2_scene32_bin_15=0x80808080
  1049. VIP_var_dlc_chroma_idx_2_scene33_bin_3=0x80808080
  1050. VIP_var_dlc_chroma_idx_2_scene33_bin_7=0x80808080
  1051. VIP_var_dlc_chroma_idx_2_scene33_bin_11=0x80808080
  1052. VIP_var_dlc_chroma_idx_2_scene33_bin_15=0x80808080
  1053. VIP_var_dlc_chroma_idx_2_scene34_bin_3=0x80808080
  1054. VIP_var_dlc_chroma_idx_2_scene34_bin_7=0x80808080
  1055. VIP_var_dlc_chroma_idx_2_scene34_bin_11=0x80808080
  1056. VIP_var_dlc_chroma_idx_2_scene34_bin_15=0x80808080
  1057. VIP_var_dlc_chroma_idx_2_scene35_bin_3=0x80808080
  1058. VIP_var_dlc_chroma_idx_2_scene35_bin_7=0x80808080
  1059. VIP_var_dlc_chroma_idx_2_scene35_bin_11=0x80808080
  1060. VIP_var_dlc_chroma_idx_2_scene35_bin_15=0x80808080
  1061. VIP_var_dlc_idx2_DLC_En=0
  1062. VIP_var_dlc_idx2_Var_Cond_En=95
  1063. VIP_var_dlc_idx2_Ratio[0]=358
  1064. VIP_var_dlc_idx2_Ratio[1]=154
  1065. VIP_var_dlc_idx2_Ratio[2]=307
  1066. VIP_var_dlc_idx2_Ratio[3]=205
  1067. VIP_var_dlc_idx2_Ratio[4]=282
  1068. VIP_var_dlc_idx2_Ratio[5]=282
  1069. VIP_var_dlc_idx2_Factor[0]=180
  1070. VIP_var_dlc_idx2_Factor[1]=175
  1071. VIP_var_dlc_idx2_Factor[2]=200
  1072. VIP_var_dlc_idx2_Factor[3]=512
  1073. VIP_var_dlc_idx2_Factor[4]=512
  1074. VIP_var_dlc_idx2_Alpha=254
  1075. VIP_var_dlc_idx2_static_alpha[0]=108
  1076. VIP_var_dlc_idx2_static_alpha[1]=128
  1077. VIP_var_dlc_idx2_static_alpha[2]=128
  1078. VIP_var_dlc_idx2_static_alpha[3]=128
  1079. VIP_var_dlc_idx2_contrast_lv=255
  1080. VIP_var_dlc_idx2_chroma_lv=255
  1081. VIP_var_dlc_luma_idx_3_scene0_bin_3=0xa399938a
  1082. VIP_var_dlc_luma_idx_3_scene0_bin_7=0x8d929b9f
  1083. VIP_var_dlc_luma_idx_3_scene0_bin_11=0x6c747d88
  1084. VIP_var_dlc_luma_idx_3_scene0_bin_15=0x51555d65
  1085. VIP_var_dlc_luma_idx_3_scene1_bin_3=0x9f87745d
  1086. VIP_var_dlc_luma_idx_3_scene1_bin_7=0x959aa7a7
  1087. VIP_var_dlc_luma_idx_3_scene1_bin_11=0x59657381
  1088. VIP_var_dlc_luma_idx_3_scene1_bin_15=0x59595959
  1089. VIP_var_dlc_luma_idx_3_scene2_bin_3=0x957e7971
  1090. VIP_var_dlc_luma_idx_3_scene2_bin_7=0x949daea5
  1091. VIP_var_dlc_luma_idx_3_scene2_bin_11=0x767d868c
  1092. VIP_var_dlc_luma_idx_3_scene2_bin_15=0x535b626d
  1093. VIP_var_dlc_luma_idx_3_scene3_bin_3=0x95887a5e
  1094. VIP_var_dlc_luma_idx_3_scene3_bin_7=0xa4adb2a0
  1095. VIP_var_dlc_luma_idx_3_scene3_bin_11=0x6d7e8e9a
  1096. VIP_var_dlc_luma_idx_3_scene3_bin_15=0x484f5964
  1097. VIP_var_dlc_luma_idx_3_scene4_bin_3=0xa2876850
  1098. VIP_var_dlc_luma_idx_3_scene4_bin_7=0xa3aaaeb7
  1099. VIP_var_dlc_luma_idx_3_scene4_bin_11=0x717c8f9b
  1100. VIP_var_dlc_luma_idx_3_scene4_bin_15=0x3e4e5964
  1101. VIP_var_dlc_luma_idx_3_scene5_bin_3=0x93856f5c
  1102. VIP_var_dlc_luma_idx_3_scene5_bin_7=0xa2bbaea6
  1103. VIP_var_dlc_luma_idx_3_scene5_bin_11=0x717a8694
  1104. VIP_var_dlc_luma_idx_3_scene5_bin_15=0x4b555f69
  1105. VIP_var_dlc_luma_idx_3_scene6_bin_3=0x99836251
  1106. VIP_var_dlc_luma_idx_3_scene6_bin_7=0x9fa6aea0
  1107. VIP_var_dlc_luma_idx_3_scene6_bin_11=0x717c8794
  1108. VIP_var_dlc_luma_idx_3_scene6_bin_15=0x585e656b
  1109. VIP_var_dlc_luma_idx_3_scene7_bin_3=0xa189765f
  1110. VIP_var_dlc_luma_idx_3_scene7_bin_7=0x8796a0ab
  1111. VIP_var_dlc_luma_idx_3_scene7_bin_11=0x6e6e7580
  1112. VIP_var_dlc_luma_idx_3_scene7_bin_15=0x6e6e6e6e
  1113. VIP_var_dlc_luma_idx_3_scene8_bin_3=0x75625242
  1114. VIP_var_dlc_luma_idx_3_scene8_bin_7=0x9aa4ac92
  1115. VIP_var_dlc_luma_idx_3_scene8_bin_11=0x7a828993
  1116. VIP_var_dlc_luma_idx_3_scene8_bin_15=0x7a7a7a7a
  1117. VIP_var_dlc_luma_idx_3_scene9_bin_3=0x8c868278
  1118. VIP_var_dlc_luma_idx_3_scene9_bin_7=0x8585898b
  1119. VIP_var_dlc_luma_idx_3_scene9_bin_11=0x76767a81
  1120. VIP_var_dlc_luma_idx_3_scene9_bin_15=0x76767676
  1121. VIP_var_dlc_luma_idx_3_scene10_bin_3=0x86828180
  1122. VIP_var_dlc_luma_idx_3_scene10_bin_7=0x83858683
  1123. VIP_var_dlc_luma_idx_3_scene10_bin_11=0x787a7d80
  1124. VIP_var_dlc_luma_idx_3_scene10_bin_15=0x78787878
  1125. VIP_var_dlc_luma_idx_3_scene11_bin_3=0x8682817b
  1126. VIP_var_dlc_luma_idx_3_scene11_bin_7=0x83858683
  1127. VIP_var_dlc_luma_idx_3_scene11_bin_11=0x787a7d80
  1128. VIP_var_dlc_luma_idx_3_scene11_bin_15=0x78787878
  1129. VIP_var_dlc_luma_idx_3_scene12_bin_3=0x8176655e
  1130. VIP_var_dlc_luma_idx_3_scene12_bin_7=0xa59d9590
  1131. VIP_var_dlc_luma_idx_3_scene12_bin_11=0x7d809099
  1132. VIP_var_dlc_luma_idx_3_scene12_bin_15=0x89818179
  1133. VIP_var_dlc_luma_idx_3_scene13_bin_3=0x9788695d
  1134. VIP_var_dlc_luma_idx_3_scene13_bin_7=0x9ea1a5a0
  1135. VIP_var_dlc_luma_idx_3_scene13_bin_11=0x7c86909a
  1136. VIP_var_dlc_luma_idx_3_scene13_bin_15=0x4a53606c
  1137. VIP_var_dlc_luma_idx_3_scene14_bin_3=0x8682817b
  1138. VIP_var_dlc_luma_idx_3_scene14_bin_7=0x83858683
  1139. VIP_var_dlc_luma_idx_3_scene14_bin_11=0x787a7d80
  1140. VIP_var_dlc_luma_idx_3_scene14_bin_15=0x78787878
  1141. VIP_var_dlc_luma_idx_3_scene15_bin_3=0x919ca2a8
  1142. VIP_var_dlc_luma_idx_3_scene15_bin_7=0x8385868a
  1143. VIP_var_dlc_luma_idx_3_scene15_bin_11=0x797d7e80
  1144. VIP_var_dlc_luma_idx_3_scene15_bin_15=0x70707073
  1145. VIP_var_dlc_luma_idx_3_scene16_bin_3=0xa391714d
  1146. VIP_var_dlc_luma_idx_3_scene16_bin_7=0xa7b6cabb
  1147. VIP_var_dlc_luma_idx_3_scene16_bin_11=0x70808c99
  1148. VIP_var_dlc_luma_idx_3_scene16_bin_15=0x303d4c5b
  1149. VIP_var_dlc_luma_idx_3_scene17_bin_3=0x9c948058
  1150. VIP_var_dlc_luma_idx_3_scene17_bin_7=0x9ca3a39c
  1151. VIP_var_dlc_luma_idx_3_scene17_bin_11=0x7883868c
  1152. VIP_var_dlc_luma_idx_3_scene17_bin_15=0x4259646e
  1153. VIP_var_dlc_luma_idx_3_scene18_bin_3=0x9c948072
  1154. VIP_var_dlc_luma_idx_3_scene18_bin_7=0xa0afa39c
  1155. VIP_var_dlc_luma_idx_3_scene18_bin_11=0x707d8892
  1156. VIP_var_dlc_luma_idx_3_scene18_bin_15=0x414b5863
  1157. VIP_var_dlc_luma_idx_3_scene19_bin_3=0x927c6754
  1158. VIP_var_dlc_luma_idx_3_scene19_bin_7=0x8b928f93
  1159. VIP_var_dlc_luma_idx_3_scene19_bin_11=0x7e7e8186
  1160. VIP_var_dlc_luma_idx_3_scene19_bin_15=0x75757575
  1161. VIP_var_dlc_luma_idx_3_scene20_bin_3=0xa1968b75
  1162. VIP_var_dlc_luma_idx_3_scene20_bin_7=0x949ba6a8
  1163. VIP_var_dlc_luma_idx_3_scene20_bin_11=0x727c848d
  1164. VIP_var_dlc_luma_idx_3_scene20_bin_15=0x3b455d6a
  1165. VIP_var_dlc_luma_idx_3_scene21_bin_3=0x7b685a50
  1166. VIP_var_dlc_luma_idx_3_scene21_bin_7=0xabb9a393
  1167. VIP_var_dlc_luma_idx_3_scene21_bin_11=0x798c9ca1
  1168. VIP_var_dlc_luma_idx_3_scene21_bin_15=0x4f515869
  1169. VIP_var_dlc_luma_idx_3_scene22_bin_3=0x97807064
  1170. VIP_var_dlc_luma_idx_3_scene22_bin_7=0x9ba9b8a9
  1171. VIP_var_dlc_luma_idx_3_scene22_bin_11=0x74818890
  1172. VIP_var_dlc_luma_idx_3_scene22_bin_15=0x46515d68
  1173. VIP_var_dlc_luma_idx_3_scene23_bin_3=0x95826e64
  1174. VIP_var_dlc_luma_idx_3_scene23_bin_7=0xa1a7ada3
  1175. VIP_var_dlc_luma_idx_3_scene23_bin_11=0x73798792
  1176. VIP_var_dlc_luma_idx_3_scene23_bin_15=0x525a636b
  1177. VIP_var_dlc_luma_idx_3_scene24_bin_3=0x8d807461
  1178. VIP_var_dlc_luma_idx_3_scene24_bin_7=0xa3aba89b
  1179. VIP_var_dlc_luma_idx_3_scene24_bin_11=0x6d788495
  1180. VIP_var_dlc_luma_idx_3_scene24_bin_15=0x4d545c65
  1181. VIP_var_dlc_luma_idx_3_scene25_bin_3=0x9b8b7f78
  1182. VIP_var_dlc_luma_idx_3_scene25_bin_7=0x9b9b9b9b
  1183. VIP_var_dlc_luma_idx_3_scene25_bin_11=0x89949b9b
  1184. VIP_var_dlc_luma_idx_3_scene25_bin_15=0x2348546f
  1185. VIP_var_dlc_luma_idx_3_scene26_bin_3=0x9b8b755c
  1186. VIP_var_dlc_luma_idx_3_scene26_bin_7=0x9daab4aa
  1187. VIP_var_dlc_luma_idx_3_scene26_bin_11=0x6a7b8090
  1188. VIP_var_dlc_luma_idx_3_scene26_bin_15=0x4e525863
  1189. VIP_var_dlc_luma_idx_3_scene27_bin_3=0xa394815c
  1190. VIP_var_dlc_luma_idx_3_scene27_bin_7=0x9ba8aeb8
  1191. VIP_var_dlc_luma_idx_3_scene27_bin_11=0x707b8894
  1192. VIP_var_dlc_luma_idx_3_scene27_bin_15=0x3d4a5863
  1193. VIP_var_dlc_luma_idx_3_scene28_bin_3=0x99a0a0a0
  1194. VIP_var_dlc_luma_idx_3_scene28_bin_7=0x75787d89
  1195. VIP_var_dlc_luma_idx_3_scene28_bin_11=0x6c6c6f73
  1196. VIP_var_dlc_luma_idx_3_scene28_bin_15=0x80787068
  1197. VIP_var_dlc_luma_idx_3_scene29_bin_3=0x9c948058
  1198. VIP_var_dlc_luma_idx_3_scene29_bin_7=0x9ca3a39c
  1199. VIP_var_dlc_luma_idx_3_scene29_bin_11=0x7883868c
  1200. VIP_var_dlc_luma_idx_3_scene29_bin_15=0x4259646e
  1201. VIP_var_dlc_luma_idx_3_scene30_bin_3=0x80808080
  1202. VIP_var_dlc_luma_idx_3_scene30_bin_7=0x80808080
  1203. VIP_var_dlc_luma_idx_3_scene30_bin_11=0x80808080
  1204. VIP_var_dlc_luma_idx_3_scene30_bin_15=0x80808080
  1205. VIP_var_dlc_luma_idx_3_scene31_bin_3=0x8f887972
  1206. VIP_var_dlc_luma_idx_3_scene31_bin_7=0x8f8f8f8f
  1207. VIP_var_dlc_luma_idx_3_scene31_bin_11=0x7c808688
  1208. VIP_var_dlc_luma_idx_3_scene31_bin_15=0x666c7076
  1209. VIP_var_dlc_luma_idx_3_scene32_bin_3=0x684f3e27
  1210. VIP_var_dlc_luma_idx_3_scene32_bin_7=0xbfd2c38b
  1211. VIP_var_dlc_luma_idx_3_scene32_bin_11=0x82858895
  1212. VIP_var_dlc_luma_idx_3_scene32_bin_15=0x7c7c8080
  1213. VIP_var_dlc_luma_idx_3_scene33_bin_3=0x80808080
  1214. VIP_var_dlc_luma_idx_3_scene33_bin_7=0x9a808080
  1215. VIP_var_dlc_luma_idx_3_scene33_bin_11=0x8abfd2bc
  1216. VIP_var_dlc_luma_idx_3_scene33_bin_15=0x35394a5f
  1217. VIP_var_dlc_luma_idx_3_scene34_bin_3=0x4d443b32
  1218. VIP_var_dlc_luma_idx_3_scene34_bin_7=0x78676158
  1219. VIP_var_dlc_luma_idx_3_scene34_bin_11=0xa89b8678
  1220. VIP_var_dlc_luma_idx_3_scene34_bin_15=0xdcd1c5b7
  1221. VIP_var_dlc_luma_idx_3_scene35_bin_3=0x6b4c3526
  1222. VIP_var_dlc_luma_idx_3_scene35_bin_7=0xd4bc9e8c
  1223. VIP_var_dlc_luma_idx_3_scene35_bin_11=0x99b5ead4
  1224. VIP_var_dlc_luma_idx_3_scene35_bin_15=0x2a3e5b6b
  1225. VIP_var_dlc_chroma_idx_3_scene0_bin_3=0x76767676
  1226. VIP_var_dlc_chroma_idx_3_scene0_bin_7=0x76767676
  1227. VIP_var_dlc_chroma_idx_3_scene0_bin_11=0x76767676
  1228. VIP_var_dlc_chroma_idx_3_scene0_bin_15=0x76767676
  1229. VIP_var_dlc_chroma_idx_3_scene1_bin_3=0x80808080
  1230. VIP_var_dlc_chroma_idx_3_scene1_bin_7=0x80808080
  1231. VIP_var_dlc_chroma_idx_3_scene1_bin_11=0x80808080
  1232. VIP_var_dlc_chroma_idx_3_scene1_bin_15=0x80808080
  1233. VIP_var_dlc_chroma_idx_3_scene2_bin_3=0x80808080
  1234. VIP_var_dlc_chroma_idx_3_scene2_bin_7=0x80808080
  1235. VIP_var_dlc_chroma_idx_3_scene2_bin_11=0x80808080
  1236. VIP_var_dlc_chroma_idx_3_scene2_bin_15=0x80808080
  1237. VIP_var_dlc_chroma_idx_3_scene3_bin_3=0x80808080
  1238. VIP_var_dlc_chroma_idx_3_scene3_bin_7=0x80808080
  1239. VIP_var_dlc_chroma_idx_3_scene3_bin_11=0x80808080
  1240. VIP_var_dlc_chroma_idx_3_scene3_bin_15=0x80808080
  1241. VIP_var_dlc_chroma_idx_3_scene4_bin_3=0x80808080
  1242. VIP_var_dlc_chroma_idx_3_scene4_bin_7=0x80808080
  1243. VIP_var_dlc_chroma_idx_3_scene4_bin_11=0x80808080
  1244. VIP_var_dlc_chroma_idx_3_scene4_bin_15=0x80808080
  1245. VIP_var_dlc_chroma_idx_3_scene5_bin_3=0x80808080
  1246. VIP_var_dlc_chroma_idx_3_scene5_bin_7=0x80808080
  1247. VIP_var_dlc_chroma_idx_3_scene5_bin_11=0x80808080
  1248. VIP_var_dlc_chroma_idx_3_scene5_bin_15=0x80808080
  1249. VIP_var_dlc_chroma_idx_3_scene6_bin_3=0x80808080
  1250. VIP_var_dlc_chroma_idx_3_scene6_bin_7=0x80808080
  1251. VIP_var_dlc_chroma_idx_3_scene6_bin_11=0x80808080
  1252. VIP_var_dlc_chroma_idx_3_scene6_bin_15=0x80808080
  1253. VIP_var_dlc_chroma_idx_3_scene7_bin_3=0x80808080
  1254. VIP_var_dlc_chroma_idx_3_scene7_bin_7=0x80808080
  1255. VIP_var_dlc_chroma_idx_3_scene7_bin_11=0x80808080
  1256. VIP_var_dlc_chroma_idx_3_scene7_bin_15=0x80808080
  1257. VIP_var_dlc_chroma_idx_3_scene8_bin_3=0x80808080
  1258. VIP_var_dlc_chroma_idx_3_scene8_bin_7=0x80808080
  1259. VIP_var_dlc_chroma_idx_3_scene8_bin_11=0x80808080
  1260. VIP_var_dlc_chroma_idx_3_scene8_bin_15=0x80808080
  1261. VIP_var_dlc_chroma_idx_3_scene9_bin_3=0x80808080
  1262. VIP_var_dlc_chroma_idx_3_scene9_bin_7=0x80808080
  1263. VIP_var_dlc_chroma_idx_3_scene9_bin_11=0x80808080
  1264. VIP_var_dlc_chroma_idx_3_scene9_bin_15=0x80808080
  1265. VIP_var_dlc_chroma_idx_3_scene10_bin_3=0x80808080
  1266. VIP_var_dlc_chroma_idx_3_scene10_bin_7=0x80808080
  1267. VIP_var_dlc_chroma_idx_3_scene10_bin_11=0x80808080
  1268. VIP_var_dlc_chroma_idx_3_scene10_bin_15=0x80808080
  1269. VIP_var_dlc_chroma_idx_3_scene11_bin_3=0x80808080
  1270. VIP_var_dlc_chroma_idx_3_scene11_bin_7=0x80808080
  1271. VIP_var_dlc_chroma_idx_3_scene11_bin_11=0x80808080
  1272. VIP_var_dlc_chroma_idx_3_scene11_bin_15=0x80808080
  1273. VIP_var_dlc_chroma_idx_3_scene12_bin_3=0x80808080
  1274. VIP_var_dlc_chroma_idx_3_scene12_bin_7=0x80808080
  1275. VIP_var_dlc_chroma_idx_3_scene12_bin_11=0x80808080
  1276. VIP_var_dlc_chroma_idx_3_scene12_bin_15=0x80808080
  1277. VIP_var_dlc_chroma_idx_3_scene13_bin_3=0x80808080
  1278. VIP_var_dlc_chroma_idx_3_scene13_bin_7=0x80808080
  1279. VIP_var_dlc_chroma_idx_3_scene13_bin_11=0x80808080
  1280. VIP_var_dlc_chroma_idx_3_scene13_bin_15=0x80808080
  1281. VIP_var_dlc_chroma_idx_3_scene14_bin_3=0x80808080
  1282. VIP_var_dlc_chroma_idx_3_scene14_bin_7=0x80808080
  1283. VIP_var_dlc_chroma_idx_3_scene14_bin_11=0x80808080
  1284. VIP_var_dlc_chroma_idx_3_scene14_bin_15=0x80808080
  1285. VIP_var_dlc_chroma_idx_3_scene15_bin_3=0x80808080
  1286. VIP_var_dlc_chroma_idx_3_scene15_bin_7=0x80808080
  1287. VIP_var_dlc_chroma_idx_3_scene15_bin_11=0x80808080
  1288. VIP_var_dlc_chroma_idx_3_scene15_bin_15=0x80808080
  1289. VIP_var_dlc_chroma_idx_3_scene16_bin_3=0x80808080
  1290. VIP_var_dlc_chroma_idx_3_scene16_bin_7=0x80808080
  1291. VIP_var_dlc_chroma_idx_3_scene16_bin_11=0x80808080
  1292. VIP_var_dlc_chroma_idx_3_scene16_bin_15=0x80808080
  1293. VIP_var_dlc_chroma_idx_3_scene17_bin_3=0x80808080
  1294. VIP_var_dlc_chroma_idx_3_scene17_bin_7=0x80808080
  1295. VIP_var_dlc_chroma_idx_3_scene17_bin_11=0x80808080
  1296. VIP_var_dlc_chroma_idx_3_scene17_bin_15=0x80808080
  1297. VIP_var_dlc_chroma_idx_3_scene18_bin_3=0x80808080
  1298. VIP_var_dlc_chroma_idx_3_scene18_bin_7=0x80808080
  1299. VIP_var_dlc_chroma_idx_3_scene18_bin_11=0x80808080
  1300. VIP_var_dlc_chroma_idx_3_scene18_bin_15=0x80808080
  1301. VIP_var_dlc_chroma_idx_3_scene19_bin_3=0x80808080
  1302. VIP_var_dlc_chroma_idx_3_scene19_bin_7=0x80808080
  1303. VIP_var_dlc_chroma_idx_3_scene19_bin_11=0x80808080
  1304. VIP_var_dlc_chroma_idx_3_scene19_bin_15=0x80808080
  1305. VIP_var_dlc_chroma_idx_3_scene20_bin_3=0x80808080
  1306. VIP_var_dlc_chroma_idx_3_scene20_bin_7=0x80808080
  1307. VIP_var_dlc_chroma_idx_3_scene20_bin_11=0x80808080
  1308. VIP_var_dlc_chroma_idx_3_scene20_bin_15=0x80808080
  1309. VIP_var_dlc_chroma_idx_3_scene21_bin_3=0x80808080
  1310. VIP_var_dlc_chroma_idx_3_scene21_bin_7=0x80808080
  1311. VIP_var_dlc_chroma_idx_3_scene21_bin_11=0x80808080
  1312. VIP_var_dlc_chroma_idx_3_scene21_bin_15=0x80808080
  1313. VIP_var_dlc_chroma_idx_3_scene22_bin_3=0x80808080
  1314. VIP_var_dlc_chroma_idx_3_scene22_bin_7=0x80808080
  1315. VIP_var_dlc_chroma_idx_3_scene22_bin_11=0x80808080
  1316. VIP_var_dlc_chroma_idx_3_scene22_bin_15=0x80808080
  1317. VIP_var_dlc_chroma_idx_3_scene23_bin_3=0x80808080
  1318. VIP_var_dlc_chroma_idx_3_scene23_bin_7=0x80808080
  1319. VIP_var_dlc_chroma_idx_3_scene23_bin_11=0x80808080
  1320. VIP_var_dlc_chroma_idx_3_scene23_bin_15=0x80808080
  1321. VIP_var_dlc_chroma_idx_3_scene24_bin_3=0x80808080
  1322. VIP_var_dlc_chroma_idx_3_scene24_bin_7=0x80808080
  1323. VIP_var_dlc_chroma_idx_3_scene24_bin_11=0x80808080
  1324. VIP_var_dlc_chroma_idx_3_scene24_bin_15=0x80808080
  1325. VIP_var_dlc_chroma_idx_3_scene25_bin_3=0x80808080
  1326. VIP_var_dlc_chroma_idx_3_scene25_bin_7=0x80808080
  1327. VIP_var_dlc_chroma_idx_3_scene25_bin_11=0x80808080
  1328. VIP_var_dlc_chroma_idx_3_scene25_bin_15=0x80808080
  1329. VIP_var_dlc_chroma_idx_3_scene26_bin_3=0x80808080
  1330. VIP_var_dlc_chroma_idx_3_scene26_bin_7=0x80808080
  1331. VIP_var_dlc_chroma_idx_3_scene26_bin_11=0x80808080
  1332. VIP_var_dlc_chroma_idx_3_scene26_bin_15=0x80808080
  1333. VIP_var_dlc_chroma_idx_3_scene27_bin_3=0x80808080
  1334. VIP_var_dlc_chroma_idx_3_scene27_bin_7=0x80808080
  1335. VIP_var_dlc_chroma_idx_3_scene27_bin_11=0x80808080
  1336. VIP_var_dlc_chroma_idx_3_scene27_bin_15=0x80808080
  1337. VIP_var_dlc_chroma_idx_3_scene28_bin_3=0x80808080
  1338. VIP_var_dlc_chroma_idx_3_scene28_bin_7=0x80808080
  1339. VIP_var_dlc_chroma_idx_3_scene28_bin_11=0x80808080
  1340. VIP_var_dlc_chroma_idx_3_scene28_bin_15=0x80808080
  1341. VIP_var_dlc_chroma_idx_3_scene29_bin_3=0x80808080
  1342. VIP_var_dlc_chroma_idx_3_scene29_bin_7=0x80808080
  1343. VIP_var_dlc_chroma_idx_3_scene29_bin_11=0x80808080
  1344. VIP_var_dlc_chroma_idx_3_scene29_bin_15=0x80808080
  1345. VIP_var_dlc_chroma_idx_3_scene30_bin_3=0x77777777
  1346. VIP_var_dlc_chroma_idx_3_scene30_bin_7=0x77777777
  1347. VIP_var_dlc_chroma_idx_3_scene30_bin_11=0x77777777
  1348. VIP_var_dlc_chroma_idx_3_scene30_bin_15=0x77777777
  1349. VIP_var_dlc_chroma_idx_3_scene31_bin_3=0x80808080
  1350. VIP_var_dlc_chroma_idx_3_scene31_bin_7=0x80808080
  1351. VIP_var_dlc_chroma_idx_3_scene31_bin_11=0x80808080
  1352. VIP_var_dlc_chroma_idx_3_scene31_bin_15=0x80808080
  1353. VIP_var_dlc_chroma_idx_3_scene32_bin_3=0x80808080
  1354. VIP_var_dlc_chroma_idx_3_scene32_bin_7=0x80808080
  1355. VIP_var_dlc_chroma_idx_3_scene32_bin_11=0x80808080
  1356. VIP_var_dlc_chroma_idx_3_scene32_bin_15=0x80808080
  1357. VIP_var_dlc_chroma_idx_3_scene33_bin_3=0x80808080
  1358. VIP_var_dlc_chroma_idx_3_scene33_bin_7=0x80808080
  1359. VIP_var_dlc_chroma_idx_3_scene33_bin_11=0x80808080
  1360. VIP_var_dlc_chroma_idx_3_scene33_bin_15=0x80808080
  1361. VIP_var_dlc_chroma_idx_3_scene34_bin_3=0x80808080
  1362. VIP_var_dlc_chroma_idx_3_scene34_bin_7=0x80808080
  1363. VIP_var_dlc_chroma_idx_3_scene34_bin_11=0x80808080
  1364. VIP_var_dlc_chroma_idx_3_scene34_bin_15=0x80808080
  1365. VIP_var_dlc_chroma_idx_3_scene35_bin_3=0x80808080
  1366. VIP_var_dlc_chroma_idx_3_scene35_bin_7=0x80808080
  1367. VIP_var_dlc_chroma_idx_3_scene35_bin_11=0x80808080
  1368. VIP_var_dlc_chroma_idx_3_scene35_bin_15=0x80808080
  1369. VIP_var_dlc_idx3_DLC_En=1
  1370. VIP_var_dlc_idx3_Var_Cond_En=95
  1371. VIP_var_dlc_idx3_Ratio[0]=358
  1372. VIP_var_dlc_idx3_Ratio[1]=154
  1373. VIP_var_dlc_idx3_Ratio[2]=307
  1374. VIP_var_dlc_idx3_Ratio[3]=205
  1375. VIP_var_dlc_idx3_Ratio[4]=282
  1376. VIP_var_dlc_idx3_Ratio[5]=282
  1377. VIP_var_dlc_idx3_Factor[0]=180
  1378. VIP_var_dlc_idx3_Factor[1]=175
  1379. VIP_var_dlc_idx3_Factor[2]=200
  1380. VIP_var_dlc_idx3_Factor[3]=512
  1381. VIP_var_dlc_idx3_Factor[4]=512
  1382. VIP_var_dlc_idx3_Alpha=254
  1383. VIP_var_dlc_idx3_static_alpha[0]=108
  1384. VIP_var_dlc_idx3_static_alpha[1]=128
  1385. VIP_var_dlc_idx3_static_alpha[2]=128
  1386. VIP_var_dlc_idx3_static_alpha[3]=128
  1387. VIP_var_dlc_idx3_contrast_lv=255
  1388. VIP_var_dlc_idx3_chroma_lv=255
  1389. VIP_var_dlc_luma_idx_4_scene0_bin_3=0x9d907e66
  1390. VIP_var_dlc_luma_idx_4_scene0_bin_7=0x949aaab6
  1391. VIP_var_dlc_luma_idx_4_scene0_bin_11=0x7379818a
  1392. VIP_var_dlc_luma_idx_4_scene0_bin_15=0x51555d6a
  1393. VIP_var_dlc_luma_idx_4_scene1_bin_3=0x9f87745d
  1394. VIP_var_dlc_luma_idx_4_scene1_bin_7=0x9cabb3ab
  1395. VIP_var_dlc_luma_idx_4_scene1_bin_11=0x6b76828e
  1396. VIP_var_dlc_luma_idx_4_scene1_bin_15=0x59595963
  1397. VIP_var_dlc_luma_idx_4_scene2_bin_3=0x9282766c
  1398. VIP_var_dlc_luma_idx_4_scene2_bin_7=0x99a5c0ae
  1399. VIP_var_dlc_luma_idx_4_scene2_bin_11=0x6677818b
  1400. VIP_var_dlc_luma_idx_4_scene2_bin_15=0x4e4e545c
  1401. VIP_var_dlc_luma_idx_4_scene3_bin_3=0x85786552
  1402. VIP_var_dlc_luma_idx_4_scene3_bin_7=0xb2baa896
  1403. VIP_var_dlc_luma_idx_4_scene3_bin_11=0x768594a0
  1404. VIP_var_dlc_luma_idx_4_scene3_bin_15=0x5157616c
  1405. VIP_var_dlc_luma_idx_4_scene4_bin_3=0xa2876850
  1406. VIP_var_dlc_luma_idx_4_scene4_bin_7=0xa3aaaeb7
  1407. VIP_var_dlc_luma_idx_4_scene4_bin_11=0x717c8f9b
  1408. VIP_var_dlc_luma_idx_4_scene4_bin_15=0x3e4e5964
  1409. VIP_var_dlc_luma_idx_4_scene5_bin_3=0x9583693e
  1410. VIP_var_dlc_luma_idx_4_scene5_bin_7=0xa2bcaea2
  1411. VIP_var_dlc_luma_idx_4_scene5_bin_11=0x717a8694
  1412. VIP_var_dlc_luma_idx_4_scene5_bin_15=0x4b555f69
  1413. VIP_var_dlc_luma_idx_4_scene6_bin_3=0x99836251
  1414. VIP_var_dlc_luma_idx_4_scene6_bin_7=0x9fa6aea0
  1415. VIP_var_dlc_luma_idx_4_scene6_bin_11=0x717c8794
  1416. VIP_var_dlc_luma_idx_4_scene6_bin_15=0x525a6067
  1417. VIP_var_dlc_luma_idx_4_scene7_bin_3=0xa189765f
  1418. VIP_var_dlc_luma_idx_4_scene7_bin_7=0x8796a0ab
  1419. VIP_var_dlc_luma_idx_4_scene7_bin_11=0x6e6e7580
  1420. VIP_var_dlc_luma_idx_4_scene7_bin_15=0x6e6e6e6e
  1421. VIP_var_dlc_luma_idx_4_scene8_bin_3=0x75625242
  1422. VIP_var_dlc_luma_idx_4_scene8_bin_7=0x9aa4ac92
  1423. VIP_var_dlc_luma_idx_4_scene8_bin_11=0x7a828993
  1424. VIP_var_dlc_luma_idx_4_scene8_bin_15=0x7a7a7a7a
  1425. VIP_var_dlc_luma_idx_4_scene9_bin_3=0x8c868278
  1426. VIP_var_dlc_luma_idx_4_scene9_bin_7=0x8585898b
  1427. VIP_var_dlc_luma_idx_4_scene9_bin_11=0x76767a81
  1428. VIP_var_dlc_luma_idx_4_scene9_bin_15=0x76767676
  1429. VIP_var_dlc_luma_idx_4_scene10_bin_3=0x86828180
  1430. VIP_var_dlc_luma_idx_4_scene10_bin_7=0x83858683
  1431. VIP_var_dlc_luma_idx_4_scene10_bin_11=0x787a7d80
  1432. VIP_var_dlc_luma_idx_4_scene10_bin_15=0x78787878
  1433. VIP_var_dlc_luma_idx_4_scene11_bin_3=0x8682817b
  1434. VIP_var_dlc_luma_idx_4_scene11_bin_7=0x83858683
  1435. VIP_var_dlc_luma_idx_4_scene11_bin_11=0x787a7d80
  1436. VIP_var_dlc_luma_idx_4_scene11_bin_15=0x78787878
  1437. VIP_var_dlc_luma_idx_4_scene12_bin_3=0x8176655e
  1438. VIP_var_dlc_luma_idx_4_scene12_bin_7=0xa59d9590
  1439. VIP_var_dlc_luma_idx_4_scene12_bin_11=0x7d809099
  1440. VIP_var_dlc_luma_idx_4_scene12_bin_15=0x89818179
  1441. VIP_var_dlc_luma_idx_4_scene13_bin_3=0x9788695d
  1442. VIP_var_dlc_luma_idx_4_scene13_bin_7=0x9ea1a5a0
  1443. VIP_var_dlc_luma_idx_4_scene13_bin_11=0x7c86909a
  1444. VIP_var_dlc_luma_idx_4_scene13_bin_15=0x4a53606c
  1445. VIP_var_dlc_luma_idx_4_scene14_bin_3=0x8682817b
  1446. VIP_var_dlc_luma_idx_4_scene14_bin_7=0x83858683
  1447. VIP_var_dlc_luma_idx_4_scene14_bin_11=0x787a7d80
  1448. VIP_var_dlc_luma_idx_4_scene14_bin_15=0x78787878
  1449. VIP_var_dlc_luma_idx_4_scene15_bin_3=0x919ca2a8
  1450. VIP_var_dlc_luma_idx_4_scene15_bin_7=0x8385868a
  1451. VIP_var_dlc_luma_idx_4_scene15_bin_11=0x797d7e80
  1452. VIP_var_dlc_luma_idx_4_scene15_bin_15=0x70707073
  1453. VIP_var_dlc_luma_idx_4_scene16_bin_3=0xa391714d
  1454. VIP_var_dlc_luma_idx_4_scene16_bin_7=0xa7b6cabb
  1455. VIP_var_dlc_luma_idx_4_scene16_bin_11=0x70808c99
  1456. VIP_var_dlc_luma_idx_4_scene16_bin_15=0x303d4c5b
  1457. VIP_var_dlc_luma_idx_4_scene17_bin_3=0x9c948058
  1458. VIP_var_dlc_luma_idx_4_scene17_bin_7=0x9ca3a39c
  1459. VIP_var_dlc_luma_idx_4_scene17_bin_11=0x7883868c
  1460. VIP_var_dlc_luma_idx_4_scene17_bin_15=0x4259646e
  1461. VIP_var_dlc_luma_idx_4_scene18_bin_3=0x9c948072
  1462. VIP_var_dlc_luma_idx_4_scene18_bin_7=0xa0afa39c
  1463. VIP_var_dlc_luma_idx_4_scene18_bin_11=0x707d8892
  1464. VIP_var_dlc_luma_idx_4_scene18_bin_15=0x414b5863
  1465. VIP_var_dlc_luma_idx_4_scene19_bin_3=0x927c6754
  1466. VIP_var_dlc_luma_idx_4_scene19_bin_7=0x8b928f93
  1467. VIP_var_dlc_luma_idx_4_scene19_bin_11=0x7e7e8186
  1468. VIP_var_dlc_luma_idx_4_scene19_bin_15=0x75757575
  1469. VIP_var_dlc_luma_idx_4_scene20_bin_3=0xa1968b75
  1470. VIP_var_dlc_luma_idx_4_scene20_bin_7=0x949ba6a8
  1471. VIP_var_dlc_luma_idx_4_scene20_bin_11=0x727c848d
  1472. VIP_var_dlc_luma_idx_4_scene20_bin_15=0x3b455d6a
  1473. VIP_var_dlc_luma_idx_4_scene21_bin_3=0x7b685a50
  1474. VIP_var_dlc_luma_idx_4_scene21_bin_7=0xabb9a393
  1475. VIP_var_dlc_luma_idx_4_scene21_bin_11=0x798c9ca1
  1476. VIP_var_dlc_luma_idx_4_scene21_bin_15=0x4f515869
  1477. VIP_var_dlc_luma_idx_4_scene22_bin_3=0x977a675c
  1478. VIP_var_dlc_luma_idx_4_scene22_bin_7=0x94acb3a9
  1479. VIP_var_dlc_luma_idx_4_scene22_bin_11=0x7681868b
  1480. VIP_var_dlc_luma_idx_4_scene22_bin_15=0x5858616b
  1481. VIP_var_dlc_luma_idx_4_scene23_bin_3=0x95826e64
  1482. VIP_var_dlc_luma_idx_4_scene23_bin_7=0xa1a7ada3
  1483. VIP_var_dlc_luma_idx_4_scene23_bin_11=0x73798792
  1484. VIP_var_dlc_luma_idx_4_scene23_bin_15=0x525a636b
  1485. VIP_var_dlc_luma_idx_4_scene24_bin_3=0x8d807461
  1486. VIP_var_dlc_luma_idx_4_scene24_bin_7=0xa3aba89b
  1487. VIP_var_dlc_luma_idx_4_scene24_bin_11=0x6d788495
  1488. VIP_var_dlc_luma_idx_4_scene24_bin_15=0x4d545c65
  1489. VIP_var_dlc_luma_idx_4_scene25_bin_3=0x9b8b7f78
  1490. VIP_var_dlc_luma_idx_4_scene25_bin_7=0x9b9b9b9b
  1491. VIP_var_dlc_luma_idx_4_scene25_bin_11=0x89949b9b
  1492. VIP_var_dlc_luma_idx_4_scene25_bin_15=0x2348546f
  1493. VIP_var_dlc_luma_idx_4_scene26_bin_3=0x9b8b755c
  1494. VIP_var_dlc_luma_idx_4_scene26_bin_7=0x9daab4aa
  1495. VIP_var_dlc_luma_idx_4_scene26_bin_11=0x6a7b8090
  1496. VIP_var_dlc_luma_idx_4_scene26_bin_15=0x4e525863
  1497. VIP_var_dlc_luma_idx_4_scene27_bin_3=0xa394815c
  1498. VIP_var_dlc_luma_idx_4_scene27_bin_7=0x9ba8aeb8
  1499. VIP_var_dlc_luma_idx_4_scene27_bin_11=0x707b8894
  1500. VIP_var_dlc_luma_idx_4_scene27_bin_15=0x3d4a5863
  1501. VIP_var_dlc_luma_idx_4_scene28_bin_3=0x99a0a0a0
  1502. VIP_var_dlc_luma_idx_4_scene28_bin_7=0x75787d89
  1503. VIP_var_dlc_luma_idx_4_scene28_bin_11=0x6c6c6f73
  1504. VIP_var_dlc_luma_idx_4_scene28_bin_15=0x80787068
  1505. VIP_var_dlc_luma_idx_4_scene29_bin_3=0x9c948058
  1506. VIP_var_dlc_luma_idx_4_scene29_bin_7=0x9ca3a39c
  1507. VIP_var_dlc_luma_idx_4_scene29_bin_11=0x7883868c
  1508. VIP_var_dlc_luma_idx_4_scene29_bin_15=0x4259646e
  1509. VIP_var_dlc_luma_idx_4_scene30_bin_3=0x80808080
  1510. VIP_var_dlc_luma_idx_4_scene30_bin_7=0x80808080
  1511. VIP_var_dlc_luma_idx_4_scene30_bin_11=0x80808080
  1512. VIP_var_dlc_luma_idx_4_scene30_bin_15=0x80808080
  1513. VIP_var_dlc_luma_idx_4_scene31_bin_3=0x85817972
  1514. VIP_var_dlc_luma_idx_4_scene31_bin_7=0x81818488
  1515. VIP_var_dlc_luma_idx_4_scene31_bin_11=0x81818181
  1516. VIP_var_dlc_luma_idx_4_scene31_bin_15=0x83828281
  1517. VIP_var_dlc_luma_idx_4_scene32_bin_3=0x684f3e27
  1518. VIP_var_dlc_luma_idx_4_scene32_bin_7=0xbfd2c38b
  1519. VIP_var_dlc_luma_idx_4_scene32_bin_11=0x82858895
  1520. VIP_var_dlc_luma_idx_4_scene32_bin_15=0x7c7c8080
  1521. VIP_var_dlc_luma_idx_4_scene33_bin_3=0x80808080
  1522. VIP_var_dlc_luma_idx_4_scene33_bin_7=0x9a808080
  1523. VIP_var_dlc_luma_idx_4_scene33_bin_11=0x8abfd2bc
  1524. VIP_var_dlc_luma_idx_4_scene33_bin_15=0x35394a5f
  1525. VIP_var_dlc_luma_idx_4_scene34_bin_3=0x4d443b32
  1526. VIP_var_dlc_luma_idx_4_scene34_bin_7=0x78676158
  1527. VIP_var_dlc_luma_idx_4_scene34_bin_11=0xa89b8678
  1528. VIP_var_dlc_luma_idx_4_scene34_bin_15=0xdcd1c5b7
  1529. VIP_var_dlc_luma_idx_4_scene35_bin_3=0x6b4c3526
  1530. VIP_var_dlc_luma_idx_4_scene35_bin_7=0xd4bc9e8c
  1531. VIP_var_dlc_luma_idx_4_scene35_bin_11=0x99b5ead4
  1532. VIP_var_dlc_luma_idx_4_scene35_bin_15=0x2a3e5b6b
  1533. VIP_var_dlc_chroma_idx_4_scene0_bin_3=0x76767676
  1534. VIP_var_dlc_chroma_idx_4_scene0_bin_7=0x76767676
  1535. VIP_var_dlc_chroma_idx_4_scene0_bin_11=0x76767676
  1536. VIP_var_dlc_chroma_idx_4_scene0_bin_15=0x76767676
  1537. VIP_var_dlc_chroma_idx_4_scene1_bin_3=0x80808080
  1538. VIP_var_dlc_chroma_idx_4_scene1_bin_7=0x80808080
  1539. VIP_var_dlc_chroma_idx_4_scene1_bin_11=0x80808080
  1540. VIP_var_dlc_chroma_idx_4_scene1_bin_15=0x80808080
  1541. VIP_var_dlc_chroma_idx_4_scene2_bin_3=0x80808080
  1542. VIP_var_dlc_chroma_idx_4_scene2_bin_7=0x80808080
  1543. VIP_var_dlc_chroma_idx_4_scene2_bin_11=0x80808080
  1544. VIP_var_dlc_chroma_idx_4_scene2_bin_15=0x80808080
  1545. VIP_var_dlc_chroma_idx_4_scene3_bin_3=0x80808080
  1546. VIP_var_dlc_chroma_idx_4_scene3_bin_7=0x80808080
  1547. VIP_var_dlc_chroma_idx_4_scene3_bin_11=0x80808080
  1548. VIP_var_dlc_chroma_idx_4_scene3_bin_15=0x80808080
  1549. VIP_var_dlc_chroma_idx_4_scene4_bin_3=0x80808080
  1550. VIP_var_dlc_chroma_idx_4_scene4_bin_7=0x80808080
  1551. VIP_var_dlc_chroma_idx_4_scene4_bin_11=0x80808080
  1552. VIP_var_dlc_chroma_idx_4_scene4_bin_15=0x80808080
  1553. VIP_var_dlc_chroma_idx_4_scene5_bin_3=0x80808080
  1554. VIP_var_dlc_chroma_idx_4_scene5_bin_7=0x80808080
  1555. VIP_var_dlc_chroma_idx_4_scene5_bin_11=0x80808080
  1556. VIP_var_dlc_chroma_idx_4_scene5_bin_15=0x80808080
  1557. VIP_var_dlc_chroma_idx_4_scene6_bin_3=0x80808080
  1558. VIP_var_dlc_chroma_idx_4_scene6_bin_7=0x80808080
  1559. VIP_var_dlc_chroma_idx_4_scene6_bin_11=0x80808080
  1560. VIP_var_dlc_chroma_idx_4_scene6_bin_15=0x80808080
  1561. VIP_var_dlc_chroma_idx_4_scene7_bin_3=0x80808080
  1562. VIP_var_dlc_chroma_idx_4_scene7_bin_7=0x80808080
  1563. VIP_var_dlc_chroma_idx_4_scene7_bin_11=0x80808080
  1564. VIP_var_dlc_chroma_idx_4_scene7_bin_15=0x80808080
  1565. VIP_var_dlc_chroma_idx_4_scene8_bin_3=0x80808080
  1566. VIP_var_dlc_chroma_idx_4_scene8_bin_7=0x80808080
  1567. VIP_var_dlc_chroma_idx_4_scene8_bin_11=0x80808080
  1568. VIP_var_dlc_chroma_idx_4_scene8_bin_15=0x80808080
  1569. VIP_var_dlc_chroma_idx_4_scene9_bin_3=0x80808080
  1570. VIP_var_dlc_chroma_idx_4_scene9_bin_7=0x80808080
  1571. VIP_var_dlc_chroma_idx_4_scene9_bin_11=0x80808080
  1572. VIP_var_dlc_chroma_idx_4_scene9_bin_15=0x80808080
  1573. VIP_var_dlc_chroma_idx_4_scene10_bin_3=0x80808080
  1574. VIP_var_dlc_chroma_idx_4_scene10_bin_7=0x80808080
  1575. VIP_var_dlc_chroma_idx_4_scene10_bin_11=0x80808080
  1576. VIP_var_dlc_chroma_idx_4_scene10_bin_15=0x80808080
  1577. VIP_var_dlc_chroma_idx_4_scene11_bin_3=0x80808080
  1578. VIP_var_dlc_chroma_idx_4_scene11_bin_7=0x80808080
  1579. VIP_var_dlc_chroma_idx_4_scene11_bin_11=0x80808080
  1580. VIP_var_dlc_chroma_idx_4_scene11_bin_15=0x80808080
  1581. VIP_var_dlc_chroma_idx_4_scene12_bin_3=0x80808080
  1582. VIP_var_dlc_chroma_idx_4_scene12_bin_7=0x80808080
  1583. VIP_var_dlc_chroma_idx_4_scene12_bin_11=0x80808080
  1584. VIP_var_dlc_chroma_idx_4_scene12_bin_15=0x80808080
  1585. VIP_var_dlc_chroma_idx_4_scene13_bin_3=0x80808080
  1586. VIP_var_dlc_chroma_idx_4_scene13_bin_7=0x80808080
  1587. VIP_var_dlc_chroma_idx_4_scene13_bin_11=0x80808080
  1588. VIP_var_dlc_chroma_idx_4_scene13_bin_15=0x80808080
  1589. VIP_var_dlc_chroma_idx_4_scene14_bin_3=0x80808080
  1590. VIP_var_dlc_chroma_idx_4_scene14_bin_7=0x80808080
  1591. VIP_var_dlc_chroma_idx_4_scene14_bin_11=0x80808080
  1592. VIP_var_dlc_chroma_idx_4_scene14_bin_15=0x80808080
  1593. VIP_var_dlc_chroma_idx_4_scene15_bin_3=0x80808080
  1594. VIP_var_dlc_chroma_idx_4_scene15_bin_7=0x80808080
  1595. VIP_var_dlc_chroma_idx_4_scene15_bin_11=0x80808080
  1596. VIP_var_dlc_chroma_idx_4_scene15_bin_15=0x80808080
  1597. VIP_var_dlc_chroma_idx_4_scene16_bin_3=0x80808080
  1598. VIP_var_dlc_chroma_idx_4_scene16_bin_7=0x80808080
  1599. VIP_var_dlc_chroma_idx_4_scene16_bin_11=0x80808080
  1600. VIP_var_dlc_chroma_idx_4_scene16_bin_15=0x80808080
  1601. VIP_var_dlc_chroma_idx_4_scene17_bin_3=0x80808080
  1602. VIP_var_dlc_chroma_idx_4_scene17_bin_7=0x80808080
  1603. VIP_var_dlc_chroma_idx_4_scene17_bin_11=0x80808080
  1604. VIP_var_dlc_chroma_idx_4_scene17_bin_15=0x80808080
  1605. VIP_var_dlc_chroma_idx_4_scene18_bin_3=0x80808080
  1606. VIP_var_dlc_chroma_idx_4_scene18_bin_7=0x80808080
  1607. VIP_var_dlc_chroma_idx_4_scene18_bin_11=0x80808080
  1608. VIP_var_dlc_chroma_idx_4_scene18_bin_15=0x80808080
  1609. VIP_var_dlc_chroma_idx_4_scene19_bin_3=0x80808080
  1610. VIP_var_dlc_chroma_idx_4_scene19_bin_7=0x80808080
  1611. VIP_var_dlc_chroma_idx_4_scene19_bin_11=0x80808080
  1612. VIP_var_dlc_chroma_idx_4_scene19_bin_15=0x80808080
  1613. VIP_var_dlc_chroma_idx_4_scene20_bin_3=0x80808080
  1614. VIP_var_dlc_chroma_idx_4_scene20_bin_7=0x80808080
  1615. VIP_var_dlc_chroma_idx_4_scene20_bin_11=0x80808080
  1616. VIP_var_dlc_chroma_idx_4_scene20_bin_15=0x80808080
  1617. VIP_var_dlc_chroma_idx_4_scene21_bin_3=0x80808080
  1618. VIP_var_dlc_chroma_idx_4_scene21_bin_7=0x80808080
  1619. VIP_var_dlc_chroma_idx_4_scene21_bin_11=0x80808080
  1620. VIP_var_dlc_chroma_idx_4_scene21_bin_15=0x80808080
  1621. VIP_var_dlc_chroma_idx_4_scene22_bin_3=0x80808080
  1622. VIP_var_dlc_chroma_idx_4_scene22_bin_7=0x80808080
  1623. VIP_var_dlc_chroma_idx_4_scene22_bin_11=0x80808080
  1624. VIP_var_dlc_chroma_idx_4_scene22_bin_15=0x80808080
  1625. VIP_var_dlc_chroma_idx_4_scene23_bin_3=0x80808080
  1626. VIP_var_dlc_chroma_idx_4_scene23_bin_7=0x80808080
  1627. VIP_var_dlc_chroma_idx_4_scene23_bin_11=0x80808080
  1628. VIP_var_dlc_chroma_idx_4_scene23_bin_15=0x80808080
  1629. VIP_var_dlc_chroma_idx_4_scene24_bin_3=0x80808080
  1630. VIP_var_dlc_chroma_idx_4_scene24_bin_7=0x80808080
  1631. VIP_var_dlc_chroma_idx_4_scene24_bin_11=0x80808080
  1632. VIP_var_dlc_chroma_idx_4_scene24_bin_15=0x80808080
  1633. VIP_var_dlc_chroma_idx_4_scene25_bin_3=0x80808080
  1634. VIP_var_dlc_chroma_idx_4_scene25_bin_7=0x80808080
  1635. VIP_var_dlc_chroma_idx_4_scene25_bin_11=0x80808080
  1636. VIP_var_dlc_chroma_idx_4_scene25_bin_15=0x80808080
  1637. VIP_var_dlc_chroma_idx_4_scene26_bin_3=0x80808080
  1638. VIP_var_dlc_chroma_idx_4_scene26_bin_7=0x80808080
  1639. VIP_var_dlc_chroma_idx_4_scene26_bin_11=0x80808080
  1640. VIP_var_dlc_chroma_idx_4_scene26_bin_15=0x80808080
  1641. VIP_var_dlc_chroma_idx_4_scene27_bin_3=0x80808080
  1642. VIP_var_dlc_chroma_idx_4_scene27_bin_7=0x80808080
  1643. VIP_var_dlc_chroma_idx_4_scene27_bin_11=0x80808080
  1644. VIP_var_dlc_chroma_idx_4_scene27_bin_15=0x80808080
  1645. VIP_var_dlc_chroma_idx_4_scene28_bin_3=0x80808080
  1646. VIP_var_dlc_chroma_idx_4_scene28_bin_7=0x80808080
  1647. VIP_var_dlc_chroma_idx_4_scene28_bin_11=0x80808080
  1648. VIP_var_dlc_chroma_idx_4_scene28_bin_15=0x80808080
  1649. VIP_var_dlc_chroma_idx_4_scene29_bin_3=0x80808080
  1650. VIP_var_dlc_chroma_idx_4_scene29_bin_7=0x80808080
  1651. VIP_var_dlc_chroma_idx_4_scene29_bin_11=0x80808080
  1652. VIP_var_dlc_chroma_idx_4_scene29_bin_15=0x80808080
  1653. VIP_var_dlc_chroma_idx_4_scene30_bin_3=0x77777777
  1654. VIP_var_dlc_chroma_idx_4_scene30_bin_7=0x77777777
  1655. VIP_var_dlc_chroma_idx_4_scene30_bin_11=0x77777777
  1656. VIP_var_dlc_chroma_idx_4_scene30_bin_15=0x77777777
  1657. VIP_var_dlc_chroma_idx_4_scene31_bin_3=0x80808080
  1658. VIP_var_dlc_chroma_idx_4_scene31_bin_7=0x80808080
  1659. VIP_var_dlc_chroma_idx_4_scene31_bin_11=0x80808080
  1660. VIP_var_dlc_chroma_idx_4_scene31_bin_15=0x80808080
  1661. VIP_var_dlc_chroma_idx_4_scene32_bin_3=0x80808080
  1662. VIP_var_dlc_chroma_idx_4_scene32_bin_7=0x80808080
  1663. VIP_var_dlc_chroma_idx_4_scene32_bin_11=0x80808080
  1664. VIP_var_dlc_chroma_idx_4_scene32_bin_15=0x80808080
  1665. VIP_var_dlc_chroma_idx_4_scene33_bin_3=0x80808080
  1666. VIP_var_dlc_chroma_idx_4_scene33_bin_7=0x80808080
  1667. VIP_var_dlc_chroma_idx_4_scene33_bin_11=0x80808080
  1668. VIP_var_dlc_chroma_idx_4_scene33_bin_15=0x80808080
  1669. VIP_var_dlc_chroma_idx_4_scene34_bin_3=0x80808080
  1670. VIP_var_dlc_chroma_idx_4_scene34_bin_7=0x80808080
  1671. VIP_var_dlc_chroma_idx_4_scene34_bin_11=0x80808080
  1672. VIP_var_dlc_chroma_idx_4_scene34_bin_15=0x80808080
  1673. VIP_var_dlc_chroma_idx_4_scene35_bin_3=0x80808080
  1674. VIP_var_dlc_chroma_idx_4_scene35_bin_7=0x80808080
  1675. VIP_var_dlc_chroma_idx_4_scene35_bin_11=0x80808080
  1676. VIP_var_dlc_chroma_idx_4_scene35_bin_15=0x80808080
  1677. VIP_var_dlc_idx4_DLC_En=1
  1678. VIP_var_dlc_idx4_Var_Cond_En=95
  1679. VIP_var_dlc_idx4_Ratio[0]=358
  1680. VIP_var_dlc_idx4_Ratio[1]=154
  1681. VIP_var_dlc_idx4_Ratio[2]=307
  1682. VIP_var_dlc_idx4_Ratio[3]=205
  1683. VIP_var_dlc_idx4_Ratio[4]=282
  1684. VIP_var_dlc_idx4_Ratio[5]=282
  1685. VIP_var_dlc_idx4_Factor[0]=180
  1686. VIP_var_dlc_idx4_Factor[1]=175
  1687. VIP_var_dlc_idx4_Factor[2]=200
  1688. VIP_var_dlc_idx4_Factor[3]=512
  1689. VIP_var_dlc_idx4_Factor[4]=512
  1690. VIP_var_dlc_idx4_Alpha=254
  1691. VIP_var_dlc_idx4_static_alpha[0]=124
  1692. VIP_var_dlc_idx4_static_alpha[1]=128
  1693. VIP_var_dlc_idx4_static_alpha[2]=128
  1694. VIP_var_dlc_idx4_static_alpha[3]=128
  1695. VIP_var_dlc_idx4_contrast_lv=255
  1696. VIP_var_dlc_idx4_chroma_lv=255
  1697. VIP_var_dlc_luma_idx_5_scene0_bin_3=0x998e8563
  1698. VIP_var_dlc_luma_idx_5_scene0_bin_7=0x98a2aea8
  1699. VIP_var_dlc_luma_idx_5_scene0_bin_11=0x6c747d88
  1700. VIP_var_dlc_luma_idx_5_scene0_bin_15=0x51555d65
  1701. VIP_var_dlc_luma_idx_5_scene1_bin_3=0x9f87745d
  1702. VIP_var_dlc_luma_idx_5_scene1_bin_7=0x959aa7a7
  1703. VIP_var_dlc_luma_idx_5_scene1_bin_11=0x59657381
  1704. VIP_var_dlc_luma_idx_5_scene1_bin_15=0x59595959
  1705. VIP_var_dlc_luma_idx_5_scene2_bin_3=0x927e7165
  1706. VIP_var_dlc_luma_idx_5_scene2_bin_7=0x9ba9b8a5
  1707. VIP_var_dlc_luma_idx_5_scene2_bin_11=0x767d868c
  1708. VIP_var_dlc_luma_idx_5_scene2_bin_15=0x535b626d
  1709. VIP_var_dlc_luma_idx_5_scene3_bin_3=0x8d7c644e
  1710. VIP_var_dlc_luma_idx_5_scene3_bin_7=0xa4adbea0
  1711. VIP_var_dlc_luma_idx_5_scene3_bin_11=0x6d7e8e9a
  1712. VIP_var_dlc_luma_idx_5_scene3_bin_15=0x484f5964
  1713. VIP_var_dlc_luma_idx_5_scene4_bin_3=0xa287683c
  1714. VIP_var_dlc_luma_idx_5_scene4_bin_7=0xa3aaaeb7
  1715. VIP_var_dlc_luma_idx_5_scene4_bin_11=0x717c8f9b
  1716. VIP_var_dlc_luma_idx_5_scene4_bin_15=0x3e4e5964
  1717. VIP_var_dlc_luma_idx_5_scene5_bin_3=0x8e7c6455
  1718. VIP_var_dlc_luma_idx_5_scene5_bin_7=0x9daebc9f
  1719. VIP_var_dlc_luma_idx_5_scene5_bin_11=0x717a838a
  1720. VIP_var_dlc_luma_idx_5_scene5_bin_15=0x5f5f5f69
  1721. VIP_var_dlc_luma_idx_5_scene6_bin_3=0x99836951
  1722. VIP_var_dlc_luma_idx_5_scene6_bin_7=0x99a2a9a0
  1723. VIP_var_dlc_luma_idx_5_scene6_bin_11=0x717c8794
  1724. VIP_var_dlc_luma_idx_5_scene6_bin_15=0x585e656b
  1725. VIP_var_dlc_luma_idx_5_scene7_bin_3=0x95866d58
  1726. VIP_var_dlc_luma_idx_5_scene7_bin_7=0x8e96a0ab
  1727. VIP_var_dlc_luma_idx_5_scene7_bin_11=0x72757b84
  1728. VIP_var_dlc_luma_idx_5_scene7_bin_15=0x6e6e6e6e
  1729. VIP_var_dlc_luma_idx_5_scene8_bin_3=0x9f8e734d
  1730. VIP_var_dlc_luma_idx_5_scene8_bin_7=0x878f99b4
  1731. VIP_var_dlc_luma_idx_5_scene8_bin_11=0x7272787d
  1732. VIP_var_dlc_luma_idx_5_scene8_bin_15=0x72727272
  1733. VIP_var_dlc_luma_idx_5_scene9_bin_3=0x8c868278
  1734. VIP_var_dlc_luma_idx_5_scene9_bin_7=0x8585898b
  1735. VIP_var_dlc_luma_idx_5_scene9_bin_11=0x76767a81
  1736. VIP_var_dlc_luma_idx_5_scene9_bin_15=0x76767676
  1737. VIP_var_dlc_luma_idx_5_scene10_bin_3=0x86828180
  1738. VIP_var_dlc_luma_idx_5_scene10_bin_7=0x83858683
  1739. VIP_var_dlc_luma_idx_5_scene10_bin_11=0x787a7d80
  1740. VIP_var_dlc_luma_idx_5_scene10_bin_15=0x78787878
  1741. VIP_var_dlc_luma_idx_5_scene11_bin_3=0x8682817b
  1742. VIP_var_dlc_luma_idx_5_scene11_bin_7=0x83858683
  1743. VIP_var_dlc_luma_idx_5_scene11_bin_11=0x787a7d80
  1744. VIP_var_dlc_luma_idx_5_scene11_bin_15=0x78787878
  1745. VIP_var_dlc_luma_idx_5_scene12_bin_3=0x8176655e
  1746. VIP_var_dlc_luma_idx_5_scene12_bin_7=0xa59d9590
  1747. VIP_var_dlc_luma_idx_5_scene12_bin_11=0x7d809099
  1748. VIP_var_dlc_luma_idx_5_scene12_bin_15=0x89818179
  1749. VIP_var_dlc_luma_idx_5_scene13_bin_3=0x9788695d
  1750. VIP_var_dlc_luma_idx_5_scene13_bin_7=0x9ea1a5a0
  1751. VIP_var_dlc_luma_idx_5_scene13_bin_11=0x7c86909a
  1752. VIP_var_dlc_luma_idx_5_scene13_bin_15=0x4a53606c
  1753. VIP_var_dlc_luma_idx_5_scene14_bin_3=0x8682817b
  1754. VIP_var_dlc_luma_idx_5_scene14_bin_7=0x83858683
  1755. VIP_var_dlc_luma_idx_5_scene14_bin_11=0x787a7d80
  1756. VIP_var_dlc_luma_idx_5_scene14_bin_15=0x78787878
  1757. VIP_var_dlc_luma_idx_5_scene15_bin_3=0x8d7e6c5c
  1758. VIP_var_dlc_luma_idx_5_scene15_bin_7=0x95959595
  1759. VIP_var_dlc_luma_idx_5_scene15_bin_11=0x868e9595
  1760. VIP_var_dlc_luma_idx_5_scene15_bin_15=0x5d69757d
  1761. VIP_var_dlc_luma_idx_5_scene16_bin_3=0xa391714d
  1762. VIP_var_dlc_luma_idx_5_scene16_bin_7=0xa7b6cabb
  1763. VIP_var_dlc_luma_idx_5_scene16_bin_11=0x70808c99
  1764. VIP_var_dlc_luma_idx_5_scene16_bin_15=0x303d4c5b
  1765. VIP_var_dlc_luma_idx_5_scene17_bin_3=0x9c948058
  1766. VIP_var_dlc_luma_idx_5_scene17_bin_7=0x9ca3a39c
  1767. VIP_var_dlc_luma_idx_5_scene17_bin_11=0x7883868c
  1768. VIP_var_dlc_luma_idx_5_scene17_bin_15=0x4259646e
  1769. VIP_var_dlc_luma_idx_5_scene18_bin_3=0x9c948072
  1770. VIP_var_dlc_luma_idx_5_scene18_bin_7=0xa0afa39c
  1771. VIP_var_dlc_luma_idx_5_scene18_bin_11=0x707d8892
  1772. VIP_var_dlc_luma_idx_5_scene18_bin_15=0x414b5863
  1773. VIP_var_dlc_luma_idx_5_scene19_bin_3=0x927c6754
  1774. VIP_var_dlc_luma_idx_5_scene19_bin_7=0x8b928f93
  1775. VIP_var_dlc_luma_idx_5_scene19_bin_11=0x7e7e8186
  1776. VIP_var_dlc_luma_idx_5_scene19_bin_15=0x75757575
  1777. VIP_var_dlc_luma_idx_5_scene20_bin_3=0xa1968b75
  1778. VIP_var_dlc_luma_idx_5_scene20_bin_7=0x949ba6a8
  1779. VIP_var_dlc_luma_idx_5_scene20_bin_11=0x727c848d
  1780. VIP_var_dlc_luma_idx_5_scene20_bin_15=0x3b455d6a
  1781. VIP_var_dlc_luma_idx_5_scene21_bin_3=0x7b685a50
  1782. VIP_var_dlc_luma_idx_5_scene21_bin_7=0xabb9a393
  1783. VIP_var_dlc_luma_idx_5_scene21_bin_11=0x798c9ca1
  1784. VIP_var_dlc_luma_idx_5_scene21_bin_15=0x4f515869
  1785. VIP_var_dlc_luma_idx_5_scene22_bin_3=0x97807064
  1786. VIP_var_dlc_luma_idx_5_scene22_bin_7=0x9ba9b8a9
  1787. VIP_var_dlc_luma_idx_5_scene22_bin_11=0x74818890
  1788. VIP_var_dlc_luma_idx_5_scene22_bin_15=0x46515d68
  1789. VIP_var_dlc_luma_idx_5_scene23_bin_3=0x95826e64
  1790. VIP_var_dlc_luma_idx_5_scene23_bin_7=0xa1a7ada3
  1791. VIP_var_dlc_luma_idx_5_scene23_bin_11=0x73798792
  1792. VIP_var_dlc_luma_idx_5_scene23_bin_15=0x525a636b
  1793. VIP_var_dlc_luma_idx_5_scene24_bin_3=0x8d807461
  1794. VIP_var_dlc_luma_idx_5_scene24_bin_7=0xa3aba89b
  1795. VIP_var_dlc_luma_idx_5_scene24_bin_11=0x6d788495
  1796. VIP_var_dlc_luma_idx_5_scene24_bin_15=0x4d545c65
  1797. VIP_var_dlc_luma_idx_5_scene25_bin_3=0x9b8b7f78
  1798. VIP_var_dlc_luma_idx_5_scene25_bin_7=0x9b9b9b9b
  1799. VIP_var_dlc_luma_idx_5_scene25_bin_11=0x89949b9b
  1800. VIP_var_dlc_luma_idx_5_scene25_bin_15=0x2348546f
  1801. VIP_var_dlc_luma_idx_5_scene26_bin_3=0x9b8b755c
  1802. VIP_var_dlc_luma_idx_5_scene26_bin_7=0x9daab4aa
  1803. VIP_var_dlc_luma_idx_5_scene26_bin_11=0x6a7b8090
  1804. VIP_var_dlc_luma_idx_5_scene26_bin_15=0x4e525863
  1805. VIP_var_dlc_luma_idx_5_scene27_bin_3=0xa394815c
  1806. VIP_var_dlc_luma_idx_5_scene27_bin_7=0x9ba8aeb8
  1807. VIP_var_dlc_luma_idx_5_scene27_bin_11=0x707b8894
  1808. VIP_var_dlc_luma_idx_5_scene27_bin_15=0x3d4a5863
  1809. VIP_var_dlc_luma_idx_5_scene28_bin_3=0x99a0a0a0
  1810. VIP_var_dlc_luma_idx_5_scene28_bin_7=0x75787d89
  1811. VIP_var_dlc_luma_idx_5_scene28_bin_11=0x6c6c6f73
  1812. VIP_var_dlc_luma_idx_5_scene28_bin_15=0x80787068
  1813. VIP_var_dlc_luma_idx_5_scene29_bin_3=0x9c948058
  1814. VIP_var_dlc_luma_idx_5_scene29_bin_7=0x9ca3a39c
  1815. VIP_var_dlc_luma_idx_5_scene29_bin_11=0x7883868c
  1816. VIP_var_dlc_luma_idx_5_scene29_bin_15=0x4259646e
  1817. VIP_var_dlc_luma_idx_5_scene30_bin_3=0x80808080
  1818. VIP_var_dlc_luma_idx_5_scene30_bin_7=0x80808080
  1819. VIP_var_dlc_luma_idx_5_scene30_bin_11=0x80808080
  1820. VIP_var_dlc_luma_idx_5_scene30_bin_15=0x80808080
  1821. VIP_var_dlc_luma_idx_5_scene31_bin_3=0x8f887972
  1822. VIP_var_dlc_luma_idx_5_scene31_bin_7=0x85878b8f
  1823. VIP_var_dlc_luma_idx_5_scene31_bin_11=0x777c8383
  1824. VIP_var_dlc_luma_idx_5_scene31_bin_15=0x6e6e6e72
  1825. VIP_var_dlc_luma_idx_5_scene32_bin_3=0x684f3e27
  1826. VIP_var_dlc_luma_idx_5_scene32_bin_7=0xbfd2c38b
  1827. VIP_var_dlc_luma_idx_5_scene32_bin_11=0x82858895
  1828. VIP_var_dlc_luma_idx_5_scene32_bin_15=0x7c7c8080
  1829. VIP_var_dlc_luma_idx_5_scene33_bin_3=0x80808080
  1830. VIP_var_dlc_luma_idx_5_scene33_bin_7=0x9a808080
  1831. VIP_var_dlc_luma_idx_5_scene33_bin_11=0x8abfd2bc
  1832. VIP_var_dlc_luma_idx_5_scene33_bin_15=0x35394a5f
  1833. VIP_var_dlc_luma_idx_5_scene34_bin_3=0x4d443b32
  1834. VIP_var_dlc_luma_idx_5_scene34_bin_7=0x78676158
  1835. VIP_var_dlc_luma_idx_5_scene34_bin_11=0xa89b8678
  1836. VIP_var_dlc_luma_idx_5_scene34_bin_15=0xdcd1c5b7
  1837. VIP_var_dlc_luma_idx_5_scene35_bin_3=0x6b4c3526
  1838. VIP_var_dlc_luma_idx_5_scene35_bin_7=0xd4bc9e8c
  1839. VIP_var_dlc_luma_idx_5_scene35_bin_11=0x99b5ead4
  1840. VIP_var_dlc_luma_idx_5_scene35_bin_15=0x2a3e5b6b
  1841. VIP_var_dlc_chroma_idx_5_scene0_bin_3=0x76767676
  1842. VIP_var_dlc_chroma_idx_5_scene0_bin_7=0x76767676
  1843. VIP_var_dlc_chroma_idx_5_scene0_bin_11=0x76767676
  1844. VIP_var_dlc_chroma_idx_5_scene0_bin_15=0x76767676
  1845. VIP_var_dlc_chroma_idx_5_scene1_bin_3=0x80808080
  1846. VIP_var_dlc_chroma_idx_5_scene1_bin_7=0x80808080
  1847. VIP_var_dlc_chroma_idx_5_scene1_bin_11=0x80808080
  1848. VIP_var_dlc_chroma_idx_5_scene1_bin_15=0x80808080
  1849. VIP_var_dlc_chroma_idx_5_scene2_bin_3=0x80808080
  1850. VIP_var_dlc_chroma_idx_5_scene2_bin_7=0x80808080
  1851. VIP_var_dlc_chroma_idx_5_scene2_bin_11=0x80808080
  1852. VIP_var_dlc_chroma_idx_5_scene2_bin_15=0x80808080
  1853. VIP_var_dlc_chroma_idx_5_scene3_bin_3=0x80808080
  1854. VIP_var_dlc_chroma_idx_5_scene3_bin_7=0x80808080
  1855. VIP_var_dlc_chroma_idx_5_scene3_bin_11=0x80808080
  1856. VIP_var_dlc_chroma_idx_5_scene3_bin_15=0x80808080
  1857. VIP_var_dlc_chroma_idx_5_scene4_bin_3=0x80808080
  1858. VIP_var_dlc_chroma_idx_5_scene4_bin_7=0x80808080
  1859. VIP_var_dlc_chroma_idx_5_scene4_bin_11=0x80808080
  1860. VIP_var_dlc_chroma_idx_5_scene4_bin_15=0x80808080
  1861. VIP_var_dlc_chroma_idx_5_scene5_bin_3=0x80808080
  1862. VIP_var_dlc_chroma_idx_5_scene5_bin_7=0x80808080
  1863. VIP_var_dlc_chroma_idx_5_scene5_bin_11=0x80808080
  1864. VIP_var_dlc_chroma_idx_5_scene5_bin_15=0x80808080
  1865. VIP_var_dlc_chroma_idx_5_scene6_bin_3=0x80808080
  1866. VIP_var_dlc_chroma_idx_5_scene6_bin_7=0x80808080
  1867. VIP_var_dlc_chroma_idx_5_scene6_bin_11=0x80808080
  1868. VIP_var_dlc_chroma_idx_5_scene6_bin_15=0x80808080
  1869. VIP_var_dlc_chroma_idx_5_scene7_bin_3=0x80808080
  1870. VIP_var_dlc_chroma_idx_5_scene7_bin_7=0x80808080
  1871. VIP_var_dlc_chroma_idx_5_scene7_bin_11=0x80808080
  1872. VIP_var_dlc_chroma_idx_5_scene7_bin_15=0x80808080
  1873. VIP_var_dlc_chroma_idx_5_scene8_bin_3=0x80808080
  1874. VIP_var_dlc_chroma_idx_5_scene8_bin_7=0x80808080
  1875. VIP_var_dlc_chroma_idx_5_scene8_bin_11=0x80808080
  1876. VIP_var_dlc_chroma_idx_5_scene8_bin_15=0x80808080
  1877. VIP_var_dlc_chroma_idx_5_scene9_bin_3=0x80808080
  1878. VIP_var_dlc_chroma_idx_5_scene9_bin_7=0x80808080
  1879. VIP_var_dlc_chroma_idx_5_scene9_bin_11=0x80808080
  1880. VIP_var_dlc_chroma_idx_5_scene9_bin_15=0x80808080
  1881. VIP_var_dlc_chroma_idx_5_scene10_bin_3=0x80808080
  1882. VIP_var_dlc_chroma_idx_5_scene10_bin_7=0x80808080
  1883. VIP_var_dlc_chroma_idx_5_scene10_bin_11=0x80808080
  1884. VIP_var_dlc_chroma_idx_5_scene10_bin_15=0x80808080
  1885. VIP_var_dlc_chroma_idx_5_scene11_bin_3=0x80808080
  1886. VIP_var_dlc_chroma_idx_5_scene11_bin_7=0x80808080
  1887. VIP_var_dlc_chroma_idx_5_scene11_bin_11=0x80808080
  1888. VIP_var_dlc_chroma_idx_5_scene11_bin_15=0x80808080
  1889. VIP_var_dlc_chroma_idx_5_scene12_bin_3=0x80808080
  1890. VIP_var_dlc_chroma_idx_5_scene12_bin_7=0x80808080
  1891. VIP_var_dlc_chroma_idx_5_scene12_bin_11=0x80808080
  1892. VIP_var_dlc_chroma_idx_5_scene12_bin_15=0x80808080
  1893. VIP_var_dlc_chroma_idx_5_scene13_bin_3=0x80808080
  1894. VIP_var_dlc_chroma_idx_5_scene13_bin_7=0x80808080
  1895. VIP_var_dlc_chroma_idx_5_scene13_bin_11=0x80808080
  1896. VIP_var_dlc_chroma_idx_5_scene13_bin_15=0x80808080
  1897. VIP_var_dlc_chroma_idx_5_scene14_bin_3=0x80808080
  1898. VIP_var_dlc_chroma_idx_5_scene14_bin_7=0x80808080
  1899. VIP_var_dlc_chroma_idx_5_scene14_bin_11=0x80808080
  1900. VIP_var_dlc_chroma_idx_5_scene14_bin_15=0x80808080
  1901. VIP_var_dlc_chroma_idx_5_scene15_bin_3=0x80808080
  1902. VIP_var_dlc_chroma_idx_5_scene15_bin_7=0x80808080
  1903. VIP_var_dlc_chroma_idx_5_scene15_bin_11=0x80808080
  1904. VIP_var_dlc_chroma_idx_5_scene15_bin_15=0x80808080
  1905. VIP_var_dlc_chroma_idx_5_scene16_bin_3=0x80808080
  1906. VIP_var_dlc_chroma_idx_5_scene16_bin_7=0x80808080
  1907. VIP_var_dlc_chroma_idx_5_scene16_bin_11=0x80808080
  1908. VIP_var_dlc_chroma_idx_5_scene16_bin_15=0x80808080
  1909. VIP_var_dlc_chroma_idx_5_scene17_bin_3=0x80808080
  1910. VIP_var_dlc_chroma_idx_5_scene17_bin_7=0x80808080
  1911. VIP_var_dlc_chroma_idx_5_scene17_bin_11=0x80808080
  1912. VIP_var_dlc_chroma_idx_5_scene17_bin_15=0x80808080
  1913. VIP_var_dlc_chroma_idx_5_scene18_bin_3=0x80808080
  1914. VIP_var_dlc_chroma_idx_5_scene18_bin_7=0x80808080
  1915. VIP_var_dlc_chroma_idx_5_scene18_bin_11=0x80808080
  1916. VIP_var_dlc_chroma_idx_5_scene18_bin_15=0x80808080
  1917. VIP_var_dlc_chroma_idx_5_scene19_bin_3=0x80808080
  1918. VIP_var_dlc_chroma_idx_5_scene19_bin_7=0x80808080
  1919. VIP_var_dlc_chroma_idx_5_scene19_bin_11=0x80808080
  1920. VIP_var_dlc_chroma_idx_5_scene19_bin_15=0x80808080
  1921. VIP_var_dlc_chroma_idx_5_scene20_bin_3=0x80808080
  1922. VIP_var_dlc_chroma_idx_5_scene20_bin_7=0x80808080
  1923. VIP_var_dlc_chroma_idx_5_scene20_bin_11=0x80808080
  1924. VIP_var_dlc_chroma_idx_5_scene20_bin_15=0x80808080
  1925. VIP_var_dlc_chroma_idx_5_scene21_bin_3=0x80808080
  1926. VIP_var_dlc_chroma_idx_5_scene21_bin_7=0x80808080
  1927. VIP_var_dlc_chroma_idx_5_scene21_bin_11=0x80808080
  1928. VIP_var_dlc_chroma_idx_5_scene21_bin_15=0x80808080
  1929. VIP_var_dlc_chroma_idx_5_scene22_bin_3=0x80808080
  1930. VIP_var_dlc_chroma_idx_5_scene22_bin_7=0x80808080
  1931. VIP_var_dlc_chroma_idx_5_scene22_bin_11=0x80808080
  1932. VIP_var_dlc_chroma_idx_5_scene22_bin_15=0x80808080
  1933. VIP_var_dlc_chroma_idx_5_scene23_bin_3=0x80808080
  1934. VIP_var_dlc_chroma_idx_5_scene23_bin_7=0x80808080
  1935. VIP_var_dlc_chroma_idx_5_scene23_bin_11=0x80808080
  1936. VIP_var_dlc_chroma_idx_5_scene23_bin_15=0x80808080
  1937. VIP_var_dlc_chroma_idx_5_scene24_bin_3=0x80808080
  1938. VIP_var_dlc_chroma_idx_5_scene24_bin_7=0x80808080
  1939. VIP_var_dlc_chroma_idx_5_scene24_bin_11=0x80808080
  1940. VIP_var_dlc_chroma_idx_5_scene24_bin_15=0x80808080
  1941. VIP_var_dlc_chroma_idx_5_scene25_bin_3=0x80808080
  1942. VIP_var_dlc_chroma_idx_5_scene25_bin_7=0x80808080
  1943. VIP_var_dlc_chroma_idx_5_scene25_bin_11=0x80808080
  1944. VIP_var_dlc_chroma_idx_5_scene25_bin_15=0x80808080
  1945. VIP_var_dlc_chroma_idx_5_scene26_bin_3=0x80808080
  1946. VIP_var_dlc_chroma_idx_5_scene26_bin_7=0x80808080
  1947. VIP_var_dlc_chroma_idx_5_scene26_bin_11=0x80808080
  1948. VIP_var_dlc_chroma_idx_5_scene26_bin_15=0x80808080
  1949. VIP_var_dlc_chroma_idx_5_scene27_bin_3=0x80808080
  1950. VIP_var_dlc_chroma_idx_5_scene27_bin_7=0x80808080
  1951. VIP_var_dlc_chroma_idx_5_scene27_bin_11=0x80808080
  1952. VIP_var_dlc_chroma_idx_5_scene27_bin_15=0x80808080
  1953. VIP_var_dlc_chroma_idx_5_scene28_bin_3=0x80808080
  1954. VIP_var_dlc_chroma_idx_5_scene28_bin_7=0x80808080
  1955. VIP_var_dlc_chroma_idx_5_scene28_bin_11=0x80808080
  1956. VIP_var_dlc_chroma_idx_5_scene28_bin_15=0x80808080
  1957. VIP_var_dlc_chroma_idx_5_scene29_bin_3=0x80808080
  1958. VIP_var_dlc_chroma_idx_5_scene29_bin_7=0x80808080
  1959. VIP_var_dlc_chroma_idx_5_scene29_bin_11=0x80808080
  1960. VIP_var_dlc_chroma_idx_5_scene29_bin_15=0x80808080
  1961. VIP_var_dlc_chroma_idx_5_scene30_bin_3=0x77777777
  1962. VIP_var_dlc_chroma_idx_5_scene30_bin_7=0x77777777
  1963. VIP_var_dlc_chroma_idx_5_scene30_bin_11=0x77777777
  1964. VIP_var_dlc_chroma_idx_5_scene30_bin_15=0x77777777
  1965. VIP_var_dlc_chroma_idx_5_scene31_bin_3=0x80808080
  1966. VIP_var_dlc_chroma_idx_5_scene31_bin_7=0x80808080
  1967. VIP_var_dlc_chroma_idx_5_scene31_bin_11=0x80808080
  1968. VIP_var_dlc_chroma_idx_5_scene31_bin_15=0x80808080
  1969. VIP_var_dlc_chroma_idx_5_scene32_bin_3=0x80808080
  1970. VIP_var_dlc_chroma_idx_5_scene32_bin_7=0x80808080
  1971. VIP_var_dlc_chroma_idx_5_scene32_bin_11=0x80808080
  1972. VIP_var_dlc_chroma_idx_5_scene32_bin_15=0x80808080
  1973. VIP_var_dlc_chroma_idx_5_scene33_bin_3=0x80808080
  1974. VIP_var_dlc_chroma_idx_5_scene33_bin_7=0x80808080
  1975. VIP_var_dlc_chroma_idx_5_scene33_bin_11=0x80808080
  1976. VIP_var_dlc_chroma_idx_5_scene33_bin_15=0x80808080
  1977. VIP_var_dlc_chroma_idx_5_scene34_bin_3=0x80808080
  1978. VIP_var_dlc_chroma_idx_5_scene34_bin_7=0x80808080
  1979. VIP_var_dlc_chroma_idx_5_scene34_bin_11=0x80808080
  1980. VIP_var_dlc_chroma_idx_5_scene34_bin_15=0x80808080
  1981. VIP_var_dlc_chroma_idx_5_scene35_bin_3=0x80808080
  1982. VIP_var_dlc_chroma_idx_5_scene35_bin_7=0x80808080
  1983. VIP_var_dlc_chroma_idx_5_scene35_bin_11=0x80808080
  1984. VIP_var_dlc_chroma_idx_5_scene35_bin_15=0x80808080
  1985. VIP_var_dlc_idx5_DLC_En=1
  1986. VIP_var_dlc_idx5_Var_Cond_En=95
  1987. VIP_var_dlc_idx5_Ratio[0]=358
  1988. VIP_var_dlc_idx5_Ratio[1]=154
  1989. VIP_var_dlc_idx5_Ratio[2]=307
  1990. VIP_var_dlc_idx5_Ratio[3]=205
  1991. VIP_var_dlc_idx5_Ratio[4]=282
  1992. VIP_var_dlc_idx5_Ratio[5]=282
  1993. VIP_var_dlc_idx5_Factor[0]=180
  1994. VIP_var_dlc_idx5_Factor[1]=175
  1995. VIP_var_dlc_idx5_Factor[2]=200
  1996. VIP_var_dlc_idx5_Factor[3]=512
  1997. VIP_var_dlc_idx5_Factor[4]=512
  1998. VIP_var_dlc_idx5_Alpha=254
  1999. VIP_var_dlc_idx5_static_alpha[0]=128
  2000. VIP_var_dlc_idx5_static_alpha[1]=128
  2001. VIP_var_dlc_idx5_static_alpha[2]=128
  2002. VIP_var_dlc_idx5_static_alpha[3]=128
  2003. VIP_var_dlc_idx5_contrast_lv=255
  2004. VIP_var_dlc_idx5_chroma_lv=255
  2005. VIP_var_dlc_luma_idx_6_scene0_bin_3=0xa399938a
  2006. VIP_var_dlc_luma_idx_6_scene0_bin_7=0x8d929b9f
  2007. VIP_var_dlc_luma_idx_6_scene0_bin_11=0x6c747d88
  2008. VIP_var_dlc_luma_idx_6_scene0_bin_15=0x51555d65
  2009. VIP_var_dlc_luma_idx_6_scene1_bin_3=0x9f87745d
  2010. VIP_var_dlc_luma_idx_6_scene1_bin_7=0x959aa7a7
  2011. VIP_var_dlc_luma_idx_6_scene1_bin_11=0x59657381
  2012. VIP_var_dlc_luma_idx_6_scene1_bin_15=0x59595959
  2013. VIP_var_dlc_luma_idx_6_scene2_bin_3=0x957e7971
  2014. VIP_var_dlc_luma_idx_6_scene2_bin_7=0x949daea5
  2015. VIP_var_dlc_luma_idx_6_scene2_bin_11=0x767d868c
  2016. VIP_var_dlc_luma_idx_6_scene2_bin_15=0x535b626d
  2017. VIP_var_dlc_luma_idx_6_scene3_bin_3=0x95887a5e
  2018. VIP_var_dlc_luma_idx_6_scene3_bin_7=0xa4adb2a0
  2019. VIP_var_dlc_luma_idx_6_scene3_bin_11=0x6d7e8e9a
  2020. VIP_var_dlc_luma_idx_6_scene3_bin_15=0x484f5964
  2021. VIP_var_dlc_luma_idx_6_scene4_bin_3=0xa2876850
  2022. VIP_var_dlc_luma_idx_6_scene4_bin_7=0xa3aaaeb7
  2023. VIP_var_dlc_luma_idx_6_scene4_bin_11=0x717c8f9b
  2024. VIP_var_dlc_luma_idx_6_scene4_bin_15=0x3e4e5964
  2025. VIP_var_dlc_luma_idx_6_scene5_bin_3=0x93856f5c
  2026. VIP_var_dlc_luma_idx_6_scene5_bin_7=0xa2bbaea6
  2027. VIP_var_dlc_luma_idx_6_scene5_bin_11=0x717a8694
  2028. VIP_var_dlc_luma_idx_6_scene5_bin_15=0x4b555f69
  2029. VIP_var_dlc_luma_idx_6_scene6_bin_3=0x99836251
  2030. VIP_var_dlc_luma_idx_6_scene6_bin_7=0x9fa6aea0
  2031. VIP_var_dlc_luma_idx_6_scene6_bin_11=0x717c8794
  2032. VIP_var_dlc_luma_idx_6_scene6_bin_15=0x585e656b
  2033. VIP_var_dlc_luma_idx_6_scene7_bin_3=0xa189765f
  2034. VIP_var_dlc_luma_idx_6_scene7_bin_7=0x8796a0ab
  2035. VIP_var_dlc_luma_idx_6_scene7_bin_11=0x6e6e7580
  2036. VIP_var_dlc_luma_idx_6_scene7_bin_15=0x6e6e6e6e
  2037. VIP_var_dlc_luma_idx_6_scene8_bin_3=0x75625242
  2038. VIP_var_dlc_luma_idx_6_scene8_bin_7=0x9aa4ac92
  2039. VIP_var_dlc_luma_idx_6_scene8_bin_11=0x7a828993
  2040. VIP_var_dlc_luma_idx_6_scene8_bin_15=0x7a7a7a7a
  2041. VIP_var_dlc_luma_idx_6_scene9_bin_3=0x8c868278
  2042. VIP_var_dlc_luma_idx_6_scene9_bin_7=0x8585898b
  2043. VIP_var_dlc_luma_idx_6_scene9_bin_11=0x76767a81
  2044. VIP_var_dlc_luma_idx_6_scene9_bin_15=0x76767676
  2045. VIP_var_dlc_luma_idx_6_scene10_bin_3=0x86828180
  2046. VIP_var_dlc_luma_idx_6_scene10_bin_7=0x83858683
  2047. VIP_var_dlc_luma_idx_6_scene10_bin_11=0x787a7d80
  2048. VIP_var_dlc_luma_idx_6_scene10_bin_15=0x78787878
  2049. VIP_var_dlc_luma_idx_6_scene11_bin_3=0x8682817b
  2050. VIP_var_dlc_luma_idx_6_scene11_bin_7=0x83858683
  2051. VIP_var_dlc_luma_idx_6_scene11_bin_11=0x787a7d80
  2052. VIP_var_dlc_luma_idx_6_scene11_bin_15=0x78787878
  2053. VIP_var_dlc_luma_idx_6_scene12_bin_3=0x8176655e
  2054. VIP_var_dlc_luma_idx_6_scene12_bin_7=0xa59d9590
  2055. VIP_var_dlc_luma_idx_6_scene12_bin_11=0x7d809099
  2056. VIP_var_dlc_luma_idx_6_scene12_bin_15=0x89818179
  2057. VIP_var_dlc_luma_idx_6_scene13_bin_3=0x9788695d
  2058. VIP_var_dlc_luma_idx_6_scene13_bin_7=0x9ea1a5a0
  2059. VIP_var_dlc_luma_idx_6_scene13_bin_11=0x7c86909a
  2060. VIP_var_dlc_luma_idx_6_scene13_bin_15=0x4a53606c
  2061. VIP_var_dlc_luma_idx_6_scene14_bin_3=0x8682817b
  2062. VIP_var_dlc_luma_idx_6_scene14_bin_7=0x83858683
  2063. VIP_var_dlc_luma_idx_6_scene14_bin_11=0x787a7d80
  2064. VIP_var_dlc_luma_idx_6_scene14_bin_15=0x78787878
  2065. VIP_var_dlc_luma_idx_6_scene15_bin_3=0x919ca2a8
  2066. VIP_var_dlc_luma_idx_6_scene15_bin_7=0x8385868a
  2067. VIP_var_dlc_luma_idx_6_scene15_bin_11=0x797d7e80
  2068. VIP_var_dlc_luma_idx_6_scene15_bin_15=0x70707073
  2069. VIP_var_dlc_luma_idx_6_scene16_bin_3=0xa391714d
  2070. VIP_var_dlc_luma_idx_6_scene16_bin_7=0xa7b6cabb
  2071. VIP_var_dlc_luma_idx_6_scene16_bin_11=0x70808c99
  2072. VIP_var_dlc_luma_idx_6_scene16_bin_15=0x303d4c5b
  2073. VIP_var_dlc_luma_idx_6_scene17_bin_3=0x9c948058
  2074. VIP_var_dlc_luma_idx_6_scene17_bin_7=0x9ca3a39c
  2075. VIP_var_dlc_luma_idx_6_scene17_bin_11=0x7883868c
  2076. VIP_var_dlc_luma_idx_6_scene17_bin_15=0x4259646e
  2077. VIP_var_dlc_luma_idx_6_scene18_bin_3=0x9c948072
  2078. VIP_var_dlc_luma_idx_6_scene18_bin_7=0xa0afa39c
  2079. VIP_var_dlc_luma_idx_6_scene18_bin_11=0x707d8892
  2080. VIP_var_dlc_luma_idx_6_scene18_bin_15=0x414b5863
  2081. VIP_var_dlc_luma_idx_6_scene19_bin_3=0x927c6754
  2082. VIP_var_dlc_luma_idx_6_scene19_bin_7=0x8b928f93
  2083. VIP_var_dlc_luma_idx_6_scene19_bin_11=0x7e7e8186
  2084. VIP_var_dlc_luma_idx_6_scene19_bin_15=0x75757575
  2085. VIP_var_dlc_luma_idx_6_scene20_bin_3=0xa1968b75
  2086. VIP_var_dlc_luma_idx_6_scene20_bin_7=0x949ba6a8
  2087. VIP_var_dlc_luma_idx_6_scene20_bin_11=0x727c848d
  2088. VIP_var_dlc_luma_idx_6_scene20_bin_15=0x3b455d6a
  2089. VIP_var_dlc_luma_idx_6_scene21_bin_3=0x7b685a50
  2090. VIP_var_dlc_luma_idx_6_scene21_bin_7=0xabb9a393
  2091. VIP_var_dlc_luma_idx_6_scene21_bin_11=0x798c9ca1
  2092. VIP_var_dlc_luma_idx_6_scene21_bin_15=0x4f515869
  2093. VIP_var_dlc_luma_idx_6_scene22_bin_3=0x97807064
  2094. VIP_var_dlc_luma_idx_6_scene22_bin_7=0x9ba9b8a9
  2095. VIP_var_dlc_luma_idx_6_scene22_bin_11=0x74818890
  2096. VIP_var_dlc_luma_idx_6_scene22_bin_15=0x46515d68
  2097. VIP_var_dlc_luma_idx_6_scene23_bin_3=0x95826e64
  2098. VIP_var_dlc_luma_idx_6_scene23_bin_7=0xa1a7ada3
  2099. VIP_var_dlc_luma_idx_6_scene23_bin_11=0x73798792
  2100. VIP_var_dlc_luma_idx_6_scene23_bin_15=0x525a636b
  2101. VIP_var_dlc_luma_idx_6_scene24_bin_3=0x8d807461
  2102. VIP_var_dlc_luma_idx_6_scene24_bin_7=0xa3aba89b
  2103. VIP_var_dlc_luma_idx_6_scene24_bin_11=0x6d788495
  2104. VIP_var_dlc_luma_idx_6_scene24_bin_15=0x4d545c65
  2105. VIP_var_dlc_luma_idx_6_scene25_bin_3=0x9b8b7f78
  2106. VIP_var_dlc_luma_idx_6_scene25_bin_7=0x9b9b9b9b
  2107. VIP_var_dlc_luma_idx_6_scene25_bin_11=0x89949b9b
  2108. VIP_var_dlc_luma_idx_6_scene25_bin_15=0x2348546f
  2109. VIP_var_dlc_luma_idx_6_scene26_bin_3=0x9b8b755c
  2110. VIP_var_dlc_luma_idx_6_scene26_bin_7=0x9daab4aa
  2111. VIP_var_dlc_luma_idx_6_scene26_bin_11=0x6a7b8090
  2112. VIP_var_dlc_luma_idx_6_scene26_bin_15=0x4e525863
  2113. VIP_var_dlc_luma_idx_6_scene27_bin_3=0xa394815c
  2114. VIP_var_dlc_luma_idx_6_scene27_bin_7=0x9ba8aeb8
  2115. VIP_var_dlc_luma_idx_6_scene27_bin_11=0x707b8894
  2116. VIP_var_dlc_luma_idx_6_scene27_bin_15=0x3d4a5863
  2117. VIP_var_dlc_luma_idx_6_scene28_bin_3=0x99a0a0a0
  2118. VIP_var_dlc_luma_idx_6_scene28_bin_7=0x75787d89
  2119. VIP_var_dlc_luma_idx_6_scene28_bin_11=0x6c6c6f73
  2120. VIP_var_dlc_luma_idx_6_scene28_bin_15=0x80787068
  2121. VIP_var_dlc_luma_idx_6_scene29_bin_3=0x9c948058
  2122. VIP_var_dlc_luma_idx_6_scene29_bin_7=0x9ca3a39c
  2123. VIP_var_dlc_luma_idx_6_scene29_bin_11=0x7883868c
  2124. VIP_var_dlc_luma_idx_6_scene29_bin_15=0x4259646e
  2125. VIP_var_dlc_luma_idx_6_scene30_bin_3=0x80808080
  2126. VIP_var_dlc_luma_idx_6_scene30_bin_7=0x80808080
  2127. VIP_var_dlc_luma_idx_6_scene30_bin_11=0x80808080
  2128. VIP_var_dlc_luma_idx_6_scene30_bin_15=0x80808080
  2129. VIP_var_dlc_luma_idx_6_scene31_bin_3=0x8f887972
  2130. VIP_var_dlc_luma_idx_6_scene31_bin_7=0x8f8f8f8f
  2131. VIP_var_dlc_luma_idx_6_scene31_bin_11=0x7c808688
  2132. VIP_var_dlc_luma_idx_6_scene31_bin_15=0x7c7c7c7c
  2133. VIP_var_dlc_luma_idx_6_scene32_bin_3=0x684f3e27
  2134. VIP_var_dlc_luma_idx_6_scene32_bin_7=0xbfd2c38b
  2135. VIP_var_dlc_luma_idx_6_scene32_bin_11=0x82858895
  2136. VIP_var_dlc_luma_idx_6_scene32_bin_15=0x7c7c8080
  2137. VIP_var_dlc_luma_idx_6_scene33_bin_3=0x80808080
  2138. VIP_var_dlc_luma_idx_6_scene33_bin_7=0x9a808080
  2139. VIP_var_dlc_luma_idx_6_scene33_bin_11=0x8abfd2bc
  2140. VIP_var_dlc_luma_idx_6_scene33_bin_15=0x35394a5f
  2141. VIP_var_dlc_luma_idx_6_scene34_bin_3=0x4d443b32
  2142. VIP_var_dlc_luma_idx_6_scene34_bin_7=0x78676158
  2143. VIP_var_dlc_luma_idx_6_scene34_bin_11=0xa89b8678
  2144. VIP_var_dlc_luma_idx_6_scene34_bin_15=0xdcd1c5b7
  2145. VIP_var_dlc_luma_idx_6_scene35_bin_3=0x6b4c3526
  2146. VIP_var_dlc_luma_idx_6_scene35_bin_7=0xd4bc9e8c
  2147. VIP_var_dlc_luma_idx_6_scene35_bin_11=0x99b5ead4
  2148. VIP_var_dlc_luma_idx_6_scene35_bin_15=0x2a3e5b6b
  2149. VIP_var_dlc_chroma_idx_6_scene0_bin_3=0x76767676
  2150. VIP_var_dlc_chroma_idx_6_scene0_bin_7=0x76767676
  2151. VIP_var_dlc_chroma_idx_6_scene0_bin_11=0x76767676
  2152. VIP_var_dlc_chroma_idx_6_scene0_bin_15=0x76767676
  2153. VIP_var_dlc_chroma_idx_6_scene1_bin_3=0x80808080
  2154. VIP_var_dlc_chroma_idx_6_scene1_bin_7=0x80808080
  2155. VIP_var_dlc_chroma_idx_6_scene1_bin_11=0x80808080
  2156. VIP_var_dlc_chroma_idx_6_scene1_bin_15=0x80808080
  2157. VIP_var_dlc_chroma_idx_6_scene2_bin_3=0x80808080
  2158. VIP_var_dlc_chroma_idx_6_scene2_bin_7=0x80808080
  2159. VIP_var_dlc_chroma_idx_6_scene2_bin_11=0x80808080
  2160. VIP_var_dlc_chroma_idx_6_scene2_bin_15=0x80808080
  2161. VIP_var_dlc_chroma_idx_6_scene3_bin_3=0x80808080
  2162. VIP_var_dlc_chroma_idx_6_scene3_bin_7=0x80808080
  2163. VIP_var_dlc_chroma_idx_6_scene3_bin_11=0x80808080
  2164. VIP_var_dlc_chroma_idx_6_scene3_bin_15=0x80808080
  2165. VIP_var_dlc_chroma_idx_6_scene4_bin_3=0x80808080
  2166. VIP_var_dlc_chroma_idx_6_scene4_bin_7=0x80808080
  2167. VIP_var_dlc_chroma_idx_6_scene4_bin_11=0x80808080
  2168. VIP_var_dlc_chroma_idx_6_scene4_bin_15=0x80808080
  2169. VIP_var_dlc_chroma_idx_6_scene5_bin_3=0x80808080
  2170. VIP_var_dlc_chroma_idx_6_scene5_bin_7=0x80808080
  2171. VIP_var_dlc_chroma_idx_6_scene5_bin_11=0x80808080
  2172. VIP_var_dlc_chroma_idx_6_scene5_bin_15=0x80808080
  2173. VIP_var_dlc_chroma_idx_6_scene6_bin_3=0x80808080
  2174. VIP_var_dlc_chroma_idx_6_scene6_bin_7=0x80808080
  2175. VIP_var_dlc_chroma_idx_6_scene6_bin_11=0x80808080
  2176. VIP_var_dlc_chroma_idx_6_scene6_bin_15=0x80808080
  2177. VIP_var_dlc_chroma_idx_6_scene7_bin_3=0x80808080
  2178. VIP_var_dlc_chroma_idx_6_scene7_bin_7=0x80808080
  2179. VIP_var_dlc_chroma_idx_6_scene7_bin_11=0x80808080
  2180. VIP_var_dlc_chroma_idx_6_scene7_bin_15=0x80808080
  2181. VIP_var_dlc_chroma_idx_6_scene8_bin_3=0x80808080
  2182. VIP_var_dlc_chroma_idx_6_scene8_bin_7=0x80808080
  2183. VIP_var_dlc_chroma_idx_6_scene8_bin_11=0x80808080
  2184. VIP_var_dlc_chroma_idx_6_scene8_bin_15=0x80808080
  2185. VIP_var_dlc_chroma_idx_6_scene9_bin_3=0x80808080
  2186. VIP_var_dlc_chroma_idx_6_scene9_bin_7=0x80808080
  2187. VIP_var_dlc_chroma_idx_6_scene9_bin_11=0x80808080
  2188. VIP_var_dlc_chroma_idx_6_scene9_bin_15=0x80808080
  2189. VIP_var_dlc_chroma_idx_6_scene10_bin_3=0x80808080
  2190. VIP_var_dlc_chroma_idx_6_scene10_bin_7=0x80808080
  2191. VIP_var_dlc_chroma_idx_6_scene10_bin_11=0x80808080
  2192. VIP_var_dlc_chroma_idx_6_scene10_bin_15=0x80808080
  2193. VIP_var_dlc_chroma_idx_6_scene11_bin_3=0x80808080
  2194. VIP_var_dlc_chroma_idx_6_scene11_bin_7=0x80808080
  2195. VIP_var_dlc_chroma_idx_6_scene11_bin_11=0x80808080
  2196. VIP_var_dlc_chroma_idx_6_scene11_bin_15=0x80808080
  2197. VIP_var_dlc_chroma_idx_6_scene12_bin_3=0x80808080
  2198. VIP_var_dlc_chroma_idx_6_scene12_bin_7=0x80808080
  2199. VIP_var_dlc_chroma_idx_6_scene12_bin_11=0x80808080
  2200. VIP_var_dlc_chroma_idx_6_scene12_bin_15=0x80808080
  2201. VIP_var_dlc_chroma_idx_6_scene13_bin_3=0x80808080
  2202. VIP_var_dlc_chroma_idx_6_scene13_bin_7=0x80808080
  2203. VIP_var_dlc_chroma_idx_6_scene13_bin_11=0x80808080
  2204. VIP_var_dlc_chroma_idx_6_scene13_bin_15=0x80808080
  2205. VIP_var_dlc_chroma_idx_6_scene14_bin_3=0x80808080
  2206. VIP_var_dlc_chroma_idx_6_scene14_bin_7=0x80808080
  2207. VIP_var_dlc_chroma_idx_6_scene14_bin_11=0x80808080
  2208. VIP_var_dlc_chroma_idx_6_scene14_bin_15=0x80808080
  2209. VIP_var_dlc_chroma_idx_6_scene15_bin_3=0x80808080
  2210. VIP_var_dlc_chroma_idx_6_scene15_bin_7=0x80808080
  2211. VIP_var_dlc_chroma_idx_6_scene15_bin_11=0x80808080
  2212. VIP_var_dlc_chroma_idx_6_scene15_bin_15=0x80808080
  2213. VIP_var_dlc_chroma_idx_6_scene16_bin_3=0x80808080
  2214. VIP_var_dlc_chroma_idx_6_scene16_bin_7=0x80808080
  2215. VIP_var_dlc_chroma_idx_6_scene16_bin_11=0x80808080
  2216. VIP_var_dlc_chroma_idx_6_scene16_bin_15=0x80808080
  2217. VIP_var_dlc_chroma_idx_6_scene17_bin_3=0x80808080
  2218. VIP_var_dlc_chroma_idx_6_scene17_bin_7=0x80808080
  2219. VIP_var_dlc_chroma_idx_6_scene17_bin_11=0x80808080
  2220. VIP_var_dlc_chroma_idx_6_scene17_bin_15=0x80808080
  2221. VIP_var_dlc_chroma_idx_6_scene18_bin_3=0x80808080
  2222. VIP_var_dlc_chroma_idx_6_scene18_bin_7=0x80808080
  2223. VIP_var_dlc_chroma_idx_6_scene18_bin_11=0x80808080
  2224. VIP_var_dlc_chroma_idx_6_scene18_bin_15=0x80808080
  2225. VIP_var_dlc_chroma_idx_6_scene19_bin_3=0x80808080
  2226. VIP_var_dlc_chroma_idx_6_scene19_bin_7=0x80808080
  2227. VIP_var_dlc_chroma_idx_6_scene19_bin_11=0x80808080
  2228. VIP_var_dlc_chroma_idx_6_scene19_bin_15=0x80808080
  2229. VIP_var_dlc_chroma_idx_6_scene20_bin_3=0x80808080
  2230. VIP_var_dlc_chroma_idx_6_scene20_bin_7=0x80808080
  2231. VIP_var_dlc_chroma_idx_6_scene20_bin_11=0x80808080
  2232. VIP_var_dlc_chroma_idx_6_scene20_bin_15=0x80808080
  2233. VIP_var_dlc_chroma_idx_6_scene21_bin_3=0x80808080
  2234. VIP_var_dlc_chroma_idx_6_scene21_bin_7=0x80808080
  2235. VIP_var_dlc_chroma_idx_6_scene21_bin_11=0x80808080
  2236. VIP_var_dlc_chroma_idx_6_scene21_bin_15=0x80808080
  2237. VIP_var_dlc_chroma_idx_6_scene22_bin_3=0x80808080
  2238. VIP_var_dlc_chroma_idx_6_scene22_bin_7=0x80808080
  2239. VIP_var_dlc_chroma_idx_6_scene22_bin_11=0x80808080
  2240. VIP_var_dlc_chroma_idx_6_scene22_bin_15=0x80808080
  2241. VIP_var_dlc_chroma_idx_6_scene23_bin_3=0x80808080
  2242. VIP_var_dlc_chroma_idx_6_scene23_bin_7=0x80808080
  2243. VIP_var_dlc_chroma_idx_6_scene23_bin_11=0x80808080
  2244. VIP_var_dlc_chroma_idx_6_scene23_bin_15=0x80808080
  2245. VIP_var_dlc_chroma_idx_6_scene24_bin_3=0x80808080
  2246. VIP_var_dlc_chroma_idx_6_scene24_bin_7=0x80808080
  2247. VIP_var_dlc_chroma_idx_6_scene24_bin_11=0x80808080
  2248. VIP_var_dlc_chroma_idx_6_scene24_bin_15=0x80808080
  2249. VIP_var_dlc_chroma_idx_6_scene25_bin_3=0x80808080
  2250. VIP_var_dlc_chroma_idx_6_scene25_bin_7=0x80808080
  2251. VIP_var_dlc_chroma_idx_6_scene25_bin_11=0x80808080
  2252. VIP_var_dlc_chroma_idx_6_scene25_bin_15=0x80808080
  2253. VIP_var_dlc_chroma_idx_6_scene26_bin_3=0x80808080
  2254. VIP_var_dlc_chroma_idx_6_scene26_bin_7=0x80808080
  2255. VIP_var_dlc_chroma_idx_6_scene26_bin_11=0x80808080
  2256. VIP_var_dlc_chroma_idx_6_scene26_bin_15=0x80808080
  2257. VIP_var_dlc_chroma_idx_6_scene27_bin_3=0x80808080
  2258. VIP_var_dlc_chroma_idx_6_scene27_bin_7=0x80808080
  2259. VIP_var_dlc_chroma_idx_6_scene27_bin_11=0x80808080
  2260. VIP_var_dlc_chroma_idx_6_scene27_bin_15=0x80808080
  2261. VIP_var_dlc_chroma_idx_6_scene28_bin_3=0x80808080
  2262. VIP_var_dlc_chroma_idx_6_scene28_bin_7=0x80808080
  2263. VIP_var_dlc_chroma_idx_6_scene28_bin_11=0x80808080
  2264. VIP_var_dlc_chroma_idx_6_scene28_bin_15=0x80808080
  2265. VIP_var_dlc_chroma_idx_6_scene29_bin_3=0x80808080
  2266. VIP_var_dlc_chroma_idx_6_scene29_bin_7=0x80808080
  2267. VIP_var_dlc_chroma_idx_6_scene29_bin_11=0x80808080
  2268. VIP_var_dlc_chroma_idx_6_scene29_bin_15=0x80808080
  2269. VIP_var_dlc_chroma_idx_6_scene30_bin_3=0x77777777
  2270. VIP_var_dlc_chroma_idx_6_scene30_bin_7=0x77777777
  2271. VIP_var_dlc_chroma_idx_6_scene30_bin_11=0x77777777
  2272. VIP_var_dlc_chroma_idx_6_scene30_bin_15=0x77777777
  2273. VIP_var_dlc_chroma_idx_6_scene31_bin_3=0x80808080
  2274. VIP_var_dlc_chroma_idx_6_scene31_bin_7=0x80808080
  2275. VIP_var_dlc_chroma_idx_6_scene31_bin_11=0x80808080
  2276. VIP_var_dlc_chroma_idx_6_scene31_bin_15=0x80808080
  2277. VIP_var_dlc_chroma_idx_6_scene32_bin_3=0x80808080
  2278. VIP_var_dlc_chroma_idx_6_scene32_bin_7=0x80808080
  2279. VIP_var_dlc_chroma_idx_6_scene32_bin_11=0x80808080
  2280. VIP_var_dlc_chroma_idx_6_scene32_bin_15=0x80808080
  2281. VIP_var_dlc_chroma_idx_6_scene33_bin_3=0x80808080
  2282. VIP_var_dlc_chroma_idx_6_scene33_bin_7=0x80808080
  2283. VIP_var_dlc_chroma_idx_6_scene33_bin_11=0x80808080
  2284. VIP_var_dlc_chroma_idx_6_scene33_bin_15=0x80808080
  2285. VIP_var_dlc_chroma_idx_6_scene34_bin_3=0x80808080
  2286. VIP_var_dlc_chroma_idx_6_scene34_bin_7=0x80808080
  2287. VIP_var_dlc_chroma_idx_6_scene34_bin_11=0x80808080
  2288. VIP_var_dlc_chroma_idx_6_scene34_bin_15=0x80808080
  2289. VIP_var_dlc_chroma_idx_6_scene35_bin_3=0x80808080
  2290. VIP_var_dlc_chroma_idx_6_scene35_bin_7=0x80808080
  2291. VIP_var_dlc_chroma_idx_6_scene35_bin_11=0x80808080
  2292. VIP_var_dlc_chroma_idx_6_scene35_bin_15=0x80808080
  2293. VIP_var_dlc_idx6_DLC_En=1
  2294. VIP_var_dlc_idx6_Var_Cond_En=95
  2295. VIP_var_dlc_idx6_Ratio[0]=358
  2296. VIP_var_dlc_idx6_Ratio[1]=154
  2297. VIP_var_dlc_idx6_Ratio[2]=307
  2298. VIP_var_dlc_idx6_Ratio[3]=205
  2299. VIP_var_dlc_idx6_Ratio[4]=282
  2300. VIP_var_dlc_idx6_Ratio[5]=282
  2301. VIP_var_dlc_idx6_Factor[0]=180
  2302. VIP_var_dlc_idx6_Factor[1]=175
  2303. VIP_var_dlc_idx6_Factor[2]=200
  2304. VIP_var_dlc_idx6_Factor[3]=512
  2305. VIP_var_dlc_idx6_Factor[4]=512
  2306. VIP_var_dlc_idx6_Alpha=254
  2307. VIP_var_dlc_idx6_static_alpha[0]=108
  2308. VIP_var_dlc_idx6_static_alpha[1]=128
  2309. VIP_var_dlc_idx6_static_alpha[2]=128
  2310. VIP_var_dlc_idx6_static_alpha[3]=128
  2311. VIP_var_dlc_idx6_contrast_lv=255
  2312. VIP_var_dlc_idx6_chroma_lv=255
  2313. VIP_var_dlc_luma_idx_7_scene0_bin_3=0x9f948b81
  2314. VIP_var_dlc_luma_idx_7_scene0_bin_7=0x99a4a8a8
  2315. VIP_var_dlc_luma_idx_7_scene0_bin_11=0x636f7e8b
  2316. VIP_var_dlc_luma_idx_7_scene0_bin_15=0x4a4a4a56
  2317. VIP_var_dlc_luma_idx_7_scene1_bin_3=0x8f828080
  2318. VIP_var_dlc_luma_idx_7_scene1_bin_7=0x9ea8a097
  2319. VIP_var_dlc_luma_idx_7_scene1_bin_11=0x76818a96
  2320. VIP_var_dlc_luma_idx_7_scene1_bin_15=0x4855606a
  2321. VIP_var_dlc_luma_idx_7_scene2_bin_3=0x958a847d
  2322. VIP_var_dlc_luma_idx_7_scene2_bin_7=0x919eada1
  2323. VIP_var_dlc_luma_idx_7_scene2_bin_11=0x6c727e89
  2324. VIP_var_dlc_luma_idx_7_scene2_bin_15=0x3b43515f
  2325. VIP_var_dlc_luma_idx_7_scene3_bin_3=0x8273553e
  2326. VIP_var_dlc_luma_idx_7_scene3_bin_7=0xbdcdaf9d
  2327. VIP_var_dlc_luma_idx_7_scene3_bin_11=0x768594a8
  2328. VIP_var_dlc_luma_idx_7_scene3_bin_15=0x42515d68
  2329. VIP_var_dlc_luma_idx_7_scene4_bin_3=0x7e695a31
  2330. VIP_var_dlc_luma_idx_7_scene4_bin_7=0xc2d1a691
  2331. VIP_var_dlc_luma_idx_7_scene4_bin_11=0x7a8e9dae
  2332. VIP_var_dlc_luma_idx_7_scene4_bin_15=0x3e4e5f6d
  2333. VIP_var_dlc_luma_idx_7_scene5_bin_3=0x7865564d
  2334. VIP_var_dlc_luma_idx_7_scene5_bin_7=0xacb3b996
  2335. VIP_var_dlc_luma_idx_7_scene5_bin_11=0x7c8591a4
  2336. VIP_var_dlc_luma_idx_7_scene5_bin_15=0x4e596270
  2337. VIP_var_dlc_luma_idx_7_scene6_bin_3=0x87808080
  2338. VIP_var_dlc_luma_idx_7_scene6_bin_7=0x949f998e
  2339. VIP_var_dlc_luma_idx_7_scene6_bin_11=0x7880868d
  2340. VIP_var_dlc_luma_idx_7_scene6_bin_15=0x5b616a72
  2341. VIP_var_dlc_luma_idx_7_scene7_bin_3=0x8072665b
  2342. VIP_var_dlc_luma_idx_7_scene7_bin_7=0xa4ae9d8f
  2343. VIP_var_dlc_luma_idx_7_scene7_bin_11=0x7a84929d
  2344. VIP_var_dlc_luma_idx_7_scene7_bin_15=0x4e57616c
  2345. VIP_var_dlc_luma_idx_7_scene8_bin_3=0x6b5e5242
  2346. VIP_var_dlc_luma_idx_7_scene8_bin_7=0xc5a98e7c
  2347. VIP_var_dlc_luma_idx_7_scene8_bin_11=0x808c9eb1
  2348. VIP_var_dlc_luma_idx_7_scene8_bin_15=0x6c6b6e77
  2349. VIP_var_dlc_luma_idx_7_scene9_bin_3=0x948e8580
  2350. VIP_var_dlc_luma_idx_7_scene9_bin_7=0x9c9c9a94
  2351. VIP_var_dlc_luma_idx_7_scene9_bin_11=0x788e959c
  2352. VIP_var_dlc_luma_idx_7_scene9_bin_15=0x324b5867
  2353. VIP_var_dlc_luma_idx_7_scene10_bin_3=0x867f7670
  2354. VIP_var_dlc_luma_idx_7_scene10_bin_7=0x96a0938b
  2355. VIP_var_dlc_luma_idx_7_scene10_bin_11=0x727b868c
  2356. VIP_var_dlc_luma_idx_7_scene10_bin_15=0x565c646b
  2357. VIP_var_dlc_luma_idx_7_scene11_bin_3=0x836b5345
  2358. VIP_var_dlc_luma_idx_7_scene11_bin_7=0xaeb9a28f
  2359. VIP_var_dlc_luma_idx_7_scene11_bin_11=0x848c95a4
  2360. VIP_var_dlc_luma_idx_7_scene11_bin_15=0x5c636975
  2361. VIP_var_dlc_luma_idx_7_scene12_bin_3=0x7667584c
  2362. VIP_var_dlc_luma_idx_7_scene12_bin_7=0xa59d9588
  2363. VIP_var_dlc_luma_idx_7_scene12_bin_11=0x73809099
  2364. VIP_var_dlc_luma_idx_7_scene12_bin_15=0x8981816e
  2365. VIP_var_dlc_luma_idx_7_scene13_bin_3=0x9788695d
  2366. VIP_var_dlc_luma_idx_7_scene13_bin_7=0x9ea1a5a0
  2367. VIP_var_dlc_luma_idx_7_scene13_bin_11=0x7c86909a
  2368. VIP_var_dlc_luma_idx_7_scene13_bin_15=0x4a53606c
  2369. VIP_var_dlc_luma_idx_7_scene14_bin_3=0x9988694d
  2370. VIP_var_dlc_luma_idx_7_scene14_bin_7=0x9ca4aca3
  2371. VIP_var_dlc_luma_idx_7_scene14_bin_11=0x7d848c94
  2372. VIP_var_dlc_luma_idx_7_scene14_bin_15=0x46566472
  2373. VIP_var_dlc_luma_idx_7_scene15_bin_3=0xa18a6d50
  2374. VIP_var_dlc_luma_idx_7_scene15_bin_7=0xa3b1beb3
  2375. VIP_var_dlc_luma_idx_7_scene15_bin_11=0x6e7d8a95
  2376. VIP_var_dlc_luma_idx_7_scene15_bin_15=0x424e5862
  2377. VIP_var_dlc_luma_idx_7_scene16_bin_3=0xa38b7258
  2378. VIP_var_dlc_luma_idx_7_scene16_bin_7=0x989eadb2
  2379. VIP_var_dlc_luma_idx_7_scene16_bin_11=0x76808992
  2380. VIP_var_dlc_luma_idx_7_scene16_bin_15=0x46515f6a
  2381. VIP_var_dlc_luma_idx_7_scene17_bin_3=0x9c948058
  2382. VIP_var_dlc_luma_idx_7_scene17_bin_7=0x9ca3a39c
  2383. VIP_var_dlc_luma_idx_7_scene17_bin_11=0x7883868c
  2384. VIP_var_dlc_luma_idx_7_scene17_bin_15=0x4259646e
  2385. VIP_var_dlc_luma_idx_7_scene18_bin_3=0x8a81756d
  2386. VIP_var_dlc_luma_idx_7_scene18_bin_7=0xa2ada899
  2387. VIP_var_dlc_luma_idx_7_scene18_bin_11=0x737e8995
  2388. VIP_var_dlc_luma_idx_7_scene18_bin_15=0x4c55606d
  2389. VIP_var_dlc_luma_idx_7_scene19_bin_3=0x91857162
  2390. VIP_var_dlc_luma_idx_7_scene19_bin_7=0x98a0a09b
  2391. VIP_var_dlc_luma_idx_7_scene19_bin_11=0x7e858c91
  2392. VIP_var_dlc_luma_idx_7_scene19_bin_15=0x495a6b75
  2393. VIP_var_dlc_luma_idx_7_scene20_bin_3=0xa1968b75
  2394. VIP_var_dlc_luma_idx_7_scene20_bin_7=0x949ba6a8
  2395. VIP_var_dlc_luma_idx_7_scene20_bin_11=0x727c848d
  2396. VIP_var_dlc_luma_idx_7_scene20_bin_15=0x3b455d6a
  2397. VIP_var_dlc_luma_idx_7_scene21_bin_3=0x7b6b5c46
  2398. VIP_var_dlc_luma_idx_7_scene21_bin_7=0xbfcdb093
  2399. VIP_var_dlc_luma_idx_7_scene21_bin_11=0x798c9caf
  2400. VIP_var_dlc_luma_idx_7_scene21_bin_15=0x3b485869
  2401. VIP_var_dlc_luma_idx_7_scene22_bin_3=0x82694c64
  2402. VIP_var_dlc_luma_idx_7_scene22_bin_7=0xa4b2c09d
  2403. VIP_var_dlc_luma_idx_7_scene22_bin_11=0x7581909a
  2404. VIP_var_dlc_luma_idx_7_scene22_bin_15=0x6363636b
  2405. VIP_var_dlc_luma_idx_7_scene23_bin_3=0x95826e64
  2406. VIP_var_dlc_luma_idx_7_scene23_bin_7=0xa1a7ada3
  2407. VIP_var_dlc_luma_idx_7_scene23_bin_11=0x73798792
  2408. VIP_var_dlc_luma_idx_7_scene23_bin_15=0x525a636b
  2409. VIP_var_dlc_luma_idx_7_scene24_bin_3=0x8d7b7066
  2410. VIP_var_dlc_luma_idx_7_scene24_bin_7=0x9aa4a89b
  2411. VIP_var_dlc_luma_idx_7_scene24_bin_11=0x77828b94
  2412. VIP_var_dlc_luma_idx_7_scene24_bin_15=0x4d54606d
  2413. VIP_var_dlc_luma_idx_7_scene25_bin_3=0x9b8b7f78
  2414. VIP_var_dlc_luma_idx_7_scene25_bin_7=0x9b9b9b9b
  2415. VIP_var_dlc_luma_idx_7_scene25_bin_11=0x89949b9b
  2416. VIP_var_dlc_luma_idx_7_scene25_bin_15=0x2348546f
  2417. VIP_var_dlc_luma_idx_7_scene26_bin_3=0xa394815c
  2418. VIP_var_dlc_luma_idx_7_scene26_bin_7=0x96a2abb8
  2419. VIP_var_dlc_luma_idx_7_scene26_bin_11=0x6a7b808a
  2420. VIP_var_dlc_luma_idx_7_scene26_bin_15=0x4e525863
  2421. VIP_var_dlc_luma_idx_7_scene27_bin_3=0xa394815c
  2422. VIP_var_dlc_luma_idx_7_scene27_bin_7=0x9ba8aeb8
  2423. VIP_var_dlc_luma_idx_7_scene27_bin_11=0x707b8894
  2424. VIP_var_dlc_luma_idx_7_scene27_bin_15=0x3d4a5863
  2425. VIP_var_dlc_luma_idx_7_scene28_bin_3=0x99a0a0a0
  2426. VIP_var_dlc_luma_idx_7_scene28_bin_7=0x75787d89
  2427. VIP_var_dlc_luma_idx_7_scene28_bin_11=0x6c6c6f73
  2428. VIP_var_dlc_luma_idx_7_scene28_bin_15=0x80787068
  2429. VIP_var_dlc_luma_idx_7_scene29_bin_3=0x9c948058
  2430. VIP_var_dlc_luma_idx_7_scene29_bin_7=0x9ca3a39c
  2431. VIP_var_dlc_luma_idx_7_scene29_bin_11=0x7883868c
  2432. VIP_var_dlc_luma_idx_7_scene29_bin_15=0x4259646e
  2433. VIP_var_dlc_luma_idx_7_scene30_bin_3=0x84817b70
  2434. VIP_var_dlc_luma_idx_7_scene30_bin_7=0x8d8b8686
  2435. VIP_var_dlc_luma_idx_7_scene30_bin_11=0x7d838889
  2436. VIP_var_dlc_luma_idx_7_scene30_bin_15=0x6c707174
  2437. VIP_var_dlc_luma_idx_7_scene31_bin_3=0x7e7d7b7a
  2438. VIP_var_dlc_luma_idx_7_scene31_bin_7=0x82858989
  2439. VIP_var_dlc_luma_idx_7_scene31_bin_11=0x7c7c7c7f
  2440. VIP_var_dlc_luma_idx_7_scene31_bin_15=0x7c7c7c7c
  2441. VIP_var_dlc_luma_idx_7_scene32_bin_3=0x75665d54
  2442. VIP_var_dlc_luma_idx_7_scene32_bin_7=0x99a2a18b
  2443. VIP_var_dlc_luma_idx_7_scene32_bin_11=0x8285888d
  2444. VIP_var_dlc_luma_idx_7_scene32_bin_15=0x7c7c8080
  2445. VIP_var_dlc_luma_idx_7_scene33_bin_3=0x80808080
  2446. VIP_var_dlc_luma_idx_7_scene33_bin_7=0x9a808080
  2447. VIP_var_dlc_luma_idx_7_scene33_bin_11=0x8abfd2bc
  2448. VIP_var_dlc_luma_idx_7_scene33_bin_15=0x35394a5f
  2449. VIP_var_dlc_luma_idx_7_scene34_bin_3=0x4d443b32
  2450. VIP_var_dlc_luma_idx_7_scene34_bin_7=0x78676158
  2451. VIP_var_dlc_luma_idx_7_scene34_bin_11=0xa89b8678
  2452. VIP_var_dlc_luma_idx_7_scene34_bin_15=0xdcd1c5b7
  2453. VIP_var_dlc_luma_idx_7_scene35_bin_3=0x8074675e
  2454. VIP_var_dlc_luma_idx_7_scene35_bin_7=0xc6b8a392
  2455. VIP_var_dlc_luma_idx_7_scene35_bin_11=0x8099b0c6
  2456. VIP_var_dlc_luma_idx_7_scene35_bin_15=0x3d4b5b6b
  2457. VIP_var_dlc_chroma_idx_7_scene0_bin_3=0x80808080
  2458. VIP_var_dlc_chroma_idx_7_scene0_bin_7=0x80808080
  2459. VIP_var_dlc_chroma_idx_7_scene0_bin_11=0x80808080
  2460. VIP_var_dlc_chroma_idx_7_scene0_bin_15=0x80808080
  2461. VIP_var_dlc_chroma_idx_7_scene1_bin_3=0x80808080
  2462. VIP_var_dlc_chroma_idx_7_scene1_bin_7=0x80808080
  2463. VIP_var_dlc_chroma_idx_7_scene1_bin_11=0x80808080
  2464. VIP_var_dlc_chroma_idx_7_scene1_bin_15=0x80808080
  2465. VIP_var_dlc_chroma_idx_7_scene2_bin_3=0x80808080
  2466. VIP_var_dlc_chroma_idx_7_scene2_bin_7=0x80808080
  2467. VIP_var_dlc_chroma_idx_7_scene2_bin_11=0x80808080
  2468. VIP_var_dlc_chroma_idx_7_scene2_bin_15=0x80808080
  2469. VIP_var_dlc_chroma_idx_7_scene3_bin_3=0x80808080
  2470. VIP_var_dlc_chroma_idx_7_scene3_bin_7=0x80808080
  2471. VIP_var_dlc_chroma_idx_7_scene3_bin_11=0x80808080
  2472. VIP_var_dlc_chroma_idx_7_scene3_bin_15=0x80808080
  2473. VIP_var_dlc_chroma_idx_7_scene4_bin_3=0x80808080
  2474. VIP_var_dlc_chroma_idx_7_scene4_bin_7=0x80808080
  2475. VIP_var_dlc_chroma_idx_7_scene4_bin_11=0x80808080
  2476. VIP_var_dlc_chroma_idx_7_scene4_bin_15=0x80808080
  2477. VIP_var_dlc_chroma_idx_7_scene5_bin_3=0x80808080
  2478. VIP_var_dlc_chroma_idx_7_scene5_bin_7=0x80808080
  2479. VIP_var_dlc_chroma_idx_7_scene5_bin_11=0x80808080
  2480. VIP_var_dlc_chroma_idx_7_scene5_bin_15=0x80808080
  2481. VIP_var_dlc_chroma_idx_7_scene6_bin_3=0x80808080
  2482. VIP_var_dlc_chroma_idx_7_scene6_bin_7=0x80808080
  2483. VIP_var_dlc_chroma_idx_7_scene6_bin_11=0x80808080
  2484. VIP_var_dlc_chroma_idx_7_scene6_bin_15=0x80808080
  2485. VIP_var_dlc_chroma_idx_7_scene7_bin_3=0x80808080
  2486. VIP_var_dlc_chroma_idx_7_scene7_bin_7=0x80808080
  2487. VIP_var_dlc_chroma_idx_7_scene7_bin_11=0x80808080
  2488. VIP_var_dlc_chroma_idx_7_scene7_bin_15=0x80808080
  2489. VIP_var_dlc_chroma_idx_7_scene8_bin_3=0x80808080
  2490. VIP_var_dlc_chroma_idx_7_scene8_bin_7=0x80808080
  2491. VIP_var_dlc_chroma_idx_7_scene8_bin_11=0x80808080
  2492. VIP_var_dlc_chroma_idx_7_scene8_bin_15=0x80808080
  2493. VIP_var_dlc_chroma_idx_7_scene9_bin_3=0x80808080
  2494. VIP_var_dlc_chroma_idx_7_scene9_bin_7=0x80808080
  2495. VIP_var_dlc_chroma_idx_7_scene9_bin_11=0x80808080
  2496. VIP_var_dlc_chroma_idx_7_scene9_bin_15=0x80808080
  2497. VIP_var_dlc_chroma_idx_7_scene10_bin_3=0x80808080
  2498. VIP_var_dlc_chroma_idx_7_scene10_bin_7=0x80808080
  2499. VIP_var_dlc_chroma_idx_7_scene10_bin_11=0x80808080
  2500. VIP_var_dlc_chroma_idx_7_scene10_bin_15=0x80808080
  2501. VIP_var_dlc_chroma_idx_7_scene11_bin_3=0x80808080
  2502. VIP_var_dlc_chroma_idx_7_scene11_bin_7=0x80808080
  2503. VIP_var_dlc_chroma_idx_7_scene11_bin_11=0x80808080
  2504. VIP_var_dlc_chroma_idx_7_scene11_bin_15=0x80808080
  2505. VIP_var_dlc_chroma_idx_7_scene12_bin_3=0x80808080
  2506. VIP_var_dlc_chroma_idx_7_scene12_bin_7=0x80808080
  2507. VIP_var_dlc_chroma_idx_7_scene12_bin_11=0x80808080
  2508. VIP_var_dlc_chroma_idx_7_scene12_bin_15=0x80808080
  2509. VIP_var_dlc_chroma_idx_7_scene13_bin_3=0x80808080
  2510. VIP_var_dlc_chroma_idx_7_scene13_bin_7=0x80808080
  2511. VIP_var_dlc_chroma_idx_7_scene13_bin_11=0x80808080
  2512. VIP_var_dlc_chroma_idx_7_scene13_bin_15=0x80808080
  2513. VIP_var_dlc_chroma_idx_7_scene14_bin_3=0x80808080
  2514. VIP_var_dlc_chroma_idx_7_scene14_bin_7=0x80808080
  2515. VIP_var_dlc_chroma_idx_7_scene14_bin_11=0x80808080
  2516. VIP_var_dlc_chroma_idx_7_scene14_bin_15=0x80808080
  2517. VIP_var_dlc_chroma_idx_7_scene15_bin_3=0x80808080
  2518. VIP_var_dlc_chroma_idx_7_scene15_bin_7=0x80808080
  2519. VIP_var_dlc_chroma_idx_7_scene15_bin_11=0x80808080
  2520. VIP_var_dlc_chroma_idx_7_scene15_bin_15=0x80808080
  2521. VIP_var_dlc_chroma_idx_7_scene16_bin_3=0x80808080
  2522. VIP_var_dlc_chroma_idx_7_scene16_bin_7=0x80808080
  2523. VIP_var_dlc_chroma_idx_7_scene16_bin_11=0x80808080
  2524. VIP_var_dlc_chroma_idx_7_scene16_bin_15=0x80808080
  2525. VIP_var_dlc_chroma_idx_7_scene17_bin_3=0x80808080
  2526. VIP_var_dlc_chroma_idx_7_scene17_bin_7=0x80808080
  2527. VIP_var_dlc_chroma_idx_7_scene17_bin_11=0x80808080
  2528. VIP_var_dlc_chroma_idx_7_scene17_bin_15=0x80808080
  2529. VIP_var_dlc_chroma_idx_7_scene18_bin_3=0x80808080
  2530. VIP_var_dlc_chroma_idx_7_scene18_bin_7=0x80808080
  2531. VIP_var_dlc_chroma_idx_7_scene18_bin_11=0x80808080
  2532. VIP_var_dlc_chroma_idx_7_scene18_bin_15=0x80808080
  2533. VIP_var_dlc_chroma_idx_7_scene19_bin_3=0x80808080
  2534. VIP_var_dlc_chroma_idx_7_scene19_bin_7=0x80808080
  2535. VIP_var_dlc_chroma_idx_7_scene19_bin_11=0x80808080
  2536. VIP_var_dlc_chroma_idx_7_scene19_bin_15=0x80808080
  2537. VIP_var_dlc_chroma_idx_7_scene20_bin_3=0x80808080
  2538. VIP_var_dlc_chroma_idx_7_scene20_bin_7=0x80808080
  2539. VIP_var_dlc_chroma_idx_7_scene20_bin_11=0x80808080
  2540. VIP_var_dlc_chroma_idx_7_scene20_bin_15=0x80808080
  2541. VIP_var_dlc_chroma_idx_7_scene21_bin_3=0x80808080
  2542. VIP_var_dlc_chroma_idx_7_scene21_bin_7=0x80808080
  2543. VIP_var_dlc_chroma_idx_7_scene21_bin_11=0x80808080
  2544. VIP_var_dlc_chroma_idx_7_scene21_bin_15=0x80808080
  2545. VIP_var_dlc_chroma_idx_7_scene22_bin_3=0x80808080
  2546. VIP_var_dlc_chroma_idx_7_scene22_bin_7=0x80808080
  2547. VIP_var_dlc_chroma_idx_7_scene22_bin_11=0x80808080
  2548. VIP_var_dlc_chroma_idx_7_scene22_bin_15=0x80808080
  2549. VIP_var_dlc_chroma_idx_7_scene23_bin_3=0x80808080
  2550. VIP_var_dlc_chroma_idx_7_scene23_bin_7=0x80808080
  2551. VIP_var_dlc_chroma_idx_7_scene23_bin_11=0x80808080
  2552. VIP_var_dlc_chroma_idx_7_scene23_bin_15=0x80808080
  2553. VIP_var_dlc_chroma_idx_7_scene24_bin_3=0x80808080
  2554. VIP_var_dlc_chroma_idx_7_scene24_bin_7=0x80808080
  2555. VIP_var_dlc_chroma_idx_7_scene24_bin_11=0x80808080
  2556. VIP_var_dlc_chroma_idx_7_scene24_bin_15=0x80808080
  2557. VIP_var_dlc_chroma_idx_7_scene25_bin_3=0x80808080
  2558. VIP_var_dlc_chroma_idx_7_scene25_bin_7=0x80808080
  2559. VIP_var_dlc_chroma_idx_7_scene25_bin_11=0x80808080
  2560. VIP_var_dlc_chroma_idx_7_scene25_bin_15=0x80808080
  2561. VIP_var_dlc_chroma_idx_7_scene26_bin_3=0x80808080
  2562. VIP_var_dlc_chroma_idx_7_scene26_bin_7=0x80808080
  2563. VIP_var_dlc_chroma_idx_7_scene26_bin_11=0x80808080
  2564. VIP_var_dlc_chroma_idx_7_scene26_bin_15=0x80808080
  2565. VIP_var_dlc_chroma_idx_7_scene27_bin_3=0x80808080
  2566. VIP_var_dlc_chroma_idx_7_scene27_bin_7=0x80808080
  2567. VIP_var_dlc_chroma_idx_7_scene27_bin_11=0x80808080
  2568. VIP_var_dlc_chroma_idx_7_scene27_bin_15=0x80808080
  2569. VIP_var_dlc_chroma_idx_7_scene28_bin_3=0x80808080
  2570. VIP_var_dlc_chroma_idx_7_scene28_bin_7=0x80808080
  2571. VIP_var_dlc_chroma_idx_7_scene28_bin_11=0x80808080
  2572. VIP_var_dlc_chroma_idx_7_scene28_bin_15=0x80808080
  2573. VIP_var_dlc_chroma_idx_7_scene29_bin_3=0x80808080
  2574. VIP_var_dlc_chroma_idx_7_scene29_bin_7=0x80808080
  2575. VIP_var_dlc_chroma_idx_7_scene29_bin_11=0x80808080
  2576. VIP_var_dlc_chroma_idx_7_scene29_bin_15=0x80808080
  2577. VIP_var_dlc_chroma_idx_7_scene30_bin_3=0x80808080
  2578. VIP_var_dlc_chroma_idx_7_scene30_bin_7=0x80808080
  2579. VIP_var_dlc_chroma_idx_7_scene30_bin_11=0x80808080
  2580. VIP_var_dlc_chroma_idx_7_scene30_bin_15=0x80808080
  2581. VIP_var_dlc_chroma_idx_7_scene31_bin_3=0x80808080
  2582. VIP_var_dlc_chroma_idx_7_scene31_bin_7=0x80808080
  2583. VIP_var_dlc_chroma_idx_7_scene31_bin_11=0x80808080
  2584. VIP_var_dlc_chroma_idx_7_scene31_bin_15=0x80808080
  2585. VIP_var_dlc_chroma_idx_7_scene32_bin_3=0x80808080
  2586. VIP_var_dlc_chroma_idx_7_scene32_bin_7=0x80808080
  2587. VIP_var_dlc_chroma_idx_7_scene32_bin_11=0x80808080
  2588. VIP_var_dlc_chroma_idx_7_scene32_bin_15=0x80808080
  2589. VIP_var_dlc_chroma_idx_7_scene33_bin_3=0x80808080
  2590. VIP_var_dlc_chroma_idx_7_scene33_bin_7=0x80808080
  2591. VIP_var_dlc_chroma_idx_7_scene33_bin_11=0x80808080
  2592. VIP_var_dlc_chroma_idx_7_scene33_bin_15=0x80808080
  2593. VIP_var_dlc_chroma_idx_7_scene34_bin_3=0x80808080
  2594. VIP_var_dlc_chroma_idx_7_scene34_bin_7=0x80808080
  2595. VIP_var_dlc_chroma_idx_7_scene34_bin_11=0x80808080
  2596. VIP_var_dlc_chroma_idx_7_scene34_bin_15=0x80808080
  2597. VIP_var_dlc_chroma_idx_7_scene35_bin_3=0x80808080
  2598. VIP_var_dlc_chroma_idx_7_scene35_bin_7=0x80808080
  2599. VIP_var_dlc_chroma_idx_7_scene35_bin_11=0x80808080
  2600. VIP_var_dlc_chroma_idx_7_scene35_bin_15=0x80808080
  2601. VIP_var_dlc_idx7_DLC_En=1
  2602. VIP_var_dlc_idx7_Var_Cond_En=95
  2603. VIP_var_dlc_idx7_Ratio[0]=358
  2604. VIP_var_dlc_idx7_Ratio[1]=154
  2605. VIP_var_dlc_idx7_Ratio[2]=307
  2606. VIP_var_dlc_idx7_Ratio[3]=205
  2607. VIP_var_dlc_idx7_Ratio[4]=282
  2608. VIP_var_dlc_idx7_Ratio[5]=282
  2609. VIP_var_dlc_idx7_Factor[0]=180
  2610. VIP_var_dlc_idx7_Factor[1]=175
  2611. VIP_var_dlc_idx7_Factor[2]=200
  2612. VIP_var_dlc_idx7_Factor[3]=512
  2613. VIP_var_dlc_idx7_Factor[4]=512
  2614. VIP_var_dlc_idx7_Alpha=254
  2615. VIP_var_dlc_idx7_static_alpha[0]=90
  2616. VIP_var_dlc_idx7_static_alpha[1]=128
  2617. VIP_var_dlc_idx7_static_alpha[2]=128
  2618. VIP_var_dlc_idx7_static_alpha[3]=90
  2619. VIP_var_dlc_idx7_contrast_lv=255
  2620. VIP_var_dlc_idx7_chroma_lv=255
  2621. VIP_TABLE_MAGIC_NUMBER_9=0xff
  2622. VIP_var_noise_reduction_src_0_3=0x20303
  2623. VIP_var_noise_reduction_src_4_7=0x5070000
  2624. VIP_var_noise_reduction_src_8_11=0x1060506
  2625. VIP_var_noise_reduction_src_12_15=0x40404
  2626. VIP_var_noise_reduction_src_16_19=0x0
  2627. VIP_var_luma_tnr_coring_idx_0_weak=0
  2628. VIP_var_luma_tnr_coring_idx_0_medium=0
  2629. VIP_var_luma_tnr_coring_idx_0_strong=0
  2630. VIP_var_luma_tnr_strength_idx_0_weak=6
  2631. VIP_var_luma_tnr_strength_idx_0_medium=8
  2632. VIP_var_luma_tnr_strength_idx_0_strong=11
  2633. VIP_var_chroma_tnr_coring_idx_0_weak=0
  2634. VIP_var_chroma_tnr_coring_idx_0_medium=0
  2635. VIP_var_chroma_tnr_coring_idx_0_strong=0
  2636. VIP_var_chroma_tnr_strength_idx_0_weak=4
  2637. VIP_var_chroma_tnr_strength_idx_0_medium=6
  2638. VIP_var_chroma_tnr_strength_idx_0_strong=8
  2639. VIP_var_luma_snr1_coring_idx_0_weak=0
  2640. VIP_var_luma_snr1_coring_idx_0_medium=0
  2641. VIP_var_luma_snr1_coring_idx_0_strong=0
  2642. VIP_var_luma_snr1_strength_idx_0_weak=2
  2643. VIP_var_luma_snr1_strength_idx_0_medium=2
  2644. VIP_var_luma_snr1_strength_idx_0_strong=10
  2645. VIP_var_luma_snr2_coring_idx_0_weak=0
  2646. VIP_var_luma_snr2_coring_idx_0_medium=0
  2647. VIP_var_luma_snr2_coring_idx_0_strong=0
  2648. VIP_var_luma_snr2_strength_idx_0_weak=0
  2649. VIP_var_luma_snr2_strength_idx_0_medium=0
  2650. VIP_var_luma_snr2_strength_idx_0_strong=0
  2651. VIP_var_chroma_snr_coring_idx_0_weak=0
  2652. VIP_var_chroma_snr_coring_idx_0_medium=0
  2653. VIP_var_chroma_snr_coring_idx_0_strong=0
  2654. VIP_var_chroma_snr_strength_idx_0_weak=2
  2655. VIP_var_chroma_snr_strength_idx_0_medium=8
  2656. VIP_var_chroma_snr_strength_idx_0_strong=10
  2657. VIP_var_block_nr_coring_idx_0_weak=5
  2658. VIP_var_block_nr_coring_idx_0_medium=5
  2659. VIP_var_block_nr_coring_idx_0_strong=5
  2660. VIP_var_block_nr_strength_idx_0_weak=5
  2661. VIP_var_block_nr_strength_idx_0_medium=5
  2662. VIP_var_block_nr_strength_idx_0_strong=5
  2663. VIP_var_mosquito_nr_coring_idx_0_weak=5
  2664. VIP_var_mosquito_nr_coring_idx_0_medium=5
  2665. VIP_var_mosquito_nr_coring_idx_0_strong=5
  2666. VIP_var_mosquito_nr_strength_idx_0_weak=0
  2667. VIP_var_mosquito_nr_strength_idx_0_medium=0
  2668. VIP_var_mosquito_nr_strength_idx_0_strong=0
  2669. VIP_var_tnr_ultra_low_ctl_idx_0=0
  2670. VIP_var_snr_ultra_low_ctl_idx_0=0
  2671. VIP_var_TNR_map_enable_idx_0=0x1
  2672. VIP_var_TNR_map_thr0_idx_0_weak=10
  2673. VIP_var_TNR_map_thr0_idx_0_medium=17
  2674. VIP_var_TNR_map_thr0_idx_0_strong=56
  2675. VIP_var_TNR_map_thr1_idx_0_weak=22
  2676. VIP_var_TNR_map_thr1_idx_0_medium=33
  2677. VIP_var_TNR_map_thr1_idx_0_strong=92
  2678. VIP_var_TNR_map_thr2_idx_0_weak=38
  2679. VIP_var_TNR_map_thr2_idx_0_medium=71
  2680. VIP_var_TNR_map_thr2_idx_0_strong=112
  2681. VIP_var_TNR_map_thr3_idx_0_weak=56
  2682. VIP_var_TNR_map_thr3_idx_0_medium=94
  2683. VIP_var_TNR_map_thr3_idx_0_strong=129
  2684. VIP_var_TNR_map_thr4_idx_0_weak=88
  2685. VIP_var_TNR_map_thr4_idx_0_medium=115
  2686. VIP_var_TNR_map_thr4_idx_0_strong=143
  2687. VIP_var_TNR_map_slp0_idx_0_weak=83
  2688. VIP_var_TNR_map_slp0_idx_0_medium=37
  2689. VIP_var_TNR_map_slp0_idx_0_strong=9
  2690. VIP_var_TNR_map_slp1_idx_0_weak=69
  2691. VIP_var_TNR_map_slp1_idx_0_medium=42
  2692. VIP_var_TNR_map_slp1_idx_0_strong=24
  2693. VIP_var_TNR_map_slp2_idx_0_weak=36
  2694. VIP_var_TNR_map_slp2_idx_0_medium=60
  2695. VIP_var_TNR_map_slp2_idx_0_strong=38
  2696. VIP_var_TNR_map_slp3_idx_0_weak=26
  2697. VIP_var_TNR_map_slp3_idx_0_medium=29
  2698. VIP_var_TNR_map_slp3_idx_0_strong=50
  2699. VIP_var_TNR_map_slp4_idx_0_weak=48
  2700. VIP_var_TNR_map_slp4_idx_0_medium=25
  2701. VIP_var_TNR_map_slp4_idx_0_strong=54
  2702. VIP_var_TNR_map_slp5_idx_0_weak=51
  2703. VIP_var_TNR_map_slp5_idx_0_medium=97
  2704. VIP_var_TNR_map_slp5_idx_0_strong=71
  2705. VIP_var_TNR_map_fac0_idx_0_weak=42
  2706. VIP_var_TNR_map_fac0_idx_0_medium=0
  2707. VIP_var_TNR_map_fac0_idx_0_strong=0
  2708. VIP_var_TNR_map_fac1_idx_0_weak=68
  2709. VIP_var_TNR_map_fac1_idx_0_medium=20
  2710. VIP_var_TNR_map_fac1_idx_0_strong=17
  2711. VIP_var_TNR_map_fac2_idx_0_weak=94
  2712. VIP_var_TNR_map_fac2_idx_0_medium=41
  2713. VIP_var_TNR_map_fac2_idx_0_strong=45
  2714. VIP_var_TNR_map_fac3_idx_0_weak=112
  2715. VIP_var_TNR_map_fac3_idx_0_medium=113
  2716. VIP_var_TNR_map_fac3_idx_0_strong=69
  2717. VIP_var_TNR_map_fac4_idx_0_weak=127
  2718. VIP_var_TNR_map_fac4_idx_0_medium=134
  2719. VIP_var_TNR_map_fac4_idx_0_strong=96
  2720. VIP_var_TNR_map_fac5_idx_0_weak=175
  2721. VIP_var_TNR_map_fac5_idx_0_medium=151
  2722. VIP_var_TNR_map_fac5_idx_0_strong=120
  2723. VIP_var_TNRSNR_map_enable_idx_0=0x1
  2724. VIP_var_TNRSNR_map_thr0_idx_0_weak=16
  2725. VIP_var_TNRSNR_map_thr0_idx_0_medium=31
  2726. VIP_var_TNRSNR_map_thr0_idx_0_strong=49
  2727. VIP_var_TNRSNR_map_thr1_idx_0_weak=32
  2728. VIP_var_TNRSNR_map_thr1_idx_0_medium=60
  2729. VIP_var_TNRSNR_map_thr1_idx_0_strong=73
  2730. VIP_var_TNRSNR_map_thr2_idx_0_weak=48
  2731. VIP_var_TNRSNR_map_thr2_idx_0_medium=83
  2732. VIP_var_TNRSNR_map_thr2_idx_0_strong=93
  2733. VIP_var_TNRSNR_map_thr3_idx_0_weak=64
  2734. VIP_var_TNRSNR_map_thr3_idx_0_medium=106
  2735. VIP_var_TNRSNR_map_thr3_idx_0_strong=122
  2736. VIP_var_TNRSNR_map_thr4_idx_0_weak=80
  2737. VIP_var_TNRSNR_map_thr4_idx_0_medium=129
  2738. VIP_var_TNRSNR_map_thr4_idx_0_strong=140
  2739. VIP_var_TNRSNR_map_slp0_idx_0_weak=88
  2740. VIP_var_TNRSNR_map_slp0_idx_0_medium=10
  2741. VIP_var_TNRSNR_map_slp0_idx_0_strong=8
  2742. VIP_var_TNRSNR_map_slp1_idx_0_weak=120
  2743. VIP_var_TNRSNR_map_slp1_idx_0_medium=19
  2744. VIP_var_TNRSNR_map_slp1_idx_0_strong=14
  2745. VIP_var_TNRSNR_map_slp2_idx_0_weak=120
  2746. VIP_var_TNRSNR_map_slp2_idx_0_medium=16
  2747. VIP_var_TNRSNR_map_slp2_idx_0_strong=14
  2748. VIP_var_TNRSNR_map_slp3_idx_0_weak=88
  2749. VIP_var_TNRSNR_map_slp3_idx_0_medium=19
  2750. VIP_var_TNRSNR_map_slp3_idx_0_strong=25
  2751. VIP_var_TNRSNR_map_slp4_idx_0_weak=64
  2752. VIP_var_TNRSNR_map_slp4_idx_0_medium=25
  2753. VIP_var_TNRSNR_map_slp4_idx_0_strong=17
  2754. VIP_var_TNRSNR_map_slp5_idx_0_weak=96
  2755. VIP_var_TNRSNR_map_slp5_idx_0_medium=14
  2756. VIP_var_TNRSNR_map_slp5_idx_0_strong=14
  2757. VIP_var_TNRSNR_map_fac0_idx_0_weak=8
  2758. VIP_var_TNRSNR_map_fac0_idx_0_medium=0
  2759. VIP_var_TNRSNR_map_fac0_idx_0_strong=0
  2760. VIP_var_TNRSNR_map_fac1_idx_0_weak=19
  2761. VIP_var_TNRSNR_map_fac1_idx_0_medium=10
  2762. VIP_var_TNRSNR_map_fac1_idx_0_strong=13
  2763. VIP_var_TNRSNR_map_fac2_idx_0_weak=34
  2764. VIP_var_TNRSNR_map_fac2_idx_0_medium=28
  2765. VIP_var_TNRSNR_map_fac2_idx_0_strong=24
  2766. VIP_var_TNRSNR_map_fac3_idx_0_weak=49
  2767. VIP_var_TNRSNR_map_fac3_idx_0_medium=40
  2768. VIP_var_TNRSNR_map_fac3_idx_0_strong=33
  2769. VIP_var_TNRSNR_map_fac4_idx_0_weak=60
  2770. VIP_var_TNRSNR_map_fac4_idx_0_medium=54
  2771. VIP_var_TNRSNR_map_fac4_idx_0_strong=56
  2772. VIP_var_TNRSNR_map_fac5_idx_0_weak=68
  2773. VIP_var_TNRSNR_map_fac5_idx_0_medium=72
  2774. VIP_var_TNRSNR_map_fac5_idx_0_strong=66
  2775. VIP_var_TNRC_map_enable_idx_0=0x1
  2776. VIP_var_TNRC_map_thr0_idx_0_weak=23
  2777. VIP_var_TNRC_map_thr0_idx_0_medium=23
  2778. VIP_var_TNRC_map_thr0_idx_0_strong=23
  2779. VIP_var_TNRC_map_thr1_idx_0_weak=49
  2780. VIP_var_TNRC_map_thr1_idx_0_medium=49
  2781. VIP_var_TNRC_map_thr1_idx_0_strong=49
  2782. VIP_var_TNRC_map_thr2_idx_0_weak=65
  2783. VIP_var_TNRC_map_thr2_idx_0_medium=65
  2784. VIP_var_TNRC_map_thr2_idx_0_strong=65
  2785. VIP_var_TNRC_map_thr3_idx_0_weak=77
  2786. VIP_var_TNRC_map_thr3_idx_0_medium=77
  2787. VIP_var_TNRC_map_thr3_idx_0_strong=77
  2788. VIP_var_TNRC_map_thr4_idx_0_weak=87
  2789. VIP_var_TNRC_map_thr4_idx_0_medium=87
  2790. VIP_var_TNRC_map_thr4_idx_0_strong=87
  2791. VIP_var_TNRC_map_slp0_idx_0_weak=47
  2792. VIP_var_TNRC_map_slp0_idx_0_medium=47
  2793. VIP_var_TNRC_map_slp0_idx_0_strong=47
  2794. VIP_var_TNRC_map_slp1_idx_0_weak=59
  2795. VIP_var_TNRC_map_slp1_idx_0_medium=59
  2796. VIP_var_TNRC_map_slp1_idx_0_strong=59
  2797. VIP_var_TNRC_map_slp2_idx_0_weak=88
  2798. VIP_var_TNRC_map_slp2_idx_0_medium=88
  2799. VIP_var_TNRC_map_slp2_idx_0_strong=88
  2800. VIP_var_TNRC_map_slp3_idx_0_weak=101
  2801. VIP_var_TNRC_map_slp3_idx_0_medium=101
  2802. VIP_var_TNRC_map_slp3_idx_0_strong=101
  2803. VIP_var_TNRC_map_slp4_idx_0_weak=147
  2804. VIP_var_TNRC_map_slp4_idx_0_medium=147
  2805. VIP_var_TNRC_map_slp4_idx_0_strong=147
  2806. VIP_var_TNRC_map_slp5_idx_0_weak=168
  2807. VIP_var_TNRC_map_slp5_idx_0_medium=168
  2808. VIP_var_TNRC_map_slp5_idx_0_strong=168
  2809. VIP_var_TNRC_map_fac0_idx_0_weak=0
  2810. VIP_var_TNRC_map_fac0_idx_0_medium=0
  2811. VIP_var_TNRC_map_fac0_idx_0_strong=0
  2812. VIP_var_TNRC_map_fac1_idx_0_weak=17
  2813. VIP_var_TNRC_map_fac1_idx_0_medium=17
  2814. VIP_var_TNRC_map_fac1_idx_0_strong=17
  2815. VIP_var_TNRC_map_fac2_idx_0_weak=41
  2816. VIP_var_TNRC_map_fac2_idx_0_medium=41
  2817. VIP_var_TNRC_map_fac2_idx_0_strong=41
  2818. VIP_var_TNRC_map_fac3_idx_0_weak=63
  2819. VIP_var_TNRC_map_fac3_idx_0_medium=63
  2820. VIP_var_TNRC_map_fac3_idx_0_strong=63
  2821. VIP_var_TNRC_map_fac4_idx_0_weak=82
  2822. VIP_var_TNRC_map_fac4_idx_0_medium=82
  2823. VIP_var_TNRC_map_fac4_idx_0_strong=82
  2824. VIP_var_TNRC_map_fac5_idx_0_weak=105
  2825. VIP_var_TNRC_map_fac5_idx_0_medium=105
  2826. VIP_var_TNRC_map_fac5_idx_0_strong=105
  2827. VIP_var_TNRZ_map_enable_idx_0=0x1
  2828. VIP_var_TNRZ_map_thr0_idx_0_weak=17
  2829. VIP_var_TNRZ_map_thr0_idx_0_medium=21
  2830. VIP_var_TNRZ_map_thr0_idx_0_strong=19
  2831. VIP_var_TNRZ_map_thr1_idx_0_weak=32
  2832. VIP_var_TNRZ_map_thr1_idx_0_medium=35
  2833. VIP_var_TNRZ_map_thr1_idx_0_strong=34
  2834. VIP_var_TNRZ_map_thr2_idx_0_weak=45
  2835. VIP_var_TNRZ_map_thr2_idx_0_medium=49
  2836. VIP_var_TNRZ_map_thr2_idx_0_strong=46
  2837. VIP_var_TNRZ_map_thr3_idx_0_weak=60
  2838. VIP_var_TNRZ_map_thr3_idx_0_medium=62
  2839. VIP_var_TNRZ_map_thr3_idx_0_strong=59
  2840. VIP_var_TNRZ_map_thr4_idx_0_weak=78
  2841. VIP_var_TNRZ_map_thr4_idx_0_medium=85
  2842. VIP_var_TNRZ_map_thr4_idx_0_strong=79
  2843. VIP_var_TNRZ_map_slp0_idx_0_weak=18
  2844. VIP_var_TNRZ_map_slp0_idx_0_medium=18
  2845. VIP_var_TNRZ_map_slp0_idx_0_strong=20
  2846. VIP_var_TNRZ_map_slp1_idx_0_weak=27
  2847. VIP_var_TNRZ_map_slp1_idx_0_medium=34
  2848. VIP_var_TNRZ_map_slp1_idx_0_strong=40
  2849. VIP_var_TNRZ_map_slp2_idx_0_weak=24
  2850. VIP_var_TNRZ_map_slp2_idx_0_medium=27
  2851. VIP_var_TNRZ_map_slp2_idx_0_strong=66
  2852. VIP_var_TNRZ_map_slp3_idx_0_weak=29
  2853. VIP_var_TNRZ_map_slp3_idx_0_medium=19
  2854. VIP_var_TNRZ_map_slp3_idx_0_strong=44
  2855. VIP_var_TNRZ_map_slp4_idx_0_weak=42
  2856. VIP_var_TNRZ_map_slp4_idx_0_medium=59
  2857. VIP_var_TNRZ_map_slp4_idx_0_strong=17
  2858. VIP_var_TNRZ_map_slp5_idx_0_weak=94
  2859. VIP_var_TNRZ_map_slp5_idx_0_medium=71
  2860. VIP_var_TNRZ_map_slp5_idx_0_strong=94
  2861. VIP_var_TNRZ_map_fac0_idx_0_weak=90
  2862. VIP_var_TNRZ_map_fac0_idx_0_medium=80
  2863. VIP_var_TNRZ_map_fac0_idx_0_strong=40
  2864. VIP_var_TNRZ_map_fac1_idx_0_weak=100
  2865. VIP_var_TNRZ_map_fac1_idx_0_medium=92
  2866. VIP_var_TNRZ_map_fac1_idx_0_strong=52
  2867. VIP_var_TNRZ_map_fac2_idx_0_weak=113
  2868. VIP_var_TNRZ_map_fac2_idx_0_medium=107
  2869. VIP_var_TNRZ_map_fac2_idx_0_strong=71
  2870. VIP_var_TNRZ_map_fac3_idx_0_weak=123
  2871. VIP_var_TNRZ_map_fac3_idx_0_medium=119
  2872. VIP_var_TNRZ_map_fac3_idx_0_strong=96
  2873. VIP_var_TNRZ_map_fac4_idx_0_weak=137
  2874. VIP_var_TNRZ_map_fac4_idx_0_medium=127
  2875. VIP_var_TNRZ_map_fac4_idx_0_strong=114
  2876. VIP_var_TNRZ_map_fac5_idx_0_weak=161
  2877. VIP_var_TNRZ_map_fac5_idx_0_medium=170
  2878. VIP_var_TNRZ_map_fac5_idx_0_strong=125
  2879. VIP_var_TNRZC_map_enable_idx_0=0x1
  2880. VIP_var_TNRZC_map_thr0_idx_0_weak=12
  2881. VIP_var_TNRZC_map_thr0_idx_0_medium=12
  2882. VIP_var_TNRZC_map_thr0_idx_0_strong=12
  2883. VIP_var_TNRZC_map_thr1_idx_0_weak=24
  2884. VIP_var_TNRZC_map_thr1_idx_0_medium=24
  2885. VIP_var_TNRZC_map_thr1_idx_0_strong=24
  2886. VIP_var_TNRZC_map_thr2_idx_0_weak=32
  2887. VIP_var_TNRZC_map_thr2_idx_0_medium=32
  2888. VIP_var_TNRZC_map_thr2_idx_0_strong=32
  2889. VIP_var_TNRZC_map_thr3_idx_0_weak=48
  2890. VIP_var_TNRZC_map_thr3_idx_0_medium=48
  2891. VIP_var_TNRZC_map_thr3_idx_0_strong=48
  2892. VIP_var_TNRZC_map_thr4_idx_0_weak=64
  2893. VIP_var_TNRZC_map_thr4_idx_0_medium=64
  2894. VIP_var_TNRZC_map_thr4_idx_0_strong=64
  2895. VIP_var_TNRZC_map_slp0_idx_0_weak=288
  2896. VIP_var_TNRZC_map_slp0_idx_0_medium=288
  2897. VIP_var_TNRZC_map_slp0_idx_0_strong=288
  2898. VIP_var_TNRZC_map_slp1_idx_0_weak=138
  2899. VIP_var_TNRZC_map_slp1_idx_0_medium=138
  2900. VIP_var_TNRZC_map_slp1_idx_0_strong=138
  2901. VIP_var_TNRZC_map_slp2_idx_0_weak=240
  2902. VIP_var_TNRZC_map_slp2_idx_0_medium=240
  2903. VIP_var_TNRZC_map_slp2_idx_0_strong=240
  2904. VIP_var_TNRZC_map_slp3_idx_0_weak=104
  2905. VIP_var_TNRZC_map_slp3_idx_0_medium=104
  2906. VIP_var_TNRZC_map_slp3_idx_0_strong=104
  2907. VIP_var_TNRZC_map_slp4_idx_0_weak=72
  2908. VIP_var_TNRZC_map_slp4_idx_0_medium=72
  2909. VIP_var_TNRZC_map_slp4_idx_0_strong=72
  2910. VIP_var_TNRZC_map_slp5_idx_0_weak=92
  2911. VIP_var_TNRZC_map_slp5_idx_0_medium=92
  2912. VIP_var_TNRZC_map_slp5_idx_0_strong=92
  2913. VIP_var_TNRZC_map_fac0_idx_0_weak=0
  2914. VIP_var_TNRZC_map_fac0_idx_0_medium=0
  2915. VIP_var_TNRZC_map_fac0_idx_0_strong=0
  2916. VIP_var_TNRZC_map_fac1_idx_0_weak=27
  2917. VIP_var_TNRZC_map_fac1_idx_0_medium=27
  2918. VIP_var_TNRZC_map_fac1_idx_0_strong=27
  2919. VIP_var_TNRZC_map_fac2_idx_0_weak=40
  2920. VIP_var_TNRZC_map_fac2_idx_0_medium=40
  2921. VIP_var_TNRZC_map_fac2_idx_0_strong=40
  2922. VIP_var_TNRZC_map_fac3_idx_0_weak=55
  2923. VIP_var_TNRZC_map_fac3_idx_0_medium=55
  2924. VIP_var_TNRZC_map_fac3_idx_0_strong=55
  2925. VIP_var_TNRZC_map_fac4_idx_0_weak=68
  2926. VIP_var_TNRZC_map_fac4_idx_0_medium=68
  2927. VIP_var_TNRZC_map_fac4_idx_0_strong=68
  2928. VIP_var_TNRZC_map_fac5_idx_0_weak=77
  2929. VIP_var_TNRZC_map_fac5_idx_0_medium=77
  2930. VIP_var_TNRZC_map_fac5_idx_0_strong=77
  2931. VIP_var_luma_tnr_coring_idx_1_weak=0
  2932. VIP_var_luma_tnr_coring_idx_1_medium=0
  2933. VIP_var_luma_tnr_coring_idx_1_strong=0
  2934. VIP_var_luma_tnr_strength_idx_1_weak=6
  2935. VIP_var_luma_tnr_strength_idx_1_medium=8
  2936. VIP_var_luma_tnr_strength_idx_1_strong=11
  2937. VIP_var_chroma_tnr_coring_idx_1_weak=0
  2938. VIP_var_chroma_tnr_coring_idx_1_medium=0
  2939. VIP_var_chroma_tnr_coring_idx_1_strong=0
  2940. VIP_var_chroma_tnr_strength_idx_1_weak=4
  2941. VIP_var_chroma_tnr_strength_idx_1_medium=6
  2942. VIP_var_chroma_tnr_strength_idx_1_strong=8
  2943. VIP_var_luma_snr1_coring_idx_1_weak=0
  2944. VIP_var_luma_snr1_coring_idx_1_medium=0
  2945. VIP_var_luma_snr1_coring_idx_1_strong=0
  2946. VIP_var_luma_snr1_strength_idx_1_weak=2
  2947. VIP_var_luma_snr1_strength_idx_1_medium=6
  2948. VIP_var_luma_snr1_strength_idx_1_strong=10
  2949. VIP_var_luma_snr2_coring_idx_1_weak=0
  2950. VIP_var_luma_snr2_coring_idx_1_medium=0
  2951. VIP_var_luma_snr2_coring_idx_1_strong=0
  2952. VIP_var_luma_snr2_strength_idx_1_weak=0
  2953. VIP_var_luma_snr2_strength_idx_1_medium=0
  2954. VIP_var_luma_snr2_strength_idx_1_strong=0
  2955. VIP_var_chroma_snr_coring_idx_1_weak=0
  2956. VIP_var_chroma_snr_coring_idx_1_medium=0
  2957. VIP_var_chroma_snr_coring_idx_1_strong=0
  2958. VIP_var_chroma_snr_strength_idx_1_weak=2
  2959. VIP_var_chroma_snr_strength_idx_1_medium=8
  2960. VIP_var_chroma_snr_strength_idx_1_strong=10
  2961. VIP_var_block_nr_coring_idx_1_weak=5
  2962. VIP_var_block_nr_coring_idx_1_medium=5
  2963. VIP_var_block_nr_coring_idx_1_strong=5
  2964. VIP_var_block_nr_strength_idx_1_weak=5
  2965. VIP_var_block_nr_strength_idx_1_medium=5
  2966. VIP_var_block_nr_strength_idx_1_strong=5
  2967. VIP_var_mosquito_nr_coring_idx_1_weak=5
  2968. VIP_var_mosquito_nr_coring_idx_1_medium=5
  2969. VIP_var_mosquito_nr_coring_idx_1_strong=5
  2970. VIP_var_mosquito_nr_strength_idx_1_weak=0
  2971. VIP_var_mosquito_nr_strength_idx_1_medium=0
  2972. VIP_var_mosquito_nr_strength_idx_1_strong=0
  2973. VIP_var_tnr_ultra_low_ctl_idx_1=0
  2974. VIP_var_snr_ultra_low_ctl_idx_1=0
  2975. VIP_var_TNR_map_enable_idx_1=0x1
  2976. VIP_var_TNR_map_thr0_idx_1_weak=10
  2977. VIP_var_TNR_map_thr0_idx_1_medium=10
  2978. VIP_var_TNR_map_thr0_idx_1_strong=12
  2979. VIP_var_TNR_map_thr1_idx_1_weak=22
  2980. VIP_var_TNR_map_thr1_idx_1_medium=20
  2981. VIP_var_TNR_map_thr1_idx_1_strong=24
  2982. VIP_var_TNR_map_thr2_idx_1_weak=38
  2983. VIP_var_TNR_map_thr2_idx_1_medium=30
  2984. VIP_var_TNR_map_thr2_idx_1_strong=35
  2985. VIP_var_TNR_map_thr3_idx_1_weak=56
  2986. VIP_var_TNR_map_thr3_idx_1_medium=50
  2987. VIP_var_TNR_map_thr3_idx_1_strong=52
  2988. VIP_var_TNR_map_thr4_idx_1_weak=88
  2989. VIP_var_TNR_map_thr4_idx_1_medium=81
  2990. VIP_var_TNR_map_thr4_idx_1_strong=85
  2991. VIP_var_TNR_map_slp0_idx_1_weak=83
  2992. VIP_var_TNR_map_slp0_idx_1_medium=80
  2993. VIP_var_TNR_map_slp0_idx_1_strong=104
  2994. VIP_var_TNR_map_slp1_idx_1_weak=69
  2995. VIP_var_TNR_map_slp1_idx_1_medium=73
  2996. VIP_var_TNR_map_slp1_idx_1_strong=88
  2997. VIP_var_TNR_map_slp2_idx_1_weak=36
  2998. VIP_var_TNR_map_slp2_idx_1_medium=57
  2999. VIP_var_TNR_map_slp2_idx_1_strong=52
  3000. VIP_var_TNR_map_slp3_idx_1_weak=26
  3001. VIP_var_TNR_map_slp3_idx_1_medium=30
  3002. VIP_var_TNR_map_slp3_idx_1_strong=33
  3003. VIP_var_TNR_map_slp4_idx_1_weak=48
  3004. VIP_var_TNR_map_slp4_idx_1_medium=34
  3005. VIP_var_TNR_map_slp4_idx_1_strong=30
  3006. VIP_var_TNR_map_slp5_idx_1_weak=51
  3007. VIP_var_TNR_map_slp5_idx_1_medium=51
  3008. VIP_var_TNR_map_slp5_idx_1_strong=58
  3009. VIP_var_TNR_map_fac0_idx_1_weak=42
  3010. VIP_var_TNR_map_fac0_idx_1_medium=28
  3011. VIP_var_TNR_map_fac0_idx_1_strong=0
  3012. VIP_var_TNR_map_fac1_idx_1_weak=68
  3013. VIP_var_TNR_map_fac1_idx_1_medium=53
  3014. VIP_var_TNR_map_fac1_idx_1_strong=39
  3015. VIP_var_TNR_map_fac2_idx_1_weak=94
  3016. VIP_var_TNR_map_fac2_idx_1_medium=76
  3017. VIP_var_TNR_map_fac2_idx_1_strong=72
  3018. VIP_var_TNR_map_fac3_idx_1_weak=112
  3019. VIP_var_TNR_map_fac3_idx_1_medium=94
  3020. VIP_var_TNR_map_fac3_idx_1_strong=90
  3021. VIP_var_TNR_map_fac4_idx_1_weak=127
  3022. VIP_var_TNR_map_fac4_idx_1_medium=113
  3023. VIP_var_TNR_map_fac4_idx_1_strong=108
  3024. VIP_var_TNR_map_fac5_idx_1_weak=175
  3025. VIP_var_TNR_map_fac5_idx_1_medium=146
  3026. VIP_var_TNR_map_fac5_idx_1_strong=139
  3027. VIP_var_TNRSNR_map_enable_idx_1=0x1
  3028. VIP_var_TNRSNR_map_thr0_idx_1_weak=16
  3029. VIP_var_TNRSNR_map_thr0_idx_1_medium=16
  3030. VIP_var_TNRSNR_map_thr0_idx_1_strong=16
  3031. VIP_var_TNRSNR_map_thr1_idx_1_weak=32
  3032. VIP_var_TNRSNR_map_thr1_idx_1_medium=32
  3033. VIP_var_TNRSNR_map_thr1_idx_1_strong=32
  3034. VIP_var_TNRSNR_map_thr2_idx_1_weak=48
  3035. VIP_var_TNRSNR_map_thr2_idx_1_medium=48
  3036. VIP_var_TNRSNR_map_thr2_idx_1_strong=48
  3037. VIP_var_TNRSNR_map_thr3_idx_1_weak=64
  3038. VIP_var_TNRSNR_map_thr3_idx_1_medium=64
  3039. VIP_var_TNRSNR_map_thr3_idx_1_strong=64
  3040. VIP_var_TNRSNR_map_thr4_idx_1_weak=80
  3041. VIP_var_TNRSNR_map_thr4_idx_1_medium=80
  3042. VIP_var_TNRSNR_map_thr4_idx_1_strong=80
  3043. VIP_var_TNRSNR_map_slp0_idx_1_weak=88
  3044. VIP_var_TNRSNR_map_slp0_idx_1_medium=88
  3045. VIP_var_TNRSNR_map_slp0_idx_1_strong=88
  3046. VIP_var_TNRSNR_map_slp1_idx_1_weak=120
  3047. VIP_var_TNRSNR_map_slp1_idx_1_medium=120
  3048. VIP_var_TNRSNR_map_slp1_idx_1_strong=120
  3049. VIP_var_TNRSNR_map_slp2_idx_1_weak=120
  3050. VIP_var_TNRSNR_map_slp2_idx_1_medium=120
  3051. VIP_var_TNRSNR_map_slp2_idx_1_strong=120
  3052. VIP_var_TNRSNR_map_slp3_idx_1_weak=88
  3053. VIP_var_TNRSNR_map_slp3_idx_1_medium=88
  3054. VIP_var_TNRSNR_map_slp3_idx_1_strong=88
  3055. VIP_var_TNRSNR_map_slp4_idx_1_weak=64
  3056. VIP_var_TNRSNR_map_slp4_idx_1_medium=64
  3057. VIP_var_TNRSNR_map_slp4_idx_1_strong=64
  3058. VIP_var_TNRSNR_map_slp5_idx_1_weak=96
  3059. VIP_var_TNRSNR_map_slp5_idx_1_medium=96
  3060. VIP_var_TNRSNR_map_slp5_idx_1_strong=96
  3061. VIP_var_TNRSNR_map_fac0_idx_1_weak=8
  3062. VIP_var_TNRSNR_map_fac0_idx_1_medium=8
  3063. VIP_var_TNRSNR_map_fac0_idx_1_strong=8
  3064. VIP_var_TNRSNR_map_fac1_idx_1_weak=19
  3065. VIP_var_TNRSNR_map_fac1_idx_1_medium=19
  3066. VIP_var_TNRSNR_map_fac1_idx_1_strong=19
  3067. VIP_var_TNRSNR_map_fac2_idx_1_weak=34
  3068. VIP_var_TNRSNR_map_fac2_idx_1_medium=34
  3069. VIP_var_TNRSNR_map_fac2_idx_1_strong=34
  3070. VIP_var_TNRSNR_map_fac3_idx_1_weak=49
  3071. VIP_var_TNRSNR_map_fac3_idx_1_medium=49
  3072. VIP_var_TNRSNR_map_fac3_idx_1_strong=49
  3073. VIP_var_TNRSNR_map_fac4_idx_1_weak=60
  3074. VIP_var_TNRSNR_map_fac4_idx_1_medium=60
  3075. VIP_var_TNRSNR_map_fac4_idx_1_strong=60
  3076. VIP_var_TNRSNR_map_fac5_idx_1_weak=68
  3077. VIP_var_TNRSNR_map_fac5_idx_1_medium=68
  3078. VIP_var_TNRSNR_map_fac5_idx_1_strong=68
  3079. VIP_var_TNRC_map_enable_idx_1=0x1
  3080. VIP_var_TNRC_map_thr0_idx_1_weak=6
  3081. VIP_var_TNRC_map_thr0_idx_1_medium=10
  3082. VIP_var_TNRC_map_thr0_idx_1_strong=15
  3083. VIP_var_TNRC_map_thr1_idx_1_weak=14
  3084. VIP_var_TNRC_map_thr1_idx_1_medium=23
  3085. VIP_var_TNRC_map_thr1_idx_1_strong=35
  3086. VIP_var_TNRC_map_thr2_idx_1_weak=28
  3087. VIP_var_TNRC_map_thr2_idx_1_medium=40
  3088. VIP_var_TNRC_map_thr2_idx_1_strong=50
  3089. VIP_var_TNRC_map_thr3_idx_1_weak=41
  3090. VIP_var_TNRC_map_thr3_idx_1_medium=53
  3091. VIP_var_TNRC_map_thr3_idx_1_strong=64
  3092. VIP_var_TNRC_map_thr4_idx_1_weak=48
  3093. VIP_var_TNRC_map_thr4_idx_1_medium=65
  3094. VIP_var_TNRC_map_thr4_idx_1_strong=78
  3095. VIP_var_TNRC_map_slp0_idx_1_weak=341
  3096. VIP_var_TNRC_map_slp0_idx_1_medium=172
  3097. VIP_var_TNRC_map_slp0_idx_1_strong=102
  3098. VIP_var_TNRC_map_slp1_idx_1_weak=184
  3099. VIP_var_TNRC_map_slp1_idx_1_medium=132
  3100. VIP_var_TNRC_map_slp1_idx_1_strong=83
  3101. VIP_var_TNRC_map_slp2_idx_1_weak=105
  3102. VIP_var_TNRC_map_slp2_idx_1_medium=105
  3103. VIP_var_TNRC_map_slp2_idx_1_strong=123
  3104. VIP_var_TNRC_map_slp3_idx_1_weak=108
  3105. VIP_var_TNRC_map_slp3_idx_1_medium=147
  3106. VIP_var_TNRC_map_slp3_idx_1_strong=114
  3107. VIP_var_TNRC_map_slp4_idx_1_weak=173
  3108. VIP_var_TNRC_map_slp4_idx_1_medium=234
  3109. VIP_var_TNRC_map_slp4_idx_1_strong=155
  3110. VIP_var_TNRC_map_slp5_idx_1_weak=219
  3111. VIP_var_TNRC_map_slp5_idx_1_medium=241
  3112. VIP_var_TNRC_map_slp5_idx_1_strong=202
  3113. VIP_var_TNRC_map_fac0_idx_1_weak=0
  3114. VIP_var_TNRC_map_fac0_idx_1_medium=0
  3115. VIP_var_TNRC_map_fac0_idx_1_strong=0
  3116. VIP_var_TNRC_map_fac1_idx_1_weak=32
  3117. VIP_var_TNRC_map_fac1_idx_1_medium=27
  3118. VIP_var_TNRC_map_fac1_idx_1_strong=24
  3119. VIP_var_TNRC_map_fac2_idx_1_weak=55
  3120. VIP_var_TNRC_map_fac2_idx_1_medium=54
  3121. VIP_var_TNRC_map_fac2_idx_1_strong=50
  3122. VIP_var_TNRC_map_fac3_idx_1_weak=78
  3123. VIP_var_TNRC_map_fac3_idx_1_medium=82
  3124. VIP_var_TNRC_map_fac3_idx_1_strong=79
  3125. VIP_var_TNRC_map_fac4_idx_1_weak=100
  3126. VIP_var_TNRC_map_fac4_idx_1_medium=112
  3127. VIP_var_TNRC_map_fac4_idx_1_strong=104
  3128. VIP_var_TNRC_map_fac5_idx_1_weak=119
  3129. VIP_var_TNRC_map_fac5_idx_1_medium=156
  3130. VIP_var_TNRC_map_fac5_idx_1_strong=138
  3131. VIP_var_TNRZ_map_enable_idx_1=0x1
  3132. VIP_var_TNRZ_map_thr0_idx_1_weak=21
  3133. VIP_var_TNRZ_map_thr0_idx_1_medium=24
  3134. VIP_var_TNRZ_map_thr0_idx_1_strong=19
  3135. VIP_var_TNRZ_map_thr1_idx_1_weak=32
  3136. VIP_var_TNRZ_map_thr1_idx_1_medium=33
  3137. VIP_var_TNRZ_map_thr1_idx_1_strong=34
  3138. VIP_var_TNRZ_map_thr2_idx_1_weak=49
  3139. VIP_var_TNRZ_map_thr2_idx_1_medium=51
  3140. VIP_var_TNRZ_map_thr2_idx_1_strong=46
  3141. VIP_var_TNRZ_map_thr3_idx_1_weak=60
  3142. VIP_var_TNRZ_map_thr3_idx_1_medium=62
  3143. VIP_var_TNRZ_map_thr3_idx_1_strong=59
  3144. VIP_var_TNRZ_map_thr4_idx_1_weak=86
  3145. VIP_var_TNRZ_map_thr4_idx_1_medium=78
  3146. VIP_var_TNRZ_map_thr4_idx_1_strong=79
  3147. VIP_var_TNRZ_map_slp0_idx_1_weak=12
  3148. VIP_var_TNRZ_map_slp0_idx_1_medium=13
  3149. VIP_var_TNRZ_map_slp0_idx_1_strong=20
  3150. VIP_var_TNRZ_map_slp1_idx_1_weak=11
  3151. VIP_var_TNRZ_map_slp1_idx_1_medium=14
  3152. VIP_var_TNRZ_map_slp1_idx_1_strong=40
  3153. VIP_var_TNRZ_map_slp2_idx_1_weak=18
  3154. VIP_var_TNRZ_map_slp2_idx_1_medium=17
  3155. VIP_var_TNRZ_map_slp2_idx_1_strong=66
  3156. VIP_var_TNRZ_map_slp3_idx_1_weak=29
  3157. VIP_var_TNRZ_map_slp3_idx_1_medium=29
  3158. VIP_var_TNRZ_map_slp3_idx_1_strong=44
  3159. VIP_var_TNRZ_map_slp4_idx_1_weak=62
  3160. VIP_var_TNRZ_map_slp4_idx_1_medium=50
  3161. VIP_var_TNRZ_map_slp4_idx_1_strong=17
  3162. VIP_var_TNRZ_map_slp5_idx_1_weak=89
  3163. VIP_var_TNRZ_map_slp5_idx_1_medium=71
  3164. VIP_var_TNRZ_map_slp5_idx_1_strong=94
  3165. VIP_var_TNRZ_map_fac0_idx_1_weak=105
  3166. VIP_var_TNRZ_map_fac0_idx_1_medium=96
  3167. VIP_var_TNRZ_map_fac0_idx_1_strong=40
  3168. VIP_var_TNRZ_map_fac1_idx_1_weak=113
  3169. VIP_var_TNRZ_map_fac1_idx_1_medium=106
  3170. VIP_var_TNRZ_map_fac1_idx_1_strong=52
  3171. VIP_var_TNRZ_map_fac2_idx_1_weak=117
  3172. VIP_var_TNRZ_map_fac2_idx_1_medium=110
  3173. VIP_var_TNRZ_map_fac2_idx_1_strong=71
  3174. VIP_var_TNRZ_map_fac3_idx_1_weak=127
  3175. VIP_var_TNRZ_map_fac3_idx_1_medium=120
  3176. VIP_var_TNRZ_map_fac3_idx_1_strong=96
  3177. VIP_var_TNRZ_map_fac4_idx_1_weak=137
  3178. VIP_var_TNRZ_map_fac4_idx_1_medium=130
  3179. VIP_var_TNRZ_map_fac4_idx_1_strong=114
  3180. VIP_var_TNRZ_map_fac5_idx_1_weak=188
  3181. VIP_var_TNRZ_map_fac5_idx_1_medium=155
  3182. VIP_var_TNRZ_map_fac5_idx_1_strong=125
  3183. VIP_var_TNRZC_map_enable_idx_1=0x1
  3184. VIP_var_TNRZC_map_thr0_idx_1_weak=12
  3185. VIP_var_TNRZC_map_thr0_idx_1_medium=18
  3186. VIP_var_TNRZC_map_thr0_idx_1_strong=27
  3187. VIP_var_TNRZC_map_thr1_idx_1_weak=21
  3188. VIP_var_TNRZC_map_thr1_idx_1_medium=38
  3189. VIP_var_TNRZC_map_thr1_idx_1_strong=43
  3190. VIP_var_TNRZC_map_thr2_idx_1_weak=32
  3191. VIP_var_TNRZC_map_thr2_idx_1_medium=51
  3192. VIP_var_TNRZC_map_thr2_idx_1_strong=63
  3193. VIP_var_TNRZC_map_thr3_idx_1_weak=48
  3194. VIP_var_TNRZC_map_thr3_idx_1_medium=64
  3195. VIP_var_TNRZC_map_thr3_idx_1_strong=76
  3196. VIP_var_TNRZC_map_thr4_idx_1_weak=62
  3197. VIP_var_TNRZC_map_thr4_idx_1_medium=76
  3198. VIP_var_TNRZC_map_thr4_idx_1_strong=90
  3199. VIP_var_TNRZC_map_slp0_idx_1_weak=144
  3200. VIP_var_TNRZC_map_slp0_idx_1_medium=71
  3201. VIP_var_TNRZC_map_slp0_idx_1_strong=42
  3202. VIP_var_TNRZC_map_slp1_idx_1_weak=92
  3203. VIP_var_TNRZC_map_slp1_idx_1_medium=73
  3204. VIP_var_TNRZC_map_slp1_idx_1_strong=56
  3205. VIP_var_TNRZC_map_slp2_idx_1_weak=87
  3206. VIP_var_TNRZC_map_slp2_idx_1_medium=83
  3207. VIP_var_TNRZC_map_slp2_idx_1_strong=70
  3208. VIP_var_TNRZC_map_slp3_idx_1_weak=64
  3209. VIP_var_TNRZC_map_slp3_idx_1_medium=59
  3210. VIP_var_TNRZC_map_slp3_idx_1_strong=88
  3211. VIP_var_TNRZC_map_slp4_idx_1_weak=68
  3212. VIP_var_TNRZC_map_slp4_idx_1_medium=101
  3213. VIP_var_TNRZC_map_slp4_idx_1_strong=118
  3214. VIP_var_TNRZC_map_slp5_idx_1_weak=298
  3215. VIP_var_TNRZC_map_slp5_idx_1_medium=437
  3216. VIP_var_TNRZC_map_slp5_idx_1_strong=558
  3217. VIP_var_TNRZC_map_fac0_idx_1_weak=0
  3218. VIP_var_TNRZC_map_fac0_idx_1_medium=0
  3219. VIP_var_TNRZC_map_fac0_idx_1_strong=0
  3220. VIP_var_TNRZC_map_fac1_idx_1_weak=27
  3221. VIP_var_TNRZC_map_fac1_idx_1_medium=20
  3222. VIP_var_TNRZC_map_fac1_idx_1_strong=18
  3223. VIP_var_TNRZC_map_fac2_idx_1_weak=40
  3224. VIP_var_TNRZC_map_fac2_idx_1_medium=43
  3225. VIP_var_TNRZC_map_fac2_idx_1_strong=32
  3226. VIP_var_TNRZC_map_fac3_idx_1_weak=55
  3227. VIP_var_TNRZC_map_fac3_idx_1_medium=60
  3228. VIP_var_TNRZC_map_fac3_idx_1_strong=54
  3229. VIP_var_TNRZC_map_fac4_idx_1_weak=71
  3230. VIP_var_TNRZC_map_fac4_idx_1_medium=72
  3231. VIP_var_TNRZC_map_fac4_idx_1_strong=72
  3232. VIP_var_TNRZC_map_fac5_idx_1_weak=86
  3233. VIP_var_TNRZC_map_fac5_idx_1_medium=91
  3234. VIP_var_TNRZC_map_fac5_idx_1_strong=98
  3235. VIP_var_luma_tnr_coring_idx_2_weak=0
  3236. VIP_var_luma_tnr_coring_idx_2_medium=0
  3237. VIP_var_luma_tnr_coring_idx_2_strong=0
  3238. VIP_var_luma_tnr_strength_idx_2_weak=6
  3239. VIP_var_luma_tnr_strength_idx_2_medium=9
  3240. VIP_var_luma_tnr_strength_idx_2_strong=11
  3241. VIP_var_chroma_tnr_coring_idx_2_weak=0
  3242. VIP_var_chroma_tnr_coring_idx_2_medium=0
  3243. VIP_var_chroma_tnr_coring_idx_2_strong=0
  3244. VIP_var_chroma_tnr_strength_idx_2_weak=4
  3245. VIP_var_chroma_tnr_strength_idx_2_medium=6
  3246. VIP_var_chroma_tnr_strength_idx_2_strong=8
  3247. VIP_var_luma_snr1_coring_idx_2_weak=0
  3248. VIP_var_luma_snr1_coring_idx_2_medium=0
  3249. VIP_var_luma_snr1_coring_idx_2_strong=0
  3250. VIP_var_luma_snr1_strength_idx_2_weak=0
  3251. VIP_var_luma_snr1_strength_idx_2_medium=1
  3252. VIP_var_luma_snr1_strength_idx_2_strong=10
  3253. VIP_var_luma_snr2_coring_idx_2_weak=0
  3254. VIP_var_luma_snr2_coring_idx_2_medium=0
  3255. VIP_var_luma_snr2_coring_idx_2_strong=0
  3256. VIP_var_luma_snr2_strength_idx_2_weak=0
  3257. VIP_var_luma_snr2_strength_idx_2_medium=0
  3258. VIP_var_luma_snr2_strength_idx_2_strong=0
  3259. VIP_var_chroma_snr_coring_idx_2_weak=0
  3260. VIP_var_chroma_snr_coring_idx_2_medium=0
  3261. VIP_var_chroma_snr_coring_idx_2_strong=0
  3262. VIP_var_chroma_snr_strength_idx_2_weak=2
  3263. VIP_var_chroma_snr_strength_idx_2_medium=2
  3264. VIP_var_chroma_snr_strength_idx_2_strong=10
  3265. VIP_var_block_nr_coring_idx_2_weak=5
  3266. VIP_var_block_nr_coring_idx_2_medium=5
  3267. VIP_var_block_nr_coring_idx_2_strong=5
  3268. VIP_var_block_nr_strength_idx_2_weak=5
  3269. VIP_var_block_nr_strength_idx_2_medium=5
  3270. VIP_var_block_nr_strength_idx_2_strong=5
  3271. VIP_var_mosquito_nr_coring_idx_2_weak=5
  3272. VIP_var_mosquito_nr_coring_idx_2_medium=5
  3273. VIP_var_mosquito_nr_coring_idx_2_strong=5
  3274. VIP_var_mosquito_nr_strength_idx_2_weak=0
  3275. VIP_var_mosquito_nr_strength_idx_2_medium=0
  3276. VIP_var_mosquito_nr_strength_idx_2_strong=0
  3277. VIP_var_tnr_ultra_low_ctl_idx_2=0
  3278. VIP_var_snr_ultra_low_ctl_idx_2=0
  3279. VIP_var_TNR_map_enable_idx_2=0x1
  3280. VIP_var_TNR_map_thr0_idx_2_weak=10
  3281. VIP_var_TNR_map_thr0_idx_2_medium=12
  3282. VIP_var_TNR_map_thr0_idx_2_strong=16
  3283. VIP_var_TNR_map_thr1_idx_2_weak=22
  3284. VIP_var_TNR_map_thr1_idx_2_medium=21
  3285. VIP_var_TNR_map_thr1_idx_2_strong=29
  3286. VIP_var_TNR_map_thr2_idx_2_weak=38
  3287. VIP_var_TNR_map_thr2_idx_2_medium=40
  3288. VIP_var_TNR_map_thr2_idx_2_strong=46
  3289. VIP_var_TNR_map_thr3_idx_2_weak=56
  3290. VIP_var_TNR_map_thr3_idx_2_medium=70
  3291. VIP_var_TNR_map_thr3_idx_2_strong=68
  3292. VIP_var_TNR_map_thr4_idx_2_weak=88
  3293. VIP_var_TNR_map_thr4_idx_2_medium=95
  3294. VIP_var_TNR_map_thr4_idx_2_strong=92
  3295. VIP_var_TNR_map_slp0_idx_2_weak=83
  3296. VIP_var_TNR_map_slp0_idx_2_medium=26
  3297. VIP_var_TNR_map_slp0_idx_2_strong=20
  3298. VIP_var_TNR_map_slp1_idx_2_weak=69
  3299. VIP_var_TNR_map_slp1_idx_2_medium=42
  3300. VIP_var_TNR_map_slp1_idx_2_strong=36
  3301. VIP_var_TNR_map_slp2_idx_2_weak=36
  3302. VIP_var_TNR_map_slp2_idx_2_medium=32
  3303. VIP_var_TNR_map_slp2_idx_2_strong=43
  3304. VIP_var_TNR_map_slp3_idx_2_weak=26
  3305. VIP_var_TNR_map_slp3_idx_2_medium=52
  3306. VIP_var_TNR_map_slp3_idx_2_strong=50
  3307. VIP_var_TNR_map_slp4_idx_2_weak=48
  3308. VIP_var_TNR_map_slp4_idx_2_medium=40
  3309. VIP_var_TNR_map_slp4_idx_2_strong=50
  3310. VIP_var_TNR_map_slp5_idx_2_weak=51
  3311. VIP_var_TNR_map_slp5_idx_2_medium=78
  3312. VIP_var_TNR_map_slp5_idx_2_strong=52
  3313. VIP_var_TNR_map_fac0_idx_2_weak=42
  3314. VIP_var_TNR_map_fac0_idx_2_medium=0
  3315. VIP_var_TNR_map_fac0_idx_2_strong=0
  3316. VIP_var_TNR_map_fac1_idx_2_weak=68
  3317. VIP_var_TNR_map_fac1_idx_2_medium=10
  3318. VIP_var_TNR_map_fac1_idx_2_strong=10
  3319. VIP_var_TNR_map_fac2_idx_2_weak=94
  3320. VIP_var_TNR_map_fac2_idx_2_medium=22
  3321. VIP_var_TNR_map_fac2_idx_2_strong=25
  3322. VIP_var_TNR_map_fac3_idx_2_weak=112
  3323. VIP_var_TNR_map_fac3_idx_2_medium=41
  3324. VIP_var_TNR_map_fac3_idx_2_strong=48
  3325. VIP_var_TNR_map_fac4_idx_2_weak=127
  3326. VIP_var_TNR_map_fac4_idx_2_medium=90
  3327. VIP_var_TNR_map_fac4_idx_2_strong=83
  3328. VIP_var_TNR_map_fac5_idx_2_weak=175
  3329. VIP_var_TNR_map_fac5_idx_2_medium=122
  3330. VIP_var_TNR_map_fac5_idx_2_strong=121
  3331. VIP_var_TNRSNR_map_enable_idx_2=0x1
  3332. VIP_var_TNRSNR_map_thr0_idx_2_weak=19
  3333. VIP_var_TNRSNR_map_thr0_idx_2_medium=22
  3334. VIP_var_TNRSNR_map_thr0_idx_2_strong=31
  3335. VIP_var_TNRSNR_map_thr1_idx_2_weak=43
  3336. VIP_var_TNRSNR_map_thr1_idx_2_medium=48
  3337. VIP_var_TNRSNR_map_thr1_idx_2_strong=90
  3338. VIP_var_TNRSNR_map_thr2_idx_2_weak=59
  3339. VIP_var_TNRSNR_map_thr2_idx_2_medium=74
  3340. VIP_var_TNRSNR_map_thr2_idx_2_strong=126
  3341. VIP_var_TNRSNR_map_thr3_idx_2_weak=76
  3342. VIP_var_TNRSNR_map_thr3_idx_2_medium=107
  3343. VIP_var_TNRSNR_map_thr3_idx_2_strong=168
  3344. VIP_var_TNRSNR_map_thr4_idx_2_weak=90
  3345. VIP_var_TNRSNR_map_thr4_idx_2_medium=162
  3346. VIP_var_TNRSNR_map_thr4_idx_2_strong=200
  3347. VIP_var_TNRSNR_map_slp0_idx_2_weak=18
  3348. VIP_var_TNRSNR_map_slp0_idx_2_medium=8193
  3349. VIP_var_TNRSNR_map_slp0_idx_2_strong=1
  3350. VIP_var_TNRSNR_map_slp1_idx_2_weak=21
  3351. VIP_var_TNRSNR_map_slp1_idx_2_medium=1
  3352. VIP_var_TNRSNR_map_slp1_idx_2_strong=0
  3353. VIP_var_TNRSNR_map_slp2_idx_2_weak=28
  3354. VIP_var_TNRSNR_map_slp2_idx_2_medium=1
  3355. VIP_var_TNRSNR_map_slp2_idx_2_strong=0
  3356. VIP_var_TNRSNR_map_slp3_idx_2_weak=30
  3357. VIP_var_TNRSNR_map_slp3_idx_2_medium=0
  3358. VIP_var_TNRSNR_map_slp3_idx_2_strong=0
  3359. VIP_var_TNRSNR_map_slp4_idx_2_weak=32
  3360. VIP_var_TNRSNR_map_slp4_idx_2_medium=3
  3361. VIP_var_TNRSNR_map_slp4_idx_2_strong=4
  3362. VIP_var_TNRSNR_map_slp5_idx_2_weak=113
  3363. VIP_var_TNRSNR_map_slp5_idx_2_medium=5
  3364. VIP_var_TNRSNR_map_slp5_idx_2_strong=4
  3365. VIP_var_TNRSNR_map_fac0_idx_2_weak=0
  3366. VIP_var_TNRSNR_map_fac0_idx_2_medium=1
  3367. VIP_var_TNRSNR_map_fac0_idx_2_strong=0
  3368. VIP_var_TNRSNR_map_fac1_idx_2_weak=11
  3369. VIP_var_TNRSNR_map_fac1_idx_2_medium=0
  3370. VIP_var_TNRSNR_map_fac1_idx_2_strong=1
  3371. VIP_var_TNRSNR_map_fac2_idx_2_weak=27
  3372. VIP_var_TNRSNR_map_fac2_idx_2_medium=1
  3373. VIP_var_TNRSNR_map_fac2_idx_2_strong=0
  3374. VIP_var_TNRSNR_map_fac3_idx_2_weak=41
  3375. VIP_var_TNRSNR_map_fac3_idx_2_medium=2
  3376. VIP_var_TNRSNR_map_fac3_idx_2_strong=0
  3377. VIP_var_TNRSNR_map_fac4_idx_2_weak=57
  3378. VIP_var_TNRSNR_map_fac4_idx_2_medium=3
  3379. VIP_var_TNRSNR_map_fac4_idx_2_strong=1
  3380. VIP_var_TNRSNR_map_fac5_idx_2_weak=71
  3381. VIP_var_TNRSNR_map_fac5_idx_2_medium=9
  3382. VIP_var_TNRSNR_map_fac5_idx_2_strong=5
  3383. VIP_var_TNRC_map_enable_idx_2=0x1
  3384. VIP_var_TNRC_map_thr0_idx_2_weak=23
  3385. VIP_var_TNRC_map_thr0_idx_2_medium=23
  3386. VIP_var_TNRC_map_thr0_idx_2_strong=23
  3387. VIP_var_TNRC_map_thr1_idx_2_weak=49
  3388. VIP_var_TNRC_map_thr1_idx_2_medium=49
  3389. VIP_var_TNRC_map_thr1_idx_2_strong=49
  3390. VIP_var_TNRC_map_thr2_idx_2_weak=65
  3391. VIP_var_TNRC_map_thr2_idx_2_medium=65
  3392. VIP_var_TNRC_map_thr2_idx_2_strong=65
  3393. VIP_var_TNRC_map_thr3_idx_2_weak=77
  3394. VIP_var_TNRC_map_thr3_idx_2_medium=77
  3395. VIP_var_TNRC_map_thr3_idx_2_strong=77
  3396. VIP_var_TNRC_map_thr4_idx_2_weak=87
  3397. VIP_var_TNRC_map_thr4_idx_2_medium=87
  3398. VIP_var_TNRC_map_thr4_idx_2_strong=87
  3399. VIP_var_TNRC_map_slp0_idx_2_weak=47
  3400. VIP_var_TNRC_map_slp0_idx_2_medium=47
  3401. VIP_var_TNRC_map_slp0_idx_2_strong=47
  3402. VIP_var_TNRC_map_slp1_idx_2_weak=59
  3403. VIP_var_TNRC_map_slp1_idx_2_medium=59
  3404. VIP_var_TNRC_map_slp1_idx_2_strong=59
  3405. VIP_var_TNRC_map_slp2_idx_2_weak=88
  3406. VIP_var_TNRC_map_slp2_idx_2_medium=88
  3407. VIP_var_TNRC_map_slp2_idx_2_strong=88
  3408. VIP_var_TNRC_map_slp3_idx_2_weak=101
  3409. VIP_var_TNRC_map_slp3_idx_2_medium=101
  3410. VIP_var_TNRC_map_slp3_idx_2_strong=101
  3411. VIP_var_TNRC_map_slp4_idx_2_weak=147
  3412. VIP_var_TNRC_map_slp4_idx_2_medium=147
  3413. VIP_var_TNRC_map_slp4_idx_2_strong=147
  3414. VIP_var_TNRC_map_slp5_idx_2_weak=168
  3415. VIP_var_TNRC_map_slp5_idx_2_medium=168
  3416. VIP_var_TNRC_map_slp5_idx_2_strong=168
  3417. VIP_var_TNRC_map_fac0_idx_2_weak=0
  3418. VIP_var_TNRC_map_fac0_idx_2_medium=0
  3419. VIP_var_TNRC_map_fac0_idx_2_strong=0
  3420. VIP_var_TNRC_map_fac1_idx_2_weak=17
  3421. VIP_var_TNRC_map_fac1_idx_2_medium=17
  3422. VIP_var_TNRC_map_fac1_idx_2_strong=17
  3423. VIP_var_TNRC_map_fac2_idx_2_weak=41
  3424. VIP_var_TNRC_map_fac2_idx_2_medium=41
  3425. VIP_var_TNRC_map_fac2_idx_2_strong=41
  3426. VIP_var_TNRC_map_fac3_idx_2_weak=63
  3427. VIP_var_TNRC_map_fac3_idx_2_medium=63
  3428. VIP_var_TNRC_map_fac3_idx_2_strong=63
  3429. VIP_var_TNRC_map_fac4_idx_2_weak=82
  3430. VIP_var_TNRC_map_fac4_idx_2_medium=82
  3431. VIP_var_TNRC_map_fac4_idx_2_strong=82
  3432. VIP_var_TNRC_map_fac5_idx_2_weak=105
  3433. VIP_var_TNRC_map_fac5_idx_2_medium=105
  3434. VIP_var_TNRC_map_fac5_idx_2_strong=105
  3435. VIP_var_TNRZ_map_enable_idx_2=0x1
  3436. VIP_var_TNRZ_map_thr0_idx_2_weak=18
  3437. VIP_var_TNRZ_map_thr0_idx_2_medium=18
  3438. VIP_var_TNRZ_map_thr0_idx_2_strong=16
  3439. VIP_var_TNRZ_map_thr1_idx_2_weak=31
  3440. VIP_var_TNRZ_map_thr1_idx_2_medium=29
  3441. VIP_var_TNRZ_map_thr1_idx_2_strong=31
  3442. VIP_var_TNRZ_map_thr2_idx_2_weak=47
  3443. VIP_var_TNRZ_map_thr2_idx_2_medium=42
  3444. VIP_var_TNRZ_map_thr2_idx_2_strong=50
  3445. VIP_var_TNRZ_map_thr3_idx_2_weak=60
  3446. VIP_var_TNRZ_map_thr3_idx_2_medium=68
  3447. VIP_var_TNRZ_map_thr3_idx_2_strong=63
  3448. VIP_var_TNRZ_map_thr4_idx_2_weak=78
  3449. VIP_var_TNRZ_map_thr4_idx_2_medium=84
  3450. VIP_var_TNRZ_map_thr4_idx_2_strong=85
  3451. VIP_var_TNRZ_map_slp0_idx_2_weak=19
  3452. VIP_var_TNRZ_map_slp0_idx_2_medium=21
  3453. VIP_var_TNRZ_map_slp0_idx_2_strong=52
  3454. VIP_var_TNRZ_map_slp1_idx_2_weak=34
  3455. VIP_var_TNRZ_map_slp1_idx_2_medium=34
  3456. VIP_var_TNRZ_map_slp1_idx_2_strong=59
  3457. VIP_var_TNRZ_map_slp2_idx_2_weak=36
  3458. VIP_var_TNRZ_map_slp2_idx_2_medium=49
  3459. VIP_var_TNRZ_map_slp2_idx_2_strong=55
  3460. VIP_var_TNRZ_map_slp3_idx_2_weak=44
  3461. VIP_var_TNRZ_map_slp3_idx_2_medium=35
  3462. VIP_var_TNRZ_map_slp3_idx_2_strong=39
  3463. VIP_var_TNRZ_map_slp4_idx_2_weak=42
  3464. VIP_var_TNRZ_map_slp4_idx_2_medium=52
  3465. VIP_var_TNRZ_map_slp4_idx_2_strong=29
  3466. VIP_var_TNRZ_map_slp5_idx_2_weak=93
  3467. VIP_var_TNRZ_map_slp5_idx_2_medium=86
  3468. VIP_var_TNRZ_map_slp5_idx_2_strong=110
  3469. VIP_var_TNRZ_map_fac0_idx_2_weak=76
  3470. VIP_var_TNRZ_map_fac0_idx_2_medium=51
  3471. VIP_var_TNRZ_map_fac0_idx_2_strong=1
  3472. VIP_var_TNRZ_map_fac1_idx_2_weak=87
  3473. VIP_var_TNRZ_map_fac1_idx_2_medium=63
  3474. VIP_var_TNRZ_map_fac1_idx_2_strong=27
  3475. VIP_var_TNRZ_map_fac2_idx_2_weak=101
  3476. VIP_var_TNRZ_map_fac2_idx_2_medium=75
  3477. VIP_var_TNRZ_map_fac2_idx_2_strong=55
  3478. VIP_var_TNRZ_map_fac3_idx_2_weak=119
  3479. VIP_var_TNRZ_map_fac3_idx_2_medium=95
  3480. VIP_var_TNRZ_map_fac3_idx_2_strong=88
  3481. VIP_var_TNRZ_map_fac4_idx_2_weak=137
  3482. VIP_var_TNRZ_map_fac4_idx_2_medium=124
  3483. VIP_var_TNRZ_map_fac4_idx_2_strong=104
  3484. VIP_var_TNRZ_map_fac5_idx_2_weak=161
  3485. VIP_var_TNRZ_map_fac5_idx_2_medium=150
  3486. VIP_var_TNRZ_map_fac5_idx_2_strong=124
  3487. VIP_var_TNRZC_map_enable_idx_2=0x1
  3488. VIP_var_TNRZC_map_thr0_idx_2_weak=12
  3489. VIP_var_TNRZC_map_thr0_idx_2_medium=12
  3490. VIP_var_TNRZC_map_thr0_idx_2_strong=12
  3491. VIP_var_TNRZC_map_thr1_idx_2_weak=24
  3492. VIP_var_TNRZC_map_thr1_idx_2_medium=24
  3493. VIP_var_TNRZC_map_thr1_idx_2_strong=24
  3494. VIP_var_TNRZC_map_thr2_idx_2_weak=32
  3495. VIP_var_TNRZC_map_thr2_idx_2_medium=32
  3496. VIP_var_TNRZC_map_thr2_idx_2_strong=32
  3497. VIP_var_TNRZC_map_thr3_idx_2_weak=48
  3498. VIP_var_TNRZC_map_thr3_idx_2_medium=48
  3499. VIP_var_TNRZC_map_thr3_idx_2_strong=48
  3500. VIP_var_TNRZC_map_thr4_idx_2_weak=64
  3501. VIP_var_TNRZC_map_thr4_idx_2_medium=64
  3502. VIP_var_TNRZC_map_thr4_idx_2_strong=64
  3503. VIP_var_TNRZC_map_slp0_idx_2_weak=288
  3504. VIP_var_TNRZC_map_slp0_idx_2_medium=288
  3505. VIP_var_TNRZC_map_slp0_idx_2_strong=288
  3506. VIP_var_TNRZC_map_slp1_idx_2_weak=138
  3507. VIP_var_TNRZC_map_slp1_idx_2_medium=138
  3508. VIP_var_TNRZC_map_slp1_idx_2_strong=138
  3509. VIP_var_TNRZC_map_slp2_idx_2_weak=240
  3510. VIP_var_TNRZC_map_slp2_idx_2_medium=240
  3511. VIP_var_TNRZC_map_slp2_idx_2_strong=240
  3512. VIP_var_TNRZC_map_slp3_idx_2_weak=104
  3513. VIP_var_TNRZC_map_slp3_idx_2_medium=104
  3514. VIP_var_TNRZC_map_slp3_idx_2_strong=104
  3515. VIP_var_TNRZC_map_slp4_idx_2_weak=72
  3516. VIP_var_TNRZC_map_slp4_idx_2_medium=72
  3517. VIP_var_TNRZC_map_slp4_idx_2_strong=72
  3518. VIP_var_TNRZC_map_slp5_idx_2_weak=92
  3519. VIP_var_TNRZC_map_slp5_idx_2_medium=92
  3520. VIP_var_TNRZC_map_slp5_idx_2_strong=92
  3521. VIP_var_TNRZC_map_fac0_idx_2_weak=0
  3522. VIP_var_TNRZC_map_fac0_idx_2_medium=0
  3523. VIP_var_TNRZC_map_fac0_idx_2_strong=0
  3524. VIP_var_TNRZC_map_fac1_idx_2_weak=27
  3525. VIP_var_TNRZC_map_fac1_idx_2_medium=27
  3526. VIP_var_TNRZC_map_fac1_idx_2_strong=27
  3527. VIP_var_TNRZC_map_fac2_idx_2_weak=40
  3528. VIP_var_TNRZC_map_fac2_idx_2_medium=40
  3529. VIP_var_TNRZC_map_fac2_idx_2_strong=40
  3530. VIP_var_TNRZC_map_fac3_idx_2_weak=55
  3531. VIP_var_TNRZC_map_fac3_idx_2_medium=55
  3532. VIP_var_TNRZC_map_fac3_idx_2_strong=55
  3533. VIP_var_TNRZC_map_fac4_idx_2_weak=68
  3534. VIP_var_TNRZC_map_fac4_idx_2_medium=68
  3535. VIP_var_TNRZC_map_fac4_idx_2_strong=68
  3536. VIP_var_TNRZC_map_fac5_idx_2_weak=77
  3537. VIP_var_TNRZC_map_fac5_idx_2_medium=77
  3538. VIP_var_TNRZC_map_fac5_idx_2_strong=77
  3539. VIP_var_luma_tnr_coring_idx_3_weak=0
  3540. VIP_var_luma_tnr_coring_idx_3_medium=0
  3541. VIP_var_luma_tnr_coring_idx_3_strong=0
  3542. VIP_var_luma_tnr_strength_idx_3_weak=6
  3543. VIP_var_luma_tnr_strength_idx_3_medium=8
  3544. VIP_var_luma_tnr_strength_idx_3_strong=13
  3545. VIP_var_chroma_tnr_coring_idx_3_weak=0
  3546. VIP_var_chroma_tnr_coring_idx_3_medium=0
  3547. VIP_var_chroma_tnr_coring_idx_3_strong=0
  3548. VIP_var_chroma_tnr_strength_idx_3_weak=4
  3549. VIP_var_chroma_tnr_strength_idx_3_medium=8
  3550. VIP_var_chroma_tnr_strength_idx_3_strong=10
  3551. VIP_var_luma_snr1_coring_idx_3_weak=0
  3552. VIP_var_luma_snr1_coring_idx_3_medium=0
  3553. VIP_var_luma_snr1_coring_idx_3_strong=0
  3554. VIP_var_luma_snr1_strength_idx_3_weak=2
  3555. VIP_var_luma_snr1_strength_idx_3_medium=2
  3556. VIP_var_luma_snr1_strength_idx_3_strong=10
  3557. VIP_var_luma_snr2_coring_idx_3_weak=0
  3558. VIP_var_luma_snr2_coring_idx_3_medium=0
  3559. VIP_var_luma_snr2_coring_idx_3_strong=0
  3560. VIP_var_luma_snr2_strength_idx_3_weak=0
  3561. VIP_var_luma_snr2_strength_idx_3_medium=0
  3562. VIP_var_luma_snr2_strength_idx_3_strong=0
  3563. VIP_var_chroma_snr_coring_idx_3_weak=0
  3564. VIP_var_chroma_snr_coring_idx_3_medium=0
  3565. VIP_var_chroma_snr_coring_idx_3_strong=0
  3566. VIP_var_chroma_snr_strength_idx_3_weak=2
  3567. VIP_var_chroma_snr_strength_idx_3_medium=2
  3568. VIP_var_chroma_snr_strength_idx_3_strong=10
  3569. VIP_var_block_nr_coring_idx_3_weak=5
  3570. VIP_var_block_nr_coring_idx_3_medium=5
  3571. VIP_var_block_nr_coring_idx_3_strong=5
  3572. VIP_var_block_nr_strength_idx_3_weak=5
  3573. VIP_var_block_nr_strength_idx_3_medium=5
  3574. VIP_var_block_nr_strength_idx_3_strong=5
  3575. VIP_var_mosquito_nr_coring_idx_3_weak=5
  3576. VIP_var_mosquito_nr_coring_idx_3_medium=5
  3577. VIP_var_mosquito_nr_coring_idx_3_strong=5
  3578. VIP_var_mosquito_nr_strength_idx_3_weak=5
  3579. VIP_var_mosquito_nr_strength_idx_3_medium=5
  3580. VIP_var_mosquito_nr_strength_idx_3_strong=5
  3581. VIP_var_tnr_ultra_low_ctl_idx_3=0
  3582. VIP_var_snr_ultra_low_ctl_idx_3=0
  3583. VIP_var_TNR_map_enable_idx_3=0x1
  3584. VIP_var_TNR_map_thr0_idx_3_weak=10
  3585. VIP_var_TNR_map_thr0_idx_3_medium=10
  3586. VIP_var_TNR_map_thr0_idx_3_strong=14
  3587. VIP_var_TNR_map_thr1_idx_3_weak=22
  3588. VIP_var_TNR_map_thr1_idx_3_medium=23
  3589. VIP_var_TNR_map_thr1_idx_3_strong=24
  3590. VIP_var_TNR_map_thr2_idx_3_weak=38
  3591. VIP_var_TNR_map_thr2_idx_3_medium=39
  3592. VIP_var_TNR_map_thr2_idx_3_strong=42
  3593. VIP_var_TNR_map_thr3_idx_3_weak=56
  3594. VIP_var_TNR_map_thr3_idx_3_medium=67
  3595. VIP_var_TNR_map_thr3_idx_3_strong=68
  3596. VIP_var_TNR_map_thr4_idx_3_weak=88
  3597. VIP_var_TNR_map_thr4_idx_3_medium=96
  3598. VIP_var_TNR_map_thr4_idx_3_strong=103
  3599. VIP_var_TNR_map_slp0_idx_3_weak=83
  3600. VIP_var_TNR_map_slp0_idx_3_medium=35
  3601. VIP_var_TNR_map_slp0_idx_3_strong=9
  3602. VIP_var_TNR_map_slp1_idx_3_weak=69
  3603. VIP_var_TNR_map_slp1_idx_3_medium=24
  3604. VIP_var_TNR_map_slp1_idx_3_strong=12
  3605. VIP_var_TNR_map_slp2_idx_3_weak=36
  3606. VIP_var_TNR_map_slp2_idx_3_medium=30
  3607. VIP_var_TNR_map_slp2_idx_3_strong=16
  3608. VIP_var_TNR_map_slp3_idx_3_weak=26
  3609. VIP_var_TNR_map_slp3_idx_3_medium=41
  3610. VIP_var_TNR_map_slp3_idx_3_strong=32
  3611. VIP_var_TNR_map_slp4_idx_3_weak=48
  3612. VIP_var_TNR_map_slp4_idx_3_medium=41
  3613. VIP_var_TNR_map_slp4_idx_3_strong=53
  3614. VIP_var_TNR_map_slp5_idx_3_weak=51
  3615. VIP_var_TNR_map_slp5_idx_3_medium=66
  3616. VIP_var_TNR_map_slp5_idx_3_strong=58
  3617. VIP_var_TNR_map_fac0_idx_3_weak=42
  3618. VIP_var_TNR_map_fac0_idx_3_medium=1
  3619. VIP_var_TNR_map_fac0_idx_3_strong=0
  3620. VIP_var_TNR_map_fac1_idx_3_weak=68
  3621. VIP_var_TNR_map_fac1_idx_3_medium=12
  3622. VIP_var_TNR_map_fac1_idx_3_strong=4
  3623. VIP_var_TNR_map_fac2_idx_3_weak=94
  3624. VIP_var_TNR_map_fac2_idx_3_medium=22
  3625. VIP_var_TNR_map_fac2_idx_3_strong=8
  3626. VIP_var_TNR_map_fac3_idx_3_weak=112
  3627. VIP_var_TNR_map_fac3_idx_3_medium=37
  3628. VIP_var_TNR_map_fac3_idx_3_strong=17
  3629. VIP_var_TNR_map_fac4_idx_3_weak=127
  3630. VIP_var_TNR_map_fac4_idx_3_medium=73
  3631. VIP_var_TNR_map_fac4_idx_3_strong=43
  3632. VIP_var_TNR_map_fac5_idx_3_weak=175
  3633. VIP_var_TNR_map_fac5_idx_3_medium=111
  3634. VIP_var_TNR_map_fac5_idx_3_strong=101
  3635. VIP_var_TNRSNR_map_enable_idx_3=0x1
  3636. VIP_var_TNRSNR_map_thr0_idx_3_weak=16
  3637. VIP_var_TNRSNR_map_thr0_idx_3_medium=24
  3638. VIP_var_TNRSNR_map_thr0_idx_3_strong=29
  3639. VIP_var_TNRSNR_map_thr1_idx_3_weak=32
  3640. VIP_var_TNRSNR_map_thr1_idx_3_medium=49
  3641. VIP_var_TNRSNR_map_thr1_idx_3_strong=59
  3642. VIP_var_TNRSNR_map_thr2_idx_3_weak=48
  3643. VIP_var_TNRSNR_map_thr2_idx_3_medium=82
  3644. VIP_var_TNRSNR_map_thr2_idx_3_strong=84
  3645. VIP_var_TNRSNR_map_thr3_idx_3_weak=64
  3646. VIP_var_TNRSNR_map_thr3_idx_3_medium=109
  3647. VIP_var_TNRSNR_map_thr3_idx_3_strong=115
  3648. VIP_var_TNRSNR_map_thr4_idx_3_weak=80
  3649. VIP_var_TNRSNR_map_thr4_idx_3_medium=145
  3650. VIP_var_TNRSNR_map_thr4_idx_3_strong=140
  3651. VIP_var_TNRSNR_map_slp0_idx_3_weak=88
  3652. VIP_var_TNRSNR_map_slp0_idx_3_medium=21
  3653. VIP_var_TNRSNR_map_slp0_idx_3_strong=8
  3654. VIP_var_TNRSNR_map_slp1_idx_3_weak=120
  3655. VIP_var_TNRSNR_map_slp1_idx_3_medium=17
  3656. VIP_var_TNRSNR_map_slp1_idx_3_strong=4
  3657. VIP_var_TNRSNR_map_slp2_idx_3_weak=120
  3658. VIP_var_TNRSNR_map_slp2_idx_3_medium=13
  3659. VIP_var_TNRSNR_map_slp2_idx_3_strong=14
  3660. VIP_var_TNRSNR_map_slp3_idx_3_weak=88
  3661. VIP_var_TNRSNR_map_slp3_idx_3_medium=20
  3662. VIP_var_TNRSNR_map_slp3_idx_3_strong=6
  3663. VIP_var_TNRSNR_map_slp4_idx_3_weak=64
  3664. VIP_var_TNRSNR_map_slp4_idx_3_medium=16
  3665. VIP_var_TNRSNR_map_slp4_idx_3_strong=20
  3666. VIP_var_TNRSNR_map_slp5_idx_3_weak=96
  3667. VIP_var_TNRSNR_map_slp5_idx_3_medium=14
  3668. VIP_var_TNRSNR_map_slp5_idx_3_strong=10
  3669. VIP_var_TNRSNR_map_fac0_idx_3_weak=8
  3670. VIP_var_TNRSNR_map_fac0_idx_3_medium=1
  3671. VIP_var_TNRSNR_map_fac0_idx_3_strong=0
  3672. VIP_var_TNRSNR_map_fac1_idx_3_weak=19
  3673. VIP_var_TNRSNR_map_fac1_idx_3_medium=17
  3674. VIP_var_TNRSNR_map_fac1_idx_3_strong=8
  3675. VIP_var_TNRSNR_map_fac2_idx_3_weak=34
  3676. VIP_var_TNRSNR_map_fac2_idx_3_medium=31
  3677. VIP_var_TNRSNR_map_fac2_idx_3_strong=12
  3678. VIP_var_TNRSNR_map_fac3_idx_3_weak=49
  3679. VIP_var_TNRSNR_map_fac3_idx_3_medium=45
  3680. VIP_var_TNRSNR_map_fac3_idx_3_strong=23
  3681. VIP_var_TNRSNR_map_fac4_idx_3_weak=60
  3682. VIP_var_TNRSNR_map_fac4_idx_3_medium=62
  3683. VIP_var_TNRSNR_map_fac4_idx_3_strong=29
  3684. VIP_var_TNRSNR_map_fac5_idx_3_weak=68
  3685. VIP_var_TNRSNR_map_fac5_idx_3_medium=81
  3686. VIP_var_TNRSNR_map_fac5_idx_3_strong=45
  3687. VIP_var_TNRC_map_enable_idx_3=0x1
  3688. VIP_var_TNRC_map_thr0_idx_3_weak=49
  3689. VIP_var_TNRC_map_thr0_idx_3_medium=42
  3690. VIP_var_TNRC_map_thr0_idx_3_strong=43
  3691. VIP_var_TNRC_map_thr1_idx_3_weak=95
  3692. VIP_var_TNRC_map_thr1_idx_3_medium=81
  3693. VIP_var_TNRC_map_thr1_idx_3_strong=83
  3694. VIP_var_TNRC_map_thr2_idx_3_weak=136
  3695. VIP_var_TNRC_map_thr2_idx_3_medium=135
  3696. VIP_var_TNRC_map_thr2_idx_3_strong=125
  3697. VIP_var_TNRC_map_thr3_idx_3_weak=173
  3698. VIP_var_TNRC_map_thr3_idx_3_medium=176
  3699. VIP_var_TNRC_map_thr3_idx_3_strong=167
  3700. VIP_var_TNRC_map_thr4_idx_3_weak=202
  3701. VIP_var_TNRC_map_thr4_idx_3_medium=219
  3702. VIP_var_TNRC_map_thr4_idx_3_strong=215
  3703. VIP_var_TNRC_map_slp0_idx_3_weak=20
  3704. VIP_var_TNRC_map_slp0_idx_3_medium=9
  3705. VIP_var_TNRC_map_slp0_idx_3_strong=4
  3706. VIP_var_TNRC_map_slp1_idx_3_weak=27
  3707. VIP_var_TNRC_map_slp1_idx_3_medium=14
  3708. VIP_var_TNRC_map_slp1_idx_3_strong=11
  3709. VIP_var_TNRC_map_slp2_idx_3_weak=26
  3710. VIP_var_TNRC_map_slp2_idx_3_medium=21
  3711. VIP_var_TNRC_map_slp2_idx_3_strong=21
  3712. VIP_var_TNRC_map_slp3_idx_3_weak=39
  3713. VIP_var_TNRC_map_slp3_idx_3_medium=32
  3714. VIP_var_TNRC_map_slp3_idx_3_strong=24
  3715. VIP_var_TNRC_map_slp4_idx_3_weak=66
  3716. VIP_var_TNRC_map_slp4_idx_3_medium=38
  3717. VIP_var_TNRC_map_slp4_idx_3_strong=28
  3718. VIP_var_TNRC_map_slp5_idx_3_weak=120
  3719. VIP_var_TNRC_map_slp5_idx_3_medium=197
  3720. VIP_var_TNRC_map_slp5_idx_3_strong=84
  3721. VIP_var_TNRC_map_fac0_idx_3_weak=0
  3722. VIP_var_TNRC_map_fac0_idx_3_medium=0
  3723. VIP_var_TNRC_map_fac0_idx_3_strong=0
  3724. VIP_var_TNRC_map_fac1_idx_3_weak=16
  3725. VIP_var_TNRC_map_fac1_idx_3_medium=6
  3726. VIP_var_TNRC_map_fac1_idx_3_strong=3
  3727. VIP_var_TNRC_map_fac2_idx_3_weak=36
  3728. VIP_var_TNRC_map_fac2_idx_3_medium=15
  3729. VIP_var_TNRC_map_fac2_idx_3_strong=10
  3730. VIP_var_TNRC_map_fac3_idx_3_weak=53
  3731. VIP_var_TNRC_map_fac3_idx_3_medium=33
  3732. VIP_var_TNRC_map_fac3_idx_3_strong=24
  3733. VIP_var_TNRC_map_fac4_idx_3_weak=76
  3734. VIP_var_TNRC_map_fac4_idx_3_medium=54
  3735. VIP_var_TNRC_map_fac4_idx_3_strong=40
  3736. VIP_var_TNRC_map_fac5_idx_3_weak=106
  3737. VIP_var_TNRC_map_fac5_idx_3_medium=80
  3738. VIP_var_TNRC_map_fac5_idx_3_strong=61
  3739. VIP_var_TNRZ_map_enable_idx_3=0x1
  3740. VIP_var_TNRZ_map_thr0_idx_3_weak=14
  3741. VIP_var_TNRZ_map_thr0_idx_3_medium=29
  3742. VIP_var_TNRZ_map_thr0_idx_3_strong=20
  3743. VIP_var_TNRZ_map_thr1_idx_3_weak=28
  3744. VIP_var_TNRZ_map_thr1_idx_3_medium=45
  3745. VIP_var_TNRZ_map_thr1_idx_3_strong=34
  3746. VIP_var_TNRZ_map_thr2_idx_3_weak=47
  3747. VIP_var_TNRZ_map_thr2_idx_3_medium=59
  3748. VIP_var_TNRZ_map_thr2_idx_3_strong=48
  3749. VIP_var_TNRZ_map_thr3_idx_3_weak=60
  3750. VIP_var_TNRZ_map_thr3_idx_3_medium=68
  3751. VIP_var_TNRZ_map_thr3_idx_3_strong=62
  3752. VIP_var_TNRZ_map_thr4_idx_3_weak=78
  3753. VIP_var_TNRZ_map_thr4_idx_3_medium=79
  3754. VIP_var_TNRZ_map_thr4_idx_3_strong=92
  3755. VIP_var_TNRZ_map_slp0_idx_3_weak=16
  3756. VIP_var_TNRZ_map_slp0_idx_3_medium=22
  3757. VIP_var_TNRZ_map_slp0_idx_3_strong=25
  3758. VIP_var_TNRZ_map_slp1_idx_3_weak=22
  3759. VIP_var_TNRZ_map_slp1_idx_3_medium=32
  3760. VIP_var_TNRZ_map_slp1_idx_3_strong=27
  3761. VIP_var_TNRZ_map_slp2_idx_3_weak=18
  3762. VIP_var_TNRZ_map_slp2_idx_3_medium=25
  3763. VIP_var_TNRZ_map_slp2_idx_3_strong=43
  3764. VIP_var_TNRZ_map_slp3_idx_3_weak=44
  3765. VIP_var_TNRZ_map_slp3_idx_3_medium=39
  3766. VIP_var_TNRZ_map_slp3_idx_3_strong=48
  3767. VIP_var_TNRZ_map_slp4_idx_3_weak=42
  3768. VIP_var_TNRZ_map_slp4_idx_3_medium=52
  3769. VIP_var_TNRZ_map_slp4_idx_3_strong=41
  3770. VIP_var_TNRZ_map_slp5_idx_3_weak=93
  3771. VIP_var_TNRZ_map_slp5_idx_3_medium=105
  3772. VIP_var_TNRZ_map_slp5_idx_3_strong=146
  3773. VIP_var_TNRZ_map_fac0_idx_3_weak=91
  3774. VIP_var_TNRZ_map_fac0_idx_3_medium=61
  3775. VIP_var_TNRZ_map_fac0_idx_3_strong=6
  3776. VIP_var_TNRZ_map_fac1_idx_3_weak=98
  3777. VIP_var_TNRZ_map_fac1_idx_3_medium=81
  3778. VIP_var_TNRZ_map_fac1_idx_3_strong=22
  3779. VIP_var_TNRZ_map_fac2_idx_3_weak=108
  3780. VIP_var_TNRZ_map_fac2_idx_3_medium=97
  3781. VIP_var_TNRZ_map_fac2_idx_3_strong=34
  3782. VIP_var_TNRZ_map_fac3_idx_3_weak=119
  3783. VIP_var_TNRZ_map_fac3_idx_3_medium=108
  3784. VIP_var_TNRZ_map_fac3_idx_3_strong=53
  3785. VIP_var_TNRZ_map_fac4_idx_3_weak=137
  3786. VIP_var_TNRZ_map_fac4_idx_3_medium=119
  3787. VIP_var_TNRZ_map_fac4_idx_3_strong=74
  3788. VIP_var_TNRZ_map_fac5_idx_3_weak=161
  3789. VIP_var_TNRZ_map_fac5_idx_3_medium=137
  3790. VIP_var_TNRZ_map_fac5_idx_3_strong=113
  3791. VIP_var_TNRZC_map_enable_idx_3=0x1
  3792. VIP_var_TNRZC_map_thr0_idx_3_weak=46
  3793. VIP_var_TNRZC_map_thr0_idx_3_medium=49
  3794. VIP_var_TNRZC_map_thr0_idx_3_strong=54
  3795. VIP_var_TNRZC_map_thr1_idx_3_weak=85
  3796. VIP_var_TNRZC_map_thr1_idx_3_medium=80
  3797. VIP_var_TNRZC_map_thr1_idx_3_strong=103
  3798. VIP_var_TNRZC_map_thr2_idx_3_weak=118
  3799. VIP_var_TNRZC_map_thr2_idx_3_medium=120
  3800. VIP_var_TNRZC_map_thr2_idx_3_strong=145
  3801. VIP_var_TNRZC_map_thr3_idx_3_weak=148
  3802. VIP_var_TNRZC_map_thr3_idx_3_medium=162
  3803. VIP_var_TNRZC_map_thr3_idx_3_strong=193
  3804. VIP_var_TNRZC_map_thr4_idx_3_weak=192
  3805. VIP_var_TNRZC_map_thr4_idx_3_medium=209
  3806. VIP_var_TNRZC_map_thr4_idx_3_strong=219
  3807. VIP_var_TNRZC_map_slp0_idx_3_weak=34
  3808. VIP_var_TNRZC_map_slp0_idx_3_medium=15
  3809. VIP_var_TNRZC_map_slp0_idx_3_strong=8
  3810. VIP_var_TNRZC_map_slp1_idx_3_weak=31
  3811. VIP_var_TNRZC_map_slp1_idx_3_medium=18
  3812. VIP_var_TNRZC_map_slp1_idx_3_strong=11
  3813. VIP_var_TNRZC_map_slp2_idx_3_weak=29
  3814. VIP_var_TNRZC_map_slp2_idx_3_medium=20
  3815. VIP_var_TNRZC_map_slp2_idx_3_strong=18
  3816. VIP_var_TNRZC_map_slp3_idx_3_weak=25
  3817. VIP_var_TNRZC_map_slp3_idx_3_medium=25
  3818. VIP_var_TNRZC_map_slp3_idx_3_strong=18
  3819. VIP_var_TNRZC_map_slp4_idx_3_weak=29
  3820. VIP_var_TNRZC_map_slp4_idx_3_medium=20
  3821. VIP_var_TNRZC_map_slp4_idx_3_strong=22
  3822. VIP_var_TNRZC_map_slp5_idx_3_weak=48
  3823. VIP_var_TNRZC_map_slp5_idx_3_medium=59
  3824. VIP_var_TNRZC_map_slp5_idx_3_strong=64
  3825. VIP_var_TNRZC_map_fac0_idx_3_weak=0
  3826. VIP_var_TNRZC_map_fac0_idx_3_medium=0
  3827. VIP_var_TNRZC_map_fac0_idx_3_strong=0
  3828. VIP_var_TNRZC_map_fac1_idx_3_weak=25
  3829. VIP_var_TNRZC_map_fac1_idx_3_medium=12
  3830. VIP_var_TNRZC_map_fac1_idx_3_strong=7
  3831. VIP_var_TNRZC_map_fac2_idx_3_weak=44
  3832. VIP_var_TNRZC_map_fac2_idx_3_medium=21
  3833. VIP_var_TNRZC_map_fac2_idx_3_strong=16
  3834. VIP_var_TNRZC_map_fac3_idx_3_weak=59
  3835. VIP_var_TNRZC_map_fac3_idx_3_medium=34
  3836. VIP_var_TNRZC_map_fac3_idx_3_strong=28
  3837. VIP_var_TNRZC_map_fac4_idx_3_weak=71
  3838. VIP_var_TNRZC_map_fac4_idx_3_medium=51
  3839. VIP_var_TNRZC_map_fac4_idx_3_strong=42
  3840. VIP_var_TNRZC_map_fac5_idx_3_weak=91
  3841. VIP_var_TNRZC_map_fac5_idx_3_medium=66
  3842. VIP_var_TNRZC_map_fac5_idx_3_strong=51
  3843. VIP_var_luma_tnr_coring_idx_4_weak=4
  3844. VIP_var_luma_tnr_coring_idx_4_medium=8
  3845. VIP_var_luma_tnr_coring_idx_4_strong=10
  3846. VIP_var_luma_tnr_strength_idx_4_weak=0
  3847. VIP_var_luma_tnr_strength_idx_4_medium=0
  3848. VIP_var_luma_tnr_strength_idx_4_strong=0
  3849. VIP_var_chroma_tnr_coring_idx_4_weak=4
  3850. VIP_var_chroma_tnr_coring_idx_4_medium=8
  3851. VIP_var_chroma_tnr_coring_idx_4_strong=12
  3852. VIP_var_chroma_tnr_strength_idx_4_weak=0
  3853. VIP_var_chroma_tnr_strength_idx_4_medium=0
  3854. VIP_var_chroma_tnr_strength_idx_4_strong=0
  3855. VIP_var_luma_snr1_coring_idx_4_weak=4
  3856. VIP_var_luma_snr1_coring_idx_4_medium=8
  3857. VIP_var_luma_snr1_coring_idx_4_strong=9
  3858. VIP_var_luma_snr1_strength_idx_4_weak=0
  3859. VIP_var_luma_snr1_strength_idx_4_medium=0
  3860. VIP_var_luma_snr1_strength_idx_4_strong=0
  3861. VIP_var_luma_snr2_coring_idx_4_weak=4
  3862. VIP_var_luma_snr2_coring_idx_4_medium=8
  3863. VIP_var_luma_snr2_coring_idx_4_strong=12
  3864. VIP_var_luma_snr2_strength_idx_4_weak=4
  3865. VIP_var_luma_snr2_strength_idx_4_medium=8
  3866. VIP_var_luma_snr2_strength_idx_4_strong=8
  3867. VIP_var_chroma_snr_coring_idx_4_weak=4
  3868. VIP_var_chroma_snr_coring_idx_4_medium=8
  3869. VIP_var_chroma_snr_coring_idx_4_strong=7
  3870. VIP_var_chroma_snr_strength_idx_4_weak=0
  3871. VIP_var_chroma_snr_strength_idx_4_medium=0
  3872. VIP_var_chroma_snr_strength_idx_4_strong=0
  3873. VIP_var_block_nr_coring_idx_4_weak=2
  3874. VIP_var_block_nr_coring_idx_4_medium=5
  3875. VIP_var_block_nr_coring_idx_4_strong=8
  3876. VIP_var_block_nr_strength_idx_4_weak=2
  3877. VIP_var_block_nr_strength_idx_4_medium=5
  3878. VIP_var_block_nr_strength_idx_4_strong=8
  3879. VIP_var_mosquito_nr_coring_idx_4_weak=2
  3880. VIP_var_mosquito_nr_coring_idx_4_medium=5
  3881. VIP_var_mosquito_nr_coring_idx_4_strong=9
  3882. VIP_var_mosquito_nr_strength_idx_4_weak=2
  3883. VIP_var_mosquito_nr_strength_idx_4_medium=5
  3884. VIP_var_mosquito_nr_strength_idx_4_strong=9
  3885. VIP_var_tnr_ultra_low_ctl_idx_4=0
  3886. VIP_var_snr_ultra_low_ctl_idx_4=0
  3887. VIP_var_TNR_map_enable_idx_4=0x1
  3888. VIP_var_TNR_map_thr0_idx_4_weak=16
  3889. VIP_var_TNR_map_thr0_idx_4_medium=16
  3890. VIP_var_TNR_map_thr0_idx_4_strong=16
  3891. VIP_var_TNR_map_thr1_idx_4_weak=32
  3892. VIP_var_TNR_map_thr1_idx_4_medium=32
  3893. VIP_var_TNR_map_thr1_idx_4_strong=32
  3894. VIP_var_TNR_map_thr2_idx_4_weak=48
  3895. VIP_var_TNR_map_thr2_idx_4_medium=48
  3896. VIP_var_TNR_map_thr2_idx_4_strong=48
  3897. VIP_var_TNR_map_thr3_idx_4_weak=64
  3898. VIP_var_TNR_map_thr3_idx_4_medium=64
  3899. VIP_var_TNR_map_thr3_idx_4_strong=64
  3900. VIP_var_TNR_map_thr4_idx_4_weak=80
  3901. VIP_var_TNR_map_thr4_idx_4_medium=80
  3902. VIP_var_TNR_map_thr4_idx_4_strong=80
  3903. VIP_var_TNR_map_slp0_idx_4_weak=88
  3904. VIP_var_TNR_map_slp0_idx_4_medium=88
  3905. VIP_var_TNR_map_slp0_idx_4_strong=88
  3906. VIP_var_TNR_map_slp1_idx_4_weak=120
  3907. VIP_var_TNR_map_slp1_idx_4_medium=120
  3908. VIP_var_TNR_map_slp1_idx_4_strong=120
  3909. VIP_var_TNR_map_slp2_idx_4_weak=120
  3910. VIP_var_TNR_map_slp2_idx_4_medium=120
  3911. VIP_var_TNR_map_slp2_idx_4_strong=120
  3912. VIP_var_TNR_map_slp3_idx_4_weak=88
  3913. VIP_var_TNR_map_slp3_idx_4_medium=88
  3914. VIP_var_TNR_map_slp3_idx_4_strong=88
  3915. VIP_var_TNR_map_slp4_idx_4_weak=64
  3916. VIP_var_TNR_map_slp4_idx_4_medium=64
  3917. VIP_var_TNR_map_slp4_idx_4_strong=64
  3918. VIP_var_TNR_map_slp5_idx_4_weak=96
  3919. VIP_var_TNR_map_slp5_idx_4_medium=96
  3920. VIP_var_TNR_map_slp5_idx_4_strong=96
  3921. VIP_var_TNR_map_fac0_idx_4_weak=8
  3922. VIP_var_TNR_map_fac0_idx_4_medium=8
  3923. VIP_var_TNR_map_fac0_idx_4_strong=8
  3924. VIP_var_TNR_map_fac1_idx_4_weak=19
  3925. VIP_var_TNR_map_fac1_idx_4_medium=19
  3926. VIP_var_TNR_map_fac1_idx_4_strong=19
  3927. VIP_var_TNR_map_fac2_idx_4_weak=34
  3928. VIP_var_TNR_map_fac2_idx_4_medium=34
  3929. VIP_var_TNR_map_fac2_idx_4_strong=34
  3930. VIP_var_TNR_map_fac3_idx_4_weak=49
  3931. VIP_var_TNR_map_fac3_idx_4_medium=49
  3932. VIP_var_TNR_map_fac3_idx_4_strong=49
  3933. VIP_var_TNR_map_fac4_idx_4_weak=60
  3934. VIP_var_TNR_map_fac4_idx_4_medium=60
  3935. VIP_var_TNR_map_fac4_idx_4_strong=60
  3936. VIP_var_TNR_map_fac5_idx_4_weak=68
  3937. VIP_var_TNR_map_fac5_idx_4_medium=68
  3938. VIP_var_TNR_map_fac5_idx_4_strong=68
  3939. VIP_var_TNRSNR_map_enable_idx_4=0x1
  3940. VIP_var_TNRSNR_map_thr0_idx_4_weak=16
  3941. VIP_var_TNRSNR_map_thr0_idx_4_medium=16
  3942. VIP_var_TNRSNR_map_thr0_idx_4_strong=16
  3943. VIP_var_TNRSNR_map_thr1_idx_4_weak=32
  3944. VIP_var_TNRSNR_map_thr1_idx_4_medium=32
  3945. VIP_var_TNRSNR_map_thr1_idx_4_strong=32
  3946. VIP_var_TNRSNR_map_thr2_idx_4_weak=48
  3947. VIP_var_TNRSNR_map_thr2_idx_4_medium=48
  3948. VIP_var_TNRSNR_map_thr2_idx_4_strong=48
  3949. VIP_var_TNRSNR_map_thr3_idx_4_weak=64
  3950. VIP_var_TNRSNR_map_thr3_idx_4_medium=64
  3951. VIP_var_TNRSNR_map_thr3_idx_4_strong=64
  3952. VIP_var_TNRSNR_map_thr4_idx_4_weak=80
  3953. VIP_var_TNRSNR_map_thr4_idx_4_medium=80
  3954. VIP_var_TNRSNR_map_thr4_idx_4_strong=80
  3955. VIP_var_TNRSNR_map_slp0_idx_4_weak=88
  3956. VIP_var_TNRSNR_map_slp0_idx_4_medium=88
  3957. VIP_var_TNRSNR_map_slp0_idx_4_strong=88
  3958. VIP_var_TNRSNR_map_slp1_idx_4_weak=120
  3959. VIP_var_TNRSNR_map_slp1_idx_4_medium=120
  3960. VIP_var_TNRSNR_map_slp1_idx_4_strong=120
  3961. VIP_var_TNRSNR_map_slp2_idx_4_weak=120
  3962. VIP_var_TNRSNR_map_slp2_idx_4_medium=120
  3963. VIP_var_TNRSNR_map_slp2_idx_4_strong=120
  3964. VIP_var_TNRSNR_map_slp3_idx_4_weak=88
  3965. VIP_var_TNRSNR_map_slp3_idx_4_medium=88
  3966. VIP_var_TNRSNR_map_slp3_idx_4_strong=88
  3967. VIP_var_TNRSNR_map_slp4_idx_4_weak=64
  3968. VIP_var_TNRSNR_map_slp4_idx_4_medium=64
  3969. VIP_var_TNRSNR_map_slp4_idx_4_strong=64
  3970. VIP_var_TNRSNR_map_slp5_idx_4_weak=96
  3971. VIP_var_TNRSNR_map_slp5_idx_4_medium=96
  3972. VIP_var_TNRSNR_map_slp5_idx_4_strong=96
  3973. VIP_var_TNRSNR_map_fac0_idx_4_weak=8
  3974. VIP_var_TNRSNR_map_fac0_idx_4_medium=8
  3975. VIP_var_TNRSNR_map_fac0_idx_4_strong=8
  3976. VIP_var_TNRSNR_map_fac1_idx_4_weak=19
  3977. VIP_var_TNRSNR_map_fac1_idx_4_medium=19
  3978. VIP_var_TNRSNR_map_fac1_idx_4_strong=19
  3979. VIP_var_TNRSNR_map_fac2_idx_4_weak=34
  3980. VIP_var_TNRSNR_map_fac2_idx_4_medium=34
  3981. VIP_var_TNRSNR_map_fac2_idx_4_strong=34
  3982. VIP_var_TNRSNR_map_fac3_idx_4_weak=49
  3983. VIP_var_TNRSNR_map_fac3_idx_4_medium=49
  3984. VIP_var_TNRSNR_map_fac3_idx_4_strong=49
  3985. VIP_var_TNRSNR_map_fac4_idx_4_weak=60
  3986. VIP_var_TNRSNR_map_fac4_idx_4_medium=60
  3987. VIP_var_TNRSNR_map_fac4_idx_4_strong=60
  3988. VIP_var_TNRSNR_map_fac5_idx_4_weak=68
  3989. VIP_var_TNRSNR_map_fac5_idx_4_medium=68
  3990. VIP_var_TNRSNR_map_fac5_idx_4_strong=68
  3991. VIP_var_TNRC_map_enable_idx_4=0x1
  3992. VIP_var_TNRC_map_thr0_idx_4_weak=16
  3993. VIP_var_TNRC_map_thr0_idx_4_medium=16
  3994. VIP_var_TNRC_map_thr0_idx_4_strong=16
  3995. VIP_var_TNRC_map_thr1_idx_4_weak=32
  3996. VIP_var_TNRC_map_thr1_idx_4_medium=32
  3997. VIP_var_TNRC_map_thr1_idx_4_strong=32
  3998. VIP_var_TNRC_map_thr2_idx_4_weak=48
  3999. VIP_var_TNRC_map_thr2_idx_4_medium=48
  4000. VIP_var_TNRC_map_thr2_idx_4_strong=48
  4001. VIP_var_TNRC_map_thr3_idx_4_weak=64
  4002. VIP_var_TNRC_map_thr3_idx_4_medium=64
  4003. VIP_var_TNRC_map_thr3_idx_4_strong=64
  4004. VIP_var_TNRC_map_thr4_idx_4_weak=80
  4005. VIP_var_TNRC_map_thr4_idx_4_medium=80
  4006. VIP_var_TNRC_map_thr4_idx_4_strong=80
  4007. VIP_var_TNRC_map_slp0_idx_4_weak=88
  4008. VIP_var_TNRC_map_slp0_idx_4_medium=88
  4009. VIP_var_TNRC_map_slp0_idx_4_strong=88
  4010. VIP_var_TNRC_map_slp1_idx_4_weak=120
  4011. VIP_var_TNRC_map_slp1_idx_4_medium=120
  4012. VIP_var_TNRC_map_slp1_idx_4_strong=120
  4013. VIP_var_TNRC_map_slp2_idx_4_weak=120
  4014. VIP_var_TNRC_map_slp2_idx_4_medium=120
  4015. VIP_var_TNRC_map_slp2_idx_4_strong=120
  4016. VIP_var_TNRC_map_slp3_idx_4_weak=88
  4017. VIP_var_TNRC_map_slp3_idx_4_medium=88
  4018. VIP_var_TNRC_map_slp3_idx_4_strong=88
  4019. VIP_var_TNRC_map_slp4_idx_4_weak=64
  4020. VIP_var_TNRC_map_slp4_idx_4_medium=64
  4021. VIP_var_TNRC_map_slp4_idx_4_strong=64
  4022. VIP_var_TNRC_map_slp5_idx_4_weak=96
  4023. VIP_var_TNRC_map_slp5_idx_4_medium=96
  4024. VIP_var_TNRC_map_slp5_idx_4_strong=96
  4025. VIP_var_TNRC_map_fac0_idx_4_weak=8
  4026. VIP_var_TNRC_map_fac0_idx_4_medium=8
  4027. VIP_var_TNRC_map_fac0_idx_4_strong=8
  4028. VIP_var_TNRC_map_fac1_idx_4_weak=19
  4029. VIP_var_TNRC_map_fac1_idx_4_medium=19
  4030. VIP_var_TNRC_map_fac1_idx_4_strong=19
  4031. VIP_var_TNRC_map_fac2_idx_4_weak=34
  4032. VIP_var_TNRC_map_fac2_idx_4_medium=34
  4033. VIP_var_TNRC_map_fac2_idx_4_strong=34
  4034. VIP_var_TNRC_map_fac3_idx_4_weak=49
  4035. VIP_var_TNRC_map_fac3_idx_4_medium=49
  4036. VIP_var_TNRC_map_fac3_idx_4_strong=49
  4037. VIP_var_TNRC_map_fac4_idx_4_weak=60
  4038. VIP_var_TNRC_map_fac4_idx_4_medium=60
  4039. VIP_var_TNRC_map_fac4_idx_4_strong=60
  4040. VIP_var_TNRC_map_fac5_idx_4_weak=68
  4041. VIP_var_TNRC_map_fac5_idx_4_medium=68
  4042. VIP_var_TNRC_map_fac5_idx_4_strong=68
  4043. VIP_var_TNRZ_map_enable_idx_4=0x1
  4044. VIP_var_TNRZ_map_thr0_idx_4_weak=12
  4045. VIP_var_TNRZ_map_thr0_idx_4_medium=12
  4046. VIP_var_TNRZ_map_thr0_idx_4_strong=12
  4047. VIP_var_TNRZ_map_thr1_idx_4_weak=24
  4048. VIP_var_TNRZ_map_thr1_idx_4_medium=24
  4049. VIP_var_TNRZ_map_thr1_idx_4_strong=24
  4050. VIP_var_TNRZ_map_thr2_idx_4_weak=32
  4051. VIP_var_TNRZ_map_thr2_idx_4_medium=32
  4052. VIP_var_TNRZ_map_thr2_idx_4_strong=32
  4053. VIP_var_TNRZ_map_thr3_idx_4_weak=48
  4054. VIP_var_TNRZ_map_thr3_idx_4_medium=48
  4055. VIP_var_TNRZ_map_thr3_idx_4_strong=48
  4056. VIP_var_TNRZ_map_thr4_idx_4_weak=64
  4057. VIP_var_TNRZ_map_thr4_idx_4_medium=64
  4058. VIP_var_TNRZ_map_thr4_idx_4_strong=64
  4059. VIP_var_TNRZ_map_slp0_idx_4_weak=288
  4060. VIP_var_TNRZ_map_slp0_idx_4_medium=288
  4061. VIP_var_TNRZ_map_slp0_idx_4_strong=288
  4062. VIP_var_TNRZ_map_slp1_idx_4_weak=138
  4063. VIP_var_TNRZ_map_slp1_idx_4_medium=138
  4064. VIP_var_TNRZ_map_slp1_idx_4_strong=138
  4065. VIP_var_TNRZ_map_slp2_idx_4_weak=240
  4066. VIP_var_TNRZ_map_slp2_idx_4_medium=240
  4067. VIP_var_TNRZ_map_slp2_idx_4_strong=240
  4068. VIP_var_TNRZ_map_slp3_idx_4_weak=104
  4069. VIP_var_TNRZ_map_slp3_idx_4_medium=104
  4070. VIP_var_TNRZ_map_slp3_idx_4_strong=104
  4071. VIP_var_TNRZ_map_slp4_idx_4_weak=72
  4072. VIP_var_TNRZ_map_slp4_idx_4_medium=72
  4073. VIP_var_TNRZ_map_slp4_idx_4_strong=72
  4074. VIP_var_TNRZ_map_slp5_idx_4_weak=92
  4075. VIP_var_TNRZ_map_slp5_idx_4_medium=92
  4076. VIP_var_TNRZ_map_slp5_idx_4_strong=92
  4077. VIP_var_TNRZ_map_fac0_idx_4_weak=0
  4078. VIP_var_TNRZ_map_fac0_idx_4_medium=0
  4079. VIP_var_TNRZ_map_fac0_idx_4_strong=0
  4080. VIP_var_TNRZ_map_fac1_idx_4_weak=27
  4081. VIP_var_TNRZ_map_fac1_idx_4_medium=27
  4082. VIP_var_TNRZ_map_fac1_idx_4_strong=27
  4083. VIP_var_TNRZ_map_fac2_idx_4_weak=40
  4084. VIP_var_TNRZ_map_fac2_idx_4_medium=40
  4085. VIP_var_TNRZ_map_fac2_idx_4_strong=40
  4086. VIP_var_TNRZ_map_fac3_idx_4_weak=55
  4087. VIP_var_TNRZ_map_fac3_idx_4_medium=55
  4088. VIP_var_TNRZ_map_fac3_idx_4_strong=55
  4089. VIP_var_TNRZ_map_fac4_idx_4_weak=68
  4090. VIP_var_TNRZ_map_fac4_idx_4_medium=68
  4091. VIP_var_TNRZ_map_fac4_idx_4_strong=68
  4092. VIP_var_TNRZ_map_fac5_idx_4_weak=77
  4093. VIP_var_TNRZ_map_fac5_idx_4_medium=77
  4094. VIP_var_TNRZ_map_fac5_idx_4_strong=77
  4095. VIP_var_TNRZC_map_enable_idx_4=0x1
  4096. VIP_var_TNRZC_map_thr0_idx_4_weak=12
  4097. VIP_var_TNRZC_map_thr0_idx_4_medium=12
  4098. VIP_var_TNRZC_map_thr0_idx_4_strong=12
  4099. VIP_var_TNRZC_map_thr1_idx_4_weak=24
  4100. VIP_var_TNRZC_map_thr1_idx_4_medium=24
  4101. VIP_var_TNRZC_map_thr1_idx_4_strong=24
  4102. VIP_var_TNRZC_map_thr2_idx_4_weak=32
  4103. VIP_var_TNRZC_map_thr2_idx_4_medium=32
  4104. VIP_var_TNRZC_map_thr2_idx_4_strong=32
  4105. VIP_var_TNRZC_map_thr3_idx_4_weak=48
  4106. VIP_var_TNRZC_map_thr3_idx_4_medium=48
  4107. VIP_var_TNRZC_map_thr3_idx_4_strong=48
  4108. VIP_var_TNRZC_map_thr4_idx_4_weak=64
  4109. VIP_var_TNRZC_map_thr4_idx_4_medium=64
  4110. VIP_var_TNRZC_map_thr4_idx_4_strong=64
  4111. VIP_var_TNRZC_map_slp0_idx_4_weak=288
  4112. VIP_var_TNRZC_map_slp0_idx_4_medium=288
  4113. VIP_var_TNRZC_map_slp0_idx_4_strong=288
  4114. VIP_var_TNRZC_map_slp1_idx_4_weak=138
  4115. VIP_var_TNRZC_map_slp1_idx_4_medium=138
  4116. VIP_var_TNRZC_map_slp1_idx_4_strong=138
  4117. VIP_var_TNRZC_map_slp2_idx_4_weak=240
  4118. VIP_var_TNRZC_map_slp2_idx_4_medium=240
  4119. VIP_var_TNRZC_map_slp2_idx_4_strong=240
  4120. VIP_var_TNRZC_map_slp3_idx_4_weak=104
  4121. VIP_var_TNRZC_map_slp3_idx_4_medium=104
  4122. VIP_var_TNRZC_map_slp3_idx_4_strong=104
  4123. VIP_var_TNRZC_map_slp4_idx_4_weak=72
  4124. VIP_var_TNRZC_map_slp4_idx_4_medium=72
  4125. VIP_var_TNRZC_map_slp4_idx_4_strong=72
  4126. VIP_var_TNRZC_map_slp5_idx_4_weak=92
  4127. VIP_var_TNRZC_map_slp5_idx_4_medium=92
  4128. VIP_var_TNRZC_map_slp5_idx_4_strong=92
  4129. VIP_var_TNRZC_map_fac0_idx_4_weak=0
  4130. VIP_var_TNRZC_map_fac0_idx_4_medium=0
  4131. VIP_var_TNRZC_map_fac0_idx_4_strong=0
  4132. VIP_var_TNRZC_map_fac1_idx_4_weak=27
  4133. VIP_var_TNRZC_map_fac1_idx_4_medium=27
  4134. VIP_var_TNRZC_map_fac1_idx_4_strong=27
  4135. VIP_var_TNRZC_map_fac2_idx_4_weak=40
  4136. VIP_var_TNRZC_map_fac2_idx_4_medium=40
  4137. VIP_var_TNRZC_map_fac2_idx_4_strong=40
  4138. VIP_var_TNRZC_map_fac3_idx_4_weak=55
  4139. VIP_var_TNRZC_map_fac3_idx_4_medium=55
  4140. VIP_var_TNRZC_map_fac3_idx_4_strong=55
  4141. VIP_var_TNRZC_map_fac4_idx_4_weak=68
  4142. VIP_var_TNRZC_map_fac4_idx_4_medium=68
  4143. VIP_var_TNRZC_map_fac4_idx_4_strong=68
  4144. VIP_var_TNRZC_map_fac5_idx_4_weak=77
  4145. VIP_var_TNRZC_map_fac5_idx_4_medium=77
  4146. VIP_var_TNRZC_map_fac5_idx_4_strong=77
  4147. VIP_var_luma_tnr_coring_idx_5_weak=0
  4148. VIP_var_luma_tnr_coring_idx_5_medium=0
  4149. VIP_var_luma_tnr_coring_idx_5_strong=0
  4150. VIP_var_luma_tnr_strength_idx_5_weak=3
  4151. VIP_var_luma_tnr_strength_idx_5_medium=6
  4152. VIP_var_luma_tnr_strength_idx_5_strong=11
  4153. VIP_var_chroma_tnr_coring_idx_5_weak=0
  4154. VIP_var_chroma_tnr_coring_idx_5_medium=0
  4155. VIP_var_chroma_tnr_coring_idx_5_strong=0
  4156. VIP_var_chroma_tnr_strength_idx_5_weak=2
  4157. VIP_var_chroma_tnr_strength_idx_5_medium=9
  4158. VIP_var_chroma_tnr_strength_idx_5_strong=8
  4159. VIP_var_luma_snr1_coring_idx_5_weak=0
  4160. VIP_var_luma_snr1_coring_idx_5_medium=0
  4161. VIP_var_luma_snr1_coring_idx_5_strong=0
  4162. VIP_var_luma_snr1_strength_idx_5_weak=1
  4163. VIP_var_luma_snr1_strength_idx_5_medium=4
  4164. VIP_var_luma_snr1_strength_idx_5_strong=10
  4165. VIP_var_luma_snr2_coring_idx_5_weak=0
  4166. VIP_var_luma_snr2_coring_idx_5_medium=0
  4167. VIP_var_luma_snr2_coring_idx_5_strong=0
  4168. VIP_var_luma_snr2_strength_idx_5_weak=0
  4169. VIP_var_luma_snr2_strength_idx_5_medium=0
  4170. VIP_var_luma_snr2_strength_idx_5_strong=0
  4171. VIP_var_chroma_snr_coring_idx_5_weak=0
  4172. VIP_var_chroma_snr_coring_idx_5_medium=0
  4173. VIP_var_chroma_snr_coring_idx_5_strong=0
  4174. VIP_var_chroma_snr_strength_idx_5_weak=3
  4175. VIP_var_chroma_snr_strength_idx_5_medium=8
  4176. VIP_var_chroma_snr_strength_idx_5_strong=10
  4177. VIP_var_block_nr_coring_idx_5_weak=5
  4178. VIP_var_block_nr_coring_idx_5_medium=5
  4179. VIP_var_block_nr_coring_idx_5_strong=5
  4180. VIP_var_block_nr_strength_idx_5_weak=5
  4181. VIP_var_block_nr_strength_idx_5_medium=5
  4182. VIP_var_block_nr_strength_idx_5_strong=5
  4183. VIP_var_mosquito_nr_coring_idx_5_weak=5
  4184. VIP_var_mosquito_nr_coring_idx_5_medium=5
  4185. VIP_var_mosquito_nr_coring_idx_5_strong=5
  4186. VIP_var_mosquito_nr_strength_idx_5_weak=0
  4187. VIP_var_mosquito_nr_strength_idx_5_medium=0
  4188. VIP_var_mosquito_nr_strength_idx_5_strong=0
  4189. VIP_var_tnr_ultra_low_ctl_idx_5=0
  4190. VIP_var_snr_ultra_low_ctl_idx_5=0
  4191. VIP_var_TNR_map_enable_idx_5=0x1
  4192. VIP_var_TNR_map_thr0_idx_5_weak=14
  4193. VIP_var_TNR_map_thr0_idx_5_medium=23
  4194. VIP_var_TNR_map_thr0_idx_5_strong=30
  4195. VIP_var_TNR_map_thr1_idx_5_weak=28
  4196. VIP_var_TNR_map_thr1_idx_5_medium=46
  4197. VIP_var_TNR_map_thr1_idx_5_strong=51
  4198. VIP_var_TNR_map_thr2_idx_5_weak=45
  4199. VIP_var_TNR_map_thr2_idx_5_medium=92
  4200. VIP_var_TNR_map_thr2_idx_5_strong=77
  4201. VIP_var_TNR_map_thr3_idx_5_weak=65
  4202. VIP_var_TNR_map_thr3_idx_5_medium=124
  4203. VIP_var_TNR_map_thr3_idx_5_strong=100
  4204. VIP_var_TNR_map_thr4_idx_5_weak=88
  4205. VIP_var_TNR_map_thr4_idx_5_medium=150
  4206. VIP_var_TNR_map_thr4_idx_5_strong=139
  4207. VIP_var_TNR_map_slp0_idx_5_weak=48
  4208. VIP_var_TNR_map_slp0_idx_5_medium=43
  4209. VIP_var_TNR_map_slp0_idx_5_strong=24
  4210. VIP_var_TNR_map_slp1_idx_5_weak=52
  4211. VIP_var_TNR_map_slp1_idx_5_medium=40
  4212. VIP_var_TNR_map_slp1_idx_5_strong=32
  4213. VIP_var_TNR_map_slp2_idx_5_weak=37
  4214. VIP_var_TNR_map_slp2_idx_5_medium=33
  4215. VIP_var_TNR_map_slp2_idx_5_strong=27
  4216. VIP_var_TNR_map_slp3_idx_5_weak=32
  4217. VIP_var_TNR_map_slp3_idx_5_medium=38
  4218. VIP_var_TNR_map_slp3_idx_5_strong=25
  4219. VIP_var_TNR_map_slp4_idx_5_weak=58
  4220. VIP_var_TNR_map_slp4_idx_5_medium=54
  4221. VIP_var_TNR_map_slp4_idx_5_strong=27
  4222. VIP_var_TNR_map_slp5_idx_5_weak=42
  4223. VIP_var_TNR_map_slp5_idx_5_medium=65
  4224. VIP_var_TNR_map_slp5_idx_5_strong=50
  4225. VIP_var_TNR_map_fac0_idx_5_weak=42
  4226. VIP_var_TNR_map_fac0_idx_5_medium=2
  4227. VIP_var_TNR_map_fac0_idx_5_strong=1
  4228. VIP_var_TNR_map_fac1_idx_5_weak=63
  4229. VIP_var_TNR_map_fac1_idx_5_medium=33
  4230. VIP_var_TNR_map_fac1_idx_5_strong=24
  4231. VIP_var_TNR_map_fac2_idx_5_weak=86
  4232. VIP_var_TNR_map_fac2_idx_5_medium=62
  4233. VIP_var_TNR_map_fac2_idx_5_strong=45
  4234. VIP_var_TNR_map_fac3_idx_5_weak=106
  4235. VIP_var_TNR_map_fac3_idx_5_medium=110
  4236. VIP_var_TNR_map_fac3_idx_5_strong=67
  4237. VIP_var_TNR_map_fac4_idx_5_weak=126
  4238. VIP_var_TNR_map_fac4_idx_5_medium=148
  4239. VIP_var_TNR_map_fac4_idx_5_strong=85
  4240. VIP_var_TNR_map_fac5_idx_5_weak=168
  4241. VIP_var_TNR_map_fac5_idx_5_medium=192
  4242. VIP_var_TNR_map_fac5_idx_5_strong=118
  4243. VIP_var_TNRSNR_map_enable_idx_5=0x1
  4244. VIP_var_TNRSNR_map_thr0_idx_5_weak=16
  4245. VIP_var_TNRSNR_map_thr0_idx_5_medium=39
  4246. VIP_var_TNRSNR_map_thr0_idx_5_strong=60
  4247. VIP_var_TNRSNR_map_thr1_idx_5_weak=32
  4248. VIP_var_TNRSNR_map_thr1_idx_5_medium=95
  4249. VIP_var_TNRSNR_map_thr1_idx_5_strong=106
  4250. VIP_var_TNRSNR_map_thr2_idx_5_weak=48
  4251. VIP_var_TNRSNR_map_thr2_idx_5_medium=138
  4252. VIP_var_TNRSNR_map_thr2_idx_5_strong=152
  4253. VIP_var_TNRSNR_map_thr3_idx_5_weak=64
  4254. VIP_var_TNRSNR_map_thr3_idx_5_medium=174
  4255. VIP_var_TNRSNR_map_thr3_idx_5_strong=178
  4256. VIP_var_TNRSNR_map_thr4_idx_5_weak=80
  4257. VIP_var_TNRSNR_map_thr4_idx_5_medium=195
  4258. VIP_var_TNRSNR_map_thr4_idx_5_strong=202
  4259. VIP_var_TNRSNR_map_slp0_idx_5_weak=88
  4260. VIP_var_TNRSNR_map_slp0_idx_5_medium=0
  4261. VIP_var_TNRSNR_map_slp0_idx_5_strong=0
  4262. VIP_var_TNRSNR_map_slp1_idx_5_weak=120
  4263. VIP_var_TNRSNR_map_slp1_idx_5_medium=1
  4264. VIP_var_TNRSNR_map_slp1_idx_5_strong=0
  4265. VIP_var_TNRSNR_map_slp2_idx_5_weak=120
  4266. VIP_var_TNRSNR_map_slp2_idx_5_medium=1
  4267. VIP_var_TNRSNR_map_slp2_idx_5_strong=1
  4268. VIP_var_TNRSNR_map_slp3_idx_5_weak=88
  4269. VIP_var_TNRSNR_map_slp3_idx_5_medium=3
  4270. VIP_var_TNRSNR_map_slp3_idx_5_strong=3
  4271. VIP_var_TNRSNR_map_slp4_idx_5_weak=64
  4272. VIP_var_TNRSNR_map_slp4_idx_5_medium=7
  4273. VIP_var_TNRSNR_map_slp4_idx_5_strong=9
  4274. VIP_var_TNRSNR_map_slp5_idx_5_weak=96
  4275. VIP_var_TNRSNR_map_slp5_idx_5_medium=15
  4276. VIP_var_TNRSNR_map_slp5_idx_5_strong=9
  4277. VIP_var_TNRSNR_map_fac0_idx_5_weak=8
  4278. VIP_var_TNRSNR_map_fac0_idx_5_medium=0
  4279. VIP_var_TNRSNR_map_fac0_idx_5_strong=0
  4280. VIP_var_TNRSNR_map_fac1_idx_5_weak=19
  4281. VIP_var_TNRSNR_map_fac1_idx_5_medium=0
  4282. VIP_var_TNRSNR_map_fac1_idx_5_strong=0
  4283. VIP_var_TNRSNR_map_fac2_idx_5_weak=34
  4284. VIP_var_TNRSNR_map_fac2_idx_5_medium=3
  4285. VIP_var_TNRSNR_map_fac2_idx_5_strong=0
  4286. VIP_var_TNRSNR_map_fac3_idx_5_weak=49
  4287. VIP_var_TNRSNR_map_fac3_idx_5_medium=5
  4288. VIP_var_TNRSNR_map_fac3_idx_5_strong=2
  4289. VIP_var_TNRSNR_map_fac4_idx_5_weak=60
  4290. VIP_var_TNRSNR_map_fac4_idx_5_medium=9
  4291. VIP_var_TNRSNR_map_fac4_idx_5_strong=5
  4292. VIP_var_TNRSNR_map_fac5_idx_5_weak=68
  4293. VIP_var_TNRSNR_map_fac5_idx_5_medium=14
  4294. VIP_var_TNRSNR_map_fac5_idx_5_strong=12
  4295. VIP_var_TNRC_map_enable_idx_5=0x1
  4296. VIP_var_TNRC_map_thr0_idx_5_weak=23
  4297. VIP_var_TNRC_map_thr0_idx_5_medium=23
  4298. VIP_var_TNRC_map_thr0_idx_5_strong=23
  4299. VIP_var_TNRC_map_thr1_idx_5_weak=49
  4300. VIP_var_TNRC_map_thr1_idx_5_medium=49
  4301. VIP_var_TNRC_map_thr1_idx_5_strong=49
  4302. VIP_var_TNRC_map_thr2_idx_5_weak=65
  4303. VIP_var_TNRC_map_thr2_idx_5_medium=65
  4304. VIP_var_TNRC_map_thr2_idx_5_strong=65
  4305. VIP_var_TNRC_map_thr3_idx_5_weak=77
  4306. VIP_var_TNRC_map_thr3_idx_5_medium=77
  4307. VIP_var_TNRC_map_thr3_idx_5_strong=77
  4308. VIP_var_TNRC_map_thr4_idx_5_weak=87
  4309. VIP_var_TNRC_map_thr4_idx_5_medium=87
  4310. VIP_var_TNRC_map_thr4_idx_5_strong=87
  4311. VIP_var_TNRC_map_slp0_idx_5_weak=47
  4312. VIP_var_TNRC_map_slp0_idx_5_medium=47
  4313. VIP_var_TNRC_map_slp0_idx_5_strong=47
  4314. VIP_var_TNRC_map_slp1_idx_5_weak=59
  4315. VIP_var_TNRC_map_slp1_idx_5_medium=59
  4316. VIP_var_TNRC_map_slp1_idx_5_strong=59
  4317. VIP_var_TNRC_map_slp2_idx_5_weak=88
  4318. VIP_var_TNRC_map_slp2_idx_5_medium=88
  4319. VIP_var_TNRC_map_slp2_idx_5_strong=88
  4320. VIP_var_TNRC_map_slp3_idx_5_weak=101
  4321. VIP_var_TNRC_map_slp3_idx_5_medium=101
  4322. VIP_var_TNRC_map_slp3_idx_5_strong=101
  4323. VIP_var_TNRC_map_slp4_idx_5_weak=147
  4324. VIP_var_TNRC_map_slp4_idx_5_medium=147
  4325. VIP_var_TNRC_map_slp4_idx_5_strong=147
  4326. VIP_var_TNRC_map_slp5_idx_5_weak=168
  4327. VIP_var_TNRC_map_slp5_idx_5_medium=168
  4328. VIP_var_TNRC_map_slp5_idx_5_strong=168
  4329. VIP_var_TNRC_map_fac0_idx_5_weak=0
  4330. VIP_var_TNRC_map_fac0_idx_5_medium=0
  4331. VIP_var_TNRC_map_fac0_idx_5_strong=0
  4332. VIP_var_TNRC_map_fac1_idx_5_weak=17
  4333. VIP_var_TNRC_map_fac1_idx_5_medium=17
  4334. VIP_var_TNRC_map_fac1_idx_5_strong=17
  4335. VIP_var_TNRC_map_fac2_idx_5_weak=41
  4336. VIP_var_TNRC_map_fac2_idx_5_medium=41
  4337. VIP_var_TNRC_map_fac2_idx_5_strong=41
  4338. VIP_var_TNRC_map_fac3_idx_5_weak=63
  4339. VIP_var_TNRC_map_fac3_idx_5_medium=63
  4340. VIP_var_TNRC_map_fac3_idx_5_strong=63
  4341. VIP_var_TNRC_map_fac4_idx_5_weak=82
  4342. VIP_var_TNRC_map_fac4_idx_5_medium=82
  4343. VIP_var_TNRC_map_fac4_idx_5_strong=82
  4344. VIP_var_TNRC_map_fac5_idx_5_weak=105
  4345. VIP_var_TNRC_map_fac5_idx_5_medium=105
  4346. VIP_var_TNRC_map_fac5_idx_5_strong=105
  4347. VIP_var_TNRZ_map_enable_idx_5=0x1
  4348. VIP_var_TNRZ_map_thr0_idx_5_weak=16
  4349. VIP_var_TNRZ_map_thr0_idx_5_medium=31
  4350. VIP_var_TNRZ_map_thr0_idx_5_strong=19
  4351. VIP_var_TNRZ_map_thr1_idx_5_weak=29
  4352. VIP_var_TNRZ_map_thr1_idx_5_medium=39
  4353. VIP_var_TNRZ_map_thr1_idx_5_strong=34
  4354. VIP_var_TNRZ_map_thr2_idx_5_weak=47
  4355. VIP_var_TNRZ_map_thr2_idx_5_medium=48
  4356. VIP_var_TNRZ_map_thr2_idx_5_strong=46
  4357. VIP_var_TNRZ_map_thr3_idx_5_weak=60
  4358. VIP_var_TNRZ_map_thr3_idx_5_medium=60
  4359. VIP_var_TNRZ_map_thr3_idx_5_strong=59
  4360. VIP_var_TNRZ_map_thr4_idx_5_weak=78
  4361. VIP_var_TNRZ_map_thr4_idx_5_medium=84
  4362. VIP_var_TNRZ_map_thr4_idx_5_strong=79
  4363. VIP_var_TNRZ_map_slp0_idx_5_weak=10
  4364. VIP_var_TNRZ_map_slp0_idx_5_medium=13
  4365. VIP_var_TNRZ_map_slp0_idx_5_strong=20
  4366. VIP_var_TNRZ_map_slp1_idx_5_weak=17
  4367. VIP_var_TNRZ_map_slp1_idx_5_medium=28
  4368. VIP_var_TNRZ_map_slp1_idx_5_strong=40
  4369. VIP_var_TNRZ_map_slp2_idx_5_weak=24
  4370. VIP_var_TNRZ_map_slp2_idx_5_medium=32
  4371. VIP_var_TNRZ_map_slp2_idx_5_strong=66
  4372. VIP_var_TNRZ_map_slp3_idx_5_weak=44
  4373. VIP_var_TNRZ_map_slp3_idx_5_medium=24
  4374. VIP_var_TNRZ_map_slp3_idx_5_strong=44
  4375. VIP_var_TNRZ_map_slp4_idx_5_weak=42
  4376. VIP_var_TNRZ_map_slp4_idx_5_medium=46
  4377. VIP_var_TNRZ_map_slp4_idx_5_strong=17
  4378. VIP_var_TNRZ_map_slp5_idx_5_weak=94
  4379. VIP_var_TNRZ_map_slp5_idx_5_medium=79
  4380. VIP_var_TNRZ_map_slp5_idx_5_strong=94
  4381. VIP_var_TNRZ_map_fac0_idx_5_weak=93
  4382. VIP_var_TNRZ_map_fac0_idx_5_medium=85
  4383. VIP_var_TNRZ_map_fac0_idx_5_strong=40
  4384. VIP_var_TNRZ_map_fac1_idx_5_weak=98
  4385. VIP_var_TNRZ_map_fac1_idx_5_medium=98
  4386. VIP_var_TNRZ_map_fac1_idx_5_strong=52
  4387. VIP_var_TNRZ_map_fac2_idx_5_weak=105
  4388. VIP_var_TNRZ_map_fac2_idx_5_medium=105
  4389. VIP_var_TNRZ_map_fac2_idx_5_strong=71
  4390. VIP_var_TNRZ_map_fac3_idx_5_weak=119
  4391. VIP_var_TNRZ_map_fac3_idx_5_medium=114
  4392. VIP_var_TNRZ_map_fac3_idx_5_strong=96
  4393. VIP_var_TNRZ_map_fac4_idx_5_weak=137
  4394. VIP_var_TNRZ_map_fac4_idx_5_medium=123
  4395. VIP_var_TNRZ_map_fac4_idx_5_strong=114
  4396. VIP_var_TNRZ_map_fac5_idx_5_weak=161
  4397. VIP_var_TNRZ_map_fac5_idx_5_medium=158
  4398. VIP_var_TNRZ_map_fac5_idx_5_strong=125
  4399. VIP_var_TNRZC_map_enable_idx_5=0x1
  4400. VIP_var_TNRZC_map_thr0_idx_5_weak=12
  4401. VIP_var_TNRZC_map_thr0_idx_5_medium=12
  4402. VIP_var_TNRZC_map_thr0_idx_5_strong=12
  4403. VIP_var_TNRZC_map_thr1_idx_5_weak=24
  4404. VIP_var_TNRZC_map_thr1_idx_5_medium=24
  4405. VIP_var_TNRZC_map_thr1_idx_5_strong=24
  4406. VIP_var_TNRZC_map_thr2_idx_5_weak=32
  4407. VIP_var_TNRZC_map_thr2_idx_5_medium=32
  4408. VIP_var_TNRZC_map_thr2_idx_5_strong=32
  4409. VIP_var_TNRZC_map_thr3_idx_5_weak=48
  4410. VIP_var_TNRZC_map_thr3_idx_5_medium=48
  4411. VIP_var_TNRZC_map_thr3_idx_5_strong=48
  4412. VIP_var_TNRZC_map_thr4_idx_5_weak=64
  4413. VIP_var_TNRZC_map_thr4_idx_5_medium=64
  4414. VIP_var_TNRZC_map_thr4_idx_5_strong=64
  4415. VIP_var_TNRZC_map_slp0_idx_5_weak=288
  4416. VIP_var_TNRZC_map_slp0_idx_5_medium=288
  4417. VIP_var_TNRZC_map_slp0_idx_5_strong=288
  4418. VIP_var_TNRZC_map_slp1_idx_5_weak=138
  4419. VIP_var_TNRZC_map_slp1_idx_5_medium=138
  4420. VIP_var_TNRZC_map_slp1_idx_5_strong=138
  4421. VIP_var_TNRZC_map_slp2_idx_5_weak=240
  4422. VIP_var_TNRZC_map_slp2_idx_5_medium=240
  4423. VIP_var_TNRZC_map_slp2_idx_5_strong=240
  4424. VIP_var_TNRZC_map_slp3_idx_5_weak=104
  4425. VIP_var_TNRZC_map_slp3_idx_5_medium=104
  4426. VIP_var_TNRZC_map_slp3_idx_5_strong=104
  4427. VIP_var_TNRZC_map_slp4_idx_5_weak=72
  4428. VIP_var_TNRZC_map_slp4_idx_5_medium=72
  4429. VIP_var_TNRZC_map_slp4_idx_5_strong=72
  4430. VIP_var_TNRZC_map_slp5_idx_5_weak=92
  4431. VIP_var_TNRZC_map_slp5_idx_5_medium=92
  4432. VIP_var_TNRZC_map_slp5_idx_5_strong=92
  4433. VIP_var_TNRZC_map_fac0_idx_5_weak=0
  4434. VIP_var_TNRZC_map_fac0_idx_5_medium=0
  4435. VIP_var_TNRZC_map_fac0_idx_5_strong=0
  4436. VIP_var_TNRZC_map_fac1_idx_5_weak=27
  4437. VIP_var_TNRZC_map_fac1_idx_5_medium=27
  4438. VIP_var_TNRZC_map_fac1_idx_5_strong=27
  4439. VIP_var_TNRZC_map_fac2_idx_5_weak=40
  4440. VIP_var_TNRZC_map_fac2_idx_5_medium=40
  4441. VIP_var_TNRZC_map_fac2_idx_5_strong=40
  4442. VIP_var_TNRZC_map_fac3_idx_5_weak=55
  4443. VIP_var_TNRZC_map_fac3_idx_5_medium=55
  4444. VIP_var_TNRZC_map_fac3_idx_5_strong=55
  4445. VIP_var_TNRZC_map_fac4_idx_5_weak=68
  4446. VIP_var_TNRZC_map_fac4_idx_5_medium=68
  4447. VIP_var_TNRZC_map_fac4_idx_5_strong=68
  4448. VIP_var_TNRZC_map_fac5_idx_5_weak=77
  4449. VIP_var_TNRZC_map_fac5_idx_5_medium=77
  4450. VIP_var_TNRZC_map_fac5_idx_5_strong=77
  4451. VIP_var_luma_tnr_coring_idx_6_weak=0
  4452. VIP_var_luma_tnr_coring_idx_6_medium=0
  4453. VIP_var_luma_tnr_coring_idx_6_strong=0
  4454. VIP_var_luma_tnr_strength_idx_6_weak=6
  4455. VIP_var_luma_tnr_strength_idx_6_medium=9
  4456. VIP_var_luma_tnr_strength_idx_6_strong=11
  4457. VIP_var_chroma_tnr_coring_idx_6_weak=0
  4458. VIP_var_chroma_tnr_coring_idx_6_medium=0
  4459. VIP_var_chroma_tnr_coring_idx_6_strong=0
  4460. VIP_var_chroma_tnr_strength_idx_6_weak=4
  4461. VIP_var_chroma_tnr_strength_idx_6_medium=10
  4462. VIP_var_chroma_tnr_strength_idx_6_strong=14
  4463. VIP_var_luma_snr1_coring_idx_6_weak=0
  4464. VIP_var_luma_snr1_coring_idx_6_medium=0
  4465. VIP_var_luma_snr1_coring_idx_6_strong=0
  4466. VIP_var_luma_snr1_strength_idx_6_weak=1
  4467. VIP_var_luma_snr1_strength_idx_6_medium=1
  4468. VIP_var_luma_snr1_strength_idx_6_strong=10
  4469. VIP_var_luma_snr2_coring_idx_6_weak=0
  4470. VIP_var_luma_snr2_coring_idx_6_medium=0
  4471. VIP_var_luma_snr2_coring_idx_6_strong=0
  4472. VIP_var_luma_snr2_strength_idx_6_weak=0
  4473. VIP_var_luma_snr2_strength_idx_6_medium=0
  4474. VIP_var_luma_snr2_strength_idx_6_strong=0
  4475. VIP_var_chroma_snr_coring_idx_6_weak=0
  4476. VIP_var_chroma_snr_coring_idx_6_medium=0
  4477. VIP_var_chroma_snr_coring_idx_6_strong=0
  4478. VIP_var_chroma_snr_strength_idx_6_weak=4
  4479. VIP_var_chroma_snr_strength_idx_6_medium=4
  4480. VIP_var_chroma_snr_strength_idx_6_strong=10
  4481. VIP_var_block_nr_coring_idx_6_weak=5
  4482. VIP_var_block_nr_coring_idx_6_medium=5
  4483. VIP_var_block_nr_coring_idx_6_strong=5
  4484. VIP_var_block_nr_strength_idx_6_weak=5
  4485. VIP_var_block_nr_strength_idx_6_medium=5
  4486. VIP_var_block_nr_strength_idx_6_strong=5
  4487. VIP_var_mosquito_nr_coring_idx_6_weak=5
  4488. VIP_var_mosquito_nr_coring_idx_6_medium=5
  4489. VIP_var_mosquito_nr_coring_idx_6_strong=5
  4490. VIP_var_mosquito_nr_strength_idx_6_weak=0
  4491. VIP_var_mosquito_nr_strength_idx_6_medium=0
  4492. VIP_var_mosquito_nr_strength_idx_6_strong=0
  4493. VIP_var_tnr_ultra_low_ctl_idx_6=0
  4494. VIP_var_snr_ultra_low_ctl_idx_6=0
  4495. VIP_var_TNR_map_enable_idx_6=0x1
  4496. VIP_var_TNR_map_thr0_idx_6_weak=10
  4497. VIP_var_TNR_map_thr0_idx_6_medium=12
  4498. VIP_var_TNR_map_thr0_idx_6_strong=35
  4499. VIP_var_TNR_map_thr1_idx_6_weak=22
  4500. VIP_var_TNR_map_thr1_idx_6_medium=24
  4501. VIP_var_TNR_map_thr1_idx_6_strong=71
  4502. VIP_var_TNR_map_thr2_idx_6_weak=38
  4503. VIP_var_TNR_map_thr2_idx_6_medium=40
  4504. VIP_var_TNR_map_thr2_idx_6_strong=107
  4505. VIP_var_TNR_map_thr3_idx_6_weak=56
  4506. VIP_var_TNR_map_thr3_idx_6_medium=70
  4507. VIP_var_TNR_map_thr3_idx_6_strong=143
  4508. VIP_var_TNR_map_thr4_idx_6_weak=88
  4509. VIP_var_TNR_map_thr4_idx_6_medium=95
  4510. VIP_var_TNR_map_thr4_idx_6_strong=167
  4511. VIP_var_TNR_map_slp0_idx_6_weak=83
  4512. VIP_var_TNR_map_slp0_idx_6_medium=26
  4513. VIP_var_TNR_map_slp0_idx_6_strong=5
  4514. VIP_var_TNR_map_slp1_idx_6_weak=69
  4515. VIP_var_TNR_map_slp1_idx_6_medium=37
  4516. VIP_var_TNR_map_slp1_idx_6_strong=16
  4517. VIP_var_TNR_map_slp2_idx_6_weak=36
  4518. VIP_var_TNR_map_slp2_idx_6_medium=34
  4519. VIP_var_TNR_map_slp2_idx_6_strong=18
  4520. VIP_var_TNR_map_slp3_idx_6_weak=26
  4521. VIP_var_TNR_map_slp3_idx_6_medium=52
  4522. VIP_var_TNR_map_slp3_idx_6_strong=27
  4523. VIP_var_TNR_map_slp4_idx_6_weak=48
  4524. VIP_var_TNR_map_slp4_idx_6_medium=40
  4525. VIP_var_TNR_map_slp4_idx_6_strong=54
  4526. VIP_var_TNR_map_slp5_idx_6_weak=51
  4527. VIP_var_TNR_map_slp5_idx_6_medium=78
  4528. VIP_var_TNR_map_slp5_idx_6_strong=630
  4529. VIP_var_TNR_map_fac0_idx_6_weak=42
  4530. VIP_var_TNR_map_fac0_idx_6_medium=0
  4531. VIP_var_TNR_map_fac0_idx_6_strong=0
  4532. VIP_var_TNR_map_fac1_idx_6_weak=68
  4533. VIP_var_TNR_map_fac1_idx_6_medium=10
  4534. VIP_var_TNR_map_fac1_idx_6_strong=6
  4535. VIP_var_TNR_map_fac2_idx_6_weak=94
  4536. VIP_var_TNR_map_fac2_idx_6_medium=24
  4537. VIP_var_TNR_map_fac2_idx_6_strong=24
  4538. VIP_var_TNR_map_fac3_idx_6_weak=112
  4539. VIP_var_TNR_map_fac3_idx_6_medium=41
  4540. VIP_var_TNR_map_fac3_idx_6_strong=45
  4541. VIP_var_TNR_map_fac4_idx_6_weak=127
  4542. VIP_var_TNR_map_fac4_idx_6_medium=90
  4543. VIP_var_TNR_map_fac4_idx_6_strong=76
  4544. VIP_var_TNR_map_fac5_idx_6_weak=175
  4545. VIP_var_TNR_map_fac5_idx_6_medium=122
  4546. VIP_var_TNR_map_fac5_idx_6_strong=117
  4547. VIP_var_TNRSNR_map_enable_idx_6=0x1
  4548. VIP_var_TNRSNR_map_thr0_idx_6_weak=19
  4549. VIP_var_TNRSNR_map_thr0_idx_6_medium=22
  4550. VIP_var_TNRSNR_map_thr0_idx_6_strong=31
  4551. VIP_var_TNRSNR_map_thr1_idx_6_weak=43
  4552. VIP_var_TNRSNR_map_thr1_idx_6_medium=48
  4553. VIP_var_TNRSNR_map_thr1_idx_6_strong=90
  4554. VIP_var_TNRSNR_map_thr2_idx_6_weak=59
  4555. VIP_var_TNRSNR_map_thr2_idx_6_medium=74
  4556. VIP_var_TNRSNR_map_thr2_idx_6_strong=126
  4557. VIP_var_TNRSNR_map_thr3_idx_6_weak=76
  4558. VIP_var_TNRSNR_map_thr3_idx_6_medium=107
  4559. VIP_var_TNRSNR_map_thr3_idx_6_strong=168
  4560. VIP_var_TNRSNR_map_thr4_idx_6_weak=90
  4561. VIP_var_TNRSNR_map_thr4_idx_6_medium=162
  4562. VIP_var_TNRSNR_map_thr4_idx_6_strong=200
  4563. VIP_var_TNRSNR_map_slp0_idx_6_weak=18
  4564. VIP_var_TNRSNR_map_slp0_idx_6_medium=8193
  4565. VIP_var_TNRSNR_map_slp0_idx_6_strong=1
  4566. VIP_var_TNRSNR_map_slp1_idx_6_weak=21
  4567. VIP_var_TNRSNR_map_slp1_idx_6_medium=1
  4568. VIP_var_TNRSNR_map_slp1_idx_6_strong=0
  4569. VIP_var_TNRSNR_map_slp2_idx_6_weak=28
  4570. VIP_var_TNRSNR_map_slp2_idx_6_medium=1
  4571. VIP_var_TNRSNR_map_slp2_idx_6_strong=0
  4572. VIP_var_TNRSNR_map_slp3_idx_6_weak=30
  4573. VIP_var_TNRSNR_map_slp3_idx_6_medium=0
  4574. VIP_var_TNRSNR_map_slp3_idx_6_strong=0
  4575. VIP_var_TNRSNR_map_slp4_idx_6_weak=32
  4576. VIP_var_TNRSNR_map_slp4_idx_6_medium=3
  4577. VIP_var_TNRSNR_map_slp4_idx_6_strong=4
  4578. VIP_var_TNRSNR_map_slp5_idx_6_weak=113
  4579. VIP_var_TNRSNR_map_slp5_idx_6_medium=5
  4580. VIP_var_TNRSNR_map_slp5_idx_6_strong=4
  4581. VIP_var_TNRSNR_map_fac0_idx_6_weak=0
  4582. VIP_var_TNRSNR_map_fac0_idx_6_medium=1
  4583. VIP_var_TNRSNR_map_fac0_idx_6_strong=0
  4584. VIP_var_TNRSNR_map_fac1_idx_6_weak=11
  4585. VIP_var_TNRSNR_map_fac1_idx_6_medium=0
  4586. VIP_var_TNRSNR_map_fac1_idx_6_strong=1
  4587. VIP_var_TNRSNR_map_fac2_idx_6_weak=27
  4588. VIP_var_TNRSNR_map_fac2_idx_6_medium=1
  4589. VIP_var_TNRSNR_map_fac2_idx_6_strong=0
  4590. VIP_var_TNRSNR_map_fac3_idx_6_weak=41
  4591. VIP_var_TNRSNR_map_fac3_idx_6_medium=2
  4592. VIP_var_TNRSNR_map_fac3_idx_6_strong=0
  4593. VIP_var_TNRSNR_map_fac4_idx_6_weak=57
  4594. VIP_var_TNRSNR_map_fac4_idx_6_medium=3
  4595. VIP_var_TNRSNR_map_fac4_idx_6_strong=1
  4596. VIP_var_TNRSNR_map_fac5_idx_6_weak=71
  4597. VIP_var_TNRSNR_map_fac5_idx_6_medium=9
  4598. VIP_var_TNRSNR_map_fac5_idx_6_strong=5
  4599. VIP_var_TNRC_map_enable_idx_6=0x1
  4600. VIP_var_TNRC_map_thr0_idx_6_weak=23
  4601. VIP_var_TNRC_map_thr0_idx_6_medium=23
  4602. VIP_var_TNRC_map_thr0_idx_6_strong=23
  4603. VIP_var_TNRC_map_thr1_idx_6_weak=49
  4604. VIP_var_TNRC_map_thr1_idx_6_medium=49
  4605. VIP_var_TNRC_map_thr1_idx_6_strong=49
  4606. VIP_var_TNRC_map_thr2_idx_6_weak=65
  4607. VIP_var_TNRC_map_thr2_idx_6_medium=65
  4608. VIP_var_TNRC_map_thr2_idx_6_strong=65
  4609. VIP_var_TNRC_map_thr3_idx_6_weak=77
  4610. VIP_var_TNRC_map_thr3_idx_6_medium=77
  4611. VIP_var_TNRC_map_thr3_idx_6_strong=77
  4612. VIP_var_TNRC_map_thr4_idx_6_weak=87
  4613. VIP_var_TNRC_map_thr4_idx_6_medium=87
  4614. VIP_var_TNRC_map_thr4_idx_6_strong=87
  4615. VIP_var_TNRC_map_slp0_idx_6_weak=47
  4616. VIP_var_TNRC_map_slp0_idx_6_medium=47
  4617. VIP_var_TNRC_map_slp0_idx_6_strong=47
  4618. VIP_var_TNRC_map_slp1_idx_6_weak=59
  4619. VIP_var_TNRC_map_slp1_idx_6_medium=59
  4620. VIP_var_TNRC_map_slp1_idx_6_strong=59
  4621. VIP_var_TNRC_map_slp2_idx_6_weak=88
  4622. VIP_var_TNRC_map_slp2_idx_6_medium=88
  4623. VIP_var_TNRC_map_slp2_idx_6_strong=88
  4624. VIP_var_TNRC_map_slp3_idx_6_weak=101
  4625. VIP_var_TNRC_map_slp3_idx_6_medium=101
  4626. VIP_var_TNRC_map_slp3_idx_6_strong=101
  4627. VIP_var_TNRC_map_slp4_idx_6_weak=147
  4628. VIP_var_TNRC_map_slp4_idx_6_medium=147
  4629. VIP_var_TNRC_map_slp4_idx_6_strong=147
  4630. VIP_var_TNRC_map_slp5_idx_6_weak=168
  4631. VIP_var_TNRC_map_slp5_idx_6_medium=168
  4632. VIP_var_TNRC_map_slp5_idx_6_strong=168
  4633. VIP_var_TNRC_map_fac0_idx_6_weak=0
  4634. VIP_var_TNRC_map_fac0_idx_6_medium=0
  4635. VIP_var_TNRC_map_fac0_idx_6_strong=0
  4636. VIP_var_TNRC_map_fac1_idx_6_weak=17
  4637. VIP_var_TNRC_map_fac1_idx_6_medium=17
  4638. VIP_var_TNRC_map_fac1_idx_6_strong=17
  4639. VIP_var_TNRC_map_fac2_idx_6_weak=41
  4640. VIP_var_TNRC_map_fac2_idx_6_medium=41
  4641. VIP_var_TNRC_map_fac2_idx_6_strong=41
  4642. VIP_var_TNRC_map_fac3_idx_6_weak=63
  4643. VIP_var_TNRC_map_fac3_idx_6_medium=63
  4644. VIP_var_TNRC_map_fac3_idx_6_strong=63
  4645. VIP_var_TNRC_map_fac4_idx_6_weak=82
  4646. VIP_var_TNRC_map_fac4_idx_6_medium=82
  4647. VIP_var_TNRC_map_fac4_idx_6_strong=82
  4648. VIP_var_TNRC_map_fac5_idx_6_weak=105
  4649. VIP_var_TNRC_map_fac5_idx_6_medium=105
  4650. VIP_var_TNRC_map_fac5_idx_6_strong=105
  4651. VIP_var_TNRZ_map_enable_idx_6=0x1
  4652. VIP_var_TNRZ_map_thr0_idx_6_weak=12
  4653. VIP_var_TNRZ_map_thr0_idx_6_medium=31
  4654. VIP_var_TNRZ_map_thr0_idx_6_strong=16
  4655. VIP_var_TNRZ_map_thr1_idx_6_weak=27
  4656. VIP_var_TNRZ_map_thr1_idx_6_medium=46
  4657. VIP_var_TNRZ_map_thr1_idx_6_strong=31
  4658. VIP_var_TNRZ_map_thr2_idx_6_weak=43
  4659. VIP_var_TNRZ_map_thr2_idx_6_medium=59
  4660. VIP_var_TNRZ_map_thr2_idx_6_strong=50
  4661. VIP_var_TNRZ_map_thr3_idx_6_weak=54
  4662. VIP_var_TNRZ_map_thr3_idx_6_medium=80
  4663. VIP_var_TNRZ_map_thr3_idx_6_strong=63
  4664. VIP_var_TNRZ_map_thr4_idx_6_weak=74
  4665. VIP_var_TNRZ_map_thr4_idx_6_medium=99
  4666. VIP_var_TNRZ_map_thr4_idx_6_strong=85
  4667. VIP_var_TNRZ_map_slp0_idx_6_weak=26
  4668. VIP_var_TNRZ_map_slp0_idx_6_medium=21
  4669. VIP_var_TNRZ_map_slp0_idx_6_strong=52
  4670. VIP_var_TNRZ_map_slp1_idx_6_weak=32
  4671. VIP_var_TNRZ_map_slp1_idx_6_medium=42
  4672. VIP_var_TNRZ_map_slp1_idx_6_strong=59
  4673. VIP_var_TNRZ_map_slp2_idx_6_weak=34
  4674. VIP_var_TNRZ_map_slp2_idx_6_medium=32
  4675. VIP_var_TNRZ_map_slp2_idx_6_strong=55
  4676. VIP_var_TNRZ_map_slp3_idx_6_weak=93
  4677. VIP_var_TNRZ_map_slp3_idx_6_medium=62
  4678. VIP_var_TNRZ_map_slp3_idx_6_strong=39
  4679. VIP_var_TNRZ_map_slp4_idx_6_weak=52
  4680. VIP_var_TNRZ_map_slp4_idx_6_medium=52
  4681. VIP_var_TNRZ_map_slp4_idx_6_strong=29
  4682. VIP_var_TNRZ_map_slp5_idx_6_weak=51
  4683. VIP_var_TNRZ_map_slp5_idx_6_medium=76
  4684. VIP_var_TNRZ_map_slp5_idx_6_strong=110
  4685. VIP_var_TNRZ_map_fac0_idx_6_weak=90
  4686. VIP_var_TNRZ_map_fac0_idx_6_medium=72
  4687. VIP_var_TNRZ_map_fac0_idx_6_strong=1
  4688. VIP_var_TNRZ_map_fac1_idx_6_weak=100
  4689. VIP_var_TNRZ_map_fac1_idx_6_medium=93
  4690. VIP_var_TNRZ_map_fac1_idx_6_strong=27
  4691. VIP_var_TNRZ_map_fac2_idx_6_weak=115
  4692. VIP_var_TNRZ_map_fac2_idx_6_medium=113
  4693. VIP_var_TNRZ_map_fac2_idx_6_strong=55
  4694. VIP_var_TNRZ_map_fac3_idx_6_weak=132
  4695. VIP_var_TNRZ_map_fac3_idx_6_medium=126
  4696. VIP_var_TNRZ_map_fac3_idx_6_strong=88
  4697. VIP_var_TNRZ_map_fac4_idx_6_weak=164
  4698. VIP_var_TNRZ_map_fac4_idx_6_medium=167
  4699. VIP_var_TNRZ_map_fac4_idx_6_strong=104
  4700. VIP_var_TNRZ_map_fac5_idx_6_weak=197
  4701. VIP_var_TNRZ_map_fac5_idx_6_medium=198
  4702. VIP_var_TNRZ_map_fac5_idx_6_strong=124
  4703. VIP_var_TNRZC_map_enable_idx_6=0x1
  4704. VIP_var_TNRZC_map_thr0_idx_6_weak=12
  4705. VIP_var_TNRZC_map_thr0_idx_6_medium=31
  4706. VIP_var_TNRZC_map_thr0_idx_6_strong=40
  4707. VIP_var_TNRZC_map_thr1_idx_6_weak=24
  4708. VIP_var_TNRZC_map_thr1_idx_6_medium=77
  4709. VIP_var_TNRZC_map_thr1_idx_6_strong=70
  4710. VIP_var_TNRZC_map_thr2_idx_6_weak=32
  4711. VIP_var_TNRZC_map_thr2_idx_6_medium=97
  4712. VIP_var_TNRZC_map_thr2_idx_6_strong=101
  4713. VIP_var_TNRZC_map_thr3_idx_6_weak=48
  4714. VIP_var_TNRZC_map_thr3_idx_6_medium=117
  4715. VIP_var_TNRZC_map_thr3_idx_6_strong=132
  4716. VIP_var_TNRZC_map_thr4_idx_6_weak=64
  4717. VIP_var_TNRZC_map_thr4_idx_6_medium=138
  4718. VIP_var_TNRZC_map_thr4_idx_6_strong=170
  4719. VIP_var_TNRZC_map_slp0_idx_6_weak=288
  4720. VIP_var_TNRZC_map_slp0_idx_6_medium=61
  4721. VIP_var_TNRZC_map_slp0_idx_6_strong=8
  4722. VIP_var_TNRZC_map_slp1_idx_6_weak=138
  4723. VIP_var_TNRZC_map_slp1_idx_6_medium=58
  4724. VIP_var_TNRZC_map_slp1_idx_6_strong=14
  4725. VIP_var_TNRZC_map_slp2_idx_6_weak=240
  4726. VIP_var_TNRZC_map_slp2_idx_6_medium=64
  4727. VIP_var_TNRZC_map_slp2_idx_6_strong=26
  4728. VIP_var_TNRZC_map_slp3_idx_6_weak=104
  4729. VIP_var_TNRZC_map_slp3_idx_6_medium=83
  4730. VIP_var_TNRZC_map_slp3_idx_6_strong=35
  4731. VIP_var_TNRZC_map_slp4_idx_6_weak=72
  4732. VIP_var_TNRZC_map_slp4_idx_6_medium=188
  4733. VIP_var_TNRZC_map_slp4_idx_6_strong=60
  4734. VIP_var_TNRZC_map_slp5_idx_6_weak=92
  4735. VIP_var_TNRZC_map_slp5_idx_6_medium=192
  4736. VIP_var_TNRZC_map_slp5_idx_6_strong=84
  4737. VIP_var_TNRZC_map_fac0_idx_6_weak=0
  4738. VIP_var_TNRZC_map_fac0_idx_6_medium=0
  4739. VIP_var_TNRZC_map_fac0_idx_6_strong=0
  4740. VIP_var_TNRZC_map_fac1_idx_6_weak=27
  4741. VIP_var_TNRZC_map_fac1_idx_6_medium=30
  4742. VIP_var_TNRZC_map_fac1_idx_6_strong=5
  4743. VIP_var_TNRZC_map_fac2_idx_6_weak=40
  4744. VIP_var_TNRZC_map_fac2_idx_6_medium=72
  4745. VIP_var_TNRZC_map_fac2_idx_6_strong=12
  4746. VIP_var_TNRZC_map_fac3_idx_6_weak=55
  4747. VIP_var_TNRZC_map_fac3_idx_6_medium=92
  4748. VIP_var_TNRZC_map_fac3_idx_6_strong=25
  4749. VIP_var_TNRZC_map_fac4_idx_6_weak=68
  4750. VIP_var_TNRZC_map_fac4_idx_6_medium=118
  4751. VIP_var_TNRZC_map_fac4_idx_6_strong=42
  4752. VIP_var_TNRZC_map_fac5_idx_6_weak=77
  4753. VIP_var_TNRZC_map_fac5_idx_6_medium=180
  4754. VIP_var_TNRZC_map_fac5_idx_6_strong=78
  4755. VIP_var_luma_tnr_coring_idx_7_weak=0
  4756. VIP_var_luma_tnr_coring_idx_7_medium=0
  4757. VIP_var_luma_tnr_coring_idx_7_strong=0
  4758. VIP_var_luma_tnr_strength_idx_7_weak=6
  4759. VIP_var_luma_tnr_strength_idx_7_medium=10
  4760. VIP_var_luma_tnr_strength_idx_7_strong=11
  4761. VIP_var_chroma_tnr_coring_idx_7_weak=0
  4762. VIP_var_chroma_tnr_coring_idx_7_medium=0
  4763. VIP_var_chroma_tnr_coring_idx_7_strong=0
  4764. VIP_var_chroma_tnr_strength_idx_7_weak=4
  4765. VIP_var_chroma_tnr_strength_idx_7_medium=12
  4766. VIP_var_chroma_tnr_strength_idx_7_strong=14
  4767. VIP_var_luma_snr1_coring_idx_7_weak=0
  4768. VIP_var_luma_snr1_coring_idx_7_medium=0
  4769. VIP_var_luma_snr1_coring_idx_7_strong=0
  4770. VIP_var_luma_snr1_strength_idx_7_weak=1
  4771. VIP_var_luma_snr1_strength_idx_7_medium=1
  4772. VIP_var_luma_snr1_strength_idx_7_strong=10
  4773. VIP_var_luma_snr2_coring_idx_7_weak=0
  4774. VIP_var_luma_snr2_coring_idx_7_medium=0
  4775. VIP_var_luma_snr2_coring_idx_7_strong=0
  4776. VIP_var_luma_snr2_strength_idx_7_weak=0
  4777. VIP_var_luma_snr2_strength_idx_7_medium=0
  4778. VIP_var_luma_snr2_strength_idx_7_strong=0
  4779. VIP_var_chroma_snr_coring_idx_7_weak=0
  4780. VIP_var_chroma_snr_coring_idx_7_medium=0
  4781. VIP_var_chroma_snr_coring_idx_7_strong=0
  4782. VIP_var_chroma_snr_strength_idx_7_weak=4
  4783. VIP_var_chroma_snr_strength_idx_7_medium=4
  4784. VIP_var_chroma_snr_strength_idx_7_strong=10
  4785. VIP_var_block_nr_coring_idx_7_weak=5
  4786. VIP_var_block_nr_coring_idx_7_medium=5
  4787. VIP_var_block_nr_coring_idx_7_strong=5
  4788. VIP_var_block_nr_strength_idx_7_weak=5
  4789. VIP_var_block_nr_strength_idx_7_medium=5
  4790. VIP_var_block_nr_strength_idx_7_strong=5
  4791. VIP_var_mosquito_nr_coring_idx_7_weak=5
  4792. VIP_var_mosquito_nr_coring_idx_7_medium=5
  4793. VIP_var_mosquito_nr_coring_idx_7_strong=5
  4794. VIP_var_mosquito_nr_strength_idx_7_weak=0
  4795. VIP_var_mosquito_nr_strength_idx_7_medium=0
  4796. VIP_var_mosquito_nr_strength_idx_7_strong=0
  4797. VIP_var_tnr_ultra_low_ctl_idx_7=0
  4798. VIP_var_snr_ultra_low_ctl_idx_7=0
  4799. VIP_var_TNR_map_enable_idx_7=0x1
  4800. VIP_var_TNR_map_thr0_idx_7_weak=10
  4801. VIP_var_TNR_map_thr0_idx_7_medium=22
  4802. VIP_var_TNR_map_thr0_idx_7_strong=35
  4803. VIP_var_TNR_map_thr1_idx_7_weak=22
  4804. VIP_var_TNR_map_thr1_idx_7_medium=40
  4805. VIP_var_TNR_map_thr1_idx_7_strong=71
  4806. VIP_var_TNR_map_thr2_idx_7_weak=38
  4807. VIP_var_TNR_map_thr2_idx_7_medium=60
  4808. VIP_var_TNR_map_thr2_idx_7_strong=107
  4809. VIP_var_TNR_map_thr3_idx_7_weak=56
  4810. VIP_var_TNR_map_thr3_idx_7_medium=98
  4811. VIP_var_TNR_map_thr3_idx_7_strong=143
  4812. VIP_var_TNR_map_thr4_idx_7_weak=88
  4813. VIP_var_TNR_map_thr4_idx_7_medium=121
  4814. VIP_var_TNR_map_thr4_idx_7_strong=167
  4815. VIP_var_TNR_map_slp0_idx_7_weak=83
  4816. VIP_var_TNR_map_slp0_idx_7_medium=13
  4817. VIP_var_TNR_map_slp0_idx_7_strong=5
  4818. VIP_var_TNR_map_slp1_idx_7_weak=69
  4819. VIP_var_TNR_map_slp1_idx_7_medium=23
  4820. VIP_var_TNR_map_slp1_idx_7_strong=16
  4821. VIP_var_TNR_map_slp2_idx_7_weak=36
  4822. VIP_var_TNR_map_slp2_idx_7_medium=32
  4823. VIP_var_TNR_map_slp2_idx_7_strong=18
  4824. VIP_var_TNR_map_slp3_idx_7_weak=26
  4825. VIP_var_TNR_map_slp3_idx_7_medium=39
  4826. VIP_var_TNR_map_slp3_idx_7_strong=27
  4827. VIP_var_TNR_map_slp4_idx_7_weak=48
  4828. VIP_var_TNR_map_slp4_idx_7_medium=45
  4829. VIP_var_TNR_map_slp4_idx_7_strong=54
  4830. VIP_var_TNR_map_slp5_idx_7_weak=51
  4831. VIP_var_TNR_map_slp5_idx_7_medium=51
  4832. VIP_var_TNR_map_slp5_idx_7_strong=630
  4833. VIP_var_TNR_map_fac0_idx_7_weak=42
  4834. VIP_var_TNR_map_fac0_idx_7_medium=0
  4835. VIP_var_TNR_map_fac0_idx_7_strong=0
  4836. VIP_var_TNR_map_fac1_idx_7_weak=68
  4837. VIP_var_TNR_map_fac1_idx_7_medium=9
  4838. VIP_var_TNR_map_fac1_idx_7_strong=6
  4839. VIP_var_TNR_map_fac2_idx_7_weak=94
  4840. VIP_var_TNR_map_fac2_idx_7_medium=22
  4841. VIP_var_TNR_map_fac2_idx_7_strong=24
  4842. VIP_var_TNR_map_fac3_idx_7_weak=112
  4843. VIP_var_TNR_map_fac3_idx_7_medium=42
  4844. VIP_var_TNR_map_fac3_idx_7_strong=45
  4845. VIP_var_TNR_map_fac4_idx_7_weak=127
  4846. VIP_var_TNR_map_fac4_idx_7_medium=89
  4847. VIP_var_TNR_map_fac4_idx_7_strong=76
  4848. VIP_var_TNR_map_fac5_idx_7_weak=175
  4849. VIP_var_TNR_map_fac5_idx_7_medium=122
  4850. VIP_var_TNR_map_fac5_idx_7_strong=117
  4851. VIP_var_TNRSNR_map_enable_idx_7=0x0
  4852. VIP_var_TNRSNR_map_thr0_idx_7_weak=19
  4853. VIP_var_TNRSNR_map_thr0_idx_7_medium=22
  4854. VIP_var_TNRSNR_map_thr0_idx_7_strong=31
  4855. VIP_var_TNRSNR_map_thr1_idx_7_weak=43
  4856. VIP_var_TNRSNR_map_thr1_idx_7_medium=48
  4857. VIP_var_TNRSNR_map_thr1_idx_7_strong=90
  4858. VIP_var_TNRSNR_map_thr2_idx_7_weak=59
  4859. VIP_var_TNRSNR_map_thr2_idx_7_medium=74
  4860. VIP_var_TNRSNR_map_thr2_idx_7_strong=126
  4861. VIP_var_TNRSNR_map_thr3_idx_7_weak=76
  4862. VIP_var_TNRSNR_map_thr3_idx_7_medium=107
  4863. VIP_var_TNRSNR_map_thr3_idx_7_strong=168
  4864. VIP_var_TNRSNR_map_thr4_idx_7_weak=90
  4865. VIP_var_TNRSNR_map_thr4_idx_7_medium=162
  4866. VIP_var_TNRSNR_map_thr4_idx_7_strong=200
  4867. VIP_var_TNRSNR_map_slp0_idx_7_weak=18
  4868. VIP_var_TNRSNR_map_slp0_idx_7_medium=8193
  4869. VIP_var_TNRSNR_map_slp0_idx_7_strong=1
  4870. VIP_var_TNRSNR_map_slp1_idx_7_weak=21
  4871. VIP_var_TNRSNR_map_slp1_idx_7_medium=1
  4872. VIP_var_TNRSNR_map_slp1_idx_7_strong=0
  4873. VIP_var_TNRSNR_map_slp2_idx_7_weak=28
  4874. VIP_var_TNRSNR_map_slp2_idx_7_medium=1
  4875. VIP_var_TNRSNR_map_slp2_idx_7_strong=0
  4876. VIP_var_TNRSNR_map_slp3_idx_7_weak=30
  4877. VIP_var_TNRSNR_map_slp3_idx_7_medium=0
  4878. VIP_var_TNRSNR_map_slp3_idx_7_strong=0
  4879. VIP_var_TNRSNR_map_slp4_idx_7_weak=32
  4880. VIP_var_TNRSNR_map_slp4_idx_7_medium=3
  4881. VIP_var_TNRSNR_map_slp4_idx_7_strong=4
  4882. VIP_var_TNRSNR_map_slp5_idx_7_weak=113
  4883. VIP_var_TNRSNR_map_slp5_idx_7_medium=5
  4884. VIP_var_TNRSNR_map_slp5_idx_7_strong=4
  4885. VIP_var_TNRSNR_map_fac0_idx_7_weak=0
  4886. VIP_var_TNRSNR_map_fac0_idx_7_medium=1
  4887. VIP_var_TNRSNR_map_fac0_idx_7_strong=0
  4888. VIP_var_TNRSNR_map_fac1_idx_7_weak=11
  4889. VIP_var_TNRSNR_map_fac1_idx_7_medium=0
  4890. VIP_var_TNRSNR_map_fac1_idx_7_strong=1
  4891. VIP_var_TNRSNR_map_fac2_idx_7_weak=27
  4892. VIP_var_TNRSNR_map_fac2_idx_7_medium=1
  4893. VIP_var_TNRSNR_map_fac2_idx_7_strong=0
  4894. VIP_var_TNRSNR_map_fac3_idx_7_weak=41
  4895. VIP_var_TNRSNR_map_fac3_idx_7_medium=2
  4896. VIP_var_TNRSNR_map_fac3_idx_7_strong=0
  4897. VIP_var_TNRSNR_map_fac4_idx_7_weak=57
  4898. VIP_var_TNRSNR_map_fac4_idx_7_medium=3
  4899. VIP_var_TNRSNR_map_fac4_idx_7_strong=1
  4900. VIP_var_TNRSNR_map_fac5_idx_7_weak=71
  4901. VIP_var_TNRSNR_map_fac5_idx_7_medium=9
  4902. VIP_var_TNRSNR_map_fac5_idx_7_strong=5
  4903. VIP_var_TNRC_map_enable_idx_7=0x1
  4904. VIP_var_TNRC_map_thr0_idx_7_weak=23
  4905. VIP_var_TNRC_map_thr0_idx_7_medium=23
  4906. VIP_var_TNRC_map_thr0_idx_7_strong=23
  4907. VIP_var_TNRC_map_thr1_idx_7_weak=49
  4908. VIP_var_TNRC_map_thr1_idx_7_medium=49
  4909. VIP_var_TNRC_map_thr1_idx_7_strong=49
  4910. VIP_var_TNRC_map_thr2_idx_7_weak=65
  4911. VIP_var_TNRC_map_thr2_idx_7_medium=65
  4912. VIP_var_TNRC_map_thr2_idx_7_strong=65
  4913. VIP_var_TNRC_map_thr3_idx_7_weak=77
  4914. VIP_var_TNRC_map_thr3_idx_7_medium=77
  4915. VIP_var_TNRC_map_thr3_idx_7_strong=77
  4916. VIP_var_TNRC_map_thr4_idx_7_weak=87
  4917. VIP_var_TNRC_map_thr4_idx_7_medium=87
  4918. VIP_var_TNRC_map_thr4_idx_7_strong=87
  4919. VIP_var_TNRC_map_slp0_idx_7_weak=47
  4920. VIP_var_TNRC_map_slp0_idx_7_medium=47
  4921. VIP_var_TNRC_map_slp0_idx_7_strong=47
  4922. VIP_var_TNRC_map_slp1_idx_7_weak=59
  4923. VIP_var_TNRC_map_slp1_idx_7_medium=59
  4924. VIP_var_TNRC_map_slp1_idx_7_strong=59
  4925. VIP_var_TNRC_map_slp2_idx_7_weak=88
  4926. VIP_var_TNRC_map_slp2_idx_7_medium=88
  4927. VIP_var_TNRC_map_slp2_idx_7_strong=88
  4928. VIP_var_TNRC_map_slp3_idx_7_weak=101
  4929. VIP_var_TNRC_map_slp3_idx_7_medium=101
  4930. VIP_var_TNRC_map_slp3_idx_7_strong=101
  4931. VIP_var_TNRC_map_slp4_idx_7_weak=147
  4932. VIP_var_TNRC_map_slp4_idx_7_medium=147
  4933. VIP_var_TNRC_map_slp4_idx_7_strong=147
  4934. VIP_var_TNRC_map_slp5_idx_7_weak=168
  4935. VIP_var_TNRC_map_slp5_idx_7_medium=168
  4936. VIP_var_TNRC_map_slp5_idx_7_strong=168
  4937. VIP_var_TNRC_map_fac0_idx_7_weak=0
  4938. VIP_var_TNRC_map_fac0_idx_7_medium=0
  4939. VIP_var_TNRC_map_fac0_idx_7_strong=0
  4940. VIP_var_TNRC_map_fac1_idx_7_weak=17
  4941. VIP_var_TNRC_map_fac1_idx_7_medium=17
  4942. VIP_var_TNRC_map_fac1_idx_7_strong=17
  4943. VIP_var_TNRC_map_fac2_idx_7_weak=41
  4944. VIP_var_TNRC_map_fac2_idx_7_medium=41
  4945. VIP_var_TNRC_map_fac2_idx_7_strong=41
  4946. VIP_var_TNRC_map_fac3_idx_7_weak=63
  4947. VIP_var_TNRC_map_fac3_idx_7_medium=63
  4948. VIP_var_TNRC_map_fac3_idx_7_strong=63
  4949. VIP_var_TNRC_map_fac4_idx_7_weak=82
  4950. VIP_var_TNRC_map_fac4_idx_7_medium=82
  4951. VIP_var_TNRC_map_fac4_idx_7_strong=82
  4952. VIP_var_TNRC_map_fac5_idx_7_weak=105
  4953. VIP_var_TNRC_map_fac5_idx_7_medium=105
  4954. VIP_var_TNRC_map_fac5_idx_7_strong=105
  4955. VIP_var_TNRZ_map_enable_idx_7=0x1
  4956. VIP_var_TNRZ_map_thr0_idx_7_weak=12
  4957. VIP_var_TNRZ_map_thr0_idx_7_medium=31
  4958. VIP_var_TNRZ_map_thr0_idx_7_strong=16
  4959. VIP_var_TNRZ_map_thr1_idx_7_weak=27
  4960. VIP_var_TNRZ_map_thr1_idx_7_medium=48
  4961. VIP_var_TNRZ_map_thr1_idx_7_strong=31
  4962. VIP_var_TNRZ_map_thr2_idx_7_weak=43
  4963. VIP_var_TNRZ_map_thr2_idx_7_medium=59
  4964. VIP_var_TNRZ_map_thr2_idx_7_strong=50
  4965. VIP_var_TNRZ_map_thr3_idx_7_weak=54
  4966. VIP_var_TNRZ_map_thr3_idx_7_medium=80
  4967. VIP_var_TNRZ_map_thr3_idx_7_strong=63
  4968. VIP_var_TNRZ_map_thr4_idx_7_weak=74
  4969. VIP_var_TNRZ_map_thr4_idx_7_medium=99
  4970. VIP_var_TNRZ_map_thr4_idx_7_strong=85
  4971. VIP_var_TNRZ_map_slp0_idx_7_weak=26
  4972. VIP_var_TNRZ_map_slp0_idx_7_medium=17
  4973. VIP_var_TNRZ_map_slp0_idx_7_strong=52
  4974. VIP_var_TNRZ_map_slp1_idx_7_weak=32
  4975. VIP_var_TNRZ_map_slp1_idx_7_medium=30
  4976. VIP_var_TNRZ_map_slp1_idx_7_strong=59
  4977. VIP_var_TNRZ_map_slp2_idx_7_weak=34
  4978. VIP_var_TNRZ_map_slp2_idx_7_medium=32
  4979. VIP_var_TNRZ_map_slp2_idx_7_strong=55
  4980. VIP_var_TNRZ_map_slp3_idx_7_weak=93
  4981. VIP_var_TNRZ_map_slp3_idx_7_medium=62
  4982. VIP_var_TNRZ_map_slp3_idx_7_strong=39
  4983. VIP_var_TNRZ_map_slp4_idx_7_weak=52
  4984. VIP_var_TNRZ_map_slp4_idx_7_medium=52
  4985. VIP_var_TNRZ_map_slp4_idx_7_strong=29
  4986. VIP_var_TNRZ_map_slp5_idx_7_weak=51
  4987. VIP_var_TNRZ_map_slp5_idx_7_medium=38
  4988. VIP_var_TNRZ_map_slp5_idx_7_strong=110
  4989. VIP_var_TNRZ_map_fac0_idx_7_weak=90
  4990. VIP_var_TNRZ_map_fac0_idx_7_medium=82
  4991. VIP_var_TNRZ_map_fac0_idx_7_strong=1
  4992. VIP_var_TNRZ_map_fac1_idx_7_weak=100
  4993. VIP_var_TNRZ_map_fac1_idx_7_medium=99
  4994. VIP_var_TNRZ_map_fac1_idx_7_strong=27
  4995. VIP_var_TNRZ_map_fac2_idx_7_weak=115
  4996. VIP_var_TNRZ_map_fac2_idx_7_medium=115
  4997. VIP_var_TNRZ_map_fac2_idx_7_strong=55
  4998. VIP_var_TNRZ_map_fac3_idx_7_weak=132
  4999. VIP_var_TNRZ_map_fac3_idx_7_medium=126
  5000. VIP_var_TNRZ_map_fac3_idx_7_strong=88
  5001. VIP_var_TNRZ_map_fac4_idx_7_weak=164
  5002. VIP_var_TNRZ_map_fac4_idx_7_medium=167
  5003. VIP_var_TNRZ_map_fac4_idx_7_strong=104
  5004. VIP_var_TNRZ_map_fac5_idx_7_weak=197
  5005. VIP_var_TNRZ_map_fac5_idx_7_medium=198
  5006. VIP_var_TNRZ_map_fac5_idx_7_strong=124
  5007. VIP_var_TNRZC_map_enable_idx_7=0x1
  5008. VIP_var_TNRZC_map_thr0_idx_7_weak=12
  5009. VIP_var_TNRZC_map_thr0_idx_7_medium=34
  5010. VIP_var_TNRZC_map_thr0_idx_7_strong=40
  5011. VIP_var_TNRZC_map_thr1_idx_7_weak=24
  5012. VIP_var_TNRZC_map_thr1_idx_7_medium=70
  5013. VIP_var_TNRZC_map_thr1_idx_7_strong=70
  5014. VIP_var_TNRZC_map_thr2_idx_7_weak=32
  5015. VIP_var_TNRZC_map_thr2_idx_7_medium=100
  5016. VIP_var_TNRZC_map_thr2_idx_7_strong=101
  5017. VIP_var_TNRZC_map_thr3_idx_7_weak=48
  5018. VIP_var_TNRZC_map_thr3_idx_7_medium=122
  5019. VIP_var_TNRZC_map_thr3_idx_7_strong=132
  5020. VIP_var_TNRZC_map_thr4_idx_7_weak=64
  5021. VIP_var_TNRZC_map_thr4_idx_7_medium=138
  5022. VIP_var_TNRZC_map_thr4_idx_7_strong=170
  5023. VIP_var_TNRZC_map_slp0_idx_7_weak=288
  5024. VIP_var_TNRZC_map_slp0_idx_7_medium=43
  5025. VIP_var_TNRZC_map_slp0_idx_7_strong=8
  5026. VIP_var_TNRZC_map_slp1_idx_7_weak=138
  5027. VIP_var_TNRZC_map_slp1_idx_7_medium=60
  5028. VIP_var_TNRZC_map_slp1_idx_7_strong=14
  5029. VIP_var_TNRZC_map_slp2_idx_7_weak=240
  5030. VIP_var_TNRZC_map_slp2_idx_7_medium=64
  5031. VIP_var_TNRZC_map_slp2_idx_7_strong=26
  5032. VIP_var_TNRZC_map_slp3_idx_7_weak=104
  5033. VIP_var_TNRZC_map_slp3_idx_7_medium=66
  5034. VIP_var_TNRZC_map_slp3_idx_7_strong=35
  5035. VIP_var_TNRZC_map_slp4_idx_7_weak=72
  5036. VIP_var_TNRZC_map_slp4_idx_7_medium=156
  5037. VIP_var_TNRZC_map_slp4_idx_7_strong=60
  5038. VIP_var_TNRZC_map_slp5_idx_7_weak=92
  5039. VIP_var_TNRZC_map_slp5_idx_7_medium=271
  5040. VIP_var_TNRZC_map_slp5_idx_7_strong=84
  5041. VIP_var_TNRZC_map_fac0_idx_7_weak=0
  5042. VIP_var_TNRZC_map_fac0_idx_7_medium=0
  5043. VIP_var_TNRZC_map_fac0_idx_7_strong=0
  5044. VIP_var_TNRZC_map_fac1_idx_7_weak=27
  5045. VIP_var_TNRZC_map_fac1_idx_7_medium=23
  5046. VIP_var_TNRZC_map_fac1_idx_7_strong=5
  5047. VIP_var_TNRZC_map_fac2_idx_7_weak=40
  5048. VIP_var_TNRZC_map_fac2_idx_7_medium=57
  5049. VIP_var_TNRZC_map_fac2_idx_7_strong=12
  5050. VIP_var_TNRZC_map_fac3_idx_7_weak=55
  5051. VIP_var_TNRZC_map_fac3_idx_7_medium=87
  5052. VIP_var_TNRZC_map_fac3_idx_7_strong=25
  5053. VIP_var_TNRZC_map_fac4_idx_7_weak=68
  5054. VIP_var_TNRZC_map_fac4_idx_7_medium=110
  5055. VIP_var_TNRZC_map_fac4_idx_7_strong=42
  5056. VIP_var_TNRZC_map_fac5_idx_7_weak=77
  5057. VIP_var_TNRZC_map_fac5_idx_7_medium=149
  5058. VIP_var_TNRZC_map_fac5_idx_7_strong=78
  5059. VIP_TABLE_MAGIC_NUMBER_10=9513
  5060. VIP_var_UV_coring_src_0_3=0x202
  5061. VIP_var_UV_coring_src_4_7=0x4040000
  5062. VIP_var_UV_coring_src_8_11=0x1010103
  5063. VIP_var_UV_coring_src_12_15=0x1010101
  5064. VIP_var_UV_coring_src_16_19=0x1
  5065. VIP_var_UV_coring_en_id_0=1
  5066. VIP_var_UV_coring_value_id_0=0xe624d4aa
  5067. VIP_var_UV_coring_en_id_1=1
  5068. VIP_var_UV_coring_value_id_1=0xe6290644
  5069. VIP_var_UV_coring_en_id_2=1
  5070. VIP_var_UV_coring_value_id_2=0xe626e4a1
  5071. VIP_var_UV_coring_en_id_3=1
  5072. VIP_var_UV_coring_value_id_3=0xe5e6f5bb
  5073. VIP_var_UV_coring_en_id_4=1
  5074. VIP_var_UV_coring_value_id_4=0xe628e4aa
  5075. VIP_var_UV_coring_en_id_5=1
  5076. VIP_var_UV_coring_value_id_5=0xe6290644
  5077. VIP_var_UV_coring_en_id_6=1
  5078. VIP_var_UV_coring_value_id_6=0xe6290644
  5079. VIP_var_UV_coring_en_id_7=1
  5080. VIP_var_UV_coring_value_id_7=0xe6290644
  5081. VIP_TABLE_MAGIC_NUMBER_11=9514
  5082. VIP_var_new_sharp_predcti_src_0_3=0x3030303
  5083. VIP_var_new_sharp_predcti_src_4_7=0x2040303
  5084. VIP_var_new_sharp_predcti_src_8_11=0x2050206
  5085. VIP_var_new_sharp_predcti_src_12_15=0x1000003
  5086. VIP_var_new_sharp_predcti_src_16_19=0x1
  5087. VIP_var_new_sharp_predcti_en_id_0=1
  5088. VIP_var_new_sharp_predcti_prechromaFilter_en_id_0=1
  5089. VIP_var_new_sharp_predcti_postchromaFilter_en_id_0=0
  5090. VIP_var_new_sharp_predcti_prechromaFilter_level_id_0=1
  5091. VIP_var_new_sharp_predcti_coef1_id_0=3848
  5092. VIP_var_new_sharp_predcti_coef2_id_0=3888
  5093. VIP_var_new_sharp_predcti_coef3_id_0=3972
  5094. VIP_var_new_sharp_predcti_scale_0percent_id_0=2
  5095. VIP_var_new_sharp_predcti_scale_50percent_id_0=2
  5096. VIP_var_new_sharp_predcti_scale_100percent_id_0=2
  5097. VIP_var_new_sharp_predcti_gaintap_0percent_id_0=1
  5098. VIP_var_new_sharp_predcti_gaintap_50percent_id_0=1
  5099. VIP_var_new_sharp_predcti_gaintap_100percent_id_0=1
  5100. VIP_var_new_sharp_predcti_shoottap_0percent_id_0=1
  5101. VIP_var_new_sharp_predcti_shoottap_50percent_id_0=1
  5102. VIP_var_new_sharp_predcti_shoottap_100percent_id_0=1
  5103. VIP_var_new_sharp_predcti_gain0_0percent_id_0=0
  5104. VIP_var_new_sharp_predcti_gain0_50percent_id_0=0
  5105. VIP_var_new_sharp_predcti_gain0_100percent_id_0=0
  5106. VIP_var_new_sharp_predcti_gain1_0percent_id_0=0
  5107. VIP_var_new_sharp_predcti_gain1_50percent_id_0=99
  5108. VIP_var_new_sharp_predcti_gain1_100percent_id_0=0
  5109. VIP_var_new_sharp_predcti_gain2_0percent_id_0=0
  5110. VIP_var_new_sharp_predcti_gain2_50percent_id_0=99
  5111. VIP_var_new_sharp_predcti_gain2_100percent_id_0=0
  5112. VIP_var_new_sharp_predcti_th0_0percent_id_0=0
  5113. VIP_var_new_sharp_predcti_th0_50percent_id_0=0
  5114. VIP_var_new_sharp_predcti_th0_100percent_id_0=0
  5115. VIP_var_new_sharp_predcti_th1_0percent_id_0=0
  5116. VIP_var_new_sharp_predcti_th1_50percent_id_0=198
  5117. VIP_var_new_sharp_predcti_th1_100percent_id_0=0
  5118. VIP_var_new_sharp_predcti_slp0_0percent_id_0=0
  5119. VIP_var_new_sharp_predcti_slp0_50percent_id_0=44
  5120. VIP_var_new_sharp_predcti_slp0_100percent_id_0=0
  5121. VIP_var_new_sharp_predcti_slp1_0percent_id_0=0
  5122. VIP_var_new_sharp_predcti_slp1_50percent_id_0=0
  5123. VIP_var_new_sharp_predcti_slp1_100percent_id_0=0
  5124. VIP_var_new_sharp_predcti_en_id_1=1
  5125. VIP_var_new_sharp_predcti_prechromaFilter_en_id_1=1
  5126. VIP_var_new_sharp_predcti_postchromaFilter_en_id_1=0
  5127. VIP_var_new_sharp_predcti_prechromaFilter_level_id_1=0
  5128. VIP_var_new_sharp_predcti_coef1_id_1=3848
  5129. VIP_var_new_sharp_predcti_coef2_id_1=3888
  5130. VIP_var_new_sharp_predcti_coef3_id_1=3972
  5131. VIP_var_new_sharp_predcti_scale_0percent_id_1=0
  5132. VIP_var_new_sharp_predcti_scale_50percent_id_1=0
  5133. VIP_var_new_sharp_predcti_scale_100percent_id_1=0
  5134. VIP_var_new_sharp_predcti_gaintap_0percent_id_1=0
  5135. VIP_var_new_sharp_predcti_gaintap_50percent_id_1=0
  5136. VIP_var_new_sharp_predcti_gaintap_100percent_id_1=0
  5137. VIP_var_new_sharp_predcti_shoottap_0percent_id_1=0
  5138. VIP_var_new_sharp_predcti_shoottap_50percent_id_1=0
  5139. VIP_var_new_sharp_predcti_shoottap_100percent_id_1=0
  5140. VIP_var_new_sharp_predcti_gain0_0percent_id_1=0
  5141. VIP_var_new_sharp_predcti_gain0_50percent_id_1=96
  5142. VIP_var_new_sharp_predcti_gain0_100percent_id_1=196
  5143. VIP_var_new_sharp_predcti_gain1_0percent_id_1=0
  5144. VIP_var_new_sharp_predcti_gain1_50percent_id_1=96
  5145. VIP_var_new_sharp_predcti_gain1_100percent_id_1=196
  5146. VIP_var_new_sharp_predcti_gain2_0percent_id_1=0
  5147. VIP_var_new_sharp_predcti_gain2_50percent_id_1=64
  5148. VIP_var_new_sharp_predcti_gain2_100percent_id_1=153
  5149. VIP_var_new_sharp_predcti_th0_0percent_id_1=0
  5150. VIP_var_new_sharp_predcti_th0_50percent_id_1=16
  5151. VIP_var_new_sharp_predcti_th0_100percent_id_1=16
  5152. VIP_var_new_sharp_predcti_th1_0percent_id_1=0
  5153. VIP_var_new_sharp_predcti_th1_50percent_id_1=180
  5154. VIP_var_new_sharp_predcti_th1_100percent_id_1=180
  5155. VIP_var_new_sharp_predcti_slp0_0percent_id_1=100
  5156. VIP_var_new_sharp_predcti_slp0_50percent_id_1=100
  5157. VIP_var_new_sharp_predcti_slp0_100percent_id_1=0
  5158. VIP_var_new_sharp_predcti_slp1_0percent_id_1=100
  5159. VIP_var_new_sharp_predcti_slp1_50percent_id_1=100
  5160. VIP_var_new_sharp_predcti_slp1_100percent_id_1=144
  5161. VIP_var_new_sharp_predcti_en_id_2=1
  5162. VIP_var_new_sharp_predcti_prechromaFilter_en_id_2=1
  5163. VIP_var_new_sharp_predcti_postchromaFilter_en_id_2=0
  5164. VIP_var_new_sharp_predcti_prechromaFilter_level_id_2=0
  5165. VIP_var_new_sharp_predcti_coef1_id_2=448
  5166. VIP_var_new_sharp_predcti_coef2_id_2=4060
  5167. VIP_var_new_sharp_predcti_coef3_id_2=3865
  5168. VIP_var_new_sharp_predcti_scale_0percent_id_2=0
  5169. VIP_var_new_sharp_predcti_scale_50percent_id_2=0
  5170. VIP_var_new_sharp_predcti_scale_100percent_id_2=0
  5171. VIP_var_new_sharp_predcti_gaintap_0percent_id_2=0
  5172. VIP_var_new_sharp_predcti_gaintap_50percent_id_2=0
  5173. VIP_var_new_sharp_predcti_gaintap_100percent_id_2=0
  5174. VIP_var_new_sharp_predcti_shoottap_0percent_id_2=0
  5175. VIP_var_new_sharp_predcti_shoottap_50percent_id_2=0
  5176. VIP_var_new_sharp_predcti_shoottap_100percent_id_2=0
  5177. VIP_var_new_sharp_predcti_gain0_0percent_id_2=0
  5178. VIP_var_new_sharp_predcti_gain0_50percent_id_2=0
  5179. VIP_var_new_sharp_predcti_gain0_100percent_id_2=0
  5180. VIP_var_new_sharp_predcti_gain1_0percent_id_2=0
  5181. VIP_var_new_sharp_predcti_gain1_50percent_id_2=128
  5182. VIP_var_new_sharp_predcti_gain1_100percent_id_2=196
  5183. VIP_var_new_sharp_predcti_gain2_0percent_id_2=0
  5184. VIP_var_new_sharp_predcti_gain2_50percent_id_2=128
  5185. VIP_var_new_sharp_predcti_gain2_100percent_id_2=196
  5186. VIP_var_new_sharp_predcti_th0_0percent_id_2=0
  5187. VIP_var_new_sharp_predcti_th0_50percent_id_2=16
  5188. VIP_var_new_sharp_predcti_th0_100percent_id_2=0
  5189. VIP_var_new_sharp_predcti_th1_0percent_id_2=0
  5190. VIP_var_new_sharp_predcti_th1_50percent_id_2=180
  5191. VIP_var_new_sharp_predcti_th1_100percent_id_2=180
  5192. VIP_var_new_sharp_predcti_slp0_0percent_id_2=100
  5193. VIP_var_new_sharp_predcti_slp0_50percent_id_2=455
  5194. VIP_var_new_sharp_predcti_slp0_100percent_id_2=384
  5195. VIP_var_new_sharp_predcti_slp1_0percent_id_2=100
  5196. VIP_var_new_sharp_predcti_slp1_50percent_id_2=0
  5197. VIP_var_new_sharp_predcti_slp1_100percent_id_2=0
  5198. VIP_var_new_sharp_predcti_en_id_3=1
  5199. VIP_var_new_sharp_predcti_prechromaFilter_en_id_3=1
  5200. VIP_var_new_sharp_predcti_postchromaFilter_en_id_3=0
  5201. VIP_var_new_sharp_predcti_prechromaFilter_level_id_3=1
  5202. VIP_var_new_sharp_predcti_coef1_id_3=322
  5203. VIP_var_new_sharp_predcti_coef2_id_3=3735
  5204. VIP_var_new_sharp_predcti_coef3_id_3=3912
  5205. VIP_var_new_sharp_predcti_scale_0percent_id_3=2
  5206. VIP_var_new_sharp_predcti_scale_50percent_id_3=2
  5207. VIP_var_new_sharp_predcti_scale_100percent_id_3=2
  5208. VIP_var_new_sharp_predcti_gaintap_0percent_id_3=1
  5209. VIP_var_new_sharp_predcti_gaintap_50percent_id_3=1
  5210. VIP_var_new_sharp_predcti_gaintap_100percent_id_3=1
  5211. VIP_var_new_sharp_predcti_shoottap_0percent_id_3=2
  5212. VIP_var_new_sharp_predcti_shoottap_50percent_id_3=2
  5213. VIP_var_new_sharp_predcti_shoottap_100percent_id_3=2
  5214. VIP_var_new_sharp_predcti_gain0_0percent_id_3=0
  5215. VIP_var_new_sharp_predcti_gain0_50percent_id_3=0
  5216. VIP_var_new_sharp_predcti_gain0_100percent_id_3=0
  5217. VIP_var_new_sharp_predcti_gain1_0percent_id_3=0
  5218. VIP_var_new_sharp_predcti_gain1_50percent_id_3=99
  5219. VIP_var_new_sharp_predcti_gain1_100percent_id_3=136
  5220. VIP_var_new_sharp_predcti_gain2_0percent_id_3=0
  5221. VIP_var_new_sharp_predcti_gain2_50percent_id_3=99
  5222. VIP_var_new_sharp_predcti_gain2_100percent_id_3=136
  5223. VIP_var_new_sharp_predcti_th0_0percent_id_3=0
  5224. VIP_var_new_sharp_predcti_th0_50percent_id_3=0
  5225. VIP_var_new_sharp_predcti_th0_100percent_id_3=0
  5226. VIP_var_new_sharp_predcti_th1_0percent_id_3=0
  5227. VIP_var_new_sharp_predcti_th1_50percent_id_3=198
  5228. VIP_var_new_sharp_predcti_th1_100percent_id_3=180
  5229. VIP_var_new_sharp_predcti_slp0_0percent_id_3=100
  5230. VIP_var_new_sharp_predcti_slp0_50percent_id_3=44
  5231. VIP_var_new_sharp_predcti_slp0_100percent_id_3=119
  5232. VIP_var_new_sharp_predcti_slp1_0percent_id_3=100
  5233. VIP_var_new_sharp_predcti_slp1_50percent_id_3=0
  5234. VIP_var_new_sharp_predcti_slp1_100percent_id_3=0
  5235. VIP_var_new_sharp_predcti_en_id_4=1
  5236. VIP_var_new_sharp_predcti_prechromaFilter_en_id_4=1
  5237. VIP_var_new_sharp_predcti_postchromaFilter_en_id_4=1
  5238. VIP_var_new_sharp_predcti_prechromaFilter_level_id_4=3
  5239. VIP_var_new_sharp_predcti_coef1_id_4=67
  5240. VIP_var_new_sharp_predcti_coef2_id_4=3718
  5241. VIP_var_new_sharp_predcti_coef3_id_4=4008
  5242. VIP_var_new_sharp_predcti_scale_0percent_id_4=2
  5243. VIP_var_new_sharp_predcti_scale_50percent_id_4=2
  5244. VIP_var_new_sharp_predcti_scale_100percent_id_4=2
  5245. VIP_var_new_sharp_predcti_gaintap_0percent_id_4=1
  5246. VIP_var_new_sharp_predcti_gaintap_50percent_id_4=1
  5247. VIP_var_new_sharp_predcti_gaintap_100percent_id_4=1
  5248. VIP_var_new_sharp_predcti_shoottap_0percent_id_4=2
  5249. VIP_var_new_sharp_predcti_shoottap_50percent_id_4=2
  5250. VIP_var_new_sharp_predcti_shoottap_100percent_id_4=2
  5251. VIP_var_new_sharp_predcti_gain0_0percent_id_4=0
  5252. VIP_var_new_sharp_predcti_gain0_50percent_id_4=0
  5253. VIP_var_new_sharp_predcti_gain0_100percent_id_4=50
  5254. VIP_var_new_sharp_predcti_gain1_0percent_id_4=0
  5255. VIP_var_new_sharp_predcti_gain1_50percent_id_4=100
  5256. VIP_var_new_sharp_predcti_gain1_100percent_id_4=141
  5257. VIP_var_new_sharp_predcti_gain2_0percent_id_4=0
  5258. VIP_var_new_sharp_predcti_gain2_50percent_id_4=100
  5259. VIP_var_new_sharp_predcti_gain2_100percent_id_4=141
  5260. VIP_var_new_sharp_predcti_th0_0percent_id_4=0
  5261. VIP_var_new_sharp_predcti_th0_50percent_id_4=0
  5262. VIP_var_new_sharp_predcti_th0_100percent_id_4=0
  5263. VIP_var_new_sharp_predcti_th1_0percent_id_4=0
  5264. VIP_var_new_sharp_predcti_th1_50percent_id_4=175
  5265. VIP_var_new_sharp_predcti_th1_100percent_id_4=180
  5266. VIP_var_new_sharp_predcti_slp0_0percent_id_4=100
  5267. VIP_var_new_sharp_predcti_slp0_50percent_id_4=108
  5268. VIP_var_new_sharp_predcti_slp0_100percent_id_4=126
  5269. VIP_var_new_sharp_predcti_slp1_0percent_id_4=100
  5270. VIP_var_new_sharp_predcti_slp1_50percent_id_4=0
  5271. VIP_var_new_sharp_predcti_slp1_100percent_id_4=0
  5272. VIP_var_new_sharp_predcti_en_id_5=1
  5273. VIP_var_new_sharp_predcti_prechromaFilter_en_id_5=1
  5274. VIP_var_new_sharp_predcti_postchromaFilter_en_id_5=1
  5275. VIP_var_new_sharp_predcti_prechromaFilter_level_id_5=2
  5276. VIP_var_new_sharp_predcti_coef1_id_5=407
  5277. VIP_var_new_sharp_predcti_coef2_id_5=3827
  5278. VIP_var_new_sharp_predcti_coef3_id_5=3819
  5279. VIP_var_new_sharp_predcti_scale_0percent_id_5=0
  5280. VIP_var_new_sharp_predcti_scale_50percent_id_5=0
  5281. VIP_var_new_sharp_predcti_scale_100percent_id_5=0
  5282. VIP_var_new_sharp_predcti_gaintap_0percent_id_5=1
  5283. VIP_var_new_sharp_predcti_gaintap_50percent_id_5=1
  5284. VIP_var_new_sharp_predcti_gaintap_100percent_id_5=1
  5285. VIP_var_new_sharp_predcti_shoottap_0percent_id_5=1
  5286. VIP_var_new_sharp_predcti_shoottap_50percent_id_5=1
  5287. VIP_var_new_sharp_predcti_shoottap_100percent_id_5=1
  5288. VIP_var_new_sharp_predcti_gain0_0percent_id_5=0
  5289. VIP_var_new_sharp_predcti_gain0_50percent_id_5=48
  5290. VIP_var_new_sharp_predcti_gain0_100percent_id_5=126
  5291. VIP_var_new_sharp_predcti_gain1_0percent_id_5=0
  5292. VIP_var_new_sharp_predcti_gain1_50percent_id_5=125
  5293. VIP_var_new_sharp_predcti_gain1_100percent_id_5=185
  5294. VIP_var_new_sharp_predcti_gain2_0percent_id_5=0
  5295. VIP_var_new_sharp_predcti_gain2_50percent_id_5=125
  5296. VIP_var_new_sharp_predcti_gain2_100percent_id_5=185
  5297. VIP_var_new_sharp_predcti_th0_0percent_id_5=0
  5298. VIP_var_new_sharp_predcti_th0_50percent_id_5=0
  5299. VIP_var_new_sharp_predcti_th0_100percent_id_5=2
  5300. VIP_var_new_sharp_predcti_th1_0percent_id_5=0
  5301. VIP_var_new_sharp_predcti_th1_50percent_id_5=175
  5302. VIP_var_new_sharp_predcti_th1_100percent_id_5=180
  5303. VIP_var_new_sharp_predcti_slp0_0percent_id_5=100
  5304. VIP_var_new_sharp_predcti_slp0_50percent_id_5=169
  5305. VIP_var_new_sharp_predcti_slp0_100percent_id_5=164
  5306. VIP_var_new_sharp_predcti_slp1_0percent_id_5=100
  5307. VIP_var_new_sharp_predcti_slp1_50percent_id_5=0
  5308. VIP_var_new_sharp_predcti_slp1_100percent_id_5=0
  5309. VIP_var_new_sharp_predcti_en_id_6=1
  5310. VIP_var_new_sharp_predcti_prechromaFilter_en_id_6=1
  5311. VIP_var_new_sharp_predcti_postchromaFilter_en_id_6=0
  5312. VIP_var_new_sharp_predcti_prechromaFilter_level_id_6=0
  5313. VIP_var_new_sharp_predcti_coef1_id_6=407
  5314. VIP_var_new_sharp_predcti_coef2_id_6=3827
  5315. VIP_var_new_sharp_predcti_coef3_id_6=3819
  5316. VIP_var_new_sharp_predcti_scale_0percent_id_6=0
  5317. VIP_var_new_sharp_predcti_scale_50percent_id_6=0
  5318. VIP_var_new_sharp_predcti_scale_100percent_id_6=0
  5319. VIP_var_new_sharp_predcti_gaintap_0percent_id_6=0
  5320. VIP_var_new_sharp_predcti_gaintap_50percent_id_6=0
  5321. VIP_var_new_sharp_predcti_gaintap_100percent_id_6=0
  5322. VIP_var_new_sharp_predcti_shoottap_0percent_id_6=2
  5323. VIP_var_new_sharp_predcti_shoottap_50percent_id_6=2
  5324. VIP_var_new_sharp_predcti_shoottap_100percent_id_6=2
  5325. VIP_var_new_sharp_predcti_gain0_0percent_id_6=0
  5326. VIP_var_new_sharp_predcti_gain0_50percent_id_6=66
  5327. VIP_var_new_sharp_predcti_gain0_100percent_id_6=126
  5328. VIP_var_new_sharp_predcti_gain1_0percent_id_6=0
  5329. VIP_var_new_sharp_predcti_gain1_50percent_id_6=128
  5330. VIP_var_new_sharp_predcti_gain1_100percent_id_6=185
  5331. VIP_var_new_sharp_predcti_gain2_0percent_id_6=0
  5332. VIP_var_new_sharp_predcti_gain2_50percent_id_6=128
  5333. VIP_var_new_sharp_predcti_gain2_100percent_id_6=185
  5334. VIP_var_new_sharp_predcti_th0_0percent_id_6=0
  5335. VIP_var_new_sharp_predcti_th0_50percent_id_6=0
  5336. VIP_var_new_sharp_predcti_th0_100percent_id_6=2
  5337. VIP_var_new_sharp_predcti_th1_0percent_id_6=0
  5338. VIP_var_new_sharp_predcti_th1_50percent_id_6=175
  5339. VIP_var_new_sharp_predcti_th1_100percent_id_6=180
  5340. VIP_var_new_sharp_predcti_slp0_0percent_id_6=100
  5341. VIP_var_new_sharp_predcti_slp0_50percent_id_6=141
  5342. VIP_var_new_sharp_predcti_slp0_100percent_id_6=164
  5343. VIP_var_new_sharp_predcti_slp1_0percent_id_6=100
  5344. VIP_var_new_sharp_predcti_slp1_50percent_id_6=0
  5345. VIP_var_new_sharp_predcti_slp1_100percent_id_6=0
  5346. VIP_var_new_sharp_predcti_en_id_7=1
  5347. VIP_var_new_sharp_predcti_prechromaFilter_en_id_7=1
  5348. VIP_var_new_sharp_predcti_postchromaFilter_en_id_7=1
  5349. VIP_var_new_sharp_predcti_prechromaFilter_level_id_7=0
  5350. VIP_var_new_sharp_predcti_coef1_id_7=0
  5351. VIP_var_new_sharp_predcti_coef2_id_7=0
  5352. VIP_var_new_sharp_predcti_coef3_id_7=0
  5353. VIP_var_new_sharp_predcti_scale_0percent_id_7=0
  5354. VIP_var_new_sharp_predcti_scale_50percent_id_7=0
  5355. VIP_var_new_sharp_predcti_scale_100percent_id_7=0
  5356. VIP_var_new_sharp_predcti_gaintap_0percent_id_7=5
  5357. VIP_var_new_sharp_predcti_gaintap_50percent_id_7=5
  5358. VIP_var_new_sharp_predcti_gaintap_100percent_id_7=5
  5359. VIP_var_new_sharp_predcti_shoottap_0percent_id_7=0
  5360. VIP_var_new_sharp_predcti_shoottap_50percent_id_7=0
  5361. VIP_var_new_sharp_predcti_shoottap_100percent_id_7=0
  5362. VIP_var_new_sharp_predcti_gain0_0percent_id_7=0
  5363. VIP_var_new_sharp_predcti_gain0_50percent_id_7=96
  5364. VIP_var_new_sharp_predcti_gain0_100percent_id_7=255
  5365. VIP_var_new_sharp_predcti_gain1_0percent_id_7=0
  5366. VIP_var_new_sharp_predcti_gain1_50percent_id_7=96
  5367. VIP_var_new_sharp_predcti_gain1_100percent_id_7=255
  5368. VIP_var_new_sharp_predcti_gain2_0percent_id_7=0
  5369. VIP_var_new_sharp_predcti_gain2_50percent_id_7=64
  5370. VIP_var_new_sharp_predcti_gain2_100percent_id_7=255
  5371. VIP_var_new_sharp_predcti_th0_0percent_id_7=0
  5372. VIP_var_new_sharp_predcti_th0_50percent_id_7=16
  5373. VIP_var_new_sharp_predcti_th0_100percent_id_7=16
  5374. VIP_var_new_sharp_predcti_th1_0percent_id_7=0
  5375. VIP_var_new_sharp_predcti_th1_50percent_id_7=180
  5376. VIP_var_new_sharp_predcti_th1_100percent_id_7=180
  5377. VIP_var_new_sharp_predcti_slp0_0percent_id_7=100
  5378. VIP_var_new_sharp_predcti_slp0_50percent_id_7=100
  5379. VIP_var_new_sharp_predcti_slp0_100percent_id_7=100
  5380. VIP_var_new_sharp_predcti_slp1_0percent_id_7=100
  5381. VIP_var_new_sharp_predcti_slp1_50percent_id_7=100
  5382. VIP_var_new_sharp_predcti_slp1_100percent_id_7=100
  5383. VIP_TABLE_MAGIC_NUMBER_12=9515
  5384. VIP_var_new_sharp_postdcti_src_0_3=0x3040303
  5385. VIP_var_new_sharp_postdcti_src_4_7=0x2060303
  5386. VIP_var_new_sharp_postdcti_src_8_11=0x2050207
  5387. VIP_var_new_sharp_postdcti_src_12_15=0x1000003
  5388. VIP_var_new_sharp_postdcti_src_16_19=0x1
  5389. VIP_var_new_sharp_postdcti_en_id_0=1
  5390. VIP_var_new_sharp_postchromafilter_en_id_0=0
  5391. VIP_var_new_sharp_prechromafilter_en_id_0=1
  5392. VIP_var_new_sharp_postchromafilter_level_id_0=2
  5393. VIP_var_new_sharp_postdcti_coef1_id_0=319
  5394. VIP_var_new_sharp_postdcti_coef2_id_0=3957
  5395. VIP_var_new_sharp_postdcti_coef3_id_0=3764
  5396. VIP_var_new_sharp_postdcti_coef4_id_0=3908
  5397. VIP_var_new_sharp_postdcti_coef5_id_0=4
  5398. VIP_var_new_sharp_postdcti_coef6_id_0=51
  5399. VIP_var_new_sharp_postdcti_scale_0percent_id_0=0
  5400. VIP_var_new_sharp_postdcti_scale_50percent_id_0=2
  5401. VIP_var_new_sharp_postdcti_scale_100percent_id_0=3
  5402. VIP_var_new_sharp_postdcti_gaintap_0percent_id_0=0
  5403. VIP_var_new_sharp_postdcti_gaintap_50percent_id_0=2
  5404. VIP_var_new_sharp_postdcti_gaintap_100percent_id_0=5
  5405. VIP_var_new_sharp_postdcti_shoottap_0percent_id_0=5
  5406. VIP_var_new_sharp_postdcti_shoottap_50percent_id_0=5
  5407. VIP_var_new_sharp_postdcti_shoottap_100percent_id_0=5
  5408. VIP_var_new_sharp_postdcti_gain0_0percent_id_0=0
  5409. VIP_var_new_sharp_postdcti_gain0_50percent_id_0=0
  5410. VIP_var_new_sharp_postdcti_gain0_100percent_id_0=120
  5411. VIP_var_new_sharp_postdcti_gain1_0percent_id_0=0
  5412. VIP_var_new_sharp_postdcti_gain1_50percent_id_0=115
  5413. VIP_var_new_sharp_postdcti_gain1_100percent_id_0=120
  5414. VIP_var_new_sharp_postdcti_gain2_0percent_id_0=0
  5415. VIP_var_new_sharp_postdcti_gain2_50percent_id_0=0
  5416. VIP_var_new_sharp_postdcti_gain2_100percent_id_0=120
  5417. VIP_var_new_sharp_postdcti_th0_0percent_id_0=0
  5418. VIP_var_new_sharp_postdcti_th0_50percent_id_0=84
  5419. VIP_var_new_sharp_postdcti_th0_100percent_id_0=0
  5420. VIP_var_new_sharp_postdcti_th1_0percent_id_0=0
  5421. VIP_var_new_sharp_postdcti_th1_50percent_id_0=196
  5422. VIP_var_new_sharp_postdcti_th1_100percent_id_0=0
  5423. VIP_var_new_sharp_postdcti_slope0_0percent_id_0=0
  5424. VIP_var_new_sharp_postdcti_slope0_50percent_id_0=120
  5425. VIP_var_new_sharp_postdcti_slope0_100percent_id_0=0
  5426. VIP_var_new_sharp_postdcti_slope1_0percent_id_0=0
  5427. VIP_var_new_sharp_postdcti_slope1_50percent_id_0=124
  5428. VIP_var_new_sharp_postdcti_slope1_100percent_id_0=0
  5429. VIP_var_new_sharp_postdcti_en_id_1=1
  5430. VIP_var_new_sharp_postchromafilter_en_id_1=0
  5431. VIP_var_new_sharp_prechromafilter_en_id_1=0
  5432. VIP_var_new_sharp_postchromafilter_level_id_1=3
  5433. VIP_var_new_sharp_postdcti_coef1_id_1=3880
  5434. VIP_var_new_sharp_postdcti_coef2_id_1=3870
  5435. VIP_var_new_sharp_postdcti_coef3_id_1=3941
  5436. VIP_var_new_sharp_postdcti_coef4_id_1=3957
  5437. VIP_var_new_sharp_postdcti_coef5_id_1=4013
  5438. VIP_var_new_sharp_postdcti_coef6_id_1=4029
  5439. VIP_var_new_sharp_postdcti_scale_0percent_id_1=1
  5440. VIP_var_new_sharp_postdcti_scale_50percent_id_1=2
  5441. VIP_var_new_sharp_postdcti_scale_100percent_id_1=0
  5442. VIP_var_new_sharp_postdcti_gaintap_0percent_id_1=5
  5443. VIP_var_new_sharp_postdcti_gaintap_50percent_id_1=5
  5444. VIP_var_new_sharp_postdcti_gaintap_100percent_id_1=0
  5445. VIP_var_new_sharp_postdcti_shoottap_0percent_id_1=5
  5446. VIP_var_new_sharp_postdcti_shoottap_50percent_id_1=5
  5447. VIP_var_new_sharp_postdcti_shoottap_100percent_id_1=5
  5448. VIP_var_new_sharp_postdcti_gain0_0percent_id_1=0
  5449. VIP_var_new_sharp_postdcti_gain0_50percent_id_1=0
  5450. VIP_var_new_sharp_postdcti_gain0_100percent_id_1=0
  5451. VIP_var_new_sharp_postdcti_gain1_0percent_id_1=0
  5452. VIP_var_new_sharp_postdcti_gain1_50percent_id_1=64
  5453. VIP_var_new_sharp_postdcti_gain1_100percent_id_1=255
  5454. VIP_var_new_sharp_postdcti_gain2_0percent_id_1=0
  5455. VIP_var_new_sharp_postdcti_gain2_50percent_id_1=64
  5456. VIP_var_new_sharp_postdcti_gain2_100percent_id_1=255
  5457. VIP_var_new_sharp_postdcti_th0_0percent_id_1=0
  5458. VIP_var_new_sharp_postdcti_th0_50percent_id_1=0
  5459. VIP_var_new_sharp_postdcti_th0_100percent_id_1=0
  5460. VIP_var_new_sharp_postdcti_th1_0percent_id_1=53
  5461. VIP_var_new_sharp_postdcti_th1_50percent_id_1=53
  5462. VIP_var_new_sharp_postdcti_th1_100percent_id_1=106
  5463. VIP_var_new_sharp_postdcti_slope0_0percent_id_1=100
  5464. VIP_var_new_sharp_postdcti_slope0_50percent_id_1=77
  5465. VIP_var_new_sharp_postdcti_slope0_100percent_id_1=153
  5466. VIP_var_new_sharp_postdcti_slope1_0percent_id_1=100
  5467. VIP_var_new_sharp_postdcti_slope1_50percent_id_1=0
  5468. VIP_var_new_sharp_postdcti_slope1_100percent_id_1=0
  5469. VIP_var_new_sharp_postdcti_en_id_2=1
  5470. VIP_var_new_sharp_postchromafilter_en_id_2=0
  5471. VIP_var_new_sharp_prechromafilter_en_id_2=1
  5472. VIP_var_new_sharp_postchromafilter_level_id_2=3
  5473. VIP_var_new_sharp_postdcti_coef1_id_2=371
  5474. VIP_var_new_sharp_postdcti_coef2_id_2=83
  5475. VIP_var_new_sharp_postdcti_coef3_id_2=3931
  5476. VIP_var_new_sharp_postdcti_coef4_id_2=3850
  5477. VIP_var_new_sharp_postdcti_coef5_id_2=3907
  5478. VIP_var_new_sharp_postdcti_coef6_id_2=3992
  5479. VIP_var_new_sharp_postdcti_scale_0percent_id_2=0
  5480. VIP_var_new_sharp_postdcti_scale_50percent_id_2=1
  5481. VIP_var_new_sharp_postdcti_scale_100percent_id_2=0
  5482. VIP_var_new_sharp_postdcti_gaintap_0percent_id_2=5
  5483. VIP_var_new_sharp_postdcti_gaintap_50percent_id_2=5
  5484. VIP_var_new_sharp_postdcti_gaintap_100percent_id_2=5
  5485. VIP_var_new_sharp_postdcti_shoottap_0percent_id_2=5
  5486. VIP_var_new_sharp_postdcti_shoottap_50percent_id_2=5
  5487. VIP_var_new_sharp_postdcti_shoottap_100percent_id_2=5
  5488. VIP_var_new_sharp_postdcti_gain0_0percent_id_2=0
  5489. VIP_var_new_sharp_postdcti_gain0_50percent_id_2=0
  5490. VIP_var_new_sharp_postdcti_gain0_100percent_id_2=0
  5491. VIP_var_new_sharp_postdcti_gain1_0percent_id_2=0
  5492. VIP_var_new_sharp_postdcti_gain1_50percent_id_2=64
  5493. VIP_var_new_sharp_postdcti_gain1_100percent_id_2=255
  5494. VIP_var_new_sharp_postdcti_gain2_0percent_id_2=0
  5495. VIP_var_new_sharp_postdcti_gain2_50percent_id_2=64
  5496. VIP_var_new_sharp_postdcti_gain2_100percent_id_2=255
  5497. VIP_var_new_sharp_postdcti_th0_0percent_id_2=0
  5498. VIP_var_new_sharp_postdcti_th0_50percent_id_2=0
  5499. VIP_var_new_sharp_postdcti_th0_100percent_id_2=0
  5500. VIP_var_new_sharp_postdcti_th1_0percent_id_2=53
  5501. VIP_var_new_sharp_postdcti_th1_50percent_id_2=30
  5502. VIP_var_new_sharp_postdcti_th1_100percent_id_2=64
  5503. VIP_var_new_sharp_postdcti_slope0_0percent_id_2=100
  5504. VIP_var_new_sharp_postdcti_slope0_50percent_id_2=136
  5505. VIP_var_new_sharp_postdcti_slope0_100percent_id_2=255
  5506. VIP_var_new_sharp_postdcti_slope1_0percent_id_2=100
  5507. VIP_var_new_sharp_postdcti_slope1_50percent_id_2=0
  5508. VIP_var_new_sharp_postdcti_slope1_100percent_id_2=0
  5509. VIP_var_new_sharp_postdcti_en_id_3=1
  5510. VIP_var_new_sharp_postchromafilter_en_id_3=0
  5511. VIP_var_new_sharp_prechromafilter_en_id_3=1
  5512. VIP_var_new_sharp_postchromafilter_level_id_3=2
  5513. VIP_var_new_sharp_postdcti_coef1_id_3=139
  5514. VIP_var_new_sharp_postdcti_coef2_id_3=3568
  5515. VIP_var_new_sharp_postdcti_coef3_id_3=3998
  5516. VIP_var_new_sharp_postdcti_coef4_id_3=2
  5517. VIP_var_new_sharp_postdcti_coef5_id_3=4050
  5518. VIP_var_new_sharp_postdcti_coef6_id_3=28
  5519. VIP_var_new_sharp_postdcti_scale_0percent_id_3=1
  5520. VIP_var_new_sharp_postdcti_scale_50percent_id_3=0
  5521. VIP_var_new_sharp_postdcti_scale_100percent_id_3=3
  5522. VIP_var_new_sharp_postdcti_gaintap_0percent_id_3=5
  5523. VIP_var_new_sharp_postdcti_gaintap_50percent_id_3=1
  5524. VIP_var_new_sharp_postdcti_gaintap_100percent_id_3=5
  5525. VIP_var_new_sharp_postdcti_shoottap_0percent_id_3=5
  5526. VIP_var_new_sharp_postdcti_shoottap_50percent_id_3=5
  5527. VIP_var_new_sharp_postdcti_shoottap_100percent_id_3=5
  5528. VIP_var_new_sharp_postdcti_gain0_0percent_id_3=0
  5529. VIP_var_new_sharp_postdcti_gain0_50percent_id_3=0
  5530. VIP_var_new_sharp_postdcti_gain0_100percent_id_3=20
  5531. VIP_var_new_sharp_postdcti_gain1_0percent_id_3=0
  5532. VIP_var_new_sharp_postdcti_gain1_50percent_id_3=112
  5533. VIP_var_new_sharp_postdcti_gain1_100percent_id_3=255
  5534. VIP_var_new_sharp_postdcti_gain2_0percent_id_3=0
  5535. VIP_var_new_sharp_postdcti_gain2_50percent_id_3=0
  5536. VIP_var_new_sharp_postdcti_gain2_100percent_id_3=255
  5537. VIP_var_new_sharp_postdcti_th0_0percent_id_3=0
  5538. VIP_var_new_sharp_postdcti_th0_50percent_id_3=35
  5539. VIP_var_new_sharp_postdcti_th0_100percent_id_3=0
  5540. VIP_var_new_sharp_postdcti_th1_0percent_id_3=53
  5541. VIP_var_new_sharp_postdcti_th1_50percent_id_3=182
  5542. VIP_var_new_sharp_postdcti_th1_100percent_id_3=59
  5543. VIP_var_new_sharp_postdcti_slope0_0percent_id_3=100
  5544. VIP_var_new_sharp_postdcti_slope0_50percent_id_3=76
  5545. VIP_var_new_sharp_postdcti_slope0_100percent_id_3=255
  5546. VIP_var_new_sharp_postdcti_slope1_0percent_id_3=100
  5547. VIP_var_new_sharp_postdcti_slope1_50percent_id_3=113
  5548. VIP_var_new_sharp_postdcti_slope1_100percent_id_3=0
  5549. VIP_var_new_sharp_postdcti_en_id_4=1
  5550. VIP_var_new_sharp_postchromafilter_en_id_4=0
  5551. VIP_var_new_sharp_prechromafilter_en_id_4=1
  5552. VIP_var_new_sharp_postchromafilter_level_id_4=3
  5553. VIP_var_new_sharp_postdcti_coef1_id_4=3880
  5554. VIP_var_new_sharp_postdcti_coef2_id_4=3870
  5555. VIP_var_new_sharp_postdcti_coef3_id_4=3941
  5556. VIP_var_new_sharp_postdcti_coef4_id_4=3957
  5557. VIP_var_new_sharp_postdcti_coef5_id_4=4013
  5558. VIP_var_new_sharp_postdcti_coef6_id_4=4029
  5559. VIP_var_new_sharp_postdcti_scale_0percent_id_4=0
  5560. VIP_var_new_sharp_postdcti_scale_50percent_id_4=0
  5561. VIP_var_new_sharp_postdcti_scale_100percent_id_4=0
  5562. VIP_var_new_sharp_postdcti_gaintap_0percent_id_4=5
  5563. VIP_var_new_sharp_postdcti_gaintap_50percent_id_4=3
  5564. VIP_var_new_sharp_postdcti_gaintap_100percent_id_4=5
  5565. VIP_var_new_sharp_postdcti_shoottap_0percent_id_4=5
  5566. VIP_var_new_sharp_postdcti_shoottap_50percent_id_4=5
  5567. VIP_var_new_sharp_postdcti_shoottap_100percent_id_4=5
  5568. VIP_var_new_sharp_postdcti_gain0_0percent_id_4=0
  5569. VIP_var_new_sharp_postdcti_gain0_50percent_id_4=0
  5570. VIP_var_new_sharp_postdcti_gain0_100percent_id_4=0
  5571. VIP_var_new_sharp_postdcti_gain1_0percent_id_4=0
  5572. VIP_var_new_sharp_postdcti_gain1_50percent_id_4=64
  5573. VIP_var_new_sharp_postdcti_gain1_100percent_id_4=104
  5574. VIP_var_new_sharp_postdcti_gain2_0percent_id_4=0
  5575. VIP_var_new_sharp_postdcti_gain2_50percent_id_4=64
  5576. VIP_var_new_sharp_postdcti_gain2_100percent_id_4=104
  5577. VIP_var_new_sharp_postdcti_th0_0percent_id_4=0
  5578. VIP_var_new_sharp_postdcti_th0_50percent_id_4=0
  5579. VIP_var_new_sharp_postdcti_th0_100percent_id_4=0
  5580. VIP_var_new_sharp_postdcti_th1_0percent_id_4=53
  5581. VIP_var_new_sharp_postdcti_th1_50percent_id_4=29
  5582. VIP_var_new_sharp_postdcti_th1_100percent_id_4=168
  5583. VIP_var_new_sharp_postdcti_slope0_0percent_id_4=100
  5584. VIP_var_new_sharp_postdcti_slope0_50percent_id_4=141
  5585. VIP_var_new_sharp_postdcti_slope0_100percent_id_4=221
  5586. VIP_var_new_sharp_postdcti_slope1_0percent_id_4=100
  5587. VIP_var_new_sharp_postdcti_slope1_50percent_id_4=0
  5588. VIP_var_new_sharp_postdcti_slope1_100percent_id_4=0
  5589. VIP_var_new_sharp_postdcti_en_id_5=1
  5590. VIP_var_new_sharp_postchromafilter_en_id_5=0
  5591. VIP_var_new_sharp_prechromafilter_en_id_5=1
  5592. VIP_var_new_sharp_postchromafilter_level_id_5=2
  5593. VIP_var_new_sharp_postdcti_coef1_id_5=371
  5594. VIP_var_new_sharp_postdcti_coef2_id_5=83
  5595. VIP_var_new_sharp_postdcti_coef3_id_5=3931
  5596. VIP_var_new_sharp_postdcti_coef4_id_5=3850
  5597. VIP_var_new_sharp_postdcti_coef5_id_5=3907
  5598. VIP_var_new_sharp_postdcti_coef6_id_5=3992
  5599. VIP_var_new_sharp_postdcti_scale_0percent_id_5=1
  5600. VIP_var_new_sharp_postdcti_scale_50percent_id_5=1
  5601. VIP_var_new_sharp_postdcti_scale_100percent_id_5=3
  5602. VIP_var_new_sharp_postdcti_gaintap_0percent_id_5=5
  5603. VIP_var_new_sharp_postdcti_gaintap_50percent_id_5=2
  5604. VIP_var_new_sharp_postdcti_gaintap_100percent_id_5=5
  5605. VIP_var_new_sharp_postdcti_shoottap_0percent_id_5=5
  5606. VIP_var_new_sharp_postdcti_shoottap_50percent_id_5=2
  5607. VIP_var_new_sharp_postdcti_shoottap_100percent_id_5=5
  5608. VIP_var_new_sharp_postdcti_gain0_0percent_id_5=0
  5609. VIP_var_new_sharp_postdcti_gain0_50percent_id_5=20
  5610. VIP_var_new_sharp_postdcti_gain0_100percent_id_5=20
  5611. VIP_var_new_sharp_postdcti_gain1_0percent_id_5=0
  5612. VIP_var_new_sharp_postdcti_gain1_50percent_id_5=125
  5613. VIP_var_new_sharp_postdcti_gain1_100percent_id_5=255
  5614. VIP_var_new_sharp_postdcti_gain2_0percent_id_5=0
  5615. VIP_var_new_sharp_postdcti_gain2_50percent_id_5=125
  5616. VIP_var_new_sharp_postdcti_gain2_100percent_id_5=255
  5617. VIP_var_new_sharp_postdcti_th0_0percent_id_5=0
  5618. VIP_var_new_sharp_postdcti_th0_50percent_id_5=0
  5619. VIP_var_new_sharp_postdcti_th0_100percent_id_5=0
  5620. VIP_var_new_sharp_postdcti_th1_0percent_id_5=53
  5621. VIP_var_new_sharp_postdcti_th1_50percent_id_5=197
  5622. VIP_var_new_sharp_postdcti_th1_100percent_id_5=59
  5623. VIP_var_new_sharp_postdcti_slope0_0percent_id_5=100
  5624. VIP_var_new_sharp_postdcti_slope0_50percent_id_5=112
  5625. VIP_var_new_sharp_postdcti_slope0_100percent_id_5=255
  5626. VIP_var_new_sharp_postdcti_slope1_0percent_id_5=100
  5627. VIP_var_new_sharp_postdcti_slope1_50percent_id_5=0
  5628. VIP_var_new_sharp_postdcti_slope1_100percent_id_5=0
  5629. VIP_var_new_sharp_postdcti_en_id_6=1
  5630. VIP_var_new_sharp_postchromafilter_en_id_6=0
  5631. VIP_var_new_sharp_prechromafilter_en_id_6=1
  5632. VIP_var_new_sharp_postchromafilter_level_id_6=2
  5633. VIP_var_new_sharp_postdcti_coef1_id_6=371
  5634. VIP_var_new_sharp_postdcti_coef2_id_6=83
  5635. VIP_var_new_sharp_postdcti_coef3_id_6=3931
  5636. VIP_var_new_sharp_postdcti_coef4_id_6=3850
  5637. VIP_var_new_sharp_postdcti_coef5_id_6=3907
  5638. VIP_var_new_sharp_postdcti_coef6_id_6=3992
  5639. VIP_var_new_sharp_postdcti_scale_0percent_id_6=1
  5640. VIP_var_new_sharp_postdcti_scale_50percent_id_6=2
  5641. VIP_var_new_sharp_postdcti_scale_100percent_id_6=3
  5642. VIP_var_new_sharp_postdcti_gaintap_0percent_id_6=5
  5643. VIP_var_new_sharp_postdcti_gaintap_50percent_id_6=5
  5644. VIP_var_new_sharp_postdcti_gaintap_100percent_id_6=5
  5645. VIP_var_new_sharp_postdcti_shoottap_0percent_id_6=5
  5646. VIP_var_new_sharp_postdcti_shoottap_50percent_id_6=5
  5647. VIP_var_new_sharp_postdcti_shoottap_100percent_id_6=5
  5648. VIP_var_new_sharp_postdcti_gain0_0percent_id_6=0
  5649. VIP_var_new_sharp_postdcti_gain0_50percent_id_6=20
  5650. VIP_var_new_sharp_postdcti_gain0_100percent_id_6=20
  5651. VIP_var_new_sharp_postdcti_gain1_0percent_id_6=0
  5652. VIP_var_new_sharp_postdcti_gain1_50percent_id_6=124
  5653. VIP_var_new_sharp_postdcti_gain1_100percent_id_6=255
  5654. VIP_var_new_sharp_postdcti_gain2_0percent_id_6=0
  5655. VIP_var_new_sharp_postdcti_gain2_50percent_id_6=124
  5656. VIP_var_new_sharp_postdcti_gain2_100percent_id_6=255
  5657. VIP_var_new_sharp_postdcti_th0_0percent_id_6=0
  5658. VIP_var_new_sharp_postdcti_th0_50percent_id_6=0
  5659. VIP_var_new_sharp_postdcti_th0_100percent_id_6=0
  5660. VIP_var_new_sharp_postdcti_th1_0percent_id_6=53
  5661. VIP_var_new_sharp_postdcti_th1_50percent_id_6=197
  5662. VIP_var_new_sharp_postdcti_th1_100percent_id_6=59
  5663. VIP_var_new_sharp_postdcti_slope0_0percent_id_6=100
  5664. VIP_var_new_sharp_postdcti_slope0_50percent_id_6=110
  5665. VIP_var_new_sharp_postdcti_slope0_100percent_id_6=255
  5666. VIP_var_new_sharp_postdcti_slope1_0percent_id_6=100
  5667. VIP_var_new_sharp_postdcti_slope1_50percent_id_6=0
  5668. VIP_var_new_sharp_postdcti_slope1_100percent_id_6=0
  5669. VIP_var_new_sharp_postdcti_en_id_7=1
  5670. VIP_var_new_sharp_postchromafilter_en_id_7=0
  5671. VIP_var_new_sharp_prechromafilter_en_id_7=1
  5672. VIP_var_new_sharp_postchromafilter_level_id_7=2
  5673. VIP_var_new_sharp_postdcti_coef1_id_7=3880
  5674. VIP_var_new_sharp_postdcti_coef2_id_7=3870
  5675. VIP_var_new_sharp_postdcti_coef3_id_7=3941
  5676. VIP_var_new_sharp_postdcti_coef4_id_7=3957
  5677. VIP_var_new_sharp_postdcti_coef5_id_7=4013
  5678. VIP_var_new_sharp_postdcti_coef6_id_7=4029
  5679. VIP_var_new_sharp_postdcti_scale_0percent_id_7=1
  5680. VIP_var_new_sharp_postdcti_scale_50percent_id_7=0
  5681. VIP_var_new_sharp_postdcti_scale_100percent_id_7=3
  5682. VIP_var_new_sharp_postdcti_gaintap_0percent_id_7=5
  5683. VIP_var_new_sharp_postdcti_gaintap_50percent_id_7=5
  5684. VIP_var_new_sharp_postdcti_gaintap_100percent_id_7=5
  5685. VIP_var_new_sharp_postdcti_shoottap_0percent_id_7=5
  5686. VIP_var_new_sharp_postdcti_shoottap_50percent_id_7=1
  5687. VIP_var_new_sharp_postdcti_shoottap_100percent_id_7=5
  5688. VIP_var_new_sharp_postdcti_gain0_0percent_id_7=0
  5689. VIP_var_new_sharp_postdcti_gain0_50percent_id_7=20
  5690. VIP_var_new_sharp_postdcti_gain0_100percent_id_7=20
  5691. VIP_var_new_sharp_postdcti_gain1_0percent_id_7=0
  5692. VIP_var_new_sharp_postdcti_gain1_50percent_id_7=124
  5693. VIP_var_new_sharp_postdcti_gain1_100percent_id_7=255
  5694. VIP_var_new_sharp_postdcti_gain2_0percent_id_7=0
  5695. VIP_var_new_sharp_postdcti_gain2_50percent_id_7=124
  5696. VIP_var_new_sharp_postdcti_gain2_100percent_id_7=255
  5697. VIP_var_new_sharp_postdcti_th0_0percent_id_7=0
  5698. VIP_var_new_sharp_postdcti_th0_50percent_id_7=0
  5699. VIP_var_new_sharp_postdcti_th0_100percent_id_7=0
  5700. VIP_var_new_sharp_postdcti_th1_0percent_id_7=53
  5701. VIP_var_new_sharp_postdcti_th1_50percent_id_7=197
  5702. VIP_var_new_sharp_postdcti_th1_100percent_id_7=59
  5703. VIP_var_new_sharp_postdcti_slope0_0percent_id_7=100
  5704. VIP_var_new_sharp_postdcti_slope0_50percent_id_7=110
  5705. VIP_var_new_sharp_postdcti_slope0_100percent_id_7=255
  5706. VIP_var_new_sharp_postdcti_slope1_0percent_id_7=100
  5707. VIP_var_new_sharp_postdcti_slope1_50percent_id_7=0
  5708. VIP_var_new_sharp_postdcti_slope1_100percent_id_7=0
  5709. VIP_TABLE_MAGIC_NUMBER_13=9516
  5710. VIP_var_new_sharp_postdlti_src_0_3=0x303
  5711. VIP_var_new_sharp_postdlti_src_4_7=0x2020303
  5712. VIP_var_new_sharp_postdlti_src_8_11=0x4060207
  5713. VIP_var_new_sharp_postdlti_src_12_15=0x1050502
  5714. VIP_var_new_sharp_postdlti_src_16_19=0x1
  5715. VIP_var_new_sharp_postdlti_en_id_0=0
  5716. VIP_var_new_sharp_dynamicclip_en_id_0=0
  5717. VIP_var_new_sharp_postdlti_coef1_id_0=3670
  5718. VIP_var_new_sharp_postdlti_coef2_id_0=3934
  5719. VIP_var_new_sharp_postdlti_coef3_id_0=283
  5720. VIP_var_new_sharp_postdlti_coef4_id_0=4014
  5721. VIP_var_new_sharp_postdlti_coef5_id_0=2
  5722. VIP_var_new_sharp_postdlti_coef6_id_0=4077
  5723. VIP_var_new_sharp_postdlti_DyCMode_0percent_id_0=2
  5724. VIP_var_new_sharp_postdlti_DyCMode_50percent_id_0=2
  5725. VIP_var_new_sharp_postdlti_DyCMode_100percent_id_0=2
  5726. VIP_var_new_sharp_postdlti_DyCOvershoot_0percent_id_0=10
  5727. VIP_var_new_sharp_postdlti_DyCOvershoot_50percent_id_0=10
  5728. VIP_var_new_sharp_postdlti_DyCOvershoot_100percent_id_0=10
  5729. VIP_var_new_sharp_postdlti_DyCUndershoot_0percent_id_0=10
  5730. VIP_var_new_sharp_postdlti_DyCUndershoot_50percent_id_0=10
  5731. VIP_var_new_sharp_postdlti_DyCUndershoot_100percent_id_0=10
  5732. VIP_var_new_sharp_postdlti_DyCOvershootFac_0percent_id_0=6
  5733. VIP_var_new_sharp_postdlti_DyCOvershootFac_50percent_id_0=6
  5734. VIP_var_new_sharp_postdlti_DyCOvershootFac_100percent_id_0=6
  5735. VIP_var_new_sharp_postdlti_DyCUndershootFac_0percent_id_0=6
  5736. VIP_var_new_sharp_postdlti_DyCUndershootFac_50percent_id_0=6
  5737. VIP_var_new_sharp_postdlti_DyCUndershootFac_100percent_id_0=6
  5738. VIP_var_new_sharp_postdlti_scale_0percent_id_0=0
  5739. VIP_var_new_sharp_postdlti_scale_50percent_id_0=0
  5740. VIP_var_new_sharp_postdlti_scale_100percent_id_0=0
  5741. VIP_var_new_sharp_postdlti_gaintap_0percent_id_0=0
  5742. VIP_var_new_sharp_postdlti_gaintap_50percent_id_0=0
  5743. VIP_var_new_sharp_postdlti_gaintap_100percent_id_0=0
  5744. VIP_var_new_sharp_postdlti_shoottap_0percent_id_0=0
  5745. VIP_var_new_sharp_postdlti_shoottap_50percent_id_0=0
  5746. VIP_var_new_sharp_postdlti_shoottap_100percent_id_0=0
  5747. VIP_var_new_sharp_postdlti_normalovershoot_0percent_id_0=64
  5748. VIP_var_new_sharp_postdlti_normalovershoot_50percent_id_0=64
  5749. VIP_var_new_sharp_postdlti_normalovershoot_100percent_id_0=64
  5750. VIP_var_new_sharp_postdlti_normalundershoot_0percent_id_0=64
  5751. VIP_var_new_sharp_postdlti_normalundershoot_50percent_id_0=128
  5752. VIP_var_new_sharp_postdlti_normalundershoot_100percent_id_0=64
  5753. VIP_var_new_sharp_postdlti_gain0_0percent_id_0=0
  5754. VIP_var_new_sharp_postdlti_gain0_50percent_id_0=25
  5755. VIP_var_new_sharp_postdlti_gain0_100percent_id_0=35
  5756. VIP_var_new_sharp_postdlti_gain1_0percent_id_0=0
  5757. VIP_var_new_sharp_postdlti_gain1_50percent_id_0=26
  5758. VIP_var_new_sharp_postdlti_gain1_100percent_id_0=35
  5759. VIP_var_new_sharp_postdlti_gain2_0percent_id_0=0
  5760. VIP_var_new_sharp_postdlti_gain2_50percent_id_0=0
  5761. VIP_var_new_sharp_postdlti_gain2_100percent_id_0=2
  5762. VIP_var_new_sharp_postdlti_th0_0percent_id_0=0
  5763. VIP_var_new_sharp_postdlti_th0_50percent_id_0=8
  5764. VIP_var_new_sharp_postdlti_th0_100percent_id_0=3
  5765. VIP_var_new_sharp_postdlti_th1_0percent_id_0=171
  5766. VIP_var_new_sharp_postdlti_th1_50percent_id_0=8
  5767. VIP_var_new_sharp_postdlti_th1_100percent_id_0=17
  5768. VIP_var_new_sharp_postdlti_slope0_0percent_id_0=0
  5769. VIP_var_new_sharp_postdlti_slope0_50percent_id_0=0
  5770. VIP_var_new_sharp_postdlti_slope0_100percent_id_0=0
  5771. VIP_var_new_sharp_postdlti_slope1_0percent_id_0=0
  5772. VIP_var_new_sharp_postdlti_slope1_50percent_id_0=59
  5773. VIP_var_new_sharp_postdlti_slope1_100percent_id_0=91
  5774. VIP_var_new_sharp_postdlti_en_id_1=0
  5775. VIP_var_new_sharp_dynamicclip_en_id_1=0
  5776. VIP_var_new_sharp_postdlti_coef1_id_1=319
  5777. VIP_var_new_sharp_postdlti_coef2_id_1=3957
  5778. VIP_var_new_sharp_postdlti_coef3_id_1=3764
  5779. VIP_var_new_sharp_postdlti_coef4_id_1=3908
  5780. VIP_var_new_sharp_postdlti_coef5_id_1=4
  5781. VIP_var_new_sharp_postdlti_coef6_id_1=51
  5782. VIP_var_new_sharp_postdlti_DyCMode_0percent_id_1=1
  5783. VIP_var_new_sharp_postdlti_DyCMode_50percent_id_1=1
  5784. VIP_var_new_sharp_postdlti_DyCMode_100percent_id_1=1
  5785. VIP_var_new_sharp_postdlti_DyCOvershoot_0percent_id_1=4
  5786. VIP_var_new_sharp_postdlti_DyCOvershoot_50percent_id_1=4
  5787. VIP_var_new_sharp_postdlti_DyCOvershoot_100percent_id_1=4
  5788. VIP_var_new_sharp_postdlti_DyCUndershoot_0percent_id_1=4
  5789. VIP_var_new_sharp_postdlti_DyCUndershoot_50percent_id_1=4
  5790. VIP_var_new_sharp_postdlti_DyCUndershoot_100percent_id_1=4
  5791. VIP_var_new_sharp_postdlti_DyCOvershootFac_0percent_id_1=3
  5792. VIP_var_new_sharp_postdlti_DyCOvershootFac_50percent_id_1=3
  5793. VIP_var_new_sharp_postdlti_DyCOvershootFac_100percent_id_1=3
  5794. VIP_var_new_sharp_postdlti_DyCUndershootFac_0percent_id_1=3
  5795. VIP_var_new_sharp_postdlti_DyCUndershootFac_50percent_id_1=3
  5796. VIP_var_new_sharp_postdlti_DyCUndershootFac_100percent_id_1=3
  5797. VIP_var_new_sharp_postdlti_scale_0percent_id_1=1
  5798. VIP_var_new_sharp_postdlti_scale_50percent_id_1=1
  5799. VIP_var_new_sharp_postdlti_scale_100percent_id_1=1
  5800. VIP_var_new_sharp_postdlti_gaintap_0percent_id_1=0
  5801. VIP_var_new_sharp_postdlti_gaintap_50percent_id_1=0
  5802. VIP_var_new_sharp_postdlti_gaintap_100percent_id_1=0
  5803. VIP_var_new_sharp_postdlti_shoottap_0percent_id_1=0
  5804. VIP_var_new_sharp_postdlti_shoottap_50percent_id_1=0
  5805. VIP_var_new_sharp_postdlti_shoottap_100percent_id_1=0
  5806. VIP_var_new_sharp_postdlti_normalovershoot_0percent_id_1=0
  5807. VIP_var_new_sharp_postdlti_normalovershoot_50percent_id_1=64
  5808. VIP_var_new_sharp_postdlti_normalovershoot_100percent_id_1=128
  5809. VIP_var_new_sharp_postdlti_normalundershoot_0percent_id_1=0
  5810. VIP_var_new_sharp_postdlti_normalundershoot_50percent_id_1=64
  5811. VIP_var_new_sharp_postdlti_normalundershoot_100percent_id_1=128
  5812. VIP_var_new_sharp_postdlti_gain0_0percent_id_1=0
  5813. VIP_var_new_sharp_postdlti_gain0_50percent_id_1=64
  5814. VIP_var_new_sharp_postdlti_gain0_100percent_id_1=64
  5815. VIP_var_new_sharp_postdlti_gain1_0percent_id_1=0
  5816. VIP_var_new_sharp_postdlti_gain1_50percent_id_1=128
  5817. VIP_var_new_sharp_postdlti_gain1_100percent_id_1=196
  5818. VIP_var_new_sharp_postdlti_gain2_0percent_id_1=0
  5819. VIP_var_new_sharp_postdlti_gain2_50percent_id_1=128
  5820. VIP_var_new_sharp_postdlti_gain2_100percent_id_1=196
  5821. VIP_var_new_sharp_postdlti_th0_0percent_id_1=6
  5822. VIP_var_new_sharp_postdlti_th0_50percent_id_1=16
  5823. VIP_var_new_sharp_postdlti_th0_100percent_id_1=16
  5824. VIP_var_new_sharp_postdlti_th1_0percent_id_1=180
  5825. VIP_var_new_sharp_postdlti_th1_50percent_id_1=180
  5826. VIP_var_new_sharp_postdlti_th1_100percent_id_1=255
  5827. VIP_var_new_sharp_postdlti_slope0_0percent_id_1=0
  5828. VIP_var_new_sharp_postdlti_slope0_50percent_id_1=100
  5829. VIP_var_new_sharp_postdlti_slope0_100percent_id_1=262
  5830. VIP_var_new_sharp_postdlti_slope1_0percent_id_1=0
  5831. VIP_var_new_sharp_postdlti_slope1_50percent_id_1=100
  5832. VIP_var_new_sharp_postdlti_slope1_100percent_id_1=0
  5833. VIP_var_new_sharp_postdlti_en_id_2=0
  5834. VIP_var_new_sharp_dynamicclip_en_id_2=0
  5835. VIP_var_new_sharp_postdlti_coef1_id_2=3658
  5836. VIP_var_new_sharp_postdlti_coef2_id_2=317
  5837. VIP_var_new_sharp_postdlti_coef3_id_2=3928
  5838. VIP_var_new_sharp_postdlti_coef4_id_2=54
  5839. VIP_var_new_sharp_postdlti_coef5_id_2=11
  5840. VIP_var_new_sharp_postdlti_coef6_id_2=4076
  5841. VIP_var_new_sharp_postdlti_DyCMode_0percent_id_2=2
  5842. VIP_var_new_sharp_postdlti_DyCMode_50percent_id_2=2
  5843. VIP_var_new_sharp_postdlti_DyCMode_100percent_id_2=2
  5844. VIP_var_new_sharp_postdlti_DyCOvershoot_0percent_id_2=0
  5845. VIP_var_new_sharp_postdlti_DyCOvershoot_50percent_id_2=0
  5846. VIP_var_new_sharp_postdlti_DyCOvershoot_100percent_id_2=0
  5847. VIP_var_new_sharp_postdlti_DyCUndershoot_0percent_id_2=4
  5848. VIP_var_new_sharp_postdlti_DyCUndershoot_50percent_id_2=4
  5849. VIP_var_new_sharp_postdlti_DyCUndershoot_100percent_id_2=4
  5850. VIP_var_new_sharp_postdlti_DyCOvershootFac_0percent_id_2=3
  5851. VIP_var_new_sharp_postdlti_DyCOvershootFac_50percent_id_2=3
  5852. VIP_var_new_sharp_postdlti_DyCOvershootFac_100percent_id_2=3
  5853. VIP_var_new_sharp_postdlti_DyCUndershootFac_0percent_id_2=3
  5854. VIP_var_new_sharp_postdlti_DyCUndershootFac_50percent_id_2=3
  5855. VIP_var_new_sharp_postdlti_DyCUndershootFac_100percent_id_2=3
  5856. VIP_var_new_sharp_postdlti_scale_0percent_id_2=1
  5857. VIP_var_new_sharp_postdlti_scale_50percent_id_2=1
  5858. VIP_var_new_sharp_postdlti_scale_100percent_id_2=1
  5859. VIP_var_new_sharp_postdlti_gaintap_0percent_id_2=2
  5860. VIP_var_new_sharp_postdlti_gaintap_50percent_id_2=2
  5861. VIP_var_new_sharp_postdlti_gaintap_100percent_id_2=2
  5862. VIP_var_new_sharp_postdlti_shoottap_0percent_id_2=2
  5863. VIP_var_new_sharp_postdlti_shoottap_50percent_id_2=2
  5864. VIP_var_new_sharp_postdlti_shoottap_100percent_id_2=2
  5865. VIP_var_new_sharp_postdlti_normalovershoot_0percent_id_2=0
  5866. VIP_var_new_sharp_postdlti_normalovershoot_50percent_id_2=32
  5867. VIP_var_new_sharp_postdlti_normalovershoot_100percent_id_2=128
  5868. VIP_var_new_sharp_postdlti_normalundershoot_0percent_id_2=0
  5869. VIP_var_new_sharp_postdlti_normalundershoot_50percent_id_2=32
  5870. VIP_var_new_sharp_postdlti_normalundershoot_100percent_id_2=128
  5871. VIP_var_new_sharp_postdlti_gain0_0percent_id_2=0
  5872. VIP_var_new_sharp_postdlti_gain0_50percent_id_2=120
  5873. VIP_var_new_sharp_postdlti_gain0_100percent_id_2=192
  5874. VIP_var_new_sharp_postdlti_gain1_0percent_id_2=0
  5875. VIP_var_new_sharp_postdlti_gain1_50percent_id_2=120
  5876. VIP_var_new_sharp_postdlti_gain1_100percent_id_2=192
  5877. VIP_var_new_sharp_postdlti_gain2_0percent_id_2=0
  5878. VIP_var_new_sharp_postdlti_gain2_50percent_id_2=0
  5879. VIP_var_new_sharp_postdlti_gain2_100percent_id_2=80
  5880. VIP_var_new_sharp_postdlti_th0_0percent_id_2=2
  5881. VIP_var_new_sharp_postdlti_th0_50percent_id_2=0
  5882. VIP_var_new_sharp_postdlti_th0_100percent_id_2=7
  5883. VIP_var_new_sharp_postdlti_th1_0percent_id_2=127
  5884. VIP_var_new_sharp_postdlti_th1_50percent_id_2=100
  5885. VIP_var_new_sharp_postdlti_th1_100percent_id_2=128
  5886. VIP_var_new_sharp_postdlti_slope0_0percent_id_2=0
  5887. VIP_var_new_sharp_postdlti_slope0_50percent_id_2=0
  5888. VIP_var_new_sharp_postdlti_slope0_100percent_id_2=0
  5889. VIP_var_new_sharp_postdlti_slope1_0percent_id_2=0
  5890. VIP_var_new_sharp_postdlti_slope1_50percent_id_2=58
  5891. VIP_var_new_sharp_postdlti_slope1_100percent_id_2=56
  5892. VIP_var_new_sharp_postdlti_en_id_3=0
  5893. VIP_var_new_sharp_dynamicclip_en_id_3=0
  5894. VIP_var_new_sharp_postdlti_coef1_id_3=3880
  5895. VIP_var_new_sharp_postdlti_coef2_id_3=3870
  5896. VIP_var_new_sharp_postdlti_coef3_id_3=3941
  5897. VIP_var_new_sharp_postdlti_coef4_id_3=3957
  5898. VIP_var_new_sharp_postdlti_coef5_id_3=4013
  5899. VIP_var_new_sharp_postdlti_coef6_id_3=4029
  5900. VIP_var_new_sharp_postdlti_DyCMode_0percent_id_3=2
  5901. VIP_var_new_sharp_postdlti_DyCMode_50percent_id_3=2
  5902. VIP_var_new_sharp_postdlti_DyCMode_100percent_id_3=2
  5903. VIP_var_new_sharp_postdlti_DyCOvershoot_0percent_id_3=10
  5904. VIP_var_new_sharp_postdlti_DyCOvershoot_50percent_id_3=10
  5905. VIP_var_new_sharp_postdlti_DyCOvershoot_100percent_id_3=10
  5906. VIP_var_new_sharp_postdlti_DyCUndershoot_0percent_id_3=10
  5907. VIP_var_new_sharp_postdlti_DyCUndershoot_50percent_id_3=10
  5908. VIP_var_new_sharp_postdlti_DyCUndershoot_100percent_id_3=10
  5909. VIP_var_new_sharp_postdlti_DyCOvershootFac_0percent_id_3=6
  5910. VIP_var_new_sharp_postdlti_DyCOvershootFac_50percent_id_3=6
  5911. VIP_var_new_sharp_postdlti_DyCOvershootFac_100percent_id_3=6
  5912. VIP_var_new_sharp_postdlti_DyCUndershootFac_0percent_id_3=6
  5913. VIP_var_new_sharp_postdlti_DyCUndershootFac_50percent_id_3=6
  5914. VIP_var_new_sharp_postdlti_DyCUndershootFac_100percent_id_3=6
  5915. VIP_var_new_sharp_postdlti_scale_0percent_id_3=0
  5916. VIP_var_new_sharp_postdlti_scale_50percent_id_3=0
  5917. VIP_var_new_sharp_postdlti_scale_100percent_id_3=0
  5918. VIP_var_new_sharp_postdlti_gaintap_0percent_id_3=0
  5919. VIP_var_new_sharp_postdlti_gaintap_50percent_id_3=0
  5920. VIP_var_new_sharp_postdlti_gaintap_100percent_id_3=0
  5921. VIP_var_new_sharp_postdlti_shoottap_0percent_id_3=0
  5922. VIP_var_new_sharp_postdlti_shoottap_50percent_id_3=0
  5923. VIP_var_new_sharp_postdlti_shoottap_100percent_id_3=0
  5924. VIP_var_new_sharp_postdlti_normalovershoot_0percent_id_3=0
  5925. VIP_var_new_sharp_postdlti_normalovershoot_50percent_id_3=64
  5926. VIP_var_new_sharp_postdlti_normalovershoot_100percent_id_3=128
  5927. VIP_var_new_sharp_postdlti_normalundershoot_0percent_id_3=0
  5928. VIP_var_new_sharp_postdlti_normalundershoot_50percent_id_3=128
  5929. VIP_var_new_sharp_postdlti_normalundershoot_100percent_id_3=128
  5930. VIP_var_new_sharp_postdlti_gain0_0percent_id_3=0
  5931. VIP_var_new_sharp_postdlti_gain0_50percent_id_3=0
  5932. VIP_var_new_sharp_postdlti_gain0_100percent_id_3=0
  5933. VIP_var_new_sharp_postdlti_gain1_0percent_id_3=0
  5934. VIP_var_new_sharp_postdlti_gain1_50percent_id_3=39
  5935. VIP_var_new_sharp_postdlti_gain1_100percent_id_3=0
  5936. VIP_var_new_sharp_postdlti_gain2_0percent_id_3=0
  5937. VIP_var_new_sharp_postdlti_gain2_50percent_id_3=0
  5938. VIP_var_new_sharp_postdlti_gain2_100percent_id_3=0
  5939. VIP_var_new_sharp_postdlti_th0_0percent_id_3=0
  5940. VIP_var_new_sharp_postdlti_th0_50percent_id_3=2
  5941. VIP_var_new_sharp_postdlti_th0_100percent_id_3=18
  5942. VIP_var_new_sharp_postdlti_th1_0percent_id_3=180
  5943. VIP_var_new_sharp_postdlti_th1_50percent_id_3=176
  5944. VIP_var_new_sharp_postdlti_th1_100percent_id_3=176
  5945. VIP_var_new_sharp_postdlti_slope0_0percent_id_3=0
  5946. VIP_var_new_sharp_postdlti_slope0_50percent_id_3=124
  5947. VIP_var_new_sharp_postdlti_slope0_100percent_id_3=0
  5948. VIP_var_new_sharp_postdlti_slope1_0percent_id_3=0
  5949. VIP_var_new_sharp_postdlti_slope1_50percent_id_3=49
  5950. VIP_var_new_sharp_postdlti_slope1_100percent_id_3=0
  5951. VIP_var_new_sharp_postdlti_en_id_4=0
  5952. VIP_var_new_sharp_dynamicclip_en_id_4=0
  5953. VIP_var_new_sharp_postdlti_coef1_id_4=3880
  5954. VIP_var_new_sharp_postdlti_coef2_id_4=3870
  5955. VIP_var_new_sharp_postdlti_coef3_id_4=3941
  5956. VIP_var_new_sharp_postdlti_coef4_id_4=3957
  5957. VIP_var_new_sharp_postdlti_coef5_id_4=4013
  5958. VIP_var_new_sharp_postdlti_coef6_id_4=4029
  5959. VIP_var_new_sharp_postdlti_DyCMode_0percent_id_4=0
  5960. VIP_var_new_sharp_postdlti_DyCMode_50percent_id_4=0
  5961. VIP_var_new_sharp_postdlti_DyCMode_100percent_id_4=0
  5962. VIP_var_new_sharp_postdlti_DyCOvershoot_0percent_id_4=2
  5963. VIP_var_new_sharp_postdlti_DyCOvershoot_50percent_id_4=2
  5964. VIP_var_new_sharp_postdlti_DyCOvershoot_100percent_id_4=2
  5965. VIP_var_new_sharp_postdlti_DyCUndershoot_0percent_id_4=6
  5966. VIP_var_new_sharp_postdlti_DyCUndershoot_50percent_id_4=6
  5967. VIP_var_new_sharp_postdlti_DyCUndershoot_100percent_id_4=6
  5968. VIP_var_new_sharp_postdlti_DyCOvershootFac_0percent_id_4=3
  5969. VIP_var_new_sharp_postdlti_DyCOvershootFac_50percent_id_4=3
  5970. VIP_var_new_sharp_postdlti_DyCOvershootFac_100percent_id_4=3
  5971. VIP_var_new_sharp_postdlti_DyCUndershootFac_0percent_id_4=3
  5972. VIP_var_new_sharp_postdlti_DyCUndershootFac_50percent_id_4=3
  5973. VIP_var_new_sharp_postdlti_DyCUndershootFac_100percent_id_4=3
  5974. VIP_var_new_sharp_postdlti_scale_0percent_id_4=0
  5975. VIP_var_new_sharp_postdlti_scale_50percent_id_4=0
  5976. VIP_var_new_sharp_postdlti_scale_100percent_id_4=0
  5977. VIP_var_new_sharp_postdlti_gaintap_0percent_id_4=1
  5978. VIP_var_new_sharp_postdlti_gaintap_50percent_id_4=1
  5979. VIP_var_new_sharp_postdlti_gaintap_100percent_id_4=1
  5980. VIP_var_new_sharp_postdlti_shoottap_0percent_id_4=5
  5981. VIP_var_new_sharp_postdlti_shoottap_50percent_id_4=5
  5982. VIP_var_new_sharp_postdlti_shoottap_100percent_id_4=5
  5983. VIP_var_new_sharp_postdlti_normalovershoot_0percent_id_4=0
  5984. VIP_var_new_sharp_postdlti_normalovershoot_50percent_id_4=64
  5985. VIP_var_new_sharp_postdlti_normalovershoot_100percent_id_4=64
  5986. VIP_var_new_sharp_postdlti_normalundershoot_0percent_id_4=0
  5987. VIP_var_new_sharp_postdlti_normalundershoot_50percent_id_4=64
  5988. VIP_var_new_sharp_postdlti_normalundershoot_100percent_id_4=128
  5989. VIP_var_new_sharp_postdlti_gain0_0percent_id_4=0
  5990. VIP_var_new_sharp_postdlti_gain0_50percent_id_4=46
  5991. VIP_var_new_sharp_postdlti_gain0_100percent_id_4=158
  5992. VIP_var_new_sharp_postdlti_gain1_0percent_id_4=0
  5993. VIP_var_new_sharp_postdlti_gain1_50percent_id_4=98
  5994. VIP_var_new_sharp_postdlti_gain1_100percent_id_4=208
  5995. VIP_var_new_sharp_postdlti_gain2_0percent_id_4=0
  5996. VIP_var_new_sharp_postdlti_gain2_50percent_id_4=12
  5997. VIP_var_new_sharp_postdlti_gain2_100percent_id_4=131
  5998. VIP_var_new_sharp_postdlti_th0_0percent_id_4=0
  5999. VIP_var_new_sharp_postdlti_th0_50percent_id_4=0
  6000. VIP_var_new_sharp_postdlti_th0_100percent_id_4=0
  6001. VIP_var_new_sharp_postdlti_th1_0percent_id_4=180
  6002. VIP_var_new_sharp_postdlti_th1_50percent_id_4=140
  6003. VIP_var_new_sharp_postdlti_th1_100percent_id_4=140
  6004. VIP_var_new_sharp_postdlti_slope0_0percent_id_4=0
  6005. VIP_var_new_sharp_postdlti_slope0_50percent_id_4=69
  6006. VIP_var_new_sharp_postdlti_slope0_100percent_id_4=68
  6007. VIP_var_new_sharp_postdlti_slope1_0percent_id_4=0
  6008. VIP_var_new_sharp_postdlti_slope1_50percent_id_4=48
  6009. VIP_var_new_sharp_postdlti_slope1_100percent_id_4=42
  6010. VIP_var_new_sharp_postdlti_en_id_5=0
  6011. VIP_var_new_sharp_dynamicclip_en_id_5=0
  6012. VIP_var_new_sharp_postdlti_coef1_id_5=3880
  6013. VIP_var_new_sharp_postdlti_coef2_id_5=3870
  6014. VIP_var_new_sharp_postdlti_coef3_id_5=3941
  6015. VIP_var_new_sharp_postdlti_coef4_id_5=3957
  6016. VIP_var_new_sharp_postdlti_coef5_id_5=4013
  6017. VIP_var_new_sharp_postdlti_coef6_id_5=4029
  6018. VIP_var_new_sharp_postdlti_DyCMode_0percent_id_5=0
  6019. VIP_var_new_sharp_postdlti_DyCMode_50percent_id_5=0
  6020. VIP_var_new_sharp_postdlti_DyCMode_100percent_id_5=0
  6021. VIP_var_new_sharp_postdlti_DyCOvershoot_0percent_id_5=0
  6022. VIP_var_new_sharp_postdlti_DyCOvershoot_50percent_id_5=0
  6023. VIP_var_new_sharp_postdlti_DyCOvershoot_100percent_id_5=0
  6024. VIP_var_new_sharp_postdlti_DyCUndershoot_0percent_id_5=0
  6025. VIP_var_new_sharp_postdlti_DyCUndershoot_50percent_id_5=0
  6026. VIP_var_new_sharp_postdlti_DyCUndershoot_100percent_id_5=0
  6027. VIP_var_new_sharp_postdlti_DyCOvershootFac_0percent_id_5=0
  6028. VIP_var_new_sharp_postdlti_DyCOvershootFac_50percent_id_5=0
  6029. VIP_var_new_sharp_postdlti_DyCOvershootFac_100percent_id_5=0
  6030. VIP_var_new_sharp_postdlti_DyCUndershootFac_0percent_id_5=0
  6031. VIP_var_new_sharp_postdlti_DyCUndershootFac_50percent_id_5=0
  6032. VIP_var_new_sharp_postdlti_DyCUndershootFac_100percent_id_5=0
  6033. VIP_var_new_sharp_postdlti_scale_0percent_id_5=0
  6034. VIP_var_new_sharp_postdlti_scale_50percent_id_5=0
  6035. VIP_var_new_sharp_postdlti_scale_100percent_id_5=0
  6036. VIP_var_new_sharp_postdlti_gaintap_0percent_id_5=0
  6037. VIP_var_new_sharp_postdlti_gaintap_50percent_id_5=0
  6038. VIP_var_new_sharp_postdlti_gaintap_100percent_id_5=0
  6039. VIP_var_new_sharp_postdlti_shoottap_0percent_id_5=0
  6040. VIP_var_new_sharp_postdlti_shoottap_50percent_id_5=0
  6041. VIP_var_new_sharp_postdlti_shoottap_100percent_id_5=0
  6042. VIP_var_new_sharp_postdlti_normalovershoot_0percent_id_5=0
  6043. VIP_var_new_sharp_postdlti_normalovershoot_50percent_id_5=0
  6044. VIP_var_new_sharp_postdlti_normalovershoot_100percent_id_5=0
  6045. VIP_var_new_sharp_postdlti_normalundershoot_0percent_id_5=0
  6046. VIP_var_new_sharp_postdlti_normalundershoot_50percent_id_5=0
  6047. VIP_var_new_sharp_postdlti_normalundershoot_100percent_id_5=0
  6048. VIP_var_new_sharp_postdlti_gain0_0percent_id_5=0
  6049. VIP_var_new_sharp_postdlti_gain0_50percent_id_5=0
  6050. VIP_var_new_sharp_postdlti_gain0_100percent_id_5=0
  6051. VIP_var_new_sharp_postdlti_gain1_0percent_id_5=0
  6052. VIP_var_new_sharp_postdlti_gain1_50percent_id_5=0
  6053. VIP_var_new_sharp_postdlti_gain1_100percent_id_5=0
  6054. VIP_var_new_sharp_postdlti_gain2_0percent_id_5=0
  6055. VIP_var_new_sharp_postdlti_gain2_50percent_id_5=0
  6056. VIP_var_new_sharp_postdlti_gain2_100percent_id_5=0
  6057. VIP_var_new_sharp_postdlti_th0_0percent_id_5=0
  6058. VIP_var_new_sharp_postdlti_th0_50percent_id_5=0
  6059. VIP_var_new_sharp_postdlti_th0_100percent_id_5=0
  6060. VIP_var_new_sharp_postdlti_th1_0percent_id_5=0
  6061. VIP_var_new_sharp_postdlti_th1_50percent_id_5=0
  6062. VIP_var_new_sharp_postdlti_th1_100percent_id_5=0
  6063. VIP_var_new_sharp_postdlti_slope0_0percent_id_5=0
  6064. VIP_var_new_sharp_postdlti_slope0_50percent_id_5=0
  6065. VIP_var_new_sharp_postdlti_slope0_100percent_id_5=0
  6066. VIP_var_new_sharp_postdlti_slope1_0percent_id_5=0
  6067. VIP_var_new_sharp_postdlti_slope1_50percent_id_5=0
  6068. VIP_var_new_sharp_postdlti_slope1_100percent_id_5=0
  6069. VIP_var_new_sharp_postdlti_en_id_6=0
  6070. VIP_var_new_sharp_dynamicclip_en_id_6=0
  6071. VIP_var_new_sharp_postdlti_coef1_id_6=3658
  6072. VIP_var_new_sharp_postdlti_coef2_id_6=317
  6073. VIP_var_new_sharp_postdlti_coef3_id_6=3928
  6074. VIP_var_new_sharp_postdlti_coef4_id_6=54
  6075. VIP_var_new_sharp_postdlti_coef5_id_6=11
  6076. VIP_var_new_sharp_postdlti_coef6_id_6=4076
  6077. VIP_var_new_sharp_postdlti_DyCMode_0percent_id_6=2
  6078. VIP_var_new_sharp_postdlti_DyCMode_50percent_id_6=2
  6079. VIP_var_new_sharp_postdlti_DyCMode_100percent_id_6=2
  6080. VIP_var_new_sharp_postdlti_DyCOvershoot_0percent_id_6=0
  6081. VIP_var_new_sharp_postdlti_DyCOvershoot_50percent_id_6=0
  6082. VIP_var_new_sharp_postdlti_DyCOvershoot_100percent_id_6=0
  6083. VIP_var_new_sharp_postdlti_DyCUndershoot_0percent_id_6=4
  6084. VIP_var_new_sharp_postdlti_DyCUndershoot_50percent_id_6=4
  6085. VIP_var_new_sharp_postdlti_DyCUndershoot_100percent_id_6=4
  6086. VIP_var_new_sharp_postdlti_DyCOvershootFac_0percent_id_6=3
  6087. VIP_var_new_sharp_postdlti_DyCOvershootFac_50percent_id_6=3
  6088. VIP_var_new_sharp_postdlti_DyCOvershootFac_100percent_id_6=3
  6089. VIP_var_new_sharp_postdlti_DyCUndershootFac_0percent_id_6=3
  6090. VIP_var_new_sharp_postdlti_DyCUndershootFac_50percent_id_6=3
  6091. VIP_var_new_sharp_postdlti_DyCUndershootFac_100percent_id_6=3
  6092. VIP_var_new_sharp_postdlti_scale_0percent_id_6=1
  6093. VIP_var_new_sharp_postdlti_scale_50percent_id_6=1
  6094. VIP_var_new_sharp_postdlti_scale_100percent_id_6=1
  6095. VIP_var_new_sharp_postdlti_gaintap_0percent_id_6=5
  6096. VIP_var_new_sharp_postdlti_gaintap_50percent_id_6=5
  6097. VIP_var_new_sharp_postdlti_gaintap_100percent_id_6=5
  6098. VIP_var_new_sharp_postdlti_shoottap_0percent_id_6=5
  6099. VIP_var_new_sharp_postdlti_shoottap_50percent_id_6=5
  6100. VIP_var_new_sharp_postdlti_shoottap_100percent_id_6=5
  6101. VIP_var_new_sharp_postdlti_normalovershoot_0percent_id_6=0
  6102. VIP_var_new_sharp_postdlti_normalovershoot_50percent_id_6=16
  6103. VIP_var_new_sharp_postdlti_normalovershoot_100percent_id_6=16
  6104. VIP_var_new_sharp_postdlti_normalundershoot_0percent_id_6=0
  6105. VIP_var_new_sharp_postdlti_normalundershoot_50percent_id_6=16
  6106. VIP_var_new_sharp_postdlti_normalundershoot_100percent_id_6=16
  6107. VIP_var_new_sharp_postdlti_gain0_0percent_id_6=0
  6108. VIP_var_new_sharp_postdlti_gain0_50percent_id_6=34
  6109. VIP_var_new_sharp_postdlti_gain0_100percent_id_6=61
  6110. VIP_var_new_sharp_postdlti_gain1_0percent_id_6=0
  6111. VIP_var_new_sharp_postdlti_gain1_50percent_id_6=70
  6112. VIP_var_new_sharp_postdlti_gain1_100percent_id_6=110
  6113. VIP_var_new_sharp_postdlti_gain2_0percent_id_6=0
  6114. VIP_var_new_sharp_postdlti_gain2_50percent_id_6=38
  6115. VIP_var_new_sharp_postdlti_gain2_100percent_id_6=76
  6116. VIP_var_new_sharp_postdlti_th0_0percent_id_6=17
  6117. VIP_var_new_sharp_postdlti_th0_50percent_id_6=0
  6118. VIP_var_new_sharp_postdlti_th0_100percent_id_6=2
  6119. VIP_var_new_sharp_postdlti_th1_0percent_id_6=180
  6120. VIP_var_new_sharp_postdlti_th1_50percent_id_6=206
  6121. VIP_var_new_sharp_postdlti_th1_100percent_id_6=180
  6122. VIP_var_new_sharp_postdlti_slope0_0percent_id_6=0
  6123. VIP_var_new_sharp_postdlti_slope0_50percent_id_6=62
  6124. VIP_var_new_sharp_postdlti_slope0_100percent_id_6=72
  6125. VIP_var_new_sharp_postdlti_slope1_0percent_id_6=0
  6126. VIP_var_new_sharp_postdlti_slope1_50percent_id_6=46
  6127. VIP_var_new_sharp_postdlti_slope1_100percent_id_6=41
  6128. VIP_var_new_sharp_postdlti_en_id_7=0
  6129. VIP_var_new_sharp_dynamicclip_en_id_7=0
  6130. VIP_var_new_sharp_postdlti_coef1_id_7=3658
  6131. VIP_var_new_sharp_postdlti_coef2_id_7=317
  6132. VIP_var_new_sharp_postdlti_coef3_id_7=3928
  6133. VIP_var_new_sharp_postdlti_coef4_id_7=54
  6134. VIP_var_new_sharp_postdlti_coef5_id_7=11
  6135. VIP_var_new_sharp_postdlti_coef6_id_7=4076
  6136. VIP_var_new_sharp_postdlti_DyCMode_0percent_id_7=2
  6137. VIP_var_new_sharp_postdlti_DyCMode_50percent_id_7=2
  6138. VIP_var_new_sharp_postdlti_DyCMode_100percent_id_7=2
  6139. VIP_var_new_sharp_postdlti_DyCOvershoot_0percent_id_7=10
  6140. VIP_var_new_sharp_postdlti_DyCOvershoot_50percent_id_7=10
  6141. VIP_var_new_sharp_postdlti_DyCOvershoot_100percent_id_7=10
  6142. VIP_var_new_sharp_postdlti_DyCUndershoot_0percent_id_7=10
  6143. VIP_var_new_sharp_postdlti_DyCUndershoot_50percent_id_7=10
  6144. VIP_var_new_sharp_postdlti_DyCUndershoot_100percent_id_7=10
  6145. VIP_var_new_sharp_postdlti_DyCOvershootFac_0percent_id_7=6
  6146. VIP_var_new_sharp_postdlti_DyCOvershootFac_50percent_id_7=6
  6147. VIP_var_new_sharp_postdlti_DyCOvershootFac_100percent_id_7=6
  6148. VIP_var_new_sharp_postdlti_DyCUndershootFac_0percent_id_7=6
  6149. VIP_var_new_sharp_postdlti_DyCUndershootFac_50percent_id_7=6
  6150. VIP_var_new_sharp_postdlti_DyCUndershootFac_100percent_id_7=6
  6151. VIP_var_new_sharp_postdlti_scale_0percent_id_7=0
  6152. VIP_var_new_sharp_postdlti_scale_50percent_id_7=0
  6153. VIP_var_new_sharp_postdlti_scale_100percent_id_7=0
  6154. VIP_var_new_sharp_postdlti_gaintap_0percent_id_7=0
  6155. VIP_var_new_sharp_postdlti_gaintap_50percent_id_7=0
  6156. VIP_var_new_sharp_postdlti_gaintap_100percent_id_7=0
  6157. VIP_var_new_sharp_postdlti_shoottap_0percent_id_7=0
  6158. VIP_var_new_sharp_postdlti_shoottap_50percent_id_7=0
  6159. VIP_var_new_sharp_postdlti_shoottap_100percent_id_7=0
  6160. VIP_var_new_sharp_postdlti_normalovershoot_0percent_id_7=0
  6161. VIP_var_new_sharp_postdlti_normalovershoot_50percent_id_7=64
  6162. VIP_var_new_sharp_postdlti_normalovershoot_100percent_id_7=128
  6163. VIP_var_new_sharp_postdlti_normalundershoot_0percent_id_7=0
  6164. VIP_var_new_sharp_postdlti_normalundershoot_50percent_id_7=128
  6165. VIP_var_new_sharp_postdlti_normalundershoot_100percent_id_7=128
  6166. VIP_var_new_sharp_postdlti_gain0_0percent_id_7=0
  6167. VIP_var_new_sharp_postdlti_gain0_50percent_id_7=18
  6168. VIP_var_new_sharp_postdlti_gain0_100percent_id_7=89
  6169. VIP_var_new_sharp_postdlti_gain1_0percent_id_7=0
  6170. VIP_var_new_sharp_postdlti_gain1_50percent_id_7=26
  6171. VIP_var_new_sharp_postdlti_gain1_100percent_id_7=142
  6172. VIP_var_new_sharp_postdlti_gain2_0percent_id_7=0
  6173. VIP_var_new_sharp_postdlti_gain2_50percent_id_7=0
  6174. VIP_var_new_sharp_postdlti_gain2_100percent_id_7=106
  6175. VIP_var_new_sharp_postdlti_th0_0percent_id_7=0
  6176. VIP_var_new_sharp_postdlti_th0_50percent_id_7=0
  6177. VIP_var_new_sharp_postdlti_th0_100percent_id_7=14
  6178. VIP_var_new_sharp_postdlti_th1_0percent_id_7=180
  6179. VIP_var_new_sharp_postdlti_th1_50percent_id_7=0
  6180. VIP_var_new_sharp_postdlti_th1_100percent_id_7=176
  6181. VIP_var_new_sharp_postdlti_slope0_0percent_id_7=0
  6182. VIP_var_new_sharp_postdlti_slope0_50percent_id_7=0
  6183. VIP_var_new_sharp_postdlti_slope0_100percent_id_7=116
  6184. VIP_var_new_sharp_postdlti_slope1_0percent_id_7=0
  6185. VIP_var_new_sharp_postdlti_slope1_50percent_id_7=38
  6186. VIP_var_new_sharp_postdlti_slope1_100percent_id_7=52
  6187. VIP_TABLE_MAGIC_NUMBER_14=9517
  6188. VIP_var_new_sharp_post2dsharp_src_0_3=0x303
  6189. VIP_var_new_sharp_post2dsharp_src_4_7=0x2020303
  6190. VIP_var_new_sharp_post2dsharp_src_8_11=0x4060206
  6191. VIP_var_new_sharp_post2dsharp_src_12_15=0x1050503
  6192. VIP_var_new_sharp_post2dsharp_src_16_19=0x1
  6193. VIP_var_new_sharp_post2dsharp_en_id_0=1
  6194. VIP_var_new_sharp_post2dsharp_L_gain0_0percent_id_0=0
  6195. VIP_var_new_sharp_post2dsharp_L_gain0_50percent_id_0=38
  6196. VIP_var_new_sharp_post2dsharp_L_gain0_100percent_id_0=98
  6197. VIP_var_new_sharp_post2dsharp_L_gain1_0percent_id_0=0
  6198. VIP_var_new_sharp_post2dsharp_L_gain1_50percent_id_0=134
  6199. VIP_var_new_sharp_post2dsharp_L_gain1_100percent_id_0=208
  6200. VIP_var_new_sharp_post2dsharp_L_gain2_0percent_id_0=0
  6201. VIP_var_new_sharp_post2dsharp_L_gain2_50percent_id_0=134
  6202. VIP_var_new_sharp_post2dsharp_L_gain2_100percent_id_0=208
  6203. VIP_var_new_sharp_post2dsharp_L_th0_0percent_id_0=12
  6204. VIP_var_new_sharp_post2dsharp_L_th0_50percent_id_0=0
  6205. VIP_var_new_sharp_post2dsharp_L_th0_100percent_id_0=0
  6206. VIP_var_new_sharp_post2dsharp_L_th1_0percent_id_0=180
  6207. VIP_var_new_sharp_post2dsharp_L_th1_50percent_id_0=151
  6208. VIP_var_new_sharp_post2dsharp_L_th1_100percent_id_0=156
  6209. VIP_var_new_sharp_post2dsharp_L_slope0_0percent_id_0=0
  6210. VIP_var_new_sharp_post2dsharp_L_slope0_50percent_id_0=307
  6211. VIP_var_new_sharp_post2dsharp_L_slope0_100percent_id_0=469
  6212. VIP_var_new_sharp_post2dsharp_L_slope1_0percent_id_0=0
  6213. VIP_var_new_sharp_post2dsharp_L_slope1_50percent_id_0=0
  6214. VIP_var_new_sharp_post2dsharp_L_slope1_100percent_id_0=0
  6215. VIP_var_new_sharp_post2dsharp_L_filtermode_0percent_id_0=0
  6216. VIP_var_new_sharp_post2dsharp_L_filtermode_50percent_id_0=0
  6217. VIP_var_new_sharp_post2dsharp_L_filtermode_100percent_id_0=0
  6218. VIP_var_new_sharp_post2dsharp_L_scale_0percent_id_0=1
  6219. VIP_var_new_sharp_post2dsharp_L_scale_50percent_id_0=1
  6220. VIP_var_new_sharp_post2dsharp_L_scale_100percent_id_0=1
  6221. VIP_var_new_sharp_post2dsharp_L_gaintap_0percent_id_0=1
  6222. VIP_var_new_sharp_post2dsharp_L_gaintap_50percent_id_0=1
  6223. VIP_var_new_sharp_post2dsharp_L_gaintap_100percent_id_0=1
  6224. VIP_var_new_sharp_post2dsharp_L_shoottap_0percent_id_0=1
  6225. VIP_var_new_sharp_post2dsharp_L_shoottap_50percent_id_0=1
  6226. VIP_var_new_sharp_post2dsharp_L_shoottap_100percent_id_0=1
  6227. VIP_var_new_sharp_post2dsharp_normalovershoot_0percent_id_0=0
  6228. VIP_var_new_sharp_post2dsharp_normalovershoot_50percent_id_0=64
  6229. VIP_var_new_sharp_post2dsharp_normalovershoot_100percent_id_0=128
  6230. VIP_var_new_sharp_post2dsharp_normalundershoot_0percent_id_0=0
  6231. VIP_var_new_sharp_post2dsharp_normalundershoot_50percent_id_0=128
  6232. VIP_var_new_sharp_post2dsharp_normalundershoot_100percent_id_0=196
  6233. VIP_var_new_sharp_post2dsharp_overshootfac_0percent_id_0=0
  6234. VIP_var_new_sharp_post2dsharp_overshootfac_50percent_id_0=4
  6235. VIP_var_new_sharp_post2dsharp_overshootfac_100percent_id_0=2
  6236. VIP_var_new_sharp_post2dsharp_undershootfac_0percent_id_0=0
  6237. VIP_var_new_sharp_post2dsharp_undershootfac_50percent_id_0=4
  6238. VIP_var_new_sharp_post2dsharp_undershootfac_100percent_id_0=2
  6239. VIP_var_new_sharp_post2dsharp_C_gain0_0percent_id_0=0
  6240. VIP_var_new_sharp_post2dsharp_C_gain0_50percent_id_0=32
  6241. VIP_var_new_sharp_post2dsharp_C_gain0_100percent_id_0=0
  6242. VIP_var_new_sharp_post2dsharp_C_gain1_0percent_id_0=0
  6243. VIP_var_new_sharp_post2dsharp_C_gain1_50percent_id_0=64
  6244. VIP_var_new_sharp_post2dsharp_C_gain1_100percent_id_0=108
  6245. VIP_var_new_sharp_post2dsharp_C_gain2_0percent_id_0=0
  6246. VIP_var_new_sharp_post2dsharp_C_gain2_50percent_id_0=64
  6247. VIP_var_new_sharp_post2dsharp_C_gain2_100percent_id_0=108
  6248. VIP_var_new_sharp_post2dsharp_C_th0_0percent_id_0=12
  6249. VIP_var_new_sharp_post2dsharp_C_th0_50percent_id_0=0
  6250. VIP_var_new_sharp_post2dsharp_C_th0_100percent_id_0=0
  6251. VIP_var_new_sharp_post2dsharp_C_th1_0percent_id_0=180
  6252. VIP_var_new_sharp_post2dsharp_C_th1_50percent_id_0=180
  6253. VIP_var_new_sharp_post2dsharp_C_th1_100percent_id_0=180
  6254. VIP_var_new_sharp_post2dsharp_C_slope0_0percent_id_0=0
  6255. VIP_var_new_sharp_post2dsharp_C_slope0_50percent_id_0=102
  6256. VIP_var_new_sharp_post2dsharp_C_slope0_100percent_id_0=363
  6257. VIP_var_new_sharp_post2dsharp_C_slope1_0percent_id_0=0
  6258. VIP_var_new_sharp_post2dsharp_C_slope1_50percent_id_0=0
  6259. VIP_var_new_sharp_post2dsharp_C_slope1_100percent_id_0=0
  6260. VIP_var_new_sharp_post2dsharp_C_filtermode_0percent_id_0=0
  6261. VIP_var_new_sharp_post2dsharp_C_filtermode_50percent_id_0=0
  6262. VIP_var_new_sharp_post2dsharp_C_filtermode_100percent_id_0=0
  6263. VIP_var_new_sharp_post2dsharp_C_scale_0percent_id_0=1
  6264. VIP_var_new_sharp_post2dsharp_C_scale_50percent_id_0=1
  6265. VIP_var_new_sharp_post2dsharp_C_scale_100percent_id_0=1
  6266. VIP_var_new_sharp_post2dsharp_C_gaintap_0percent_id_0=0
  6267. VIP_var_new_sharp_post2dsharp_C_gaintap_50percent_id_0=0
  6268. VIP_var_new_sharp_post2dsharp_C_gaintap_100percent_id_0=0
  6269. VIP_var_new_sharp_post2dsharp_C_shoottap_0percent_id_0=0
  6270. VIP_var_new_sharp_post2dsharp_C_shoottap_50percent_id_0=0
  6271. VIP_var_new_sharp_post2dsharp_C_shoottap_100percent_id_0=0
  6272. VIP_var_new_sharp_post2dsharp_en_id_1=1
  6273. VIP_var_new_sharp_post2dsharp_L_gain0_0percent_id_1=0
  6274. VIP_var_new_sharp_post2dsharp_L_gain0_50percent_id_1=64
  6275. VIP_var_new_sharp_post2dsharp_L_gain0_100percent_id_1=128
  6276. VIP_var_new_sharp_post2dsharp_L_gain1_0percent_id_1=0
  6277. VIP_var_new_sharp_post2dsharp_L_gain1_50percent_id_1=128
  6278. VIP_var_new_sharp_post2dsharp_L_gain1_100percent_id_1=196
  6279. VIP_var_new_sharp_post2dsharp_L_gain2_0percent_id_1=0
  6280. VIP_var_new_sharp_post2dsharp_L_gain2_50percent_id_1=128
  6281. VIP_var_new_sharp_post2dsharp_L_gain2_100percent_id_1=196
  6282. VIP_var_new_sharp_post2dsharp_L_th0_0percent_id_1=16
  6283. VIP_var_new_sharp_post2dsharp_L_th0_50percent_id_1=16
  6284. VIP_var_new_sharp_post2dsharp_L_th0_100percent_id_1=16
  6285. VIP_var_new_sharp_post2dsharp_L_th1_0percent_id_1=180
  6286. VIP_var_new_sharp_post2dsharp_L_th1_50percent_id_1=180
  6287. VIP_var_new_sharp_post2dsharp_L_th1_100percent_id_1=180
  6288. VIP_var_new_sharp_post2dsharp_L_slope0_0percent_id_1=0
  6289. VIP_var_new_sharp_post2dsharp_L_slope0_50percent_id_1=100
  6290. VIP_var_new_sharp_post2dsharp_L_slope0_100percent_id_1=100
  6291. VIP_var_new_sharp_post2dsharp_L_slope1_0percent_id_1=0
  6292. VIP_var_new_sharp_post2dsharp_L_slope1_50percent_id_1=100
  6293. VIP_var_new_sharp_post2dsharp_L_slope1_100percent_id_1=100
  6294. VIP_var_new_sharp_post2dsharp_L_filtermode_0percent_id_1=0
  6295. VIP_var_new_sharp_post2dsharp_L_filtermode_50percent_id_1=0
  6296. VIP_var_new_sharp_post2dsharp_L_filtermode_100percent_id_1=0
  6297. VIP_var_new_sharp_post2dsharp_L_scale_0percent_id_1=0
  6298. VIP_var_new_sharp_post2dsharp_L_scale_50percent_id_1=0
  6299. VIP_var_new_sharp_post2dsharp_L_scale_100percent_id_1=0
  6300. VIP_var_new_sharp_post2dsharp_L_gaintap_0percent_id_1=0
  6301. VIP_var_new_sharp_post2dsharp_L_gaintap_50percent_id_1=0
  6302. VIP_var_new_sharp_post2dsharp_L_gaintap_100percent_id_1=0
  6303. VIP_var_new_sharp_post2dsharp_L_shoottap_0percent_id_1=0
  6304. VIP_var_new_sharp_post2dsharp_L_shoottap_50percent_id_1=0
  6305. VIP_var_new_sharp_post2dsharp_L_shoottap_100percent_id_1=0
  6306. VIP_var_new_sharp_post2dsharp_normalovershoot_0percent_id_1=0
  6307. VIP_var_new_sharp_post2dsharp_normalovershoot_50percent_id_1=32
  6308. VIP_var_new_sharp_post2dsharp_normalovershoot_100percent_id_1=64
  6309. VIP_var_new_sharp_post2dsharp_normalundershoot_0percent_id_1=0
  6310. VIP_var_new_sharp_post2dsharp_normalundershoot_50percent_id_1=32
  6311. VIP_var_new_sharp_post2dsharp_normalundershoot_100percent_id_1=64
  6312. VIP_var_new_sharp_post2dsharp_overshootfac_0percent_id_1=0
  6313. VIP_var_new_sharp_post2dsharp_overshootfac_50percent_id_1=0
  6314. VIP_var_new_sharp_post2dsharp_overshootfac_100percent_id_1=0
  6315. VIP_var_new_sharp_post2dsharp_undershootfac_0percent_id_1=0
  6316. VIP_var_new_sharp_post2dsharp_undershootfac_50percent_id_1=0
  6317. VIP_var_new_sharp_post2dsharp_undershootfac_100percent_id_1=0
  6318. VIP_var_new_sharp_post2dsharp_C_gain0_0percent_id_1=0
  6319. VIP_var_new_sharp_post2dsharp_C_gain0_50percent_id_1=32
  6320. VIP_var_new_sharp_post2dsharp_C_gain0_100percent_id_1=64
  6321. VIP_var_new_sharp_post2dsharp_C_gain1_0percent_id_1=0
  6322. VIP_var_new_sharp_post2dsharp_C_gain1_50percent_id_1=64
  6323. VIP_var_new_sharp_post2dsharp_C_gain1_100percent_id_1=129
  6324. VIP_var_new_sharp_post2dsharp_C_gain2_0percent_id_1=0
  6325. VIP_var_new_sharp_post2dsharp_C_gain2_50percent_id_1=48
  6326. VIP_var_new_sharp_post2dsharp_C_gain2_100percent_id_1=109
  6327. VIP_var_new_sharp_post2dsharp_C_th0_0percent_id_1=16
  6328. VIP_var_new_sharp_post2dsharp_C_th0_50percent_id_1=16
  6329. VIP_var_new_sharp_post2dsharp_C_th0_100percent_id_1=16
  6330. VIP_var_new_sharp_post2dsharp_C_th1_0percent_id_1=180
  6331. VIP_var_new_sharp_post2dsharp_C_th1_50percent_id_1=180
  6332. VIP_var_new_sharp_post2dsharp_C_th1_100percent_id_1=180
  6333. VIP_var_new_sharp_post2dsharp_C_slope0_0percent_id_1=0
  6334. VIP_var_new_sharp_post2dsharp_C_slope0_50percent_id_1=100
  6335. VIP_var_new_sharp_post2dsharp_C_slope0_100percent_id_1=198
  6336. VIP_var_new_sharp_post2dsharp_C_slope1_0percent_id_1=0
  6337. VIP_var_new_sharp_post2dsharp_C_slope1_50percent_id_1=100
  6338. VIP_var_new_sharp_post2dsharp_C_slope1_100percent_id_1=106
  6339. VIP_var_new_sharp_post2dsharp_C_filtermode_0percent_id_1=0
  6340. VIP_var_new_sharp_post2dsharp_C_filtermode_50percent_id_1=0
  6341. VIP_var_new_sharp_post2dsharp_C_filtermode_100percent_id_1=0
  6342. VIP_var_new_sharp_post2dsharp_C_scale_0percent_id_1=0
  6343. VIP_var_new_sharp_post2dsharp_C_scale_50percent_id_1=0
  6344. VIP_var_new_sharp_post2dsharp_C_scale_100percent_id_1=0
  6345. VIP_var_new_sharp_post2dsharp_C_gaintap_0percent_id_1=0
  6346. VIP_var_new_sharp_post2dsharp_C_gaintap_50percent_id_1=0
  6347. VIP_var_new_sharp_post2dsharp_C_gaintap_100percent_id_1=0
  6348. VIP_var_new_sharp_post2dsharp_C_shoottap_0percent_id_1=0
  6349. VIP_var_new_sharp_post2dsharp_C_shoottap_50percent_id_1=0
  6350. VIP_var_new_sharp_post2dsharp_C_shoottap_100percent_id_1=0
  6351. VIP_var_new_sharp_post2dsharp_en_id_2=1
  6352. VIP_var_new_sharp_post2dsharp_L_gain0_0percent_id_2=0
  6353. VIP_var_new_sharp_post2dsharp_L_gain0_50percent_id_2=96
  6354. VIP_var_new_sharp_post2dsharp_L_gain0_100percent_id_2=188
  6355. VIP_var_new_sharp_post2dsharp_L_gain1_0percent_id_2=0
  6356. VIP_var_new_sharp_post2dsharp_L_gain1_50percent_id_2=96
  6357. VIP_var_new_sharp_post2dsharp_L_gain1_100percent_id_2=189
  6358. VIP_var_new_sharp_post2dsharp_L_gain2_0percent_id_2=0
  6359. VIP_var_new_sharp_post2dsharp_L_gain2_50percent_id_2=42
  6360. VIP_var_new_sharp_post2dsharp_L_gain2_100percent_id_2=128
  6361. VIP_var_new_sharp_post2dsharp_L_th0_0percent_id_2=14
  6362. VIP_var_new_sharp_post2dsharp_L_th0_50percent_id_2=6
  6363. VIP_var_new_sharp_post2dsharp_L_th0_100percent_id_2=0
  6364. VIP_var_new_sharp_post2dsharp_L_th1_0percent_id_2=255
  6365. VIP_var_new_sharp_post2dsharp_L_th1_50percent_id_2=186
  6366. VIP_var_new_sharp_post2dsharp_L_th1_100percent_id_2=187
  6367. VIP_var_new_sharp_post2dsharp_L_slope0_0percent_id_2=0
  6368. VIP_var_new_sharp_post2dsharp_L_slope0_50percent_id_2=0
  6369. VIP_var_new_sharp_post2dsharp_L_slope0_100percent_id_2=0
  6370. VIP_var_new_sharp_post2dsharp_L_slope1_0percent_id_2=0
  6371. VIP_var_new_sharp_post2dsharp_L_slope1_50percent_id_2=85
  6372. VIP_var_new_sharp_post2dsharp_L_slope1_100percent_id_2=102
  6373. VIP_var_new_sharp_post2dsharp_L_filtermode_0percent_id_2=0
  6374. VIP_var_new_sharp_post2dsharp_L_filtermode_50percent_id_2=0
  6375. VIP_var_new_sharp_post2dsharp_L_filtermode_100percent_id_2=0
  6376. VIP_var_new_sharp_post2dsharp_L_scale_0percent_id_2=0
  6377. VIP_var_new_sharp_post2dsharp_L_scale_50percent_id_2=0
  6378. VIP_var_new_sharp_post2dsharp_L_scale_100percent_id_2=0
  6379. VIP_var_new_sharp_post2dsharp_L_gaintap_0percent_id_2=1
  6380. VIP_var_new_sharp_post2dsharp_L_gaintap_50percent_id_2=1
  6381. VIP_var_new_sharp_post2dsharp_L_gaintap_100percent_id_2=1
  6382. VIP_var_new_sharp_post2dsharp_L_shoottap_0percent_id_2=0
  6383. VIP_var_new_sharp_post2dsharp_L_shoottap_50percent_id_2=0
  6384. VIP_var_new_sharp_post2dsharp_L_shoottap_100percent_id_2=0
  6385. VIP_var_new_sharp_post2dsharp_normalovershoot_0percent_id_2=64
  6386. VIP_var_new_sharp_post2dsharp_normalovershoot_50percent_id_2=64
  6387. VIP_var_new_sharp_post2dsharp_normalovershoot_100percent_id_2=128
  6388. VIP_var_new_sharp_post2dsharp_normalundershoot_0percent_id_2=64
  6389. VIP_var_new_sharp_post2dsharp_normalundershoot_50percent_id_2=64
  6390. VIP_var_new_sharp_post2dsharp_normalundershoot_100percent_id_2=128
  6391. VIP_var_new_sharp_post2dsharp_overshootfac_0percent_id_2=4
  6392. VIP_var_new_sharp_post2dsharp_overshootfac_50percent_id_2=2
  6393. VIP_var_new_sharp_post2dsharp_overshootfac_100percent_id_2=4
  6394. VIP_var_new_sharp_post2dsharp_undershootfac_0percent_id_2=4
  6395. VIP_var_new_sharp_post2dsharp_undershootfac_50percent_id_2=4
  6396. VIP_var_new_sharp_post2dsharp_undershootfac_100percent_id_2=4
  6397. VIP_var_new_sharp_post2dsharp_C_gain0_0percent_id_2=0
  6398. VIP_var_new_sharp_post2dsharp_C_gain0_50percent_id_2=0
  6399. VIP_var_new_sharp_post2dsharp_C_gain0_100percent_id_2=96
  6400. VIP_var_new_sharp_post2dsharp_C_gain1_0percent_id_2=64
  6401. VIP_var_new_sharp_post2dsharp_C_gain1_50percent_id_2=64
  6402. VIP_var_new_sharp_post2dsharp_C_gain1_100percent_id_2=128
  6403. VIP_var_new_sharp_post2dsharp_C_gain2_0percent_id_2=48
  6404. VIP_var_new_sharp_post2dsharp_C_gain2_50percent_id_2=48
  6405. VIP_var_new_sharp_post2dsharp_C_gain2_100percent_id_2=96
  6406. VIP_var_new_sharp_post2dsharp_C_th0_0percent_id_2=14
  6407. VIP_var_new_sharp_post2dsharp_C_th0_50percent_id_2=6
  6408. VIP_var_new_sharp_post2dsharp_C_th0_100percent_id_2=0
  6409. VIP_var_new_sharp_post2dsharp_C_th1_0percent_id_2=180
  6410. VIP_var_new_sharp_post2dsharp_C_th1_50percent_id_2=180
  6411. VIP_var_new_sharp_post2dsharp_C_th1_100percent_id_2=179
  6412. VIP_var_new_sharp_post2dsharp_C_slope0_0percent_id_2=132
  6413. VIP_var_new_sharp_post2dsharp_C_slope0_50percent_id_2=132
  6414. VIP_var_new_sharp_post2dsharp_C_slope0_100percent_id_2=118
  6415. VIP_var_new_sharp_post2dsharp_C_slope1_0percent_id_2=102
  6416. VIP_var_new_sharp_post2dsharp_C_slope1_50percent_id_2=102
  6417. VIP_var_new_sharp_post2dsharp_C_slope1_100percent_id_2=104
  6418. VIP_var_new_sharp_post2dsharp_C_filtermode_0percent_id_2=0
  6419. VIP_var_new_sharp_post2dsharp_C_filtermode_50percent_id_2=0
  6420. VIP_var_new_sharp_post2dsharp_C_filtermode_100percent_id_2=0
  6421. VIP_var_new_sharp_post2dsharp_C_scale_0percent_id_2=1
  6422. VIP_var_new_sharp_post2dsharp_C_scale_50percent_id_2=1
  6423. VIP_var_new_sharp_post2dsharp_C_scale_100percent_id_2=1
  6424. VIP_var_new_sharp_post2dsharp_C_gaintap_0percent_id_2=0
  6425. VIP_var_new_sharp_post2dsharp_C_gaintap_50percent_id_2=0
  6426. VIP_var_new_sharp_post2dsharp_C_gaintap_100percent_id_2=0
  6427. VIP_var_new_sharp_post2dsharp_C_shoottap_0percent_id_2=0
  6428. VIP_var_new_sharp_post2dsharp_C_shoottap_50percent_id_2=0
  6429. VIP_var_new_sharp_post2dsharp_C_shoottap_100percent_id_2=0
  6430. VIP_var_new_sharp_post2dsharp_en_id_3=1
  6431. VIP_var_new_sharp_post2dsharp_L_gain0_0percent_id_3=0
  6432. VIP_var_new_sharp_post2dsharp_L_gain0_50percent_id_3=2
  6433. VIP_var_new_sharp_post2dsharp_L_gain0_100percent_id_3=32
  6434. VIP_var_new_sharp_post2dsharp_L_gain1_0percent_id_3=0
  6435. VIP_var_new_sharp_post2dsharp_L_gain1_50percent_id_3=123
  6436. VIP_var_new_sharp_post2dsharp_L_gain1_100percent_id_3=169
  6437. VIP_var_new_sharp_post2dsharp_L_gain2_0percent_id_3=0
  6438. VIP_var_new_sharp_post2dsharp_L_gain2_50percent_id_3=123
  6439. VIP_var_new_sharp_post2dsharp_L_gain2_100percent_id_3=128
  6440. VIP_var_new_sharp_post2dsharp_L_th0_0percent_id_3=79
  6441. VIP_var_new_sharp_post2dsharp_L_th0_50percent_id_3=0
  6442. VIP_var_new_sharp_post2dsharp_L_th0_100percent_id_3=0
  6443. VIP_var_new_sharp_post2dsharp_L_th1_0percent_id_3=99
  6444. VIP_var_new_sharp_post2dsharp_L_th1_50percent_id_3=166
  6445. VIP_var_new_sharp_post2dsharp_L_th1_100percent_id_3=173
  6446. VIP_var_new_sharp_post2dsharp_L_slope0_0percent_id_3=0
  6447. VIP_var_new_sharp_post2dsharp_L_slope0_50percent_id_3=455
  6448. VIP_var_new_sharp_post2dsharp_L_slope0_100percent_id_3=381
  6449. VIP_var_new_sharp_post2dsharp_L_slope1_0percent_id_3=0
  6450. VIP_var_new_sharp_post2dsharp_L_slope1_50percent_id_3=0
  6451. VIP_var_new_sharp_post2dsharp_L_slope1_100percent_id_3=82
  6452. VIP_var_new_sharp_post2dsharp_L_filtermode_0percent_id_3=0
  6453. VIP_var_new_sharp_post2dsharp_L_filtermode_50percent_id_3=0
  6454. VIP_var_new_sharp_post2dsharp_L_filtermode_100percent_id_3=0
  6455. VIP_var_new_sharp_post2dsharp_L_scale_0percent_id_3=1
  6456. VIP_var_new_sharp_post2dsharp_L_scale_50percent_id_3=1
  6457. VIP_var_new_sharp_post2dsharp_L_scale_100percent_id_3=1
  6458. VIP_var_new_sharp_post2dsharp_L_gaintap_0percent_id_3=1
  6459. VIP_var_new_sharp_post2dsharp_L_gaintap_50percent_id_3=1
  6460. VIP_var_new_sharp_post2dsharp_L_gaintap_100percent_id_3=1
  6461. VIP_var_new_sharp_post2dsharp_L_shoottap_0percent_id_3=0
  6462. VIP_var_new_sharp_post2dsharp_L_shoottap_50percent_id_3=0
  6463. VIP_var_new_sharp_post2dsharp_L_shoottap_100percent_id_3=0
  6464. VIP_var_new_sharp_post2dsharp_normalovershoot_0percent_id_3=0
  6465. VIP_var_new_sharp_post2dsharp_normalovershoot_50percent_id_3=128
  6466. VIP_var_new_sharp_post2dsharp_normalovershoot_100percent_id_3=128
  6467. VIP_var_new_sharp_post2dsharp_normalundershoot_0percent_id_3=0
  6468. VIP_var_new_sharp_post2dsharp_normalundershoot_50percent_id_3=128
  6469. VIP_var_new_sharp_post2dsharp_normalundershoot_100percent_id_3=128
  6470. VIP_var_new_sharp_post2dsharp_overshootfac_0percent_id_3=0
  6471. VIP_var_new_sharp_post2dsharp_overshootfac_50percent_id_3=5
  6472. VIP_var_new_sharp_post2dsharp_overshootfac_100percent_id_3=2
  6473. VIP_var_new_sharp_post2dsharp_undershootfac_0percent_id_3=0
  6474. VIP_var_new_sharp_post2dsharp_undershootfac_50percent_id_3=5
  6475. VIP_var_new_sharp_post2dsharp_undershootfac_100percent_id_3=2
  6476. VIP_var_new_sharp_post2dsharp_C_gain0_0percent_id_3=0
  6477. VIP_var_new_sharp_post2dsharp_C_gain0_50percent_id_3=32
  6478. VIP_var_new_sharp_post2dsharp_C_gain0_100percent_id_3=32
  6479. VIP_var_new_sharp_post2dsharp_C_gain1_0percent_id_3=0
  6480. VIP_var_new_sharp_post2dsharp_C_gain1_50percent_id_3=64
  6481. VIP_var_new_sharp_post2dsharp_C_gain1_100percent_id_3=128
  6482. VIP_var_new_sharp_post2dsharp_C_gain2_0percent_id_3=0
  6483. VIP_var_new_sharp_post2dsharp_C_gain2_50percent_id_3=64
  6484. VIP_var_new_sharp_post2dsharp_C_gain2_100percent_id_3=128
  6485. VIP_var_new_sharp_post2dsharp_C_th0_0percent_id_3=79
  6486. VIP_var_new_sharp_post2dsharp_C_th0_50percent_id_3=0
  6487. VIP_var_new_sharp_post2dsharp_C_th0_100percent_id_3=0
  6488. VIP_var_new_sharp_post2dsharp_C_th1_0percent_id_3=180
  6489. VIP_var_new_sharp_post2dsharp_C_th1_50percent_id_3=180
  6490. VIP_var_new_sharp_post2dsharp_C_th1_100percent_id_3=180
  6491. VIP_var_new_sharp_post2dsharp_C_slope0_0percent_id_3=0
  6492. VIP_var_new_sharp_post2dsharp_C_slope0_50percent_id_3=102
  6493. VIP_var_new_sharp_post2dsharp_C_slope0_100percent_id_3=472
  6494. VIP_var_new_sharp_post2dsharp_C_slope1_0percent_id_3=0
  6495. VIP_var_new_sharp_post2dsharp_C_slope1_50percent_id_3=0
  6496. VIP_var_new_sharp_post2dsharp_C_slope1_100percent_id_3=0
  6497. VIP_var_new_sharp_post2dsharp_C_filtermode_0percent_id_3=0
  6498. VIP_var_new_sharp_post2dsharp_C_filtermode_50percent_id_3=0
  6499. VIP_var_new_sharp_post2dsharp_C_filtermode_100percent_id_3=0
  6500. VIP_var_new_sharp_post2dsharp_C_scale_0percent_id_3=1
  6501. VIP_var_new_sharp_post2dsharp_C_scale_50percent_id_3=1
  6502. VIP_var_new_sharp_post2dsharp_C_scale_100percent_id_3=1
  6503. VIP_var_new_sharp_post2dsharp_C_gaintap_0percent_id_3=0
  6504. VIP_var_new_sharp_post2dsharp_C_gaintap_50percent_id_3=0
  6505. VIP_var_new_sharp_post2dsharp_C_gaintap_100percent_id_3=0
  6506. VIP_var_new_sharp_post2dsharp_C_shoottap_0percent_id_3=0
  6507. VIP_var_new_sharp_post2dsharp_C_shoottap_50percent_id_3=0
  6508. VIP_var_new_sharp_post2dsharp_C_shoottap_100percent_id_3=0
  6509. VIP_var_new_sharp_post2dsharp_en_id_4=1
  6510. VIP_var_new_sharp_post2dsharp_L_gain0_0percent_id_4=0
  6511. VIP_var_new_sharp_post2dsharp_L_gain0_50percent_id_4=26
  6512. VIP_var_new_sharp_post2dsharp_L_gain0_100percent_id_4=98
  6513. VIP_var_new_sharp_post2dsharp_L_gain1_0percent_id_4=0
  6514. VIP_var_new_sharp_post2dsharp_L_gain1_50percent_id_4=118
  6515. VIP_var_new_sharp_post2dsharp_L_gain1_100percent_id_4=197
  6516. VIP_var_new_sharp_post2dsharp_L_gain2_0percent_id_4=0
  6517. VIP_var_new_sharp_post2dsharp_L_gain2_50percent_id_4=69
  6518. VIP_var_new_sharp_post2dsharp_L_gain2_100percent_id_4=150
  6519. VIP_var_new_sharp_post2dsharp_L_th0_0percent_id_4=79
  6520. VIP_var_new_sharp_post2dsharp_L_th0_50percent_id_4=0
  6521. VIP_var_new_sharp_post2dsharp_L_th0_100percent_id_4=0
  6522. VIP_var_new_sharp_post2dsharp_L_th1_0percent_id_4=99
  6523. VIP_var_new_sharp_post2dsharp_L_th1_50percent_id_4=198
  6524. VIP_var_new_sharp_post2dsharp_L_th1_100percent_id_4=199
  6525. VIP_var_new_sharp_post2dsharp_L_slope0_0percent_id_4=0
  6526. VIP_var_new_sharp_post2dsharp_L_slope0_50percent_id_4=187
  6527. VIP_var_new_sharp_post2dsharp_L_slope0_100percent_id_4=218
  6528. VIP_var_new_sharp_post2dsharp_L_slope1_0percent_id_4=0
  6529. VIP_var_new_sharp_post2dsharp_L_slope1_50percent_id_4=55
  6530. VIP_var_new_sharp_post2dsharp_L_slope1_100percent_id_4=53
  6531. VIP_var_new_sharp_post2dsharp_L_filtermode_0percent_id_4=0
  6532. VIP_var_new_sharp_post2dsharp_L_filtermode_50percent_id_4=0
  6533. VIP_var_new_sharp_post2dsharp_L_filtermode_100percent_id_4=0
  6534. VIP_var_new_sharp_post2dsharp_L_scale_0percent_id_4=0
  6535. VIP_var_new_sharp_post2dsharp_L_scale_50percent_id_4=0
  6536. VIP_var_new_sharp_post2dsharp_L_scale_100percent_id_4=0
  6537. VIP_var_new_sharp_post2dsharp_L_gaintap_0percent_id_4=1
  6538. VIP_var_new_sharp_post2dsharp_L_gaintap_50percent_id_4=1
  6539. VIP_var_new_sharp_post2dsharp_L_gaintap_100percent_id_4=1
  6540. VIP_var_new_sharp_post2dsharp_L_shoottap_0percent_id_4=1
  6541. VIP_var_new_sharp_post2dsharp_L_shoottap_50percent_id_4=1
  6542. VIP_var_new_sharp_post2dsharp_L_shoottap_100percent_id_4=1
  6543. VIP_var_new_sharp_post2dsharp_normalovershoot_0percent_id_4=0
  6544. VIP_var_new_sharp_post2dsharp_normalovershoot_50percent_id_4=64
  6545. VIP_var_new_sharp_post2dsharp_normalovershoot_100percent_id_4=128
  6546. VIP_var_new_sharp_post2dsharp_normalundershoot_0percent_id_4=0
  6547. VIP_var_new_sharp_post2dsharp_normalundershoot_50percent_id_4=64
  6548. VIP_var_new_sharp_post2dsharp_normalundershoot_100percent_id_4=128
  6549. VIP_var_new_sharp_post2dsharp_overshootfac_0percent_id_4=0
  6550. VIP_var_new_sharp_post2dsharp_overshootfac_50percent_id_4=3
  6551. VIP_var_new_sharp_post2dsharp_overshootfac_100percent_id_4=3
  6552. VIP_var_new_sharp_post2dsharp_undershootfac_0percent_id_4=0
  6553. VIP_var_new_sharp_post2dsharp_undershootfac_50percent_id_4=4
  6554. VIP_var_new_sharp_post2dsharp_undershootfac_100percent_id_4=4
  6555. VIP_var_new_sharp_post2dsharp_C_gain0_0percent_id_4=0
  6556. VIP_var_new_sharp_post2dsharp_C_gain0_50percent_id_4=0
  6557. VIP_var_new_sharp_post2dsharp_C_gain0_100percent_id_4=80
  6558. VIP_var_new_sharp_post2dsharp_C_gain1_0percent_id_4=0
  6559. VIP_var_new_sharp_post2dsharp_C_gain1_50percent_id_4=64
  6560. VIP_var_new_sharp_post2dsharp_C_gain1_100percent_id_4=128
  6561. VIP_var_new_sharp_post2dsharp_C_gain2_0percent_id_4=0
  6562. VIP_var_new_sharp_post2dsharp_C_gain2_50percent_id_4=64
  6563. VIP_var_new_sharp_post2dsharp_C_gain2_100percent_id_4=128
  6564. VIP_var_new_sharp_post2dsharp_C_th0_0percent_id_4=79
  6565. VIP_var_new_sharp_post2dsharp_C_th0_50percent_id_4=0
  6566. VIP_var_new_sharp_post2dsharp_C_th0_100percent_id_4=0
  6567. VIP_var_new_sharp_post2dsharp_C_th1_0percent_id_4=180
  6568. VIP_var_new_sharp_post2dsharp_C_th1_50percent_id_4=180
  6569. VIP_var_new_sharp_post2dsharp_C_th1_100percent_id_4=180
  6570. VIP_var_new_sharp_post2dsharp_C_slope0_0percent_id_4=0
  6571. VIP_var_new_sharp_post2dsharp_C_slope0_50percent_id_4=132
  6572. VIP_var_new_sharp_post2dsharp_C_slope0_100percent_id_4=139
  6573. VIP_var_new_sharp_post2dsharp_C_slope1_0percent_id_4=0
  6574. VIP_var_new_sharp_post2dsharp_C_slope1_50percent_id_4=0
  6575. VIP_var_new_sharp_post2dsharp_C_slope1_100percent_id_4=0
  6576. VIP_var_new_sharp_post2dsharp_C_filtermode_0percent_id_4=0
  6577. VIP_var_new_sharp_post2dsharp_C_filtermode_50percent_id_4=0
  6578. VIP_var_new_sharp_post2dsharp_C_filtermode_100percent_id_4=0
  6579. VIP_var_new_sharp_post2dsharp_C_scale_0percent_id_4=1
  6580. VIP_var_new_sharp_post2dsharp_C_scale_50percent_id_4=1
  6581. VIP_var_new_sharp_post2dsharp_C_scale_100percent_id_4=1
  6582. VIP_var_new_sharp_post2dsharp_C_gaintap_0percent_id_4=0
  6583. VIP_var_new_sharp_post2dsharp_C_gaintap_50percent_id_4=0
  6584. VIP_var_new_sharp_post2dsharp_C_gaintap_100percent_id_4=0
  6585. VIP_var_new_sharp_post2dsharp_C_shoottap_0percent_id_4=0
  6586. VIP_var_new_sharp_post2dsharp_C_shoottap_50percent_id_4=0
  6587. VIP_var_new_sharp_post2dsharp_C_shoottap_100percent_id_4=0
  6588. VIP_var_new_sharp_post2dsharp_en_id_5=1
  6589. VIP_var_new_sharp_post2dsharp_L_gain0_0percent_id_5=0
  6590. VIP_var_new_sharp_post2dsharp_L_gain0_50percent_id_5=1
  6591. VIP_var_new_sharp_post2dsharp_L_gain0_100percent_id_5=1
  6592. VIP_var_new_sharp_post2dsharp_L_gain1_0percent_id_5=0
  6593. VIP_var_new_sharp_post2dsharp_L_gain1_50percent_id_5=126
  6594. VIP_var_new_sharp_post2dsharp_L_gain1_100percent_id_5=184
  6595. VIP_var_new_sharp_post2dsharp_L_gain2_0percent_id_5=0
  6596. VIP_var_new_sharp_post2dsharp_L_gain2_50percent_id_5=126
  6597. VIP_var_new_sharp_post2dsharp_L_gain2_100percent_id_5=184
  6598. VIP_var_new_sharp_post2dsharp_L_th0_0percent_id_5=0
  6599. VIP_var_new_sharp_post2dsharp_L_th0_50percent_id_5=0
  6600. VIP_var_new_sharp_post2dsharp_L_th0_100percent_id_5=3
  6601. VIP_var_new_sharp_post2dsharp_L_th1_0percent_id_5=0
  6602. VIP_var_new_sharp_post2dsharp_L_th1_50percent_id_5=180
  6603. VIP_var_new_sharp_post2dsharp_L_th1_100percent_id_5=180
  6604. VIP_var_new_sharp_post2dsharp_L_slope0_0percent_id_5=0
  6605. VIP_var_new_sharp_post2dsharp_L_slope0_50percent_id_5=888
  6606. VIP_var_new_sharp_post2dsharp_L_slope0_100percent_id_5=666
  6607. VIP_var_new_sharp_post2dsharp_L_slope1_0percent_id_5=0
  6608. VIP_var_new_sharp_post2dsharp_L_slope1_50percent_id_5=0
  6609. VIP_var_new_sharp_post2dsharp_L_slope1_100percent_id_5=0
  6610. VIP_var_new_sharp_post2dsharp_L_filtermode_0percent_id_5=0
  6611. VIP_var_new_sharp_post2dsharp_L_filtermode_50percent_id_5=0
  6612. VIP_var_new_sharp_post2dsharp_L_filtermode_100percent_id_5=0
  6613. VIP_var_new_sharp_post2dsharp_L_scale_0percent_id_5=1
  6614. VIP_var_new_sharp_post2dsharp_L_scale_50percent_id_5=1
  6615. VIP_var_new_sharp_post2dsharp_L_scale_100percent_id_5=1
  6616. VIP_var_new_sharp_post2dsharp_L_gaintap_0percent_id_5=1
  6617. VIP_var_new_sharp_post2dsharp_L_gaintap_50percent_id_5=1
  6618. VIP_var_new_sharp_post2dsharp_L_gaintap_100percent_id_5=1
  6619. VIP_var_new_sharp_post2dsharp_L_shoottap_0percent_id_5=1
  6620. VIP_var_new_sharp_post2dsharp_L_shoottap_50percent_id_5=1
  6621. VIP_var_new_sharp_post2dsharp_L_shoottap_100percent_id_5=1
  6622. VIP_var_new_sharp_post2dsharp_normalovershoot_0percent_id_5=0
  6623. VIP_var_new_sharp_post2dsharp_normalovershoot_50percent_id_5=96
  6624. VIP_var_new_sharp_post2dsharp_normalovershoot_100percent_id_5=0
  6625. VIP_var_new_sharp_post2dsharp_normalundershoot_0percent_id_5=0
  6626. VIP_var_new_sharp_post2dsharp_normalundershoot_50percent_id_5=96
  6627. VIP_var_new_sharp_post2dsharp_normalundershoot_100percent_id_5=0
  6628. VIP_var_new_sharp_post2dsharp_overshootfac_0percent_id_5=7
  6629. VIP_var_new_sharp_post2dsharp_overshootfac_50percent_id_5=2
  6630. VIP_var_new_sharp_post2dsharp_overshootfac_100percent_id_5=7
  6631. VIP_var_new_sharp_post2dsharp_undershootfac_0percent_id_5=7
  6632. VIP_var_new_sharp_post2dsharp_undershootfac_50percent_id_5=4
  6633. VIP_var_new_sharp_post2dsharp_undershootfac_100percent_id_5=7
  6634. VIP_var_new_sharp_post2dsharp_C_gain0_0percent_id_5=0
  6635. VIP_var_new_sharp_post2dsharp_C_gain0_50percent_id_5=0
  6636. VIP_var_new_sharp_post2dsharp_C_gain0_100percent_id_5=0
  6637. VIP_var_new_sharp_post2dsharp_C_gain1_0percent_id_5=0
  6638. VIP_var_new_sharp_post2dsharp_C_gain1_50percent_id_5=0
  6639. VIP_var_new_sharp_post2dsharp_C_gain1_100percent_id_5=128
  6640. VIP_var_new_sharp_post2dsharp_C_gain2_0percent_id_5=0
  6641. VIP_var_new_sharp_post2dsharp_C_gain2_50percent_id_5=0
  6642. VIP_var_new_sharp_post2dsharp_C_gain2_100percent_id_5=128
  6643. VIP_var_new_sharp_post2dsharp_C_th0_0percent_id_5=0
  6644. VIP_var_new_sharp_post2dsharp_C_th0_50percent_id_5=0
  6645. VIP_var_new_sharp_post2dsharp_C_th0_100percent_id_5=3
  6646. VIP_var_new_sharp_post2dsharp_C_th1_0percent_id_5=180
  6647. VIP_var_new_sharp_post2dsharp_C_th1_50percent_id_5=180
  6648. VIP_var_new_sharp_post2dsharp_C_th1_100percent_id_5=180
  6649. VIP_var_new_sharp_post2dsharp_C_slope0_0percent_id_5=100
  6650. VIP_var_new_sharp_post2dsharp_C_slope0_50percent_id_5=0
  6651. VIP_var_new_sharp_post2dsharp_C_slope0_100percent_id_5=320
  6652. VIP_var_new_sharp_post2dsharp_C_slope1_0percent_id_5=100
  6653. VIP_var_new_sharp_post2dsharp_C_slope1_50percent_id_5=0
  6654. VIP_var_new_sharp_post2dsharp_C_slope1_100percent_id_5=0
  6655. VIP_var_new_sharp_post2dsharp_C_filtermode_0percent_id_5=1
  6656. VIP_var_new_sharp_post2dsharp_C_filtermode_50percent_id_5=1
  6657. VIP_var_new_sharp_post2dsharp_C_filtermode_100percent_id_5=1
  6658. VIP_var_new_sharp_post2dsharp_C_scale_0percent_id_5=1
  6659. VIP_var_new_sharp_post2dsharp_C_scale_50percent_id_5=1
  6660. VIP_var_new_sharp_post2dsharp_C_scale_100percent_id_5=1
  6661. VIP_var_new_sharp_post2dsharp_C_gaintap_0percent_id_5=0
  6662. VIP_var_new_sharp_post2dsharp_C_gaintap_50percent_id_5=0
  6663. VIP_var_new_sharp_post2dsharp_C_gaintap_100percent_id_5=0
  6664. VIP_var_new_sharp_post2dsharp_C_shoottap_0percent_id_5=0
  6665. VIP_var_new_sharp_post2dsharp_C_shoottap_50percent_id_5=0
  6666. VIP_var_new_sharp_post2dsharp_C_shoottap_100percent_id_5=0
  6667. VIP_var_new_sharp_post2dsharp_en_id_6=1
  6668. VIP_var_new_sharp_post2dsharp_L_gain0_0percent_id_6=0
  6669. VIP_var_new_sharp_post2dsharp_L_gain0_50percent_id_6=0
  6670. VIP_var_new_sharp_post2dsharp_L_gain0_100percent_id_6=147
  6671. VIP_var_new_sharp_post2dsharp_L_gain1_0percent_id_6=0
  6672. VIP_var_new_sharp_post2dsharp_L_gain1_50percent_id_6=87
  6673. VIP_var_new_sharp_post2dsharp_L_gain1_100percent_id_6=215
  6674. VIP_var_new_sharp_post2dsharp_L_gain2_0percent_id_6=0
  6675. VIP_var_new_sharp_post2dsharp_L_gain2_50percent_id_6=42
  6676. VIP_var_new_sharp_post2dsharp_L_gain2_100percent_id_6=175
  6677. VIP_var_new_sharp_post2dsharp_L_th0_0percent_id_6=79
  6678. VIP_var_new_sharp_post2dsharp_L_th0_50percent_id_6=6
  6679. VIP_var_new_sharp_post2dsharp_L_th0_100percent_id_6=0
  6680. VIP_var_new_sharp_post2dsharp_L_th1_0percent_id_6=99
  6681. VIP_var_new_sharp_post2dsharp_L_th1_50percent_id_6=186
  6682. VIP_var_new_sharp_post2dsharp_L_th1_100percent_id_6=173
  6683. VIP_var_new_sharp_post2dsharp_L_slope0_0percent_id_6=0
  6684. VIP_var_new_sharp_post2dsharp_L_slope0_50percent_id_6=253
  6685. VIP_var_new_sharp_post2dsharp_L_slope0_100percent_id_6=164
  6686. VIP_var_new_sharp_post2dsharp_L_slope1_0percent_id_6=0
  6687. VIP_var_new_sharp_post2dsharp_L_slope1_50percent_id_6=72
  6688. VIP_var_new_sharp_post2dsharp_L_slope1_100percent_id_6=83
  6689. VIP_var_new_sharp_post2dsharp_L_filtermode_0percent_id_6=0
  6690. VIP_var_new_sharp_post2dsharp_L_filtermode_50percent_id_6=0
  6691. VIP_var_new_sharp_post2dsharp_L_filtermode_100percent_id_6=0
  6692. VIP_var_new_sharp_post2dsharp_L_scale_0percent_id_6=0
  6693. VIP_var_new_sharp_post2dsharp_L_scale_50percent_id_6=0
  6694. VIP_var_new_sharp_post2dsharp_L_scale_100percent_id_6=0
  6695. VIP_var_new_sharp_post2dsharp_L_gaintap_0percent_id_6=1
  6696. VIP_var_new_sharp_post2dsharp_L_gaintap_50percent_id_6=1
  6697. VIP_var_new_sharp_post2dsharp_L_gaintap_100percent_id_6=1
  6698. VIP_var_new_sharp_post2dsharp_L_shoottap_0percent_id_6=0
  6699. VIP_var_new_sharp_post2dsharp_L_shoottap_50percent_id_6=0
  6700. VIP_var_new_sharp_post2dsharp_L_shoottap_100percent_id_6=0
  6701. VIP_var_new_sharp_post2dsharp_normalovershoot_0percent_id_6=0
  6702. VIP_var_new_sharp_post2dsharp_normalovershoot_50percent_id_6=64
  6703. VIP_var_new_sharp_post2dsharp_normalovershoot_100percent_id_6=128
  6704. VIP_var_new_sharp_post2dsharp_normalundershoot_0percent_id_6=0
  6705. VIP_var_new_sharp_post2dsharp_normalundershoot_50percent_id_6=64
  6706. VIP_var_new_sharp_post2dsharp_normalundershoot_100percent_id_6=128
  6707. VIP_var_new_sharp_post2dsharp_overshootfac_0percent_id_6=0
  6708. VIP_var_new_sharp_post2dsharp_overshootfac_50percent_id_6=2
  6709. VIP_var_new_sharp_post2dsharp_overshootfac_100percent_id_6=2
  6710. VIP_var_new_sharp_post2dsharp_undershootfac_0percent_id_6=0
  6711. VIP_var_new_sharp_post2dsharp_undershootfac_50percent_id_6=4
  6712. VIP_var_new_sharp_post2dsharp_undershootfac_100percent_id_6=2
  6713. VIP_var_new_sharp_post2dsharp_C_gain0_0percent_id_6=0
  6714. VIP_var_new_sharp_post2dsharp_C_gain0_50percent_id_6=0
  6715. VIP_var_new_sharp_post2dsharp_C_gain0_100percent_id_6=32
  6716. VIP_var_new_sharp_post2dsharp_C_gain1_0percent_id_6=0
  6717. VIP_var_new_sharp_post2dsharp_C_gain1_50percent_id_6=64
  6718. VIP_var_new_sharp_post2dsharp_C_gain1_100percent_id_6=128
  6719. VIP_var_new_sharp_post2dsharp_C_gain2_0percent_id_6=0
  6720. VIP_var_new_sharp_post2dsharp_C_gain2_50percent_id_6=48
  6721. VIP_var_new_sharp_post2dsharp_C_gain2_100percent_id_6=128
  6722. VIP_var_new_sharp_post2dsharp_C_th0_0percent_id_6=79
  6723. VIP_var_new_sharp_post2dsharp_C_th0_50percent_id_6=6
  6724. VIP_var_new_sharp_post2dsharp_C_th0_100percent_id_6=0
  6725. VIP_var_new_sharp_post2dsharp_C_th1_0percent_id_6=180
  6726. VIP_var_new_sharp_post2dsharp_C_th1_50percent_id_6=180
  6727. VIP_var_new_sharp_post2dsharp_C_th1_100percent_id_6=180
  6728. VIP_var_new_sharp_post2dsharp_C_slope0_0percent_id_6=0
  6729. VIP_var_new_sharp_post2dsharp_C_slope0_50percent_id_6=132
  6730. VIP_var_new_sharp_post2dsharp_C_slope0_100percent_id_6=472
  6731. VIP_var_new_sharp_post2dsharp_C_slope1_0percent_id_6=0
  6732. VIP_var_new_sharp_post2dsharp_C_slope1_50percent_id_6=102
  6733. VIP_var_new_sharp_post2dsharp_C_slope1_100percent_id_6=0
  6734. VIP_var_new_sharp_post2dsharp_C_filtermode_0percent_id_6=0
  6735. VIP_var_new_sharp_post2dsharp_C_filtermode_50percent_id_6=0
  6736. VIP_var_new_sharp_post2dsharp_C_filtermode_100percent_id_6=0
  6737. VIP_var_new_sharp_post2dsharp_C_scale_0percent_id_6=1
  6738. VIP_var_new_sharp_post2dsharp_C_scale_50percent_id_6=1
  6739. VIP_var_new_sharp_post2dsharp_C_scale_100percent_id_6=1
  6740. VIP_var_new_sharp_post2dsharp_C_gaintap_0percent_id_6=0
  6741. VIP_var_new_sharp_post2dsharp_C_gaintap_50percent_id_6=0
  6742. VIP_var_new_sharp_post2dsharp_C_gaintap_100percent_id_6=0
  6743. VIP_var_new_sharp_post2dsharp_C_shoottap_0percent_id_6=0
  6744. VIP_var_new_sharp_post2dsharp_C_shoottap_50percent_id_6=0
  6745. VIP_var_new_sharp_post2dsharp_C_shoottap_100percent_id_6=0
  6746. VIP_var_new_sharp_post2dsharp_en_id_7=1
  6747. VIP_var_new_sharp_post2dsharp_L_gain0_0percent_id_7=64
  6748. VIP_var_new_sharp_post2dsharp_L_gain0_50percent_id_7=64
  6749. VIP_var_new_sharp_post2dsharp_L_gain0_100percent_id_7=64
  6750. VIP_var_new_sharp_post2dsharp_L_gain1_0percent_id_7=128
  6751. VIP_var_new_sharp_post2dsharp_L_gain1_50percent_id_7=128
  6752. VIP_var_new_sharp_post2dsharp_L_gain1_100percent_id_7=128
  6753. VIP_var_new_sharp_post2dsharp_L_gain2_0percent_id_7=128
  6754. VIP_var_new_sharp_post2dsharp_L_gain2_50percent_id_7=128
  6755. VIP_var_new_sharp_post2dsharp_L_gain2_100percent_id_7=128
  6756. VIP_var_new_sharp_post2dsharp_L_th0_0percent_id_7=16
  6757. VIP_var_new_sharp_post2dsharp_L_th0_50percent_id_7=16
  6758. VIP_var_new_sharp_post2dsharp_L_th0_100percent_id_7=16
  6759. VIP_var_new_sharp_post2dsharp_L_th1_0percent_id_7=180
  6760. VIP_var_new_sharp_post2dsharp_L_th1_50percent_id_7=180
  6761. VIP_var_new_sharp_post2dsharp_L_th1_100percent_id_7=180
  6762. VIP_var_new_sharp_post2dsharp_L_slope0_0percent_id_7=100
  6763. VIP_var_new_sharp_post2dsharp_L_slope0_50percent_id_7=100
  6764. VIP_var_new_sharp_post2dsharp_L_slope0_100percent_id_7=100
  6765. VIP_var_new_sharp_post2dsharp_L_slope1_0percent_id_7=100
  6766. VIP_var_new_sharp_post2dsharp_L_slope1_50percent_id_7=100
  6767. VIP_var_new_sharp_post2dsharp_L_slope1_100percent_id_7=100
  6768. VIP_var_new_sharp_post2dsharp_L_filtermode_0percent_id_7=0
  6769. VIP_var_new_sharp_post2dsharp_L_filtermode_50percent_id_7=0
  6770. VIP_var_new_sharp_post2dsharp_L_filtermode_100percent_id_7=0
  6771. VIP_var_new_sharp_post2dsharp_L_scale_0percent_id_7=2
  6772. VIP_var_new_sharp_post2dsharp_L_scale_50percent_id_7=2
  6773. VIP_var_new_sharp_post2dsharp_L_scale_100percent_id_7=2
  6774. VIP_var_new_sharp_post2dsharp_L_gaintap_0percent_id_7=1
  6775. VIP_var_new_sharp_post2dsharp_L_gaintap_50percent_id_7=1
  6776. VIP_var_new_sharp_post2dsharp_L_gaintap_100percent_id_7=1
  6777. VIP_var_new_sharp_post2dsharp_L_shoottap_0percent_id_7=0
  6778. VIP_var_new_sharp_post2dsharp_L_shoottap_50percent_id_7=0
  6779. VIP_var_new_sharp_post2dsharp_L_shoottap_100percent_id_7=0
  6780. VIP_var_new_sharp_post2dsharp_normalovershoot_0percent_id_7=64
  6781. VIP_var_new_sharp_post2dsharp_normalovershoot_50percent_id_7=64
  6782. VIP_var_new_sharp_post2dsharp_normalovershoot_100percent_id_7=64
  6783. VIP_var_new_sharp_post2dsharp_normalundershoot_0percent_id_7=64
  6784. VIP_var_new_sharp_post2dsharp_normalundershoot_50percent_id_7=64
  6785. VIP_var_new_sharp_post2dsharp_normalundershoot_100percent_id_7=64
  6786. VIP_var_new_sharp_post2dsharp_overshootfac_0percent_id_7=3
  6787. VIP_var_new_sharp_post2dsharp_overshootfac_50percent_id_7=3
  6788. VIP_var_new_sharp_post2dsharp_overshootfac_100percent_id_7=3
  6789. VIP_var_new_sharp_post2dsharp_undershootfac_0percent_id_7=3
  6790. VIP_var_new_sharp_post2dsharp_undershootfac_50percent_id_7=3
  6791. VIP_var_new_sharp_post2dsharp_undershootfac_100percent_id_7=3
  6792. VIP_var_new_sharp_post2dsharp_C_gain0_0percent_id_7=32
  6793. VIP_var_new_sharp_post2dsharp_C_gain0_50percent_id_7=32
  6794. VIP_var_new_sharp_post2dsharp_C_gain0_100percent_id_7=32
  6795. VIP_var_new_sharp_post2dsharp_C_gain1_0percent_id_7=64
  6796. VIP_var_new_sharp_post2dsharp_C_gain1_50percent_id_7=64
  6797. VIP_var_new_sharp_post2dsharp_C_gain1_100percent_id_7=64
  6798. VIP_var_new_sharp_post2dsharp_C_gain2_0percent_id_7=48
  6799. VIP_var_new_sharp_post2dsharp_C_gain2_50percent_id_7=48
  6800. VIP_var_new_sharp_post2dsharp_C_gain2_100percent_id_7=48
  6801. VIP_var_new_sharp_post2dsharp_C_th0_0percent_id_7=16
  6802. VIP_var_new_sharp_post2dsharp_C_th0_50percent_id_7=16
  6803. VIP_var_new_sharp_post2dsharp_C_th0_100percent_id_7=16
  6804. VIP_var_new_sharp_post2dsharp_C_th1_0percent_id_7=180
  6805. VIP_var_new_sharp_post2dsharp_C_th1_50percent_id_7=180
  6806. VIP_var_new_sharp_post2dsharp_C_th1_100percent_id_7=180
  6807. VIP_var_new_sharp_post2dsharp_C_slope0_0percent_id_7=100
  6808. VIP_var_new_sharp_post2dsharp_C_slope0_50percent_id_7=100
  6809. VIP_var_new_sharp_post2dsharp_C_slope0_100percent_id_7=100
  6810. VIP_var_new_sharp_post2dsharp_C_slope1_0percent_id_7=100
  6811. VIP_var_new_sharp_post2dsharp_C_slope1_50percent_id_7=100
  6812. VIP_var_new_sharp_post2dsharp_C_slope1_100percent_id_7=100
  6813. VIP_var_new_sharp_post2dsharp_C_filtermode_0percent_id_7=0
  6814. VIP_var_new_sharp_post2dsharp_C_filtermode_50percent_id_7=0
  6815. VIP_var_new_sharp_post2dsharp_C_filtermode_100percent_id_7=0
  6816. VIP_var_new_sharp_post2dsharp_C_scale_0percent_id_7=1
  6817. VIP_var_new_sharp_post2dsharp_C_scale_50percent_id_7=1
  6818. VIP_var_new_sharp_post2dsharp_C_scale_100percent_id_7=1
  6819. VIP_var_new_sharp_post2dsharp_C_gaintap_0percent_id_7=1
  6820. VIP_var_new_sharp_post2dsharp_C_gaintap_50percent_id_7=1
  6821. VIP_var_new_sharp_post2dsharp_C_gaintap_100percent_id_7=1
  6822. VIP_var_new_sharp_post2dsharp_C_shoottap_0percent_id_7=0
  6823. VIP_var_new_sharp_post2dsharp_C_shoottap_50percent_id_7=0
  6824. VIP_var_new_sharp_post2dsharp_C_shoottap_100percent_id_7=0
  6825. VIP_TABLE_MAGIC_NUMBER_15=9518
  6826. VIP_var_new_sat_src_0_3=0x1010607
  6827. VIP_var_new_sat_src_4_7=0x2020101
  6828. VIP_var_new_sat_src_8_11=0x40005
  6829. VIP_var_new_sat_src_12_15=0x2030300
  6830. VIP_var_new_sat_src_16_19=0x0
  6831. VIP_var_new_sat_dpysat_en_id_0=1
  6832. VIP_var_new_sat_dpysat_opt_id_0=0
  6833. VIP_var_new_sat_dpysat_all_id_0=80
  6834. VIP_var_new_sat_dpy_hue_id_0=0
  6835. VIP_var_new_sat_gain0_id_0=58
  6836. VIP_var_new_sat_gain1_id_0=61
  6837. VIP_var_new_sat_gain2_id_0=64
  6838. VIP_var_new_sat_gain3_id_0=64
  6839. VIP_var_new_sat_gain4_id_0=64
  6840. VIP_var_new_sat_gain5_id_0=64
  6841. VIP_var_new_sat_gain6_id_0=64
  6842. VIP_var_new_sat_gain7_id_0=64
  6843. VIP_var_new_sat_gain8_id_0=64
  6844. VIP_var_new_sat_gain9_id_0=64
  6845. VIP_var_new_sat_gain10_id_0=64
  6846. VIP_var_new_sat_gain11_id_0=64
  6847. VIP_var_new_sat_gain12_id_0=64
  6848. VIP_var_new_sat_gain13_id_0=64
  6849. VIP_var_new_sat_gain14_id_0=64
  6850. VIP_var_new_sat_gain15_id_0=64
  6851. VIP_var_new_sat_gain16_id_0=64
  6852. VIP_var_new_sat_dpysat_en_id_1=1
  6853. VIP_var_new_sat_dpysat_opt_id_1=0
  6854. VIP_var_new_sat_dpysat_all_id_1=86
  6855. VIP_var_new_sat_dpy_hue_id_1=0
  6856. VIP_var_new_sat_gain0_id_1=64
  6857. VIP_var_new_sat_gain1_id_1=64
  6858. VIP_var_new_sat_gain2_id_1=64
  6859. VIP_var_new_sat_gain3_id_1=64
  6860. VIP_var_new_sat_gain4_id_1=64
  6861. VIP_var_new_sat_gain5_id_1=64
  6862. VIP_var_new_sat_gain6_id_1=64
  6863. VIP_var_new_sat_gain7_id_1=64
  6864. VIP_var_new_sat_gain8_id_1=64
  6865. VIP_var_new_sat_gain9_id_1=64
  6866. VIP_var_new_sat_gain10_id_1=64
  6867. VIP_var_new_sat_gain11_id_1=64
  6868. VIP_var_new_sat_gain12_id_1=64
  6869. VIP_var_new_sat_gain13_id_1=64
  6870. VIP_var_new_sat_gain14_id_1=64
  6871. VIP_var_new_sat_gain15_id_1=64
  6872. VIP_var_new_sat_gain16_id_1=64
  6873. VIP_var_new_sat_dpysat_en_id_2=1
  6874. VIP_var_new_sat_dpysat_opt_id_2=0
  6875. VIP_var_new_sat_dpysat_all_id_2=80
  6876. VIP_var_new_sat_dpy_hue_id_2=0
  6877. VIP_var_new_sat_gain0_id_2=57
  6878. VIP_var_new_sat_gain1_id_2=61
  6879. VIP_var_new_sat_gain2_id_2=64
  6880. VIP_var_new_sat_gain3_id_2=64
  6881. VIP_var_new_sat_gain4_id_2=64
  6882. VIP_var_new_sat_gain5_id_2=64
  6883. VIP_var_new_sat_gain6_id_2=64
  6884. VIP_var_new_sat_gain7_id_2=64
  6885. VIP_var_new_sat_gain8_id_2=64
  6886. VIP_var_new_sat_gain9_id_2=64
  6887. VIP_var_new_sat_gain10_id_2=64
  6888. VIP_var_new_sat_gain11_id_2=64
  6889. VIP_var_new_sat_gain12_id_2=64
  6890. VIP_var_new_sat_gain13_id_2=64
  6891. VIP_var_new_sat_gain14_id_2=64
  6892. VIP_var_new_sat_gain15_id_2=64
  6893. VIP_var_new_sat_gain16_id_2=64
  6894. VIP_var_new_sat_dpysat_en_id_3=1
  6895. VIP_var_new_sat_dpysat_opt_id_3=0
  6896. VIP_var_new_sat_dpysat_all_id_3=64
  6897. VIP_var_new_sat_dpy_hue_id_3=0
  6898. VIP_var_new_sat_gain0_id_3=64
  6899. VIP_var_new_sat_gain1_id_3=64
  6900. VIP_var_new_sat_gain2_id_3=64
  6901. VIP_var_new_sat_gain3_id_3=64
  6902. VIP_var_new_sat_gain4_id_3=64
  6903. VIP_var_new_sat_gain5_id_3=64
  6904. VIP_var_new_sat_gain6_id_3=64
  6905. VIP_var_new_sat_gain7_id_3=64
  6906. VIP_var_new_sat_gain8_id_3=64
  6907. VIP_var_new_sat_gain9_id_3=64
  6908. VIP_var_new_sat_gain10_id_3=64
  6909. VIP_var_new_sat_gain11_id_3=64
  6910. VIP_var_new_sat_gain12_id_3=64
  6911. VIP_var_new_sat_gain13_id_3=64
  6912. VIP_var_new_sat_gain14_id_3=64
  6913. VIP_var_new_sat_gain15_id_3=64
  6914. VIP_var_new_sat_gain16_id_3=64
  6915. VIP_var_new_sat_dpysat_en_id_4=1
  6916. VIP_var_new_sat_dpysat_opt_id_4=0
  6917. VIP_var_new_sat_dpysat_all_id_4=82
  6918. VIP_var_new_sat_dpy_hue_id_4=0
  6919. VIP_var_new_sat_gain0_id_4=64
  6920. VIP_var_new_sat_gain1_id_4=64
  6921. VIP_var_new_sat_gain2_id_4=64
  6922. VIP_var_new_sat_gain3_id_4=64
  6923. VIP_var_new_sat_gain4_id_4=60
  6924. VIP_var_new_sat_gain5_id_4=59
  6925. VIP_var_new_sat_gain6_id_4=59
  6926. VIP_var_new_sat_gain7_id_4=60
  6927. VIP_var_new_sat_gain8_id_4=62
  6928. VIP_var_new_sat_gain9_id_4=64
  6929. VIP_var_new_sat_gain10_id_4=64
  6930. VIP_var_new_sat_gain11_id_4=64
  6931. VIP_var_new_sat_gain12_id_4=64
  6932. VIP_var_new_sat_gain13_id_4=64
  6933. VIP_var_new_sat_gain14_id_4=64
  6934. VIP_var_new_sat_gain15_id_4=64
  6935. VIP_var_new_sat_gain16_id_4=64
  6936. VIP_var_new_sat_dpysat_en_id_5=1
  6937. VIP_var_new_sat_dpysat_opt_id_5=0
  6938. VIP_var_new_sat_dpysat_all_id_5=80
  6939. VIP_var_new_sat_dpy_hue_id_5=0
  6940. VIP_var_new_sat_gain0_id_5=64
  6941. VIP_var_new_sat_gain1_id_5=64
  6942. VIP_var_new_sat_gain2_id_5=64
  6943. VIP_var_new_sat_gain3_id_5=64
  6944. VIP_var_new_sat_gain4_id_5=64
  6945. VIP_var_new_sat_gain5_id_5=64
  6946. VIP_var_new_sat_gain6_id_5=64
  6947. VIP_var_new_sat_gain7_id_5=64
  6948. VIP_var_new_sat_gain8_id_5=64
  6949. VIP_var_new_sat_gain9_id_5=64
  6950. VIP_var_new_sat_gain10_id_5=64
  6951. VIP_var_new_sat_gain11_id_5=64
  6952. VIP_var_new_sat_gain12_id_5=64
  6953. VIP_var_new_sat_gain13_id_5=64
  6954. VIP_var_new_sat_gain14_id_5=64
  6955. VIP_var_new_sat_gain15_id_5=64
  6956. VIP_var_new_sat_gain16_id_5=64
  6957. VIP_var_new_sat_dpysat_en_id_6=1
  6958. VIP_var_new_sat_dpysat_opt_id_6=0
  6959. VIP_var_new_sat_dpysat_all_id_6=105
  6960. VIP_var_new_sat_dpy_hue_id_6=0
  6961. VIP_var_new_sat_gain0_id_6=64
  6962. VIP_var_new_sat_gain1_id_6=64
  6963. VIP_var_new_sat_gain2_id_6=64
  6964. VIP_var_new_sat_gain3_id_6=64
  6965. VIP_var_new_sat_gain4_id_6=64
  6966. VIP_var_new_sat_gain5_id_6=64
  6967. VIP_var_new_sat_gain6_id_6=64
  6968. VIP_var_new_sat_gain7_id_6=64
  6969. VIP_var_new_sat_gain8_id_6=64
  6970. VIP_var_new_sat_gain9_id_6=64
  6971. VIP_var_new_sat_gain10_id_6=64
  6972. VIP_var_new_sat_gain11_id_6=64
  6973. VIP_var_new_sat_gain12_id_6=64
  6974. VIP_var_new_sat_gain13_id_6=64
  6975. VIP_var_new_sat_gain14_id_6=64
  6976. VIP_var_new_sat_gain15_id_6=64
  6977. VIP_var_new_sat_gain16_id_6=64
  6978. VIP_var_new_sat_dpysat_en_id_7=1
  6979. VIP_var_new_sat_dpysat_opt_id_7=0
  6980. VIP_var_new_sat_dpysat_all_id_7=100
  6981. VIP_var_new_sat_dpy_hue_id_7=0
  6982. VIP_var_new_sat_gain0_id_7=64
  6983. VIP_var_new_sat_gain1_id_7=64
  6984. VIP_var_new_sat_gain2_id_7=64
  6985. VIP_var_new_sat_gain3_id_7=64
  6986. VIP_var_new_sat_gain4_id_7=64
  6987. VIP_var_new_sat_gain5_id_7=64
  6988. VIP_var_new_sat_gain6_id_7=64
  6989. VIP_var_new_sat_gain7_id_7=64
  6990. VIP_var_new_sat_gain8_id_7=64
  6991. VIP_var_new_sat_gain9_id_7=64
  6992. VIP_var_new_sat_gain10_id_7=64
  6993. VIP_var_new_sat_gain11_id_7=64
  6994. VIP_var_new_sat_gain12_id_7=64
  6995. VIP_var_new_sat_gain13_id_7=64
  6996. VIP_var_new_sat_gain14_id_7=64
  6997. VIP_var_new_sat_gain15_id_7=64
  6998. VIP_var_new_sat_gain16_id_7=64
  6999. VIP_TABLE_MAGIC_NUMBER_16=9519
  7000. VIP_var_DS_Sharpness_src_0_3=0x3040107
  7001. VIP_var_DS_Sharpness_src_4_7=0x1000101
  7002. VIP_var_DS_Sharpness_src_8_11=0x6060000
  7003. VIP_var_DS_Sharpness_src_12_15=0x2050505
  7004. VIP_var_DS_Sharpness_src_16_19=0x1
  7005. VIP_var_slr_sharp_ratio_sd_id_0=0x9999999
  7006. VIP_var_slr_sharp_ratio_md_id_0=0x8888888
  7007. VIP_var_slr_sharp_ratio_hd_id_0=0x8888888
  7008. VIP_var_weak_sharp_fac_0_id_0=0
  7009. VIP_var_weak_sharp_fac_1_id_0=0
  7010. VIP_var_weak_sharp_fac_2_id_0=0
  7011. VIP_var_weak_ds_sharp_th_0_id_0=0
  7012. VIP_var_weak_ds_sharp_th_1_id_0=556
  7013. VIP_var_weak_ds_sharp_slope_0_id_0=0
  7014. VIP_var_weak_ds_sharp_slope_1_id_0=80
  7015. VIP_var_weak_dscale_sharp_oversht_ylmt_id_0=0
  7016. VIP_var_weak_dscale_sharp_undersht_ylmt_id_0=0
  7017. VIP_var_weak_sharp_fac_0_c_id_0=0
  7018. VIP_var_weak_sharp_fac_1_c_id_0=0
  7019. VIP_var_weak_sharp_fac_2_c_id_0=0
  7020. VIP_var_weak_ds_sharp_th_0_c_id_0=13
  7021. VIP_var_weak_ds_sharp_th_1_c_id_0=647
  7022. VIP_var_weak_ds_sharp_slope_0_c_id_0=0
  7023. VIP_var_weak_ds_sharp_slope_1_c_id_0=0
  7024. VIP_var_weak_dscale_sharp_oversht_clmt_id_0=0
  7025. VIP_var_weak_dscale_sharp_undersht_clmt_id_0=0
  7026. VIP_var_normal_sharp_fac_0_id_0=0
  7027. VIP_var_normal_sharp_fac_1_id_0=16
  7028. VIP_var_normal_sharp_fac_2_id_0=0
  7029. VIP_var_normal_ds_sharp_th_0_id_0=2
  7030. VIP_var_normal_ds_sharp_th_1_id_0=162
  7031. VIP_var_normal_ds_sharp_slope_0_id_0=264
  7032. VIP_var_normal_ds_sharp_slope_1_id_0=94
  7033. VIP_var_normal_dscale_sharp_oversht_ylmt_id_0=64
  7034. VIP_var_normal_dscale_sharp_undersht_ylmt_id_0=128
  7035. VIP_var_normal_sharp_fac_0_c_id_0=0
  7036. VIP_var_normal_sharp_fac_1_c_id_0=0
  7037. VIP_var_normal_sharp_fac_2_c_id_0=0
  7038. VIP_var_normal_ds_sharp_th_0_c_id_0=13
  7039. VIP_var_normal_ds_sharp_th_1_c_id_0=647
  7040. VIP_var_normal_ds_sharp_slope_0_c_id_0=0
  7041. VIP_var_normal_ds_sharp_slope_1_c_id_0=0
  7042. VIP_var_normal_dscale_sharp_oversht_clmt_id_0=0
  7043. VIP_var_normal_dscale_sharp_undersht_clmt_id_0=0
  7044. VIP_var_strong_sharp_fac_0_id_0=28
  7045. VIP_var_strong_sharp_fac_1_id_0=58
  7046. VIP_var_strong_sharp_fac_2_id_0=33
  7047. VIP_var_strong_ds_sharp_th_0_id_0=9
  7048. VIP_var_strong_ds_sharp_th_1_id_0=559
  7049. VIP_var_strong_ds_sharp_slope_0_id_0=187
  7050. VIP_var_strong_ds_sharp_slope_1_id_0=44
  7051. VIP_var_strong_dscale_sharp_oversht_ylmt_id_0=24
  7052. VIP_var_strong_dscale_sharp_undersht_ylmt_id_0=96
  7053. VIP_var_strong_sharp_fac_0_c_id_0=0
  7054. VIP_var_strong_sharp_fac_1_c_id_0=0
  7055. VIP_var_strong_sharp_fac_2_c_id_0=0
  7056. VIP_var_strong_ds_sharp_th_0_c_id_0=0
  7057. VIP_var_strong_ds_sharp_th_1_c_id_0=647
  7058. VIP_var_strong_ds_sharp_slope_0_c_id_0=0
  7059. VIP_var_strong_ds_sharp_slope_1_c_id_0=0
  7060. VIP_var_strong_dscale_sharp_oversht_clmt_id_0=0
  7061. VIP_var_strong_dscale_sharp_undersht_clmt_id_0=0
  7062. VIP_var_ds_sharp_angle_id_0=263168
  7063. VIP_var_ds_dark_sharp_th_0_1_id_0=0x19000c8
  7064. VIP_var_ds_dark_sharp_th_2_3_id_0=0x3200258
  7065. VIP_var_ds_dark_sharp_fac_0_1_id_0=0xfa0032
  7066. VIP_var_ds_dark_sharp_fac_2_3_id_0=0x3cf0307
  7067. VIP_var_ds_dark_sharp_slope_0_1_2_3_id_0=0x102a1004
  7068. VIP_var_ds_dark_sharp_slope_4_enable_id_0=0x4
  7069. VIP_var_slr_sharp_ratio_sd_id_1=0x8888888
  7070. VIP_var_slr_sharp_ratio_md_id_1=0x8888888
  7071. VIP_var_slr_sharp_ratio_hd_id_1=0x8888888
  7072. VIP_var_weak_sharp_fac_0_id_1=0
  7073. VIP_var_weak_sharp_fac_1_id_1=0
  7074. VIP_var_weak_sharp_fac_2_id_1=0
  7075. VIP_var_weak_ds_sharp_th_0_id_1=0
  7076. VIP_var_weak_ds_sharp_th_1_id_1=556
  7077. VIP_var_weak_ds_sharp_slope_0_id_1=0
  7078. VIP_var_weak_ds_sharp_slope_1_id_1=80
  7079. VIP_var_weak_dscale_sharp_oversht_ylmt_id_1=64
  7080. VIP_var_weak_dscale_sharp_undersht_ylmt_id_1=64
  7081. VIP_var_weak_sharp_fac_0_c_id_1=0
  7082. VIP_var_weak_sharp_fac_1_c_id_1=0
  7083. VIP_var_weak_sharp_fac_2_c_id_1=0
  7084. VIP_var_weak_ds_sharp_th_0_c_id_1=13
  7085. VIP_var_weak_ds_sharp_th_1_c_id_1=647
  7086. VIP_var_weak_ds_sharp_slope_0_c_id_1=0
  7087. VIP_var_weak_ds_sharp_slope_1_c_id_1=0
  7088. VIP_var_weak_dscale_sharp_oversht_clmt_id_1=0
  7089. VIP_var_weak_dscale_sharp_undersht_clmt_id_1=0
  7090. VIP_var_normal_sharp_fac_0_id_1=0
  7091. VIP_var_normal_sharp_fac_1_id_1=23
  7092. VIP_var_normal_sharp_fac_2_id_1=23
  7093. VIP_var_normal_ds_sharp_th_0_id_1=0
  7094. VIP_var_normal_ds_sharp_th_1_id_1=459
  7095. VIP_var_normal_ds_sharp_slope_0_id_1=226
  7096. VIP_var_normal_ds_sharp_slope_1_id_1=0
  7097. VIP_var_normal_dscale_sharp_oversht_ylmt_id_1=32
  7098. VIP_var_normal_dscale_sharp_undersht_ylmt_id_1=64
  7099. VIP_var_normal_sharp_fac_0_c_id_1=0
  7100. VIP_var_normal_sharp_fac_1_c_id_1=0
  7101. VIP_var_normal_sharp_fac_2_c_id_1=0
  7102. VIP_var_normal_ds_sharp_th_0_c_id_1=13
  7103. VIP_var_normal_ds_sharp_th_1_c_id_1=647
  7104. VIP_var_normal_ds_sharp_slope_0_c_id_1=0
  7105. VIP_var_normal_ds_sharp_slope_1_c_id_1=0
  7106. VIP_var_normal_dscale_sharp_oversht_clmt_id_1=0
  7107. VIP_var_normal_dscale_sharp_undersht_clmt_id_1=0
  7108. VIP_var_strong_sharp_fac_0_id_1=0
  7109. VIP_var_strong_sharp_fac_1_id_1=36
  7110. VIP_var_strong_sharp_fac_2_id_1=25
  7111. VIP_var_strong_ds_sharp_th_0_id_1=0
  7112. VIP_var_strong_ds_sharp_th_1_id_1=559
  7113. VIP_var_strong_ds_sharp_slope_0_id_1=99
  7114. VIP_var_strong_ds_sharp_slope_1_id_1=16
  7115. VIP_var_strong_dscale_sharp_oversht_ylmt_id_1=64
  7116. VIP_var_strong_dscale_sharp_undersht_ylmt_id_1=64
  7117. VIP_var_strong_sharp_fac_0_c_id_1=0
  7118. VIP_var_strong_sharp_fac_1_c_id_1=0
  7119. VIP_var_strong_sharp_fac_2_c_id_1=0
  7120. VIP_var_strong_ds_sharp_th_0_c_id_1=0
  7121. VIP_var_strong_ds_sharp_th_1_c_id_1=647
  7122. VIP_var_strong_ds_sharp_slope_0_c_id_1=0
  7123. VIP_var_strong_ds_sharp_slope_1_c_id_1=0
  7124. VIP_var_strong_dscale_sharp_oversht_clmt_id_1=0
  7125. VIP_var_strong_dscale_sharp_undersht_clmt_id_1=0
  7126. VIP_var_ds_sharp_angle_id_1=263168
  7127. VIP_var_ds_dark_sharp_th_0_1_id_1=0x19000c8
  7128. VIP_var_ds_dark_sharp_th_2_3_id_1=0x3200258
  7129. VIP_var_ds_dark_sharp_fac_0_1_id_1=0xfa0032
  7130. VIP_var_ds_dark_sharp_fac_2_3_id_1=0x3cf0307
  7131. VIP_var_ds_dark_sharp_slope_0_1_2_3_id_1=0x102a1004
  7132. VIP_var_ds_dark_sharp_slope_4_enable_id_1=0x4
  7133. VIP_var_slr_sharp_ratio_sd_id_2=0x8888888
  7134. VIP_var_slr_sharp_ratio_md_id_2=0x8888888
  7135. VIP_var_slr_sharp_ratio_hd_id_2=0x8888888
  7136. VIP_var_weak_sharp_fac_0_id_2=0
  7137. VIP_var_weak_sharp_fac_1_id_2=0
  7138. VIP_var_weak_sharp_fac_2_id_2=0
  7139. VIP_var_weak_ds_sharp_th_0_id_2=0
  7140. VIP_var_weak_ds_sharp_th_1_id_2=556
  7141. VIP_var_weak_ds_sharp_slope_0_id_2=0
  7142. VIP_var_weak_ds_sharp_slope_1_id_2=80
  7143. VIP_var_weak_dscale_sharp_oversht_ylmt_id_2=64
  7144. VIP_var_weak_dscale_sharp_undersht_ylmt_id_2=64
  7145. VIP_var_weak_sharp_fac_0_c_id_2=0
  7146. VIP_var_weak_sharp_fac_1_c_id_2=0
  7147. VIP_var_weak_sharp_fac_2_c_id_2=0
  7148. VIP_var_weak_ds_sharp_th_0_c_id_2=13
  7149. VIP_var_weak_ds_sharp_th_1_c_id_2=647
  7150. VIP_var_weak_ds_sharp_slope_0_c_id_2=0
  7151. VIP_var_weak_ds_sharp_slope_1_c_id_2=0
  7152. VIP_var_weak_dscale_sharp_oversht_clmt_id_2=0
  7153. VIP_var_weak_dscale_sharp_undersht_clmt_id_2=0
  7154. VIP_var_normal_sharp_fac_0_id_2=0
  7155. VIP_var_normal_sharp_fac_1_id_2=39
  7156. VIP_var_normal_sharp_fac_2_id_2=19
  7157. VIP_var_normal_ds_sharp_th_0_id_2=0
  7158. VIP_var_normal_ds_sharp_th_1_id_2=556
  7159. VIP_var_normal_ds_sharp_slope_0_id_2=133
  7160. VIP_var_normal_ds_sharp_slope_1_id_2=80
  7161. VIP_var_normal_dscale_sharp_oversht_ylmt_id_2=0
  7162. VIP_var_normal_dscale_sharp_undersht_ylmt_id_2=0
  7163. VIP_var_normal_sharp_fac_0_c_id_2=0
  7164. VIP_var_normal_sharp_fac_1_c_id_2=0
  7165. VIP_var_normal_sharp_fac_2_c_id_2=0
  7166. VIP_var_normal_ds_sharp_th_0_c_id_2=13
  7167. VIP_var_normal_ds_sharp_th_1_c_id_2=647
  7168. VIP_var_normal_ds_sharp_slope_0_c_id_2=0
  7169. VIP_var_normal_ds_sharp_slope_1_c_id_2=0
  7170. VIP_var_normal_dscale_sharp_oversht_clmt_id_2=0
  7171. VIP_var_normal_dscale_sharp_undersht_clmt_id_2=0
  7172. VIP_var_strong_sharp_fac_0_id_2=0
  7173. VIP_var_strong_sharp_fac_1_id_2=64
  7174. VIP_var_strong_sharp_fac_2_id_2=42
  7175. VIP_var_strong_ds_sharp_th_0_id_2=0
  7176. VIP_var_strong_ds_sharp_th_1_id_2=559
  7177. VIP_var_strong_ds_sharp_slope_0_id_2=226
  7178. VIP_var_strong_ds_sharp_slope_1_id_2=93
  7179. VIP_var_strong_dscale_sharp_oversht_ylmt_id_2=0
  7180. VIP_var_strong_dscale_sharp_undersht_ylmt_id_2=0
  7181. VIP_var_strong_sharp_fac_0_c_id_2=0
  7182. VIP_var_strong_sharp_fac_1_c_id_2=0
  7183. VIP_var_strong_sharp_fac_2_c_id_2=0
  7184. VIP_var_strong_ds_sharp_th_0_c_id_2=0
  7185. VIP_var_strong_ds_sharp_th_1_c_id_2=647
  7186. VIP_var_strong_ds_sharp_slope_0_c_id_2=0
  7187. VIP_var_strong_ds_sharp_slope_1_c_id_2=0
  7188. VIP_var_strong_dscale_sharp_oversht_clmt_id_2=0
  7189. VIP_var_strong_dscale_sharp_undersht_clmt_id_2=0
  7190. VIP_var_ds_sharp_angle_id_2=263168
  7191. VIP_var_ds_dark_sharp_th_0_1_id_2=0x19000c8
  7192. VIP_var_ds_dark_sharp_th_2_3_id_2=0x3200258
  7193. VIP_var_ds_dark_sharp_fac_0_1_id_2=0xfa0032
  7194. VIP_var_ds_dark_sharp_fac_2_3_id_2=0x3cf0307
  7195. VIP_var_ds_dark_sharp_slope_0_1_2_3_id_2=0x102a1004
  7196. VIP_var_ds_dark_sharp_slope_4_enable_id_2=0x4
  7197. VIP_var_slr_sharp_ratio_sd_id_3=0x999999a
  7198. VIP_var_slr_sharp_ratio_md_id_3=0x8888888
  7199. VIP_var_slr_sharp_ratio_hd_id_3=0x8888888
  7200. VIP_var_weak_sharp_fac_0_id_3=0
  7201. VIP_var_weak_sharp_fac_1_id_3=0
  7202. VIP_var_weak_sharp_fac_2_id_3=0
  7203. VIP_var_weak_ds_sharp_th_0_id_3=0
  7204. VIP_var_weak_ds_sharp_th_1_id_3=556
  7205. VIP_var_weak_ds_sharp_slope_0_id_3=0
  7206. VIP_var_weak_ds_sharp_slope_1_id_3=80
  7207. VIP_var_weak_dscale_sharp_oversht_ylmt_id_3=64
  7208. VIP_var_weak_dscale_sharp_undersht_ylmt_id_3=64
  7209. VIP_var_weak_sharp_fac_0_c_id_3=0
  7210. VIP_var_weak_sharp_fac_1_c_id_3=0
  7211. VIP_var_weak_sharp_fac_2_c_id_3=0
  7212. VIP_var_weak_ds_sharp_th_0_c_id_3=13
  7213. VIP_var_weak_ds_sharp_th_1_c_id_3=647
  7214. VIP_var_weak_ds_sharp_slope_0_c_id_3=0
  7215. VIP_var_weak_ds_sharp_slope_1_c_id_3=0
  7216. VIP_var_weak_dscale_sharp_oversht_clmt_id_3=0
  7217. VIP_var_weak_dscale_sharp_undersht_clmt_id_3=0
  7218. VIP_var_normal_sharp_fac_0_id_3=0
  7219. VIP_var_normal_sharp_fac_1_id_3=19
  7220. VIP_var_normal_sharp_fac_2_id_3=19
  7221. VIP_var_normal_ds_sharp_th_0_id_3=24
  7222. VIP_var_normal_ds_sharp_th_1_id_3=331
  7223. VIP_var_normal_ds_sharp_slope_0_id_3=138
  7224. VIP_var_normal_ds_sharp_slope_1_id_3=34
  7225. VIP_var_normal_dscale_sharp_oversht_ylmt_id_3=128
  7226. VIP_var_normal_dscale_sharp_undersht_ylmt_id_3=128
  7227. VIP_var_normal_sharp_fac_0_c_id_3=0
  7228. VIP_var_normal_sharp_fac_1_c_id_3=0
  7229. VIP_var_normal_sharp_fac_2_c_id_3=0
  7230. VIP_var_normal_ds_sharp_th_0_c_id_3=13
  7231. VIP_var_normal_ds_sharp_th_1_c_id_3=647
  7232. VIP_var_normal_ds_sharp_slope_0_c_id_3=0
  7233. VIP_var_normal_ds_sharp_slope_1_c_id_3=0
  7234. VIP_var_normal_dscale_sharp_oversht_clmt_id_3=0
  7235. VIP_var_normal_dscale_sharp_undersht_clmt_id_3=0
  7236. VIP_var_strong_sharp_fac_0_id_3=17
  7237. VIP_var_strong_sharp_fac_1_id_3=37
  7238. VIP_var_strong_sharp_fac_2_id_3=37
  7239. VIP_var_strong_ds_sharp_th_0_id_3=0
  7240. VIP_var_strong_ds_sharp_th_1_id_3=559
  7241. VIP_var_strong_ds_sharp_slope_0_id_3=158
  7242. VIP_var_strong_ds_sharp_slope_1_id_3=0
  7243. VIP_var_strong_dscale_sharp_oversht_ylmt_id_3=64
  7244. VIP_var_strong_dscale_sharp_undersht_ylmt_id_3=64
  7245. VIP_var_strong_sharp_fac_0_c_id_3=0
  7246. VIP_var_strong_sharp_fac_1_c_id_3=0
  7247. VIP_var_strong_sharp_fac_2_c_id_3=0
  7248. VIP_var_strong_ds_sharp_th_0_c_id_3=0
  7249. VIP_var_strong_ds_sharp_th_1_c_id_3=647
  7250. VIP_var_strong_ds_sharp_slope_0_c_id_3=0
  7251. VIP_var_strong_ds_sharp_slope_1_c_id_3=0
  7252. VIP_var_strong_dscale_sharp_oversht_clmt_id_3=0
  7253. VIP_var_strong_dscale_sharp_undersht_clmt_id_3=0
  7254. VIP_var_ds_sharp_angle_id_3=263168
  7255. VIP_var_ds_dark_sharp_th_0_1_id_3=0x19000c8
  7256. VIP_var_ds_dark_sharp_th_2_3_id_3=0x3200258
  7257. VIP_var_ds_dark_sharp_fac_0_1_id_3=0xfa0032
  7258. VIP_var_ds_dark_sharp_fac_2_3_id_3=0x3cf0307
  7259. VIP_var_ds_dark_sharp_slope_0_1_2_3_id_3=0x102a1004
  7260. VIP_var_ds_dark_sharp_slope_4_enable_id_3=0x4
  7261. VIP_var_slr_sharp_ratio_sd_id_4=0x999999a
  7262. VIP_var_slr_sharp_ratio_md_id_4=0x8888888
  7263. VIP_var_slr_sharp_ratio_hd_id_4=0x8888888
  7264. VIP_var_weak_sharp_fac_0_id_4=0
  7265. VIP_var_weak_sharp_fac_1_id_4=0
  7266. VIP_var_weak_sharp_fac_2_id_4=0
  7267. VIP_var_weak_ds_sharp_th_0_id_4=0
  7268. VIP_var_weak_ds_sharp_th_1_id_4=556
  7269. VIP_var_weak_ds_sharp_slope_0_id_4=0
  7270. VIP_var_weak_ds_sharp_slope_1_id_4=80
  7271. VIP_var_weak_dscale_sharp_oversht_ylmt_id_4=64
  7272. VIP_var_weak_dscale_sharp_undersht_ylmt_id_4=64
  7273. VIP_var_weak_sharp_fac_0_c_id_4=0
  7274. VIP_var_weak_sharp_fac_1_c_id_4=0
  7275. VIP_var_weak_sharp_fac_2_c_id_4=0
  7276. VIP_var_weak_ds_sharp_th_0_c_id_4=13
  7277. VIP_var_weak_ds_sharp_th_1_c_id_4=647
  7278. VIP_var_weak_ds_sharp_slope_0_c_id_4=0
  7279. VIP_var_weak_ds_sharp_slope_1_c_id_4=0
  7280. VIP_var_weak_dscale_sharp_oversht_clmt_id_4=0
  7281. VIP_var_weak_dscale_sharp_undersht_clmt_id_4=0
  7282. VIP_var_normal_sharp_fac_0_id_4=1
  7283. VIP_var_normal_sharp_fac_1_id_4=20
  7284. VIP_var_normal_sharp_fac_2_id_4=20
  7285. VIP_var_normal_ds_sharp_th_0_id_4=0
  7286. VIP_var_normal_ds_sharp_th_1_id_4=374
  7287. VIP_var_normal_ds_sharp_slope_0_id_4=187
  7288. VIP_var_normal_ds_sharp_slope_1_id_4=0
  7289. VIP_var_normal_dscale_sharp_oversht_ylmt_id_4=128
  7290. VIP_var_normal_dscale_sharp_undersht_ylmt_id_4=128
  7291. VIP_var_normal_sharp_fac_0_c_id_4=0
  7292. VIP_var_normal_sharp_fac_1_c_id_4=0
  7293. VIP_var_normal_sharp_fac_2_c_id_4=0
  7294. VIP_var_normal_ds_sharp_th_0_c_id_4=13
  7295. VIP_var_normal_ds_sharp_th_1_c_id_4=647
  7296. VIP_var_normal_ds_sharp_slope_0_c_id_4=0
  7297. VIP_var_normal_ds_sharp_slope_1_c_id_4=0
  7298. VIP_var_normal_dscale_sharp_oversht_clmt_id_4=0
  7299. VIP_var_normal_dscale_sharp_undersht_clmt_id_4=0
  7300. VIP_var_strong_sharp_fac_0_id_4=17
  7301. VIP_var_strong_sharp_fac_1_id_4=37
  7302. VIP_var_strong_sharp_fac_2_id_4=37
  7303. VIP_var_strong_ds_sharp_th_0_id_4=0
  7304. VIP_var_strong_ds_sharp_th_1_id_4=559
  7305. VIP_var_strong_ds_sharp_slope_0_id_4=158
  7306. VIP_var_strong_ds_sharp_slope_1_id_4=0
  7307. VIP_var_strong_dscale_sharp_oversht_ylmt_id_4=64
  7308. VIP_var_strong_dscale_sharp_undersht_ylmt_id_4=64
  7309. VIP_var_strong_sharp_fac_0_c_id_4=0
  7310. VIP_var_strong_sharp_fac_1_c_id_4=0
  7311. VIP_var_strong_sharp_fac_2_c_id_4=0
  7312. VIP_var_strong_ds_sharp_th_0_c_id_4=0
  7313. VIP_var_strong_ds_sharp_th_1_c_id_4=647
  7314. VIP_var_strong_ds_sharp_slope_0_c_id_4=0
  7315. VIP_var_strong_ds_sharp_slope_1_c_id_4=0
  7316. VIP_var_strong_dscale_sharp_oversht_clmt_id_4=0
  7317. VIP_var_strong_dscale_sharp_undersht_clmt_id_4=0
  7318. VIP_var_ds_sharp_angle_id_4=263168
  7319. VIP_var_ds_dark_sharp_th_0_1_id_4=0x19000c8
  7320. VIP_var_ds_dark_sharp_th_2_3_id_4=0x3200258
  7321. VIP_var_ds_dark_sharp_fac_0_1_id_4=0xfa0032
  7322. VIP_var_ds_dark_sharp_fac_2_3_id_4=0x3cf0307
  7323. VIP_var_ds_dark_sharp_slope_0_1_2_3_id_4=0x102a1004
  7324. VIP_var_ds_dark_sharp_slope_4_enable_id_4=0x4
  7325. VIP_var_slr_sharp_ratio_sd_id_5=0x8888888
  7326. VIP_var_slr_sharp_ratio_md_id_5=0x8888888
  7327. VIP_var_slr_sharp_ratio_hd_id_5=0x8888888
  7328. VIP_var_weak_sharp_fac_0_id_5=0
  7329. VIP_var_weak_sharp_fac_1_id_5=0
  7330. VIP_var_weak_sharp_fac_2_id_5=0
  7331. VIP_var_weak_ds_sharp_th_0_id_5=0
  7332. VIP_var_weak_ds_sharp_th_1_id_5=556
  7333. VIP_var_weak_ds_sharp_slope_0_id_5=0
  7334. VIP_var_weak_ds_sharp_slope_1_id_5=80
  7335. VIP_var_weak_dscale_sharp_oversht_ylmt_id_5=0
  7336. VIP_var_weak_dscale_sharp_undersht_ylmt_id_5=0
  7337. VIP_var_weak_sharp_fac_0_c_id_5=0
  7338. VIP_var_weak_sharp_fac_1_c_id_5=0
  7339. VIP_var_weak_sharp_fac_2_c_id_5=0
  7340. VIP_var_weak_ds_sharp_th_0_c_id_5=13
  7341. VIP_var_weak_ds_sharp_th_1_c_id_5=647
  7342. VIP_var_weak_ds_sharp_slope_0_c_id_5=0
  7343. VIP_var_weak_ds_sharp_slope_1_c_id_5=0
  7344. VIP_var_weak_dscale_sharp_oversht_clmt_id_5=0
  7345. VIP_var_weak_dscale_sharp_undersht_clmt_id_5=0
  7346. VIP_var_normal_sharp_fac_0_id_5=0
  7347. VIP_var_normal_sharp_fac_1_id_5=0
  7348. VIP_var_normal_sharp_fac_2_id_5=0
  7349. VIP_var_normal_ds_sharp_th_0_id_5=0
  7350. VIP_var_normal_ds_sharp_th_1_id_5=556
  7351. VIP_var_normal_ds_sharp_slope_0_id_5=0
  7352. VIP_var_normal_ds_sharp_slope_1_id_5=80
  7353. VIP_var_normal_dscale_sharp_oversht_ylmt_id_5=0
  7354. VIP_var_normal_dscale_sharp_undersht_ylmt_id_5=0
  7355. VIP_var_normal_sharp_fac_0_c_id_5=0
  7356. VIP_var_normal_sharp_fac_1_c_id_5=0
  7357. VIP_var_normal_sharp_fac_2_c_id_5=0
  7358. VIP_var_normal_ds_sharp_th_0_c_id_5=13
  7359. VIP_var_normal_ds_sharp_th_1_c_id_5=647
  7360. VIP_var_normal_ds_sharp_slope_0_c_id_5=0
  7361. VIP_var_normal_ds_sharp_slope_1_c_id_5=0
  7362. VIP_var_normal_dscale_sharp_oversht_clmt_id_5=0
  7363. VIP_var_normal_dscale_sharp_undersht_clmt_id_5=0
  7364. VIP_var_strong_sharp_fac_0_id_5=0
  7365. VIP_var_strong_sharp_fac_1_id_5=0
  7366. VIP_var_strong_sharp_fac_2_id_5=0
  7367. VIP_var_strong_ds_sharp_th_0_id_5=0
  7368. VIP_var_strong_ds_sharp_th_1_id_5=559
  7369. VIP_var_strong_ds_sharp_slope_0_id_5=0
  7370. VIP_var_strong_ds_sharp_slope_1_id_5=93
  7371. VIP_var_strong_dscale_sharp_oversht_ylmt_id_5=0
  7372. VIP_var_strong_dscale_sharp_undersht_ylmt_id_5=0
  7373. VIP_var_strong_sharp_fac_0_c_id_5=0
  7374. VIP_var_strong_sharp_fac_1_c_id_5=0
  7375. VIP_var_strong_sharp_fac_2_c_id_5=0
  7376. VIP_var_strong_ds_sharp_th_0_c_id_5=0
  7377. VIP_var_strong_ds_sharp_th_1_c_id_5=647
  7378. VIP_var_strong_ds_sharp_slope_0_c_id_5=0
  7379. VIP_var_strong_ds_sharp_slope_1_c_id_5=0
  7380. VIP_var_strong_dscale_sharp_oversht_clmt_id_5=0
  7381. VIP_var_strong_dscale_sharp_undersht_clmt_id_5=0
  7382. VIP_var_ds_sharp_angle_id_5=263168
  7383. VIP_var_ds_dark_sharp_th_0_1_id_5=0x19000c8
  7384. VIP_var_ds_dark_sharp_th_2_3_id_5=0x3200258
  7385. VIP_var_ds_dark_sharp_fac_0_1_id_5=0xfa0032
  7386. VIP_var_ds_dark_sharp_fac_2_3_id_5=0x3cf0307
  7387. VIP_var_ds_dark_sharp_slope_0_1_2_3_id_5=0x102a1004
  7388. VIP_var_ds_dark_sharp_slope_4_enable_id_5=0x4
  7389. VIP_var_slr_sharp_ratio_sd_id_6=0xaaaaaaa
  7390. VIP_var_slr_sharp_ratio_md_id_6=0x8888888
  7391. VIP_var_slr_sharp_ratio_hd_id_6=0xaaaaaaa
  7392. VIP_var_weak_sharp_fac_0_id_6=0
  7393. VIP_var_weak_sharp_fac_1_id_6=0
  7394. VIP_var_weak_sharp_fac_2_id_6=0
  7395. VIP_var_weak_ds_sharp_th_0_id_6=0
  7396. VIP_var_weak_ds_sharp_th_1_id_6=556
  7397. VIP_var_weak_ds_sharp_slope_0_id_6=0
  7398. VIP_var_weak_ds_sharp_slope_1_id_6=80
  7399. VIP_var_weak_dscale_sharp_oversht_ylmt_id_6=0
  7400. VIP_var_weak_dscale_sharp_undersht_ylmt_id_6=0
  7401. VIP_var_weak_sharp_fac_0_c_id_6=0
  7402. VIP_var_weak_sharp_fac_1_c_id_6=0
  7403. VIP_var_weak_sharp_fac_2_c_id_6=0
  7404. VIP_var_weak_ds_sharp_th_0_c_id_6=13
  7405. VIP_var_weak_ds_sharp_th_1_c_id_6=647
  7406. VIP_var_weak_ds_sharp_slope_0_c_id_6=0
  7407. VIP_var_weak_ds_sharp_slope_1_c_id_6=0
  7408. VIP_var_weak_dscale_sharp_oversht_clmt_id_6=0
  7409. VIP_var_weak_dscale_sharp_undersht_clmt_id_6=0
  7410. VIP_var_normal_sharp_fac_0_id_6=0
  7411. VIP_var_normal_sharp_fac_1_id_6=29
  7412. VIP_var_normal_sharp_fac_2_id_6=0
  7413. VIP_var_normal_ds_sharp_th_0_id_6=9
  7414. VIP_var_normal_ds_sharp_th_1_id_6=683
  7415. VIP_var_normal_ds_sharp_slope_0_id_6=208
  7416. VIP_var_normal_ds_sharp_slope_1_id_6=61
  7417. VIP_var_normal_dscale_sharp_oversht_ylmt_id_6=128
  7418. VIP_var_normal_dscale_sharp_undersht_ylmt_id_6=128
  7419. VIP_var_normal_sharp_fac_0_c_id_6=0
  7420. VIP_var_normal_sharp_fac_1_c_id_6=0
  7421. VIP_var_normal_sharp_fac_2_c_id_6=0
  7422. VIP_var_normal_ds_sharp_th_0_c_id_6=13
  7423. VIP_var_normal_ds_sharp_th_1_c_id_6=647
  7424. VIP_var_normal_ds_sharp_slope_0_c_id_6=0
  7425. VIP_var_normal_ds_sharp_slope_1_c_id_6=0
  7426. VIP_var_normal_dscale_sharp_oversht_clmt_id_6=0
  7427. VIP_var_normal_dscale_sharp_undersht_clmt_id_6=0
  7428. VIP_var_strong_sharp_fac_0_id_6=15
  7429. VIP_var_strong_sharp_fac_1_id_6=50
  7430. VIP_var_strong_sharp_fac_2_id_6=46
  7431. VIP_var_strong_ds_sharp_th_0_id_6=11
  7432. VIP_var_strong_ds_sharp_th_1_id_6=559
  7433. VIP_var_strong_ds_sharp_slope_0_id_6=230
  7434. VIP_var_strong_ds_sharp_slope_1_id_6=36
  7435. VIP_var_strong_dscale_sharp_oversht_ylmt_id_6=96
  7436. VIP_var_strong_dscale_sharp_undersht_ylmt_id_6=96
  7437. VIP_var_strong_sharp_fac_0_c_id_6=0
  7438. VIP_var_strong_sharp_fac_1_c_id_6=0
  7439. VIP_var_strong_sharp_fac_2_c_id_6=0
  7440. VIP_var_strong_ds_sharp_th_0_c_id_6=0
  7441. VIP_var_strong_ds_sharp_th_1_c_id_6=647
  7442. VIP_var_strong_ds_sharp_slope_0_c_id_6=0
  7443. VIP_var_strong_ds_sharp_slope_1_c_id_6=0
  7444. VIP_var_strong_dscale_sharp_oversht_clmt_id_6=0
  7445. VIP_var_strong_dscale_sharp_undersht_clmt_id_6=0
  7446. VIP_var_ds_sharp_angle_id_6=263169
  7447. VIP_var_ds_dark_sharp_th_0_1_id_6=0x19000c8
  7448. VIP_var_ds_dark_sharp_th_2_3_id_6=0x3200258
  7449. VIP_var_ds_dark_sharp_fac_0_1_id_6=0xfa0032
  7450. VIP_var_ds_dark_sharp_fac_2_3_id_6=0x3cf0307
  7451. VIP_var_ds_dark_sharp_slope_0_1_2_3_id_6=0x102a1004
  7452. VIP_var_ds_dark_sharp_slope_4_enable_id_6=0x4
  7453. VIP_var_slr_sharp_ratio_sd_id_7=0x8888888
  7454. VIP_var_slr_sharp_ratio_md_id_7=0x8888888
  7455. VIP_var_slr_sharp_ratio_hd_id_7=0x8888888
  7456. VIP_var_weak_sharp_fac_0_id_7=0
  7457. VIP_var_weak_sharp_fac_1_id_7=0
  7458. VIP_var_weak_sharp_fac_2_id_7=0
  7459. VIP_var_weak_ds_sharp_th_0_id_7=0
  7460. VIP_var_weak_ds_sharp_th_1_id_7=556
  7461. VIP_var_weak_ds_sharp_slope_0_id_7=0
  7462. VIP_var_weak_ds_sharp_slope_1_id_7=80
  7463. VIP_var_weak_dscale_sharp_oversht_ylmt_id_7=64
  7464. VIP_var_weak_dscale_sharp_undersht_ylmt_id_7=64
  7465. VIP_var_weak_sharp_fac_0_c_id_7=0
  7466. VIP_var_weak_sharp_fac_1_c_id_7=0
  7467. VIP_var_weak_sharp_fac_2_c_id_7=0
  7468. VIP_var_weak_ds_sharp_th_0_c_id_7=13
  7469. VIP_var_weak_ds_sharp_th_1_c_id_7=647
  7470. VIP_var_weak_ds_sharp_slope_0_c_id_7=0
  7471. VIP_var_weak_ds_sharp_slope_1_c_id_7=0
  7472. VIP_var_weak_dscale_sharp_oversht_clmt_id_7=0
  7473. VIP_var_weak_dscale_sharp_undersht_clmt_id_7=0
  7474. VIP_var_normal_sharp_fac_0_id_7=0
  7475. VIP_var_normal_sharp_fac_1_id_7=24
  7476. VIP_var_normal_sharp_fac_2_id_7=24
  7477. VIP_var_normal_ds_sharp_th_0_id_7=30
  7478. VIP_var_normal_ds_sharp_th_1_id_7=556
  7479. VIP_var_normal_ds_sharp_slope_0_id_7=175
  7480. VIP_var_normal_ds_sharp_slope_1_id_7=0
  7481. VIP_var_normal_dscale_sharp_oversht_ylmt_id_7=64
  7482. VIP_var_normal_dscale_sharp_undersht_ylmt_id_7=64
  7483. VIP_var_normal_sharp_fac_0_c_id_7=0
  7484. VIP_var_normal_sharp_fac_1_c_id_7=0
  7485. VIP_var_normal_sharp_fac_2_c_id_7=0
  7486. VIP_var_normal_ds_sharp_th_0_c_id_7=13
  7487. VIP_var_normal_ds_sharp_th_1_c_id_7=647
  7488. VIP_var_normal_ds_sharp_slope_0_c_id_7=0
  7489. VIP_var_normal_ds_sharp_slope_1_c_id_7=0
  7490. VIP_var_normal_dscale_sharp_oversht_clmt_id_7=0
  7491. VIP_var_normal_dscale_sharp_undersht_clmt_id_7=0
  7492. VIP_var_strong_sharp_fac_0_id_7=0
  7493. VIP_var_strong_sharp_fac_1_id_7=63
  7494. VIP_var_strong_sharp_fac_2_id_7=63
  7495. VIP_var_strong_ds_sharp_th_0_id_7=0
  7496. VIP_var_strong_ds_sharp_th_1_id_7=559
  7497. VIP_var_strong_ds_sharp_slope_0_id_7=597
  7498. VIP_var_strong_ds_sharp_slope_1_id_7=0
  7499. VIP_var_strong_dscale_sharp_oversht_ylmt_id_7=64
  7500. VIP_var_strong_dscale_sharp_undersht_ylmt_id_7=64
  7501. VIP_var_strong_sharp_fac_0_c_id_7=0
  7502. VIP_var_strong_sharp_fac_1_c_id_7=0
  7503. VIP_var_strong_sharp_fac_2_c_id_7=0
  7504. VIP_var_strong_ds_sharp_th_0_c_id_7=0
  7505. VIP_var_strong_ds_sharp_th_1_c_id_7=647
  7506. VIP_var_strong_ds_sharp_slope_0_c_id_7=0
  7507. VIP_var_strong_ds_sharp_slope_1_c_id_7=0
  7508. VIP_var_strong_dscale_sharp_oversht_clmt_id_7=0
  7509. VIP_var_strong_dscale_sharp_undersht_clmt_id_7=0
  7510. VIP_var_ds_sharp_angle_id_7=263168
  7511. VIP_var_ds_dark_sharp_th_0_1_id_7=0x19000c8
  7512. VIP_var_ds_dark_sharp_th_2_3_id_7=0x3200258
  7513. VIP_var_ds_dark_sharp_fac_0_1_id_7=0xfa0032
  7514. VIP_var_ds_dark_sharp_fac_2_3_id_7=0x3cf0307
  7515. VIP_var_ds_dark_sharp_slope_0_1_2_3_id_7=0x102a1004
  7516. VIP_var_ds_dark_sharp_slope_4_enable_id_7=0x4
  7517. VIP_TABLE_MAGIC_NUMBER_17=9520
  7518. VIP_var_HOR_Sharpness_src_0_3=0x0
  7519. VIP_var_HOR_Sharpness_src_4_7=0x0
  7520. VIP_var_HOR_Sharpness_src_8_11=0x0
  7521. VIP_var_HOR_Sharpness_src_12_15=0x0
  7522. VIP_var_HOR_Sharpness_src_16_19=0x0
  7523. VIP_var_weak_hor_sharp_fac_0_id_0=0
  7524. VIP_var_weak_hor_sharp_fac_1_id_0=0
  7525. VIP_var_weak_hor_sharp_fac_2_id_0=0
  7526. VIP_var_weak_hor_sharp_th_0_id_0=0
  7527. VIP_var_weak_hor_sharp_th_1_id_0=0
  7528. VIP_var_weak_hor_sharp_slope_0_id_0=47
  7529. VIP_var_weak_hor_sharp_slope_1_id_0=20
  7530. VIP_var_weak_hor_sharp_oversht_ylmt_id_0=0
  7531. VIP_var_weak_hor_sharp_undersht_ylmt_id_0=0
  7532. VIP_var_weak_hor_sharp_fac_0_c_id_0=0
  7533. VIP_var_weak_hor_sharp_fac_1_c_id_0=0
  7534. VIP_var_weak_hor_sharp_fac_2_c_id_0=0
  7535. VIP_var_weak_hor_sharp_th_0_c_id_0=40
  7536. VIP_var_weak_hor_sharp_th_1_c_id_0=600
  7537. VIP_var_weak_hor_sharp_slope_0_c_id_0=7
  7538. VIP_var_weak_hor_sharp_slope_1_c_id_0=20
  7539. VIP_var_weak_hor_sharp_oversht_clmt_id_0=0
  7540. VIP_var_weak_hor_sharp_undersht_clmt_id_0=0
  7541. VIP_var_normal_hor_sharp_fac_0_id_0=0
  7542. VIP_var_normal_hor_sharp_fac_1_id_0=0
  7543. VIP_var_normal_hor_sharp_fac_2_id_0=0
  7544. VIP_var_normal_hor_sharp_th_0_id_0=0
  7545. VIP_var_normal_hor_sharp_th_1_id_0=543
  7546. VIP_var_normal_hor_sharp_slope_0_id_0=0
  7547. VIP_var_normal_hor_sharp_slope_1_id_0=84
  7548. VIP_var_normal_hor_sharp_oversht_ylmt_id_0=0
  7549. VIP_var_normal_hor_sharp_undersht_ylmt_id_0=0
  7550. VIP_var_normal_hor_sharp_fac_0_c_id_0=0
  7551. VIP_var_normal_hor_sharp_fac_1_c_id_0=0
  7552. VIP_var_normal_hor_sharp_fac_2_c_id_0=0
  7553. VIP_var_normal_hor_sharp_th_0_c_id_0=67
  7554. VIP_var_normal_hor_sharp_th_1_c_id_0=88
  7555. VIP_var_normal_hor_sharp_slope_0_c_id_0=0
  7556. VIP_var_normal_hor_sharp_slope_1_c_id_0=20
  7557. VIP_var_normal_hor_sharp_oversht_clmt_id_0=0
  7558. VIP_var_normal_hor_sharp_undersht_clmt_id_0=0
  7559. VIP_var_strong_hor_sharp_fac_0_id_0=0
  7560. VIP_var_strong_hor_sharp_fac_1_id_0=0
  7561. VIP_var_strong_hor_sharp_fac_2_id_0=0
  7562. VIP_var_strong_hor_sharp_th_0_id_0=0
  7563. VIP_var_strong_hor_sharp_th_1_id_0=545
  7564. VIP_var_strong_hor_sharp_slope_0_id_0=0
  7565. VIP_var_strong_hor_sharp_slope_1_id_0=86
  7566. VIP_var_strong_hor_sharp_oversht_ylmt_id_0=0
  7567. VIP_var_strong_hor_sharp_undersht_ylmt_id_0=0
  7568. VIP_var_strong_hor_sharp_fac_0_c_id_0=0
  7569. VIP_var_strong_hor_sharp_fac_1_c_id_0=0
  7570. VIP_var_strong_hor_sharp_fac_2_c_id_0=0
  7571. VIP_var_strong_hor_sharp_th_0_c_id_0=54
  7572. VIP_var_strong_hor_sharp_th_1_c_id_0=88
  7573. VIP_var_strong_hor_sharp_slope_0_c_id_0=0
  7574. VIP_var_strong_hor_sharp_slope_1_c_id_0=20
  7575. VIP_var_strong_hor_sharp_oversht_clmt_id_0=0
  7576. VIP_var_strong_hor_sharp_undersht_clmt_id_0=0
  7577. VIP_var_hor_dark_sharp_th_0_1_id_0=0x19000c8
  7578. VIP_var_hor_dark_sharp_th_2_3_id_0=0x3200258
  7579. VIP_var_hor_dark_sharp_fac_0_1_id_0=0xfa0032
  7580. VIP_var_hor_dark_sharp_fac_2_3_id_0=0x3cf0307
  7581. VIP_var_hor_dark_sharp_slope_0_1_2_3_id_0=0x102a1004
  7582. VIP_var_hor_dark_sharp_slope_4_enable_id_0=0x4
  7583. VIP_var_weak_hor_sharp_fac_0_id_1=0
  7584. VIP_var_weak_hor_sharp_fac_1_id_1=0
  7585. VIP_var_weak_hor_sharp_fac_2_id_1=0
  7586. VIP_var_weak_hor_sharp_th_0_id_1=0
  7587. VIP_var_weak_hor_sharp_th_1_id_1=0
  7588. VIP_var_weak_hor_sharp_slope_0_id_1=47
  7589. VIP_var_weak_hor_sharp_slope_1_id_1=20
  7590. VIP_var_weak_hor_sharp_oversht_ylmt_id_1=0
  7591. VIP_var_weak_hor_sharp_undersht_ylmt_id_1=0
  7592. VIP_var_weak_hor_sharp_fac_0_c_id_1=0
  7593. VIP_var_weak_hor_sharp_fac_1_c_id_1=0
  7594. VIP_var_weak_hor_sharp_fac_2_c_id_1=0
  7595. VIP_var_weak_hor_sharp_th_0_c_id_1=40
  7596. VIP_var_weak_hor_sharp_th_1_c_id_1=600
  7597. VIP_var_weak_hor_sharp_slope_0_c_id_1=7
  7598. VIP_var_weak_hor_sharp_slope_1_c_id_1=20
  7599. VIP_var_weak_hor_sharp_oversht_clmt_id_1=0
  7600. VIP_var_weak_hor_sharp_undersht_clmt_id_1=0
  7601. VIP_var_normal_hor_sharp_fac_0_id_1=0
  7602. VIP_var_normal_hor_sharp_fac_1_id_1=18
  7603. VIP_var_normal_hor_sharp_fac_2_id_1=0
  7604. VIP_var_normal_hor_sharp_th_0_id_1=2
  7605. VIP_var_normal_hor_sharp_th_1_id_1=454
  7606. VIP_var_normal_hor_sharp_slope_0_id_1=135
  7607. VIP_var_normal_hor_sharp_slope_1_id_1=84
  7608. VIP_var_normal_hor_sharp_oversht_ylmt_id_1=0
  7609. VIP_var_normal_hor_sharp_undersht_ylmt_id_1=0
  7610. VIP_var_normal_hor_sharp_fac_0_c_id_1=0
  7611. VIP_var_normal_hor_sharp_fac_1_c_id_1=0
  7612. VIP_var_normal_hor_sharp_fac_2_c_id_1=0
  7613. VIP_var_normal_hor_sharp_th_0_c_id_1=67
  7614. VIP_var_normal_hor_sharp_th_1_c_id_1=88
  7615. VIP_var_normal_hor_sharp_slope_0_c_id_1=0
  7616. VIP_var_normal_hor_sharp_slope_1_c_id_1=20
  7617. VIP_var_normal_hor_sharp_oversht_clmt_id_1=0
  7618. VIP_var_normal_hor_sharp_undersht_clmt_id_1=0
  7619. VIP_var_strong_hor_sharp_fac_0_id_1=0
  7620. VIP_var_strong_hor_sharp_fac_1_id_1=25
  7621. VIP_var_strong_hor_sharp_fac_2_id_1=0
  7622. VIP_var_strong_hor_sharp_th_0_id_1=0
  7623. VIP_var_strong_hor_sharp_th_1_id_1=441
  7624. VIP_var_strong_hor_sharp_slope_0_id_1=196
  7625. VIP_var_strong_hor_sharp_slope_1_id_1=96
  7626. VIP_var_strong_hor_sharp_oversht_ylmt_id_1=0
  7627. VIP_var_strong_hor_sharp_undersht_ylmt_id_1=0
  7628. VIP_var_strong_hor_sharp_fac_0_c_id_1=0
  7629. VIP_var_strong_hor_sharp_fac_1_c_id_1=0
  7630. VIP_var_strong_hor_sharp_fac_2_c_id_1=0
  7631. VIP_var_strong_hor_sharp_th_0_c_id_1=54
  7632. VIP_var_strong_hor_sharp_th_1_c_id_1=88
  7633. VIP_var_strong_hor_sharp_slope_0_c_id_1=0
  7634. VIP_var_strong_hor_sharp_slope_1_c_id_1=20
  7635. VIP_var_strong_hor_sharp_oversht_clmt_id_1=0
  7636. VIP_var_strong_hor_sharp_undersht_clmt_id_1=0
  7637. VIP_var_hor_dark_sharp_th_0_1_id_1=0x19000c8
  7638. VIP_var_hor_dark_sharp_th_2_3_id_1=0x3200258
  7639. VIP_var_hor_dark_sharp_fac_0_1_id_1=0xfa0032
  7640. VIP_var_hor_dark_sharp_fac_2_3_id_1=0x3cf0307
  7641. VIP_var_hor_dark_sharp_slope_0_1_2_3_id_1=0x102a1004
  7642. VIP_var_hor_dark_sharp_slope_4_enable_id_1=0x4
  7643. VIP_var_weak_hor_sharp_fac_0_id_2=0
  7644. VIP_var_weak_hor_sharp_fac_1_id_2=0
  7645. VIP_var_weak_hor_sharp_fac_2_id_2=0
  7646. VIP_var_weak_hor_sharp_th_0_id_2=0
  7647. VIP_var_weak_hor_sharp_th_1_id_2=0
  7648. VIP_var_weak_hor_sharp_slope_0_id_2=47
  7649. VIP_var_weak_hor_sharp_slope_1_id_2=20
  7650. VIP_var_weak_hor_sharp_oversht_ylmt_id_2=0
  7651. VIP_var_weak_hor_sharp_undersht_ylmt_id_2=0
  7652. VIP_var_weak_hor_sharp_fac_0_c_id_2=0
  7653. VIP_var_weak_hor_sharp_fac_1_c_id_2=0
  7654. VIP_var_weak_hor_sharp_fac_2_c_id_2=0
  7655. VIP_var_weak_hor_sharp_th_0_c_id_2=40
  7656. VIP_var_weak_hor_sharp_th_1_c_id_2=600
  7657. VIP_var_weak_hor_sharp_slope_0_c_id_2=7
  7658. VIP_var_weak_hor_sharp_slope_1_c_id_2=20
  7659. VIP_var_weak_hor_sharp_oversht_clmt_id_2=0
  7660. VIP_var_weak_hor_sharp_undersht_clmt_id_2=0
  7661. VIP_var_normal_hor_sharp_fac_0_id_2=0
  7662. VIP_var_normal_hor_sharp_fac_1_id_2=0
  7663. VIP_var_normal_hor_sharp_fac_2_id_2=0
  7664. VIP_var_normal_hor_sharp_th_0_id_2=0
  7665. VIP_var_normal_hor_sharp_th_1_id_2=543
  7666. VIP_var_normal_hor_sharp_slope_0_id_2=0
  7667. VIP_var_normal_hor_sharp_slope_1_id_2=84
  7668. VIP_var_normal_hor_sharp_oversht_ylmt_id_2=0
  7669. VIP_var_normal_hor_sharp_undersht_ylmt_id_2=0
  7670. VIP_var_normal_hor_sharp_fac_0_c_id_2=0
  7671. VIP_var_normal_hor_sharp_fac_1_c_id_2=0
  7672. VIP_var_normal_hor_sharp_fac_2_c_id_2=0
  7673. VIP_var_normal_hor_sharp_th_0_c_id_2=67
  7674. VIP_var_normal_hor_sharp_th_1_c_id_2=88
  7675. VIP_var_normal_hor_sharp_slope_0_c_id_2=0
  7676. VIP_var_normal_hor_sharp_slope_1_c_id_2=20
  7677. VIP_var_normal_hor_sharp_oversht_clmt_id_2=0
  7678. VIP_var_normal_hor_sharp_undersht_clmt_id_2=0
  7679. VIP_var_strong_hor_sharp_fac_0_id_2=0
  7680. VIP_var_strong_hor_sharp_fac_1_id_2=0
  7681. VIP_var_strong_hor_sharp_fac_2_id_2=0
  7682. VIP_var_strong_hor_sharp_th_0_id_2=0
  7683. VIP_var_strong_hor_sharp_th_1_id_2=545
  7684. VIP_var_strong_hor_sharp_slope_0_id_2=0
  7685. VIP_var_strong_hor_sharp_slope_1_id_2=86
  7686. VIP_var_strong_hor_sharp_oversht_ylmt_id_2=0
  7687. VIP_var_strong_hor_sharp_undersht_ylmt_id_2=0
  7688. VIP_var_strong_hor_sharp_fac_0_c_id_2=0
  7689. VIP_var_strong_hor_sharp_fac_1_c_id_2=0
  7690. VIP_var_strong_hor_sharp_fac_2_c_id_2=0
  7691. VIP_var_strong_hor_sharp_th_0_c_id_2=54
  7692. VIP_var_strong_hor_sharp_th_1_c_id_2=88
  7693. VIP_var_strong_hor_sharp_slope_0_c_id_2=0
  7694. VIP_var_strong_hor_sharp_slope_1_c_id_2=20
  7695. VIP_var_strong_hor_sharp_oversht_clmt_id_2=0
  7696. VIP_var_strong_hor_sharp_undersht_clmt_id_2=0
  7697. VIP_var_hor_dark_sharp_th_0_1_id_2=0x19000c8
  7698. VIP_var_hor_dark_sharp_th_2_3_id_2=0x3200258
  7699. VIP_var_hor_dark_sharp_fac_0_1_id_2=0xfa0032
  7700. VIP_var_hor_dark_sharp_fac_2_3_id_2=0x3cf0307
  7701. VIP_var_hor_dark_sharp_slope_0_1_2_3_id_2=0x102a1004
  7702. VIP_var_hor_dark_sharp_slope_4_enable_id_2=0x4
  7703. VIP_var_weak_hor_sharp_fac_0_id_3=0
  7704. VIP_var_weak_hor_sharp_fac_1_id_3=0
  7705. VIP_var_weak_hor_sharp_fac_2_id_3=0
  7706. VIP_var_weak_hor_sharp_th_0_id_3=0
  7707. VIP_var_weak_hor_sharp_th_1_id_3=0
  7708. VIP_var_weak_hor_sharp_slope_0_id_3=47
  7709. VIP_var_weak_hor_sharp_slope_1_id_3=20
  7710. VIP_var_weak_hor_sharp_oversht_ylmt_id_3=0
  7711. VIP_var_weak_hor_sharp_undersht_ylmt_id_3=0
  7712. VIP_var_weak_hor_sharp_fac_0_c_id_3=0
  7713. VIP_var_weak_hor_sharp_fac_1_c_id_3=0
  7714. VIP_var_weak_hor_sharp_fac_2_c_id_3=0
  7715. VIP_var_weak_hor_sharp_th_0_c_id_3=40
  7716. VIP_var_weak_hor_sharp_th_1_c_id_3=600
  7717. VIP_var_weak_hor_sharp_slope_0_c_id_3=7
  7718. VIP_var_weak_hor_sharp_slope_1_c_id_3=20
  7719. VIP_var_weak_hor_sharp_oversht_clmt_id_3=0
  7720. VIP_var_weak_hor_sharp_undersht_clmt_id_3=0
  7721. VIP_var_normal_hor_sharp_fac_0_id_3=0
  7722. VIP_var_normal_hor_sharp_fac_1_id_3=0
  7723. VIP_var_normal_hor_sharp_fac_2_id_3=0
  7724. VIP_var_normal_hor_sharp_th_0_id_3=0
  7725. VIP_var_normal_hor_sharp_th_1_id_3=543
  7726. VIP_var_normal_hor_sharp_slope_0_id_3=0
  7727. VIP_var_normal_hor_sharp_slope_1_id_3=84
  7728. VIP_var_normal_hor_sharp_oversht_ylmt_id_3=0
  7729. VIP_var_normal_hor_sharp_undersht_ylmt_id_3=0
  7730. VIP_var_normal_hor_sharp_fac_0_c_id_3=0
  7731. VIP_var_normal_hor_sharp_fac_1_c_id_3=0
  7732. VIP_var_normal_hor_sharp_fac_2_c_id_3=0
  7733. VIP_var_normal_hor_sharp_th_0_c_id_3=67
  7734. VIP_var_normal_hor_sharp_th_1_c_id_3=88
  7735. VIP_var_normal_hor_sharp_slope_0_c_id_3=0
  7736. VIP_var_normal_hor_sharp_slope_1_c_id_3=20
  7737. VIP_var_normal_hor_sharp_oversht_clmt_id_3=0
  7738. VIP_var_normal_hor_sharp_undersht_clmt_id_3=0
  7739. VIP_var_strong_hor_sharp_fac_0_id_3=0
  7740. VIP_var_strong_hor_sharp_fac_1_id_3=0
  7741. VIP_var_strong_hor_sharp_fac_2_id_3=0
  7742. VIP_var_strong_hor_sharp_th_0_id_3=0
  7743. VIP_var_strong_hor_sharp_th_1_id_3=545
  7744. VIP_var_strong_hor_sharp_slope_0_id_3=0
  7745. VIP_var_strong_hor_sharp_slope_1_id_3=86
  7746. VIP_var_strong_hor_sharp_oversht_ylmt_id_3=0
  7747. VIP_var_strong_hor_sharp_undersht_ylmt_id_3=0
  7748. VIP_var_strong_hor_sharp_fac_0_c_id_3=0
  7749. VIP_var_strong_hor_sharp_fac_1_c_id_3=0
  7750. VIP_var_strong_hor_sharp_fac_2_c_id_3=0
  7751. VIP_var_strong_hor_sharp_th_0_c_id_3=54
  7752. VIP_var_strong_hor_sharp_th_1_c_id_3=88
  7753. VIP_var_strong_hor_sharp_slope_0_c_id_3=0
  7754. VIP_var_strong_hor_sharp_slope_1_c_id_3=20
  7755. VIP_var_strong_hor_sharp_oversht_clmt_id_3=0
  7756. VIP_var_strong_hor_sharp_undersht_clmt_id_3=0
  7757. VIP_var_hor_dark_sharp_th_0_1_id_3=0x19000c8
  7758. VIP_var_hor_dark_sharp_th_2_3_id_3=0x3200258
  7759. VIP_var_hor_dark_sharp_fac_0_1_id_3=0xfa0032
  7760. VIP_var_hor_dark_sharp_fac_2_3_id_3=0x3cf0307
  7761. VIP_var_hor_dark_sharp_slope_0_1_2_3_id_3=0x102a1004
  7762. VIP_var_hor_dark_sharp_slope_4_enable_id_3=0x4
  7763. VIP_var_weak_hor_sharp_fac_0_id_4=0
  7764. VIP_var_weak_hor_sharp_fac_1_id_4=0
  7765. VIP_var_weak_hor_sharp_fac_2_id_4=0
  7766. VIP_var_weak_hor_sharp_th_0_id_4=0
  7767. VIP_var_weak_hor_sharp_th_1_id_4=0
  7768. VIP_var_weak_hor_sharp_slope_0_id_4=47
  7769. VIP_var_weak_hor_sharp_slope_1_id_4=20
  7770. VIP_var_weak_hor_sharp_oversht_ylmt_id_4=0
  7771. VIP_var_weak_hor_sharp_undersht_ylmt_id_4=0
  7772. VIP_var_weak_hor_sharp_fac_0_c_id_4=0
  7773. VIP_var_weak_hor_sharp_fac_1_c_id_4=0
  7774. VIP_var_weak_hor_sharp_fac_2_c_id_4=0
  7775. VIP_var_weak_hor_sharp_th_0_c_id_4=40
  7776. VIP_var_weak_hor_sharp_th_1_c_id_4=600
  7777. VIP_var_weak_hor_sharp_slope_0_c_id_4=7
  7778. VIP_var_weak_hor_sharp_slope_1_c_id_4=20
  7779. VIP_var_weak_hor_sharp_oversht_clmt_id_4=0
  7780. VIP_var_weak_hor_sharp_undersht_clmt_id_4=0
  7781. VIP_var_normal_hor_sharp_fac_0_id_4=0
  7782. VIP_var_normal_hor_sharp_fac_1_id_4=0
  7783. VIP_var_normal_hor_sharp_fac_2_id_4=0
  7784. VIP_var_normal_hor_sharp_th_0_id_4=0
  7785. VIP_var_normal_hor_sharp_th_1_id_4=543
  7786. VIP_var_normal_hor_sharp_slope_0_id_4=0
  7787. VIP_var_normal_hor_sharp_slope_1_id_4=84
  7788. VIP_var_normal_hor_sharp_oversht_ylmt_id_4=0
  7789. VIP_var_normal_hor_sharp_undersht_ylmt_id_4=0
  7790. VIP_var_normal_hor_sharp_fac_0_c_id_4=0
  7791. VIP_var_normal_hor_sharp_fac_1_c_id_4=0
  7792. VIP_var_normal_hor_sharp_fac_2_c_id_4=0
  7793. VIP_var_normal_hor_sharp_th_0_c_id_4=67
  7794. VIP_var_normal_hor_sharp_th_1_c_id_4=88
  7795. VIP_var_normal_hor_sharp_slope_0_c_id_4=0
  7796. VIP_var_normal_hor_sharp_slope_1_c_id_4=20
  7797. VIP_var_normal_hor_sharp_oversht_clmt_id_4=0
  7798. VIP_var_normal_hor_sharp_undersht_clmt_id_4=0
  7799. VIP_var_strong_hor_sharp_fac_0_id_4=0
  7800. VIP_var_strong_hor_sharp_fac_1_id_4=0
  7801. VIP_var_strong_hor_sharp_fac_2_id_4=0
  7802. VIP_var_strong_hor_sharp_th_0_id_4=0
  7803. VIP_var_strong_hor_sharp_th_1_id_4=545
  7804. VIP_var_strong_hor_sharp_slope_0_id_4=0
  7805. VIP_var_strong_hor_sharp_slope_1_id_4=86
  7806. VIP_var_strong_hor_sharp_oversht_ylmt_id_4=0
  7807. VIP_var_strong_hor_sharp_undersht_ylmt_id_4=0
  7808. VIP_var_strong_hor_sharp_fac_0_c_id_4=0
  7809. VIP_var_strong_hor_sharp_fac_1_c_id_4=0
  7810. VIP_var_strong_hor_sharp_fac_2_c_id_4=0
  7811. VIP_var_strong_hor_sharp_th_0_c_id_4=54
  7812. VIP_var_strong_hor_sharp_th_1_c_id_4=88
  7813. VIP_var_strong_hor_sharp_slope_0_c_id_4=0
  7814. VIP_var_strong_hor_sharp_slope_1_c_id_4=20
  7815. VIP_var_strong_hor_sharp_oversht_clmt_id_4=0
  7816. VIP_var_strong_hor_sharp_undersht_clmt_id_4=0
  7817. VIP_var_hor_dark_sharp_th_0_1_id_4=0x19000c8
  7818. VIP_var_hor_dark_sharp_th_2_3_id_4=0x3200258
  7819. VIP_var_hor_dark_sharp_fac_0_1_id_4=0xfa0032
  7820. VIP_var_hor_dark_sharp_fac_2_3_id_4=0x3cf0307
  7821. VIP_var_hor_dark_sharp_slope_0_1_2_3_id_4=0x102a1004
  7822. VIP_var_hor_dark_sharp_slope_4_enable_id_4=0x4
  7823. VIP_var_weak_hor_sharp_fac_0_id_5=0
  7824. VIP_var_weak_hor_sharp_fac_1_id_5=0
  7825. VIP_var_weak_hor_sharp_fac_2_id_5=0
  7826. VIP_var_weak_hor_sharp_th_0_id_5=0
  7827. VIP_var_weak_hor_sharp_th_1_id_5=0
  7828. VIP_var_weak_hor_sharp_slope_0_id_5=47
  7829. VIP_var_weak_hor_sharp_slope_1_id_5=20
  7830. VIP_var_weak_hor_sharp_oversht_ylmt_id_5=0
  7831. VIP_var_weak_hor_sharp_undersht_ylmt_id_5=0
  7832. VIP_var_weak_hor_sharp_fac_0_c_id_5=0
  7833. VIP_var_weak_hor_sharp_fac_1_c_id_5=0
  7834. VIP_var_weak_hor_sharp_fac_2_c_id_5=0
  7835. VIP_var_weak_hor_sharp_th_0_c_id_5=40
  7836. VIP_var_weak_hor_sharp_th_1_c_id_5=600
  7837. VIP_var_weak_hor_sharp_slope_0_c_id_5=7
  7838. VIP_var_weak_hor_sharp_slope_1_c_id_5=20
  7839. VIP_var_weak_hor_sharp_oversht_clmt_id_5=0
  7840. VIP_var_weak_hor_sharp_undersht_clmt_id_5=0
  7841. VIP_var_normal_hor_sharp_fac_0_id_5=0
  7842. VIP_var_normal_hor_sharp_fac_1_id_5=0
  7843. VIP_var_normal_hor_sharp_fac_2_id_5=0
  7844. VIP_var_normal_hor_sharp_th_0_id_5=0
  7845. VIP_var_normal_hor_sharp_th_1_id_5=543
  7846. VIP_var_normal_hor_sharp_slope_0_id_5=0
  7847. VIP_var_normal_hor_sharp_slope_1_id_5=84
  7848. VIP_var_normal_hor_sharp_oversht_ylmt_id_5=0
  7849. VIP_var_normal_hor_sharp_undersht_ylmt_id_5=0
  7850. VIP_var_normal_hor_sharp_fac_0_c_id_5=0
  7851. VIP_var_normal_hor_sharp_fac_1_c_id_5=0
  7852. VIP_var_normal_hor_sharp_fac_2_c_id_5=0
  7853. VIP_var_normal_hor_sharp_th_0_c_id_5=67
  7854. VIP_var_normal_hor_sharp_th_1_c_id_5=88
  7855. VIP_var_normal_hor_sharp_slope_0_c_id_5=0
  7856. VIP_var_normal_hor_sharp_slope_1_c_id_5=20
  7857. VIP_var_normal_hor_sharp_oversht_clmt_id_5=0
  7858. VIP_var_normal_hor_sharp_undersht_clmt_id_5=0
  7859. VIP_var_strong_hor_sharp_fac_0_id_5=0
  7860. VIP_var_strong_hor_sharp_fac_1_id_5=0
  7861. VIP_var_strong_hor_sharp_fac_2_id_5=0
  7862. VIP_var_strong_hor_sharp_th_0_id_5=0
  7863. VIP_var_strong_hor_sharp_th_1_id_5=545
  7864. VIP_var_strong_hor_sharp_slope_0_id_5=0
  7865. VIP_var_strong_hor_sharp_slope_1_id_5=86
  7866. VIP_var_strong_hor_sharp_oversht_ylmt_id_5=0
  7867. VIP_var_strong_hor_sharp_undersht_ylmt_id_5=0
  7868. VIP_var_strong_hor_sharp_fac_0_c_id_5=0
  7869. VIP_var_strong_hor_sharp_fac_1_c_id_5=0
  7870. VIP_var_strong_hor_sharp_fac_2_c_id_5=0
  7871. VIP_var_strong_hor_sharp_th_0_c_id_5=54
  7872. VIP_var_strong_hor_sharp_th_1_c_id_5=88
  7873. VIP_var_strong_hor_sharp_slope_0_c_id_5=0
  7874. VIP_var_strong_hor_sharp_slope_1_c_id_5=20
  7875. VIP_var_strong_hor_sharp_oversht_clmt_id_5=0
  7876. VIP_var_strong_hor_sharp_undersht_clmt_id_5=0
  7877. VIP_var_hor_dark_sharp_th_0_1_id_5=0x19000c8
  7878. VIP_var_hor_dark_sharp_th_2_3_id_5=0x3200258
  7879. VIP_var_hor_dark_sharp_fac_0_1_id_5=0xfa0032
  7880. VIP_var_hor_dark_sharp_fac_2_3_id_5=0x3cf0307
  7881. VIP_var_hor_dark_sharp_slope_0_1_2_3_id_5=0x102a1004
  7882. VIP_var_hor_dark_sharp_slope_4_enable_id_5=0x4
  7883. VIP_var_weak_hor_sharp_fac_0_id_6=0
  7884. VIP_var_weak_hor_sharp_fac_1_id_6=0
  7885. VIP_var_weak_hor_sharp_fac_2_id_6=0
  7886. VIP_var_weak_hor_sharp_th_0_id_6=0
  7887. VIP_var_weak_hor_sharp_th_1_id_6=0
  7888. VIP_var_weak_hor_sharp_slope_0_id_6=47
  7889. VIP_var_weak_hor_sharp_slope_1_id_6=20
  7890. VIP_var_weak_hor_sharp_oversht_ylmt_id_6=0
  7891. VIP_var_weak_hor_sharp_undersht_ylmt_id_6=0
  7892. VIP_var_weak_hor_sharp_fac_0_c_id_6=0
  7893. VIP_var_weak_hor_sharp_fac_1_c_id_6=0
  7894. VIP_var_weak_hor_sharp_fac_2_c_id_6=0
  7895. VIP_var_weak_hor_sharp_th_0_c_id_6=40
  7896. VIP_var_weak_hor_sharp_th_1_c_id_6=600
  7897. VIP_var_weak_hor_sharp_slope_0_c_id_6=7
  7898. VIP_var_weak_hor_sharp_slope_1_c_id_6=20
  7899. VIP_var_weak_hor_sharp_oversht_clmt_id_6=0
  7900. VIP_var_weak_hor_sharp_undersht_clmt_id_6=0
  7901. VIP_var_normal_hor_sharp_fac_0_id_6=0
  7902. VIP_var_normal_hor_sharp_fac_1_id_6=0
  7903. VIP_var_normal_hor_sharp_fac_2_id_6=0
  7904. VIP_var_normal_hor_sharp_th_0_id_6=0
  7905. VIP_var_normal_hor_sharp_th_1_id_6=543
  7906. VIP_var_normal_hor_sharp_slope_0_id_6=0
  7907. VIP_var_normal_hor_sharp_slope_1_id_6=84
  7908. VIP_var_normal_hor_sharp_oversht_ylmt_id_6=0
  7909. VIP_var_normal_hor_sharp_undersht_ylmt_id_6=0
  7910. VIP_var_normal_hor_sharp_fac_0_c_id_6=0
  7911. VIP_var_normal_hor_sharp_fac_1_c_id_6=0
  7912. VIP_var_normal_hor_sharp_fac_2_c_id_6=0
  7913. VIP_var_normal_hor_sharp_th_0_c_id_6=67
  7914. VIP_var_normal_hor_sharp_th_1_c_id_6=88
  7915. VIP_var_normal_hor_sharp_slope_0_c_id_6=0
  7916. VIP_var_normal_hor_sharp_slope_1_c_id_6=20
  7917. VIP_var_normal_hor_sharp_oversht_clmt_id_6=0
  7918. VIP_var_normal_hor_sharp_undersht_clmt_id_6=0
  7919. VIP_var_strong_hor_sharp_fac_0_id_6=0
  7920. VIP_var_strong_hor_sharp_fac_1_id_6=0
  7921. VIP_var_strong_hor_sharp_fac_2_id_6=0
  7922. VIP_var_strong_hor_sharp_th_0_id_6=0
  7923. VIP_var_strong_hor_sharp_th_1_id_6=545
  7924. VIP_var_strong_hor_sharp_slope_0_id_6=0
  7925. VIP_var_strong_hor_sharp_slope_1_id_6=86
  7926. VIP_var_strong_hor_sharp_oversht_ylmt_id_6=0
  7927. VIP_var_strong_hor_sharp_undersht_ylmt_id_6=0
  7928. VIP_var_strong_hor_sharp_fac_0_c_id_6=0
  7929. VIP_var_strong_hor_sharp_fac_1_c_id_6=0
  7930. VIP_var_strong_hor_sharp_fac_2_c_id_6=0
  7931. VIP_var_strong_hor_sharp_th_0_c_id_6=54
  7932. VIP_var_strong_hor_sharp_th_1_c_id_6=88
  7933. VIP_var_strong_hor_sharp_slope_0_c_id_6=0
  7934. VIP_var_strong_hor_sharp_slope_1_c_id_6=20
  7935. VIP_var_strong_hor_sharp_oversht_clmt_id_6=0
  7936. VIP_var_strong_hor_sharp_undersht_clmt_id_6=0
  7937. VIP_var_hor_dark_sharp_th_0_1_id_6=0x19000c8
  7938. VIP_var_hor_dark_sharp_th_2_3_id_6=0x3200258
  7939. VIP_var_hor_dark_sharp_fac_0_1_id_6=0xfa0032
  7940. VIP_var_hor_dark_sharp_fac_2_3_id_6=0x3cf0307
  7941. VIP_var_hor_dark_sharp_slope_0_1_2_3_id_6=0x102a1004
  7942. VIP_var_hor_dark_sharp_slope_4_enable_id_6=0x4
  7943. VIP_var_weak_hor_sharp_fac_0_id_7=0
  7944. VIP_var_weak_hor_sharp_fac_1_id_7=0
  7945. VIP_var_weak_hor_sharp_fac_2_id_7=0
  7946. VIP_var_weak_hor_sharp_th_0_id_7=0
  7947. VIP_var_weak_hor_sharp_th_1_id_7=0
  7948. VIP_var_weak_hor_sharp_slope_0_id_7=47
  7949. VIP_var_weak_hor_sharp_slope_1_id_7=20
  7950. VIP_var_weak_hor_sharp_oversht_ylmt_id_7=0
  7951. VIP_var_weak_hor_sharp_undersht_ylmt_id_7=0
  7952. VIP_var_weak_hor_sharp_fac_0_c_id_7=0
  7953. VIP_var_weak_hor_sharp_fac_1_c_id_7=0
  7954. VIP_var_weak_hor_sharp_fac_2_c_id_7=0
  7955. VIP_var_weak_hor_sharp_th_0_c_id_7=40
  7956. VIP_var_weak_hor_sharp_th_1_c_id_7=600
  7957. VIP_var_weak_hor_sharp_slope_0_c_id_7=7
  7958. VIP_var_weak_hor_sharp_slope_1_c_id_7=20
  7959. VIP_var_weak_hor_sharp_oversht_clmt_id_7=0
  7960. VIP_var_weak_hor_sharp_undersht_clmt_id_7=0
  7961. VIP_var_normal_hor_sharp_fac_0_id_7=0
  7962. VIP_var_normal_hor_sharp_fac_1_id_7=0
  7963. VIP_var_normal_hor_sharp_fac_2_id_7=0
  7964. VIP_var_normal_hor_sharp_th_0_id_7=0
  7965. VIP_var_normal_hor_sharp_th_1_id_7=543
  7966. VIP_var_normal_hor_sharp_slope_0_id_7=0
  7967. VIP_var_normal_hor_sharp_slope_1_id_7=84
  7968. VIP_var_normal_hor_sharp_oversht_ylmt_id_7=0
  7969. VIP_var_normal_hor_sharp_undersht_ylmt_id_7=0
  7970. VIP_var_normal_hor_sharp_fac_0_c_id_7=0
  7971. VIP_var_normal_hor_sharp_fac_1_c_id_7=0
  7972. VIP_var_normal_hor_sharp_fac_2_c_id_7=0
  7973. VIP_var_normal_hor_sharp_th_0_c_id_7=67
  7974. VIP_var_normal_hor_sharp_th_1_c_id_7=88
  7975. VIP_var_normal_hor_sharp_slope_0_c_id_7=0
  7976. VIP_var_normal_hor_sharp_slope_1_c_id_7=20
  7977. VIP_var_normal_hor_sharp_oversht_clmt_id_7=0
  7978. VIP_var_normal_hor_sharp_undersht_clmt_id_7=0
  7979. VIP_var_strong_hor_sharp_fac_0_id_7=0
  7980. VIP_var_strong_hor_sharp_fac_1_id_7=0
  7981. VIP_var_strong_hor_sharp_fac_2_id_7=0
  7982. VIP_var_strong_hor_sharp_th_0_id_7=0
  7983. VIP_var_strong_hor_sharp_th_1_id_7=545
  7984. VIP_var_strong_hor_sharp_slope_0_id_7=0
  7985. VIP_var_strong_hor_sharp_slope_1_id_7=86
  7986. VIP_var_strong_hor_sharp_oversht_ylmt_id_7=0
  7987. VIP_var_strong_hor_sharp_undersht_ylmt_id_7=0
  7988. VIP_var_strong_hor_sharp_fac_0_c_id_7=0
  7989. VIP_var_strong_hor_sharp_fac_1_c_id_7=0
  7990. VIP_var_strong_hor_sharp_fac_2_c_id_7=0
  7991. VIP_var_strong_hor_sharp_th_0_c_id_7=54
  7992. VIP_var_strong_hor_sharp_th_1_c_id_7=88
  7993. VIP_var_strong_hor_sharp_slope_0_c_id_7=0
  7994. VIP_var_strong_hor_sharp_slope_1_c_id_7=20
  7995. VIP_var_strong_hor_sharp_oversht_clmt_id_7=0
  7996. VIP_var_strong_hor_sharp_undersht_clmt_id_7=0
  7997. VIP_var_hor_dark_sharp_th_0_1_id_7=0x19000c8
  7998. VIP_var_hor_dark_sharp_th_2_3_id_7=0x3200258
  7999. VIP_var_hor_dark_sharp_fac_0_1_id_7=0xfa0032
  8000. VIP_var_hor_dark_sharp_fac_2_3_id_7=0x3cf0307
  8001. VIP_var_hor_dark_sharp_slope_0_1_2_3_id_7=0x102a1004
  8002. VIP_var_hor_dark_sharp_slope_4_enable_id_7=0x4
  8003. VIP_TABLE_MAGIC_NUMBER_18=9521
  8004. VIP_var_Peaking_src_0_3=0x6050101
  8005. VIP_var_Peaking_src_4_7=0x3030000
  8006. VIP_var_Peaking_src_8_11=0x4040303
  8007. VIP_var_Peaking_src_12_15=0x20200
  8008. VIP_var_Peaking_src_16_19=0x0
  8009. VIP_var_sd_dpy_filter_y_h1_id_0=0
  8010. VIP_var_sd_dpy_filter_y_h2_id_0=0
  8011. VIP_var_sd_dpy_filter_y_h3_id_0=0
  8012. VIP_var_sd_dpy_filter_y_h4_id_0=0
  8013. VIP_var_md_dpy_filter_y_h1_id_0=0
  8014. VIP_var_md_dpy_filter_y_h2_id_0=0
  8015. VIP_var_md_dpy_filter_y_h3_id_0=0
  8016. VIP_var_md_dpy_filter_y_h4_id_0=0
  8017. VIP_var_hd_dpy_filter_y_h1_id_0=0
  8018. VIP_var_hd_dpy_filter_y_h2_id_0=0
  8019. VIP_var_hd_dpy_filter_y_h3_id_0=0
  8020. VIP_var_hd_dpy_filter_y_h4_id_0=0
  8021. VIP_var_sd_dpy_filter_y_h1_id_1=-144
  8022. VIP_var_sd_dpy_filter_y_h2_id_1=112
  8023. VIP_var_sd_dpy_filter_y_h3_id_1=96
  8024. VIP_var_sd_dpy_filter_y_h4_id_1=0
  8025. VIP_var_md_dpy_filter_y_h1_id_1=0
  8026. VIP_var_md_dpy_filter_y_h2_id_1=0
  8027. VIP_var_md_dpy_filter_y_h3_id_1=0
  8028. VIP_var_md_dpy_filter_y_h4_id_1=0
  8029. VIP_var_hd_dpy_filter_y_h1_id_1=0
  8030. VIP_var_hd_dpy_filter_y_h2_id_1=0
  8031. VIP_var_hd_dpy_filter_y_h3_id_1=0
  8032. VIP_var_hd_dpy_filter_y_h4_id_1=0
  8033. VIP_var_sd_dpy_filter_y_h1_id_2=-144
  8034. VIP_var_sd_dpy_filter_y_h2_id_2=112
  8035. VIP_var_sd_dpy_filter_y_h3_id_2=96
  8036. VIP_var_sd_dpy_filter_y_h4_id_2=0
  8037. VIP_var_md_dpy_filter_y_h1_id_2=-144
  8038. VIP_var_md_dpy_filter_y_h2_id_2=112
  8039. VIP_var_md_dpy_filter_y_h3_id_2=96
  8040. VIP_var_md_dpy_filter_y_h4_id_2=0
  8041. VIP_var_hd_dpy_filter_y_h1_id_2=-32
  8042. VIP_var_hd_dpy_filter_y_h2_id_2=256
  8043. VIP_var_hd_dpy_filter_y_h3_id_2=-32
  8044. VIP_var_hd_dpy_filter_y_h4_id_2=-32
  8045. VIP_var_sd_dpy_filter_y_h1_id_3=-176
  8046. VIP_var_sd_dpy_filter_y_h2_id_3=32
  8047. VIP_var_sd_dpy_filter_y_h3_id_3=112
  8048. VIP_var_sd_dpy_filter_y_h4_id_3=64
  8049. VIP_var_md_dpy_filter_y_h1_id_3=-128
  8050. VIP_var_md_dpy_filter_y_h2_id_3=16
  8051. VIP_var_md_dpy_filter_y_h3_id_3=96
  8052. VIP_var_md_dpy_filter_y_h4_id_3=48
  8053. VIP_var_hd_dpy_filter_y_h1_id_3=-128
  8054. VIP_var_hd_dpy_filter_y_h2_id_3=16
  8055. VIP_var_hd_dpy_filter_y_h3_id_3=96
  8056. VIP_var_hd_dpy_filter_y_h4_id_3=48
  8057. VIP_var_sd_dpy_filter_y_h1_id_4=-96
  8058. VIP_var_sd_dpy_filter_y_h2_id_4=192
  8059. VIP_var_sd_dpy_filter_y_h3_id_4=32
  8060. VIP_var_sd_dpy_filter_y_h4_id_4=-32
  8061. VIP_var_md_dpy_filter_y_h1_id_4=-144
  8062. VIP_var_md_dpy_filter_y_h2_id_4=112
  8063. VIP_var_md_dpy_filter_y_h3_id_4=96
  8064. VIP_var_md_dpy_filter_y_h4_id_4=0
  8065. VIP_var_hd_dpy_filter_y_h1_id_4=128
  8066. VIP_var_hd_dpy_filter_y_h2_id_4=32
  8067. VIP_var_hd_dpy_filter_y_h3_id_4=0
  8068. VIP_var_hd_dpy_filter_y_h4_id_4=0
  8069. VIP_var_sd_dpy_filter_y_h1_id_5=-128
  8070. VIP_var_sd_dpy_filter_y_h2_id_5=16
  8071. VIP_var_sd_dpy_filter_y_h3_id_5=96
  8072. VIP_var_sd_dpy_filter_y_h4_id_5=48
  8073. VIP_var_md_dpy_filter_y_h1_id_5=0
  8074. VIP_var_md_dpy_filter_y_h2_id_5=0
  8075. VIP_var_md_dpy_filter_y_h3_id_5=0
  8076. VIP_var_md_dpy_filter_y_h4_id_5=0
  8077. VIP_var_hd_dpy_filter_y_h1_id_5=0
  8078. VIP_var_hd_dpy_filter_y_h2_id_5=0
  8079. VIP_var_hd_dpy_filter_y_h3_id_5=0
  8080. VIP_var_hd_dpy_filter_y_h4_id_5=0
  8081. VIP_var_sd_dpy_filter_y_h1_id_6=-144
  8082. VIP_var_sd_dpy_filter_y_h2_id_6=112
  8083. VIP_var_sd_dpy_filter_y_h3_id_6=96
  8084. VIP_var_sd_dpy_filter_y_h4_id_6=0
  8085. VIP_var_md_dpy_filter_y_h1_id_6=0
  8086. VIP_var_md_dpy_filter_y_h2_id_6=0
  8087. VIP_var_md_dpy_filter_y_h3_id_6=0
  8088. VIP_var_md_dpy_filter_y_h4_id_6=0
  8089. VIP_var_hd_dpy_filter_y_h1_id_6=0
  8090. VIP_var_hd_dpy_filter_y_h2_id_6=0
  8091. VIP_var_hd_dpy_filter_y_h3_id_6=0
  8092. VIP_var_hd_dpy_filter_y_h4_id_6=0
  8093. VIP_var_sd_dpy_filter_y_h1_id_7=0
  8094. VIP_var_sd_dpy_filter_y_h2_id_7=0
  8095. VIP_var_sd_dpy_filter_y_h3_id_7=0
  8096. VIP_var_sd_dpy_filter_y_h4_id_7=0
  8097. VIP_var_md_dpy_filter_y_h1_id_7=0
  8098. VIP_var_md_dpy_filter_y_h2_id_7=0
  8099. VIP_var_md_dpy_filter_y_h3_id_7=0
  8100. VIP_var_md_dpy_filter_y_h4_id_7=0
  8101. VIP_var_hd_dpy_filter_y_h1_id_7=0
  8102. VIP_var_hd_dpy_filter_y_h2_id_7=0
  8103. VIP_var_hd_dpy_filter_y_h3_id_7=0
  8104. VIP_var_hd_dpy_filter_y_h4_id_7=0
  8105. VIP_TABLE_MAGIC_NUMBER_19=9522
  8106. VIP_var_DRV_range_src_0_3=0x1010000
  8107. VIP_var_DRV_range_src_4_7=0x3020101
  8108. VIP_var_DRV_range_src_8_11=0x5040504
  8109. VIP_var_DRV_range_src_12_15=0x6050406
  8110. VIP_var_DRV_range_src_16_19=0x6
  8111. VIP_var_brightness_drv_min_idx_0=-64
  8112. VIP_var_brightness_drv_max_idx_0=64
  8113. VIP_var_brightness_drv_middle_idx_0=0
  8114. VIP_var_contrast_drv_min_idx_0=32
  8115. VIP_var_contrast_drv_max_idx_0=96
  8116. VIP_var_contrast_drv_middle_idx_0=64
  8117. VIP_var_colortemp_gain_drv_min_idx_0=0
  8118. VIP_var_colortemp_gain_drv_max_idx_0=127
  8119. VIP_var_colortemp_gain_drv_middle_idx_0=64
  8120. VIP_var_colortemp_offset_drv_min_idx_0=-128
  8121. VIP_var_colortemp_offset_drv_max_idx_0=127
  8122. VIP_var_colortemp_offset_drv_middle_idx_0=0
  8123. VIP_var_saturation_drv_min_idx_0=0
  8124. VIP_var_saturation_drv_max_idx_0=127
  8125. VIP_var_saturation_drv_middle_idx_0=64
  8126. VIP_var_hue_drv_min_idx_0=0
  8127. VIP_var_hue_drv_max_idx_0=100
  8128. VIP_var_hue_drv_middle_idx_0=50
  8129. VIP_var_brightness_drv_min_idx_1=-64
  8130. VIP_var_brightness_drv_max_idx_1=64
  8131. VIP_var_brightness_drv_middle_idx_1=0
  8132. VIP_var_contrast_drv_min_idx_1=32
  8133. VIP_var_contrast_drv_max_idx_1=96
  8134. VIP_var_contrast_drv_middle_idx_1=64
  8135. VIP_var_colortemp_gain_drv_min_idx_1=0
  8136. VIP_var_colortemp_gain_drv_max_idx_1=127
  8137. VIP_var_colortemp_gain_drv_middle_idx_1=64
  8138. VIP_var_colortemp_offset_drv_min_idx_1=-128
  8139. VIP_var_colortemp_offset_drv_max_idx_1=127
  8140. VIP_var_colortemp_offset_drv_middle_idx_1=0
  8141. VIP_var_saturation_drv_min_idx_1=0
  8142. VIP_var_saturation_drv_max_idx_1=127
  8143. VIP_var_saturation_drv_middle_idx_1=64
  8144. VIP_var_hue_drv_min_idx_1=0
  8145. VIP_var_hue_drv_max_idx_1=100
  8146. VIP_var_hue_drv_middle_idx_1=50
  8147. VIP_var_brightness_drv_min_idx_2=-64
  8148. VIP_var_brightness_drv_max_idx_2=64
  8149. VIP_var_brightness_drv_middle_idx_2=0
  8150. VIP_var_contrast_drv_min_idx_2=32
  8151. VIP_var_contrast_drv_max_idx_2=96
  8152. VIP_var_contrast_drv_middle_idx_2=64
  8153. VIP_var_colortemp_gain_drv_min_idx_2=0
  8154. VIP_var_colortemp_gain_drv_max_idx_2=127
  8155. VIP_var_colortemp_gain_drv_middle_idx_2=64
  8156. VIP_var_colortemp_offset_drv_min_idx_2=-128
  8157. VIP_var_colortemp_offset_drv_max_idx_2=127
  8158. VIP_var_colortemp_offset_drv_middle_idx_2=0
  8159. VIP_var_saturation_drv_min_idx_2=0
  8160. VIP_var_saturation_drv_max_idx_2=127
  8161. VIP_var_saturation_drv_middle_idx_2=64
  8162. VIP_var_hue_drv_min_idx_2=0
  8163. VIP_var_hue_drv_max_idx_2=100
  8164. VIP_var_hue_drv_middle_idx_2=50
  8165. VIP_var_brightness_drv_min_idx_3=-64
  8166. VIP_var_brightness_drv_max_idx_3=64
  8167. VIP_var_brightness_drv_middle_idx_3=0
  8168. VIP_var_contrast_drv_min_idx_3=32
  8169. VIP_var_contrast_drv_max_idx_3=96
  8170. VIP_var_contrast_drv_middle_idx_3=64
  8171. VIP_var_colortemp_gain_drv_min_idx_3=0
  8172. VIP_var_colortemp_gain_drv_max_idx_3=127
  8173. VIP_var_colortemp_gain_drv_middle_idx_3=64
  8174. VIP_var_colortemp_offset_drv_min_idx_3=-128
  8175. VIP_var_colortemp_offset_drv_max_idx_3=127
  8176. VIP_var_colortemp_offset_drv_middle_idx_3=0
  8177. VIP_var_saturation_drv_min_idx_3=0
  8178. VIP_var_saturation_drv_max_idx_3=127
  8179. VIP_var_saturation_drv_middle_idx_3=64
  8180. VIP_var_hue_drv_min_idx_3=0
  8181. VIP_var_hue_drv_max_idx_3=100
  8182. VIP_var_hue_drv_middle_idx_3=50
  8183. VIP_var_brightness_drv_min_idx_4=-64
  8184. VIP_var_brightness_drv_max_idx_4=64
  8185. VIP_var_brightness_drv_middle_idx_4=0
  8186. VIP_var_contrast_drv_min_idx_4=32
  8187. VIP_var_contrast_drv_max_idx_4=96
  8188. VIP_var_contrast_drv_middle_idx_4=64
  8189. VIP_var_colortemp_gain_drv_min_idx_4=0
  8190. VIP_var_colortemp_gain_drv_max_idx_4=127
  8191. VIP_var_colortemp_gain_drv_middle_idx_4=64
  8192. VIP_var_colortemp_offset_drv_min_idx_4=-128
  8193. VIP_var_colortemp_offset_drv_max_idx_4=127
  8194. VIP_var_colortemp_offset_drv_middle_idx_4=0
  8195. VIP_var_saturation_drv_min_idx_4=0
  8196. VIP_var_saturation_drv_max_idx_4=127
  8197. VIP_var_saturation_drv_middle_idx_4=64
  8198. VIP_var_hue_drv_min_idx_4=0
  8199. VIP_var_hue_drv_max_idx_4=100
  8200. VIP_var_hue_drv_middle_idx_4=50
  8201. VIP_var_brightness_drv_min_idx_5=-64
  8202. VIP_var_brightness_drv_max_idx_5=64
  8203. VIP_var_brightness_drv_middle_idx_5=0
  8204. VIP_var_contrast_drv_min_idx_5=32
  8205. VIP_var_contrast_drv_max_idx_5=96
  8206. VIP_var_contrast_drv_middle_idx_5=64
  8207. VIP_var_colortemp_gain_drv_min_idx_5=0
  8208. VIP_var_colortemp_gain_drv_max_idx_5=127
  8209. VIP_var_colortemp_gain_drv_middle_idx_5=64
  8210. VIP_var_colortemp_offset_drv_min_idx_5=-128
  8211. VIP_var_colortemp_offset_drv_max_idx_5=127
  8212. VIP_var_colortemp_offset_drv_middle_idx_5=0
  8213. VIP_var_saturation_drv_min_idx_5=0
  8214. VIP_var_saturation_drv_max_idx_5=127
  8215. VIP_var_saturation_drv_middle_idx_5=64
  8216. VIP_var_hue_drv_min_idx_5=0
  8217. VIP_var_hue_drv_max_idx_5=100
  8218. VIP_var_hue_drv_middle_idx_5=50
  8219. VIP_var_brightness_drv_min_idx_6=-64
  8220. VIP_var_brightness_drv_max_idx_6=64
  8221. VIP_var_brightness_drv_middle_idx_6=0
  8222. VIP_var_contrast_drv_min_idx_6=32
  8223. VIP_var_contrast_drv_max_idx_6=96
  8224. VIP_var_contrast_drv_middle_idx_6=64
  8225. VIP_var_colortemp_gain_drv_min_idx_6=0
  8226. VIP_var_colortemp_gain_drv_max_idx_6=127
  8227. VIP_var_colortemp_gain_drv_middle_idx_6=64
  8228. VIP_var_colortemp_offset_drv_min_idx_6=-128
  8229. VIP_var_colortemp_offset_drv_max_idx_6=127
  8230. VIP_var_colortemp_offset_drv_middle_idx_6=0
  8231. VIP_var_saturation_drv_min_idx_6=0
  8232. VIP_var_saturation_drv_max_idx_6=127
  8233. VIP_var_saturation_drv_middle_idx_6=64
  8234. VIP_var_hue_drv_min_idx_6=0
  8235. VIP_var_hue_drv_max_idx_6=100
  8236. VIP_var_hue_drv_middle_idx_6=50
  8237. VIP_var_brightness_drv_min_idx_7=-64
  8238. VIP_var_brightness_drv_max_idx_7=64
  8239. VIP_var_brightness_drv_middle_idx_7=0
  8240. VIP_var_contrast_drv_min_idx_7=32
  8241. VIP_var_contrast_drv_max_idx_7=96
  8242. VIP_var_contrast_drv_middle_idx_7=64
  8243. VIP_var_colortemp_gain_drv_min_idx_7=0
  8244. VIP_var_colortemp_gain_drv_max_idx_7=127
  8245. VIP_var_colortemp_gain_drv_middle_idx_7=64
  8246. VIP_var_colortemp_offset_drv_min_idx_7=-128
  8247. VIP_var_colortemp_offset_drv_max_idx_7=127
  8248. VIP_var_colortemp_offset_drv_middle_idx_7=0
  8249. VIP_var_saturation_drv_min_idx_7=0
  8250. VIP_var_saturation_drv_max_idx_7=127
  8251. VIP_var_saturation_drv_middle_idx_7=64
  8252. VIP_var_hue_drv_min_idx_7=0
  8253. VIP_var_hue_drv_max_idx_7=100
  8254. VIP_var_hue_drv_middle_idx_7=50
  8255. VIP_TABLE_MAGIC_NUMBER_20=9523
  8256. VIP_var_deinterlace_filter_src_0_3=0x1010000
  8257. VIP_var_deinterlace_filter_src_4_7=0x3020101
  8258. VIP_var_deinterlace_filter_src_8_11=0x5040504
  8259. VIP_var_deinterlace_filter_src_12_15=0x6050406
  8260. VIP_var_deinterlace_filter_src_16_19=0x0
  8261. VIP_var_sd_vdi_mad_hlp_en_idx_0=0
  8262. VIP_var_sd_slr_mix_ach_idx_0=2
  8263. VIP_var_sd_slr_mix_bch_idx_0=2
  8264. VIP_var_md_vdi_mad_hlp_en_idx_0=0
  8265. VIP_var_md_slr_mix_ach_idx_0=2
  8266. VIP_var_md_slr_mix_bch_idx_0=2
  8267. VIP_var_hd_vdi_mad_hlp_en_idx_0=0
  8268. VIP_var_hd_slr_mix_ach_idx_0=2
  8269. VIP_var_hd_slr_mix_bch_idx_0=2
  8270. VIP_var_sd_vdi_mad_hlp_en_idx_1=0
  8271. VIP_var_sd_slr_mix_ach_idx_1=2
  8272. VIP_var_sd_slr_mix_bch_idx_1=2
  8273. VIP_var_md_vdi_mad_hlp_en_idx_1=0
  8274. VIP_var_md_slr_mix_ach_idx_1=2
  8275. VIP_var_md_slr_mix_bch_idx_1=2
  8276. VIP_var_hd_vdi_mad_hlp_en_idx_1=0
  8277. VIP_var_hd_slr_mix_ach_idx_1=2
  8278. VIP_var_hd_slr_mix_bch_idx_1=2
  8279. VIP_var_sd_vdi_mad_hlp_en_idx_2=0
  8280. VIP_var_sd_slr_mix_ach_idx_2=2
  8281. VIP_var_sd_slr_mix_bch_idx_2=2
  8282. VIP_var_md_vdi_mad_hlp_en_idx_2=0
  8283. VIP_var_md_slr_mix_ach_idx_2=2
  8284. VIP_var_md_slr_mix_bch_idx_2=2
  8285. VIP_var_hd_vdi_mad_hlp_en_idx_2=0
  8286. VIP_var_hd_slr_mix_ach_idx_2=2
  8287. VIP_var_hd_slr_mix_bch_idx_2=2
  8288. VIP_var_sd_vdi_mad_hlp_en_idx_3=0
  8289. VIP_var_sd_slr_mix_ach_idx_3=2
  8290. VIP_var_sd_slr_mix_bch_idx_3=2
  8291. VIP_var_md_vdi_mad_hlp_en_idx_3=0
  8292. VIP_var_md_slr_mix_ach_idx_3=2
  8293. VIP_var_md_slr_mix_bch_idx_3=2
  8294. VIP_var_hd_vdi_mad_hlp_en_idx_3=0
  8295. VIP_var_hd_slr_mix_ach_idx_3=2
  8296. VIP_var_hd_slr_mix_bch_idx_3=2
  8297. VIP_var_sd_vdi_mad_hlp_en_idx_4=0
  8298. VIP_var_sd_slr_mix_ach_idx_4=2
  8299. VIP_var_sd_slr_mix_bch_idx_4=2
  8300. VIP_var_md_vdi_mad_hlp_en_idx_4=0
  8301. VIP_var_md_slr_mix_ach_idx_4=2
  8302. VIP_var_md_slr_mix_bch_idx_4=2
  8303. VIP_var_hd_vdi_mad_hlp_en_idx_4=0
  8304. VIP_var_hd_slr_mix_ach_idx_4=2
  8305. VIP_var_hd_slr_mix_bch_idx_4=2
  8306. VIP_var_sd_vdi_mad_hlp_en_idx_5=0
  8307. VIP_var_sd_slr_mix_ach_idx_5=2
  8308. VIP_var_sd_slr_mix_bch_idx_5=2
  8309. VIP_var_md_vdi_mad_hlp_en_idx_5=0
  8310. VIP_var_md_slr_mix_ach_idx_5=2
  8311. VIP_var_md_slr_mix_bch_idx_5=2
  8312. VIP_var_hd_vdi_mad_hlp_en_idx_5=0
  8313. VIP_var_hd_slr_mix_ach_idx_5=2
  8314. VIP_var_hd_slr_mix_bch_idx_5=2
  8315. VIP_var_sd_vdi_mad_hlp_en_idx_6=0
  8316. VIP_var_sd_slr_mix_ach_idx_6=2
  8317. VIP_var_sd_slr_mix_bch_idx_6=2
  8318. VIP_var_md_vdi_mad_hlp_en_idx_6=0
  8319. VIP_var_md_slr_mix_ach_idx_6=2
  8320. VIP_var_md_slr_mix_bch_idx_6=2
  8321. VIP_var_hd_vdi_mad_hlp_en_idx_6=0
  8322. VIP_var_hd_slr_mix_ach_idx_6=2
  8323. VIP_var_hd_slr_mix_bch_idx_6=2
  8324. VIP_var_sd_vdi_mad_hlp_en_idx_7=0
  8325. VIP_var_sd_slr_mix_ach_idx_7=2
  8326. VIP_var_sd_slr_mix_bch_idx_7=2
  8327. VIP_var_md_vdi_mad_hlp_en_idx_7=0
  8328. VIP_var_md_slr_mix_ach_idx_7=2
  8329. VIP_var_md_slr_mix_bch_idx_7=2
  8330. VIP_var_hd_vdi_mad_hlp_en_idx_7=0
  8331. VIP_var_hd_slr_mix_ach_idx_7=2
  8332. VIP_var_hd_slr_mix_bch_idx_7=2
  8333. VIP_TABLE_MAGIC_NUMBER_21=9524
  8334. VIP_var_color_matrix_src_0_3=0x0
  8335. VIP_var_color_matrix_src_4_7=0x0
  8336. VIP_var_color_matrix_src_8_11=0x0
  8337. VIP_var_color_matrix_src_12_15=0x0
  8338. VIP_var_color_matrix_src_16_19=0x0
  8339. VIP_var_601_src_dpy_matrix_p11_idx_0=1192
  8340. VIP_var_601_src_dpy_matrix_p12_idx_0=0
  8341. VIP_var_601_src_dpy_matrix_p13_idx_0=1634
  8342. VIP_var_601_src_dpy_matrix_p21_idx_0=1192
  8343. VIP_var_601_src_dpy_matrix_p22_idx_0=-401
  8344. VIP_var_601_src_dpy_matrix_p23_idx_0=-833
  8345. VIP_var_601_src_dpy_matrix_p31_idx_0=1192
  8346. VIP_var_601_src_dpy_matrix_p32_idx_0=2066
  8347. VIP_var_601_src_dpy_matrix_p33_idx_0=0
  8348. VIP_var_601_src_dpy_matrix_c1_idx_0=0
  8349. VIP_var_601_src_dpy_matrix_c2_idx_0=0
  8350. VIP_var_601_src_dpy_matrix_c3_idx_0=0
  8351. VIP_var_709_src_dpy_matrix_p11_idx_0=1192
  8352. VIP_var_709_src_dpy_matrix_p12_idx_0=0
  8353. VIP_var_709_src_dpy_matrix_p13_idx_0=1836
  8354. VIP_var_709_src_dpy_matrix_p21_idx_0=1192
  8355. VIP_var_709_src_dpy_matrix_p22_idx_0=-218
  8356. VIP_var_709_src_dpy_matrix_p23_idx_0=-546
  8357. VIP_var_709_src_dpy_matrix_p31_idx_0=1192
  8358. VIP_var_709_src_dpy_matrix_p32_idx_0=2163
  8359. VIP_var_709_src_dpy_matrix_p33_idx_0=0
  8360. VIP_var_709_src_dpy_matrix_c1_idx_0=0
  8361. VIP_var_709_src_dpy_matrix_c2_idx_0=0
  8362. VIP_var_709_src_dpy_matrix_c3_idx_0=0
  8363. VIP_var_601_src_dpy_matrix_p11_idx_1=1192
  8364. VIP_var_601_src_dpy_matrix_p12_idx_1=0
  8365. VIP_var_601_src_dpy_matrix_p13_idx_1=1634
  8366. VIP_var_601_src_dpy_matrix_p21_idx_1=1192
  8367. VIP_var_601_src_dpy_matrix_p22_idx_1=-401
  8368. VIP_var_601_src_dpy_matrix_p23_idx_1=-833
  8369. VIP_var_601_src_dpy_matrix_p31_idx_1=1192
  8370. VIP_var_601_src_dpy_matrix_p32_idx_1=2066
  8371. VIP_var_601_src_dpy_matrix_p33_idx_1=0
  8372. VIP_var_601_src_dpy_matrix_c1_idx_1=0
  8373. VIP_var_601_src_dpy_matrix_c2_idx_1=0
  8374. VIP_var_601_src_dpy_matrix_c3_idx_1=0
  8375. VIP_var_709_src_dpy_matrix_p11_idx_1=1192
  8376. VIP_var_709_src_dpy_matrix_p12_idx_1=0
  8377. VIP_var_709_src_dpy_matrix_p13_idx_1=1836
  8378. VIP_var_709_src_dpy_matrix_p21_idx_1=1192
  8379. VIP_var_709_src_dpy_matrix_p22_idx_1=-218
  8380. VIP_var_709_src_dpy_matrix_p23_idx_1=-546
  8381. VIP_var_709_src_dpy_matrix_p31_idx_1=1192
  8382. VIP_var_709_src_dpy_matrix_p32_idx_1=2163
  8383. VIP_var_709_src_dpy_matrix_p33_idx_1=0
  8384. VIP_var_709_src_dpy_matrix_c1_idx_1=0
  8385. VIP_var_709_src_dpy_matrix_c2_idx_1=0
  8386. VIP_var_709_src_dpy_matrix_c3_idx_1=0
  8387. VIP_var_601_src_dpy_matrix_p11_idx_2=1192
  8388. VIP_var_601_src_dpy_matrix_p12_idx_2=0
  8389. VIP_var_601_src_dpy_matrix_p13_idx_2=1634
  8390. VIP_var_601_src_dpy_matrix_p21_idx_2=1192
  8391. VIP_var_601_src_dpy_matrix_p22_idx_2=-401
  8392. VIP_var_601_src_dpy_matrix_p23_idx_2=-833
  8393. VIP_var_601_src_dpy_matrix_p31_idx_2=1192
  8394. VIP_var_601_src_dpy_matrix_p32_idx_2=2066
  8395. VIP_var_601_src_dpy_matrix_p33_idx_2=0
  8396. VIP_var_601_src_dpy_matrix_c1_idx_2=0
  8397. VIP_var_601_src_dpy_matrix_c2_idx_2=0
  8398. VIP_var_601_src_dpy_matrix_c3_idx_2=0
  8399. VIP_var_709_src_dpy_matrix_p11_idx_2=1192
  8400. VIP_var_709_src_dpy_matrix_p12_idx_2=0
  8401. VIP_var_709_src_dpy_matrix_p13_idx_2=1836
  8402. VIP_var_709_src_dpy_matrix_p21_idx_2=1192
  8403. VIP_var_709_src_dpy_matrix_p22_idx_2=-218
  8404. VIP_var_709_src_dpy_matrix_p23_idx_2=-546
  8405. VIP_var_709_src_dpy_matrix_p31_idx_2=1192
  8406. VIP_var_709_src_dpy_matrix_p32_idx_2=2163
  8407. VIP_var_709_src_dpy_matrix_p33_idx_2=0
  8408. VIP_var_709_src_dpy_matrix_c1_idx_2=0
  8409. VIP_var_709_src_dpy_matrix_c2_idx_2=0
  8410. VIP_var_709_src_dpy_matrix_c3_idx_2=0
  8411. VIP_var_601_src_dpy_matrix_p11_idx_3=1192
  8412. VIP_var_601_src_dpy_matrix_p12_idx_3=0
  8413. VIP_var_601_src_dpy_matrix_p13_idx_3=1634
  8414. VIP_var_601_src_dpy_matrix_p21_idx_3=1192
  8415. VIP_var_601_src_dpy_matrix_p22_idx_3=-401
  8416. VIP_var_601_src_dpy_matrix_p23_idx_3=-833
  8417. VIP_var_601_src_dpy_matrix_p31_idx_3=1192
  8418. VIP_var_601_src_dpy_matrix_p32_idx_3=2066
  8419. VIP_var_601_src_dpy_matrix_p33_idx_3=0
  8420. VIP_var_601_src_dpy_matrix_c1_idx_3=0
  8421. VIP_var_601_src_dpy_matrix_c2_idx_3=0
  8422. VIP_var_601_src_dpy_matrix_c3_idx_3=0
  8423. VIP_var_709_src_dpy_matrix_p11_idx_3=1192
  8424. VIP_var_709_src_dpy_matrix_p12_idx_3=0
  8425. VIP_var_709_src_dpy_matrix_p13_idx_3=1836
  8426. VIP_var_709_src_dpy_matrix_p21_idx_3=1192
  8427. VIP_var_709_src_dpy_matrix_p22_idx_3=-218
  8428. VIP_var_709_src_dpy_matrix_p23_idx_3=-546
  8429. VIP_var_709_src_dpy_matrix_p31_idx_3=1192
  8430. VIP_var_709_src_dpy_matrix_p32_idx_3=2163
  8431. VIP_var_709_src_dpy_matrix_p33_idx_3=0
  8432. VIP_var_709_src_dpy_matrix_c1_idx_3=0
  8433. VIP_var_709_src_dpy_matrix_c2_idx_3=0
  8434. VIP_var_709_src_dpy_matrix_c3_idx_3=0
  8435. VIP_var_601_src_dpy_matrix_p11_idx_4=1192
  8436. VIP_var_601_src_dpy_matrix_p12_idx_4=0
  8437. VIP_var_601_src_dpy_matrix_p13_idx_4=1634
  8438. VIP_var_601_src_dpy_matrix_p21_idx_4=1192
  8439. VIP_var_601_src_dpy_matrix_p22_idx_4=-401
  8440. VIP_var_601_src_dpy_matrix_p23_idx_4=-833
  8441. VIP_var_601_src_dpy_matrix_p31_idx_4=1192
  8442. VIP_var_601_src_dpy_matrix_p32_idx_4=2066
  8443. VIP_var_601_src_dpy_matrix_p33_idx_4=0
  8444. VIP_var_601_src_dpy_matrix_c1_idx_4=0
  8445. VIP_var_601_src_dpy_matrix_c2_idx_4=0
  8446. VIP_var_601_src_dpy_matrix_c3_idx_4=0
  8447. VIP_var_709_src_dpy_matrix_p11_idx_4=1192
  8448. VIP_var_709_src_dpy_matrix_p12_idx_4=0
  8449. VIP_var_709_src_dpy_matrix_p13_idx_4=1836
  8450. VIP_var_709_src_dpy_matrix_p21_idx_4=1192
  8451. VIP_var_709_src_dpy_matrix_p22_idx_4=-218
  8452. VIP_var_709_src_dpy_matrix_p23_idx_4=-546
  8453. VIP_var_709_src_dpy_matrix_p31_idx_4=1192
  8454. VIP_var_709_src_dpy_matrix_p32_idx_4=2163
  8455. VIP_var_709_src_dpy_matrix_p33_idx_4=0
  8456. VIP_var_709_src_dpy_matrix_c1_idx_4=0
  8457. VIP_var_709_src_dpy_matrix_c2_idx_4=0
  8458. VIP_var_709_src_dpy_matrix_c3_idx_4=0
  8459. VIP_var_601_src_dpy_matrix_p11_idx_5=1192
  8460. VIP_var_601_src_dpy_matrix_p12_idx_5=0
  8461. VIP_var_601_src_dpy_matrix_p13_idx_5=1634
  8462. VIP_var_601_src_dpy_matrix_p21_idx_5=1192
  8463. VIP_var_601_src_dpy_matrix_p22_idx_5=-401
  8464. VIP_var_601_src_dpy_matrix_p23_idx_5=-833
  8465. VIP_var_601_src_dpy_matrix_p31_idx_5=1192
  8466. VIP_var_601_src_dpy_matrix_p32_idx_5=2066
  8467. VIP_var_601_src_dpy_matrix_p33_idx_5=0
  8468. VIP_var_601_src_dpy_matrix_c1_idx_5=0
  8469. VIP_var_601_src_dpy_matrix_c2_idx_5=0
  8470. VIP_var_601_src_dpy_matrix_c3_idx_5=0
  8471. VIP_var_709_src_dpy_matrix_p11_idx_5=1192
  8472. VIP_var_709_src_dpy_matrix_p12_idx_5=0
  8473. VIP_var_709_src_dpy_matrix_p13_idx_5=1836
  8474. VIP_var_709_src_dpy_matrix_p21_idx_5=1192
  8475. VIP_var_709_src_dpy_matrix_p22_idx_5=-218
  8476. VIP_var_709_src_dpy_matrix_p23_idx_5=-546
  8477. VIP_var_709_src_dpy_matrix_p31_idx_5=1192
  8478. VIP_var_709_src_dpy_matrix_p32_idx_5=2163
  8479. VIP_var_709_src_dpy_matrix_p33_idx_5=0
  8480. VIP_var_709_src_dpy_matrix_c1_idx_5=0
  8481. VIP_var_709_src_dpy_matrix_c2_idx_5=0
  8482. VIP_var_709_src_dpy_matrix_c3_idx_5=0
  8483. VIP_var_601_src_dpy_matrix_p11_idx_6=1192
  8484. VIP_var_601_src_dpy_matrix_p12_idx_6=0
  8485. VIP_var_601_src_dpy_matrix_p13_idx_6=1634
  8486. VIP_var_601_src_dpy_matrix_p21_idx_6=1192
  8487. VIP_var_601_src_dpy_matrix_p22_idx_6=-401
  8488. VIP_var_601_src_dpy_matrix_p23_idx_6=-833
  8489. VIP_var_601_src_dpy_matrix_p31_idx_6=1192
  8490. VIP_var_601_src_dpy_matrix_p32_idx_6=2066
  8491. VIP_var_601_src_dpy_matrix_p33_idx_6=0
  8492. VIP_var_601_src_dpy_matrix_c1_idx_6=0
  8493. VIP_var_601_src_dpy_matrix_c2_idx_6=0
  8494. VIP_var_601_src_dpy_matrix_c3_idx_6=0
  8495. VIP_var_709_src_dpy_matrix_p11_idx_6=1192
  8496. VIP_var_709_src_dpy_matrix_p12_idx_6=0
  8497. VIP_var_709_src_dpy_matrix_p13_idx_6=1836
  8498. VIP_var_709_src_dpy_matrix_p21_idx_6=1192
  8499. VIP_var_709_src_dpy_matrix_p22_idx_6=-218
  8500. VIP_var_709_src_dpy_matrix_p23_idx_6=-546
  8501. VIP_var_709_src_dpy_matrix_p31_idx_6=1192
  8502. VIP_var_709_src_dpy_matrix_p32_idx_6=2163
  8503. VIP_var_709_src_dpy_matrix_p33_idx_6=0
  8504. VIP_var_709_src_dpy_matrix_c1_idx_6=0
  8505. VIP_var_709_src_dpy_matrix_c2_idx_6=0
  8506. VIP_var_709_src_dpy_matrix_c3_idx_6=0
  8507. VIP_var_601_src_dpy_matrix_p11_idx_7=1192
  8508. VIP_var_601_src_dpy_matrix_p12_idx_7=0
  8509. VIP_var_601_src_dpy_matrix_p13_idx_7=1634
  8510. VIP_var_601_src_dpy_matrix_p21_idx_7=1192
  8511. VIP_var_601_src_dpy_matrix_p22_idx_7=-401
  8512. VIP_var_601_src_dpy_matrix_p23_idx_7=-833
  8513. VIP_var_601_src_dpy_matrix_p31_idx_7=1192
  8514. VIP_var_601_src_dpy_matrix_p32_idx_7=2066
  8515. VIP_var_601_src_dpy_matrix_p33_idx_7=0
  8516. VIP_var_601_src_dpy_matrix_c1_idx_7=0
  8517. VIP_var_601_src_dpy_matrix_c2_idx_7=0
  8518. VIP_var_601_src_dpy_matrix_c3_idx_7=0
  8519. VIP_var_709_src_dpy_matrix_p11_idx_7=1192
  8520. VIP_var_709_src_dpy_matrix_p12_idx_7=0
  8521. VIP_var_709_src_dpy_matrix_p13_idx_7=1836
  8522. VIP_var_709_src_dpy_matrix_p21_idx_7=1192
  8523. VIP_var_709_src_dpy_matrix_p22_idx_7=-218
  8524. VIP_var_709_src_dpy_matrix_p23_idx_7=-546
  8525. VIP_var_709_src_dpy_matrix_p31_idx_7=1192
  8526. VIP_var_709_src_dpy_matrix_p32_idx_7=2163
  8527. VIP_var_709_src_dpy_matrix_p33_idx_7=0
  8528. VIP_var_709_src_dpy_matrix_c1_idx_7=0
  8529. VIP_var_709_src_dpy_matrix_c2_idx_7=0
  8530. VIP_var_709_src_dpy_matrix_c3_idx_7=0
  8531. VIP_TABLE_MAGIC_NUMBER_22=9525
  8532. VIP_var_Sharpness_src_0_3=0x5030101
  8533. VIP_var_Sharpness_src_4_7=0x4030000
  8534. VIP_var_Sharpness_src_8_11=0x4060403
  8535. VIP_var_Sharpness_src_12_15=0x20200
  8536. VIP_var_Sharpness_src_16_19=0x0
  8537. VIP_var_strong_dpy_filter_hl_trans1_id_0=3
  8538. VIP_var_strong_dpy_filter_hl_trans2_id_0=-64
  8539. VIP_var_strong_dpy_filter_hl_smooth_id_0=0
  8540. VIP_var_strong_dpy_filter_hl_sharp_id_0=0
  8541. VIP_var_strong_dpy_filter_hl_limit_id_0=0
  8542. VIP_var_strong_dpy_filter_hl_pivotx_id_0=254
  8543. VIP_var_strong_dpy_filter_hl_pivoty_id_0=189
  8544. VIP_var_strong_dpy_filter_hc_trans1_id_0=15
  8545. VIP_var_strong_dpy_filter_hc_trans2_id_0=-1
  8546. VIP_var_strong_dpy_filter_hc_smooth_id_0=0
  8547. VIP_var_strong_dpy_filter_hc_sharp_id_0=0
  8548. VIP_var_strong_dpy_filter_hc_limit_id_0=0
  8549. VIP_var_strong_dpy_filter_hc_pivotx_id_0=65
  8550. VIP_var_strong_dpy_filter_hc_pivoty_id_0=237
  8551. VIP_var_normal_dpy_filter_hl_trans1_id_0=4
  8552. VIP_var_normal_dpy_filter_hl_trans2_id_0=-64
  8553. VIP_var_normal_dpy_filter_hl_smooth_id_0=0
  8554. VIP_var_normal_dpy_filter_hl_sharp_id_0=0
  8555. VIP_var_normal_dpy_filter_hl_limit_id_0=63
  8556. VIP_var_normal_dpy_filter_hl_pivotx_id_0=74
  8557. VIP_var_normal_dpy_filter_hl_pivoty_id_0=74
  8558. VIP_var_normal_dpy_filter_hc_trans1_id_0=3
  8559. VIP_var_normal_dpy_filter_hc_trans2_id_0=0
  8560. VIP_var_normal_dpy_filter_hc_smooth_id_0=0
  8561. VIP_var_normal_dpy_filter_hc_sharp_id_0=0
  8562. VIP_var_normal_dpy_filter_hc_limit_id_0=0
  8563. VIP_var_normal_dpy_filter_hc_pivotx_id_0=88
  8564. VIP_var_normal_dpy_filter_hc_pivoty_id_0=66
  8565. VIP_var_weak_dpy_filter_hl_trans1_id_0=6
  8566. VIP_var_weak_dpy_filter_hl_trans2_id_0=0
  8567. VIP_var_weak_dpy_filter_hl_smooth_id_0=0
  8568. VIP_var_weak_dpy_filter_hl_sharp_id_0=0
  8569. VIP_var_weak_dpy_filter_hl_limit_id_0=0
  8570. VIP_var_weak_dpy_filter_hl_pivotx_id_0=58
  8571. VIP_var_weak_dpy_filter_hl_pivoty_id_0=37
  8572. VIP_var_weak_dpy_filter_hc_trans1_id_0=3
  8573. VIP_var_weak_dpy_filter_hc_trans2_id_0=0
  8574. VIP_var_weak_dpy_filter_hc_smooth_id_0=0
  8575. VIP_var_weak_dpy_filter_hc_sharp_id_0=0
  8576. VIP_var_weak_dpy_filter_hc_limit_id_0=4
  8577. VIP_var_weak_dpy_filter_hc_pivotx_id_0=65
  8578. VIP_var_weak_dpy_filter_hc_pivoty_id_0=15
  8579. VIP_var_strong_dpy_filter_hl_trans1_id_1=2
  8580. VIP_var_strong_dpy_filter_hl_trans2_id_1=-1
  8581. VIP_var_strong_dpy_filter_hl_smooth_id_1=62
  8582. VIP_var_strong_dpy_filter_hl_sharp_id_1=95
  8583. VIP_var_strong_dpy_filter_hl_limit_id_1=0
  8584. VIP_var_strong_dpy_filter_hl_pivotx_id_1=160
  8585. VIP_var_strong_dpy_filter_hl_pivoty_id_1=141
  8586. VIP_var_strong_dpy_filter_hc_trans1_id_1=15
  8587. VIP_var_strong_dpy_filter_hc_trans2_id_1=-1
  8588. VIP_var_strong_dpy_filter_hc_smooth_id_1=0
  8589. VIP_var_strong_dpy_filter_hc_sharp_id_1=0
  8590. VIP_var_strong_dpy_filter_hc_limit_id_1=0
  8591. VIP_var_strong_dpy_filter_hc_pivotx_id_1=65
  8592. VIP_var_strong_dpy_filter_hc_pivoty_id_1=237
  8593. VIP_var_normal_dpy_filter_hl_trans1_id_1=4
  8594. VIP_var_normal_dpy_filter_hl_trans2_id_1=-3
  8595. VIP_var_normal_dpy_filter_hl_smooth_id_1=1
  8596. VIP_var_normal_dpy_filter_hl_sharp_id_1=52
  8597. VIP_var_normal_dpy_filter_hl_limit_id_1=62
  8598. VIP_var_normal_dpy_filter_hl_pivotx_id_1=218
  8599. VIP_var_normal_dpy_filter_hl_pivoty_id_1=196
  8600. VIP_var_normal_dpy_filter_hc_trans1_id_1=3
  8601. VIP_var_normal_dpy_filter_hc_trans2_id_1=0
  8602. VIP_var_normal_dpy_filter_hc_smooth_id_1=0
  8603. VIP_var_normal_dpy_filter_hc_sharp_id_1=0
  8604. VIP_var_normal_dpy_filter_hc_limit_id_1=0
  8605. VIP_var_normal_dpy_filter_hc_pivotx_id_1=88
  8606. VIP_var_normal_dpy_filter_hc_pivoty_id_1=66
  8607. VIP_var_weak_dpy_filter_hl_trans1_id_1=6
  8608. VIP_var_weak_dpy_filter_hl_trans2_id_1=0
  8609. VIP_var_weak_dpy_filter_hl_smooth_id_1=0
  8610. VIP_var_weak_dpy_filter_hl_sharp_id_1=0
  8611. VIP_var_weak_dpy_filter_hl_limit_id_1=0
  8612. VIP_var_weak_dpy_filter_hl_pivotx_id_1=58
  8613. VIP_var_weak_dpy_filter_hl_pivoty_id_1=37
  8614. VIP_var_weak_dpy_filter_hc_trans1_id_1=3
  8615. VIP_var_weak_dpy_filter_hc_trans2_id_1=0
  8616. VIP_var_weak_dpy_filter_hc_smooth_id_1=0
  8617. VIP_var_weak_dpy_filter_hc_sharp_id_1=0
  8618. VIP_var_weak_dpy_filter_hc_limit_id_1=4
  8619. VIP_var_weak_dpy_filter_hc_pivotx_id_1=65
  8620. VIP_var_weak_dpy_filter_hc_pivoty_id_1=15
  8621. VIP_var_strong_dpy_filter_hl_trans1_id_2=8
  8622. VIP_var_strong_dpy_filter_hl_trans2_id_2=0
  8623. VIP_var_strong_dpy_filter_hl_smooth_id_2=0
  8624. VIP_var_strong_dpy_filter_hl_sharp_id_2=54
  8625. VIP_var_strong_dpy_filter_hl_limit_id_2=0
  8626. VIP_var_strong_dpy_filter_hl_pivotx_id_2=28
  8627. VIP_var_strong_dpy_filter_hl_pivoty_id_2=54
  8628. VIP_var_strong_dpy_filter_hc_trans1_id_2=15
  8629. VIP_var_strong_dpy_filter_hc_trans2_id_2=-1
  8630. VIP_var_strong_dpy_filter_hc_smooth_id_2=0
  8631. VIP_var_strong_dpy_filter_hc_sharp_id_2=0
  8632. VIP_var_strong_dpy_filter_hc_limit_id_2=0
  8633. VIP_var_strong_dpy_filter_hc_pivotx_id_2=65
  8634. VIP_var_strong_dpy_filter_hc_pivoty_id_2=237
  8635. VIP_var_normal_dpy_filter_hl_trans1_id_2=4
  8636. VIP_var_normal_dpy_filter_hl_trans2_id_2=0
  8637. VIP_var_normal_dpy_filter_hl_smooth_id_2=0
  8638. VIP_var_normal_dpy_filter_hl_sharp_id_2=29
  8639. VIP_var_normal_dpy_filter_hl_limit_id_2=62
  8640. VIP_var_normal_dpy_filter_hl_pivotx_id_2=29
  8641. VIP_var_normal_dpy_filter_hl_pivoty_id_2=29
  8642. VIP_var_normal_dpy_filter_hc_trans1_id_2=3
  8643. VIP_var_normal_dpy_filter_hc_trans2_id_2=0
  8644. VIP_var_normal_dpy_filter_hc_smooth_id_2=0
  8645. VIP_var_normal_dpy_filter_hc_sharp_id_2=0
  8646. VIP_var_normal_dpy_filter_hc_limit_id_2=0
  8647. VIP_var_normal_dpy_filter_hc_pivotx_id_2=88
  8648. VIP_var_normal_dpy_filter_hc_pivoty_id_2=66
  8649. VIP_var_weak_dpy_filter_hl_trans1_id_2=6
  8650. VIP_var_weak_dpy_filter_hl_trans2_id_2=0
  8651. VIP_var_weak_dpy_filter_hl_smooth_id_2=0
  8652. VIP_var_weak_dpy_filter_hl_sharp_id_2=0
  8653. VIP_var_weak_dpy_filter_hl_limit_id_2=0
  8654. VIP_var_weak_dpy_filter_hl_pivotx_id_2=58
  8655. VIP_var_weak_dpy_filter_hl_pivoty_id_2=37
  8656. VIP_var_weak_dpy_filter_hc_trans1_id_2=3
  8657. VIP_var_weak_dpy_filter_hc_trans2_id_2=0
  8658. VIP_var_weak_dpy_filter_hc_smooth_id_2=0
  8659. VIP_var_weak_dpy_filter_hc_sharp_id_2=0
  8660. VIP_var_weak_dpy_filter_hc_limit_id_2=4
  8661. VIP_var_weak_dpy_filter_hc_pivotx_id_2=65
  8662. VIP_var_weak_dpy_filter_hc_pivoty_id_2=15
  8663. VIP_var_strong_dpy_filter_hl_trans1_id_3=4
  8664. VIP_var_strong_dpy_filter_hl_trans2_id_3=-3
  8665. VIP_var_strong_dpy_filter_hl_smooth_id_3=11
  8666. VIP_var_strong_dpy_filter_hl_sharp_id_3=80
  8667. VIP_var_strong_dpy_filter_hl_limit_id_3=0
  8668. VIP_var_strong_dpy_filter_hl_pivotx_id_3=177
  8669. VIP_var_strong_dpy_filter_hl_pivoty_id_3=147
  8670. VIP_var_strong_dpy_filter_hc_trans1_id_3=15
  8671. VIP_var_strong_dpy_filter_hc_trans2_id_3=-1
  8672. VIP_var_strong_dpy_filter_hc_smooth_id_3=0
  8673. VIP_var_strong_dpy_filter_hc_sharp_id_3=0
  8674. VIP_var_strong_dpy_filter_hc_limit_id_3=0
  8675. VIP_var_strong_dpy_filter_hc_pivotx_id_3=65
  8676. VIP_var_strong_dpy_filter_hc_pivoty_id_3=237
  8677. VIP_var_normal_dpy_filter_hl_trans1_id_3=5
  8678. VIP_var_normal_dpy_filter_hl_trans2_id_3=-3
  8679. VIP_var_normal_dpy_filter_hl_smooth_id_3=16
  8680. VIP_var_normal_dpy_filter_hl_sharp_id_3=64
  8681. VIP_var_normal_dpy_filter_hl_limit_id_3=0
  8682. VIP_var_normal_dpy_filter_hl_pivotx_id_3=139
  8683. VIP_var_normal_dpy_filter_hl_pivoty_id_3=163
  8684. VIP_var_normal_dpy_filter_hc_trans1_id_3=3
  8685. VIP_var_normal_dpy_filter_hc_trans2_id_3=0
  8686. VIP_var_normal_dpy_filter_hc_smooth_id_3=0
  8687. VIP_var_normal_dpy_filter_hc_sharp_id_3=0
  8688. VIP_var_normal_dpy_filter_hc_limit_id_3=0
  8689. VIP_var_normal_dpy_filter_hc_pivotx_id_3=88
  8690. VIP_var_normal_dpy_filter_hc_pivoty_id_3=66
  8691. VIP_var_weak_dpy_filter_hl_trans1_id_3=6
  8692. VIP_var_weak_dpy_filter_hl_trans2_id_3=0
  8693. VIP_var_weak_dpy_filter_hl_smooth_id_3=0
  8694. VIP_var_weak_dpy_filter_hl_sharp_id_3=0
  8695. VIP_var_weak_dpy_filter_hl_limit_id_3=0
  8696. VIP_var_weak_dpy_filter_hl_pivotx_id_3=58
  8697. VIP_var_weak_dpy_filter_hl_pivoty_id_3=37
  8698. VIP_var_weak_dpy_filter_hc_trans1_id_3=3
  8699. VIP_var_weak_dpy_filter_hc_trans2_id_3=0
  8700. VIP_var_weak_dpy_filter_hc_smooth_id_3=0
  8701. VIP_var_weak_dpy_filter_hc_sharp_id_3=0
  8702. VIP_var_weak_dpy_filter_hc_limit_id_3=4
  8703. VIP_var_weak_dpy_filter_hc_pivotx_id_3=65
  8704. VIP_var_weak_dpy_filter_hc_pivoty_id_3=15
  8705. VIP_var_strong_dpy_filter_hl_trans1_id_4=7
  8706. VIP_var_strong_dpy_filter_hl_trans2_id_4=-4
  8707. VIP_var_strong_dpy_filter_hl_smooth_id_4=0
  8708. VIP_var_strong_dpy_filter_hl_sharp_id_4=40
  8709. VIP_var_strong_dpy_filter_hl_limit_id_4=0
  8710. VIP_var_strong_dpy_filter_hl_pivotx_id_4=168
  8711. VIP_var_strong_dpy_filter_hl_pivoty_id_4=188
  8712. VIP_var_strong_dpy_filter_hc_trans1_id_4=15
  8713. VIP_var_strong_dpy_filter_hc_trans2_id_4=-1
  8714. VIP_var_strong_dpy_filter_hc_smooth_id_4=0
  8715. VIP_var_strong_dpy_filter_hc_sharp_id_4=0
  8716. VIP_var_strong_dpy_filter_hc_limit_id_4=0
  8717. VIP_var_strong_dpy_filter_hc_pivotx_id_4=65
  8718. VIP_var_strong_dpy_filter_hc_pivoty_id_4=237
  8719. VIP_var_normal_dpy_filter_hl_trans1_id_4=4
  8720. VIP_var_normal_dpy_filter_hl_trans2_id_4=-2
  8721. VIP_var_normal_dpy_filter_hl_smooth_id_4=0
  8722. VIP_var_normal_dpy_filter_hl_sharp_id_4=24
  8723. VIP_var_normal_dpy_filter_hl_limit_id_4=0
  8724. VIP_var_normal_dpy_filter_hl_pivotx_id_4=171
  8725. VIP_var_normal_dpy_filter_hl_pivoty_id_4=90
  8726. VIP_var_normal_dpy_filter_hc_trans1_id_4=3
  8727. VIP_var_normal_dpy_filter_hc_trans2_id_4=0
  8728. VIP_var_normal_dpy_filter_hc_smooth_id_4=0
  8729. VIP_var_normal_dpy_filter_hc_sharp_id_4=0
  8730. VIP_var_normal_dpy_filter_hc_limit_id_4=0
  8731. VIP_var_normal_dpy_filter_hc_pivotx_id_4=88
  8732. VIP_var_normal_dpy_filter_hc_pivoty_id_4=66
  8733. VIP_var_weak_dpy_filter_hl_trans1_id_4=6
  8734. VIP_var_weak_dpy_filter_hl_trans2_id_4=0
  8735. VIP_var_weak_dpy_filter_hl_smooth_id_4=0
  8736. VIP_var_weak_dpy_filter_hl_sharp_id_4=0
  8737. VIP_var_weak_dpy_filter_hl_limit_id_4=0
  8738. VIP_var_weak_dpy_filter_hl_pivotx_id_4=58
  8739. VIP_var_weak_dpy_filter_hl_pivoty_id_4=37
  8740. VIP_var_weak_dpy_filter_hc_trans1_id_4=3
  8741. VIP_var_weak_dpy_filter_hc_trans2_id_4=0
  8742. VIP_var_weak_dpy_filter_hc_smooth_id_4=0
  8743. VIP_var_weak_dpy_filter_hc_sharp_id_4=0
  8744. VIP_var_weak_dpy_filter_hc_limit_id_4=4
  8745. VIP_var_weak_dpy_filter_hc_pivotx_id_4=65
  8746. VIP_var_weak_dpy_filter_hc_pivoty_id_4=15
  8747. VIP_var_strong_dpy_filter_hl_trans1_id_5=5
  8748. VIP_var_strong_dpy_filter_hl_trans2_id_5=-1
  8749. VIP_var_strong_dpy_filter_hl_smooth_id_5=32
  8750. VIP_var_strong_dpy_filter_hl_sharp_id_5=92
  8751. VIP_var_strong_dpy_filter_hl_limit_id_5=0
  8752. VIP_var_strong_dpy_filter_hl_pivotx_id_5=104
  8753. VIP_var_strong_dpy_filter_hl_pivoty_id_5=155
  8754. VIP_var_strong_dpy_filter_hc_trans1_id_5=15
  8755. VIP_var_strong_dpy_filter_hc_trans2_id_5=-1
  8756. VIP_var_strong_dpy_filter_hc_smooth_id_5=0
  8757. VIP_var_strong_dpy_filter_hc_sharp_id_5=0
  8758. VIP_var_strong_dpy_filter_hc_limit_id_5=0
  8759. VIP_var_strong_dpy_filter_hc_pivotx_id_5=65
  8760. VIP_var_strong_dpy_filter_hc_pivoty_id_5=237
  8761. VIP_var_normal_dpy_filter_hl_trans1_id_5=4
  8762. VIP_var_normal_dpy_filter_hl_trans2_id_5=-3
  8763. VIP_var_normal_dpy_filter_hl_smooth_id_5=18
  8764. VIP_var_normal_dpy_filter_hl_sharp_id_5=64
  8765. VIP_var_normal_dpy_filter_hl_limit_id_5=0
  8766. VIP_var_normal_dpy_filter_hl_pivotx_id_5=189
  8767. VIP_var_normal_dpy_filter_hl_pivoty_id_5=176
  8768. VIP_var_normal_dpy_filter_hc_trans1_id_5=3
  8769. VIP_var_normal_dpy_filter_hc_trans2_id_5=0
  8770. VIP_var_normal_dpy_filter_hc_smooth_id_5=0
  8771. VIP_var_normal_dpy_filter_hc_sharp_id_5=0
  8772. VIP_var_normal_dpy_filter_hc_limit_id_5=0
  8773. VIP_var_normal_dpy_filter_hc_pivotx_id_5=88
  8774. VIP_var_normal_dpy_filter_hc_pivoty_id_5=66
  8775. VIP_var_weak_dpy_filter_hl_trans1_id_5=6
  8776. VIP_var_weak_dpy_filter_hl_trans2_id_5=0
  8777. VIP_var_weak_dpy_filter_hl_smooth_id_5=0
  8778. VIP_var_weak_dpy_filter_hl_sharp_id_5=0
  8779. VIP_var_weak_dpy_filter_hl_limit_id_5=0
  8780. VIP_var_weak_dpy_filter_hl_pivotx_id_5=58
  8781. VIP_var_weak_dpy_filter_hl_pivoty_id_5=37
  8782. VIP_var_weak_dpy_filter_hc_trans1_id_5=3
  8783. VIP_var_weak_dpy_filter_hc_trans2_id_5=0
  8784. VIP_var_weak_dpy_filter_hc_smooth_id_5=0
  8785. VIP_var_weak_dpy_filter_hc_sharp_id_5=0
  8786. VIP_var_weak_dpy_filter_hc_limit_id_5=4
  8787. VIP_var_weak_dpy_filter_hc_pivotx_id_5=65
  8788. VIP_var_weak_dpy_filter_hc_pivoty_id_5=15
  8789. VIP_var_strong_dpy_filter_hl_trans1_id_6=3
  8790. VIP_var_strong_dpy_filter_hl_trans2_id_6=-3
  8791. VIP_var_strong_dpy_filter_hl_smooth_id_6=17
  8792. VIP_var_strong_dpy_filter_hl_sharp_id_6=78
  8793. VIP_var_strong_dpy_filter_hl_limit_id_6=0
  8794. VIP_var_strong_dpy_filter_hl_pivotx_id_6=221
  8795. VIP_var_strong_dpy_filter_hl_pivoty_id_6=167
  8796. VIP_var_strong_dpy_filter_hc_trans1_id_6=15
  8797. VIP_var_strong_dpy_filter_hc_trans2_id_6=-1
  8798. VIP_var_strong_dpy_filter_hc_smooth_id_6=0
  8799. VIP_var_strong_dpy_filter_hc_sharp_id_6=0
  8800. VIP_var_strong_dpy_filter_hc_limit_id_6=0
  8801. VIP_var_strong_dpy_filter_hc_pivotx_id_6=65
  8802. VIP_var_strong_dpy_filter_hc_pivoty_id_6=237
  8803. VIP_var_normal_dpy_filter_hl_trans1_id_6=5
  8804. VIP_var_normal_dpy_filter_hl_trans2_id_6=-3
  8805. VIP_var_normal_dpy_filter_hl_smooth_id_6=14
  8806. VIP_var_normal_dpy_filter_hl_sharp_id_6=60
  8807. VIP_var_normal_dpy_filter_hl_limit_id_6=0
  8808. VIP_var_normal_dpy_filter_hl_pivotx_id_6=133
  8809. VIP_var_normal_dpy_filter_hl_pivoty_id_6=168
  8810. VIP_var_normal_dpy_filter_hc_trans1_id_6=3
  8811. VIP_var_normal_dpy_filter_hc_trans2_id_6=0
  8812. VIP_var_normal_dpy_filter_hc_smooth_id_6=0
  8813. VIP_var_normal_dpy_filter_hc_sharp_id_6=0
  8814. VIP_var_normal_dpy_filter_hc_limit_id_6=0
  8815. VIP_var_normal_dpy_filter_hc_pivotx_id_6=88
  8816. VIP_var_normal_dpy_filter_hc_pivoty_id_6=66
  8817. VIP_var_weak_dpy_filter_hl_trans1_id_6=6
  8818. VIP_var_weak_dpy_filter_hl_trans2_id_6=0
  8819. VIP_var_weak_dpy_filter_hl_smooth_id_6=0
  8820. VIP_var_weak_dpy_filter_hl_sharp_id_6=0
  8821. VIP_var_weak_dpy_filter_hl_limit_id_6=0
  8822. VIP_var_weak_dpy_filter_hl_pivotx_id_6=58
  8823. VIP_var_weak_dpy_filter_hl_pivoty_id_6=37
  8824. VIP_var_weak_dpy_filter_hc_trans1_id_6=3
  8825. VIP_var_weak_dpy_filter_hc_trans2_id_6=0
  8826. VIP_var_weak_dpy_filter_hc_smooth_id_6=0
  8827. VIP_var_weak_dpy_filter_hc_sharp_id_6=0
  8828. VIP_var_weak_dpy_filter_hc_limit_id_6=4
  8829. VIP_var_weak_dpy_filter_hc_pivotx_id_6=65
  8830. VIP_var_weak_dpy_filter_hc_pivoty_id_6=15
  8831. VIP_var_strong_dpy_filter_hl_trans1_id_7=7
  8832. VIP_var_strong_dpy_filter_hl_trans2_id_7=-4
  8833. VIP_var_strong_dpy_filter_hl_smooth_id_7=32
  8834. VIP_var_strong_dpy_filter_hl_sharp_id_7=114
  8835. VIP_var_strong_dpy_filter_hl_limit_id_7=0
  8836. VIP_var_strong_dpy_filter_hl_pivotx_id_7=119
  8837. VIP_var_strong_dpy_filter_hl_pivoty_id_7=247
  8838. VIP_var_strong_dpy_filter_hc_trans1_id_7=15
  8839. VIP_var_strong_dpy_filter_hc_trans2_id_7=-1
  8840. VIP_var_strong_dpy_filter_hc_smooth_id_7=0
  8841. VIP_var_strong_dpy_filter_hc_sharp_id_7=0
  8842. VIP_var_strong_dpy_filter_hc_limit_id_7=0
  8843. VIP_var_strong_dpy_filter_hc_pivotx_id_7=65
  8844. VIP_var_strong_dpy_filter_hc_pivoty_id_7=237
  8845. VIP_var_normal_dpy_filter_hl_trans1_id_7=4
  8846. VIP_var_normal_dpy_filter_hl_trans2_id_7=-2
  8847. VIP_var_normal_dpy_filter_hl_smooth_id_7=10
  8848. VIP_var_normal_dpy_filter_hl_sharp_id_7=65
  8849. VIP_var_normal_dpy_filter_hl_limit_id_7=0
  8850. VIP_var_normal_dpy_filter_hl_pivotx_id_7=97
  8851. VIP_var_normal_dpy_filter_hl_pivoty_id_7=121
  8852. VIP_var_normal_dpy_filter_hc_trans1_id_7=3
  8853. VIP_var_normal_dpy_filter_hc_trans2_id_7=0
  8854. VIP_var_normal_dpy_filter_hc_smooth_id_7=0
  8855. VIP_var_normal_dpy_filter_hc_sharp_id_7=0
  8856. VIP_var_normal_dpy_filter_hc_limit_id_7=0
  8857. VIP_var_normal_dpy_filter_hc_pivotx_id_7=88
  8858. VIP_var_normal_dpy_filter_hc_pivoty_id_7=66
  8859. VIP_var_weak_dpy_filter_hl_trans1_id_7=6
  8860. VIP_var_weak_dpy_filter_hl_trans2_id_7=0
  8861. VIP_var_weak_dpy_filter_hl_smooth_id_7=0
  8862. VIP_var_weak_dpy_filter_hl_sharp_id_7=0
  8863. VIP_var_weak_dpy_filter_hl_limit_id_7=0
  8864. VIP_var_weak_dpy_filter_hl_pivotx_id_7=58
  8865. VIP_var_weak_dpy_filter_hl_pivoty_id_7=37
  8866. VIP_var_weak_dpy_filter_hc_trans1_id_7=3
  8867. VIP_var_weak_dpy_filter_hc_trans2_id_7=0
  8868. VIP_var_weak_dpy_filter_hc_smooth_id_7=0
  8869. VIP_var_weak_dpy_filter_hc_sharp_id_7=0
  8870. VIP_var_weak_dpy_filter_hc_limit_id_7=4
  8871. VIP_var_weak_dpy_filter_hc_pivotx_id_7=65
  8872. VIP_var_weak_dpy_filter_hc_pivoty_id_7=15
  8873. VIP_TABLE_MAGIC_NUMBER_23=9526
  8874. VIP_var_slr_low_angle_or_mbw_dis_en=56
  8875. VIP_TABLE_MAGIC_NUMBER_24=9527
  8876. VIP_var_slr_snr_bypass_idx_0=1
  8877. VIP_var_slr_snr_L_sel_idx_0_weak=0
  8878. VIP_var_slr_snr_L_sel_idx_0_medium=0
  8879. VIP_var_slr_snr_L_sel_idx_0_strong=0
  8880. VIP_var_slr_snr_L_chk_middle_pxl_idx_0_weak=1
  8881. VIP_var_slr_snr_L_chk_middle_pxl_idx_0_medium=1
  8882. VIP_var_slr_snr_L_chk_middle_pxl_idx_0_strong=1
  8883. VIP_var_slr_snr_L_th_idx_0_weak=9
  8884. VIP_var_slr_snr_L_th_idx_0_medium=11
  8885. VIP_var_slr_snr_L_th_idx_0_strong=19
  8886. VIP_var_slr_snr_L_gain0_idx_0_weak=56
  8887. VIP_var_slr_snr_L_gain0_idx_0_medium=74
  8888. VIP_var_slr_snr_L_gain0_idx_0_strong=103
  8889. VIP_var_slr_snr_L_gain1_idx_0_weak=1
  8890. VIP_var_slr_snr_L_gain1_idx_0_medium=1
  8891. VIP_var_slr_snr_L_gain1_idx_0_strong=1
  8892. VIP_var_slr_snr_L_slope_idx_0_weak=41
  8893. VIP_var_slr_snr_L_slope_idx_0_medium=52
  8894. VIP_var_slr_snr_L_slope_idx_0_strong=64
  8895. VIP_var_slr_snr_C_sel_idx_0_weak=0
  8896. VIP_var_slr_snr_C_sel_idx_0_medium=0
  8897. VIP_var_slr_snr_C_sel_idx_0_strong=0
  8898. VIP_var_slr_snr_C_chk_middle_pxl_idx_0_weak=1
  8899. VIP_var_slr_snr_C_chk_middle_pxl_idx_0_medium=1
  8900. VIP_var_slr_snr_C_chk_middle_pxl_idx_0_strong=1
  8901. VIP_var_slr_snr_C_th_idx_0_weak=4
  8902. VIP_var_slr_snr_C_th_idx_0_medium=11
  8903. VIP_var_slr_snr_C_th_idx_0_strong=17
  8904. VIP_var_slr_snr_C_gain0_idx_0_weak=56
  8905. VIP_var_slr_snr_C_gain0_idx_0_medium=84
  8906. VIP_var_slr_snr_C_gain0_idx_0_strong=109
  8907. VIP_var_slr_snr_C_gain1_idx_0_weak=1
  8908. VIP_var_slr_snr_C_gain1_idx_0_medium=1
  8909. VIP_var_slr_snr_C_gain1_idx_0_strong=1
  8910. VIP_var_slr_snr_C_slope_idx_0_weak=44
  8911. VIP_var_slr_snr_C_slope_idx_0_medium=64
  8912. VIP_var_slr_snr_C_slope_idx_0_strong=65
  8913. VIP_var_slr_snr_bypass_idx_1=0
  8914. VIP_var_slr_snr_L_sel_idx_1_weak=0
  8915. VIP_var_slr_snr_L_sel_idx_1_medium=0
  8916. VIP_var_slr_snr_L_sel_idx_1_strong=0
  8917. VIP_var_slr_snr_L_chk_middle_pxl_idx_1_weak=1
  8918. VIP_var_slr_snr_L_chk_middle_pxl_idx_1_medium=1
  8919. VIP_var_slr_snr_L_chk_middle_pxl_idx_1_strong=1
  8920. VIP_var_slr_snr_L_th_idx_1_weak=13
  8921. VIP_var_slr_snr_L_th_idx_1_medium=11
  8922. VIP_var_slr_snr_L_th_idx_1_strong=21
  8923. VIP_var_slr_snr_L_gain0_idx_1_weak=36
  8924. VIP_var_slr_snr_L_gain0_idx_1_medium=75
  8925. VIP_var_slr_snr_L_gain0_idx_1_strong=135
  8926. VIP_var_slr_snr_L_gain1_idx_1_weak=4
  8927. VIP_var_slr_snr_L_gain1_idx_1_medium=1
  8928. VIP_var_slr_snr_L_gain1_idx_1_strong=1
  8929. VIP_var_slr_snr_L_slope_idx_1_weak=58
  8930. VIP_var_slr_snr_L_slope_idx_1_medium=83
  8931. VIP_var_slr_snr_L_slope_idx_1_strong=72
  8932. VIP_var_slr_snr_C_sel_idx_1_weak=0
  8933. VIP_var_slr_snr_C_sel_idx_1_medium=0
  8934. VIP_var_slr_snr_C_sel_idx_1_strong=0
  8935. VIP_var_slr_snr_C_chk_middle_pxl_idx_1_weak=1
  8936. VIP_var_slr_snr_C_chk_middle_pxl_idx_1_medium=1
  8937. VIP_var_slr_snr_C_chk_middle_pxl_idx_1_strong=1
  8938. VIP_var_slr_snr_C_th_idx_1_weak=13
  8939. VIP_var_slr_snr_C_th_idx_1_medium=17
  8940. VIP_var_slr_snr_C_th_idx_1_strong=20
  8941. VIP_var_slr_snr_C_gain0_idx_1_weak=58
  8942. VIP_var_slr_snr_C_gain0_idx_1_medium=112
  8943. VIP_var_slr_snr_C_gain0_idx_1_strong=138
  8944. VIP_var_slr_snr_C_gain1_idx_1_weak=1
  8945. VIP_var_slr_snr_C_gain1_idx_1_medium=1
  8946. VIP_var_slr_snr_C_gain1_idx_1_strong=1
  8947. VIP_var_slr_snr_C_slope_idx_1_weak=39
  8948. VIP_var_slr_snr_C_slope_idx_1_medium=67
  8949. VIP_var_slr_snr_C_slope_idx_1_strong=74
  8950. VIP_var_slr_snr_bypass_idx_2=0
  8951. VIP_var_slr_snr_L_sel_idx_2_weak=0
  8952. VIP_var_slr_snr_L_sel_idx_2_medium=0
  8953. VIP_var_slr_snr_L_sel_idx_2_strong=0
  8954. VIP_var_slr_snr_L_chk_middle_pxl_idx_2_weak=1
  8955. VIP_var_slr_snr_L_chk_middle_pxl_idx_2_medium=1
  8956. VIP_var_slr_snr_L_chk_middle_pxl_idx_2_strong=1
  8957. VIP_var_slr_snr_L_th_idx_2_weak=1
  8958. VIP_var_slr_snr_L_th_idx_2_medium=3
  8959. VIP_var_slr_snr_L_th_idx_2_strong=19
  8960. VIP_var_slr_snr_L_gain0_idx_2_weak=45
  8961. VIP_var_slr_snr_L_gain0_idx_2_medium=42
  8962. VIP_var_slr_snr_L_gain0_idx_2_strong=103
  8963. VIP_var_slr_snr_L_gain1_idx_2_weak=1
  8964. VIP_var_slr_snr_L_gain1_idx_2_medium=1
  8965. VIP_var_slr_snr_L_gain1_idx_2_strong=1
  8966. VIP_var_slr_snr_L_slope_idx_2_weak=352
  8967. VIP_var_slr_snr_L_slope_idx_2_medium=124
  8968. VIP_var_slr_snr_L_slope_idx_2_strong=64
  8969. VIP_var_slr_snr_C_sel_idx_2_weak=0
  8970. VIP_var_slr_snr_C_sel_idx_2_medium=0
  8971. VIP_var_slr_snr_C_sel_idx_2_strong=0
  8972. VIP_var_slr_snr_C_chk_middle_pxl_idx_2_weak=1
  8973. VIP_var_slr_snr_C_chk_middle_pxl_idx_2_medium=1
  8974. VIP_var_slr_snr_C_chk_middle_pxl_idx_2_strong=1
  8975. VIP_var_slr_snr_C_th_idx_2_weak=5
  8976. VIP_var_slr_snr_C_th_idx_2_medium=11
  8977. VIP_var_slr_snr_C_th_idx_2_strong=17
  8978. VIP_var_slr_snr_C_gain0_idx_2_weak=51
  8979. VIP_var_slr_snr_C_gain0_idx_2_medium=73
  8980. VIP_var_slr_snr_C_gain0_idx_2_strong=109
  8981. VIP_var_slr_snr_C_gain1_idx_2_weak=1
  8982. VIP_var_slr_snr_C_gain1_idx_2_medium=1
  8983. VIP_var_slr_snr_C_gain1_idx_2_strong=1
  8984. VIP_var_slr_snr_C_slope_idx_2_weak=40
  8985. VIP_var_slr_snr_C_slope_idx_2_medium=168
  8986. VIP_var_slr_snr_C_slope_idx_2_strong=65
  8987. VIP_var_slr_snr_bypass_idx_3=0
  8988. VIP_var_slr_snr_L_sel_idx_3_weak=0
  8989. VIP_var_slr_snr_L_sel_idx_3_medium=0
  8990. VIP_var_slr_snr_L_sel_idx_3_strong=0
  8991. VIP_var_slr_snr_L_chk_middle_pxl_idx_3_weak=1
  8992. VIP_var_slr_snr_L_chk_middle_pxl_idx_3_medium=1
  8993. VIP_var_slr_snr_L_chk_middle_pxl_idx_3_strong=1
  8994. VIP_var_slr_snr_L_th_idx_3_weak=5
  8995. VIP_var_slr_snr_L_th_idx_3_medium=5
  8996. VIP_var_slr_snr_L_th_idx_3_strong=5
  8997. VIP_var_slr_snr_L_gain0_idx_3_weak=150
  8998. VIP_var_slr_snr_L_gain0_idx_3_medium=200
  8999. VIP_var_slr_snr_L_gain0_idx_3_strong=255
  9000. VIP_var_slr_snr_L_gain1_idx_3_weak=1
  9001. VIP_var_slr_snr_L_gain1_idx_3_medium=1
  9002. VIP_var_slr_snr_L_gain1_idx_3_strong=1
  9003. VIP_var_slr_snr_L_slope_idx_3_weak=953
  9004. VIP_var_slr_snr_L_slope_idx_3_medium=1273
  9005. VIP_var_slr_snr_L_slope_idx_3_strong=1625
  9006. VIP_var_slr_snr_C_sel_idx_3_weak=0
  9007. VIP_var_slr_snr_C_sel_idx_3_medium=0
  9008. VIP_var_slr_snr_C_sel_idx_3_strong=0
  9009. VIP_var_slr_snr_C_chk_middle_pxl_idx_3_weak=1
  9010. VIP_var_slr_snr_C_chk_middle_pxl_idx_3_medium=1
  9011. VIP_var_slr_snr_C_chk_middle_pxl_idx_3_strong=1
  9012. VIP_var_slr_snr_C_th_idx_3_weak=4
  9013. VIP_var_slr_snr_C_th_idx_3_medium=13
  9014. VIP_var_slr_snr_C_th_idx_3_strong=17
  9015. VIP_var_slr_snr_C_gain0_idx_3_weak=56
  9016. VIP_var_slr_snr_C_gain0_idx_3_medium=102
  9017. VIP_var_slr_snr_C_gain0_idx_3_strong=135
  9018. VIP_var_slr_snr_C_gain1_idx_3_weak=1
  9019. VIP_var_slr_snr_C_gain1_idx_3_medium=1
  9020. VIP_var_slr_snr_C_gain1_idx_3_strong=1
  9021. VIP_var_slr_snr_C_slope_idx_3_weak=44
  9022. VIP_var_slr_snr_C_slope_idx_3_medium=4032
  9023. VIP_var_slr_snr_C_slope_idx_3_strong=80
  9024. VIP_var_slr_snr_bypass_idx_4=1
  9025. VIP_var_slr_snr_L_sel_idx_4_weak=0
  9026. VIP_var_slr_snr_L_sel_idx_4_medium=0
  9027. VIP_var_slr_snr_L_sel_idx_4_strong=0
  9028. VIP_var_slr_snr_L_chk_middle_pxl_idx_4_weak=1
  9029. VIP_var_slr_snr_L_chk_middle_pxl_idx_4_medium=1
  9030. VIP_var_slr_snr_L_chk_middle_pxl_idx_4_strong=1
  9031. VIP_var_slr_snr_L_th_idx_4_weak=0
  9032. VIP_var_slr_snr_L_th_idx_4_medium=14
  9033. VIP_var_slr_snr_L_th_idx_4_strong=17
  9034. VIP_var_slr_snr_L_gain0_idx_4_weak=101
  9035. VIP_var_slr_snr_L_gain0_idx_4_medium=153
  9036. VIP_var_slr_snr_L_gain0_idx_4_strong=188
  9037. VIP_var_slr_snr_L_gain1_idx_4_weak=0
  9038. VIP_var_slr_snr_L_gain1_idx_4_medium=1
  9039. VIP_var_slr_snr_L_gain1_idx_4_strong=1
  9040. VIP_var_slr_snr_L_slope_idx_4_weak=50
  9041. VIP_var_slr_snr_L_slope_idx_4_medium=66
  9042. VIP_var_slr_snr_L_slope_idx_4_strong=68
  9043. VIP_var_slr_snr_C_sel_idx_4_weak=0
  9044. VIP_var_slr_snr_C_sel_idx_4_medium=0
  9045. VIP_var_slr_snr_C_sel_idx_4_strong=0
  9046. VIP_var_slr_snr_C_chk_middle_pxl_idx_4_weak=1
  9047. VIP_var_slr_snr_C_chk_middle_pxl_idx_4_medium=1
  9048. VIP_var_slr_snr_C_chk_middle_pxl_idx_4_strong=1
  9049. VIP_var_slr_snr_C_th_idx_4_weak=23
  9050. VIP_var_slr_snr_C_th_idx_4_medium=21
  9051. VIP_var_slr_snr_C_th_idx_4_strong=19
  9052. VIP_var_slr_snr_C_gain0_idx_4_weak=113
  9053. VIP_var_slr_snr_C_gain0_idx_4_medium=145
  9054. VIP_var_slr_snr_C_gain0_idx_4_strong=188
  9055. VIP_var_slr_snr_C_gain1_idx_4_weak=0
  9056. VIP_var_slr_snr_C_gain1_idx_4_medium=1
  9057. VIP_var_slr_snr_C_gain1_idx_4_strong=1
  9058. VIP_var_slr_snr_C_slope_idx_4_weak=46
  9059. VIP_var_slr_snr_C_slope_idx_4_medium=65
  9060. VIP_var_slr_snr_C_slope_idx_4_strong=68
  9061. VIP_var_slr_snr_bypass_idx_5=1
  9062. VIP_var_slr_snr_L_sel_idx_5_weak=0
  9063. VIP_var_slr_snr_L_sel_idx_5_medium=0
  9064. VIP_var_slr_snr_L_sel_idx_5_strong=0
  9065. VIP_var_slr_snr_L_chk_middle_pxl_idx_5_weak=1
  9066. VIP_var_slr_snr_L_chk_middle_pxl_idx_5_medium=1
  9067. VIP_var_slr_snr_L_chk_middle_pxl_idx_5_strong=1
  9068. VIP_var_slr_snr_L_th_idx_5_weak=11
  9069. VIP_var_slr_snr_L_th_idx_5_medium=13
  9070. VIP_var_slr_snr_L_th_idx_5_strong=19
  9071. VIP_var_slr_snr_L_gain0_idx_5_weak=22
  9072. VIP_var_slr_snr_L_gain0_idx_5_medium=36
  9073. VIP_var_slr_snr_L_gain0_idx_5_strong=103
  9074. VIP_var_slr_snr_L_gain1_idx_5_weak=1
  9075. VIP_var_slr_snr_L_gain1_idx_5_medium=1
  9076. VIP_var_slr_snr_L_gain1_idx_5_strong=1
  9077. VIP_var_slr_snr_L_slope_idx_5_weak=15
  9078. VIP_var_slr_snr_L_slope_idx_5_medium=25
  9079. VIP_var_slr_snr_L_slope_idx_5_strong=64
  9080. VIP_var_slr_snr_C_sel_idx_5_weak=0
  9081. VIP_var_slr_snr_C_sel_idx_5_medium=0
  9082. VIP_var_slr_snr_C_sel_idx_5_strong=0
  9083. VIP_var_slr_snr_C_chk_middle_pxl_idx_5_weak=1
  9084. VIP_var_slr_snr_C_chk_middle_pxl_idx_5_medium=1
  9085. VIP_var_slr_snr_C_chk_middle_pxl_idx_5_strong=1
  9086. VIP_var_slr_snr_C_th_idx_5_weak=10
  9087. VIP_var_slr_snr_C_th_idx_5_medium=13
  9088. VIP_var_slr_snr_C_th_idx_5_strong=17
  9089. VIP_var_slr_snr_C_gain0_idx_5_weak=29
  9090. VIP_var_slr_snr_C_gain0_idx_5_medium=51
  9091. VIP_var_slr_snr_C_gain0_idx_5_strong=109
  9092. VIP_var_slr_snr_C_gain1_idx_5_weak=1
  9093. VIP_var_slr_snr_C_gain1_idx_5_medium=1
  9094. VIP_var_slr_snr_C_gain1_idx_5_strong=1
  9095. VIP_var_slr_snr_C_slope_idx_5_weak=24
  9096. VIP_var_slr_snr_C_slope_idx_5_medium=39
  9097. VIP_var_slr_snr_C_slope_idx_5_strong=65
  9098. VIP_var_slr_snr_bypass_idx_6=1
  9099. VIP_var_slr_snr_L_sel_idx_6_weak=0
  9100. VIP_var_slr_snr_L_sel_idx_6_medium=0
  9101. VIP_var_slr_snr_L_sel_idx_6_strong=0
  9102. VIP_var_slr_snr_L_chk_middle_pxl_idx_6_weak=1
  9103. VIP_var_slr_snr_L_chk_middle_pxl_idx_6_medium=1
  9104. VIP_var_slr_snr_L_chk_middle_pxl_idx_6_strong=1
  9105. VIP_var_slr_snr_L_th_idx_6_weak=1
  9106. VIP_var_slr_snr_L_th_idx_6_medium=3
  9107. VIP_var_slr_snr_L_th_idx_6_strong=19
  9108. VIP_var_slr_snr_L_gain0_idx_6_weak=45
  9109. VIP_var_slr_snr_L_gain0_idx_6_medium=42
  9110. VIP_var_slr_snr_L_gain0_idx_6_strong=103
  9111. VIP_var_slr_snr_L_gain1_idx_6_weak=1
  9112. VIP_var_slr_snr_L_gain1_idx_6_medium=1
  9113. VIP_var_slr_snr_L_gain1_idx_6_strong=1
  9114. VIP_var_slr_snr_L_slope_idx_6_weak=352
  9115. VIP_var_slr_snr_L_slope_idx_6_medium=124
  9116. VIP_var_slr_snr_L_slope_idx_6_strong=64
  9117. VIP_var_slr_snr_C_sel_idx_6_weak=0
  9118. VIP_var_slr_snr_C_sel_idx_6_medium=0
  9119. VIP_var_slr_snr_C_sel_idx_6_strong=0
  9120. VIP_var_slr_snr_C_chk_middle_pxl_idx_6_weak=1
  9121. VIP_var_slr_snr_C_chk_middle_pxl_idx_6_medium=1
  9122. VIP_var_slr_snr_C_chk_middle_pxl_idx_6_strong=1
  9123. VIP_var_slr_snr_C_th_idx_6_weak=5
  9124. VIP_var_slr_snr_C_th_idx_6_medium=11
  9125. VIP_var_slr_snr_C_th_idx_6_strong=17
  9126. VIP_var_slr_snr_C_gain0_idx_6_weak=51
  9127. VIP_var_slr_snr_C_gain0_idx_6_medium=73
  9128. VIP_var_slr_snr_C_gain0_idx_6_strong=109
  9129. VIP_var_slr_snr_C_gain1_idx_6_weak=1
  9130. VIP_var_slr_snr_C_gain1_idx_6_medium=1
  9131. VIP_var_slr_snr_C_gain1_idx_6_strong=1
  9132. VIP_var_slr_snr_C_slope_idx_6_weak=40
  9133. VIP_var_slr_snr_C_slope_idx_6_medium=168
  9134. VIP_var_slr_snr_C_slope_idx_6_strong=65
  9135. VIP_var_slr_snr_bypass_idx_7=1
  9136. VIP_var_slr_snr_L_sel_idx_7_weak=0
  9137. VIP_var_slr_snr_L_sel_idx_7_medium=0
  9138. VIP_var_slr_snr_L_sel_idx_7_strong=0
  9139. VIP_var_slr_snr_L_chk_middle_pxl_idx_7_weak=1
  9140. VIP_var_slr_snr_L_chk_middle_pxl_idx_7_medium=1
  9141. VIP_var_slr_snr_L_chk_middle_pxl_idx_7_strong=1
  9142. VIP_var_slr_snr_L_th_idx_7_weak=1
  9143. VIP_var_slr_snr_L_th_idx_7_medium=3
  9144. VIP_var_slr_snr_L_th_idx_7_strong=19
  9145. VIP_var_slr_snr_L_gain0_idx_7_weak=45
  9146. VIP_var_slr_snr_L_gain0_idx_7_medium=42
  9147. VIP_var_slr_snr_L_gain0_idx_7_strong=103
  9148. VIP_var_slr_snr_L_gain1_idx_7_weak=1
  9149. VIP_var_slr_snr_L_gain1_idx_7_medium=1
  9150. VIP_var_slr_snr_L_gain1_idx_7_strong=1
  9151. VIP_var_slr_snr_L_slope_idx_7_weak=352
  9152. VIP_var_slr_snr_L_slope_idx_7_medium=124
  9153. VIP_var_slr_snr_L_slope_idx_7_strong=64
  9154. VIP_var_slr_snr_C_sel_idx_7_weak=0
  9155. VIP_var_slr_snr_C_sel_idx_7_medium=0
  9156. VIP_var_slr_snr_C_sel_idx_7_strong=0
  9157. VIP_var_slr_snr_C_chk_middle_pxl_idx_7_weak=1
  9158. VIP_var_slr_snr_C_chk_middle_pxl_idx_7_medium=1
  9159. VIP_var_slr_snr_C_chk_middle_pxl_idx_7_strong=1
  9160. VIP_var_slr_snr_C_th_idx_7_weak=5
  9161. VIP_var_slr_snr_C_th_idx_7_medium=11
  9162. VIP_var_slr_snr_C_th_idx_7_strong=17
  9163. VIP_var_slr_snr_C_gain0_idx_7_weak=51
  9164. VIP_var_slr_snr_C_gain0_idx_7_medium=73
  9165. VIP_var_slr_snr_C_gain0_idx_7_strong=109
  9166. VIP_var_slr_snr_C_gain1_idx_7_weak=1
  9167. VIP_var_slr_snr_C_gain1_idx_7_medium=1
  9168. VIP_var_slr_snr_C_gain1_idx_7_strong=1
  9169. VIP_var_slr_snr_C_slope_idx_7_weak=40
  9170. VIP_var_slr_snr_C_slope_idx_7_medium=168
  9171. VIP_var_slr_snr_C_slope_idx_7_strong=65
  9172. VIP_var_slr_s_snr_bypass_idx_0=1
  9173. VIP_var_slr_s_snr_L_sel_idx_0_weak=0
  9174. VIP_var_slr_s_snr_L_sel_idx_0_medium=0
  9175. VIP_var_slr_s_snr_L_sel_idx_0_strong=0
  9176. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_0_weak=0
  9177. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_0_medium=0
  9178. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_0_strong=0
  9179. VIP_var_slr_s_snr_L_th_idx_0_weak=18
  9180. VIP_var_slr_s_snr_L_th_idx_0_medium=21
  9181. VIP_var_slr_s_snr_L_th_idx_0_strong=30
  9182. VIP_var_slr_s_snr_L_gain0_idx_0_weak=65
  9183. VIP_var_slr_s_snr_L_gain0_idx_0_medium=81
  9184. VIP_var_slr_s_snr_L_gain0_idx_0_strong=105
  9185. VIP_var_slr_s_snr_L_gain1_idx_0_weak=1
  9186. VIP_var_slr_s_snr_L_gain1_idx_0_medium=1
  9187. VIP_var_slr_s_snr_L_gain1_idx_0_strong=1
  9188. VIP_var_slr_s_snr_L_slope_idx_0_weak=47
  9189. VIP_var_slr_s_snr_L_slope_idx_0_medium=56
  9190. VIP_var_slr_s_snr_L_slope_idx_0_strong=65
  9191. VIP_var_slr_s_snr_C_sel_idx_0_weak=0
  9192. VIP_var_slr_s_snr_C_sel_idx_0_medium=0
  9193. VIP_var_slr_s_snr_C_sel_idx_0_strong=0
  9194. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_0_weak=1
  9195. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_0_medium=1
  9196. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_0_strong=1
  9197. VIP_var_slr_s_snr_C_th_idx_0_weak=15
  9198. VIP_var_slr_s_snr_C_th_idx_0_medium=23
  9199. VIP_var_slr_s_snr_C_th_idx_0_strong=22
  9200. VIP_var_slr_s_snr_C_gain0_idx_0_weak=77
  9201. VIP_var_slr_s_snr_C_gain0_idx_0_medium=100
  9202. VIP_var_slr_s_snr_C_gain0_idx_0_strong=127
  9203. VIP_var_slr_s_snr_C_gain1_idx_0_weak=1
  9204. VIP_var_slr_s_snr_C_gain1_idx_0_medium=1
  9205. VIP_var_slr_s_snr_C_gain1_idx_0_strong=1
  9206. VIP_var_slr_s_snr_C_slope_idx_0_weak=54
  9207. VIP_var_slr_s_snr_C_slope_idx_0_medium=72
  9208. VIP_var_slr_s_snr_C_slope_idx_0_strong=78
  9209. VIP_var_slr_s_snr_bypass_idx_1=0
  9210. VIP_var_slr_s_snr_L_sel_idx_1_weak=0
  9211. VIP_var_slr_s_snr_L_sel_idx_1_medium=0
  9212. VIP_var_slr_s_snr_L_sel_idx_1_strong=0
  9213. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_1_weak=0
  9214. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_1_medium=0
  9215. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_1_strong=0
  9216. VIP_var_slr_s_snr_L_th_idx_1_weak=14
  9217. VIP_var_slr_s_snr_L_th_idx_1_medium=14
  9218. VIP_var_slr_s_snr_L_th_idx_1_strong=27
  9219. VIP_var_slr_s_snr_L_gain0_idx_1_weak=18
  9220. VIP_var_slr_s_snr_L_gain0_idx_1_medium=65
  9221. VIP_var_slr_s_snr_L_gain0_idx_1_strong=116
  9222. VIP_var_slr_s_snr_L_gain1_idx_1_weak=1
  9223. VIP_var_slr_s_snr_L_gain1_idx_1_medium=1
  9224. VIP_var_slr_s_snr_L_gain1_idx_1_strong=2
  9225. VIP_var_slr_s_snr_L_slope_idx_1_weak=11
  9226. VIP_var_slr_s_snr_L_slope_idx_1_medium=35
  9227. VIP_var_slr_s_snr_L_slope_idx_1_strong=65
  9228. VIP_var_slr_s_snr_C_sel_idx_1_weak=0
  9229. VIP_var_slr_s_snr_C_sel_idx_1_medium=0
  9230. VIP_var_slr_s_snr_C_sel_idx_1_strong=0
  9231. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_1_weak=1
  9232. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_1_medium=1
  9233. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_1_strong=1
  9234. VIP_var_slr_s_snr_C_th_idx_1_weak=12
  9235. VIP_var_slr_s_snr_C_th_idx_1_medium=17
  9236. VIP_var_slr_s_snr_C_th_idx_1_strong=22
  9237. VIP_var_slr_s_snr_C_gain0_idx_1_weak=26
  9238. VIP_var_slr_s_snr_C_gain0_idx_1_medium=99
  9239. VIP_var_slr_s_snr_C_gain0_idx_1_strong=127
  9240. VIP_var_slr_s_snr_C_gain1_idx_1_weak=1
  9241. VIP_var_slr_s_snr_C_gain1_idx_1_medium=1
  9242. VIP_var_slr_s_snr_C_gain1_idx_1_strong=1
  9243. VIP_var_slr_s_snr_C_slope_idx_1_weak=17
  9244. VIP_var_slr_s_snr_C_slope_idx_1_medium=66
  9245. VIP_var_slr_s_snr_C_slope_idx_1_strong=78
  9246. VIP_var_slr_s_snr_bypass_idx_2=0
  9247. VIP_var_slr_s_snr_L_sel_idx_2_weak=0
  9248. VIP_var_slr_s_snr_L_sel_idx_2_medium=0
  9249. VIP_var_slr_s_snr_L_sel_idx_2_strong=0
  9250. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_2_weak=0
  9251. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_2_medium=0
  9252. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_2_strong=0
  9253. VIP_var_slr_s_snr_L_th_idx_2_weak=0
  9254. VIP_var_slr_s_snr_L_th_idx_2_medium=0
  9255. VIP_var_slr_s_snr_L_th_idx_2_strong=30
  9256. VIP_var_slr_s_snr_L_gain0_idx_2_weak=50
  9257. VIP_var_slr_s_snr_L_gain0_idx_2_medium=70
  9258. VIP_var_slr_s_snr_L_gain0_idx_2_strong=105
  9259. VIP_var_slr_s_snr_L_gain1_idx_2_weak=1
  9260. VIP_var_slr_s_snr_L_gain1_idx_2_medium=1
  9261. VIP_var_slr_s_snr_L_gain1_idx_2_strong=1
  9262. VIP_var_slr_s_snr_L_slope_idx_2_weak=156
  9263. VIP_var_slr_s_snr_L_slope_idx_2_medium=83
  9264. VIP_var_slr_s_snr_L_slope_idx_2_strong=65
  9265. VIP_var_slr_s_snr_C_sel_idx_2_weak=0
  9266. VIP_var_slr_s_snr_C_sel_idx_2_medium=0
  9267. VIP_var_slr_s_snr_C_sel_idx_2_strong=0
  9268. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_2_weak=1
  9269. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_2_medium=1
  9270. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_2_strong=1
  9271. VIP_var_slr_s_snr_C_th_idx_2_weak=15
  9272. VIP_var_slr_s_snr_C_th_idx_2_medium=18
  9273. VIP_var_slr_s_snr_C_th_idx_2_strong=22
  9274. VIP_var_slr_s_snr_C_gain0_idx_2_weak=77
  9275. VIP_var_slr_s_snr_C_gain0_idx_2_medium=87
  9276. VIP_var_slr_s_snr_C_gain0_idx_2_strong=127
  9277. VIP_var_slr_s_snr_C_gain1_idx_2_weak=1
  9278. VIP_var_slr_s_snr_C_gain1_idx_2_medium=1
  9279. VIP_var_slr_s_snr_C_gain1_idx_2_strong=1
  9280. VIP_var_slr_s_snr_C_slope_idx_2_weak=2432
  9281. VIP_var_slr_s_snr_C_slope_idx_2_medium=177
  9282. VIP_var_slr_s_snr_C_slope_idx_2_strong=78
  9283. VIP_var_slr_s_snr_bypass_idx_3=0
  9284. VIP_var_slr_s_snr_L_sel_idx_3_weak=2
  9285. VIP_var_slr_s_snr_L_sel_idx_3_medium=0
  9286. VIP_var_slr_s_snr_L_sel_idx_3_strong=0
  9287. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_3_weak=1
  9288. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_3_medium=1
  9289. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_3_strong=1
  9290. VIP_var_slr_s_snr_L_th_idx_3_weak=5
  9291. VIP_var_slr_s_snr_L_th_idx_3_medium=5
  9292. VIP_var_slr_s_snr_L_th_idx_3_strong=5
  9293. VIP_var_slr_s_snr_L_gain0_idx_3_weak=150
  9294. VIP_var_slr_s_snr_L_gain0_idx_3_medium=200
  9295. VIP_var_slr_s_snr_L_gain0_idx_3_strong=255
  9296. VIP_var_slr_s_snr_L_gain1_idx_3_weak=1
  9297. VIP_var_slr_s_snr_L_gain1_idx_3_medium=1
  9298. VIP_var_slr_s_snr_L_gain1_idx_3_strong=1
  9299. VIP_var_slr_s_snr_L_slope_idx_3_weak=953
  9300. VIP_var_slr_s_snr_L_slope_idx_3_medium=1273
  9301. VIP_var_slr_s_snr_L_slope_idx_3_strong=1625
  9302. VIP_var_slr_s_snr_C_sel_idx_3_weak=0
  9303. VIP_var_slr_s_snr_C_sel_idx_3_medium=0
  9304. VIP_var_slr_s_snr_C_sel_idx_3_strong=0
  9305. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_3_weak=1
  9306. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_3_medium=1
  9307. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_3_strong=1
  9308. VIP_var_slr_s_snr_C_th_idx_3_weak=15
  9309. VIP_var_slr_s_snr_C_th_idx_3_medium=21
  9310. VIP_var_slr_s_snr_C_th_idx_3_strong=26
  9311. VIP_var_slr_s_snr_C_gain0_idx_3_weak=77
  9312. VIP_var_slr_s_snr_C_gain0_idx_3_medium=120
  9313. VIP_var_slr_s_snr_C_gain0_idx_3_strong=148
  9314. VIP_var_slr_s_snr_C_gain1_idx_3_weak=1
  9315. VIP_var_slr_s_snr_C_gain1_idx_3_medium=1
  9316. VIP_var_slr_s_snr_C_gain1_idx_3_strong=1
  9317. VIP_var_slr_s_snr_C_slope_idx_3_weak=54
  9318. VIP_var_slr_s_snr_C_slope_idx_3_medium=3808
  9319. VIP_var_slr_s_snr_C_slope_idx_3_strong=81
  9320. VIP_var_slr_s_snr_bypass_idx_4=1
  9321. VIP_var_slr_s_snr_L_sel_idx_4_weak=0
  9322. VIP_var_slr_s_snr_L_sel_idx_4_medium=0
  9323. VIP_var_slr_s_snr_L_sel_idx_4_strong=0
  9324. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_4_weak=1
  9325. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_4_medium=1
  9326. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_4_strong=1
  9327. VIP_var_slr_s_snr_L_th_idx_4_weak=14
  9328. VIP_var_slr_s_snr_L_th_idx_4_medium=9
  9329. VIP_var_slr_s_snr_L_th_idx_4_strong=17
  9330. VIP_var_slr_s_snr_L_gain0_idx_4_weak=85
  9331. VIP_var_slr_s_snr_L_gain0_idx_4_medium=147
  9332. VIP_var_slr_s_snr_L_gain0_idx_4_strong=171
  9333. VIP_var_slr_s_snr_L_gain1_idx_4_weak=1
  9334. VIP_var_slr_s_snr_L_gain1_idx_4_medium=1
  9335. VIP_var_slr_s_snr_L_gain1_idx_4_strong=1
  9336. VIP_var_slr_s_snr_L_slope_idx_4_weak=52
  9337. VIP_var_slr_s_snr_L_slope_idx_4_medium=59
  9338. VIP_var_slr_s_snr_L_slope_idx_4_strong=65
  9339. VIP_var_slr_s_snr_C_sel_idx_4_weak=0
  9340. VIP_var_slr_s_snr_C_sel_idx_4_medium=3
  9341. VIP_var_slr_s_snr_C_sel_idx_4_strong=3
  9342. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_4_weak=1
  9343. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_4_medium=1
  9344. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_4_strong=1
  9345. VIP_var_slr_s_snr_C_th_idx_4_weak=31
  9346. VIP_var_slr_s_snr_C_th_idx_4_medium=24
  9347. VIP_var_slr_s_snr_C_th_idx_4_strong=26
  9348. VIP_var_slr_s_snr_C_gain0_idx_4_weak=84
  9349. VIP_var_slr_s_snr_C_gain0_idx_4_medium=154
  9350. VIP_var_slr_s_snr_C_gain0_idx_4_strong=191
  9351. VIP_var_slr_s_snr_C_gain1_idx_4_weak=1
  9352. VIP_var_slr_s_snr_C_gain1_idx_4_medium=1
  9353. VIP_var_slr_s_snr_C_gain1_idx_4_strong=1
  9354. VIP_var_slr_s_snr_C_slope_idx_4_weak=50
  9355. VIP_var_slr_s_snr_C_slope_idx_4_medium=62
  9356. VIP_var_slr_s_snr_C_slope_idx_4_strong=72
  9357. VIP_var_slr_s_snr_bypass_idx_5=1
  9358. VIP_var_slr_s_snr_L_sel_idx_5_weak=0
  9359. VIP_var_slr_s_snr_L_sel_idx_5_medium=0
  9360. VIP_var_slr_s_snr_L_sel_idx_5_strong=0
  9361. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_5_weak=0
  9362. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_5_medium=0
  9363. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_5_strong=0
  9364. VIP_var_slr_s_snr_L_th_idx_5_weak=14
  9365. VIP_var_slr_s_snr_L_th_idx_5_medium=21
  9366. VIP_var_slr_s_snr_L_th_idx_5_strong=30
  9367. VIP_var_slr_s_snr_L_gain0_idx_5_weak=18
  9368. VIP_var_slr_s_snr_L_gain0_idx_5_medium=37
  9369. VIP_var_slr_s_snr_L_gain0_idx_5_strong=105
  9370. VIP_var_slr_s_snr_L_gain1_idx_5_weak=1
  9371. VIP_var_slr_s_snr_L_gain1_idx_5_medium=1
  9372. VIP_var_slr_s_snr_L_gain1_idx_5_strong=1
  9373. VIP_var_slr_s_snr_L_slope_idx_5_weak=11
  9374. VIP_var_slr_s_snr_L_slope_idx_5_medium=25
  9375. VIP_var_slr_s_snr_L_slope_idx_5_strong=65
  9376. VIP_var_slr_s_snr_C_sel_idx_5_weak=0
  9377. VIP_var_slr_s_snr_C_sel_idx_5_medium=0
  9378. VIP_var_slr_s_snr_C_sel_idx_5_strong=0
  9379. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_5_weak=1
  9380. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_5_medium=1
  9381. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_5_strong=1
  9382. VIP_var_slr_s_snr_C_th_idx_5_weak=12
  9383. VIP_var_slr_s_snr_C_th_idx_5_medium=16
  9384. VIP_var_slr_s_snr_C_th_idx_5_strong=22
  9385. VIP_var_slr_s_snr_C_gain0_idx_5_weak=26
  9386. VIP_var_slr_s_snr_C_gain0_idx_5_medium=49
  9387. VIP_var_slr_s_snr_C_gain0_idx_5_strong=127
  9388. VIP_var_slr_s_snr_C_gain1_idx_5_weak=1
  9389. VIP_var_slr_s_snr_C_gain1_idx_5_medium=1
  9390. VIP_var_slr_s_snr_C_gain1_idx_5_strong=1
  9391. VIP_var_slr_s_snr_C_slope_idx_5_weak=17
  9392. VIP_var_slr_s_snr_C_slope_idx_5_medium=32
  9393. VIP_var_slr_s_snr_C_slope_idx_5_strong=78
  9394. VIP_var_slr_s_snr_bypass_idx_6=1
  9395. VIP_var_slr_s_snr_L_sel_idx_6_weak=0
  9396. VIP_var_slr_s_snr_L_sel_idx_6_medium=0
  9397. VIP_var_slr_s_snr_L_sel_idx_6_strong=0
  9398. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_6_weak=0
  9399. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_6_medium=0
  9400. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_6_strong=0
  9401. VIP_var_slr_s_snr_L_th_idx_6_weak=0
  9402. VIP_var_slr_s_snr_L_th_idx_6_medium=0
  9403. VIP_var_slr_s_snr_L_th_idx_6_strong=30
  9404. VIP_var_slr_s_snr_L_gain0_idx_6_weak=50
  9405. VIP_var_slr_s_snr_L_gain0_idx_6_medium=70
  9406. VIP_var_slr_s_snr_L_gain0_idx_6_strong=105
  9407. VIP_var_slr_s_snr_L_gain1_idx_6_weak=1
  9408. VIP_var_slr_s_snr_L_gain1_idx_6_medium=1
  9409. VIP_var_slr_s_snr_L_gain1_idx_6_strong=1
  9410. VIP_var_slr_s_snr_L_slope_idx_6_weak=156
  9411. VIP_var_slr_s_snr_L_slope_idx_6_medium=83
  9412. VIP_var_slr_s_snr_L_slope_idx_6_strong=65
  9413. VIP_var_slr_s_snr_C_sel_idx_6_weak=0
  9414. VIP_var_slr_s_snr_C_sel_idx_6_medium=0
  9415. VIP_var_slr_s_snr_C_sel_idx_6_strong=0
  9416. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_6_weak=1
  9417. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_6_medium=1
  9418. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_6_strong=1
  9419. VIP_var_slr_s_snr_C_th_idx_6_weak=15
  9420. VIP_var_slr_s_snr_C_th_idx_6_medium=18
  9421. VIP_var_slr_s_snr_C_th_idx_6_strong=22
  9422. VIP_var_slr_s_snr_C_gain0_idx_6_weak=77
  9423. VIP_var_slr_s_snr_C_gain0_idx_6_medium=87
  9424. VIP_var_slr_s_snr_C_gain0_idx_6_strong=127
  9425. VIP_var_slr_s_snr_C_gain1_idx_6_weak=1
  9426. VIP_var_slr_s_snr_C_gain1_idx_6_medium=1
  9427. VIP_var_slr_s_snr_C_gain1_idx_6_strong=1
  9428. VIP_var_slr_s_snr_C_slope_idx_6_weak=2432
  9429. VIP_var_slr_s_snr_C_slope_idx_6_medium=177
  9430. VIP_var_slr_s_snr_C_slope_idx_6_strong=78
  9431. VIP_var_slr_s_snr_bypass_idx_7=1
  9432. VIP_var_slr_s_snr_L_sel_idx_7_weak=0
  9433. VIP_var_slr_s_snr_L_sel_idx_7_medium=0
  9434. VIP_var_slr_s_snr_L_sel_idx_7_strong=0
  9435. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_7_weak=0
  9436. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_7_medium=0
  9437. VIP_var_slr_s_snr_L_chk_middle_pxl_idx_7_strong=0
  9438. VIP_var_slr_s_snr_L_th_idx_7_weak=0
  9439. VIP_var_slr_s_snr_L_th_idx_7_medium=0
  9440. VIP_var_slr_s_snr_L_th_idx_7_strong=30
  9441. VIP_var_slr_s_snr_L_gain0_idx_7_weak=50
  9442. VIP_var_slr_s_snr_L_gain0_idx_7_medium=70
  9443. VIP_var_slr_s_snr_L_gain0_idx_7_strong=105
  9444. VIP_var_slr_s_snr_L_gain1_idx_7_weak=1
  9445. VIP_var_slr_s_snr_L_gain1_idx_7_medium=1
  9446. VIP_var_slr_s_snr_L_gain1_idx_7_strong=1
  9447. VIP_var_slr_s_snr_L_slope_idx_7_weak=156
  9448. VIP_var_slr_s_snr_L_slope_idx_7_medium=83
  9449. VIP_var_slr_s_snr_L_slope_idx_7_strong=65
  9450. VIP_var_slr_s_snr_C_sel_idx_7_weak=0
  9451. VIP_var_slr_s_snr_C_sel_idx_7_medium=0
  9452. VIP_var_slr_s_snr_C_sel_idx_7_strong=0
  9453. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_7_weak=1
  9454. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_7_medium=1
  9455. VIP_var_slr_s_snr_C_chk_middle_pxl_idx_7_strong=1
  9456. VIP_var_slr_s_snr_C_th_idx_7_weak=15
  9457. VIP_var_slr_s_snr_C_th_idx_7_medium=18
  9458. VIP_var_slr_s_snr_C_th_idx_7_strong=22
  9459. VIP_var_slr_s_snr_C_gain0_idx_7_weak=77
  9460. VIP_var_slr_s_snr_C_gain0_idx_7_medium=87
  9461. VIP_var_slr_s_snr_C_gain0_idx_7_strong=127
  9462. VIP_var_slr_s_snr_C_gain1_idx_7_weak=1
  9463. VIP_var_slr_s_snr_C_gain1_idx_7_medium=1
  9464. VIP_var_slr_s_snr_C_gain1_idx_7_strong=1
  9465. VIP_var_slr_s_snr_C_slope_idx_7_weak=2432
  9466. VIP_var_slr_s_snr_C_slope_idx_7_medium=177
  9467. VIP_var_slr_s_snr_C_slope_idx_7_strong=78
  9468. VIP_TABLE_MAGIC_NUMBER_25=9528
  9469. VIP_var_sigama_nr_src_0_3=0x100
  9470. VIP_var_sigama_nr_src_4_7=0x1010101
  9471. VIP_var_sigama_nr_src_8_11=0x0
  9472. VIP_var_sigama_nr_src_12_15=0x2030300
  9473. VIP_var_sigama_nr_src_16_19=0x0
  9474. VIP_var_sigama_nr_operate_id_0=1
  9475. VIP_var_sigama_nr_mode_id_0=0
  9476. VIP_var_sigama_nr_weak_region_temporal_id_0=1
  9477. VIP_var_sigama_nr_weak_region_var_scale_id_0=1
  9478. VIP_var_sigama_nr_weak_region_gain_id_0=3
  9479. VIP_var_sigama_nr_weak_region_v_mot_scale_id_0=0
  9480. VIP_var_sigama_nr_weak_region_v_ref_scale_id_0=8
  9481. VIP_var_sigama_nr_normal_region_temporal_id_0=1
  9482. VIP_var_sigama_nr_normal_region_var_scale_id_0=2
  9483. VIP_var_sigama_nr_normal_region_gain_id_0=3
  9484. VIP_var_sigama_nr_normal_region_v_mot_scale_id_0=0
  9485. VIP_var_sigama_nr_normal_region_v_ref_scale_id_0=8
  9486. VIP_var_sigama_nr_strong_region_temporal_id_0=1
  9487. VIP_var_sigama_nr_strong_region_var_scale_id_0=4
  9488. VIP_var_sigama_nr_strong_region_gain_id_0=3
  9489. VIP_var_sigama_nr_strong_region_v_mot_scale_id_0=0
  9490. VIP_var_sigama_nr_strong_region_v_ref_scale_id_0=8
  9491. VIP_var_sigama_nr_complexity_level_low_th_id_0=10
  9492. VIP_var_sigama_nr_complexity_level_middle_th_id_0=70
  9493. VIP_var_sigama_nr_complexity_level_high_th_id_0=150
  9494. VIP_var_sigama_nr_adaptive_static_th_weak_id_0=180
  9495. VIP_var_sigama_nr_adaptive_static_th_normal_id_0=150
  9496. VIP_var_sigama_nr_adaptive_static_th_strong_id_0=50
  9497. VIP_var_sigama_nr_adaptive_static_th_low_noise_th_id_0=4
  9498. VIP_var_sigama_nr_adaptive_static_th_static_th_id_0=2
  9499. VIP_var_sigama_nr_adaptive_static_th_detail_th_id_0=80
  9500. VIP_var_sigama_nr_adaptive_static_th_complex_scale_id_0=10
  9501. VIP_var_sigama_nr_adaptive_static_th_var_scale_id_0=8
  9502. VIP_var_sigama_nr_adaptive_static_th_detail_scale_id_0=12
  9503. VIP_var_sigama_nr_post_tnr_weak_id_0=3
  9504. VIP_var_sigama_nr_post_tnr_normal_id_0=3
  9505. VIP_var_sigama_nr_post_tnr_strong_id_0=3
  9506. VIP_var_sigama_nr_variance_upper_bound_weak_1_id_0=65535
  9507. VIP_var_sigama_nr_variance_upper_bound_weak_2_id_0=0
  9508. VIP_var_sigama_nr_variance_upper_bound_normal_1_id_0=65535
  9509. VIP_var_sigama_nr_variance_upper_bound_normal_2_id_0=0
  9510. VIP_var_sigama_nr_variance_upper_bound_strong_1_id_0=65535
  9511. VIP_var_sigama_nr_variance_upper_bound_strong_2_id_0=0
  9512. VIP_var_sigama_nr_base_id_0=20
  9513. VIP_var_sigama_nr_bound_id_0=80
  9514. VIP_var_sigama_nr_variance_th_0_id_0=2
  9515. VIP_var_sigama_nr_variance_th_1_id_0=5
  9516. VIP_var_sigama_nr_variance_th_2_id_0=8
  9517. VIP_var_sigama_nr_variance_th_3_id_0=11
  9518. VIP_var_sigama_nr_variance_th_4_id_0=14
  9519. VIP_var_sigama_nr_variance_th_5_id_0=17
  9520. VIP_var_sigama_nr_variance_th_6_id_0=20
  9521. VIP_var_sigama_nr_motion_th_0_id_0=5
  9522. VIP_var_sigama_nr_motion_th_1_id_0=25
  9523. VIP_var_sigama_nr_motion_th_2_id_0=50
  9524. VIP_var_sigama_nr_motion_th_3_id_0=100
  9525. VIP_var_sigama_nr_motion_th_4_id_0=150
  9526. VIP_var_sigama_nr_motion_th_5_id_0=200
  9527. VIP_var_sigama_nr_motion_th_6_id_0=250
  9528. VIP_var_sigama_nr_operate_id_1=1
  9529. VIP_var_sigama_nr_mode_id_1=0
  9530. VIP_var_sigama_nr_weak_region_temporal_id_1=1
  9531. VIP_var_sigama_nr_weak_region_var_scale_id_1=2
  9532. VIP_var_sigama_nr_weak_region_gain_id_1=6
  9533. VIP_var_sigama_nr_weak_region_v_mot_scale_id_1=2
  9534. VIP_var_sigama_nr_weak_region_v_ref_scale_id_1=2
  9535. VIP_var_sigama_nr_normal_region_temporal_id_1=1
  9536. VIP_var_sigama_nr_normal_region_var_scale_id_1=3
  9537. VIP_var_sigama_nr_normal_region_gain_id_1=6
  9538. VIP_var_sigama_nr_normal_region_v_mot_scale_id_1=3
  9539. VIP_var_sigama_nr_normal_region_v_ref_scale_id_1=3
  9540. VIP_var_sigama_nr_strong_region_temporal_id_1=1
  9541. VIP_var_sigama_nr_strong_region_var_scale_id_1=5
  9542. VIP_var_sigama_nr_strong_region_gain_id_1=5
  9543. VIP_var_sigama_nr_strong_region_v_mot_scale_id_1=8
  9544. VIP_var_sigama_nr_strong_region_v_ref_scale_id_1=8
  9545. VIP_var_sigama_nr_complexity_level_low_th_id_1=10
  9546. VIP_var_sigama_nr_complexity_level_middle_th_id_1=70
  9547. VIP_var_sigama_nr_complexity_level_high_th_id_1=150
  9548. VIP_var_sigama_nr_adaptive_static_th_weak_id_1=180
  9549. VIP_var_sigama_nr_adaptive_static_th_normal_id_1=150
  9550. VIP_var_sigama_nr_adaptive_static_th_strong_id_1=50
  9551. VIP_var_sigama_nr_adaptive_static_th_low_noise_th_id_1=4
  9552. VIP_var_sigama_nr_adaptive_static_th_static_th_id_1=2
  9553. VIP_var_sigama_nr_adaptive_static_th_detail_th_id_1=20
  9554. VIP_var_sigama_nr_adaptive_static_th_complex_scale_id_1=10
  9555. VIP_var_sigama_nr_adaptive_static_th_var_scale_id_1=8
  9556. VIP_var_sigama_nr_adaptive_static_th_detail_scale_id_1=3
  9557. VIP_var_sigama_nr_post_tnr_weak_id_1=4
  9558. VIP_var_sigama_nr_post_tnr_normal_id_1=8
  9559. VIP_var_sigama_nr_post_tnr_strong_id_1=5
  9560. VIP_var_sigama_nr_variance_upper_bound_weak_1_id_1=65535
  9561. VIP_var_sigama_nr_variance_upper_bound_weak_2_id_1=0
  9562. VIP_var_sigama_nr_variance_upper_bound_normal_1_id_1=65535
  9563. VIP_var_sigama_nr_variance_upper_bound_normal_2_id_1=0
  9564. VIP_var_sigama_nr_variance_upper_bound_strong_1_id_1=65535
  9565. VIP_var_sigama_nr_variance_upper_bound_strong_2_id_1=0
  9566. VIP_var_sigama_nr_base_id_1=20
  9567. VIP_var_sigama_nr_bound_id_1=80
  9568. VIP_var_sigama_nr_variance_th_0_id_1=2
  9569. VIP_var_sigama_nr_variance_th_1_id_1=5
  9570. VIP_var_sigama_nr_variance_th_2_id_1=8
  9571. VIP_var_sigama_nr_variance_th_3_id_1=11
  9572. VIP_var_sigama_nr_variance_th_4_id_1=14
  9573. VIP_var_sigama_nr_variance_th_5_id_1=17
  9574. VIP_var_sigama_nr_variance_th_6_id_1=23
  9575. VIP_var_sigama_nr_motion_th_0_id_1=5
  9576. VIP_var_sigama_nr_motion_th_1_id_1=25
  9577. VIP_var_sigama_nr_motion_th_2_id_1=50
  9578. VIP_var_sigama_nr_motion_th_3_id_1=100
  9579. VIP_var_sigama_nr_motion_th_4_id_1=150
  9580. VIP_var_sigama_nr_motion_th_5_id_1=200
  9581. VIP_var_sigama_nr_motion_th_6_id_1=246
  9582. VIP_var_sigama_nr_operate_id_2=0
  9583. VIP_var_sigama_nr_mode_id_2=0
  9584. VIP_var_sigama_nr_weak_region_temporal_id_2=1
  9585. VIP_var_sigama_nr_weak_region_var_scale_id_2=10
  9586. VIP_var_sigama_nr_weak_region_gain_id_2=6
  9587. VIP_var_sigama_nr_weak_region_v_mot_scale_id_2=2
  9588. VIP_var_sigama_nr_weak_region_v_ref_scale_id_2=2
  9589. VIP_var_sigama_nr_normal_region_temporal_id_2=1
  9590. VIP_var_sigama_nr_normal_region_var_scale_id_2=10
  9591. VIP_var_sigama_nr_normal_region_gain_id_2=6
  9592. VIP_var_sigama_nr_normal_region_v_mot_scale_id_2=2
  9593. VIP_var_sigama_nr_normal_region_v_ref_scale_id_2=2
  9594. VIP_var_sigama_nr_strong_region_temporal_id_2=1
  9595. VIP_var_sigama_nr_strong_region_var_scale_id_2=10
  9596. VIP_var_sigama_nr_strong_region_gain_id_2=6
  9597. VIP_var_sigama_nr_strong_region_v_mot_scale_id_2=2
  9598. VIP_var_sigama_nr_strong_region_v_ref_scale_id_2=2
  9599. VIP_var_sigama_nr_complexity_level_low_th_id_2=10
  9600. VIP_var_sigama_nr_complexity_level_middle_th_id_2=60
  9601. VIP_var_sigama_nr_complexity_level_high_th_id_2=255
  9602. VIP_var_sigama_nr_adaptive_static_th_weak_id_2=255
  9603. VIP_var_sigama_nr_adaptive_static_th_normal_id_2=255
  9604. VIP_var_sigama_nr_adaptive_static_th_strong_id_2=255
  9605. VIP_var_sigama_nr_adaptive_static_th_low_noise_th_id_2=10
  9606. VIP_var_sigama_nr_adaptive_static_th_static_th_id_2=5
  9607. VIP_var_sigama_nr_adaptive_static_th_detail_th_id_2=100
  9608. VIP_var_sigama_nr_adaptive_static_th_complex_scale_id_2=7
  9609. VIP_var_sigama_nr_adaptive_static_th_var_scale_id_2=8
  9610. VIP_var_sigama_nr_adaptive_static_th_detail_scale_id_2=10
  9611. VIP_var_sigama_nr_post_tnr_weak_id_2=4
  9612. VIP_var_sigama_nr_post_tnr_normal_id_2=4
  9613. VIP_var_sigama_nr_post_tnr_strong_id_2=2
  9614. VIP_var_sigama_nr_variance_upper_bound_weak_1_id_2=65535
  9615. VIP_var_sigama_nr_variance_upper_bound_weak_2_id_2=65535
  9616. VIP_var_sigama_nr_variance_upper_bound_normal_1_id_2=65535
  9617. VIP_var_sigama_nr_variance_upper_bound_normal_2_id_2=65535
  9618. VIP_var_sigama_nr_variance_upper_bound_strong_1_id_2=65535
  9619. VIP_var_sigama_nr_variance_upper_bound_strong_2_id_2=65535
  9620. VIP_var_sigama_nr_base_id_2=25
  9621. VIP_var_sigama_nr_bound_id_2=110
  9622. VIP_var_sigama_nr_variance_th_0_id_2=2
  9623. VIP_var_sigama_nr_variance_th_1_id_2=5
  9624. VIP_var_sigama_nr_variance_th_2_id_2=8
  9625. VIP_var_sigama_nr_variance_th_3_id_2=11
  9626. VIP_var_sigama_nr_variance_th_4_id_2=14
  9627. VIP_var_sigama_nr_variance_th_5_id_2=17
  9628. VIP_var_sigama_nr_variance_th_6_id_2=20
  9629. VIP_var_sigama_nr_motion_th_0_id_2=5
  9630. VIP_var_sigama_nr_motion_th_1_id_2=25
  9631. VIP_var_sigama_nr_motion_th_2_id_2=50
  9632. VIP_var_sigama_nr_motion_th_3_id_2=100
  9633. VIP_var_sigama_nr_motion_th_4_id_2=150
  9634. VIP_var_sigama_nr_motion_th_5_id_2=200
  9635. VIP_var_sigama_nr_motion_th_6_id_2=250
  9636. VIP_var_sigama_nr_operate_id_3=0
  9637. VIP_var_sigama_nr_mode_id_3=0
  9638. VIP_var_sigama_nr_weak_region_temporal_id_3=1
  9639. VIP_var_sigama_nr_weak_region_var_scale_id_3=10
  9640. VIP_var_sigama_nr_weak_region_gain_id_3=6
  9641. VIP_var_sigama_nr_weak_region_v_mot_scale_id_3=2
  9642. VIP_var_sigama_nr_weak_region_v_ref_scale_id_3=2
  9643. VIP_var_sigama_nr_normal_region_temporal_id_3=1
  9644. VIP_var_sigama_nr_normal_region_var_scale_id_3=10
  9645. VIP_var_sigama_nr_normal_region_gain_id_3=6
  9646. VIP_var_sigama_nr_normal_region_v_mot_scale_id_3=2
  9647. VIP_var_sigama_nr_normal_region_v_ref_scale_id_3=2
  9648. VIP_var_sigama_nr_strong_region_temporal_id_3=1
  9649. VIP_var_sigama_nr_strong_region_var_scale_id_3=10
  9650. VIP_var_sigama_nr_strong_region_gain_id_3=6
  9651. VIP_var_sigama_nr_strong_region_v_mot_scale_id_3=2
  9652. VIP_var_sigama_nr_strong_region_v_ref_scale_id_3=2
  9653. VIP_var_sigama_nr_complexity_level_low_th_id_3=10
  9654. VIP_var_sigama_nr_complexity_level_middle_th_id_3=60
  9655. VIP_var_sigama_nr_complexity_level_high_th_id_3=255
  9656. VIP_var_sigama_nr_adaptive_static_th_weak_id_3=255
  9657. VIP_var_sigama_nr_adaptive_static_th_normal_id_3=255
  9658. VIP_var_sigama_nr_adaptive_static_th_strong_id_3=255
  9659. VIP_var_sigama_nr_adaptive_static_th_low_noise_th_id_3=10
  9660. VIP_var_sigama_nr_adaptive_static_th_static_th_id_3=5
  9661. VIP_var_sigama_nr_adaptive_static_th_detail_th_id_3=100
  9662. VIP_var_sigama_nr_adaptive_static_th_complex_scale_id_3=7
  9663. VIP_var_sigama_nr_adaptive_static_th_var_scale_id_3=8
  9664. VIP_var_sigama_nr_adaptive_static_th_detail_scale_id_3=10
  9665. VIP_var_sigama_nr_post_tnr_weak_id_3=4
  9666. VIP_var_sigama_nr_post_tnr_normal_id_3=4
  9667. VIP_var_sigama_nr_post_tnr_strong_id_3=2
  9668. VIP_var_sigama_nr_variance_upper_bound_weak_1_id_3=65535
  9669. VIP_var_sigama_nr_variance_upper_bound_weak_2_id_3=65535
  9670. VIP_var_sigama_nr_variance_upper_bound_normal_1_id_3=65535
  9671. VIP_var_sigama_nr_variance_upper_bound_normal_2_id_3=65535
  9672. VIP_var_sigama_nr_variance_upper_bound_strong_1_id_3=65535
  9673. VIP_var_sigama_nr_variance_upper_bound_strong_2_id_3=65535
  9674. VIP_var_sigama_nr_base_id_3=25
  9675. VIP_var_sigama_nr_bound_id_3=110
  9676. VIP_var_sigama_nr_variance_th_0_id_3=2
  9677. VIP_var_sigama_nr_variance_th_1_id_3=5
  9678. VIP_var_sigama_nr_variance_th_2_id_3=8
  9679. VIP_var_sigama_nr_variance_th_3_id_3=11
  9680. VIP_var_sigama_nr_variance_th_4_id_3=14
  9681. VIP_var_sigama_nr_variance_th_5_id_3=17
  9682. VIP_var_sigama_nr_variance_th_6_id_3=20
  9683. VIP_var_sigama_nr_motion_th_0_id_3=5
  9684. VIP_var_sigama_nr_motion_th_1_id_3=25
  9685. VIP_var_sigama_nr_motion_th_2_id_3=50
  9686. VIP_var_sigama_nr_motion_th_3_id_3=100
  9687. VIP_var_sigama_nr_motion_th_4_id_3=150
  9688. VIP_var_sigama_nr_motion_th_5_id_3=200
  9689. VIP_var_sigama_nr_motion_th_6_id_3=250
  9690. VIP_var_sigama_nr_operate_id_4=0
  9691. VIP_var_sigama_nr_mode_id_4=0
  9692. VIP_var_sigama_nr_weak_region_temporal_id_4=1
  9693. VIP_var_sigama_nr_weak_region_var_scale_id_4=10
  9694. VIP_var_sigama_nr_weak_region_gain_id_4=6
  9695. VIP_var_sigama_nr_weak_region_v_mot_scale_id_4=2
  9696. VIP_var_sigama_nr_weak_region_v_ref_scale_id_4=2
  9697. VIP_var_sigama_nr_normal_region_temporal_id_4=1
  9698. VIP_var_sigama_nr_normal_region_var_scale_id_4=10
  9699. VIP_var_sigama_nr_normal_region_gain_id_4=6
  9700. VIP_var_sigama_nr_normal_region_v_mot_scale_id_4=2
  9701. VIP_var_sigama_nr_normal_region_v_ref_scale_id_4=2
  9702. VIP_var_sigama_nr_strong_region_temporal_id_4=1
  9703. VIP_var_sigama_nr_strong_region_var_scale_id_4=10
  9704. VIP_var_sigama_nr_strong_region_gain_id_4=6
  9705. VIP_var_sigama_nr_strong_region_v_mot_scale_id_4=2
  9706. VIP_var_sigama_nr_strong_region_v_ref_scale_id_4=2
  9707. VIP_var_sigama_nr_complexity_level_low_th_id_4=10
  9708. VIP_var_sigama_nr_complexity_level_middle_th_id_4=60
  9709. VIP_var_sigama_nr_complexity_level_high_th_id_4=255
  9710. VIP_var_sigama_nr_adaptive_static_th_weak_id_4=255
  9711. VIP_var_sigama_nr_adaptive_static_th_normal_id_4=255
  9712. VIP_var_sigama_nr_adaptive_static_th_strong_id_4=255
  9713. VIP_var_sigama_nr_adaptive_static_th_low_noise_th_id_4=10
  9714. VIP_var_sigama_nr_adaptive_static_th_static_th_id_4=5
  9715. VIP_var_sigama_nr_adaptive_static_th_detail_th_id_4=100
  9716. VIP_var_sigama_nr_adaptive_static_th_complex_scale_id_4=7
  9717. VIP_var_sigama_nr_adaptive_static_th_var_scale_id_4=8
  9718. VIP_var_sigama_nr_adaptive_static_th_detail_scale_id_4=10
  9719. VIP_var_sigama_nr_post_tnr_weak_id_4=4
  9720. VIP_var_sigama_nr_post_tnr_normal_id_4=4
  9721. VIP_var_sigama_nr_post_tnr_strong_id_4=2
  9722. VIP_var_sigama_nr_variance_upper_bound_weak_1_id_4=65535
  9723. VIP_var_sigama_nr_variance_upper_bound_weak_2_id_4=65535
  9724. VIP_var_sigama_nr_variance_upper_bound_normal_1_id_4=65535
  9725. VIP_var_sigama_nr_variance_upper_bound_normal_2_id_4=65535
  9726. VIP_var_sigama_nr_variance_upper_bound_strong_1_id_4=65535
  9727. VIP_var_sigama_nr_variance_upper_bound_strong_2_id_4=65535
  9728. VIP_var_sigama_nr_base_id_4=25
  9729. VIP_var_sigama_nr_bound_id_4=110
  9730. VIP_var_sigama_nr_variance_th_0_id_4=2
  9731. VIP_var_sigama_nr_variance_th_1_id_4=5
  9732. VIP_var_sigama_nr_variance_th_2_id_4=8
  9733. VIP_var_sigama_nr_variance_th_3_id_4=11
  9734. VIP_var_sigama_nr_variance_th_4_id_4=14
  9735. VIP_var_sigama_nr_variance_th_5_id_4=17
  9736. VIP_var_sigama_nr_variance_th_6_id_4=20
  9737. VIP_var_sigama_nr_motion_th_0_id_4=5
  9738. VIP_var_sigama_nr_motion_th_1_id_4=25
  9739. VIP_var_sigama_nr_motion_th_2_id_4=50
  9740. VIP_var_sigama_nr_motion_th_3_id_4=100
  9741. VIP_var_sigama_nr_motion_th_4_id_4=150
  9742. VIP_var_sigama_nr_motion_th_5_id_4=200
  9743. VIP_var_sigama_nr_motion_th_6_id_4=250
  9744. VIP_var_sigama_nr_operate_id_5=1
  9745. VIP_var_sigama_nr_mode_id_5=0
  9746. VIP_var_sigama_nr_weak_region_temporal_id_5=1
  9747. VIP_var_sigama_nr_weak_region_var_scale_id_5=10
  9748. VIP_var_sigama_nr_weak_region_gain_id_5=6
  9749. VIP_var_sigama_nr_weak_region_v_mot_scale_id_5=2
  9750. VIP_var_sigama_nr_weak_region_v_ref_scale_id_5=2
  9751. VIP_var_sigama_nr_normal_region_temporal_id_5=1
  9752. VIP_var_sigama_nr_normal_region_var_scale_id_5=10
  9753. VIP_var_sigama_nr_normal_region_gain_id_5=6
  9754. VIP_var_sigama_nr_normal_region_v_mot_scale_id_5=2
  9755. VIP_var_sigama_nr_normal_region_v_ref_scale_id_5=2
  9756. VIP_var_sigama_nr_strong_region_temporal_id_5=1
  9757. VIP_var_sigama_nr_strong_region_var_scale_id_5=10
  9758. VIP_var_sigama_nr_strong_region_gain_id_5=6
  9759. VIP_var_sigama_nr_strong_region_v_mot_scale_id_5=2
  9760. VIP_var_sigama_nr_strong_region_v_ref_scale_id_5=2
  9761. VIP_var_sigama_nr_complexity_level_low_th_id_5=10
  9762. VIP_var_sigama_nr_complexity_level_middle_th_id_5=60
  9763. VIP_var_sigama_nr_complexity_level_high_th_id_5=255
  9764. VIP_var_sigama_nr_adaptive_static_th_weak_id_5=255
  9765. VIP_var_sigama_nr_adaptive_static_th_normal_id_5=255
  9766. VIP_var_sigama_nr_adaptive_static_th_strong_id_5=255
  9767. VIP_var_sigama_nr_adaptive_static_th_low_noise_th_id_5=10
  9768. VIP_var_sigama_nr_adaptive_static_th_static_th_id_5=5
  9769. VIP_var_sigama_nr_adaptive_static_th_detail_th_id_5=100
  9770. VIP_var_sigama_nr_adaptive_static_th_complex_scale_id_5=7
  9771. VIP_var_sigama_nr_adaptive_static_th_var_scale_id_5=8
  9772. VIP_var_sigama_nr_adaptive_static_th_detail_scale_id_5=10
  9773. VIP_var_sigama_nr_post_tnr_weak_id_5=4
  9774. VIP_var_sigama_nr_post_tnr_normal_id_5=4
  9775. VIP_var_sigama_nr_post_tnr_strong_id_5=2
  9776. VIP_var_sigama_nr_variance_upper_bound_weak_1_id_5=65535
  9777. VIP_var_sigama_nr_variance_upper_bound_weak_2_id_5=65535
  9778. VIP_var_sigama_nr_variance_upper_bound_normal_1_id_5=65535
  9779. VIP_var_sigama_nr_variance_upper_bound_normal_2_id_5=65535
  9780. VIP_var_sigama_nr_variance_upper_bound_strong_1_id_5=65535
  9781. VIP_var_sigama_nr_variance_upper_bound_strong_2_id_5=65535
  9782. VIP_var_sigama_nr_base_id_5=25
  9783. VIP_var_sigama_nr_bound_id_5=110
  9784. VIP_var_sigama_nr_variance_th_0_id_5=2
  9785. VIP_var_sigama_nr_variance_th_1_id_5=5
  9786. VIP_var_sigama_nr_variance_th_2_id_5=8
  9787. VIP_var_sigama_nr_variance_th_3_id_5=11
  9788. VIP_var_sigama_nr_variance_th_4_id_5=14
  9789. VIP_var_sigama_nr_variance_th_5_id_5=17
  9790. VIP_var_sigama_nr_variance_th_6_id_5=20
  9791. VIP_var_sigama_nr_motion_th_0_id_5=5
  9792. VIP_var_sigama_nr_motion_th_1_id_5=25
  9793. VIP_var_sigama_nr_motion_th_2_id_5=50
  9794. VIP_var_sigama_nr_motion_th_3_id_5=100
  9795. VIP_var_sigama_nr_motion_th_4_id_5=150
  9796. VIP_var_sigama_nr_motion_th_5_id_5=200
  9797. VIP_var_sigama_nr_motion_th_6_id_5=250
  9798. VIP_var_sigama_nr_operate_id_6=0
  9799. VIP_var_sigama_nr_mode_id_6=0
  9800. VIP_var_sigama_nr_weak_region_temporal_id_6=1
  9801. VIP_var_sigama_nr_weak_region_var_scale_id_6=10
  9802. VIP_var_sigama_nr_weak_region_gain_id_6=6
  9803. VIP_var_sigama_nr_weak_region_v_mot_scale_id_6=2
  9804. VIP_var_sigama_nr_weak_region_v_ref_scale_id_6=2
  9805. VIP_var_sigama_nr_normal_region_temporal_id_6=1
  9806. VIP_var_sigama_nr_normal_region_var_scale_id_6=10
  9807. VIP_var_sigama_nr_normal_region_gain_id_6=6
  9808. VIP_var_sigama_nr_normal_region_v_mot_scale_id_6=2
  9809. VIP_var_sigama_nr_normal_region_v_ref_scale_id_6=2
  9810. VIP_var_sigama_nr_strong_region_temporal_id_6=1
  9811. VIP_var_sigama_nr_strong_region_var_scale_id_6=10
  9812. VIP_var_sigama_nr_strong_region_gain_id_6=6
  9813. VIP_var_sigama_nr_strong_region_v_mot_scale_id_6=2
  9814. VIP_var_sigama_nr_strong_region_v_ref_scale_id_6=2
  9815. VIP_var_sigama_nr_complexity_level_low_th_id_6=10
  9816. VIP_var_sigama_nr_complexity_level_middle_th_id_6=60
  9817. VIP_var_sigama_nr_complexity_level_high_th_id_6=255
  9818. VIP_var_sigama_nr_adaptive_static_th_weak_id_6=255
  9819. VIP_var_sigama_nr_adaptive_static_th_normal_id_6=255
  9820. VIP_var_sigama_nr_adaptive_static_th_strong_id_6=255
  9821. VIP_var_sigama_nr_adaptive_static_th_low_noise_th_id_6=10
  9822. VIP_var_sigama_nr_adaptive_static_th_static_th_id_6=5
  9823. VIP_var_sigama_nr_adaptive_static_th_detail_th_id_6=100
  9824. VIP_var_sigama_nr_adaptive_static_th_complex_scale_id_6=7
  9825. VIP_var_sigama_nr_adaptive_static_th_var_scale_id_6=8
  9826. VIP_var_sigama_nr_adaptive_static_th_detail_scale_id_6=10
  9827. VIP_var_sigama_nr_post_tnr_weak_id_6=4
  9828. VIP_var_sigama_nr_post_tnr_normal_id_6=4
  9829. VIP_var_sigama_nr_post_tnr_strong_id_6=2
  9830. VIP_var_sigama_nr_variance_upper_bound_weak_1_id_6=65535
  9831. VIP_var_sigama_nr_variance_upper_bound_weak_2_id_6=65535
  9832. VIP_var_sigama_nr_variance_upper_bound_normal_1_id_6=65535
  9833. VIP_var_sigama_nr_variance_upper_bound_normal_2_id_6=65535
  9834. VIP_var_sigama_nr_variance_upper_bound_strong_1_id_6=65535
  9835. VIP_var_sigama_nr_variance_upper_bound_strong_2_id_6=65535
  9836. VIP_var_sigama_nr_base_id_6=25
  9837. VIP_var_sigama_nr_bound_id_6=110
  9838. VIP_var_sigama_nr_variance_th_0_id_6=2
  9839. VIP_var_sigama_nr_variance_th_1_id_6=5
  9840. VIP_var_sigama_nr_variance_th_2_id_6=8
  9841. VIP_var_sigama_nr_variance_th_3_id_6=11
  9842. VIP_var_sigama_nr_variance_th_4_id_6=14
  9843. VIP_var_sigama_nr_variance_th_5_id_6=17
  9844. VIP_var_sigama_nr_variance_th_6_id_6=20
  9845. VIP_var_sigama_nr_motion_th_0_id_6=5
  9846. VIP_var_sigama_nr_motion_th_1_id_6=25
  9847. VIP_var_sigama_nr_motion_th_2_id_6=50
  9848. VIP_var_sigama_nr_motion_th_3_id_6=100
  9849. VIP_var_sigama_nr_motion_th_4_id_6=150
  9850. VIP_var_sigama_nr_motion_th_5_id_6=200
  9851. VIP_var_sigama_nr_motion_th_6_id_6=250
  9852. VIP_var_sigama_nr_operate_id_7=0
  9853. VIP_var_sigama_nr_mode_id_7=0
  9854. VIP_var_sigama_nr_weak_region_temporal_id_7=1
  9855. VIP_var_sigama_nr_weak_region_var_scale_id_7=10
  9856. VIP_var_sigama_nr_weak_region_gain_id_7=6
  9857. VIP_var_sigama_nr_weak_region_v_mot_scale_id_7=2
  9858. VIP_var_sigama_nr_weak_region_v_ref_scale_id_7=2
  9859. VIP_var_sigama_nr_normal_region_temporal_id_7=1
  9860. VIP_var_sigama_nr_normal_region_var_scale_id_7=10
  9861. VIP_var_sigama_nr_normal_region_gain_id_7=6
  9862. VIP_var_sigama_nr_normal_region_v_mot_scale_id_7=2
  9863. VIP_var_sigama_nr_normal_region_v_ref_scale_id_7=2
  9864. VIP_var_sigama_nr_strong_region_temporal_id_7=1
  9865. VIP_var_sigama_nr_strong_region_var_scale_id_7=10
  9866. VIP_var_sigama_nr_strong_region_gain_id_7=6
  9867. VIP_var_sigama_nr_strong_region_v_mot_scale_id_7=2
  9868. VIP_var_sigama_nr_strong_region_v_ref_scale_id_7=2
  9869. VIP_var_sigama_nr_complexity_level_low_th_id_7=10
  9870. VIP_var_sigama_nr_complexity_level_middle_th_id_7=60
  9871. VIP_var_sigama_nr_complexity_level_high_th_id_7=255
  9872. VIP_var_sigama_nr_adaptive_static_th_weak_id_7=255
  9873. VIP_var_sigama_nr_adaptive_static_th_normal_id_7=255
  9874. VIP_var_sigama_nr_adaptive_static_th_strong_id_7=255
  9875. VIP_var_sigama_nr_adaptive_static_th_low_noise_th_id_7=10
  9876. VIP_var_sigama_nr_adaptive_static_th_static_th_id_7=5
  9877. VIP_var_sigama_nr_adaptive_static_th_detail_th_id_7=100
  9878. VIP_var_sigama_nr_adaptive_static_th_complex_scale_id_7=7
  9879. VIP_var_sigama_nr_adaptive_static_th_var_scale_id_7=8
  9880. VIP_var_sigama_nr_adaptive_static_th_detail_scale_id_7=10
  9881. VIP_var_sigama_nr_post_tnr_weak_id_7=4
  9882. VIP_var_sigama_nr_post_tnr_normal_id_7=4
  9883. VIP_var_sigama_nr_post_tnr_strong_id_7=2
  9884. VIP_var_sigama_nr_variance_upper_bound_weak_1_id_7=65535
  9885. VIP_var_sigama_nr_variance_upper_bound_weak_2_id_7=65535
  9886. VIP_var_sigama_nr_variance_upper_bound_normal_1_id_7=65535
  9887. VIP_var_sigama_nr_variance_upper_bound_normal_2_id_7=65535
  9888. VIP_var_sigama_nr_variance_upper_bound_strong_1_id_7=65535
  9889. VIP_var_sigama_nr_variance_upper_bound_strong_2_id_7=65535
  9890. VIP_var_sigama_nr_base_id_7=25
  9891. VIP_var_sigama_nr_bound_id_7=110
  9892. VIP_var_sigama_nr_variance_th_0_id_7=2
  9893. VIP_var_sigama_nr_variance_th_1_id_7=5
  9894. VIP_var_sigama_nr_variance_th_2_id_7=8
  9895. VIP_var_sigama_nr_variance_th_3_id_7=11
  9896. VIP_var_sigama_nr_variance_th_4_id_7=14
  9897. VIP_var_sigama_nr_variance_th_5_id_7=17
  9898. VIP_var_sigama_nr_variance_th_6_id_7=20
  9899. VIP_var_sigama_nr_motion_th_0_id_7=5
  9900. VIP_var_sigama_nr_motion_th_1_id_7=25
  9901. VIP_var_sigama_nr_motion_th_2_id_7=50
  9902. VIP_var_sigama_nr_motion_th_3_id_7=100
  9903. VIP_var_sigama_nr_motion_th_4_id_7=150
  9904. VIP_var_sigama_nr_motion_th_5_id_7=200
  9905. VIP_var_sigama_nr_motion_th_6_id_7=250
  9906. VIP_var_UV_coring_opt_id_0=0x0
  9907. VIP_var_UV_coring_2_value_id_0=0xe6290644
  9908. VIP_var_UV_coring_3_value_id_0=0xe6290644
  9909. VIP_var_UV_coring_lu_th_lo_id_0=0x1e
  9910. VIP_var_UV_coring_lu_th_lo_1_id_0=0x80
  9911. VIP_var_UV_coring_lu_th_hi_id_0=0x3c
  9912. VIP_var_UV_coring_lu_th_hi_1_id_0=0xc8
  9913. VIP_var_UV_coring_blend_slope_id_0=0x8888
  9914. VIP_var_UV_coring_blend_slope_1_id_0=0x38e3
  9915. VIP_var_UV_coring_opt_id_1=0x0
  9916. VIP_var_UV_coring_2_value_id_1=0xe6290644
  9917. VIP_var_UV_coring_3_value_id_1=0xe6290644
  9918. VIP_var_UV_coring_lu_th_lo_id_1=0x20
  9919. VIP_var_UV_coring_lu_th_lo_1_id_1=0x40
  9920. VIP_var_UV_coring_lu_th_hi_id_1=0x20
  9921. VIP_var_UV_coring_lu_th_hi_1_id_1=0x40
  9922. VIP_var_UV_coring_blend_slope_id_1=0x8000
  9923. VIP_var_UV_coring_blend_slope_1_id_1=0x8000
  9924. VIP_var_UV_coring_opt_id_2=0x1
  9925. VIP_var_UV_coring_2_value_id_2=0xe628f529
  9926. VIP_var_UV_coring_3_value_id_2=0xe6290644
  9927. VIP_var_UV_coring_lu_th_lo_id_2=0x1e
  9928. VIP_var_UV_coring_lu_th_lo_1_id_2=0x80
  9929. VIP_var_UV_coring_lu_th_hi_id_2=0x3c
  9930. VIP_var_UV_coring_lu_th_hi_1_id_2=0xc8
  9931. VIP_var_UV_coring_blend_slope_id_2=0x8888
  9932. VIP_var_UV_coring_blend_slope_1_id_2=0x38e3
  9933. VIP_var_UV_coring_opt_id_3=0x0
  9934. VIP_var_UV_coring_2_value_id_3=0xe6290644
  9935. VIP_var_UV_coring_3_value_id_3=0xe6290644
  9936. VIP_var_UV_coring_lu_th_lo_id_3=0x20
  9937. VIP_var_UV_coring_lu_th_lo_1_id_3=0x40
  9938. VIP_var_UV_coring_lu_th_hi_id_3=0x20
  9939. VIP_var_UV_coring_lu_th_hi_1_id_3=0x40
  9940. VIP_var_UV_coring_blend_slope_id_3=0x8000
  9941. VIP_var_UV_coring_blend_slope_1_id_3=0x8000
  9942. VIP_var_UV_coring_opt_id_4=0x1
  9943. VIP_var_UV_coring_2_value_id_4=0xe62905bb
  9944. VIP_var_UV_coring_3_value_id_4=0xe6290644
  9945. VIP_var_UV_coring_lu_th_lo_id_4=0x1e
  9946. VIP_var_UV_coring_lu_th_lo_1_id_4=0x80
  9947. VIP_var_UV_coring_lu_th_hi_id_4=0x3c
  9948. VIP_var_UV_coring_lu_th_hi_1_id_4=0xc8
  9949. VIP_var_UV_coring_blend_slope_id_4=0x8888
  9950. VIP_var_UV_coring_blend_slope_1_id_4=0x38e3
  9951. VIP_var_UV_coring_opt_id_5=0x0
  9952. VIP_var_UV_coring_2_value_id_5=0xe6290644
  9953. VIP_var_UV_coring_3_value_id_5=0xe6290644
  9954. VIP_var_UV_coring_lu_th_lo_id_5=0x20
  9955. VIP_var_UV_coring_lu_th_lo_1_id_5=0x40
  9956. VIP_var_UV_coring_lu_th_hi_id_5=0x20
  9957. VIP_var_UV_coring_lu_th_hi_1_id_5=0x40
  9958. VIP_var_UV_coring_blend_slope_id_5=0x8000
  9959. VIP_var_UV_coring_blend_slope_1_id_5=0x8000
  9960. VIP_var_UV_coring_opt_id_6=0x0
  9961. VIP_var_UV_coring_2_value_id_6=0xe6290644
  9962. VIP_var_UV_coring_3_value_id_6=0xe6290644
  9963. VIP_var_UV_coring_lu_th_lo_id_6=0x20
  9964. VIP_var_UV_coring_lu_th_lo_1_id_6=0x40
  9965. VIP_var_UV_coring_lu_th_hi_id_6=0x20
  9966. VIP_var_UV_coring_lu_th_hi_1_id_6=0x40
  9967. VIP_var_UV_coring_blend_slope_id_6=0x8000
  9968. VIP_var_UV_coring_blend_slope_1_id_6=0x8000
  9969. VIP_var_UV_coring_opt_id_7=0x0
  9970. VIP_var_UV_coring_2_value_id_7=0xe6290644
  9971. VIP_var_UV_coring_3_value_id_7=0xe6290644
  9972. VIP_var_UV_coring_lu_th_lo_id_7=0x20
  9973. VIP_var_UV_coring_lu_th_lo_1_id_7=0x40
  9974. VIP_var_UV_coring_lu_th_hi_id_7=0x20
  9975. VIP_var_UV_coring_lu_th_hi_1_id_7=0x40
  9976. VIP_var_UV_coring_blend_slope_id_7=0x8000
  9977. VIP_var_UV_coring_blend_slope_1_id_7=0x8000
  9978. VIP_var_new_sharp_predcti_gain_lp_0percent_id_0=-255
  9979. VIP_var_new_sharp_predcti_gain_lp_50percent_id_0=1
  9980. VIP_var_new_sharp_predcti_gain_lp_100percent_id_0=-255
  9981. VIP_var_new_sharp_predcti_slp_lp_0percent_id_0=0
  9982. VIP_var_new_sharp_predcti_slp_lp_50percent_id_0=0
  9983. VIP_var_new_sharp_predcti_slp_lp_100percent_id_0=0
  9984. VIP_var_new_sharp_predcti_gain_lp_0percent_id_1=-255
  9985. VIP_var_new_sharp_predcti_gain_lp_50percent_id_1=-255
  9986. VIP_var_new_sharp_predcti_gain_lp_100percent_id_1=-255
  9987. VIP_var_new_sharp_predcti_slp_lp_0percent_id_1=0
  9988. VIP_var_new_sharp_predcti_slp_lp_50percent_id_1=0
  9989. VIP_var_new_sharp_predcti_slp_lp_100percent_id_1=0
  9990. VIP_var_new_sharp_predcti_gain_lp_0percent_id_2=-255
  9991. VIP_var_new_sharp_predcti_gain_lp_50percent_id_2=1
  9992. VIP_var_new_sharp_predcti_gain_lp_100percent_id_2=-255
  9993. VIP_var_new_sharp_predcti_slp_lp_0percent_id_2=0
  9994. VIP_var_new_sharp_predcti_slp_lp_50percent_id_2=0
  9995. VIP_var_new_sharp_predcti_slp_lp_100percent_id_2=0
  9996. VIP_var_new_sharp_predcti_gain_lp_0percent_id_3=-255
  9997. VIP_var_new_sharp_predcti_gain_lp_50percent_id_3=-255
  9998. VIP_var_new_sharp_predcti_gain_lp_100percent_id_3=-255
  9999. VIP_var_new_sharp_predcti_slp_lp_0percent_id_3=0
  10000. VIP_var_new_sharp_predcti_slp_lp_50percent_id_3=0
  10001. VIP_var_new_sharp_predcti_slp_lp_100percent_id_3=0
  10002. VIP_var_new_sharp_predcti_gain_lp_0percent_id_4=-255
  10003. VIP_var_new_sharp_predcti_gain_lp_50percent_id_4=1
  10004. VIP_var_new_sharp_predcti_gain_lp_100percent_id_4=-255
  10005. VIP_var_new_sharp_predcti_slp_lp_0percent_id_4=0
  10006. VIP_var_new_sharp_predcti_slp_lp_50percent_id_4=0
  10007. VIP_var_new_sharp_predcti_slp_lp_100percent_id_4=0
  10008. VIP_var_new_sharp_predcti_gain_lp_0percent_id_5=-255
  10009. VIP_var_new_sharp_predcti_gain_lp_50percent_id_5=-255
  10010. VIP_var_new_sharp_predcti_gain_lp_100percent_id_5=-255
  10011. VIP_var_new_sharp_predcti_slp_lp_0percent_id_5=0
  10012. VIP_var_new_sharp_predcti_slp_lp_50percent_id_5=0
  10013. VIP_var_new_sharp_predcti_slp_lp_100percent_id_5=0
  10014. VIP_var_new_sharp_predcti_gain_lp_0percent_id_6=-255
  10015. VIP_var_new_sharp_predcti_gain_lp_50percent_id_6=1
  10016. VIP_var_new_sharp_predcti_gain_lp_100percent_id_6=-255
  10017. VIP_var_new_sharp_predcti_slp_lp_0percent_id_6=0
  10018. VIP_var_new_sharp_predcti_slp_lp_50percent_id_6=0
  10019. VIP_var_new_sharp_predcti_slp_lp_100percent_id_6=0
  10020. VIP_var_new_sharp_predcti_gain_lp_0percent_id_7=-255
  10021. VIP_var_new_sharp_predcti_gain_lp_50percent_id_7=-255
  10022. VIP_var_new_sharp_predcti_gain_lp_100percent_id_7=-255
  10023. VIP_var_new_sharp_predcti_slp_lp_0percent_id_7=0
  10024. VIP_var_new_sharp_predcti_slp_lp_50percent_id_7=0
  10025. VIP_var_new_sharp_predcti_slp_lp_100percent_id_7=0
  10026. VIP_var_new_sharp_predlti_src_0_3=0x3040703
  10027. VIP_var_new_sharp_predlti_src_4_7=0x2060303
  10028. VIP_var_new_sharp_predlti_src_8_11=0x2050205
  10029. VIP_var_new_sharp_predlti_src_12_15=0x1000003
  10030. VIP_var_new_sharp_predlti_src_16_19=0x1
  10031. VIP_var_new_sharp_predlti_en_id_0=0
  10032. VIP_var_new_sharp_predlti_coef1_id_0=448
  10033. VIP_var_new_sharp_predlti_coef2_id_0=4060
  10034. VIP_var_new_sharp_predlti_coef3_id_0=3865
  10035. VIP_var_new_sharp_predlti_scale_0percent_id_0=0
  10036. VIP_var_new_sharp_predlti_scale_50percent_id_0=0
  10037. VIP_var_new_sharp_predlti_scale_100percent_id_0=0
  10038. VIP_var_new_sharp_predlti_gaintap_0percent_id_0=0
  10039. VIP_var_new_sharp_predlti_gaintap_50percent_id_0=0
  10040. VIP_var_new_sharp_predlti_gaintap_100percent_id_0=0
  10041. VIP_var_new_sharp_predlti_shoottap_0percent_id_0=0
  10042. VIP_var_new_sharp_predlti_shoottap_50percent_id_0=0
  10043. VIP_var_new_sharp_predlti_shoottap_100percent_id_0=0
  10044. VIP_var_new_sharp_predlti_gain0_0percent_id_0=0
  10045. VIP_var_new_sharp_predlti_gain0_50percent_id_0=0
  10046. VIP_var_new_sharp_predlti_gain0_100percent_id_0=130
  10047. VIP_var_new_sharp_predlti_gain1_0percent_id_0=0
  10048. VIP_var_new_sharp_predlti_gain1_50percent_id_0=0
  10049. VIP_var_new_sharp_predlti_gain1_100percent_id_0=130
  10050. VIP_var_new_sharp_predlti_gain2_0percent_id_0=0
  10051. VIP_var_new_sharp_predlti_gain2_50percent_id_0=0
  10052. VIP_var_new_sharp_predlti_gain2_100percent_id_0=130
  10053. VIP_var_new_sharp_predlti_th0_0percent_id_0=0
  10054. VIP_var_new_sharp_predlti_th0_50percent_id_0=0
  10055. VIP_var_new_sharp_predlti_th0_100percent_id_0=23
  10056. VIP_var_new_sharp_predlti_th1_0percent_id_0=0
  10057. VIP_var_new_sharp_predlti_th1_50percent_id_0=39
  10058. VIP_var_new_sharp_predlti_th1_100percent_id_0=180
  10059. VIP_var_new_sharp_predlti_slp0_0percent_id_0=100
  10060. VIP_var_new_sharp_predlti_slp0_50percent_id_0=0
  10061. VIP_var_new_sharp_predlti_slp0_100percent_id_0=0
  10062. VIP_var_new_sharp_predlti_slp1_0percent_id_0=100
  10063. VIP_var_new_sharp_predlti_slp1_50percent_id_0=0
  10064. VIP_var_new_sharp_predlti_slp1_100percent_id_0=0
  10065. VIP_var_new_sharp_predlti_en_id_1=0
  10066. VIP_var_new_sharp_predlti_coef1_id_1=3848
  10067. VIP_var_new_sharp_predlti_coef2_id_1=3888
  10068. VIP_var_new_sharp_predlti_coef3_id_1=3972
  10069. VIP_var_new_sharp_predlti_scale_0percent_id_1=0
  10070. VIP_var_new_sharp_predlti_scale_50percent_id_1=0
  10071. VIP_var_new_sharp_predlti_scale_100percent_id_1=0
  10072. VIP_var_new_sharp_predlti_gaintap_0percent_id_1=2
  10073. VIP_var_new_sharp_predlti_gaintap_50percent_id_1=2
  10074. VIP_var_new_sharp_predlti_gaintap_100percent_id_1=2
  10075. VIP_var_new_sharp_predlti_shoottap_0percent_id_1=0
  10076. VIP_var_new_sharp_predlti_shoottap_50percent_id_1=0
  10077. VIP_var_new_sharp_predlti_shoottap_100percent_id_1=0
  10078. VIP_var_new_sharp_predlti_gain0_0percent_id_1=0
  10079. VIP_var_new_sharp_predlti_gain0_50percent_id_1=96
  10080. VIP_var_new_sharp_predlti_gain0_100percent_id_1=151
  10081. VIP_var_new_sharp_predlti_gain1_0percent_id_1=0
  10082. VIP_var_new_sharp_predlti_gain1_50percent_id_1=96
  10083. VIP_var_new_sharp_predlti_gain1_100percent_id_1=151
  10084. VIP_var_new_sharp_predlti_gain2_0percent_id_1=0
  10085. VIP_var_new_sharp_predlti_gain2_50percent_id_1=64
  10086. VIP_var_new_sharp_predlti_gain2_100percent_id_1=151
  10087. VIP_var_new_sharp_predlti_th0_0percent_id_1=0
  10088. VIP_var_new_sharp_predlti_th0_50percent_id_1=16
  10089. VIP_var_new_sharp_predlti_th0_100percent_id_1=45
  10090. VIP_var_new_sharp_predlti_th1_0percent_id_1=0
  10091. VIP_var_new_sharp_predlti_th1_50percent_id_1=180
  10092. VIP_var_new_sharp_predlti_th1_100percent_id_1=180
  10093. VIP_var_new_sharp_predlti_slp0_0percent_id_1=100
  10094. VIP_var_new_sharp_predlti_slp0_50percent_id_1=100
  10095. VIP_var_new_sharp_predlti_slp0_100percent_id_1=0
  10096. VIP_var_new_sharp_predlti_slp1_0percent_id_1=100
  10097. VIP_var_new_sharp_predlti_slp1_50percent_id_1=100
  10098. VIP_var_new_sharp_predlti_slp1_100percent_id_1=0
  10099. VIP_var_new_sharp_predlti_en_id_2=1
  10100. VIP_var_new_sharp_predlti_coef1_id_2=3591
  10101. VIP_var_new_sharp_predlti_coef2_id_2=256
  10102. VIP_var_new_sharp_predlti_coef3_id_2=4035
  10103. VIP_var_new_sharp_predlti_scale_0percent_id_2=0
  10104. VIP_var_new_sharp_predlti_scale_50percent_id_2=0
  10105. VIP_var_new_sharp_predlti_scale_100percent_id_2=0
  10106. VIP_var_new_sharp_predlti_gaintap_0percent_id_2=2
  10107. VIP_var_new_sharp_predlti_gaintap_50percent_id_2=2
  10108. VIP_var_new_sharp_predlti_gaintap_100percent_id_2=2
  10109. VIP_var_new_sharp_predlti_shoottap_0percent_id_2=0
  10110. VIP_var_new_sharp_predlti_shoottap_50percent_id_2=0
  10111. VIP_var_new_sharp_predlti_shoottap_100percent_id_2=0
  10112. VIP_var_new_sharp_predlti_gain0_0percent_id_2=0
  10113. VIP_var_new_sharp_predlti_gain0_50percent_id_2=0
  10114. VIP_var_new_sharp_predlti_gain0_100percent_id_2=144
  10115. VIP_var_new_sharp_predlti_gain1_0percent_id_2=0
  10116. VIP_var_new_sharp_predlti_gain1_50percent_id_2=80
  10117. VIP_var_new_sharp_predlti_gain1_100percent_id_2=144
  10118. VIP_var_new_sharp_predlti_gain2_0percent_id_2=0
  10119. VIP_var_new_sharp_predlti_gain2_50percent_id_2=30
  10120. VIP_var_new_sharp_predlti_gain2_100percent_id_2=144
  10121. VIP_var_new_sharp_predlti_th0_0percent_id_2=0
  10122. VIP_var_new_sharp_predlti_th0_50percent_id_2=12
  10123. VIP_var_new_sharp_predlti_th0_100percent_id_2=35
  10124. VIP_var_new_sharp_predlti_th1_0percent_id_2=0
  10125. VIP_var_new_sharp_predlti_th1_50percent_id_2=183
  10126. VIP_var_new_sharp_predlti_th1_100percent_id_2=180
  10127. VIP_var_new_sharp_predlti_slp0_0percent_id_2=100
  10128. VIP_var_new_sharp_predlti_slp0_50percent_id_2=192
  10129. VIP_var_new_sharp_predlti_slp0_100percent_id_2=0
  10130. VIP_var_new_sharp_predlti_slp1_0percent_id_2=100
  10131. VIP_var_new_sharp_predlti_slp1_50percent_id_2=57
  10132. VIP_var_new_sharp_predlti_slp1_100percent_id_2=0
  10133. VIP_var_new_sharp_predlti_en_id_3=0
  10134. VIP_var_new_sharp_predlti_coef1_id_3=448
  10135. VIP_var_new_sharp_predlti_coef2_id_3=4060
  10136. VIP_var_new_sharp_predlti_coef3_id_3=3865
  10137. VIP_var_new_sharp_predlti_scale_0percent_id_3=0
  10138. VIP_var_new_sharp_predlti_scale_50percent_id_3=0
  10139. VIP_var_new_sharp_predlti_scale_100percent_id_3=0
  10140. VIP_var_new_sharp_predlti_gaintap_0percent_id_3=2
  10141. VIP_var_new_sharp_predlti_gaintap_50percent_id_3=2
  10142. VIP_var_new_sharp_predlti_gaintap_100percent_id_3=2
  10143. VIP_var_new_sharp_predlti_shoottap_0percent_id_3=0
  10144. VIP_var_new_sharp_predlti_shoottap_50percent_id_3=0
  10145. VIP_var_new_sharp_predlti_shoottap_100percent_id_3=0
  10146. VIP_var_new_sharp_predlti_gain0_0percent_id_3=0
  10147. VIP_var_new_sharp_predlti_gain0_50percent_id_3=120
  10148. VIP_var_new_sharp_predlti_gain0_100percent_id_3=165
  10149. VIP_var_new_sharp_predlti_gain1_0percent_id_3=0
  10150. VIP_var_new_sharp_predlti_gain1_50percent_id_3=120
  10151. VIP_var_new_sharp_predlti_gain1_100percent_id_3=165
  10152. VIP_var_new_sharp_predlti_gain2_0percent_id_3=0
  10153. VIP_var_new_sharp_predlti_gain2_50percent_id_3=0
  10154. VIP_var_new_sharp_predlti_gain2_100percent_id_3=165
  10155. VIP_var_new_sharp_predlti_th0_0percent_id_3=0
  10156. VIP_var_new_sharp_predlti_th0_50percent_id_3=2
  10157. VIP_var_new_sharp_predlti_th0_100percent_id_3=32
  10158. VIP_var_new_sharp_predlti_th1_0percent_id_3=0
  10159. VIP_var_new_sharp_predlti_th1_50percent_id_3=43
  10160. VIP_var_new_sharp_predlti_th1_100percent_id_3=180
  10161. VIP_var_new_sharp_predlti_slp0_0percent_id_3=100
  10162. VIP_var_new_sharp_predlti_slp0_50percent_id_3=0
  10163. VIP_var_new_sharp_predlti_slp0_100percent_id_3=0
  10164. VIP_var_new_sharp_predlti_slp1_0percent_id_3=100
  10165. VIP_var_new_sharp_predlti_slp1_50percent_id_3=240
  10166. VIP_var_new_sharp_predlti_slp1_100percent_id_3=0
  10167. VIP_var_new_sharp_predlti_en_id_4=0
  10168. VIP_var_new_sharp_predlti_coef1_id_4=3848
  10169. VIP_var_new_sharp_predlti_coef2_id_4=3888
  10170. VIP_var_new_sharp_predlti_coef3_id_4=3972
  10171. VIP_var_new_sharp_predlti_scale_0percent_id_4=0
  10172. VIP_var_new_sharp_predlti_scale_50percent_id_4=0
  10173. VIP_var_new_sharp_predlti_scale_100percent_id_4=0
  10174. VIP_var_new_sharp_predlti_gaintap_0percent_id_4=2
  10175. VIP_var_new_sharp_predlti_gaintap_50percent_id_4=2
  10176. VIP_var_new_sharp_predlti_gaintap_100percent_id_4=2
  10177. VIP_var_new_sharp_predlti_shoottap_0percent_id_4=0
  10178. VIP_var_new_sharp_predlti_shoottap_50percent_id_4=0
  10179. VIP_var_new_sharp_predlti_shoottap_100percent_id_4=0
  10180. VIP_var_new_sharp_predlti_gain0_0percent_id_4=0
  10181. VIP_var_new_sharp_predlti_gain0_50percent_id_4=96
  10182. VIP_var_new_sharp_predlti_gain0_100percent_id_4=160
  10183. VIP_var_new_sharp_predlti_gain1_0percent_id_4=0
  10184. VIP_var_new_sharp_predlti_gain1_50percent_id_4=96
  10185. VIP_var_new_sharp_predlti_gain1_100percent_id_4=160
  10186. VIP_var_new_sharp_predlti_gain2_0percent_id_4=0
  10187. VIP_var_new_sharp_predlti_gain2_50percent_id_4=64
  10188. VIP_var_new_sharp_predlti_gain2_100percent_id_4=160
  10189. VIP_var_new_sharp_predlti_th0_0percent_id_4=0
  10190. VIP_var_new_sharp_predlti_th0_50percent_id_4=16
  10191. VIP_var_new_sharp_predlti_th0_100percent_id_4=16
  10192. VIP_var_new_sharp_predlti_th1_0percent_id_4=0
  10193. VIP_var_new_sharp_predlti_th1_50percent_id_4=180
  10194. VIP_var_new_sharp_predlti_th1_100percent_id_4=180
  10195. VIP_var_new_sharp_predlti_slp0_0percent_id_4=100
  10196. VIP_var_new_sharp_predlti_slp0_50percent_id_4=100
  10197. VIP_var_new_sharp_predlti_slp0_100percent_id_4=0
  10198. VIP_var_new_sharp_predlti_slp1_0percent_id_4=100
  10199. VIP_var_new_sharp_predlti_slp1_50percent_id_4=100
  10200. VIP_var_new_sharp_predlti_slp1_100percent_id_4=0
  10201. VIP_var_new_sharp_predlti_en_id_5=1
  10202. VIP_var_new_sharp_predlti_coef1_id_5=448
  10203. VIP_var_new_sharp_predlti_coef2_id_5=4060
  10204. VIP_var_new_sharp_predlti_coef3_id_5=3865
  10205. VIP_var_new_sharp_predlti_scale_0percent_id_5=0
  10206. VIP_var_new_sharp_predlti_scale_50percent_id_5=0
  10207. VIP_var_new_sharp_predlti_scale_100percent_id_5=0
  10208. VIP_var_new_sharp_predlti_gaintap_0percent_id_5=2
  10209. VIP_var_new_sharp_predlti_gaintap_50percent_id_5=2
  10210. VIP_var_new_sharp_predlti_gaintap_100percent_id_5=2
  10211. VIP_var_new_sharp_predlti_shoottap_0percent_id_5=0
  10212. VIP_var_new_sharp_predlti_shoottap_50percent_id_5=0
  10213. VIP_var_new_sharp_predlti_shoottap_100percent_id_5=0
  10214. VIP_var_new_sharp_predlti_gain0_0percent_id_5=0
  10215. VIP_var_new_sharp_predlti_gain0_50percent_id_5=120
  10216. VIP_var_new_sharp_predlti_gain0_100percent_id_5=176
  10217. VIP_var_new_sharp_predlti_gain1_0percent_id_5=0
  10218. VIP_var_new_sharp_predlti_gain1_50percent_id_5=120
  10219. VIP_var_new_sharp_predlti_gain1_100percent_id_5=176
  10220. VIP_var_new_sharp_predlti_gain2_0percent_id_5=0
  10221. VIP_var_new_sharp_predlti_gain2_50percent_id_5=0
  10222. VIP_var_new_sharp_predlti_gain2_100percent_id_5=0
  10223. VIP_var_new_sharp_predlti_th0_0percent_id_5=0
  10224. VIP_var_new_sharp_predlti_th0_50percent_id_5=17
  10225. VIP_var_new_sharp_predlti_th0_100percent_id_5=17
  10226. VIP_var_new_sharp_predlti_th1_0percent_id_5=0
  10227. VIP_var_new_sharp_predlti_th1_50percent_id_5=43
  10228. VIP_var_new_sharp_predlti_th1_100percent_id_5=62
  10229. VIP_var_new_sharp_predlti_slp0_0percent_id_5=100
  10230. VIP_var_new_sharp_predlti_slp0_50percent_id_5=0
  10231. VIP_var_new_sharp_predlti_slp0_100percent_id_5=0
  10232. VIP_var_new_sharp_predlti_slp1_0percent_id_5=100
  10233. VIP_var_new_sharp_predlti_slp1_50percent_id_5=156
  10234. VIP_var_new_sharp_predlti_slp1_100percent_id_5=219
  10235. VIP_var_new_sharp_predlti_en_id_6=1
  10236. VIP_var_new_sharp_predlti_coef1_id_6=448
  10237. VIP_var_new_sharp_predlti_coef2_id_6=4060
  10238. VIP_var_new_sharp_predlti_coef3_id_6=3865
  10239. VIP_var_new_sharp_predlti_scale_0percent_id_6=0
  10240. VIP_var_new_sharp_predlti_scale_50percent_id_6=0
  10241. VIP_var_new_sharp_predlti_scale_100percent_id_6=0
  10242. VIP_var_new_sharp_predlti_gaintap_0percent_id_6=2
  10243. VIP_var_new_sharp_predlti_gaintap_50percent_id_6=2
  10244. VIP_var_new_sharp_predlti_gaintap_100percent_id_6=2
  10245. VIP_var_new_sharp_predlti_shoottap_0percent_id_6=0
  10246. VIP_var_new_sharp_predlti_shoottap_50percent_id_6=0
  10247. VIP_var_new_sharp_predlti_shoottap_100percent_id_6=0
  10248. VIP_var_new_sharp_predlti_gain0_0percent_id_6=0
  10249. VIP_var_new_sharp_predlti_gain0_50percent_id_6=96
  10250. VIP_var_new_sharp_predlti_gain0_100percent_id_6=155
  10251. VIP_var_new_sharp_predlti_gain1_0percent_id_6=0
  10252. VIP_var_new_sharp_predlti_gain1_50percent_id_6=96
  10253. VIP_var_new_sharp_predlti_gain1_100percent_id_6=155
  10254. VIP_var_new_sharp_predlti_gain2_0percent_id_6=0
  10255. VIP_var_new_sharp_predlti_gain2_50percent_id_6=0
  10256. VIP_var_new_sharp_predlti_gain2_100percent_id_6=37
  10257. VIP_var_new_sharp_predlti_th0_0percent_id_6=0
  10258. VIP_var_new_sharp_predlti_th0_50percent_id_6=16
  10259. VIP_var_new_sharp_predlti_th0_100percent_id_6=16
  10260. VIP_var_new_sharp_predlti_th1_0percent_id_6=0
  10261. VIP_var_new_sharp_predlti_th1_50percent_id_6=102
  10262. VIP_var_new_sharp_predlti_th1_100percent_id_6=102
  10263. VIP_var_new_sharp_predlti_slp0_0percent_id_6=100
  10264. VIP_var_new_sharp_predlti_slp0_50percent_id_6=0
  10265. VIP_var_new_sharp_predlti_slp0_100percent_id_6=0
  10266. VIP_var_new_sharp_predlti_slp1_0percent_id_6=100
  10267. VIP_var_new_sharp_predlti_slp1_50percent_id_6=49
  10268. VIP_var_new_sharp_predlti_slp1_100percent_id_6=56
  10269. VIP_var_new_sharp_predlti_en_id_7=0
  10270. VIP_var_new_sharp_predlti_coef1_id_7=448
  10271. VIP_var_new_sharp_predlti_coef2_id_7=4060
  10272. VIP_var_new_sharp_predlti_coef3_id_7=3865
  10273. VIP_var_new_sharp_predlti_scale_0percent_id_7=0
  10274. VIP_var_new_sharp_predlti_scale_50percent_id_7=0
  10275. VIP_var_new_sharp_predlti_scale_100percent_id_7=0
  10276. VIP_var_new_sharp_predlti_gaintap_0percent_id_7=2
  10277. VIP_var_new_sharp_predlti_gaintap_50percent_id_7=2
  10278. VIP_var_new_sharp_predlti_gaintap_100percent_id_7=2
  10279. VIP_var_new_sharp_predlti_shoottap_0percent_id_7=0
  10280. VIP_var_new_sharp_predlti_shoottap_50percent_id_7=0
  10281. VIP_var_new_sharp_predlti_shoottap_100percent_id_7=0
  10282. VIP_var_new_sharp_predlti_gain0_0percent_id_7=0
  10283. VIP_var_new_sharp_predlti_gain0_50percent_id_7=120
  10284. VIP_var_new_sharp_predlti_gain0_100percent_id_7=180
  10285. VIP_var_new_sharp_predlti_gain1_0percent_id_7=0
  10286. VIP_var_new_sharp_predlti_gain1_50percent_id_7=120
  10287. VIP_var_new_sharp_predlti_gain1_100percent_id_7=180
  10288. VIP_var_new_sharp_predlti_gain2_0percent_id_7=0
  10289. VIP_var_new_sharp_predlti_gain2_50percent_id_7=0
  10290. VIP_var_new_sharp_predlti_gain2_100percent_id_7=0
  10291. VIP_var_new_sharp_predlti_th0_0percent_id_7=0
  10292. VIP_var_new_sharp_predlti_th0_50percent_id_7=2
  10293. VIP_var_new_sharp_predlti_th0_100percent_id_7=50
  10294. VIP_var_new_sharp_predlti_th1_0percent_id_7=0
  10295. VIP_var_new_sharp_predlti_th1_50percent_id_7=43
  10296. VIP_var_new_sharp_predlti_th1_100percent_id_7=50
  10297. VIP_var_new_sharp_predlti_slp0_0percent_id_7=100
  10298. VIP_var_new_sharp_predlti_slp0_50percent_id_7=0
  10299. VIP_var_new_sharp_predlti_slp0_100percent_id_7=0
  10300. VIP_var_new_sharp_predlti_slp1_0percent_id_7=100
  10301. VIP_var_new_sharp_predlti_slp1_50percent_id_7=240
  10302. VIP_var_new_sharp_predlti_slp1_100percent_id_7=289
  10303. VIP_var_sd_dpy_filter_y_h5_id_0=16
  10304. VIP_var_sd_dpy_filter_y_h6_id_0=16
  10305. VIP_var_md_dpy_filter_y_h5_id_0=16
  10306. VIP_var_md_dpy_filter_y_h6_id_0=16
  10307. VIP_var_hd_dpy_filter_y_h5_id_0=16
  10308. VIP_var_hd_dpy_filter_y_h6_id_0=16
  10309. VIP_var_sd_dpy_filter_y_h5_id_1=0
  10310. VIP_var_sd_dpy_filter_y_h6_id_1=0
  10311. VIP_var_md_dpy_filter_y_h5_id_1=16
  10312. VIP_var_md_dpy_filter_y_h6_id_1=16
  10313. VIP_var_hd_dpy_filter_y_h5_id_1=16
  10314. VIP_var_hd_dpy_filter_y_h6_id_1=16
  10315. VIP_var_sd_dpy_filter_y_h5_id_2=0
  10316. VIP_var_sd_dpy_filter_y_h6_id_2=0
  10317. VIP_var_md_dpy_filter_y_h5_id_2=0
  10318. VIP_var_md_dpy_filter_y_h6_id_2=0
  10319. VIP_var_hd_dpy_filter_y_h5_id_2=0
  10320. VIP_var_hd_dpy_filter_y_h6_id_2=0
  10321. VIP_var_sd_dpy_filter_y_h5_id_3=0
  10322. VIP_var_sd_dpy_filter_y_h6_id_3=0
  10323. VIP_var_md_dpy_filter_y_h5_id_3=0
  10324. VIP_var_md_dpy_filter_y_h6_id_3=0
  10325. VIP_var_hd_dpy_filter_y_h5_id_3=0
  10326. VIP_var_hd_dpy_filter_y_h6_id_3=0
  10327. VIP_var_sd_dpy_filter_y_h5_id_4=0
  10328. VIP_var_sd_dpy_filter_y_h6_id_4=0
  10329. VIP_var_md_dpy_filter_y_h5_id_4=0
  10330. VIP_var_md_dpy_filter_y_h6_id_4=0
  10331. VIP_var_hd_dpy_filter_y_h5_id_4=0
  10332. VIP_var_hd_dpy_filter_y_h6_id_4=0
  10333. VIP_var_sd_dpy_filter_y_h5_id_5=0
  10334. VIP_var_sd_dpy_filter_y_h6_id_5=0
  10335. VIP_var_md_dpy_filter_y_h5_id_5=16
  10336. VIP_var_md_dpy_filter_y_h6_id_5=16
  10337. VIP_var_hd_dpy_filter_y_h5_id_5=16
  10338. VIP_var_hd_dpy_filter_y_h6_id_5=16
  10339. VIP_var_sd_dpy_filter_y_h5_id_6=0
  10340. VIP_var_sd_dpy_filter_y_h6_id_6=0
  10341. VIP_var_md_dpy_filter_y_h5_id_6=16
  10342. VIP_var_md_dpy_filter_y_h6_id_6=16
  10343. VIP_var_hd_dpy_filter_y_h5_id_6=16
  10344. VIP_var_hd_dpy_filter_y_h6_id_6=16
  10345. VIP_var_sd_dpy_filter_y_h5_id_7=16
  10346. VIP_var_sd_dpy_filter_y_h6_id_7=16
  10347. VIP_var_md_dpy_filter_y_h5_id_7=16
  10348. VIP_var_md_dpy_filter_y_h6_id_7=16
  10349. VIP_var_hd_dpy_filter_y_h5_id_7=16
  10350. VIP_var_hd_dpy_filter_y_h6_id_7=16
  10351. VIP_var_sigama_nr_Misc_Ctl_id_0=34
  10352. VIP_var_sigama_nr_Misc_Ctl_id_1=34
  10353. VIP_var_sigama_nr_Misc_Ctl_id_2=0
  10354. VIP_var_sigama_nr_Misc_Ctl_id_3=0
  10355. VIP_var_sigama_nr_Misc_Ctl_id_4=0
  10356. VIP_var_sigama_nr_Misc_Ctl_id_5=0
  10357. VIP_var_sigama_nr_Misc_Ctl_id_6=0
  10358. VIP_var_sigama_nr_Misc_Ctl_id_7=0
  10359. VIP_TABLE_MAGIC_NUMBER_26=9529
  10360. VIP_var_Peaking_DLTI_src_0_3=0x303
  10361. VIP_var_Peaking_DLTI_src_4_7=0x2060303
  10362. VIP_var_Peaking_DLTI_src_8_11=0x4060206
  10363. VIP_var_Peaking_DLTI_src_12_15=0x1050503
  10364. VIP_var_Peaking_DLTI_src_16_19=0x1
  10365. VIP_var_Peaking_DLTI_Sharp_Select_0percent_id_0=1
  10366. VIP_var_Peaking_DLTI_Sharp_Select_50percent_id_0=0
  10367. VIP_var_Peaking_DLTI_Sharp_Select_100percent_id_0=0
  10368. VIP_var_Peaking_DLTI_xp0_Peaking_0percent_id_0=0
  10369. VIP_var_Peaking_DLTI_xp0_Peaking_50percent_id_0=0
  10370. VIP_var_Peaking_DLTI_xp0_Peaking_100percent_id_0=0
  10371. VIP_var_Peaking_DLTI_xp1_Peaking_0percent_id_0=50
  10372. VIP_var_Peaking_DLTI_xp1_Peaking_50percent_id_0=39
  10373. VIP_var_Peaking_DLTI_xp1_Peaking_100percent_id_0=43
  10374. VIP_var_Peaking_DLTI_xp2_Peaking_0percent_id_0=191
  10375. VIP_var_Peaking_DLTI_xp2_Peaking_50percent_id_0=190
  10376. VIP_var_Peaking_DLTI_xp2_Peaking_100percent_id_0=199
  10377. VIP_var_Peaking_DLTI_xp3_Peaking_0percent_id_0=255
  10378. VIP_var_Peaking_DLTI_xp3_Peaking_50percent_id_0=255
  10379. VIP_var_Peaking_DLTI_xp3_Peaking_100percent_id_0=252
  10380. VIP_var_Peaking_DLTI_yp0_Peaking_0percent_id_0=0
  10381. VIP_var_Peaking_DLTI_yp0_Peaking_50percent_id_0=0
  10382. VIP_var_Peaking_DLTI_yp0_Peaking_100percent_id_0=0
  10383. VIP_var_Peaking_DLTI_yp1_Peaking_0percent_id_0=46
  10384. VIP_var_Peaking_DLTI_yp1_Peaking_50percent_id_0=83
  10385. VIP_var_Peaking_DLTI_yp1_Peaking_100percent_id_0=145
  10386. VIP_var_Peaking_DLTI_yp2_Peaking_0percent_id_0=0
  10387. VIP_var_Peaking_DLTI_yp2_Peaking_50percent_id_0=0
  10388. VIP_var_Peaking_DLTI_yp2_Peaking_100percent_id_0=0
  10389. VIP_var_Peaking_DLTI_mp1_Peaking_0percent_id_0=58
  10390. VIP_var_Peaking_DLTI_mp1_Peaking_50percent_id_0=136
  10391. VIP_var_Peaking_DLTI_mp1_Peaking_100percent_id_0=215
  10392. VIP_var_Peaking_DLTI_mp2_Peaking_0percent_id_0=46
  10393. VIP_var_Peaking_DLTI_mp2_Peaking_50percent_id_0=81
  10394. VIP_var_Peaking_DLTI_mp2_Peaking_100percent_id_0=175
  10395. VIP_var_Peaking_DLTI_xp0_DLTI_0percent_id_0=0
  10396. VIP_var_Peaking_DLTI_xp0_DLTI_50percent_id_0=0
  10397. VIP_var_Peaking_DLTI_xp0_DLTI_100percent_id_0=0
  10398. VIP_var_Peaking_DLTI_xp1_DLTI_0percent_id_0=45
  10399. VIP_var_Peaking_DLTI_xp1_DLTI_50percent_id_0=42
  10400. VIP_var_Peaking_DLTI_xp1_DLTI_100percent_id_0=34
  10401. VIP_var_Peaking_DLTI_xp2_DLTI_0percent_id_0=206
  10402. VIP_var_Peaking_DLTI_xp2_DLTI_50percent_id_0=214
  10403. VIP_var_Peaking_DLTI_xp2_DLTI_100percent_id_0=193
  10404. VIP_var_Peaking_DLTI_xp3_DLTI_0percent_id_0=255
  10405. VIP_var_Peaking_DLTI_xp3_DLTI_50percent_id_0=255
  10406. VIP_var_Peaking_DLTI_xp3_DLTI_100percent_id_0=255
  10407. VIP_var_Peaking_DLTI_yp0_DLTI_0percent_id_0=0
  10408. VIP_var_Peaking_DLTI_yp0_DLTI_50percent_id_0=0
  10409. VIP_var_Peaking_DLTI_yp0_DLTI_100percent_id_0=0
  10410. VIP_var_Peaking_DLTI_yp1_DLTI_0percent_id_0=92
  10411. VIP_var_Peaking_DLTI_yp1_DLTI_50percent_id_0=113
  10412. VIP_var_Peaking_DLTI_yp1_DLTI_100percent_id_0=203
  10413. VIP_var_Peaking_DLTI_yp2_DLTI_0percent_id_0=2
  10414. VIP_var_Peaking_DLTI_yp2_DLTI_50percent_id_0=0
  10415. VIP_var_Peaking_DLTI_yp2_DLTI_100percent_id_0=0
  10416. VIP_var_Peaking_DLTI_mp1_DLTI_0percent_id_0=130
  10417. VIP_var_Peaking_DLTI_mp1_DLTI_50percent_id_0=172
  10418. VIP_var_Peaking_DLTI_mp1_DLTI_100percent_id_0=382
  10419. VIP_var_Peaking_DLTI_mp2_DLTI_0percent_id_0=117
  10420. VIP_var_Peaking_DLTI_mp2_DLTI_50percent_id_0=176
  10421. VIP_var_Peaking_DLTI_mp2_DLTI_100percent_id_0=209
  10422. VIP_var_Peaking_DLTI_Peaking_en_0percent_id_0=1
  10423. VIP_var_Peaking_DLTI_Peaking_en_50percent_id_0=0
  10424. VIP_var_Peaking_DLTI_Peaking_en_100percent_id_0=0
  10425. VIP_var_Peaking_DLTI_DLTI_en_0percent_id_0=1
  10426. VIP_var_Peaking_DLTI_DLTI_en_50percent_id_0=0
  10427. VIP_var_Peaking_DLTI_DLTI_en_100percent_id_0=0
  10428. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_0percent_id_0=0
  10429. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_50percent_id_0=0
  10430. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_100percent_id_0=0
  10431. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_0percent_id_0=5
  10432. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_50percent_id_0=12
  10433. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_100percent_id_0=12
  10434. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_0percent_id_0=0
  10435. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_50percent_id_0=0
  10436. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_100percent_id_0=0
  10437. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_0percent_id_0=0
  10438. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_50percent_id_0=0
  10439. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_100percent_id_0=0
  10440. VIP_var_Peaking_DLTI_Coring_Neg_Peak_0percent_id_0=6
  10441. VIP_var_Peaking_DLTI_Coring_Neg_Peak_50percent_id_0=7
  10442. VIP_var_Peaking_DLTI_Coring_Neg_Peak_100percent_id_0=7
  10443. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_0percent_id_0=0
  10444. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_50percent_id_0=0
  10445. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_100percent_id_0=0
  10446. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_0percent_id_0=1
  10447. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_50percent_id_0=0
  10448. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_100percent_id_0=0
  10449. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_0percent_id_0=0
  10450. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_50percent_id_0=0
  10451. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_100percent_id_0=0
  10452. VIP_var_Peaking_DLTI_HP_Gain_V31_0percent_id_0=0
  10453. VIP_var_Peaking_DLTI_HP_Gain_V31_50percent_id_0=0
  10454. VIP_var_Peaking_DLTI_HP_Gain_V31_100percent_id_0=0
  10455. VIP_var_Peaking_DLTI_HP_Gain_V51_0percent_id_0=5
  10456. VIP_var_Peaking_DLTI_HP_Gain_V51_50percent_id_0=7
  10457. VIP_var_Peaking_DLTI_HP_Gain_V51_100percent_id_0=6
  10458. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_0percent_id_0=1
  10459. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_50percent_id_0=0
  10460. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_100percent_id_0=0
  10461. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_0percent_id_0=1
  10462. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_50percent_id_0=0
  10463. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_100percent_id_0=0
  10464. VIP_var_Peaking_DLTI_Low_Pass_Lti_0percent_id_0=1
  10465. VIP_var_Peaking_DLTI_Low_Pass_Lti_50percent_id_0=0
  10466. VIP_var_Peaking_DLTI_Low_Pass_Lti_100percent_id_0=0
  10467. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_0percent_id_0=1
  10468. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_50percent_id_0=0
  10469. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_100percent_id_0=0
  10470. VIP_var_Peaking_DLTI_Coring_Peak1D_0percent_id_0=12
  10471. VIP_var_Peaking_DLTI_Coring_Peak1D_50percent_id_0=8
  10472. VIP_var_Peaking_DLTI_Coring_Peak1D_100percent_id_0=10
  10473. VIP_var_Peaking_DLTI_Coring_Peak_0percent_id_0=40
  10474. VIP_var_Peaking_DLTI_Coring_Peak_50percent_id_0=36
  10475. VIP_var_Peaking_DLTI_Coring_Peak_100percent_id_0=36
  10476. VIP_var_Peaking_DLTI_Coring_PeakV_0percent_id_0=12
  10477. VIP_var_Peaking_DLTI_Coring_PeakV_50percent_id_0=8
  10478. VIP_var_Peaking_DLTI_Coring_PeakV_100percent_id_0=10
  10479. VIP_var_Peaking_DLTI_Hi_Coring_Peak_0percent_id_0=40
  10480. VIP_var_Peaking_DLTI_Hi_Coring_Peak_50percent_id_0=36
  10481. VIP_var_Peaking_DLTI_Hi_Coring_Peak_100percent_id_0=38
  10482. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_0percent_id_0=0
  10483. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_50percent_id_0=0
  10484. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_100percent_id_0=0
  10485. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_0percent_id_0=0
  10486. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_50percent_id_0=0
  10487. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_100percent_id_0=0
  10488. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_0percent_id_0=6
  10489. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_50percent_id_0=12
  10490. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_100percent_id_0=12
  10491. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_0percent_id_0=0
  10492. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_50percent_id_0=0
  10493. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_100percent_id_0=0
  10494. VIP_var_Peaking_DLTI_Coring_Peak2D_0percent_id_0=16
  10495. VIP_var_Peaking_DLTI_Coring_Peak2D_50percent_id_0=16
  10496. VIP_var_Peaking_DLTI_Coring_Peak2D_100percent_id_0=16
  10497. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_0percent_id_0=2
  10498. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_50percent_id_0=2
  10499. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_100percent_id_0=2
  10500. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_0percent_id_0=2
  10501. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_50percent_id_0=2
  10502. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_100percent_id_0=2
  10503. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_0percent_id_0=32
  10504. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_50percent_id_0=32
  10505. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_100percent_id_0=32
  10506. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_0percent_id_0=0
  10507. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_50percent_id_0=0
  10508. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_100percent_id_0=0
  10509. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_0percent_id_0=1
  10510. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_50percent_id_0=0
  10511. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_100percent_id_0=0
  10512. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_0percent_id_0=1
  10513. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_50percent_id_0=0
  10514. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_100percent_id_0=0
  10515. VIP_var_Peaking_DLTI_BP_Gain_Lti_0percent_id_0=7
  10516. VIP_var_Peaking_DLTI_BP_Gain_Lti_50percent_id_0=0
  10517. VIP_var_Peaking_DLTI_BP_Gain_Lti_100percent_id_0=11
  10518. VIP_var_Peaking_DLTI_EP_Gain_Lti_0percent_id_0=0
  10519. VIP_var_Peaking_DLTI_EP_Gain_Lti_50percent_id_0=10
  10520. VIP_var_Peaking_DLTI_EP_Gain_Lti_100percent_id_0=0
  10521. VIP_var_Peaking_DLTI_HP_Gain_Lti_0percent_id_0=0
  10522. VIP_var_Peaking_DLTI_HP_Gain_Lti_50percent_id_0=0
  10523. VIP_var_Peaking_DLTI_HP_Gain_Lti_100percent_id_0=0
  10524. VIP_var_Peaking_DLTI_St_Sel_0percent_id_0=2
  10525. VIP_var_Peaking_DLTI_St_Sel_50percent_id_0=0
  10526. VIP_var_Peaking_DLTI_St_Sel_100percent_id_0=0
  10527. VIP_var_Peaking_DLTI_Coring_Lti_0percent_id_0=4
  10528. VIP_var_Peaking_DLTI_Coring_Lti_50percent_id_0=0
  10529. VIP_var_Peaking_DLTI_Coring_Lti_100percent_id_0=0
  10530. VIP_var_Peaking_DLTI_Hi_Coring_Lti_0percent_id_0=40
  10531. VIP_var_Peaking_DLTI_Hi_Coring_Lti_50percent_id_0=100
  10532. VIP_var_Peaking_DLTI_Hi_Coring_Lti_100percent_id_0=30
  10533. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_0percent_id_0=1
  10534. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_50percent_id_0=1
  10535. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_100percent_id_0=1
  10536. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_0percent_id_0=1
  10537. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_50percent_id_0=1
  10538. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_100percent_id_0=1
  10539. VIP_var_Peaking_DLTI_Over_Max_Peak_0percent_id_0=64
  10540. VIP_var_Peaking_DLTI_Over_Max_Peak_50percent_id_0=96
  10541. VIP_var_Peaking_DLTI_Over_Max_Peak_100percent_id_0=108
  10542. VIP_var_Peaking_DLTI_Over_Min_Peak_0percent_id_0=48
  10543. VIP_var_Peaking_DLTI_Over_Min_Peak_50percent_id_0=64
  10544. VIP_var_Peaking_DLTI_Over_Min_Peak_100percent_id_0=108
  10545. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_0percent_id_0=3
  10546. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_50percent_id_0=3
  10547. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_100percent_id_0=4
  10548. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_0percent_id_0=3
  10549. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_50percent_id_0=3
  10550. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_100percent_id_0=4
  10551. VIP_var_Peaking_DLTI_Over_Max_Lti_0percent_id_0=148
  10552. VIP_var_Peaking_DLTI_Over_Max_Lti_50percent_id_0=200
  10553. VIP_var_Peaking_DLTI_Over_Max_Lti_100percent_id_0=184
  10554. VIP_var_Peaking_DLTI_Over_Min_Lti_0percent_id_0=148
  10555. VIP_var_Peaking_DLTI_Over_Min_Lti_50percent_id_0=200
  10556. VIP_var_Peaking_DLTI_Over_Min_Lti_100percent_id_0=190
  10557. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_0percent_id_0=5
  10558. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_50percent_id_0=6
  10559. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_100percent_id_0=6
  10560. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_0percent_id_0=5
  10561. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_50percent_id_0=6
  10562. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_100percent_id_0=6
  10563. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_0percent_id_0=2
  10564. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_50percent_id_0=2
  10565. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_100percent_id_0=2
  10566. VIP_var_Peaking_DLTI_Sharp_Select_0percent_id_1=0
  10567. VIP_var_Peaking_DLTI_Sharp_Select_50percent_id_1=0
  10568. VIP_var_Peaking_DLTI_Sharp_Select_100percent_id_1=0
  10569. VIP_var_Peaking_DLTI_xp0_Peaking_0percent_id_1=25
  10570. VIP_var_Peaking_DLTI_xp0_Peaking_50percent_id_1=25
  10571. VIP_var_Peaking_DLTI_xp0_Peaking_100percent_id_1=25
  10572. VIP_var_Peaking_DLTI_xp1_Peaking_0percent_id_1=50
  10573. VIP_var_Peaking_DLTI_xp1_Peaking_50percent_id_1=50
  10574. VIP_var_Peaking_DLTI_xp1_Peaking_100percent_id_1=50
  10575. VIP_var_Peaking_DLTI_xp2_Peaking_0percent_id_1=75
  10576. VIP_var_Peaking_DLTI_xp2_Peaking_50percent_id_1=75
  10577. VIP_var_Peaking_DLTI_xp2_Peaking_100percent_id_1=75
  10578. VIP_var_Peaking_DLTI_xp3_Peaking_0percent_id_1=100
  10579. VIP_var_Peaking_DLTI_xp3_Peaking_50percent_id_1=100
  10580. VIP_var_Peaking_DLTI_xp3_Peaking_100percent_id_1=100
  10581. VIP_var_Peaking_DLTI_yp0_Peaking_0percent_id_1=25
  10582. VIP_var_Peaking_DLTI_yp0_Peaking_50percent_id_1=25
  10583. VIP_var_Peaking_DLTI_yp0_Peaking_100percent_id_1=25
  10584. VIP_var_Peaking_DLTI_yp1_Peaking_0percent_id_1=50
  10585. VIP_var_Peaking_DLTI_yp1_Peaking_50percent_id_1=50
  10586. VIP_var_Peaking_DLTI_yp1_Peaking_100percent_id_1=50
  10587. VIP_var_Peaking_DLTI_yp2_Peaking_0percent_id_1=0
  10588. VIP_var_Peaking_DLTI_yp2_Peaking_50percent_id_1=0
  10589. VIP_var_Peaking_DLTI_yp2_Peaking_100percent_id_1=0
  10590. VIP_var_Peaking_DLTI_mp1_Peaking_0percent_id_1=64
  10591. VIP_var_Peaking_DLTI_mp1_Peaking_50percent_id_1=64
  10592. VIP_var_Peaking_DLTI_mp1_Peaking_100percent_id_1=64
  10593. VIP_var_Peaking_DLTI_mp2_Peaking_0percent_id_1=25
  10594. VIP_var_Peaking_DLTI_mp2_Peaking_50percent_id_1=25
  10595. VIP_var_Peaking_DLTI_mp2_Peaking_100percent_id_1=25
  10596. VIP_var_Peaking_DLTI_xp0_DLTI_0percent_id_1=25
  10597. VIP_var_Peaking_DLTI_xp0_DLTI_50percent_id_1=25
  10598. VIP_var_Peaking_DLTI_xp0_DLTI_100percent_id_1=25
  10599. VIP_var_Peaking_DLTI_xp1_DLTI_0percent_id_1=50
  10600. VIP_var_Peaking_DLTI_xp1_DLTI_50percent_id_1=50
  10601. VIP_var_Peaking_DLTI_xp1_DLTI_100percent_id_1=50
  10602. VIP_var_Peaking_DLTI_xp2_DLTI_0percent_id_1=75
  10603. VIP_var_Peaking_DLTI_xp2_DLTI_50percent_id_1=75
  10604. VIP_var_Peaking_DLTI_xp2_DLTI_100percent_id_1=75
  10605. VIP_var_Peaking_DLTI_xp3_DLTI_0percent_id_1=100
  10606. VIP_var_Peaking_DLTI_xp3_DLTI_50percent_id_1=100
  10607. VIP_var_Peaking_DLTI_xp3_DLTI_100percent_id_1=100
  10608. VIP_var_Peaking_DLTI_yp0_DLTI_0percent_id_1=25
  10609. VIP_var_Peaking_DLTI_yp0_DLTI_50percent_id_1=25
  10610. VIP_var_Peaking_DLTI_yp0_DLTI_100percent_id_1=25
  10611. VIP_var_Peaking_DLTI_yp1_DLTI_0percent_id_1=50
  10612. VIP_var_Peaking_DLTI_yp1_DLTI_50percent_id_1=50
  10613. VIP_var_Peaking_DLTI_yp1_DLTI_100percent_id_1=50
  10614. VIP_var_Peaking_DLTI_yp2_DLTI_0percent_id_1=40
  10615. VIP_var_Peaking_DLTI_yp2_DLTI_50percent_id_1=40
  10616. VIP_var_Peaking_DLTI_yp2_DLTI_100percent_id_1=40
  10617. VIP_var_Peaking_DLTI_mp1_DLTI_0percent_id_1=64
  10618. VIP_var_Peaking_DLTI_mp1_DLTI_50percent_id_1=64
  10619. VIP_var_Peaking_DLTI_mp1_DLTI_100percent_id_1=64
  10620. VIP_var_Peaking_DLTI_mp2_DLTI_0percent_id_1=25
  10621. VIP_var_Peaking_DLTI_mp2_DLTI_50percent_id_1=25
  10622. VIP_var_Peaking_DLTI_mp2_DLTI_100percent_id_1=25
  10623. VIP_var_Peaking_DLTI_Peaking_en_0percent_id_1=0
  10624. VIP_var_Peaking_DLTI_Peaking_en_50percent_id_1=0
  10625. VIP_var_Peaking_DLTI_Peaking_en_100percent_id_1=0
  10626. VIP_var_Peaking_DLTI_DLTI_en_0percent_id_1=0
  10627. VIP_var_Peaking_DLTI_DLTI_en_50percent_id_1=0
  10628. VIP_var_Peaking_DLTI_DLTI_en_100percent_id_1=0
  10629. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_0percent_id_1=1
  10630. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_50percent_id_1=0
  10631. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_100percent_id_1=0
  10632. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_0percent_id_1=0
  10633. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_50percent_id_1=0
  10634. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_100percent_id_1=0
  10635. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_0percent_id_1=0
  10636. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_50percent_id_1=0
  10637. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_100percent_id_1=0
  10638. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_0percent_id_1=0
  10639. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_50percent_id_1=0
  10640. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_100percent_id_1=0
  10641. VIP_var_Peaking_DLTI_Coring_Neg_Peak_0percent_id_1=0
  10642. VIP_var_Peaking_DLTI_Coring_Neg_Peak_50percent_id_1=0
  10643. VIP_var_Peaking_DLTI_Coring_Neg_Peak_100percent_id_1=0
  10644. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_0percent_id_1=0
  10645. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_50percent_id_1=0
  10646. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_100percent_id_1=0
  10647. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_0percent_id_1=0
  10648. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_50percent_id_1=0
  10649. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_100percent_id_1=0
  10650. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_0percent_id_1=0
  10651. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_50percent_id_1=0
  10652. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_100percent_id_1=0
  10653. VIP_var_Peaking_DLTI_HP_Gain_V31_0percent_id_1=0
  10654. VIP_var_Peaking_DLTI_HP_Gain_V31_50percent_id_1=0
  10655. VIP_var_Peaking_DLTI_HP_Gain_V31_100percent_id_1=0
  10656. VIP_var_Peaking_DLTI_HP_Gain_V51_0percent_id_1=0
  10657. VIP_var_Peaking_DLTI_HP_Gain_V51_50percent_id_1=0
  10658. VIP_var_Peaking_DLTI_HP_Gain_V51_100percent_id_1=0
  10659. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_0percent_id_1=0
  10660. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_50percent_id_1=0
  10661. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_100percent_id_1=0
  10662. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_0percent_id_1=0
  10663. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_50percent_id_1=0
  10664. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_100percent_id_1=0
  10665. VIP_var_Peaking_DLTI_Low_Pass_Lti_0percent_id_1=0
  10666. VIP_var_Peaking_DLTI_Low_Pass_Lti_50percent_id_1=0
  10667. VIP_var_Peaking_DLTI_Low_Pass_Lti_100percent_id_1=0
  10668. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_0percent_id_1=0
  10669. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_50percent_id_1=0
  10670. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_100percent_id_1=0
  10671. VIP_var_Peaking_DLTI_Coring_Peak1D_0percent_id_1=0
  10672. VIP_var_Peaking_DLTI_Coring_Peak1D_50percent_id_1=0
  10673. VIP_var_Peaking_DLTI_Coring_Peak1D_100percent_id_1=0
  10674. VIP_var_Peaking_DLTI_Coring_Peak_0percent_id_1=0
  10675. VIP_var_Peaking_DLTI_Coring_Peak_50percent_id_1=0
  10676. VIP_var_Peaking_DLTI_Coring_Peak_100percent_id_1=0
  10677. VIP_var_Peaking_DLTI_Coring_PeakV_0percent_id_1=0
  10678. VIP_var_Peaking_DLTI_Coring_PeakV_50percent_id_1=0
  10679. VIP_var_Peaking_DLTI_Coring_PeakV_100percent_id_1=0
  10680. VIP_var_Peaking_DLTI_Hi_Coring_Peak_0percent_id_1=0
  10681. VIP_var_Peaking_DLTI_Hi_Coring_Peak_50percent_id_1=0
  10682. VIP_var_Peaking_DLTI_Hi_Coring_Peak_100percent_id_1=0
  10683. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_0percent_id_1=0
  10684. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_50percent_id_1=0
  10685. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_100percent_id_1=0
  10686. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_0percent_id_1=0
  10687. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_50percent_id_1=0
  10688. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_100percent_id_1=0
  10689. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_0percent_id_1=0
  10690. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_50percent_id_1=0
  10691. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_100percent_id_1=0
  10692. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_0percent_id_1=0
  10693. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_50percent_id_1=0
  10694. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_100percent_id_1=0
  10695. VIP_var_Peaking_DLTI_Coring_Peak2D_0percent_id_1=0
  10696. VIP_var_Peaking_DLTI_Coring_Peak2D_50percent_id_1=0
  10697. VIP_var_Peaking_DLTI_Coring_Peak2D_100percent_id_1=0
  10698. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_0percent_id_1=0
  10699. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_50percent_id_1=0
  10700. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_100percent_id_1=0
  10701. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_0percent_id_1=0
  10702. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_50percent_id_1=0
  10703. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_100percent_id_1=0
  10704. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_0percent_id_1=0
  10705. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_50percent_id_1=0
  10706. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_100percent_id_1=0
  10707. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_0percent_id_1=0
  10708. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_50percent_id_1=0
  10709. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_100percent_id_1=0
  10710. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_0percent_id_1=0
  10711. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_50percent_id_1=0
  10712. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_100percent_id_1=0
  10713. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_0percent_id_1=0
  10714. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_50percent_id_1=0
  10715. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_100percent_id_1=0
  10716. VIP_var_Peaking_DLTI_BP_Gain_Lti_0percent_id_1=0
  10717. VIP_var_Peaking_DLTI_BP_Gain_Lti_50percent_id_1=0
  10718. VIP_var_Peaking_DLTI_BP_Gain_Lti_100percent_id_1=0
  10719. VIP_var_Peaking_DLTI_EP_Gain_Lti_0percent_id_1=0
  10720. VIP_var_Peaking_DLTI_EP_Gain_Lti_50percent_id_1=0
  10721. VIP_var_Peaking_DLTI_EP_Gain_Lti_100percent_id_1=0
  10722. VIP_var_Peaking_DLTI_HP_Gain_Lti_0percent_id_1=0
  10723. VIP_var_Peaking_DLTI_HP_Gain_Lti_50percent_id_1=0
  10724. VIP_var_Peaking_DLTI_HP_Gain_Lti_100percent_id_1=0
  10725. VIP_var_Peaking_DLTI_St_Sel_0percent_id_1=0
  10726. VIP_var_Peaking_DLTI_St_Sel_50percent_id_1=0
  10727. VIP_var_Peaking_DLTI_St_Sel_100percent_id_1=0
  10728. VIP_var_Peaking_DLTI_Coring_Lti_0percent_id_1=0
  10729. VIP_var_Peaking_DLTI_Coring_Lti_50percent_id_1=0
  10730. VIP_var_Peaking_DLTI_Coring_Lti_100percent_id_1=0
  10731. VIP_var_Peaking_DLTI_Hi_Coring_Lti_0percent_id_1=0
  10732. VIP_var_Peaking_DLTI_Hi_Coring_Lti_50percent_id_1=0
  10733. VIP_var_Peaking_DLTI_Hi_Coring_Lti_100percent_id_1=0
  10734. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_0percent_id_1=0
  10735. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_50percent_id_1=0
  10736. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_100percent_id_1=0
  10737. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_0percent_id_1=0
  10738. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_50percent_id_1=0
  10739. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_100percent_id_1=0
  10740. VIP_var_Peaking_DLTI_Over_Max_Peak_0percent_id_1=0
  10741. VIP_var_Peaking_DLTI_Over_Max_Peak_50percent_id_1=0
  10742. VIP_var_Peaking_DLTI_Over_Max_Peak_100percent_id_1=0
  10743. VIP_var_Peaking_DLTI_Over_Min_Peak_0percent_id_1=0
  10744. VIP_var_Peaking_DLTI_Over_Min_Peak_50percent_id_1=0
  10745. VIP_var_Peaking_DLTI_Over_Min_Peak_100percent_id_1=0
  10746. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_0percent_id_1=0
  10747. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_50percent_id_1=0
  10748. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_100percent_id_1=0
  10749. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_0percent_id_1=0
  10750. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_50percent_id_1=0
  10751. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_100percent_id_1=0
  10752. VIP_var_Peaking_DLTI_Over_Max_Lti_0percent_id_1=0
  10753. VIP_var_Peaking_DLTI_Over_Max_Lti_50percent_id_1=0
  10754. VIP_var_Peaking_DLTI_Over_Max_Lti_100percent_id_1=0
  10755. VIP_var_Peaking_DLTI_Over_Min_Lti_0percent_id_1=0
  10756. VIP_var_Peaking_DLTI_Over_Min_Lti_50percent_id_1=0
  10757. VIP_var_Peaking_DLTI_Over_Min_Lti_100percent_id_1=0
  10758. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_0percent_id_1=0
  10759. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_50percent_id_1=0
  10760. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_100percent_id_1=0
  10761. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_0percent_id_1=0
  10762. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_50percent_id_1=0
  10763. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_100percent_id_1=0
  10764. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_0percent_id_1=0
  10765. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_50percent_id_1=0
  10766. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_100percent_id_1=0
  10767. VIP_var_Peaking_DLTI_Sharp_Select_0percent_id_2=1
  10768. VIP_var_Peaking_DLTI_Sharp_Select_50percent_id_2=0
  10769. VIP_var_Peaking_DLTI_Sharp_Select_100percent_id_2=0
  10770. VIP_var_Peaking_DLTI_xp0_Peaking_0percent_id_2=0
  10771. VIP_var_Peaking_DLTI_xp0_Peaking_50percent_id_2=1
  10772. VIP_var_Peaking_DLTI_xp0_Peaking_100percent_id_2=0
  10773. VIP_var_Peaking_DLTI_xp1_Peaking_0percent_id_2=50
  10774. VIP_var_Peaking_DLTI_xp1_Peaking_50percent_id_2=34
  10775. VIP_var_Peaking_DLTI_xp1_Peaking_100percent_id_2=46
  10776. VIP_var_Peaking_DLTI_xp2_Peaking_0percent_id_2=191
  10777. VIP_var_Peaking_DLTI_xp2_Peaking_50percent_id_2=214
  10778. VIP_var_Peaking_DLTI_xp2_Peaking_100percent_id_2=187
  10779. VIP_var_Peaking_DLTI_xp3_Peaking_0percent_id_2=255
  10780. VIP_var_Peaking_DLTI_xp3_Peaking_50percent_id_2=255
  10781. VIP_var_Peaking_DLTI_xp3_Peaking_100percent_id_2=255
  10782. VIP_var_Peaking_DLTI_yp0_Peaking_0percent_id_2=0
  10783. VIP_var_Peaking_DLTI_yp0_Peaking_50percent_id_2=0
  10784. VIP_var_Peaking_DLTI_yp0_Peaking_100percent_id_2=0
  10785. VIP_var_Peaking_DLTI_yp1_Peaking_0percent_id_2=46
  10786. VIP_var_Peaking_DLTI_yp1_Peaking_50percent_id_2=86
  10787. VIP_var_Peaking_DLTI_yp1_Peaking_100percent_id_2=144
  10788. VIP_var_Peaking_DLTI_yp2_Peaking_0percent_id_2=0
  10789. VIP_var_Peaking_DLTI_yp2_Peaking_50percent_id_2=7
  10790. VIP_var_Peaking_DLTI_yp2_Peaking_100percent_id_2=0
  10791. VIP_var_Peaking_DLTI_mp1_Peaking_0percent_id_2=58
  10792. VIP_var_Peaking_DLTI_mp1_Peaking_50percent_id_2=166
  10793. VIP_var_Peaking_DLTI_mp1_Peaking_100percent_id_2=200
  10794. VIP_var_Peaking_DLTI_mp2_Peaking_0percent_id_2=46
  10795. VIP_var_Peaking_DLTI_mp2_Peaking_50percent_id_2=123
  10796. VIP_var_Peaking_DLTI_mp2_Peaking_100percent_id_2=135
  10797. VIP_var_Peaking_DLTI_xp0_DLTI_0percent_id_2=0
  10798. VIP_var_Peaking_DLTI_xp0_DLTI_50percent_id_2=0
  10799. VIP_var_Peaking_DLTI_xp0_DLTI_100percent_id_2=0
  10800. VIP_var_Peaking_DLTI_xp1_DLTI_0percent_id_2=45
  10801. VIP_var_Peaking_DLTI_xp1_DLTI_50percent_id_2=29
  10802. VIP_var_Peaking_DLTI_xp1_DLTI_100percent_id_2=40
  10803. VIP_var_Peaking_DLTI_xp2_DLTI_0percent_id_2=206
  10804. VIP_var_Peaking_DLTI_xp2_DLTI_50percent_id_2=220
  10805. VIP_var_Peaking_DLTI_xp2_DLTI_100percent_id_2=183
  10806. VIP_var_Peaking_DLTI_xp3_DLTI_0percent_id_2=255
  10807. VIP_var_Peaking_DLTI_xp3_DLTI_50percent_id_2=255
  10808. VIP_var_Peaking_DLTI_xp3_DLTI_100percent_id_2=255
  10809. VIP_var_Peaking_DLTI_yp0_DLTI_0percent_id_2=0
  10810. VIP_var_Peaking_DLTI_yp0_DLTI_50percent_id_2=0
  10811. VIP_var_Peaking_DLTI_yp0_DLTI_100percent_id_2=0
  10812. VIP_var_Peaking_DLTI_yp1_DLTI_0percent_id_2=92
  10813. VIP_var_Peaking_DLTI_yp1_DLTI_50percent_id_2=120
  10814. VIP_var_Peaking_DLTI_yp1_DLTI_100percent_id_2=173
  10815. VIP_var_Peaking_DLTI_yp2_DLTI_0percent_id_2=2
  10816. VIP_var_Peaking_DLTI_yp2_DLTI_50percent_id_2=0
  10817. VIP_var_Peaking_DLTI_yp2_DLTI_100percent_id_2=0
  10818. VIP_var_Peaking_DLTI_mp1_DLTI_0percent_id_2=130
  10819. VIP_var_Peaking_DLTI_mp1_DLTI_50percent_id_2=264
  10820. VIP_var_Peaking_DLTI_mp1_DLTI_100percent_id_2=276
  10821. VIP_var_Peaking_DLTI_mp2_DLTI_0percent_id_2=117
  10822. VIP_var_Peaking_DLTI_mp2_DLTI_50percent_id_2=219
  10823. VIP_var_Peaking_DLTI_mp2_DLTI_100percent_id_2=153
  10824. VIP_var_Peaking_DLTI_Peaking_en_0percent_id_2=1
  10825. VIP_var_Peaking_DLTI_Peaking_en_50percent_id_2=0
  10826. VIP_var_Peaking_DLTI_Peaking_en_100percent_id_2=0
  10827. VIP_var_Peaking_DLTI_DLTI_en_0percent_id_2=1
  10828. VIP_var_Peaking_DLTI_DLTI_en_50percent_id_2=0
  10829. VIP_var_Peaking_DLTI_DLTI_en_100percent_id_2=0
  10830. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_0percent_id_2=0
  10831. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_50percent_id_2=0
  10832. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_100percent_id_2=0
  10833. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_0percent_id_2=5
  10834. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_50percent_id_2=7
  10835. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_100percent_id_2=11
  10836. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_0percent_id_2=0
  10837. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_50percent_id_2=0
  10838. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_100percent_id_2=0
  10839. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_0percent_id_2=0
  10840. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_50percent_id_2=0
  10841. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_100percent_id_2=0
  10842. VIP_var_Peaking_DLTI_Coring_Neg_Peak_0percent_id_2=6
  10843. VIP_var_Peaking_DLTI_Coring_Neg_Peak_50percent_id_2=7
  10844. VIP_var_Peaking_DLTI_Coring_Neg_Peak_100percent_id_2=7
  10845. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_0percent_id_2=0
  10846. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_50percent_id_2=0
  10847. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_100percent_id_2=0
  10848. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_0percent_id_2=1
  10849. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_50percent_id_2=0
  10850. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_100percent_id_2=0
  10851. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_0percent_id_2=0
  10852. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_50percent_id_2=0
  10853. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_100percent_id_2=0
  10854. VIP_var_Peaking_DLTI_HP_Gain_V31_0percent_id_2=0
  10855. VIP_var_Peaking_DLTI_HP_Gain_V31_50percent_id_2=0
  10856. VIP_var_Peaking_DLTI_HP_Gain_V31_100percent_id_2=0
  10857. VIP_var_Peaking_DLTI_HP_Gain_V51_0percent_id_2=5
  10858. VIP_var_Peaking_DLTI_HP_Gain_V51_50percent_id_2=6
  10859. VIP_var_Peaking_DLTI_HP_Gain_V51_100percent_id_2=6
  10860. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_0percent_id_2=1
  10861. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_50percent_id_2=0
  10862. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_100percent_id_2=0
  10863. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_0percent_id_2=1
  10864. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_50percent_id_2=0
  10865. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_100percent_id_2=0
  10866. VIP_var_Peaking_DLTI_Low_Pass_Lti_0percent_id_2=1
  10867. VIP_var_Peaking_DLTI_Low_Pass_Lti_50percent_id_2=0
  10868. VIP_var_Peaking_DLTI_Low_Pass_Lti_100percent_id_2=0
  10869. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_0percent_id_2=1
  10870. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_50percent_id_2=0
  10871. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_100percent_id_2=0
  10872. VIP_var_Peaking_DLTI_Coring_Peak1D_0percent_id_2=12
  10873. VIP_var_Peaking_DLTI_Coring_Peak1D_50percent_id_2=8
  10874. VIP_var_Peaking_DLTI_Coring_Peak1D_100percent_id_2=10
  10875. VIP_var_Peaking_DLTI_Coring_Peak_0percent_id_2=40
  10876. VIP_var_Peaking_DLTI_Coring_Peak_50percent_id_2=48
  10877. VIP_var_Peaking_DLTI_Coring_Peak_100percent_id_2=36
  10878. VIP_var_Peaking_DLTI_Coring_PeakV_0percent_id_2=12
  10879. VIP_var_Peaking_DLTI_Coring_PeakV_50percent_id_2=8
  10880. VIP_var_Peaking_DLTI_Coring_PeakV_100percent_id_2=10
  10881. VIP_var_Peaking_DLTI_Hi_Coring_Peak_0percent_id_2=40
  10882. VIP_var_Peaking_DLTI_Hi_Coring_Peak_50percent_id_2=48
  10883. VIP_var_Peaking_DLTI_Hi_Coring_Peak_100percent_id_2=38
  10884. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_0percent_id_2=0
  10885. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_50percent_id_2=0
  10886. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_100percent_id_2=0
  10887. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_0percent_id_2=0
  10888. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_50percent_id_2=0
  10889. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_100percent_id_2=0
  10890. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_0percent_id_2=6
  10891. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_50percent_id_2=9
  10892. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_100percent_id_2=11
  10893. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_0percent_id_2=0
  10894. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_50percent_id_2=0
  10895. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_100percent_id_2=0
  10896. VIP_var_Peaking_DLTI_Coring_Peak2D_0percent_id_2=16
  10897. VIP_var_Peaking_DLTI_Coring_Peak2D_50percent_id_2=16
  10898. VIP_var_Peaking_DLTI_Coring_Peak2D_100percent_id_2=16
  10899. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_0percent_id_2=2
  10900. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_50percent_id_2=0
  10901. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_100percent_id_2=2
  10902. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_0percent_id_2=2
  10903. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_50percent_id_2=2
  10904. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_100percent_id_2=2
  10905. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_0percent_id_2=32
  10906. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_50percent_id_2=32
  10907. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_100percent_id_2=32
  10908. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_0percent_id_2=0
  10909. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_50percent_id_2=0
  10910. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_100percent_id_2=0
  10911. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_0percent_id_2=1
  10912. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_50percent_id_2=0
  10913. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_100percent_id_2=0
  10914. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_0percent_id_2=0
  10915. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_50percent_id_2=0
  10916. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_100percent_id_2=0
  10917. VIP_var_Peaking_DLTI_BP_Gain_Lti_0percent_id_2=7
  10918. VIP_var_Peaking_DLTI_BP_Gain_Lti_50percent_id_2=7
  10919. VIP_var_Peaking_DLTI_BP_Gain_Lti_100percent_id_2=10
  10920. VIP_var_Peaking_DLTI_EP_Gain_Lti_0percent_id_2=0
  10921. VIP_var_Peaking_DLTI_EP_Gain_Lti_50percent_id_2=0
  10922. VIP_var_Peaking_DLTI_EP_Gain_Lti_100percent_id_2=0
  10923. VIP_var_Peaking_DLTI_HP_Gain_Lti_0percent_id_2=0
  10924. VIP_var_Peaking_DLTI_HP_Gain_Lti_50percent_id_2=0
  10925. VIP_var_Peaking_DLTI_HP_Gain_Lti_100percent_id_2=0
  10926. VIP_var_Peaking_DLTI_St_Sel_0percent_id_2=1
  10927. VIP_var_Peaking_DLTI_St_Sel_50percent_id_2=0
  10928. VIP_var_Peaking_DLTI_St_Sel_100percent_id_2=0
  10929. VIP_var_Peaking_DLTI_Coring_Lti_0percent_id_2=18
  10930. VIP_var_Peaking_DLTI_Coring_Lti_50percent_id_2=10
  10931. VIP_var_Peaking_DLTI_Coring_Lti_100percent_id_2=16
  10932. VIP_var_Peaking_DLTI_Hi_Coring_Lti_0percent_id_2=40
  10933. VIP_var_Peaking_DLTI_Hi_Coring_Lti_50percent_id_2=32
  10934. VIP_var_Peaking_DLTI_Hi_Coring_Lti_100percent_id_2=30
  10935. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_0percent_id_2=1
  10936. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_50percent_id_2=1
  10937. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_100percent_id_2=1
  10938. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_0percent_id_2=1
  10939. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_50percent_id_2=1
  10940. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_100percent_id_2=1
  10941. VIP_var_Peaking_DLTI_Over_Max_Peak_0percent_id_2=64
  10942. VIP_var_Peaking_DLTI_Over_Max_Peak_50percent_id_2=80
  10943. VIP_var_Peaking_DLTI_Over_Max_Peak_100percent_id_2=112
  10944. VIP_var_Peaking_DLTI_Over_Min_Peak_0percent_id_2=48
  10945. VIP_var_Peaking_DLTI_Over_Min_Peak_50percent_id_2=80
  10946. VIP_var_Peaking_DLTI_Over_Min_Peak_100percent_id_2=112
  10947. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_0percent_id_2=3
  10948. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_50percent_id_2=3
  10949. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_100percent_id_2=4
  10950. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_0percent_id_2=3
  10951. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_50percent_id_2=3
  10952. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_100percent_id_2=4
  10953. VIP_var_Peaking_DLTI_Over_Max_Lti_0percent_id_2=148
  10954. VIP_var_Peaking_DLTI_Over_Max_Lti_50percent_id_2=165
  10955. VIP_var_Peaking_DLTI_Over_Max_Lti_100percent_id_2=190
  10956. VIP_var_Peaking_DLTI_Over_Min_Lti_0percent_id_2=148
  10957. VIP_var_Peaking_DLTI_Over_Min_Lti_50percent_id_2=165
  10958. VIP_var_Peaking_DLTI_Over_Min_Lti_100percent_id_2=190
  10959. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_0percent_id_2=5
  10960. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_50percent_id_2=4
  10961. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_100percent_id_2=6
  10962. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_0percent_id_2=5
  10963. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_50percent_id_2=4
  10964. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_100percent_id_2=6
  10965. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_0percent_id_2=2
  10966. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_50percent_id_2=2
  10967. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_100percent_id_2=2
  10968. VIP_var_Peaking_DLTI_Sharp_Select_0percent_id_3=1
  10969. VIP_var_Peaking_DLTI_Sharp_Select_50percent_id_3=0
  10970. VIP_var_Peaking_DLTI_Sharp_Select_100percent_id_3=0
  10971. VIP_var_Peaking_DLTI_xp0_Peaking_0percent_id_3=0
  10972. VIP_var_Peaking_DLTI_xp0_Peaking_50percent_id_3=0
  10973. VIP_var_Peaking_DLTI_xp0_Peaking_100percent_id_3=0
  10974. VIP_var_Peaking_DLTI_xp1_Peaking_0percent_id_3=50
  10975. VIP_var_Peaking_DLTI_xp1_Peaking_50percent_id_3=33
  10976. VIP_var_Peaking_DLTI_xp1_Peaking_100percent_id_3=43
  10977. VIP_var_Peaking_DLTI_xp2_Peaking_0percent_id_3=191
  10978. VIP_var_Peaking_DLTI_xp2_Peaking_50percent_id_3=202
  10979. VIP_var_Peaking_DLTI_xp2_Peaking_100percent_id_3=199
  10980. VIP_var_Peaking_DLTI_xp3_Peaking_0percent_id_3=255
  10981. VIP_var_Peaking_DLTI_xp3_Peaking_50percent_id_3=255
  10982. VIP_var_Peaking_DLTI_xp3_Peaking_100percent_id_3=252
  10983. VIP_var_Peaking_DLTI_yp0_Peaking_0percent_id_3=0
  10984. VIP_var_Peaking_DLTI_yp0_Peaking_50percent_id_3=0
  10985. VIP_var_Peaking_DLTI_yp0_Peaking_100percent_id_3=0
  10986. VIP_var_Peaking_DLTI_yp1_Peaking_0percent_id_3=46
  10987. VIP_var_Peaking_DLTI_yp1_Peaking_50percent_id_3=81
  10988. VIP_var_Peaking_DLTI_yp1_Peaking_100percent_id_3=145
  10989. VIP_var_Peaking_DLTI_yp2_Peaking_0percent_id_3=0
  10990. VIP_var_Peaking_DLTI_yp2_Peaking_50percent_id_3=0
  10991. VIP_var_Peaking_DLTI_yp2_Peaking_100percent_id_3=0
  10992. VIP_var_Peaking_DLTI_mp1_Peaking_0percent_id_3=58
  10993. VIP_var_Peaking_DLTI_mp1_Peaking_50percent_id_3=157
  10994. VIP_var_Peaking_DLTI_mp1_Peaking_100percent_id_3=215
  10995. VIP_var_Peaking_DLTI_mp2_Peaking_0percent_id_3=46
  10996. VIP_var_Peaking_DLTI_mp2_Peaking_50percent_id_3=97
  10997. VIP_var_Peaking_DLTI_mp2_Peaking_100percent_id_3=175
  10998. VIP_var_Peaking_DLTI_xp0_DLTI_0percent_id_3=0
  10999. VIP_var_Peaking_DLTI_xp0_DLTI_50percent_id_3=0
  11000. VIP_var_Peaking_DLTI_xp0_DLTI_100percent_id_3=0
  11001. VIP_var_Peaking_DLTI_xp1_DLTI_0percent_id_3=45
  11002. VIP_var_Peaking_DLTI_xp1_DLTI_50percent_id_3=43
  11003. VIP_var_Peaking_DLTI_xp1_DLTI_100percent_id_3=34
  11004. VIP_var_Peaking_DLTI_xp2_DLTI_0percent_id_3=206
  11005. VIP_var_Peaking_DLTI_xp2_DLTI_50percent_id_3=182
  11006. VIP_var_Peaking_DLTI_xp2_DLTI_100percent_id_3=193
  11007. VIP_var_Peaking_DLTI_xp3_DLTI_0percent_id_3=255
  11008. VIP_var_Peaking_DLTI_xp3_DLTI_50percent_id_3=255
  11009. VIP_var_Peaking_DLTI_xp3_DLTI_100percent_id_3=255
  11010. VIP_var_Peaking_DLTI_yp0_DLTI_0percent_id_3=0
  11011. VIP_var_Peaking_DLTI_yp0_DLTI_50percent_id_3=0
  11012. VIP_var_Peaking_DLTI_yp0_DLTI_100percent_id_3=0
  11013. VIP_var_Peaking_DLTI_yp1_DLTI_0percent_id_3=92
  11014. VIP_var_Peaking_DLTI_yp1_DLTI_50percent_id_3=104
  11015. VIP_var_Peaking_DLTI_yp1_DLTI_100percent_id_3=203
  11016. VIP_var_Peaking_DLTI_yp2_DLTI_0percent_id_3=2
  11017. VIP_var_Peaking_DLTI_yp2_DLTI_50percent_id_3=0
  11018. VIP_var_Peaking_DLTI_yp2_DLTI_100percent_id_3=0
  11019. VIP_var_Peaking_DLTI_mp1_DLTI_0percent_id_3=130
  11020. VIP_var_Peaking_DLTI_mp1_DLTI_50percent_id_3=154
  11021. VIP_var_Peaking_DLTI_mp1_DLTI_100percent_id_3=382
  11022. VIP_var_Peaking_DLTI_mp2_DLTI_0percent_id_3=117
  11023. VIP_var_Peaking_DLTI_mp2_DLTI_50percent_id_3=91
  11024. VIP_var_Peaking_DLTI_mp2_DLTI_100percent_id_3=209
  11025. VIP_var_Peaking_DLTI_Peaking_en_0percent_id_3=1
  11026. VIP_var_Peaking_DLTI_Peaking_en_50percent_id_3=0
  11027. VIP_var_Peaking_DLTI_Peaking_en_100percent_id_3=0
  11028. VIP_var_Peaking_DLTI_DLTI_en_0percent_id_3=1
  11029. VIP_var_Peaking_DLTI_DLTI_en_50percent_id_3=0
  11030. VIP_var_Peaking_DLTI_DLTI_en_100percent_id_3=0
  11031. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_0percent_id_3=0
  11032. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_50percent_id_3=0
  11033. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_100percent_id_3=0
  11034. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_0percent_id_3=5
  11035. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_50percent_id_3=12
  11036. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_100percent_id_3=12
  11037. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_0percent_id_3=0
  11038. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_50percent_id_3=0
  11039. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_100percent_id_3=0
  11040. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_0percent_id_3=0
  11041. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_50percent_id_3=0
  11042. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_100percent_id_3=0
  11043. VIP_var_Peaking_DLTI_Coring_Neg_Peak_0percent_id_3=6
  11044. VIP_var_Peaking_DLTI_Coring_Neg_Peak_50percent_id_3=7
  11045. VIP_var_Peaking_DLTI_Coring_Neg_Peak_100percent_id_3=7
  11046. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_0percent_id_3=0
  11047. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_50percent_id_3=0
  11048. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_100percent_id_3=0
  11049. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_0percent_id_3=1
  11050. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_50percent_id_3=0
  11051. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_100percent_id_3=0
  11052. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_0percent_id_3=0
  11053. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_50percent_id_3=0
  11054. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_100percent_id_3=0
  11055. VIP_var_Peaking_DLTI_HP_Gain_V31_0percent_id_3=0
  11056. VIP_var_Peaking_DLTI_HP_Gain_V31_50percent_id_3=0
  11057. VIP_var_Peaking_DLTI_HP_Gain_V31_100percent_id_3=0
  11058. VIP_var_Peaking_DLTI_HP_Gain_V51_0percent_id_3=5
  11059. VIP_var_Peaking_DLTI_HP_Gain_V51_50percent_id_3=5
  11060. VIP_var_Peaking_DLTI_HP_Gain_V51_100percent_id_3=6
  11061. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_0percent_id_3=1
  11062. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_50percent_id_3=0
  11063. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_100percent_id_3=0
  11064. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_0percent_id_3=1
  11065. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_50percent_id_3=0
  11066. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_100percent_id_3=0
  11067. VIP_var_Peaking_DLTI_Low_Pass_Lti_0percent_id_3=1
  11068. VIP_var_Peaking_DLTI_Low_Pass_Lti_50percent_id_3=0
  11069. VIP_var_Peaking_DLTI_Low_Pass_Lti_100percent_id_3=0
  11070. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_0percent_id_3=1
  11071. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_50percent_id_3=0
  11072. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_100percent_id_3=0
  11073. VIP_var_Peaking_DLTI_Coring_Peak1D_0percent_id_3=12
  11074. VIP_var_Peaking_DLTI_Coring_Peak1D_50percent_id_3=8
  11075. VIP_var_Peaking_DLTI_Coring_Peak1D_100percent_id_3=10
  11076. VIP_var_Peaking_DLTI_Coring_Peak_0percent_id_3=40
  11077. VIP_var_Peaking_DLTI_Coring_Peak_50percent_id_3=30
  11078. VIP_var_Peaking_DLTI_Coring_Peak_100percent_id_3=36
  11079. VIP_var_Peaking_DLTI_Coring_PeakV_0percent_id_3=12
  11080. VIP_var_Peaking_DLTI_Coring_PeakV_50percent_id_3=8
  11081. VIP_var_Peaking_DLTI_Coring_PeakV_100percent_id_3=10
  11082. VIP_var_Peaking_DLTI_Hi_Coring_Peak_0percent_id_3=40
  11083. VIP_var_Peaking_DLTI_Hi_Coring_Peak_50percent_id_3=30
  11084. VIP_var_Peaking_DLTI_Hi_Coring_Peak_100percent_id_3=38
  11085. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_0percent_id_3=0
  11086. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_50percent_id_3=0
  11087. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_100percent_id_3=0
  11088. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_0percent_id_3=0
  11089. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_50percent_id_3=0
  11090. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_100percent_id_3=0
  11091. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_0percent_id_3=6
  11092. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_50percent_id_3=12
  11093. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_100percent_id_3=12
  11094. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_0percent_id_3=0
  11095. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_50percent_id_3=0
  11096. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_100percent_id_3=0
  11097. VIP_var_Peaking_DLTI_Coring_Peak2D_0percent_id_3=16
  11098. VIP_var_Peaking_DLTI_Coring_Peak2D_50percent_id_3=16
  11099. VIP_var_Peaking_DLTI_Coring_Peak2D_100percent_id_3=16
  11100. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_0percent_id_3=2
  11101. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_50percent_id_3=2
  11102. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_100percent_id_3=2
  11103. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_0percent_id_3=2
  11104. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_50percent_id_3=2
  11105. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_100percent_id_3=2
  11106. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_0percent_id_3=32
  11107. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_50percent_id_3=32
  11108. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_100percent_id_3=32
  11109. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_0percent_id_3=0
  11110. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_50percent_id_3=0
  11111. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_100percent_id_3=0
  11112. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_0percent_id_3=1
  11113. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_50percent_id_3=0
  11114. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_100percent_id_3=0
  11115. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_0percent_id_3=1
  11116. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_50percent_id_3=0
  11117. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_100percent_id_3=0
  11118. VIP_var_Peaking_DLTI_BP_Gain_Lti_0percent_id_3=7
  11119. VIP_var_Peaking_DLTI_BP_Gain_Lti_50percent_id_3=0
  11120. VIP_var_Peaking_DLTI_BP_Gain_Lti_100percent_id_3=11
  11121. VIP_var_Peaking_DLTI_EP_Gain_Lti_0percent_id_3=0
  11122. VIP_var_Peaking_DLTI_EP_Gain_Lti_50percent_id_3=8
  11123. VIP_var_Peaking_DLTI_EP_Gain_Lti_100percent_id_3=0
  11124. VIP_var_Peaking_DLTI_HP_Gain_Lti_0percent_id_3=0
  11125. VIP_var_Peaking_DLTI_HP_Gain_Lti_50percent_id_3=0
  11126. VIP_var_Peaking_DLTI_HP_Gain_Lti_100percent_id_3=0
  11127. VIP_var_Peaking_DLTI_St_Sel_0percent_id_3=2
  11128. VIP_var_Peaking_DLTI_St_Sel_50percent_id_3=0
  11129. VIP_var_Peaking_DLTI_St_Sel_100percent_id_3=0
  11130. VIP_var_Peaking_DLTI_Coring_Lti_0percent_id_3=4
  11131. VIP_var_Peaking_DLTI_Coring_Lti_50percent_id_3=2
  11132. VIP_var_Peaking_DLTI_Coring_Lti_100percent_id_3=0
  11133. VIP_var_Peaking_DLTI_Hi_Coring_Lti_0percent_id_3=40
  11134. VIP_var_Peaking_DLTI_Hi_Coring_Lti_50percent_id_3=100
  11135. VIP_var_Peaking_DLTI_Hi_Coring_Lti_100percent_id_3=80
  11136. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_0percent_id_3=1
  11137. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_50percent_id_3=1
  11138. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_100percent_id_3=1
  11139. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_0percent_id_3=1
  11140. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_50percent_id_3=1
  11141. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_100percent_id_3=1
  11142. VIP_var_Peaking_DLTI_Over_Max_Peak_0percent_id_3=64
  11143. VIP_var_Peaking_DLTI_Over_Max_Peak_50percent_id_3=96
  11144. VIP_var_Peaking_DLTI_Over_Max_Peak_100percent_id_3=108
  11145. VIP_var_Peaking_DLTI_Over_Min_Peak_0percent_id_3=48
  11146. VIP_var_Peaking_DLTI_Over_Min_Peak_50percent_id_3=64
  11147. VIP_var_Peaking_DLTI_Over_Min_Peak_100percent_id_3=108
  11148. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_0percent_id_3=3
  11149. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_50percent_id_3=3
  11150. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_100percent_id_3=4
  11151. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_0percent_id_3=3
  11152. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_50percent_id_3=3
  11153. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_100percent_id_3=4
  11154. VIP_var_Peaking_DLTI_Over_Max_Lti_0percent_id_3=148
  11155. VIP_var_Peaking_DLTI_Over_Max_Lti_50percent_id_3=200
  11156. VIP_var_Peaking_DLTI_Over_Max_Lti_100percent_id_3=184
  11157. VIP_var_Peaking_DLTI_Over_Min_Lti_0percent_id_3=148
  11158. VIP_var_Peaking_DLTI_Over_Min_Lti_50percent_id_3=200
  11159. VIP_var_Peaking_DLTI_Over_Min_Lti_100percent_id_3=190
  11160. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_0percent_id_3=5
  11161. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_50percent_id_3=6
  11162. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_100percent_id_3=6
  11163. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_0percent_id_3=5
  11164. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_50percent_id_3=6
  11165. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_100percent_id_3=6
  11166. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_0percent_id_3=2
  11167. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_50percent_id_3=2
  11168. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_100percent_id_3=2
  11169. VIP_var_Peaking_DLTI_Sharp_Select_0percent_id_4=1
  11170. VIP_var_Peaking_DLTI_Sharp_Select_50percent_id_4=0
  11171. VIP_var_Peaking_DLTI_Sharp_Select_100percent_id_4=0
  11172. VIP_var_Peaking_DLTI_xp0_Peaking_0percent_id_4=0
  11173. VIP_var_Peaking_DLTI_xp0_Peaking_50percent_id_4=0
  11174. VIP_var_Peaking_DLTI_xp0_Peaking_100percent_id_4=0
  11175. VIP_var_Peaking_DLTI_xp1_Peaking_0percent_id_4=50
  11176. VIP_var_Peaking_DLTI_xp1_Peaking_50percent_id_4=44
  11177. VIP_var_Peaking_DLTI_xp1_Peaking_100percent_id_4=50
  11178. VIP_var_Peaking_DLTI_xp2_Peaking_0percent_id_4=191
  11179. VIP_var_Peaking_DLTI_xp2_Peaking_50percent_id_4=194
  11180. VIP_var_Peaking_DLTI_xp2_Peaking_100percent_id_4=187
  11181. VIP_var_Peaking_DLTI_xp3_Peaking_0percent_id_4=255
  11182. VIP_var_Peaking_DLTI_xp3_Peaking_50percent_id_4=255
  11183. VIP_var_Peaking_DLTI_xp3_Peaking_100percent_id_4=255
  11184. VIP_var_Peaking_DLTI_yp0_Peaking_0percent_id_4=0
  11185. VIP_var_Peaking_DLTI_yp0_Peaking_50percent_id_4=0
  11186. VIP_var_Peaking_DLTI_yp0_Peaking_100percent_id_4=0
  11187. VIP_var_Peaking_DLTI_yp1_Peaking_0percent_id_4=46
  11188. VIP_var_Peaking_DLTI_yp1_Peaking_50percent_id_4=73
  11189. VIP_var_Peaking_DLTI_yp1_Peaking_100percent_id_4=108
  11190. VIP_var_Peaking_DLTI_yp2_Peaking_0percent_id_4=0
  11191. VIP_var_Peaking_DLTI_yp2_Peaking_50percent_id_4=0
  11192. VIP_var_Peaking_DLTI_yp2_Peaking_100percent_id_4=0
  11193. VIP_var_Peaking_DLTI_mp1_Peaking_0percent_id_4=58
  11194. VIP_var_Peaking_DLTI_mp1_Peaking_50percent_id_4=106
  11195. VIP_var_Peaking_DLTI_mp1_Peaking_100percent_id_4=138
  11196. VIP_var_Peaking_DLTI_mp2_Peaking_0percent_id_4=46
  11197. VIP_var_Peaking_DLTI_mp2_Peaking_50percent_id_4=76
  11198. VIP_var_Peaking_DLTI_mp2_Peaking_100percent_id_4=101
  11199. VIP_var_Peaking_DLTI_xp0_DLTI_0percent_id_4=0
  11200. VIP_var_Peaking_DLTI_xp0_DLTI_50percent_id_4=0
  11201. VIP_var_Peaking_DLTI_xp0_DLTI_100percent_id_4=0
  11202. VIP_var_Peaking_DLTI_xp1_DLTI_0percent_id_4=45
  11203. VIP_var_Peaking_DLTI_xp1_DLTI_50percent_id_4=41
  11204. VIP_var_Peaking_DLTI_xp1_DLTI_100percent_id_4=56
  11205. VIP_var_Peaking_DLTI_xp2_DLTI_0percent_id_4=206
  11206. VIP_var_Peaking_DLTI_xp2_DLTI_50percent_id_4=200
  11207. VIP_var_Peaking_DLTI_xp2_DLTI_100percent_id_4=183
  11208. VIP_var_Peaking_DLTI_xp3_DLTI_0percent_id_4=255
  11209. VIP_var_Peaking_DLTI_xp3_DLTI_50percent_id_4=255
  11210. VIP_var_Peaking_DLTI_xp3_DLTI_100percent_id_4=255
  11211. VIP_var_Peaking_DLTI_yp0_DLTI_0percent_id_4=0
  11212. VIP_var_Peaking_DLTI_yp0_DLTI_50percent_id_4=0
  11213. VIP_var_Peaking_DLTI_yp0_DLTI_100percent_id_4=0
  11214. VIP_var_Peaking_DLTI_yp1_DLTI_0percent_id_4=92
  11215. VIP_var_Peaking_DLTI_yp1_DLTI_50percent_id_4=121
  11216. VIP_var_Peaking_DLTI_yp1_DLTI_100percent_id_4=182
  11217. VIP_var_Peaking_DLTI_yp2_DLTI_0percent_id_4=2
  11218. VIP_var_Peaking_DLTI_yp2_DLTI_50percent_id_4=0
  11219. VIP_var_Peaking_DLTI_yp2_DLTI_100percent_id_4=0
  11220. VIP_var_Peaking_DLTI_mp1_DLTI_0percent_id_4=130
  11221. VIP_var_Peaking_DLTI_mp1_DLTI_50percent_id_4=188
  11222. VIP_var_Peaking_DLTI_mp1_DLTI_100percent_id_4=208
  11223. VIP_var_Peaking_DLTI_mp2_DLTI_0percent_id_4=117
  11224. VIP_var_Peaking_DLTI_mp2_DLTI_50percent_id_4=140
  11225. VIP_var_Peaking_DLTI_mp2_DLTI_100percent_id_4=161
  11226. VIP_var_Peaking_DLTI_Peaking_en_0percent_id_4=1
  11227. VIP_var_Peaking_DLTI_Peaking_en_50percent_id_4=0
  11228. VIP_var_Peaking_DLTI_Peaking_en_100percent_id_4=0
  11229. VIP_var_Peaking_DLTI_DLTI_en_0percent_id_4=1
  11230. VIP_var_Peaking_DLTI_DLTI_en_50percent_id_4=0
  11231. VIP_var_Peaking_DLTI_DLTI_en_100percent_id_4=0
  11232. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_0percent_id_4=0
  11233. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_50percent_id_4=0
  11234. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_100percent_id_4=0
  11235. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_0percent_id_4=5
  11236. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_50percent_id_4=2
  11237. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_100percent_id_4=4
  11238. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_0percent_id_4=0
  11239. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_50percent_id_4=0
  11240. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_100percent_id_4=0
  11241. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_0percent_id_4=0
  11242. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_50percent_id_4=0
  11243. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_100percent_id_4=0
  11244. VIP_var_Peaking_DLTI_Coring_Neg_Peak_0percent_id_4=6
  11245. VIP_var_Peaking_DLTI_Coring_Neg_Peak_50percent_id_4=7
  11246. VIP_var_Peaking_DLTI_Coring_Neg_Peak_100percent_id_4=7
  11247. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_0percent_id_4=0
  11248. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_50percent_id_4=0
  11249. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_100percent_id_4=0
  11250. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_0percent_id_4=1
  11251. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_50percent_id_4=0
  11252. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_100percent_id_4=0
  11253. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_0percent_id_4=0
  11254. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_50percent_id_4=0
  11255. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_100percent_id_4=0
  11256. VIP_var_Peaking_DLTI_HP_Gain_V31_0percent_id_4=0
  11257. VIP_var_Peaking_DLTI_HP_Gain_V31_50percent_id_4=0
  11258. VIP_var_Peaking_DLTI_HP_Gain_V31_100percent_id_4=0
  11259. VIP_var_Peaking_DLTI_HP_Gain_V51_0percent_id_4=5
  11260. VIP_var_Peaking_DLTI_HP_Gain_V51_50percent_id_4=9
  11261. VIP_var_Peaking_DLTI_HP_Gain_V51_100percent_id_4=6
  11262. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_0percent_id_4=1
  11263. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_50percent_id_4=0
  11264. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_100percent_id_4=0
  11265. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_0percent_id_4=1
  11266. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_50percent_id_4=0
  11267. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_100percent_id_4=0
  11268. VIP_var_Peaking_DLTI_Low_Pass_Lti_0percent_id_4=0
  11269. VIP_var_Peaking_DLTI_Low_Pass_Lti_50percent_id_4=0
  11270. VIP_var_Peaking_DLTI_Low_Pass_Lti_100percent_id_4=0
  11271. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_0percent_id_4=1
  11272. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_50percent_id_4=0
  11273. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_100percent_id_4=0
  11274. VIP_var_Peaking_DLTI_Coring_Peak1D_0percent_id_4=12
  11275. VIP_var_Peaking_DLTI_Coring_Peak1D_50percent_id_4=64
  11276. VIP_var_Peaking_DLTI_Coring_Peak1D_100percent_id_4=48
  11277. VIP_var_Peaking_DLTI_Coring_Peak_0percent_id_4=40
  11278. VIP_var_Peaking_DLTI_Coring_Peak_50percent_id_4=128
  11279. VIP_var_Peaking_DLTI_Coring_Peak_100percent_id_4=80
  11280. VIP_var_Peaking_DLTI_Coring_PeakV_0percent_id_4=12
  11281. VIP_var_Peaking_DLTI_Coring_PeakV_50percent_id_4=16
  11282. VIP_var_Peaking_DLTI_Coring_PeakV_100percent_id_4=48
  11283. VIP_var_Peaking_DLTI_Hi_Coring_Peak_0percent_id_4=40
  11284. VIP_var_Peaking_DLTI_Hi_Coring_Peak_50percent_id_4=64
  11285. VIP_var_Peaking_DLTI_Hi_Coring_Peak_100percent_id_4=80
  11286. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_0percent_id_4=0
  11287. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_50percent_id_4=0
  11288. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_100percent_id_4=0
  11289. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_0percent_id_4=0
  11290. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_50percent_id_4=0
  11291. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_100percent_id_4=0
  11292. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_0percent_id_4=6
  11293. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_50percent_id_4=6
  11294. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_100percent_id_4=7
  11295. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_0percent_id_4=0
  11296. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_50percent_id_4=0
  11297. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_100percent_id_4=0
  11298. VIP_var_Peaking_DLTI_Coring_Peak2D_0percent_id_4=16
  11299. VIP_var_Peaking_DLTI_Coring_Peak2D_50percent_id_4=128
  11300. VIP_var_Peaking_DLTI_Coring_Peak2D_100percent_id_4=16
  11301. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_0percent_id_4=2
  11302. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_50percent_id_4=2
  11303. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_100percent_id_4=2
  11304. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_0percent_id_4=2
  11305. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_50percent_id_4=2
  11306. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_100percent_id_4=2
  11307. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_0percent_id_4=32
  11308. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_50percent_id_4=32
  11309. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_100percent_id_4=32
  11310. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_0percent_id_4=0
  11311. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_50percent_id_4=0
  11312. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_100percent_id_4=0
  11313. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_0percent_id_4=1
  11314. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_50percent_id_4=0
  11315. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_100percent_id_4=0
  11316. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_0percent_id_4=0
  11317. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_50percent_id_4=0
  11318. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_100percent_id_4=0
  11319. VIP_var_Peaking_DLTI_BP_Gain_Lti_0percent_id_4=7
  11320. VIP_var_Peaking_DLTI_BP_Gain_Lti_50percent_id_4=7
  11321. VIP_var_Peaking_DLTI_BP_Gain_Lti_100percent_id_4=7
  11322. VIP_var_Peaking_DLTI_EP_Gain_Lti_0percent_id_4=0
  11323. VIP_var_Peaking_DLTI_EP_Gain_Lti_50percent_id_4=0
  11324. VIP_var_Peaking_DLTI_EP_Gain_Lti_100percent_id_4=0
  11325. VIP_var_Peaking_DLTI_HP_Gain_Lti_0percent_id_4=0
  11326. VIP_var_Peaking_DLTI_HP_Gain_Lti_50percent_id_4=0
  11327. VIP_var_Peaking_DLTI_HP_Gain_Lti_100percent_id_4=0
  11328. VIP_var_Peaking_DLTI_St_Sel_0percent_id_4=2
  11329. VIP_var_Peaking_DLTI_St_Sel_50percent_id_4=0
  11330. VIP_var_Peaking_DLTI_St_Sel_100percent_id_4=0
  11331. VIP_var_Peaking_DLTI_Coring_Lti_0percent_id_4=18
  11332. VIP_var_Peaking_DLTI_Coring_Lti_50percent_id_4=32
  11333. VIP_var_Peaking_DLTI_Coring_Lti_100percent_id_4=16
  11334. VIP_var_Peaking_DLTI_Hi_Coring_Lti_0percent_id_4=40
  11335. VIP_var_Peaking_DLTI_Hi_Coring_Lti_50percent_id_4=64
  11336. VIP_var_Peaking_DLTI_Hi_Coring_Lti_100percent_id_4=30
  11337. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_0percent_id_4=1
  11338. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_50percent_id_4=1
  11339. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_100percent_id_4=1
  11340. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_0percent_id_4=1
  11341. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_50percent_id_4=1
  11342. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_100percent_id_4=1
  11343. VIP_var_Peaking_DLTI_Over_Max_Peak_0percent_id_4=64
  11344. VIP_var_Peaking_DLTI_Over_Max_Peak_50percent_id_4=16
  11345. VIP_var_Peaking_DLTI_Over_Max_Peak_100percent_id_4=25
  11346. VIP_var_Peaking_DLTI_Over_Min_Peak_0percent_id_4=48
  11347. VIP_var_Peaking_DLTI_Over_Min_Peak_50percent_id_4=16
  11348. VIP_var_Peaking_DLTI_Over_Min_Peak_100percent_id_4=25
  11349. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_0percent_id_4=3
  11350. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_50percent_id_4=3
  11351. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_100percent_id_4=2
  11352. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_0percent_id_4=3
  11353. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_50percent_id_4=3
  11354. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_100percent_id_4=2
  11355. VIP_var_Peaking_DLTI_Over_Max_Lti_0percent_id_4=148
  11356. VIP_var_Peaking_DLTI_Over_Max_Lti_50percent_id_4=200
  11357. VIP_var_Peaking_DLTI_Over_Max_Lti_100percent_id_4=210
  11358. VIP_var_Peaking_DLTI_Over_Min_Lti_0percent_id_4=148
  11359. VIP_var_Peaking_DLTI_Over_Min_Lti_50percent_id_4=200
  11360. VIP_var_Peaking_DLTI_Over_Min_Lti_100percent_id_4=210
  11361. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_0percent_id_4=5
  11362. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_50percent_id_4=5
  11363. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_100percent_id_4=5
  11364. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_0percent_id_4=5
  11365. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_50percent_id_4=5
  11366. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_100percent_id_4=5
  11367. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_0percent_id_4=2
  11368. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_50percent_id_4=2
  11369. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_100percent_id_4=2
  11370. VIP_var_Peaking_DLTI_Sharp_Select_0percent_id_5=0
  11371. VIP_var_Peaking_DLTI_Sharp_Select_50percent_id_5=0
  11372. VIP_var_Peaking_DLTI_Sharp_Select_100percent_id_5=0
  11373. VIP_var_Peaking_DLTI_xp0_Peaking_0percent_id_5=25
  11374. VIP_var_Peaking_DLTI_xp0_Peaking_50percent_id_5=25
  11375. VIP_var_Peaking_DLTI_xp0_Peaking_100percent_id_5=25
  11376. VIP_var_Peaking_DLTI_xp1_Peaking_0percent_id_5=50
  11377. VIP_var_Peaking_DLTI_xp1_Peaking_50percent_id_5=50
  11378. VIP_var_Peaking_DLTI_xp1_Peaking_100percent_id_5=50
  11379. VIP_var_Peaking_DLTI_xp2_Peaking_0percent_id_5=75
  11380. VIP_var_Peaking_DLTI_xp2_Peaking_50percent_id_5=75
  11381. VIP_var_Peaking_DLTI_xp2_Peaking_100percent_id_5=75
  11382. VIP_var_Peaking_DLTI_xp3_Peaking_0percent_id_5=100
  11383. VIP_var_Peaking_DLTI_xp3_Peaking_50percent_id_5=100
  11384. VIP_var_Peaking_DLTI_xp3_Peaking_100percent_id_5=100
  11385. VIP_var_Peaking_DLTI_yp0_Peaking_0percent_id_5=25
  11386. VIP_var_Peaking_DLTI_yp0_Peaking_50percent_id_5=25
  11387. VIP_var_Peaking_DLTI_yp0_Peaking_100percent_id_5=25
  11388. VIP_var_Peaking_DLTI_yp1_Peaking_0percent_id_5=50
  11389. VIP_var_Peaking_DLTI_yp1_Peaking_50percent_id_5=50
  11390. VIP_var_Peaking_DLTI_yp1_Peaking_100percent_id_5=50
  11391. VIP_var_Peaking_DLTI_yp2_Peaking_0percent_id_5=40
  11392. VIP_var_Peaking_DLTI_yp2_Peaking_50percent_id_5=40
  11393. VIP_var_Peaking_DLTI_yp2_Peaking_100percent_id_5=40
  11394. VIP_var_Peaking_DLTI_mp1_Peaking_0percent_id_5=64
  11395. VIP_var_Peaking_DLTI_mp1_Peaking_50percent_id_5=64
  11396. VIP_var_Peaking_DLTI_mp1_Peaking_100percent_id_5=64
  11397. VIP_var_Peaking_DLTI_mp2_Peaking_0percent_id_5=25
  11398. VIP_var_Peaking_DLTI_mp2_Peaking_50percent_id_5=25
  11399. VIP_var_Peaking_DLTI_mp2_Peaking_100percent_id_5=25
  11400. VIP_var_Peaking_DLTI_xp0_DLTI_0percent_id_5=25
  11401. VIP_var_Peaking_DLTI_xp0_DLTI_50percent_id_5=25
  11402. VIP_var_Peaking_DLTI_xp0_DLTI_100percent_id_5=25
  11403. VIP_var_Peaking_DLTI_xp1_DLTI_0percent_id_5=50
  11404. VIP_var_Peaking_DLTI_xp1_DLTI_50percent_id_5=50
  11405. VIP_var_Peaking_DLTI_xp1_DLTI_100percent_id_5=50
  11406. VIP_var_Peaking_DLTI_xp2_DLTI_0percent_id_5=75
  11407. VIP_var_Peaking_DLTI_xp2_DLTI_50percent_id_5=75
  11408. VIP_var_Peaking_DLTI_xp2_DLTI_100percent_id_5=75
  11409. VIP_var_Peaking_DLTI_xp3_DLTI_0percent_id_5=100
  11410. VIP_var_Peaking_DLTI_xp3_DLTI_50percent_id_5=100
  11411. VIP_var_Peaking_DLTI_xp3_DLTI_100percent_id_5=100
  11412. VIP_var_Peaking_DLTI_yp0_DLTI_0percent_id_5=25
  11413. VIP_var_Peaking_DLTI_yp0_DLTI_50percent_id_5=25
  11414. VIP_var_Peaking_DLTI_yp0_DLTI_100percent_id_5=25
  11415. VIP_var_Peaking_DLTI_yp1_DLTI_0percent_id_5=50
  11416. VIP_var_Peaking_DLTI_yp1_DLTI_50percent_id_5=50
  11417. VIP_var_Peaking_DLTI_yp1_DLTI_100percent_id_5=50
  11418. VIP_var_Peaking_DLTI_yp2_DLTI_0percent_id_5=40
  11419. VIP_var_Peaking_DLTI_yp2_DLTI_50percent_id_5=40
  11420. VIP_var_Peaking_DLTI_yp2_DLTI_100percent_id_5=40
  11421. VIP_var_Peaking_DLTI_mp1_DLTI_0percent_id_5=64
  11422. VIP_var_Peaking_DLTI_mp1_DLTI_50percent_id_5=64
  11423. VIP_var_Peaking_DLTI_mp1_DLTI_100percent_id_5=64
  11424. VIP_var_Peaking_DLTI_mp2_DLTI_0percent_id_5=25
  11425. VIP_var_Peaking_DLTI_mp2_DLTI_50percent_id_5=25
  11426. VIP_var_Peaking_DLTI_mp2_DLTI_100percent_id_5=25
  11427. VIP_var_Peaking_DLTI_Peaking_en_0percent_id_5=0
  11428. VIP_var_Peaking_DLTI_Peaking_en_50percent_id_5=0
  11429. VIP_var_Peaking_DLTI_Peaking_en_100percent_id_5=0
  11430. VIP_var_Peaking_DLTI_DLTI_en_0percent_id_5=0
  11431. VIP_var_Peaking_DLTI_DLTI_en_50percent_id_5=0
  11432. VIP_var_Peaking_DLTI_DLTI_en_100percent_id_5=0
  11433. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_0percent_id_5=1
  11434. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_50percent_id_5=0
  11435. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_100percent_id_5=0
  11436. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_0percent_id_5=0
  11437. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_50percent_id_5=0
  11438. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_100percent_id_5=0
  11439. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_0percent_id_5=0
  11440. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_50percent_id_5=0
  11441. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_100percent_id_5=0
  11442. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_0percent_id_5=0
  11443. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_50percent_id_5=0
  11444. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_100percent_id_5=0
  11445. VIP_var_Peaking_DLTI_Coring_Neg_Peak_0percent_id_5=0
  11446. VIP_var_Peaking_DLTI_Coring_Neg_Peak_50percent_id_5=0
  11447. VIP_var_Peaking_DLTI_Coring_Neg_Peak_100percent_id_5=0
  11448. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_0percent_id_5=0
  11449. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_50percent_id_5=0
  11450. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_100percent_id_5=0
  11451. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_0percent_id_5=0
  11452. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_50percent_id_5=0
  11453. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_100percent_id_5=0
  11454. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_0percent_id_5=0
  11455. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_50percent_id_5=0
  11456. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_100percent_id_5=0
  11457. VIP_var_Peaking_DLTI_HP_Gain_V31_0percent_id_5=0
  11458. VIP_var_Peaking_DLTI_HP_Gain_V31_50percent_id_5=0
  11459. VIP_var_Peaking_DLTI_HP_Gain_V31_100percent_id_5=0
  11460. VIP_var_Peaking_DLTI_HP_Gain_V51_0percent_id_5=0
  11461. VIP_var_Peaking_DLTI_HP_Gain_V51_50percent_id_5=0
  11462. VIP_var_Peaking_DLTI_HP_Gain_V51_100percent_id_5=0
  11463. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_0percent_id_5=0
  11464. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_50percent_id_5=0
  11465. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_100percent_id_5=0
  11466. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_0percent_id_5=0
  11467. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_50percent_id_5=0
  11468. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_100percent_id_5=0
  11469. VIP_var_Peaking_DLTI_Low_Pass_Lti_0percent_id_5=0
  11470. VIP_var_Peaking_DLTI_Low_Pass_Lti_50percent_id_5=0
  11471. VIP_var_Peaking_DLTI_Low_Pass_Lti_100percent_id_5=0
  11472. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_0percent_id_5=0
  11473. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_50percent_id_5=0
  11474. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_100percent_id_5=0
  11475. VIP_var_Peaking_DLTI_Coring_Peak1D_0percent_id_5=0
  11476. VIP_var_Peaking_DLTI_Coring_Peak1D_50percent_id_5=0
  11477. VIP_var_Peaking_DLTI_Coring_Peak1D_100percent_id_5=0
  11478. VIP_var_Peaking_DLTI_Coring_Peak_0percent_id_5=0
  11479. VIP_var_Peaking_DLTI_Coring_Peak_50percent_id_5=0
  11480. VIP_var_Peaking_DLTI_Coring_Peak_100percent_id_5=0
  11481. VIP_var_Peaking_DLTI_Coring_PeakV_0percent_id_5=0
  11482. VIP_var_Peaking_DLTI_Coring_PeakV_50percent_id_5=0
  11483. VIP_var_Peaking_DLTI_Coring_PeakV_100percent_id_5=0
  11484. VIP_var_Peaking_DLTI_Hi_Coring_Peak_0percent_id_5=0
  11485. VIP_var_Peaking_DLTI_Hi_Coring_Peak_50percent_id_5=0
  11486. VIP_var_Peaking_DLTI_Hi_Coring_Peak_100percent_id_5=0
  11487. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_0percent_id_5=0
  11488. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_50percent_id_5=0
  11489. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_100percent_id_5=0
  11490. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_0percent_id_5=0
  11491. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_50percent_id_5=0
  11492. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_100percent_id_5=0
  11493. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_0percent_id_5=0
  11494. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_50percent_id_5=0
  11495. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_100percent_id_5=0
  11496. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_0percent_id_5=0
  11497. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_50percent_id_5=0
  11498. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_100percent_id_5=0
  11499. VIP_var_Peaking_DLTI_Coring_Peak2D_0percent_id_5=0
  11500. VIP_var_Peaking_DLTI_Coring_Peak2D_50percent_id_5=0
  11501. VIP_var_Peaking_DLTI_Coring_Peak2D_100percent_id_5=0
  11502. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_0percent_id_5=0
  11503. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_50percent_id_5=0
  11504. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_100percent_id_5=0
  11505. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_0percent_id_5=0
  11506. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_50percent_id_5=0
  11507. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_100percent_id_5=0
  11508. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_0percent_id_5=0
  11509. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_50percent_id_5=0
  11510. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_100percent_id_5=0
  11511. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_0percent_id_5=0
  11512. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_50percent_id_5=0
  11513. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_100percent_id_5=0
  11514. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_0percent_id_5=0
  11515. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_50percent_id_5=0
  11516. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_100percent_id_5=0
  11517. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_0percent_id_5=0
  11518. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_50percent_id_5=0
  11519. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_100percent_id_5=0
  11520. VIP_var_Peaking_DLTI_BP_Gain_Lti_0percent_id_5=0
  11521. VIP_var_Peaking_DLTI_BP_Gain_Lti_50percent_id_5=0
  11522. VIP_var_Peaking_DLTI_BP_Gain_Lti_100percent_id_5=0
  11523. VIP_var_Peaking_DLTI_EP_Gain_Lti_0percent_id_5=0
  11524. VIP_var_Peaking_DLTI_EP_Gain_Lti_50percent_id_5=0
  11525. VIP_var_Peaking_DLTI_EP_Gain_Lti_100percent_id_5=0
  11526. VIP_var_Peaking_DLTI_HP_Gain_Lti_0percent_id_5=0
  11527. VIP_var_Peaking_DLTI_HP_Gain_Lti_50percent_id_5=0
  11528. VIP_var_Peaking_DLTI_HP_Gain_Lti_100percent_id_5=0
  11529. VIP_var_Peaking_DLTI_St_Sel_0percent_id_5=0
  11530. VIP_var_Peaking_DLTI_St_Sel_50percent_id_5=0
  11531. VIP_var_Peaking_DLTI_St_Sel_100percent_id_5=0
  11532. VIP_var_Peaking_DLTI_Coring_Lti_0percent_id_5=0
  11533. VIP_var_Peaking_DLTI_Coring_Lti_50percent_id_5=0
  11534. VIP_var_Peaking_DLTI_Coring_Lti_100percent_id_5=0
  11535. VIP_var_Peaking_DLTI_Hi_Coring_Lti_0percent_id_5=0
  11536. VIP_var_Peaking_DLTI_Hi_Coring_Lti_50percent_id_5=0
  11537. VIP_var_Peaking_DLTI_Hi_Coring_Lti_100percent_id_5=0
  11538. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_0percent_id_5=0
  11539. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_50percent_id_5=0
  11540. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_100percent_id_5=0
  11541. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_0percent_id_5=0
  11542. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_50percent_id_5=0
  11543. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_100percent_id_5=0
  11544. VIP_var_Peaking_DLTI_Over_Max_Peak_0percent_id_5=0
  11545. VIP_var_Peaking_DLTI_Over_Max_Peak_50percent_id_5=0
  11546. VIP_var_Peaking_DLTI_Over_Max_Peak_100percent_id_5=0
  11547. VIP_var_Peaking_DLTI_Over_Min_Peak_0percent_id_5=0
  11548. VIP_var_Peaking_DLTI_Over_Min_Peak_50percent_id_5=0
  11549. VIP_var_Peaking_DLTI_Over_Min_Peak_100percent_id_5=0
  11550. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_0percent_id_5=0
  11551. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_50percent_id_5=0
  11552. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_100percent_id_5=0
  11553. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_0percent_id_5=0
  11554. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_50percent_id_5=0
  11555. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_100percent_id_5=0
  11556. VIP_var_Peaking_DLTI_Over_Max_Lti_0percent_id_5=0
  11557. VIP_var_Peaking_DLTI_Over_Max_Lti_50percent_id_5=0
  11558. VIP_var_Peaking_DLTI_Over_Max_Lti_100percent_id_5=0
  11559. VIP_var_Peaking_DLTI_Over_Min_Lti_0percent_id_5=0
  11560. VIP_var_Peaking_DLTI_Over_Min_Lti_50percent_id_5=0
  11561. VIP_var_Peaking_DLTI_Over_Min_Lti_100percent_id_5=0
  11562. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_0percent_id_5=0
  11563. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_50percent_id_5=0
  11564. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_100percent_id_5=0
  11565. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_0percent_id_5=0
  11566. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_50percent_id_5=0
  11567. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_100percent_id_5=0
  11568. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_0percent_id_5=0
  11569. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_50percent_id_5=0
  11570. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_100percent_id_5=0
  11571. VIP_var_Peaking_DLTI_Sharp_Select_0percent_id_6=1
  11572. VIP_var_Peaking_DLTI_Sharp_Select_50percent_id_6=0
  11573. VIP_var_Peaking_DLTI_Sharp_Select_100percent_id_6=0
  11574. VIP_var_Peaking_DLTI_xp0_Peaking_0percent_id_6=0
  11575. VIP_var_Peaking_DLTI_xp0_Peaking_50percent_id_6=0
  11576. VIP_var_Peaking_DLTI_xp0_Peaking_100percent_id_6=0
  11577. VIP_var_Peaking_DLTI_xp1_Peaking_0percent_id_6=50
  11578. VIP_var_Peaking_DLTI_xp1_Peaking_50percent_id_6=34
  11579. VIP_var_Peaking_DLTI_xp1_Peaking_100percent_id_6=55
  11580. VIP_var_Peaking_DLTI_xp2_Peaking_0percent_id_6=191
  11581. VIP_var_Peaking_DLTI_xp2_Peaking_50percent_id_6=214
  11582. VIP_var_Peaking_DLTI_xp2_Peaking_100percent_id_6=187
  11583. VIP_var_Peaking_DLTI_xp3_Peaking_0percent_id_6=255
  11584. VIP_var_Peaking_DLTI_xp3_Peaking_50percent_id_6=255
  11585. VIP_var_Peaking_DLTI_xp3_Peaking_100percent_id_6=255
  11586. VIP_var_Peaking_DLTI_yp0_Peaking_0percent_id_6=0
  11587. VIP_var_Peaking_DLTI_yp0_Peaking_50percent_id_6=0
  11588. VIP_var_Peaking_DLTI_yp0_Peaking_100percent_id_6=0
  11589. VIP_var_Peaking_DLTI_yp1_Peaking_0percent_id_6=46
  11590. VIP_var_Peaking_DLTI_yp1_Peaking_50percent_id_6=87
  11591. VIP_var_Peaking_DLTI_yp1_Peaking_100percent_id_6=147
  11592. VIP_var_Peaking_DLTI_yp2_Peaking_0percent_id_6=0
  11593. VIP_var_Peaking_DLTI_yp2_Peaking_50percent_id_6=0
  11594. VIP_var_Peaking_DLTI_yp2_Peaking_100percent_id_6=0
  11595. VIP_var_Peaking_DLTI_mp1_Peaking_0percent_id_6=58
  11596. VIP_var_Peaking_DLTI_mp1_Peaking_50percent_id_6=163
  11597. VIP_var_Peaking_DLTI_mp1_Peaking_100percent_id_6=171
  11598. VIP_var_Peaking_DLTI_mp2_Peaking_0percent_id_6=46
  11599. VIP_var_Peaking_DLTI_mp2_Peaking_50percent_id_6=135
  11600. VIP_var_Peaking_DLTI_mp2_Peaking_100percent_id_6=138
  11601. VIP_var_Peaking_DLTI_xp0_DLTI_0percent_id_6=0
  11602. VIP_var_Peaking_DLTI_xp0_DLTI_50percent_id_6=0
  11603. VIP_var_Peaking_DLTI_xp0_DLTI_100percent_id_6=0
  11604. VIP_var_Peaking_DLTI_xp1_DLTI_0percent_id_6=45
  11605. VIP_var_Peaking_DLTI_xp1_DLTI_50percent_id_6=30
  11606. VIP_var_Peaking_DLTI_xp1_DLTI_100percent_id_6=58
  11607. VIP_var_Peaking_DLTI_xp2_DLTI_0percent_id_6=206
  11608. VIP_var_Peaking_DLTI_xp2_DLTI_50percent_id_6=220
  11609. VIP_var_Peaking_DLTI_xp2_DLTI_100percent_id_6=183
  11610. VIP_var_Peaking_DLTI_xp3_DLTI_0percent_id_6=255
  11611. VIP_var_Peaking_DLTI_xp3_DLTI_50percent_id_6=255
  11612. VIP_var_Peaking_DLTI_xp3_DLTI_100percent_id_6=255
  11613. VIP_var_Peaking_DLTI_yp0_DLTI_0percent_id_6=0
  11614. VIP_var_Peaking_DLTI_yp0_DLTI_50percent_id_6=0
  11615. VIP_var_Peaking_DLTI_yp0_DLTI_100percent_id_6=0
  11616. VIP_var_Peaking_DLTI_yp1_DLTI_0percent_id_6=92
  11617. VIP_var_Peaking_DLTI_yp1_DLTI_50percent_id_6=147
  11618. VIP_var_Peaking_DLTI_yp1_DLTI_100percent_id_6=201
  11619. VIP_var_Peaking_DLTI_yp2_DLTI_0percent_id_6=2
  11620. VIP_var_Peaking_DLTI_yp2_DLTI_50percent_id_6=0
  11621. VIP_var_Peaking_DLTI_yp2_DLTI_100percent_id_6=0
  11622. VIP_var_Peaking_DLTI_mp1_DLTI_0percent_id_6=130
  11623. VIP_var_Peaking_DLTI_mp1_DLTI_50percent_id_6=313
  11624. VIP_var_Peaking_DLTI_mp1_DLTI_100percent_id_6=221
  11625. VIP_var_Peaking_DLTI_mp2_DLTI_0percent_id_6=117
  11626. VIP_var_Peaking_DLTI_mp2_DLTI_50percent_id_6=268
  11627. VIP_var_Peaking_DLTI_mp2_DLTI_100percent_id_6=178
  11628. VIP_var_Peaking_DLTI_Peaking_en_0percent_id_6=1
  11629. VIP_var_Peaking_DLTI_Peaking_en_50percent_id_6=0
  11630. VIP_var_Peaking_DLTI_Peaking_en_100percent_id_6=0
  11631. VIP_var_Peaking_DLTI_DLTI_en_0percent_id_6=1
  11632. VIP_var_Peaking_DLTI_DLTI_en_50percent_id_6=0
  11633. VIP_var_Peaking_DLTI_DLTI_en_100percent_id_6=0
  11634. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_0percent_id_6=0
  11635. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_50percent_id_6=0
  11636. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_100percent_id_6=0
  11637. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_0percent_id_6=5
  11638. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_50percent_id_6=7
  11639. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_100percent_id_6=12
  11640. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_0percent_id_6=0
  11641. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_50percent_id_6=0
  11642. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_100percent_id_6=0
  11643. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_0percent_id_6=0
  11644. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_50percent_id_6=0
  11645. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_100percent_id_6=0
  11646. VIP_var_Peaking_DLTI_Coring_Neg_Peak_0percent_id_6=6
  11647. VIP_var_Peaking_DLTI_Coring_Neg_Peak_50percent_id_6=7
  11648. VIP_var_Peaking_DLTI_Coring_Neg_Peak_100percent_id_6=7
  11649. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_0percent_id_6=0
  11650. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_50percent_id_6=0
  11651. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_100percent_id_6=0
  11652. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_0percent_id_6=1
  11653. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_50percent_id_6=0
  11654. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_100percent_id_6=0
  11655. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_0percent_id_6=0
  11656. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_50percent_id_6=0
  11657. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_100percent_id_6=0
  11658. VIP_var_Peaking_DLTI_HP_Gain_V31_0percent_id_6=0
  11659. VIP_var_Peaking_DLTI_HP_Gain_V31_50percent_id_6=0
  11660. VIP_var_Peaking_DLTI_HP_Gain_V31_100percent_id_6=0
  11661. VIP_var_Peaking_DLTI_HP_Gain_V51_0percent_id_6=5
  11662. VIP_var_Peaking_DLTI_HP_Gain_V51_50percent_id_6=6
  11663. VIP_var_Peaking_DLTI_HP_Gain_V51_100percent_id_6=6
  11664. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_0percent_id_6=1
  11665. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_50percent_id_6=0
  11666. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_100percent_id_6=0
  11667. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_0percent_id_6=0
  11668. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_50percent_id_6=0
  11669. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_100percent_id_6=0
  11670. VIP_var_Peaking_DLTI_Low_Pass_Lti_0percent_id_6=1
  11671. VIP_var_Peaking_DLTI_Low_Pass_Lti_50percent_id_6=0
  11672. VIP_var_Peaking_DLTI_Low_Pass_Lti_100percent_id_6=0
  11673. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_0percent_id_6=1
  11674. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_50percent_id_6=0
  11675. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_100percent_id_6=0
  11676. VIP_var_Peaking_DLTI_Coring_Peak1D_0percent_id_6=12
  11677. VIP_var_Peaking_DLTI_Coring_Peak1D_50percent_id_6=8
  11678. VIP_var_Peaking_DLTI_Coring_Peak1D_100percent_id_6=8
  11679. VIP_var_Peaking_DLTI_Coring_Peak_0percent_id_6=40
  11680. VIP_var_Peaking_DLTI_Coring_Peak_50percent_id_6=60
  11681. VIP_var_Peaking_DLTI_Coring_Peak_100percent_id_6=36
  11682. VIP_var_Peaking_DLTI_Coring_PeakV_0percent_id_6=12
  11683. VIP_var_Peaking_DLTI_Coring_PeakV_50percent_id_6=8
  11684. VIP_var_Peaking_DLTI_Coring_PeakV_100percent_id_6=8
  11685. VIP_var_Peaking_DLTI_Hi_Coring_Peak_0percent_id_6=40
  11686. VIP_var_Peaking_DLTI_Hi_Coring_Peak_50percent_id_6=48
  11687. VIP_var_Peaking_DLTI_Hi_Coring_Peak_100percent_id_6=40
  11688. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_0percent_id_6=0
  11689. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_50percent_id_6=0
  11690. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_100percent_id_6=0
  11691. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_0percent_id_6=0
  11692. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_50percent_id_6=0
  11693. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_100percent_id_6=0
  11694. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_0percent_id_6=6
  11695. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_50percent_id_6=11
  11696. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_100percent_id_6=12
  11697. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_0percent_id_6=0
  11698. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_50percent_id_6=0
  11699. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_100percent_id_6=0
  11700. VIP_var_Peaking_DLTI_Coring_Peak2D_0percent_id_6=16
  11701. VIP_var_Peaking_DLTI_Coring_Peak2D_50percent_id_6=16
  11702. VIP_var_Peaking_DLTI_Coring_Peak2D_100percent_id_6=16
  11703. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_0percent_id_6=2
  11704. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_50percent_id_6=2
  11705. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_100percent_id_6=2
  11706. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_0percent_id_6=2
  11707. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_50percent_id_6=2
  11708. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_100percent_id_6=2
  11709. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_0percent_id_6=32
  11710. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_50percent_id_6=32
  11711. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_100percent_id_6=32
  11712. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_0percent_id_6=0
  11713. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_50percent_id_6=0
  11714. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_100percent_id_6=0
  11715. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_0percent_id_6=1
  11716. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_50percent_id_6=0
  11717. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_100percent_id_6=0
  11718. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_0percent_id_6=0
  11719. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_50percent_id_6=0
  11720. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_100percent_id_6=0
  11721. VIP_var_Peaking_DLTI_BP_Gain_Lti_0percent_id_6=7
  11722. VIP_var_Peaking_DLTI_BP_Gain_Lti_50percent_id_6=13
  11723. VIP_var_Peaking_DLTI_BP_Gain_Lti_100percent_id_6=12
  11724. VIP_var_Peaking_DLTI_EP_Gain_Lti_0percent_id_6=0
  11725. VIP_var_Peaking_DLTI_EP_Gain_Lti_50percent_id_6=0
  11726. VIP_var_Peaking_DLTI_EP_Gain_Lti_100percent_id_6=0
  11727. VIP_var_Peaking_DLTI_HP_Gain_Lti_0percent_id_6=0
  11728. VIP_var_Peaking_DLTI_HP_Gain_Lti_50percent_id_6=0
  11729. VIP_var_Peaking_DLTI_HP_Gain_Lti_100percent_id_6=0
  11730. VIP_var_Peaking_DLTI_St_Sel_0percent_id_6=2
  11731. VIP_var_Peaking_DLTI_St_Sel_50percent_id_6=0
  11732. VIP_var_Peaking_DLTI_St_Sel_100percent_id_6=0
  11733. VIP_var_Peaking_DLTI_Coring_Lti_0percent_id_6=18
  11734. VIP_var_Peaking_DLTI_Coring_Lti_50percent_id_6=24
  11735. VIP_var_Peaking_DLTI_Coring_Lti_100percent_id_6=12
  11736. VIP_var_Peaking_DLTI_Hi_Coring_Lti_0percent_id_6=40
  11737. VIP_var_Peaking_DLTI_Hi_Coring_Lti_50percent_id_6=32
  11738. VIP_var_Peaking_DLTI_Hi_Coring_Lti_100percent_id_6=32
  11739. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_0percent_id_6=1
  11740. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_50percent_id_6=1
  11741. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_100percent_id_6=1
  11742. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_0percent_id_6=1
  11743. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_50percent_id_6=1
  11744. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_100percent_id_6=1
  11745. VIP_var_Peaking_DLTI_Over_Max_Peak_0percent_id_6=64
  11746. VIP_var_Peaking_DLTI_Over_Max_Peak_50percent_id_6=96
  11747. VIP_var_Peaking_DLTI_Over_Max_Peak_100percent_id_6=120
  11748. VIP_var_Peaking_DLTI_Over_Min_Peak_0percent_id_6=48
  11749. VIP_var_Peaking_DLTI_Over_Min_Peak_50percent_id_6=64
  11750. VIP_var_Peaking_DLTI_Over_Min_Peak_100percent_id_6=120
  11751. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_0percent_id_6=3
  11752. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_50percent_id_6=4
  11753. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_100percent_id_6=4
  11754. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_0percent_id_6=3
  11755. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_50percent_id_6=4
  11756. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_100percent_id_6=4
  11757. VIP_var_Peaking_DLTI_Over_Max_Lti_0percent_id_6=148
  11758. VIP_var_Peaking_DLTI_Over_Max_Lti_50percent_id_6=180
  11759. VIP_var_Peaking_DLTI_Over_Max_Lti_100percent_id_6=210
  11760. VIP_var_Peaking_DLTI_Over_Min_Lti_0percent_id_6=148
  11761. VIP_var_Peaking_DLTI_Over_Min_Lti_50percent_id_6=180
  11762. VIP_var_Peaking_DLTI_Over_Min_Lti_100percent_id_6=210
  11763. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_0percent_id_6=5
  11764. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_50percent_id_6=6
  11765. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_100percent_id_6=6
  11766. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_0percent_id_6=5
  11767. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_50percent_id_6=6
  11768. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_100percent_id_6=6
  11769. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_0percent_id_6=2
  11770. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_50percent_id_6=2
  11771. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_100percent_id_6=2
  11772. VIP_var_Peaking_DLTI_Sharp_Select_0percent_id_7=0
  11773. VIP_var_Peaking_DLTI_Sharp_Select_50percent_id_7=0
  11774. VIP_var_Peaking_DLTI_Sharp_Select_100percent_id_7=0
  11775. VIP_var_Peaking_DLTI_xp0_Peaking_0percent_id_7=25
  11776. VIP_var_Peaking_DLTI_xp0_Peaking_50percent_id_7=25
  11777. VIP_var_Peaking_DLTI_xp0_Peaking_100percent_id_7=25
  11778. VIP_var_Peaking_DLTI_xp1_Peaking_0percent_id_7=50
  11779. VIP_var_Peaking_DLTI_xp1_Peaking_50percent_id_7=50
  11780. VIP_var_Peaking_DLTI_xp1_Peaking_100percent_id_7=50
  11781. VIP_var_Peaking_DLTI_xp2_Peaking_0percent_id_7=75
  11782. VIP_var_Peaking_DLTI_xp2_Peaking_50percent_id_7=75
  11783. VIP_var_Peaking_DLTI_xp2_Peaking_100percent_id_7=75
  11784. VIP_var_Peaking_DLTI_xp3_Peaking_0percent_id_7=100
  11785. VIP_var_Peaking_DLTI_xp3_Peaking_50percent_id_7=100
  11786. VIP_var_Peaking_DLTI_xp3_Peaking_100percent_id_7=100
  11787. VIP_var_Peaking_DLTI_yp0_Peaking_0percent_id_7=25
  11788. VIP_var_Peaking_DLTI_yp0_Peaking_50percent_id_7=25
  11789. VIP_var_Peaking_DLTI_yp0_Peaking_100percent_id_7=25
  11790. VIP_var_Peaking_DLTI_yp1_Peaking_0percent_id_7=50
  11791. VIP_var_Peaking_DLTI_yp1_Peaking_50percent_id_7=50
  11792. VIP_var_Peaking_DLTI_yp1_Peaking_100percent_id_7=50
  11793. VIP_var_Peaking_DLTI_yp2_Peaking_0percent_id_7=40
  11794. VIP_var_Peaking_DLTI_yp2_Peaking_50percent_id_7=40
  11795. VIP_var_Peaking_DLTI_yp2_Peaking_100percent_id_7=40
  11796. VIP_var_Peaking_DLTI_mp1_Peaking_0percent_id_7=64
  11797. VIP_var_Peaking_DLTI_mp1_Peaking_50percent_id_7=64
  11798. VIP_var_Peaking_DLTI_mp1_Peaking_100percent_id_7=64
  11799. VIP_var_Peaking_DLTI_mp2_Peaking_0percent_id_7=25
  11800. VIP_var_Peaking_DLTI_mp2_Peaking_50percent_id_7=25
  11801. VIP_var_Peaking_DLTI_mp2_Peaking_100percent_id_7=25
  11802. VIP_var_Peaking_DLTI_xp0_DLTI_0percent_id_7=25
  11803. VIP_var_Peaking_DLTI_xp0_DLTI_50percent_id_7=25
  11804. VIP_var_Peaking_DLTI_xp0_DLTI_100percent_id_7=25
  11805. VIP_var_Peaking_DLTI_xp1_DLTI_0percent_id_7=50
  11806. VIP_var_Peaking_DLTI_xp1_DLTI_50percent_id_7=50
  11807. VIP_var_Peaking_DLTI_xp1_DLTI_100percent_id_7=50
  11808. VIP_var_Peaking_DLTI_xp2_DLTI_0percent_id_7=75
  11809. VIP_var_Peaking_DLTI_xp2_DLTI_50percent_id_7=75
  11810. VIP_var_Peaking_DLTI_xp2_DLTI_100percent_id_7=75
  11811. VIP_var_Peaking_DLTI_xp3_DLTI_0percent_id_7=100
  11812. VIP_var_Peaking_DLTI_xp3_DLTI_50percent_id_7=100
  11813. VIP_var_Peaking_DLTI_xp3_DLTI_100percent_id_7=100
  11814. VIP_var_Peaking_DLTI_yp0_DLTI_0percent_id_7=25
  11815. VIP_var_Peaking_DLTI_yp0_DLTI_50percent_id_7=25
  11816. VIP_var_Peaking_DLTI_yp0_DLTI_100percent_id_7=25
  11817. VIP_var_Peaking_DLTI_yp1_DLTI_0percent_id_7=50
  11818. VIP_var_Peaking_DLTI_yp1_DLTI_50percent_id_7=50
  11819. VIP_var_Peaking_DLTI_yp1_DLTI_100percent_id_7=50
  11820. VIP_var_Peaking_DLTI_yp2_DLTI_0percent_id_7=40
  11821. VIP_var_Peaking_DLTI_yp2_DLTI_50percent_id_7=40
  11822. VIP_var_Peaking_DLTI_yp2_DLTI_100percent_id_7=40
  11823. VIP_var_Peaking_DLTI_mp1_DLTI_0percent_id_7=64
  11824. VIP_var_Peaking_DLTI_mp1_DLTI_50percent_id_7=64
  11825. VIP_var_Peaking_DLTI_mp1_DLTI_100percent_id_7=64
  11826. VIP_var_Peaking_DLTI_mp2_DLTI_0percent_id_7=25
  11827. VIP_var_Peaking_DLTI_mp2_DLTI_50percent_id_7=25
  11828. VIP_var_Peaking_DLTI_mp2_DLTI_100percent_id_7=25
  11829. VIP_var_Peaking_DLTI_Peaking_en_0percent_id_7=0
  11830. VIP_var_Peaking_DLTI_Peaking_en_50percent_id_7=0
  11831. VIP_var_Peaking_DLTI_Peaking_en_100percent_id_7=0
  11832. VIP_var_Peaking_DLTI_DLTI_en_0percent_id_7=0
  11833. VIP_var_Peaking_DLTI_DLTI_en_50percent_id_7=0
  11834. VIP_var_Peaking_DLTI_DLTI_en_100percent_id_7=0
  11835. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_0percent_id_7=1
  11836. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_50percent_id_7=0
  11837. VIP_var_Peaking_DLTI_Filter_Mode_Peak1D_100percent_id_7=0
  11838. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_0percent_id_7=0
  11839. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_50percent_id_7=0
  11840. VIP_var_Peaking_DLTI_BP_Gain_Peak1D_100percent_id_7=0
  11841. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_0percent_id_7=0
  11842. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_50percent_id_7=0
  11843. VIP_var_Peaking_DLTI_EP_Gain_Peak1D_100percent_id_7=0
  11844. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_0percent_id_7=0
  11845. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_50percent_id_7=0
  11846. VIP_var_Peaking_DLTI_HP_Gain_Peak1D_100percent_id_7=0
  11847. VIP_var_Peaking_DLTI_Coring_Neg_Peak_0percent_id_7=0
  11848. VIP_var_Peaking_DLTI_Coring_Neg_Peak_50percent_id_7=0
  11849. VIP_var_Peaking_DLTI_Coring_Neg_Peak_100percent_id_7=0
  11850. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_0percent_id_7=0
  11851. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_50percent_id_7=0
  11852. VIP_var_Peaking_DLTI_Peaking_Hp_Tap_100percent_id_7=0
  11853. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_0percent_id_7=0
  11854. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_50percent_id_7=0
  11855. VIP_var_Peaking_DLTI_Peaking_Bp_Tap_100percent_id_7=0
  11856. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_0percent_id_7=0
  11857. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_50percent_id_7=0
  11858. VIP_var_Peaking_DLTI_Peaking_Ep_Tap_100percent_id_7=0
  11859. VIP_var_Peaking_DLTI_HP_Gain_V31_0percent_id_7=0
  11860. VIP_var_Peaking_DLTI_HP_Gain_V31_50percent_id_7=0
  11861. VIP_var_Peaking_DLTI_HP_Gain_V31_100percent_id_7=0
  11862. VIP_var_Peaking_DLTI_HP_Gain_V51_0percent_id_7=0
  11863. VIP_var_Peaking_DLTI_HP_Gain_V51_50percent_id_7=0
  11864. VIP_var_Peaking_DLTI_HP_Gain_V51_100percent_id_7=0
  11865. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_0percent_id_7=0
  11866. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_50percent_id_7=0
  11867. VIP_var_Peaking_DLTI_Low_Pass_Peak1D_100percent_id_7=0
  11868. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_0percent_id_7=0
  11869. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_50percent_id_7=0
  11870. VIP_var_Peaking_DLTI_ABS_LP_En_Peak_100percent_id_7=0
  11871. VIP_var_Peaking_DLTI_Low_Pass_Lti_0percent_id_7=0
  11872. VIP_var_Peaking_DLTI_Low_Pass_Lti_50percent_id_7=0
  11873. VIP_var_Peaking_DLTI_Low_Pass_Lti_100percent_id_7=0
  11874. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_0percent_id_7=0
  11875. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_50percent_id_7=0
  11876. VIP_var_Peaking_DLTI_ABS_LP_En_Lti_100percent_id_7=0
  11877. VIP_var_Peaking_DLTI_Coring_Peak1D_0percent_id_7=0
  11878. VIP_var_Peaking_DLTI_Coring_Peak1D_50percent_id_7=0
  11879. VIP_var_Peaking_DLTI_Coring_Peak1D_100percent_id_7=0
  11880. VIP_var_Peaking_DLTI_Coring_Peak_0percent_id_7=0
  11881. VIP_var_Peaking_DLTI_Coring_Peak_50percent_id_7=0
  11882. VIP_var_Peaking_DLTI_Coring_Peak_100percent_id_7=0
  11883. VIP_var_Peaking_DLTI_Coring_PeakV_0percent_id_7=0
  11884. VIP_var_Peaking_DLTI_Coring_PeakV_50percent_id_7=0
  11885. VIP_var_Peaking_DLTI_Coring_PeakV_100percent_id_7=0
  11886. VIP_var_Peaking_DLTI_Hi_Coring_Peak_0percent_id_7=0
  11887. VIP_var_Peaking_DLTI_Hi_Coring_Peak_50percent_id_7=0
  11888. VIP_var_Peaking_DLTI_Hi_Coring_Peak_100percent_id_7=0
  11889. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_0percent_id_7=0
  11890. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_50percent_id_7=0
  11891. VIP_var_Peaking_DLTI_HP0_Gain_Peak2D_100percent_id_7=0
  11892. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_0percent_id_7=0
  11893. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_50percent_id_7=0
  11894. VIP_var_Peaking_DLTI_HP1_Gain_Peak2D_100percent_id_7=0
  11895. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_0percent_id_7=0
  11896. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_50percent_id_7=0
  11897. VIP_var_Peaking_DLTI_BP0_Gain_Peak2D_100percent_id_7=0
  11898. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_0percent_id_7=0
  11899. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_50percent_id_7=0
  11900. VIP_var_Peaking_DLTI_BP1_Gain_Peak2D_100percent_id_7=0
  11901. VIP_var_Peaking_DLTI_Coring_Peak2D_0percent_id_7=0
  11902. VIP_var_Peaking_DLTI_Coring_Peak2D_50percent_id_7=0
  11903. VIP_var_Peaking_DLTI_Coring_Peak2D_100percent_id_7=0
  11904. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_0percent_id_7=0
  11905. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_50percent_id_7=0
  11906. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_100percent_id_7=0
  11907. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_0percent_id_7=0
  11908. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_50percent_id_7=0
  11909. VIP_var_Peaking_DLTI_Max_Min_VSLrTap_100percent_id_7=0
  11910. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_0percent_id_7=0
  11911. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_50percent_id_7=0
  11912. VIP_var_Peaking_DLTI_Adjcent_Diff_Th_100percent_id_7=0
  11913. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_0percent_id_7=0
  11914. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_50percent_id_7=0
  11915. VIP_var_Peaking_DLTI_DLTI_Hp_Tap_100percent_id_7=0
  11916. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_0percent_id_7=0
  11917. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_50percent_id_7=0
  11918. VIP_var_Peaking_DLTI_DLTI_Bp_Tap_100percent_id_7=0
  11919. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_0percent_id_7=0
  11920. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_50percent_id_7=0
  11921. VIP_var_Peaking_DLTI_DLTI_Ep_Tap_100percent_id_7=0
  11922. VIP_var_Peaking_DLTI_BP_Gain_Lti_0percent_id_7=0
  11923. VIP_var_Peaking_DLTI_BP_Gain_Lti_50percent_id_7=0
  11924. VIP_var_Peaking_DLTI_BP_Gain_Lti_100percent_id_7=0
  11925. VIP_var_Peaking_DLTI_EP_Gain_Lti_0percent_id_7=0
  11926. VIP_var_Peaking_DLTI_EP_Gain_Lti_50percent_id_7=0
  11927. VIP_var_Peaking_DLTI_EP_Gain_Lti_100percent_id_7=0
  11928. VIP_var_Peaking_DLTI_HP_Gain_Lti_0percent_id_7=0
  11929. VIP_var_Peaking_DLTI_HP_Gain_Lti_50percent_id_7=0
  11930. VIP_var_Peaking_DLTI_HP_Gain_Lti_100percent_id_7=0
  11931. VIP_var_Peaking_DLTI_St_Sel_0percent_id_7=0
  11932. VIP_var_Peaking_DLTI_St_Sel_50percent_id_7=0
  11933. VIP_var_Peaking_DLTI_St_Sel_100percent_id_7=0
  11934. VIP_var_Peaking_DLTI_Coring_Lti_0percent_id_7=0
  11935. VIP_var_Peaking_DLTI_Coring_Lti_50percent_id_7=0
  11936. VIP_var_Peaking_DLTI_Coring_Lti_100percent_id_7=0
  11937. VIP_var_Peaking_DLTI_Hi_Coring_Lti_0percent_id_7=0
  11938. VIP_var_Peaking_DLTI_Hi_Coring_Lti_50percent_id_7=0
  11939. VIP_var_Peaking_DLTI_Hi_Coring_Lti_100percent_id_7=0
  11940. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_0percent_id_7=0
  11941. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_50percent_id_7=0
  11942. VIP_var_Peaking_DLTI_DeOvst_New_Method_Peak_100percent_id_7=0
  11943. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_0percent_id_7=0
  11944. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_50percent_id_7=0
  11945. VIP_var_Peaking_DLTI_DeOvst_New_Method_Lti_100percent_id_7=0
  11946. VIP_var_Peaking_DLTI_Over_Max_Peak_0percent_id_7=0
  11947. VIP_var_Peaking_DLTI_Over_Max_Peak_50percent_id_7=0
  11948. VIP_var_Peaking_DLTI_Over_Max_Peak_100percent_id_7=0
  11949. VIP_var_Peaking_DLTI_Over_Min_Peak_0percent_id_7=0
  11950. VIP_var_Peaking_DLTI_Over_Min_Peak_50percent_id_7=0
  11951. VIP_var_Peaking_DLTI_Over_Min_Peak_100percent_id_7=0
  11952. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_0percent_id_7=0
  11953. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_50percent_id_7=0
  11954. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Peak_100percent_id_7=0
  11955. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_0percent_id_7=0
  11956. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_50percent_id_7=0
  11957. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Peak_100percent_id_7=0
  11958. VIP_var_Peaking_DLTI_Over_Max_Lti_0percent_id_7=0
  11959. VIP_var_Peaking_DLTI_Over_Max_Lti_50percent_id_7=0
  11960. VIP_var_Peaking_DLTI_Over_Max_Lti_100percent_id_7=0
  11961. VIP_var_Peaking_DLTI_Over_Min_Lti_0percent_id_7=0
  11962. VIP_var_Peaking_DLTI_Over_Min_Lti_50percent_id_7=0
  11963. VIP_var_Peaking_DLTI_Over_Min_Lti_100percent_id_7=0
  11964. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_0percent_id_7=0
  11965. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_50percent_id_7=0
  11966. VIP_var_Peaking_DLTI_Ovst_Gain_Max_Lti_100percent_id_7=0
  11967. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_0percent_id_7=0
  11968. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_50percent_id_7=0
  11969. VIP_var_Peaking_DLTI_Ovst_Gain_Min_Lti_100percent_id_7=0
  11970. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_0percent_id_7=0
  11971. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_50percent_id_7=0
  11972. VIP_var_Peaking_DLTI_Max_Min_HSLrTap_Lti_100percent_id_7=0
  11973. VIP_var_UV_offset_En_id_0=0x0
  11974. VIP_var_UV_offset_Method_Select_id_0=0x0
  11975. VIP_var_UV_offset_Off_Lumi_Low_id_0=0x12c
  11976. VIP_var_UV_offset_Off_Lumi_High_id_0=0x258
  11977. VIP_var_UV_offset_UV_Off_Method1_Cb_id_0=0x1f4
  11978. VIP_var_UV_offset_UV_Off_Method2_Cb_id_0=0x1c2
  11979. VIP_var_UV_offset_Slope_Max_RGB_Cb_id_0=0xcdcdcdcd
  11980. VIP_var_UV_offset_UV_Off_Method1_Cr_id_0=0x1f4
  11981. VIP_var_UV_offset_UV_Off_Method2_Cr_id_0=0x1c2
  11982. VIP_var_UV_offset_Slope_Max_RGB_Cr_id_0=0xcdcdcdcd
  11983. VIP_var_UV_offset_Off_Sat_Low_Low2_id_0=0x64
  11984. VIP_var_UV_offset_Off_Sat_Low_Low_id_0=0x12c
  11985. VIP_var_UV_offset_Off_Sat_Low_id_0=0x1f4
  11986. VIP_var_UV_offset_Off_Sat_High_id_0=0x2bc
  11987. VIP_var_UV_offset_UV_Sat_Offset_Cb_id_0=0x0
  11988. VIP_var_UV_offset_UV_Offset_Cb_id_0=0x1c2
  11989. VIP_var_UV_offset_Slope_Sat_Cb2_id_0=0xcdcdcdcd
  11990. VIP_var_UV_offset_Slope_Sat_Cb_id_0=0xcdcdcdcd
  11991. VIP_var_UV_offset_UV_Sat_Offset_Cr_id_0=0x0
  11992. VIP_var_UV_offset_UV_Offset_Cr_id_0=0x1c2
  11993. VIP_var_UV_offset_Slope_Sat_Cr_id_0=0xcdcdcdcd
  11994. VIP_var_UV_offset_En_id_1=0x0
  11995. VIP_var_UV_offset_Method_Select_id_1=0x0
  11996. VIP_var_UV_offset_Off_Lumi_Low_id_1=0x12c
  11997. VIP_var_UV_offset_Off_Lumi_High_id_1=0x258
  11998. VIP_var_UV_offset_UV_Off_Method1_Cb_id_1=0x1f4
  11999. VIP_var_UV_offset_UV_Off_Method2_Cb_id_1=0x1c2
  12000. VIP_var_UV_offset_Slope_Max_RGB_Cb_id_1=0xcdcdcdcd
  12001. VIP_var_UV_offset_UV_Off_Method1_Cr_id_1=0x1f4
  12002. VIP_var_UV_offset_UV_Off_Method2_Cr_id_1=0x1c2
  12003. VIP_var_UV_offset_Slope_Max_RGB_Cr_id_1=0xcdcdcdcd
  12004. VIP_var_UV_offset_Off_Sat_Low_Low2_id_1=0x64
  12005. VIP_var_UV_offset_Off_Sat_Low_Low_id_1=0x12c
  12006. VIP_var_UV_offset_Off_Sat_Low_id_1=0x1f4
  12007. VIP_var_UV_offset_Off_Sat_High_id_1=0x2bc
  12008. VIP_var_UV_offset_UV_Sat_Offset_Cb_id_1=0x0
  12009. VIP_var_UV_offset_UV_Offset_Cb_id_1=0x1c2
  12010. VIP_var_UV_offset_Slope_Sat_Cb2_id_1=0xcdcdcdcd
  12011. VIP_var_UV_offset_Slope_Sat_Cb_id_1=0xcdcdcdcd
  12012. VIP_var_UV_offset_UV_Sat_Offset_Cr_id_1=0x0
  12013. VIP_var_UV_offset_UV_Offset_Cr_id_1=0x1c2
  12014. VIP_var_UV_offset_Slope_Sat_Cr_id_1=0xcdcdcdcd
  12015. VIP_var_UV_offset_En_id_2=0x0
  12016. VIP_var_UV_offset_Method_Select_id_2=0x0
  12017. VIP_var_UV_offset_Off_Lumi_Low_id_2=0x12c
  12018. VIP_var_UV_offset_Off_Lumi_High_id_2=0x258
  12019. VIP_var_UV_offset_UV_Off_Method1_Cb_id_2=0x1f4
  12020. VIP_var_UV_offset_UV_Off_Method2_Cb_id_2=0x1c2
  12021. VIP_var_UV_offset_Slope_Max_RGB_Cb_id_2=0xcdcdcdcd
  12022. VIP_var_UV_offset_UV_Off_Method1_Cr_id_2=0x1f4
  12023. VIP_var_UV_offset_UV_Off_Method2_Cr_id_2=0x1c2
  12024. VIP_var_UV_offset_Slope_Max_RGB_Cr_id_2=0xcdcdcdcd
  12025. VIP_var_UV_offset_Off_Sat_Low_Low2_id_2=0x64
  12026. VIP_var_UV_offset_Off_Sat_Low_Low_id_2=0x12c
  12027. VIP_var_UV_offset_Off_Sat_Low_id_2=0x1f4
  12028. VIP_var_UV_offset_Off_Sat_High_id_2=0x2bc
  12029. VIP_var_UV_offset_UV_Sat_Offset_Cb_id_2=0x0
  12030. VIP_var_UV_offset_UV_Offset_Cb_id_2=0x1c2
  12031. VIP_var_UV_offset_Slope_Sat_Cb2_id_2=0xcdcdcdcd
  12032. VIP_var_UV_offset_Slope_Sat_Cb_id_2=0xcdcdcdcd
  12033. VIP_var_UV_offset_UV_Sat_Offset_Cr_id_2=0x0
  12034. VIP_var_UV_offset_UV_Offset_Cr_id_2=0x1c2
  12035. VIP_var_UV_offset_Slope_Sat_Cr_id_2=0xcdcdcdcd
  12036. VIP_var_UV_offset_En_id_3=0x0
  12037. VIP_var_UV_offset_Method_Select_id_3=0x0
  12038. VIP_var_UV_offset_Off_Lumi_Low_id_3=0x12c
  12039. VIP_var_UV_offset_Off_Lumi_High_id_3=0x258
  12040. VIP_var_UV_offset_UV_Off_Method1_Cb_id_3=0x1f4
  12041. VIP_var_UV_offset_UV_Off_Method2_Cb_id_3=0x1c2
  12042. VIP_var_UV_offset_Slope_Max_RGB_Cb_id_3=0xcdcdcdcd
  12043. VIP_var_UV_offset_UV_Off_Method1_Cr_id_3=0x1f4
  12044. VIP_var_UV_offset_UV_Off_Method2_Cr_id_3=0x1c2
  12045. VIP_var_UV_offset_Slope_Max_RGB_Cr_id_3=0xcdcdcdcd
  12046. VIP_var_UV_offset_Off_Sat_Low_Low2_id_3=0x64
  12047. VIP_var_UV_offset_Off_Sat_Low_Low_id_3=0x12c
  12048. VIP_var_UV_offset_Off_Sat_Low_id_3=0x1f4
  12049. VIP_var_UV_offset_Off_Sat_High_id_3=0x2bc
  12050. VIP_var_UV_offset_UV_Sat_Offset_Cb_id_3=0x0
  12051. VIP_var_UV_offset_UV_Offset_Cb_id_3=0x1c2
  12052. VIP_var_UV_offset_Slope_Sat_Cb2_id_3=0xcdcdcdcd
  12053. VIP_var_UV_offset_Slope_Sat_Cb_id_3=0xcdcdcdcd
  12054. VIP_var_UV_offset_UV_Sat_Offset_Cr_id_3=0x0
  12055. VIP_var_UV_offset_UV_Offset_Cr_id_3=0x1c2
  12056. VIP_var_UV_offset_Slope_Sat_Cr_id_3=0xcdcdcdcd
  12057. VIP_var_UV_offset_En_id_4=0x0
  12058. VIP_var_UV_offset_Method_Select_id_4=0x0
  12059. VIP_var_UV_offset_Off_Lumi_Low_id_4=0x12c
  12060. VIP_var_UV_offset_Off_Lumi_High_id_4=0x258
  12061. VIP_var_UV_offset_UV_Off_Method1_Cb_id_4=0x1f4
  12062. VIP_var_UV_offset_UV_Off_Method2_Cb_id_4=0x1c2
  12063. VIP_var_UV_offset_Slope_Max_RGB_Cb_id_4=0xcdcdcdcd
  12064. VIP_var_UV_offset_UV_Off_Method1_Cr_id_4=0x1f4
  12065. VIP_var_UV_offset_UV_Off_Method2_Cr_id_4=0x1c2
  12066. VIP_var_UV_offset_Slope_Max_RGB_Cr_id_4=0xcdcdcdcd
  12067. VIP_var_UV_offset_Off_Sat_Low_Low2_id_4=0x64
  12068. VIP_var_UV_offset_Off_Sat_Low_Low_id_4=0x12c
  12069. VIP_var_UV_offset_Off_Sat_Low_id_4=0x1f4
  12070. VIP_var_UV_offset_Off_Sat_High_id_4=0x2bc
  12071. VIP_var_UV_offset_UV_Sat_Offset_Cb_id_4=0x0
  12072. VIP_var_UV_offset_UV_Offset_Cb_id_4=0x1c2
  12073. VIP_var_UV_offset_Slope_Sat_Cb2_id_4=0xcdcdcdcd
  12074. VIP_var_UV_offset_Slope_Sat_Cb_id_4=0xcdcdcdcd
  12075. VIP_var_UV_offset_UV_Sat_Offset_Cr_id_4=0x0
  12076. VIP_var_UV_offset_UV_Offset_Cr_id_4=0x1c2
  12077. VIP_var_UV_offset_Slope_Sat_Cr_id_4=0xcdcdcdcd
  12078. VIP_var_UV_offset_En_id_5=0x0
  12079. VIP_var_UV_offset_Method_Select_id_5=0x0
  12080. VIP_var_UV_offset_Off_Lumi_Low_id_5=0x12c
  12081. VIP_var_UV_offset_Off_Lumi_High_id_5=0x258
  12082. VIP_var_UV_offset_UV_Off_Method1_Cb_id_5=0x1f4
  12083. VIP_var_UV_offset_UV_Off_Method2_Cb_id_5=0x1c2
  12084. VIP_var_UV_offset_Slope_Max_RGB_Cb_id_5=0xcdcdcdcd
  12085. VIP_var_UV_offset_UV_Off_Method1_Cr_id_5=0x1f4
  12086. VIP_var_UV_offset_UV_Off_Method2_Cr_id_5=0x1c2
  12087. VIP_var_UV_offset_Slope_Max_RGB_Cr_id_5=0xcdcdcdcd
  12088. VIP_var_UV_offset_Off_Sat_Low_Low2_id_5=0x64
  12089. VIP_var_UV_offset_Off_Sat_Low_Low_id_5=0x12c
  12090. VIP_var_UV_offset_Off_Sat_Low_id_5=0x1f4
  12091. VIP_var_UV_offset_Off_Sat_High_id_5=0x2bc
  12092. VIP_var_UV_offset_UV_Sat_Offset_Cb_id_5=0x0
  12093. VIP_var_UV_offset_UV_Offset_Cb_id_5=0x1c2
  12094. VIP_var_UV_offset_Slope_Sat_Cb2_id_5=0xcdcdcdcd
  12095. VIP_var_UV_offset_Slope_Sat_Cb_id_5=0xcdcdcdcd
  12096. VIP_var_UV_offset_UV_Sat_Offset_Cr_id_5=0x0
  12097. VIP_var_UV_offset_UV_Offset_Cr_id_5=0x1c2
  12098. VIP_var_UV_offset_Slope_Sat_Cr_id_5=0xcdcdcdcd
  12099. VIP_var_UV_offset_En_id_6=0x0
  12100. VIP_var_UV_offset_Method_Select_id_6=0x0
  12101. VIP_var_UV_offset_Off_Lumi_Low_id_6=0x12c
  12102. VIP_var_UV_offset_Off_Lumi_High_id_6=0x258
  12103. VIP_var_UV_offset_UV_Off_Method1_Cb_id_6=0x1f4
  12104. VIP_var_UV_offset_UV_Off_Method2_Cb_id_6=0x1c2
  12105. VIP_var_UV_offset_Slope_Max_RGB_Cb_id_6=0xcdcdcdcd
  12106. VIP_var_UV_offset_UV_Off_Method1_Cr_id_6=0x1f4
  12107. VIP_var_UV_offset_UV_Off_Method2_Cr_id_6=0x1c2
  12108. VIP_var_UV_offset_Slope_Max_RGB_Cr_id_6=0xcdcdcdcd
  12109. VIP_var_UV_offset_Off_Sat_Low_Low2_id_6=0x64
  12110. VIP_var_UV_offset_Off_Sat_Low_Low_id_6=0x12c
  12111. VIP_var_UV_offset_Off_Sat_Low_id_6=0x1f4
  12112. VIP_var_UV_offset_Off_Sat_High_id_6=0x2bc
  12113. VIP_var_UV_offset_UV_Sat_Offset_Cb_id_6=0x0
  12114. VIP_var_UV_offset_UV_Offset_Cb_id_6=0x1c2
  12115. VIP_var_UV_offset_Slope_Sat_Cb2_id_6=0xcdcdcdcd
  12116. VIP_var_UV_offset_Slope_Sat_Cb_id_6=0xcdcdcdcd
  12117. VIP_var_UV_offset_UV_Sat_Offset_Cr_id_6=0x0
  12118. VIP_var_UV_offset_UV_Offset_Cr_id_6=0x1c2
  12119. VIP_var_UV_offset_Slope_Sat_Cr_id_6=0xcdcdcdcd
  12120. VIP_var_UV_offset_En_id_7=0x0
  12121. VIP_var_UV_offset_Method_Select_id_7=0x0
  12122. VIP_var_UV_offset_Off_Lumi_Low_id_7=0x12c
  12123. VIP_var_UV_offset_Off_Lumi_High_id_7=0x258
  12124. VIP_var_UV_offset_UV_Off_Method1_Cb_id_7=0x1f4
  12125. VIP_var_UV_offset_UV_Off_Method2_Cb_id_7=0x1c2
  12126. VIP_var_UV_offset_Slope_Max_RGB_Cb_id_7=0xcdcdcdcd
  12127. VIP_var_UV_offset_UV_Off_Method1_Cr_id_7=0x1f4
  12128. VIP_var_UV_offset_UV_Off_Method2_Cr_id_7=0x1c2
  12129. VIP_var_UV_offset_Slope_Max_RGB_Cr_id_7=0xcdcdcdcd
  12130. VIP_var_UV_offset_Off_Sat_Low_Low2_id_7=0x64
  12131. VIP_var_UV_offset_Off_Sat_Low_Low_id_7=0x12c
  12132. VIP_var_UV_offset_Off_Sat_Low_id_7=0x1f4
  12133. VIP_var_UV_offset_Off_Sat_High_id_7=0x2bc
  12134. VIP_var_UV_offset_UV_Sat_Offset_Cb_id_7=0x0
  12135. VIP_var_UV_offset_UV_Offset_Cb_id_7=0x1c2
  12136. VIP_var_UV_offset_Slope_Sat_Cb2_id_7=0xcdcdcdcd
  12137. VIP_var_UV_offset_Slope_Sat_Cb_id_7=0xcdcdcdcd
  12138. VIP_var_UV_offset_UV_Sat_Offset_Cr_id_7=0x0
  12139. VIP_var_UV_offset_UV_Offset_Cr_id_7=0x1c2
  12140. VIP_var_UV_offset_Slope_Sat_Cr_id_7=0xcdcdcdcd
  12141. VIP_TABLE_MAGIC_NUMBER_27=9530
  12142. VIP_var_UV_offset_Slope_Sat_Cr2_id_00=0xcdcdcdcd
  12143. VIP_var_UV_offset_Slope_Sat_Cr2_id_01=0xcdcdcdcd
  12144. VIP_var_UV_offset_Slope_Sat_Cr2_id_02=0xcdcdcdcd
  12145. VIP_var_UV_offset_Slope_Sat_Cr2_id_03=0xcdcdcdcd
  12146. VIP_var_UV_offset_Slope_Sat_Cr2_id_04=0xcdcdcdcd
  12147. VIP_var_UV_offset_Slope_Sat_Cr2_id_05=0xcdcdcdcd
  12148. VIP_var_UV_offset_Slope_Sat_Cr2_id_06=0xcdcdcdcd
  12149. VIP_var_UV_offset_Slope_Sat_Cr2_id_07=0xcdcdcdcd