1 Star 0 Fork 0

古澜/Adafruit-ICM20948-PCB

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Adafruit ICM20948.brd 353.34 KB
一键复制 编辑 原始数据 按行查看 历史
siddacious 提交于 2020-08-05 14:16 . initial commit
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE eagle SYSTEM "eagle.dtd">
<eagle version="9.6.2">
<drawing>
<settings>
<setting alwaysvectorfont="no"/>
<setting keepoldvectorfont="yes"/>
<setting verticaltext="up"/>
</settings>
<grid distance="0.0005" unitdist="inch" unit="inch" style="lines" multiple="1" display="yes" altdistance="0.025" altunitdist="inch" altunit="inch"/>
<layers>
<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
<layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
<layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
<layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
<layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
<layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
<layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
<layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
<layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
<layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
<layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
<layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
<layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
<layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
<layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
<layer number="16" name="Bottom" color="9" fill="1" visible="yes" active="yes"/>
<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
<layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
<layer number="21" name="tPlace" color="14" fill="1" visible="yes" active="yes"/>
<layer number="22" name="bPlace" color="13" fill="1" visible="yes" active="yes"/>
<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
<layer number="24" name="bOrigins" color="13" fill="1" visible="yes" active="yes"/>
<layer number="25" name="tNames" color="7" fill="1" visible="no" active="yes"/>
<layer number="26" name="bNames" color="7" fill="1" visible="no" active="yes"/>
<layer number="27" name="tValues" color="11" fill="1" visible="no" active="yes"/>
<layer number="28" name="bValues" color="7" fill="1" visible="no" active="yes"/>
<layer number="29" name="tStop" color="7" fill="3" visible="no" active="yes"/>
<layer number="30" name="bStop" color="7" fill="6" visible="no" active="yes"/>
<layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/>
<layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/>
<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/>
<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="yes"/>
<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="yes"/>
<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="yes"/>
<layer number="42" name="bRestrict" color="11" fill="10" visible="no" active="yes"/>
<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="yes"/>
<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
<layer number="45" name="Holes" color="7" fill="1" visible="yes" active="yes"/>
<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
<layer number="48" name="Document" color="7" fill="1" visible="no" active="yes"/>
<layer number="49" name="Reference" color="7" fill="1" visible="no" active="yes"/>
<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="yes"/>
<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="yes"/>
<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/>
<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/>
<layer number="88" name="SimResults" color="9" fill="1" visible="no" active="no"/>
<layer number="89" name="SimProbes" color="9" fill="1" visible="no" active="no"/>
<layer number="90" name="Modules" color="7" fill="1" visible="no" active="no"/>
<layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/>
<layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/>
<layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/>
<layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/>
<layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/>
<layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/>
<layer number="97" name="Info" color="7" fill="1" visible="no" active="no"/>
<layer number="98" name="Guide" color="6" fill="1" visible="no" active="no"/>
<layer number="99" name="SpiceOrder" color="7" fill="1" visible="no" active="no"/>
<layer number="100" name="Muster" color="7" fill="1" visible="no" active="yes"/>
<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/>
<layer number="102" name="Mittellin" color="7" fill="1" visible="no" active="yes"/>
<layer number="103" name="Stiffner" color="7" fill="1" visible="no" active="yes"/>
<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/>
<layer number="105" name="Beschreib" color="7" fill="1" visible="no" active="yes"/>
<layer number="106" name="BGA-Top" color="7" fill="1" visible="no" active="yes"/>
<layer number="107" name="BD-Top" color="7" fill="1" visible="no" active="yes"/>
<layer number="108" name="tBridges" color="7" fill="1" visible="no" active="yes"/>
<layer number="109" name="tBPL" color="7" fill="1" visible="no" active="yes"/>
<layer number="110" name="bBPL" color="7" fill="1" visible="no" active="yes"/>
<layer number="111" name="MPL" color="7" fill="1" visible="no" active="yes"/>
<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/>
<layer number="113" name="ReferenceLS" color="7" fill="1" visible="no" active="no"/>
<layer number="114" name="tPlaceRed" color="7" fill="1" visible="no" active="yes"/>
<layer number="115" name="FRNTMAAT2" color="7" fill="1" visible="no" active="yes"/>
<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/>
<layer number="117" name="BACKMAAT1" color="7" fill="1" visible="no" active="yes"/>
<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="no"/>
<layer number="119" name="KAP_TEKEN" color="7" fill="1" visible="no" active="yes"/>
<layer number="120" name="KAP_MAAT1" color="7" fill="1" visible="no" active="yes"/>
<layer number="121" name="sName" color="7" fill="1" visible="no" active="yes"/>
<layer number="122" name="_bPlace" color="7" fill="1" visible="no" active="yes"/>
<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/>
<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/>
<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/>
<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/>
<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/>
<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/>
<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/>
<layer number="130" name="SMDSTROOK" color="7" fill="1" visible="no" active="yes"/>
<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/>
<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/>
<layer number="133" name="bottom_silk" color="7" fill="1" visible="no" active="yes"/>
<layer number="134" name="silk_top" color="7" fill="1" visible="no" active="yes"/>
<layer number="135" name="silk_bottom" color="7" fill="1" visible="no" active="yes"/>
<layer number="136" name="silktop" color="7" fill="1" visible="no" active="yes"/>
<layer number="137" name="silkbottom" color="7" fill="1" visible="no" active="yes"/>
<layer number="138" name="EEE" color="7" fill="1" visible="no" active="yes"/>
<layer number="139" name="_tKeepout" color="7" fill="1" visible="no" active="yes"/>
<layer number="140" name="mbKeepout" color="7" fill="1" visible="no" active="yes"/>
<layer number="141" name="ASSEMBLY_TOP" color="7" fill="1" visible="no" active="yes"/>
<layer number="142" name="mbRestrict" color="7" fill="1" visible="no" active="yes"/>
<layer number="143" name="PLACE_BOUND_TOP" color="7" fill="1" visible="no" active="yes"/>
<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/>
<layer number="145" name="DrillLegend_01-16" color="7" fill="1" visible="no" active="yes"/>
<layer number="146" name="DrillLegend_01-20" color="7" fill="1" visible="no" active="yes"/>
<layer number="147" name="PIN_NUMBER" color="7" fill="1" visible="no" active="yes"/>
<layer number="148" name="mDocument" color="7" fill="1" visible="no" active="yes"/>
<layer number="149" name="DrillLegend_02-15" color="7" fill="1" visible="no" active="yes"/>
<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/>
<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/>
<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/>
<layer number="153" name="FabDoc1" color="6" fill="1" visible="no" active="no"/>
<layer number="154" name="FabDoc2" color="2" fill="1" visible="no" active="no"/>
<layer number="155" name="FabDoc3" color="7" fill="15" visible="no" active="no"/>
<layer number="166" name="AntennaArea" color="7" fill="1" visible="no" active="yes"/>
<layer number="168" name="4mmHeightArea" color="7" fill="1" visible="no" active="yes"/>
<layer number="191" name="mNets" color="7" fill="1" visible="no" active="yes"/>
<layer number="192" name="mBusses" color="7" fill="1" visible="no" active="yes"/>
<layer number="193" name="mPins" color="7" fill="1" visible="no" active="yes"/>
<layer number="194" name="mSymbols" color="7" fill="1" visible="no" active="yes"/>
<layer number="195" name="mNames" color="7" fill="1" visible="no" active="yes"/>
<layer number="196" name="mValues" color="7" fill="1" visible="no" active="yes"/>
<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/>
<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/>
<layer number="201" name="201bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="202" name="202bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="203" name="203bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="204" name="204bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="205" name="205bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/>
<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/>
<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/>
<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="231" name="Eagle3D_PG1" color="7" fill="1" visible="no" active="no"/>
<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="no"/>
<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="no"/>
<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/>
<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/>
<layer number="250" name="Descript" color="7" fill="1" visible="no" active="yes"/>
<layer number="251" name="SMDround" color="7" fill="1" visible="no" active="yes"/>
<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/>
<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/>
</layers>
<board>
<plain>
<text x="9.906" y="13.462" size="1.0922" layer="21" font="vector" ratio="12" rot="R180" align="center">ICM20948</text>
<text x="8.89" y="0.889" size="1.016" layer="21" font="vector" ratio="15" align="center">1V8</text>
<polygon width="0.254" layer="42">
<vertex x="11.1125" y="10.3505"/>
<vertex x="11.1125" y="7.366"/>
<vertex x="13.97" y="7.366"/>
<vertex x="13.97" y="10.3505"/>
</polygon>
<text x="19.177" y="16.891" size="1.016" layer="21" font="vector" ratio="15" align="center">CS</text>
<text x="16.51" y="16.891" size="1.016" layer="21" font="vector" ratio="15" align="center">SDO</text>
<text x="13.97" y="16.891" size="1.016" layer="21" font="vector" ratio="15" align="center">G</text>
<text x="11.43" y="16.891" size="1.016" layer="21" font="vector" ratio="15" align="center">AC</text>
<text x="8.89" y="16.891" size="1.016" layer="21" font="vector" ratio="15" align="center">AD</text>
<text x="6.35" y="16.891" size="1.016" layer="21" font="vector" ratio="15" align="center">FS</text>
<wire x1="0" y1="15.24" x2="0" y2="2.54" width="0" layer="20"/>
<wire x1="0" y1="2.54" x2="2.54" y2="0" width="0" layer="20" curve="90"/>
<wire x1="2.54" y1="0" x2="22.86" y2="0" width="0" layer="20"/>
<wire x1="22.86" y1="0" x2="25.4" y2="2.54" width="0" layer="20" curve="90"/>
<wire x1="25.4" y1="2.54" x2="25.4" y2="15.24" width="0" layer="20"/>
<wire x1="25.4" y1="15.24" x2="22.86" y2="17.78" width="0" layer="20" curve="90"/>
<wire x1="22.86" y1="17.78" x2="2.54" y2="17.78" width="0" layer="20"/>
<wire x1="2.54" y1="17.78" x2="0" y2="15.24" width="0" layer="20" curve="90"/>
<text x="6.477" y="4.064" size="1.016" layer="21" font="vector" ratio="14" align="center">VIN</text>
<text x="11.43" y="4.064" size="1.016" layer="21" font="vector" ratio="14" align="center">GND</text>
<text x="14.097" y="0.889" size="1.016" layer="21" font="vector" ratio="14" align="center">SCL</text>
<text x="16.764" y="4.064" size="1.016" layer="21" font="vector" ratio="14" align="center">SDA</text>
<text x="19.558" y="0.889" size="1.016" layer="21" font="vector" ratio="14" align="center">INT</text>
<dimension x1="12.7" y1="2.54" x2="12.7" y2="15.24" x3="29.337" y3="8.89" textsize="1.778" layer="47" dtype="vertical" unit="inch"/>
<dimension x1="22.86" y1="2.54" x2="2.54" y2="2.54" x3="12.7" y3="-3.302" textsize="1.778" layer="47" dtype="horizontal" unit="inch"/>
<dimension x1="25.4" y1="9.144" x2="0" y2="6.223" x3="12.7" y3="-6.223" textsize="1.778" layer="47" dtype="horizontal" unit="inch"/>
<text x="0.381" y="12.446" size="1.016" layer="21" font="vector" ratio="12">on</text>
<text x="10.9728" y="12.9286" size="1.524" layer="22" font="vector" ratio="15" rot="MR0" align="center">ICM20948</text>
<text x="11.049" y="11.1252" size="1.27" layer="22" font="vector" ratio="15" rot="MR0" align="center">9-DoF IMU</text>
<text x="12.573" y="0.889" size="1.016" layer="22" font="vector" ratio="12" rot="MR0" align="center">VLogic/Vcc: 3-5VDC</text>
<polygon width="0.2032" layer="41">
<vertex x="11.557" y="9.906"/>
<vertex x="13.5255" y="9.906"/>
<vertex x="13.5255" y="7.874"/>
<vertex x="11.557" y="7.874"/>
</polygon>
<text x="12.7" y="5.461" size="1.4224" layer="21" font="vector" ratio="12">X</text>
<wire x1="11.811" y1="5.842" x2="11.049" y2="6.223" width="0.254" layer="21"/>
<wire x1="11.049" y1="6.223" x2="11.811" y2="6.604" width="0.254" layer="21"/>
<text x="14.859" y="7.493" size="1.4224" layer="21" font="vector" ratio="12">Y</text>
<wire x1="14.986" y1="9.652" x2="15.367" y2="10.414" width="0.254" layer="21"/>
<wire x1="15.367" y1="10.414" x2="15.748" y2="9.652" width="0.254" layer="21"/>
<wire x1="14.986" y1="9.652" x2="15.748" y2="9.652" width="0.254" layer="21"/>
<wire x1="11.811" y1="6.604" x2="11.811" y2="5.842" width="0.254" layer="21"/>
<wire x1="11.049" y1="6.223" x2="12.573" y2="6.223" width="0.254" layer="21"/>
<wire x1="15.367" y1="10.16" x2="15.367" y2="8.89" width="0.254" layer="21"/>
<text x="19.558" y="11.938" size="1.016" layer="22" font="vector" ratio="15" rot="MR270" align="center">ADR</text>
<text x="12.7" y="7.874" size="1.016" layer="22" font="vector" ratio="15" rot="MR0" align="center">Accel: ±2~16 g
Gyro: ±250~2000 dps
Mag: ±49 Gauss</text>
<text x="8.89" y="17.018" size="1.016" layer="22" font="vector" ratio="12" rot="MR0" align="center">1v8 Logic</text>
<wire x1="4.699" y1="17.272" x2="4.699" y2="16.002" width="0.254" layer="22"/>
<wire x1="4.699" y1="16.002" x2="5.207" y2="15.494" width="0.254" layer="22"/>
<wire x1="13.208" y1="17.399" x2="13.208" y2="16.256" width="0.254" layer="22"/>
<wire x1="13.208" y1="16.256" x2="12.573" y2="15.621" width="0.254" layer="22"/>
<wire x1="7.493" y1="15.24" x2="7.747" y2="15.24" width="0.254" layer="22"/>
<wire x1="10.033" y1="15.24" x2="10.287" y2="15.24" width="0.254" layer="22"/>
</plain>
<libraries>
<library name="microbuilder">
<description>&lt;h2&gt;&lt;b&gt;microBuilder.eu&lt;/b&gt; Eagle Footprint Library&lt;/h2&gt;
&lt;p&gt;Footprints for common components used in our projects and products. This is the same library that we use internally, and it is regularly updated. The newest version can always be found at &lt;b&gt;www.microBuilder.eu&lt;/b&gt;. If you find this library useful, please feel free to purchase something from our online store. Please also note that all holes are optimised for metric drill bits!&lt;/p&gt;
&lt;h3&gt;Obligatory Warning&lt;/h3&gt;
&lt;p&gt;While it probably goes without saying, there are no guarantees that the footprints or schematic symbols in this library are flawless, and we make no promises of fitness for production, prototyping or any other purpose. These libraries are provided for information puposes only, and are used at your own discretion. While we make every effort to produce accurate footprints, and many of the items found in this library have be proven in production, we can't make any promises of suitability for a specific purpose. If you do find any errors, though, please feel free to contact us at www.microbuilder.eu to let us know about it so that we can update the library accordingly!&lt;/p&gt;
&lt;h3&gt;License&lt;/h3&gt;
&lt;p&gt;This work is placed in the public domain, and may be freely used for commercial and non-commercial work with the following conditions:&lt;/p&gt;
&lt;p&gt;THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
&lt;/p&gt;</description>
<packages>
<package name="0805-NO">
<wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
<wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
<smd name="1" x="-0.95" y="0" dx="1.24" dy="1.5" layer="1"/>
<smd name="2" x="0.95" y="0" dx="1.24" dy="1.5" layer="1"/>
<text x="2.032" y="-0.127" size="0.8128" layer="25" ratio="18">&gt;NAME</text>
<text x="2.032" y="-0.762" size="0.4064" layer="27" ratio="10">&gt;VALUE</text>
<rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
<rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
<wire x1="0" y1="0.508" x2="0" y2="-0.508" width="0.3048" layer="21"/>
</package>
<package name="SOT23-5">
<description>&lt;b&gt;Small Outline Transistor&lt;/b&gt; - 5 Pin</description>
<wire x1="1.4224" y1="0.8104" x2="1.4224" y2="-0.8104" width="0.2032" layer="51"/>
<wire x1="1.4224" y1="-0.8104" x2="-1.4224" y2="-0.8104" width="0.2032" layer="51"/>
<wire x1="-1.4224" y1="-0.8104" x2="-1.4224" y2="0.8104" width="0.2032" layer="51"/>
<wire x1="-1.4224" y1="0.8104" x2="1.4224" y2="0.8104" width="0.2032" layer="51"/>
<wire x1="-1.65" y1="0.8" x2="-1.65" y2="-0.8" width="0.2032" layer="21"/>
<wire x1="1.65" y1="0.8" x2="1.65" y2="-0.8" width="0.2032" layer="21"/>
<smd name="1" x="-0.95" y="-1.3001" dx="0.55" dy="1.2" layer="1"/>
<smd name="2" x="0" y="-1.3001" dx="0.55" dy="1.2" layer="1"/>
<smd name="3" x="0.95" y="-1.3001" dx="0.55" dy="1.2" layer="1"/>
<smd name="4" x="0.95" y="1.3001" dx="0.55" dy="1.2" layer="1"/>
<smd name="5" x="-0.95" y="1.3001" dx="0.55" dy="1.2" layer="1"/>
<text x="1.978" y="0" size="0.8128" layer="25" ratio="18">&gt;NAME</text>
<text x="1.978" y="-0.635" size="0.4064" layer="27" ratio="10">&gt;VALUE</text>
<rectangle x1="-1.2" y1="-1.5" x2="-0.7" y2="-0.85" layer="51"/>
<rectangle x1="-0.25" y1="-1.5" x2="0.25" y2="-0.85" layer="51"/>
<rectangle x1="0.7" y1="-1.5" x2="1.2" y2="-0.85" layer="51"/>
<rectangle x1="0.7" y1="0.85" x2="1.2" y2="1.5" layer="51"/>
<rectangle x1="-1.2" y1="0.85" x2="-0.7" y2="1.5" layer="51"/>
<wire x1="-0.4" y1="1.05" x2="0.4" y2="1.05" width="0.2032" layer="21"/>
</package>
<package name="MOUNTINGHOLE_2.5_PLATED">
<circle x="0" y="0" radius="2" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="1" width="2.032" layer="39"/>
<circle x="0" y="0" radius="1" width="2.032" layer="40"/>
<circle x="0" y="0" radius="1" width="2.032" layer="41"/>
<circle x="0" y="0" radius="1" width="2.032" layer="42"/>
<pad name="P$1" x="0" y="0" drill="2.5" diameter="3.2"/>
</package>
<package name="FIDUCIAL_1MM">
<smd name="1" x="0" y="0" dx="1" dy="1" layer="1" roundness="100" cream="no"/>
<wire x1="-0.75" y1="0" x2="0" y2="0.75" width="0.5" layer="29" curve="-90"/>
<wire x1="0" y1="0.75" x2="0.75" y2="0" width="0.5" layer="29" curve="-90"/>
<wire x1="0.75" y1="0" x2="0" y2="-0.75" width="0.5" layer="29" curve="-90"/>
<wire x1="0" y1="-0.75" x2="-0.75" y2="0" width="0.5" layer="29" curve="-90"/>
<wire x1="-0.75" y1="0" x2="0" y2="0.75" width="0.5" layer="41" curve="-90"/>
<wire x1="0" y1="0.75" x2="0.75" y2="0" width="0.5" layer="41" curve="-90"/>
<wire x1="0.75" y1="0" x2="0" y2="-0.75" width="0.5" layer="41" curve="-90"/>
<wire x1="0" y1="-0.75" x2="-0.75" y2="0" width="0.5" layer="41" curve="-90"/>
<wire x1="-0.75" y1="0" x2="0" y2="0.75" width="0.5" layer="39" curve="-90"/>
<wire x1="0" y1="0.75" x2="0.75" y2="0" width="0.5" layer="39" curve="-90"/>
<wire x1="0.75" y1="0" x2="0" y2="-0.75" width="0.5" layer="39" curve="-90"/>
<wire x1="0" y1="-0.75" x2="-0.75" y2="0" width="0.5" layer="39" curve="-90"/>
</package>
<package name="PCBFEAT-REV-040">
<description>&lt;b&gt;Revision Level Field&lt;/b&gt; - 40 mil&lt;p&gt;
Set version with global board attribute '&gt;REV'</description>
<circle x="0" y="0" radius="0.898" width="0.3048" layer="21"/>
<text x="-0.3556" y="-0.508" size="1.016" layer="21" ratio="20">&gt;REV</text>
</package>
<package name="0603-NO">
<wire x1="-1.473" y1="0.729" x2="1.473" y2="0.729" width="0.0508" layer="39"/>
<wire x1="1.473" y1="0.729" x2="1.473" y2="-0.729" width="0.0508" layer="39"/>
<wire x1="1.473" y1="-0.729" x2="-1.473" y2="-0.729" width="0.0508" layer="39"/>
<wire x1="-1.473" y1="-0.729" x2="-1.473" y2="0.729" width="0.0508" layer="39"/>
<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
<smd name="1" x="-0.85" y="0" dx="1.075" dy="1" layer="1"/>
<smd name="2" x="0.85" y="0" dx="1.075" dy="1" layer="1"/>
<text x="1.778" y="-0.127" size="0.8128" layer="25" font="vector" ratio="18">&gt;NAME</text>
<text x="1.778" y="-0.762" size="0.4064" layer="27" font="vector" ratio="10">&gt;VALUE</text>
<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
<wire x1="0" y1="0.4" x2="0" y2="-0.4" width="0.3048" layer="21"/>
</package>
<package name="SOT363">
<description>&lt;b&gt;Source:&lt;/b&gt; http://www.nxp.com/documents/data_sheet/2N7002PS.pdf</description>
<wire x1="1" y1="0.625" x2="1" y2="-0.625" width="0.2032" layer="51"/>
<wire x1="1" y1="-0.625" x2="-1" y2="-0.625" width="0.2032" layer="51"/>
<wire x1="-1" y1="-0.625" x2="-1" y2="0.625" width="0.2032" layer="51"/>
<wire x1="-1" y1="0.625" x2="1" y2="0.625" width="0.2032" layer="51"/>
<wire x1="-1.1" y1="0.45" x2="-1.1" y2="-0.45" width="0.2032" layer="21"/>
<wire x1="1.1" y1="0.45" x2="1.1" y2="-0.45" width="0.2032" layer="21"/>
<circle x="-1.5" y="-0.35" radius="0.1" width="0.2032" layer="21"/>
<smd name="1" x="-0.75" y="-0.9" dx="0.5" dy="0.5" layer="1"/>
<smd name="2" x="0" y="-0.9" dx="0.4" dy="0.5" layer="1"/>
<smd name="3" x="0.75" y="-0.9" dx="0.5" dy="0.5" layer="1"/>
<smd name="4" x="0.75" y="0.9" dx="0.5" dy="0.5" layer="1"/>
<smd name="5" x="0" y="0.9" dx="0.4" dy="0.5" layer="1"/>
<smd name="6" x="-0.75" y="0.9" dx="0.5" dy="0.5" layer="1"/>
<text x="1.651" y="0.127" size="0.8128" layer="25" ratio="18">&gt;NAME</text>
<text x="1.651" y="-0.508" size="0.4064" layer="27" ratio="10">&gt;VALUE</text>
<rectangle x1="-0.125" y1="-1.05" x2="0.125" y2="-0.7" layer="51"/>
<rectangle x1="-0.775" y1="-1.05" x2="-0.525" y2="-0.7" layer="51"/>
<rectangle x1="0.525" y1="-1.05" x2="0.775" y2="-0.7" layer="51"/>
<rectangle x1="-0.775" y1="0.7" x2="-0.525" y2="1.05" layer="51"/>
<rectangle x1="-0.125" y1="0.7" x2="0.125" y2="1.05" layer="51"/>
<rectangle x1="0.525" y1="0.7" x2="0.775" y2="1.05" layer="51"/>
</package>
<package name="1X06_ROUND_70">
<wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.2032" layer="51"/>
<pad name="1" x="-6.35" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="2" x="-3.81" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="3" x="-1.27" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="4" x="1.27" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="5" x="3.81" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="6" x="6.35" y="0" drill="1" diameter="1.778" rot="R90"/>
<text x="-7.6962" y="1.8288" size="0.8128" layer="25" ratio="18">&gt;NAME</text>
<text x="-7.62" y="-3.175" size="0.4064" layer="27" ratio="10">&gt;VALUE</text>
<rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
<rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
<rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
<rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
<rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
<rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
</package>
<package name="RESPACK_4X0603">
<wire x1="-1.6" y1="0.8" x2="1.6" y2="0.8" width="0.2032" layer="51"/>
<wire x1="1.6" y1="0.8" x2="1.6" y2="-0.8" width="0.2032" layer="51"/>
<wire x1="1.6" y1="-0.8" x2="-1.6" y2="-0.8" width="0.2032" layer="51"/>
<wire x1="-1.6" y1="-0.8" x2="-1.6" y2="0.8" width="0.2032" layer="51"/>
<wire x1="-1.9" y1="1.4" x2="1.9" y2="1.4" width="0.127" layer="39"/>
<wire x1="1.9" y1="1.4" x2="1.9" y2="-1.4" width="0.127" layer="39"/>
<wire x1="-1.9" y1="-1.4" x2="-1.9" y2="1.4" width="0.127" layer="39"/>
<wire x1="1.9" y1="1.4" x2="1.9" y2="-1.4" width="0.2032" layer="21"/>
<wire x1="-1.9" y1="-1.4" x2="-1.9" y2="1.4" width="0.2032" layer="21"/>
<smd name="8" x="-1.3" y="0.85" dx="0.45" dy="0.9" layer="1"/>
<smd name="1" x="-1.3" y="-0.85" dx="0.45" dy="0.9" layer="1"/>
<smd name="7" x="-0.4" y="0.85" dx="0.45" dy="0.9" layer="1"/>
<smd name="6" x="0.4" y="0.85" dx="0.45" dy="0.9" layer="1"/>
<smd name="5" x="1.3" y="0.85" dx="0.45" dy="0.9" layer="1"/>
<smd name="4" x="1.3" y="-0.85" dx="0.45" dy="0.9" layer="1"/>
<smd name="2" x="-0.4" y="-0.85" dx="0.45" dy="0.9" layer="1"/>
<smd name="3" x="0.4" y="-0.85" dx="0.45" dy="0.9" layer="1"/>
<text x="-1.6" y="1.6" size="0.8128" layer="25" ratio="18">&gt;NAME</text>
<text x="-1.6" y="-2.4" size="0.8128" layer="27" font="vector" ratio="10">&gt;VALUE</text>
<rectangle x1="-1.55" y1="-0.5" x2="1.55" y2="0.5" layer="51"/>
<wire x1="-1.9" y1="-1.4" x2="1.9" y2="-1.4" width="0.127" layer="39"/>
</package>
<package name="JST_SH4">
<smd name="2" x="-0.5" y="2.514" dx="1.55" dy="0.6" layer="1" rot="R90"/>
<smd name="3" x="0.5" y="2.514" dx="1.55" dy="0.6" layer="1" rot="R90"/>
<smd name="1" x="-1.5" y="2.514" dx="1.55" dy="0.6" layer="1" rot="R90"/>
<smd name="4" x="1.5" y="2.514" dx="1.55" dy="0.6" layer="1" rot="R90"/>
<smd name="MT1" x="-2.8" y="-1.386" dx="1.8" dy="1.2" layer="1" rot="R90"/>
<smd name="MT2" x="2.8" y="-1.386" dx="1.8" dy="1.2" layer="1" rot="R90"/>
<wire x1="-3" y1="-2.086" x2="-3" y2="2.164" width="0.1524" layer="51"/>
<wire x1="-3" y1="2.164" x2="3.1" y2="2.164" width="0.1524" layer="51"/>
<wire x1="3.1" y1="2.164" x2="3.1" y2="-2.086" width="0.1524" layer="51"/>
<wire x1="3.1" y1="-2.086" x2="-3" y2="-2.086" width="0.1524" layer="51"/>
<wire x1="-3" y1="-0.386" x2="-3" y2="2.214" width="0.1524" layer="21"/>
<wire x1="-3" y1="2.214" x2="-1.9" y2="2.214" width="0.1524" layer="21"/>
<wire x1="1.9" y1="2.214" x2="3.1" y2="2.214" width="0.1524" layer="21"/>
<wire x1="3.1" y1="2.214" x2="3.1" y2="-0.386" width="0.1524" layer="21"/>
<wire x1="-2.1" y1="-2.086" x2="2.1" y2="-2.086" width="0.1524" layer="21"/>
<text x="-4.6" y="3.614" size="1.016" layer="25">&gt;NAME</text>
<text x="-3.33" y="-4.006" size="1.016" layer="27">JST SH 4</text>
</package>
<package name="CHIPLED_0603_NOOUTLINE">
<wire x1="-0.3" y1="0.8" x2="0.3" y2="0.8" width="0.1016" layer="51" curve="170.055574"/>
<wire x1="-0.275" y1="-0.825" x2="0.275" y2="-0.825" width="0.0508" layer="51" curve="-180"/>
<wire x1="-0.4" y1="0.375" x2="-0.4" y2="-0.35" width="0.1016" layer="51"/>
<wire x1="0.4" y1="0.35" x2="0.4" y2="-0.35" width="0.1016" layer="51"/>
<circle x="-0.35" y="0.625" radius="0.075" width="0.0508" layer="51"/>
<smd name="C" x="0" y="0.75" dx="0.8" dy="0.8" layer="1"/>
<smd name="A" x="0" y="-0.75" dx="0.8" dy="0.8" layer="1"/>
<text x="-0.762" y="-1.27" size="0.8128" layer="25" ratio="18" rot="R90">&gt;NAME</text>
<text x="1.27" y="-1.27" size="0.4064" layer="27" ratio="10" rot="R90">&gt;VALUE</text>
<rectangle x1="-0.45" y1="0.7" x2="-0.25" y2="0.85" layer="51"/>
<rectangle x1="-0.275" y1="0.55" x2="-0.225" y2="0.6" layer="51"/>
<rectangle x1="-0.45" y1="0.35" x2="-0.4" y2="0.725" layer="51"/>
<rectangle x1="0.25" y1="0.55" x2="0.45" y2="0.85" layer="51"/>
<rectangle x1="-0.45" y1="0.35" x2="0.45" y2="0.575" layer="51"/>
<rectangle x1="-0.45" y1="-0.85" x2="-0.25" y2="-0.35" layer="51"/>
<rectangle x1="0.25" y1="-0.85" x2="0.45" y2="-0.35" layer="51"/>
<rectangle x1="-0.275" y1="-0.575" x2="0.275" y2="-0.35" layer="51"/>
<rectangle x1="-0.275" y1="-0.65" x2="-0.175" y2="-0.55" layer="51"/>
<rectangle x1="0.175" y1="-0.65" x2="0.275" y2="-0.55" layer="51"/>
<rectangle x1="-0.381" y1="0.1397" x2="0.381" y2="0.2667" layer="21"/>
<polygon width="0.1524" layer="21">
<vertex x="0" y="0.1397"/>
<vertex x="-0.254" y="-0.1778"/>
<vertex x="0.254" y="-0.1778"/>
</polygon>
</package>
<package name="ADAFRUIT_2.5MM">
<rectangle x1="1.6897" y1="-0.0019" x2="1.724" y2="0.0019" layer="21"/>
<rectangle x1="1.6783" y1="0.0019" x2="1.7355" y2="0.0057" layer="21"/>
<rectangle x1="1.6669" y1="0.0057" x2="1.7431" y2="0.0095" layer="21"/>
<rectangle x1="1.6593" y1="0.0095" x2="1.7507" y2="0.0133" layer="21"/>
<rectangle x1="1.6554" y1="0.0133" x2="1.7583" y2="0.0171" layer="21"/>
<rectangle x1="1.6478" y1="0.0171" x2="1.7621" y2="0.021" layer="21"/>
<rectangle x1="1.6402" y1="0.021" x2="1.7697" y2="0.0248" layer="21"/>
<rectangle x1="1.6364" y1="0.0248" x2="1.7736" y2="0.0286" layer="21"/>
<rectangle x1="1.6326" y1="0.0286" x2="1.7774" y2="0.0324" layer="21"/>
<rectangle x1="1.625" y1="0.0324" x2="1.7774" y2="0.0362" layer="21"/>
<rectangle x1="1.6212" y1="0.0362" x2="1.7812" y2="0.04" layer="21"/>
<rectangle x1="1.6135" y1="0.04" x2="1.785" y2="0.0438" layer="21"/>
<rectangle x1="1.6097" y1="0.0438" x2="1.785" y2="0.0476" layer="21"/>
<rectangle x1="1.6059" y1="0.0476" x2="1.7888" y2="0.0514" layer="21"/>
<rectangle x1="1.5983" y1="0.0514" x2="1.7888" y2="0.0552" layer="21"/>
<rectangle x1="1.5945" y1="0.0552" x2="1.7888" y2="0.0591" layer="21"/>
<rectangle x1="1.5907" y1="0.0591" x2="1.7926" y2="0.0629" layer="21"/>
<rectangle x1="1.5831" y1="0.0629" x2="1.7926" y2="0.0667" layer="21"/>
<rectangle x1="1.5792" y1="0.0667" x2="1.7926" y2="0.0705" layer="21"/>
<rectangle x1="1.5716" y1="0.0705" x2="1.7926" y2="0.0743" layer="21"/>
<rectangle x1="1.5678" y1="0.0743" x2="1.7926" y2="0.0781" layer="21"/>
<rectangle x1="1.564" y1="0.0781" x2="1.7964" y2="0.0819" layer="21"/>
<rectangle x1="1.5564" y1="0.0819" x2="1.7964" y2="0.0857" layer="21"/>
<rectangle x1="1.5526" y1="0.0857" x2="1.7964" y2="0.0895" layer="21"/>
<rectangle x1="1.5488" y1="0.0895" x2="1.7964" y2="0.0933" layer="21"/>
<rectangle x1="1.5411" y1="0.0933" x2="1.7964" y2="0.0972" layer="21"/>
<rectangle x1="1.5373" y1="0.0972" x2="1.7964" y2="0.101" layer="21"/>
<rectangle x1="1.5335" y1="0.101" x2="1.7964" y2="0.1048" layer="21"/>
<rectangle x1="1.5259" y1="0.1048" x2="1.7964" y2="0.1086" layer="21"/>
<rectangle x1="1.5221" y1="0.1086" x2="1.7964" y2="0.1124" layer="21"/>
<rectangle x1="1.5145" y1="0.1124" x2="1.7964" y2="0.1162" layer="21"/>
<rectangle x1="1.5107" y1="0.1162" x2="1.7964" y2="0.12" layer="21"/>
<rectangle x1="1.5069" y1="0.12" x2="1.7964" y2="0.1238" layer="21"/>
<rectangle x1="1.4992" y1="0.1238" x2="1.7964" y2="0.1276" layer="21"/>
<rectangle x1="1.4954" y1="0.1276" x2="1.7964" y2="0.1314" layer="21"/>
<rectangle x1="1.4916" y1="0.1314" x2="1.7964" y2="0.1353" layer="21"/>
<rectangle x1="1.484" y1="0.1353" x2="1.7964" y2="0.1391" layer="21"/>
<rectangle x1="1.4802" y1="0.1391" x2="1.7964" y2="0.1429" layer="21"/>
<rectangle x1="1.4764" y1="0.1429" x2="1.7964" y2="0.1467" layer="21"/>
<rectangle x1="1.4688" y1="0.1467" x2="1.7964" y2="0.1505" layer="21"/>
<rectangle x1="1.4649" y1="0.1505" x2="1.7964" y2="0.1543" layer="21"/>
<rectangle x1="1.4573" y1="0.1543" x2="1.7964" y2="0.1581" layer="21"/>
<rectangle x1="1.4535" y1="0.1581" x2="1.7964" y2="0.1619" layer="21"/>
<rectangle x1="1.4497" y1="0.1619" x2="1.7964" y2="0.1657" layer="21"/>
<rectangle x1="1.4421" y1="0.1657" x2="1.7964" y2="0.1695" layer="21"/>
<rectangle x1="1.4383" y1="0.1695" x2="1.7964" y2="0.1734" layer="21"/>
<rectangle x1="1.4345" y1="0.1734" x2="1.7964" y2="0.1772" layer="21"/>
<rectangle x1="1.4268" y1="0.1772" x2="1.7964" y2="0.181" layer="21"/>
<rectangle x1="1.423" y1="0.181" x2="1.7964" y2="0.1848" layer="21"/>
<rectangle x1="1.4192" y1="0.1848" x2="1.7964" y2="0.1886" layer="21"/>
<rectangle x1="1.4116" y1="0.1886" x2="1.7964" y2="0.1924" layer="21"/>
<rectangle x1="1.4078" y1="0.1924" x2="1.7964" y2="0.1962" layer="21"/>
<rectangle x1="1.4002" y1="0.1962" x2="1.7964" y2="0.2" layer="21"/>
<rectangle x1="1.3964" y1="0.2" x2="1.7964" y2="0.2038" layer="21"/>
<rectangle x1="1.3926" y1="0.2038" x2="1.7964" y2="0.2076" layer="21"/>
<rectangle x1="1.3849" y1="0.2076" x2="1.7964" y2="0.2115" layer="21"/>
<rectangle x1="1.3811" y1="0.2115" x2="1.7964" y2="0.2153" layer="21"/>
<rectangle x1="1.3773" y1="0.2153" x2="1.7964" y2="0.2191" layer="21"/>
<rectangle x1="0.2877" y1="0.2191" x2="0.3334" y2="0.2229" layer="21"/>
<rectangle x1="1.3697" y1="0.2191" x2="1.7964" y2="0.2229" layer="21"/>
<rectangle x1="0.2762" y1="0.2229" x2="0.3486" y2="0.2267" layer="21"/>
<rectangle x1="1.3659" y1="0.2229" x2="1.7964" y2="0.2267" layer="21"/>
<rectangle x1="0.2686" y1="0.2267" x2="0.3639" y2="0.2305" layer="21"/>
<rectangle x1="1.3583" y1="0.2267" x2="1.7964" y2="0.2305" layer="21"/>
<rectangle x1="0.2648" y1="0.2305" x2="0.3753" y2="0.2343" layer="21"/>
<rectangle x1="1.3545" y1="0.2305" x2="1.7964" y2="0.2343" layer="21"/>
<rectangle x1="0.2572" y1="0.2343" x2="0.3867" y2="0.2381" layer="21"/>
<rectangle x1="1.3506" y1="0.2343" x2="1.7964" y2="0.2381" layer="21"/>
<rectangle x1="0.2534" y1="0.2381" x2="0.3981" y2="0.2419" layer="21"/>
<rectangle x1="1.343" y1="0.2381" x2="1.7964" y2="0.2419" layer="21"/>
<rectangle x1="0.2496" y1="0.2419" x2="0.4096" y2="0.2457" layer="21"/>
<rectangle x1="1.3392" y1="0.2419" x2="1.7964" y2="0.2457" layer="21"/>
<rectangle x1="0.2457" y1="0.2457" x2="0.421" y2="0.2496" layer="21"/>
<rectangle x1="1.3354" y1="0.2457" x2="1.7964" y2="0.2496" layer="21"/>
<rectangle x1="0.2419" y1="0.2496" x2="0.4324" y2="0.2534" layer="21"/>
<rectangle x1="1.3278" y1="0.2496" x2="1.7964" y2="0.2534" layer="21"/>
<rectangle x1="0.2381" y1="0.2534" x2="0.4439" y2="0.2572" layer="21"/>
<rectangle x1="1.324" y1="0.2534" x2="1.7964" y2="0.2572" layer="21"/>
<rectangle x1="0.2381" y1="0.2572" x2="0.4553" y2="0.261" layer="21"/>
<rectangle x1="1.3202" y1="0.2572" x2="1.7964" y2="0.261" layer="21"/>
<rectangle x1="0.2343" y1="0.261" x2="0.4667" y2="0.2648" layer="21"/>
<rectangle x1="1.3125" y1="0.261" x2="1.7964" y2="0.2648" layer="21"/>
<rectangle x1="0.2305" y1="0.2648" x2="0.4782" y2="0.2686" layer="21"/>
<rectangle x1="1.3087" y1="0.2648" x2="1.7964" y2="0.2686" layer="21"/>
<rectangle x1="0.2305" y1="0.2686" x2="0.4896" y2="0.2724" layer="21"/>
<rectangle x1="1.3011" y1="0.2686" x2="1.7964" y2="0.2724" layer="21"/>
<rectangle x1="0.2267" y1="0.2724" x2="0.501" y2="0.2762" layer="21"/>
<rectangle x1="1.2973" y1="0.2724" x2="1.7964" y2="0.2762" layer="21"/>
<rectangle x1="0.2267" y1="0.2762" x2="0.5124" y2="0.28" layer="21"/>
<rectangle x1="1.2935" y1="0.2762" x2="1.7964" y2="0.28" layer="21"/>
<rectangle x1="0.2267" y1="0.28" x2="0.5239" y2="0.2838" layer="21"/>
<rectangle x1="1.2859" y1="0.28" x2="1.7964" y2="0.2838" layer="21"/>
<rectangle x1="0.2267" y1="0.2838" x2="0.5353" y2="0.2877" layer="21"/>
<rectangle x1="1.2821" y1="0.2838" x2="1.7964" y2="0.2877" layer="21"/>
<rectangle x1="0.2229" y1="0.2877" x2="0.5467" y2="0.2915" layer="21"/>
<rectangle x1="1.2783" y1="0.2877" x2="1.7964" y2="0.2915" layer="21"/>
<rectangle x1="0.2229" y1="0.2915" x2="0.5582" y2="0.2953" layer="21"/>
<rectangle x1="1.2706" y1="0.2915" x2="1.7964" y2="0.2953" layer="21"/>
<rectangle x1="0.2229" y1="0.2953" x2="0.5696" y2="0.2991" layer="21"/>
<rectangle x1="1.2668" y1="0.2953" x2="1.7964" y2="0.2991" layer="21"/>
<rectangle x1="0.2229" y1="0.2991" x2="0.581" y2="0.3029" layer="21"/>
<rectangle x1="1.263" y1="0.2991" x2="1.7964" y2="0.3029" layer="21"/>
<rectangle x1="0.2229" y1="0.3029" x2="0.5925" y2="0.3067" layer="21"/>
<rectangle x1="1.2592" y1="0.3029" x2="1.7964" y2="0.3067" layer="21"/>
<rectangle x1="0.2229" y1="0.3067" x2="0.6039" y2="0.3105" layer="21"/>
<rectangle x1="1.2516" y1="0.3067" x2="1.7964" y2="0.3105" layer="21"/>
<rectangle x1="0.2229" y1="0.3105" x2="0.6153" y2="0.3143" layer="21"/>
<rectangle x1="1.2478" y1="0.3105" x2="1.7964" y2="0.3143" layer="21"/>
<rectangle x1="0.2229" y1="0.3143" x2="0.6267" y2="0.3181" layer="21"/>
<rectangle x1="1.244" y1="0.3143" x2="1.7964" y2="0.3181" layer="21"/>
<rectangle x1="0.2229" y1="0.3181" x2="0.6382" y2="0.3219" layer="21"/>
<rectangle x1="1.2402" y1="0.3181" x2="1.7964" y2="0.3219" layer="21"/>
<rectangle x1="0.2267" y1="0.3219" x2="0.6496" y2="0.3258" layer="21"/>
<rectangle x1="1.2363" y1="0.3219" x2="1.7964" y2="0.3258" layer="21"/>
<rectangle x1="0.2267" y1="0.3258" x2="0.661" y2="0.3296" layer="21"/>
<rectangle x1="1.2325" y1="0.3258" x2="1.7964" y2="0.3296" layer="21"/>
<rectangle x1="0.2267" y1="0.3296" x2="0.6725" y2="0.3334" layer="21"/>
<rectangle x1="1.2287" y1="0.3296" x2="1.7964" y2="0.3334" layer="21"/>
<rectangle x1="0.2267" y1="0.3334" x2="0.6877" y2="0.3372" layer="21"/>
<rectangle x1="1.2249" y1="0.3334" x2="1.7964" y2="0.3372" layer="21"/>
<rectangle x1="0.2267" y1="0.3372" x2="0.6991" y2="0.341" layer="21"/>
<rectangle x1="1.2211" y1="0.3372" x2="1.7964" y2="0.341" layer="21"/>
<rectangle x1="0.2305" y1="0.341" x2="0.7106" y2="0.3448" layer="21"/>
<rectangle x1="1.2173" y1="0.341" x2="1.7964" y2="0.3448" layer="21"/>
<rectangle x1="0.2305" y1="0.3448" x2="0.722" y2="0.3486" layer="21"/>
<rectangle x1="1.2135" y1="0.3448" x2="1.7964" y2="0.3486" layer="21"/>
<rectangle x1="0.2305" y1="0.3486" x2="0.7334" y2="0.3524" layer="21"/>
<rectangle x1="1.2097" y1="0.3486" x2="1.7964" y2="0.3524" layer="21"/>
<rectangle x1="0.2343" y1="0.3524" x2="0.7449" y2="0.3562" layer="21"/>
<rectangle x1="1.2059" y1="0.3524" x2="1.7964" y2="0.3562" layer="21"/>
<rectangle x1="0.2343" y1="0.3562" x2="0.7563" y2="0.36" layer="21"/>
<rectangle x1="1.2021" y1="0.3562" x2="1.7964" y2="0.36" layer="21"/>
<rectangle x1="0.2343" y1="0.36" x2="0.7677" y2="0.3639" layer="21"/>
<rectangle x1="1.1982" y1="0.36" x2="1.7964" y2="0.3639" layer="21"/>
<rectangle x1="0.2381" y1="0.3639" x2="0.7791" y2="0.3677" layer="21"/>
<rectangle x1="1.1944" y1="0.3639" x2="1.7964" y2="0.3677" layer="21"/>
<rectangle x1="0.2381" y1="0.3677" x2="0.7906" y2="0.3715" layer="21"/>
<rectangle x1="1.1906" y1="0.3677" x2="1.7964" y2="0.3715" layer="21"/>
<rectangle x1="0.2381" y1="0.3715" x2="0.7982" y2="0.3753" layer="21"/>
<rectangle x1="1.1906" y1="0.3715" x2="1.7964" y2="0.3753" layer="21"/>
<rectangle x1="0.2381" y1="0.3753" x2="0.8096" y2="0.3791" layer="21"/>
<rectangle x1="1.1868" y1="0.3753" x2="1.7964" y2="0.3791" layer="21"/>
<rectangle x1="0.2419" y1="0.3791" x2="0.8172" y2="0.3829" layer="21"/>
<rectangle x1="1.183" y1="0.3791" x2="1.7964" y2="0.3829" layer="21"/>
<rectangle x1="0.2419" y1="0.3829" x2="0.8249" y2="0.3867" layer="21"/>
<rectangle x1="1.1792" y1="0.3829" x2="1.7964" y2="0.3867" layer="21"/>
<rectangle x1="0.2419" y1="0.3867" x2="0.8363" y2="0.3905" layer="21"/>
<rectangle x1="1.1754" y1="0.3867" x2="1.7964" y2="0.3905" layer="21"/>
<rectangle x1="0.2457" y1="0.3905" x2="0.8439" y2="0.3943" layer="21"/>
<rectangle x1="1.1754" y1="0.3905" x2="1.7964" y2="0.3943" layer="21"/>
<rectangle x1="0.2457" y1="0.3943" x2="0.8515" y2="0.3981" layer="21"/>
<rectangle x1="1.1716" y1="0.3943" x2="1.7964" y2="0.3981" layer="21"/>
<rectangle x1="0.2457" y1="0.3981" x2="0.8592" y2="0.402" layer="21"/>
<rectangle x1="1.1678" y1="0.3981" x2="1.7964" y2="0.402" layer="21"/>
<rectangle x1="0.2496" y1="0.402" x2="0.863" y2="0.4058" layer="21"/>
<rectangle x1="1.164" y1="0.402" x2="1.7964" y2="0.4058" layer="21"/>
<rectangle x1="0.2496" y1="0.4058" x2="0.8706" y2="0.4096" layer="21"/>
<rectangle x1="1.164" y1="0.4058" x2="1.7964" y2="0.4096" layer="21"/>
<rectangle x1="0.2496" y1="0.4096" x2="0.8782" y2="0.4134" layer="21"/>
<rectangle x1="1.1601" y1="0.4096" x2="1.7964" y2="0.4134" layer="21"/>
<rectangle x1="0.2534" y1="0.4134" x2="0.8858" y2="0.4172" layer="21"/>
<rectangle x1="1.1563" y1="0.4134" x2="1.7964" y2="0.4172" layer="21"/>
<rectangle x1="0.2534" y1="0.4172" x2="0.8896" y2="0.421" layer="21"/>
<rectangle x1="1.1525" y1="0.4172" x2="1.7964" y2="0.421" layer="21"/>
<rectangle x1="0.2534" y1="0.421" x2="0.8973" y2="0.4248" layer="21"/>
<rectangle x1="1.1525" y1="0.421" x2="1.7964" y2="0.4248" layer="21"/>
<rectangle x1="0.2572" y1="0.4248" x2="0.9049" y2="0.4286" layer="21"/>
<rectangle x1="1.1487" y1="0.4248" x2="1.7964" y2="0.4286" layer="21"/>
<rectangle x1="0.2572" y1="0.4286" x2="0.9087" y2="0.4324" layer="21"/>
<rectangle x1="1.1449" y1="0.4286" x2="1.7964" y2="0.4324" layer="21"/>
<rectangle x1="0.2572" y1="0.4324" x2="0.9163" y2="0.4362" layer="21"/>
<rectangle x1="1.1449" y1="0.4324" x2="1.7964" y2="0.4362" layer="21"/>
<rectangle x1="0.261" y1="0.4362" x2="0.9201" y2="0.4401" layer="21"/>
<rectangle x1="1.1411" y1="0.4362" x2="1.7964" y2="0.4401" layer="21"/>
<rectangle x1="0.261" y1="0.4401" x2="0.9239" y2="0.4439" layer="21"/>
<rectangle x1="1.1411" y1="0.4401" x2="1.7964" y2="0.4439" layer="21"/>
<rectangle x1="0.261" y1="0.4439" x2="0.9315" y2="0.4477" layer="21"/>
<rectangle x1="1.1373" y1="0.4439" x2="1.7964" y2="0.4477" layer="21"/>
<rectangle x1="0.2648" y1="0.4477" x2="0.9354" y2="0.4515" layer="21"/>
<rectangle x1="1.1335" y1="0.4477" x2="1.7964" y2="0.4515" layer="21"/>
<rectangle x1="0.2648" y1="0.4515" x2="0.9392" y2="0.4553" layer="21"/>
<rectangle x1="1.1335" y1="0.4515" x2="1.7964" y2="0.4553" layer="21"/>
<rectangle x1="0.2648" y1="0.4553" x2="0.9468" y2="0.4591" layer="21"/>
<rectangle x1="1.1297" y1="0.4553" x2="1.7964" y2="0.4591" layer="21"/>
<rectangle x1="0.2686" y1="0.4591" x2="0.9506" y2="0.4629" layer="21"/>
<rectangle x1="1.1297" y1="0.4591" x2="1.7964" y2="0.4629" layer="21"/>
<rectangle x1="0.2686" y1="0.4629" x2="0.9544" y2="0.4667" layer="21"/>
<rectangle x1="1.1259" y1="0.4629" x2="1.7964" y2="0.4667" layer="21"/>
<rectangle x1="0.2686" y1="0.4667" x2="0.9582" y2="0.4705" layer="21"/>
<rectangle x1="1.1259" y1="0.4667" x2="1.7964" y2="0.4705" layer="21"/>
<rectangle x1="0.2724" y1="0.4705" x2="0.962" y2="0.4743" layer="21"/>
<rectangle x1="1.122" y1="0.4705" x2="1.7964" y2="0.4743" layer="21"/>
<rectangle x1="0.2724" y1="0.4743" x2="0.9658" y2="0.4782" layer="21"/>
<rectangle x1="1.122" y1="0.4743" x2="1.7964" y2="0.4782" layer="21"/>
<rectangle x1="0.2724" y1="0.4782" x2="0.9696" y2="0.482" layer="21"/>
<rectangle x1="1.1182" y1="0.4782" x2="1.7964" y2="0.482" layer="21"/>
<rectangle x1="0.2762" y1="0.482" x2="0.9735" y2="0.4858" layer="21"/>
<rectangle x1="1.1182" y1="0.482" x2="1.7964" y2="0.4858" layer="21"/>
<rectangle x1="0.2762" y1="0.4858" x2="0.9773" y2="0.4896" layer="21"/>
<rectangle x1="1.1182" y1="0.4858" x2="1.7964" y2="0.4896" layer="21"/>
<rectangle x1="0.2762" y1="0.4896" x2="0.9811" y2="0.4934" layer="21"/>
<rectangle x1="1.1144" y1="0.4896" x2="1.7964" y2="0.4934" layer="21"/>
<rectangle x1="0.28" y1="0.4934" x2="0.9849" y2="0.4972" layer="21"/>
<rectangle x1="1.1144" y1="0.4934" x2="1.7964" y2="0.4972" layer="21"/>
<rectangle x1="0.28" y1="0.4972" x2="0.9887" y2="0.501" layer="21"/>
<rectangle x1="1.1106" y1="0.4972" x2="1.7964" y2="0.501" layer="21"/>
<rectangle x1="0.28" y1="0.501" x2="0.9925" y2="0.5048" layer="21"/>
<rectangle x1="1.1106" y1="0.501" x2="1.7964" y2="0.5048" layer="21"/>
<rectangle x1="0.2838" y1="0.5048" x2="0.9963" y2="0.5086" layer="21"/>
<rectangle x1="1.1106" y1="0.5048" x2="1.7964" y2="0.5086" layer="21"/>
<rectangle x1="0.2838" y1="0.5086" x2="1.0001" y2="0.5124" layer="21"/>
<rectangle x1="1.1068" y1="0.5086" x2="1.7964" y2="0.5124" layer="21"/>
<rectangle x1="0.2838" y1="0.5124" x2="1.0039" y2="0.5163" layer="21"/>
<rectangle x1="1.1068" y1="0.5124" x2="1.7964" y2="0.5163" layer="21"/>
<rectangle x1="0.2877" y1="0.5163" x2="1.0077" y2="0.5201" layer="21"/>
<rectangle x1="1.103" y1="0.5163" x2="1.7964" y2="0.5201" layer="21"/>
<rectangle x1="0.2877" y1="0.5201" x2="1.0116" y2="0.5239" layer="21"/>
<rectangle x1="1.103" y1="0.5201" x2="1.7964" y2="0.5239" layer="21"/>
<rectangle x1="0.2877" y1="0.5239" x2="1.0116" y2="0.5277" layer="21"/>
<rectangle x1="1.103" y1="0.5239" x2="1.7964" y2="0.5277" layer="21"/>
<rectangle x1="0.2915" y1="0.5277" x2="1.0154" y2="0.5315" layer="21"/>
<rectangle x1="1.103" y1="0.5277" x2="1.7964" y2="0.5315" layer="21"/>
<rectangle x1="0.2915" y1="0.5315" x2="1.0192" y2="0.5353" layer="21"/>
<rectangle x1="1.0992" y1="0.5315" x2="1.7964" y2="0.5353" layer="21"/>
<rectangle x1="0.2915" y1="0.5353" x2="1.023" y2="0.5391" layer="21"/>
<rectangle x1="1.0992" y1="0.5353" x2="1.7964" y2="0.5391" layer="21"/>
<rectangle x1="0.2953" y1="0.5391" x2="1.023" y2="0.5429" layer="21"/>
<rectangle x1="1.0992" y1="0.5391" x2="1.7964" y2="0.5429" layer="21"/>
<rectangle x1="0.2953" y1="0.5429" x2="1.0268" y2="0.5467" layer="21"/>
<rectangle x1="1.0954" y1="0.5429" x2="1.7964" y2="0.5467" layer="21"/>
<rectangle x1="0.2953" y1="0.5467" x2="1.0306" y2="0.5505" layer="21"/>
<rectangle x1="1.0954" y1="0.5467" x2="1.7964" y2="0.5505" layer="21"/>
<rectangle x1="0.2991" y1="0.5505" x2="1.0306" y2="0.5544" layer="21"/>
<rectangle x1="1.0954" y1="0.5505" x2="1.7964" y2="0.5544" layer="21"/>
<rectangle x1="0.2991" y1="0.5544" x2="1.0344" y2="0.5582" layer="21"/>
<rectangle x1="1.0954" y1="0.5544" x2="1.7964" y2="0.5582" layer="21"/>
<rectangle x1="0.2991" y1="0.5582" x2="1.0344" y2="0.562" layer="21"/>
<rectangle x1="1.0916" y1="0.5582" x2="1.7964" y2="0.562" layer="21"/>
<rectangle x1="0.3029" y1="0.562" x2="1.0382" y2="0.5658" layer="21"/>
<rectangle x1="1.0916" y1="0.562" x2="1.7926" y2="0.5658" layer="21"/>
<rectangle x1="0.3029" y1="0.5658" x2="1.042" y2="0.5696" layer="21"/>
<rectangle x1="1.0916" y1="0.5658" x2="1.7926" y2="0.5696" layer="21"/>
<rectangle x1="0.3029" y1="0.5696" x2="1.042" y2="0.5734" layer="21"/>
<rectangle x1="1.0916" y1="0.5696" x2="1.7926" y2="0.5734" layer="21"/>
<rectangle x1="0.3067" y1="0.5734" x2="1.0458" y2="0.5772" layer="21"/>
<rectangle x1="1.0916" y1="0.5734" x2="1.7926" y2="0.5772" layer="21"/>
<rectangle x1="0.3067" y1="0.5772" x2="1.0458" y2="0.581" layer="21"/>
<rectangle x1="1.0916" y1="0.5772" x2="1.7926" y2="0.581" layer="21"/>
<rectangle x1="0.3067" y1="0.581" x2="1.0497" y2="0.5848" layer="21"/>
<rectangle x1="1.0878" y1="0.581" x2="1.7926" y2="0.5848" layer="21"/>
<rectangle x1="0.3105" y1="0.5848" x2="1.0497" y2="0.5886" layer="21"/>
<rectangle x1="1.0878" y1="0.5848" x2="1.7926" y2="0.5886" layer="21"/>
<rectangle x1="0.3105" y1="0.5886" x2="1.0535" y2="0.5925" layer="21"/>
<rectangle x1="1.0878" y1="0.5886" x2="1.7926" y2="0.5925" layer="21"/>
<rectangle x1="0.3105" y1="0.5925" x2="1.0535" y2="0.5963" layer="21"/>
<rectangle x1="1.0878" y1="0.5925" x2="1.7926" y2="0.5963" layer="21"/>
<rectangle x1="0.3143" y1="0.5963" x2="1.0573" y2="0.6001" layer="21"/>
<rectangle x1="1.0878" y1="0.5963" x2="1.7926" y2="0.6001" layer="21"/>
<rectangle x1="0.3143" y1="0.6001" x2="1.0573" y2="0.6039" layer="21"/>
<rectangle x1="1.0878" y1="0.6001" x2="1.7926" y2="0.6039" layer="21"/>
<rectangle x1="0.3143" y1="0.6039" x2="1.0573" y2="0.6077" layer="21"/>
<rectangle x1="1.0878" y1="0.6039" x2="1.7926" y2="0.6077" layer="21"/>
<rectangle x1="0.3181" y1="0.6077" x2="1.0611" y2="0.6115" layer="21"/>
<rectangle x1="1.0878" y1="0.6077" x2="1.7888" y2="0.6115" layer="21"/>
<rectangle x1="0.3181" y1="0.6115" x2="1.0611" y2="0.6153" layer="21"/>
<rectangle x1="1.0878" y1="0.6115" x2="1.7888" y2="0.6153" layer="21"/>
<rectangle x1="0.3181" y1="0.6153" x2="1.0649" y2="0.6191" layer="21"/>
<rectangle x1="1.0878" y1="0.6153" x2="1.7888" y2="0.6191" layer="21"/>
<rectangle x1="0.3219" y1="0.6191" x2="1.0649" y2="0.6229" layer="21"/>
<rectangle x1="1.0878" y1="0.6191" x2="1.7888" y2="0.6229" layer="21"/>
<rectangle x1="0.3219" y1="0.6229" x2="1.0649" y2="0.6267" layer="21"/>
<rectangle x1="1.0878" y1="0.6229" x2="1.7888" y2="0.6267" layer="21"/>
<rectangle x1="0.3219" y1="0.6267" x2="1.0687" y2="0.6306" layer="21"/>
<rectangle x1="1.0878" y1="0.6267" x2="1.7888" y2="0.6306" layer="21"/>
<rectangle x1="0.3258" y1="0.6306" x2="1.0687" y2="0.6344" layer="21"/>
<rectangle x1="1.0878" y1="0.6306" x2="1.7888" y2="0.6344" layer="21"/>
<rectangle x1="0.3258" y1="0.6344" x2="1.0687" y2="0.6382" layer="21"/>
<rectangle x1="1.0878" y1="0.6344" x2="1.785" y2="0.6382" layer="21"/>
<rectangle x1="0.3258" y1="0.6382" x2="1.0725" y2="0.642" layer="21"/>
<rectangle x1="1.0878" y1="0.6382" x2="1.785" y2="0.642" layer="21"/>
<rectangle x1="0.3296" y1="0.642" x2="1.0725" y2="0.6458" layer="21"/>
<rectangle x1="1.0878" y1="0.642" x2="1.785" y2="0.6458" layer="21"/>
<rectangle x1="0.3296" y1="0.6458" x2="1.0725" y2="0.6496" layer="21"/>
<rectangle x1="1.0878" y1="0.6458" x2="1.785" y2="0.6496" layer="21"/>
<rectangle x1="0.3296" y1="0.6496" x2="1.0725" y2="0.6534" layer="21"/>
<rectangle x1="1.0878" y1="0.6496" x2="1.785" y2="0.6534" layer="21"/>
<rectangle x1="0.3296" y1="0.6534" x2="1.0763" y2="0.6572" layer="21"/>
<rectangle x1="1.0878" y1="0.6534" x2="1.7812" y2="0.6572" layer="21"/>
<rectangle x1="0.3334" y1="0.6572" x2="1.0763" y2="0.661" layer="21"/>
<rectangle x1="1.0878" y1="0.6572" x2="1.7812" y2="0.661" layer="21"/>
<rectangle x1="0.3334" y1="0.661" x2="1.0763" y2="0.6648" layer="21"/>
<rectangle x1="1.0878" y1="0.661" x2="1.7812" y2="0.6648" layer="21"/>
<rectangle x1="0.3334" y1="0.6648" x2="1.0801" y2="0.6687" layer="21"/>
<rectangle x1="1.0878" y1="0.6648" x2="1.7812" y2="0.6687" layer="21"/>
<rectangle x1="0.3372" y1="0.6687" x2="1.0801" y2="0.6725" layer="21"/>
<rectangle x1="1.0878" y1="0.6687" x2="1.7774" y2="0.6725" layer="21"/>
<rectangle x1="0.3372" y1="0.6725" x2="1.0801" y2="0.6763" layer="21"/>
<rectangle x1="1.0878" y1="0.6725" x2="1.7774" y2="0.6763" layer="21"/>
<rectangle x1="0.3372" y1="0.6763" x2="1.0839" y2="0.6801" layer="21"/>
<rectangle x1="1.0878" y1="0.6763" x2="1.7774" y2="0.6801" layer="21"/>
<rectangle x1="0.341" y1="0.6801" x2="1.0839" y2="0.6839" layer="21"/>
<rectangle x1="1.0878" y1="0.6801" x2="1.7774" y2="0.6839" layer="21"/>
<rectangle x1="0.341" y1="0.6839" x2="1.0839" y2="0.6877" layer="21"/>
<rectangle x1="1.0878" y1="0.6839" x2="1.7736" y2="0.6877" layer="21"/>
<rectangle x1="0.341" y1="0.6877" x2="1.0839" y2="0.6915" layer="21"/>
<rectangle x1="1.0878" y1="0.6877" x2="1.7736" y2="0.6915" layer="21"/>
<rectangle x1="0.3448" y1="0.6915" x2="1.7736" y2="0.6953" layer="21"/>
<rectangle x1="0.3448" y1="0.6953" x2="1.7736" y2="0.6991" layer="21"/>
<rectangle x1="0.3448" y1="0.6991" x2="1.7697" y2="0.7029" layer="21"/>
<rectangle x1="0.3486" y1="0.7029" x2="1.7697" y2="0.7068" layer="21"/>
<rectangle x1="0.3486" y1="0.7068" x2="1.7697" y2="0.7106" layer="21"/>
<rectangle x1="0.3486" y1="0.7106" x2="1.7659" y2="0.7144" layer="21"/>
<rectangle x1="0.3524" y1="0.7144" x2="1.7659" y2="0.7182" layer="21"/>
<rectangle x1="0.3524" y1="0.7182" x2="1.7659" y2="0.722" layer="21"/>
<rectangle x1="0.3524" y1="0.722" x2="1.7621" y2="0.7258" layer="21"/>
<rectangle x1="0.3562" y1="0.7258" x2="1.7621" y2="0.7296" layer="21"/>
<rectangle x1="0.3562" y1="0.7296" x2="1.7621" y2="0.7334" layer="21"/>
<rectangle x1="0.3562" y1="0.7334" x2="1.7583" y2="0.7372" layer="21"/>
<rectangle x1="0.36" y1="0.7372" x2="1.7583" y2="0.741" layer="21"/>
<rectangle x1="0.36" y1="0.741" x2="1.343" y2="0.7449" layer="21"/>
<rectangle x1="1.3697" y1="0.741" x2="1.7545" y2="0.7449" layer="21"/>
<rectangle x1="0.36" y1="0.7449" x2="1.3316" y2="0.7487" layer="21"/>
<rectangle x1="1.3773" y1="0.7449" x2="1.7545" y2="0.7487" layer="21"/>
<rectangle x1="0.3639" y1="0.7487" x2="1.3278" y2="0.7525" layer="21"/>
<rectangle x1="1.3811" y1="0.7487" x2="1.7545" y2="0.7525" layer="21"/>
<rectangle x1="0.3639" y1="0.7525" x2="1.3202" y2="0.7563" layer="21"/>
<rectangle x1="1.3849" y1="0.7525" x2="1.7507" y2="0.7563" layer="21"/>
<rectangle x1="0.3639" y1="0.7563" x2="1.3164" y2="0.7601" layer="21"/>
<rectangle x1="1.3849" y1="0.7563" x2="1.7507" y2="0.7601" layer="21"/>
<rectangle x1="0.3677" y1="0.7601" x2="1.3087" y2="0.7639" layer="21"/>
<rectangle x1="1.3887" y1="0.7601" x2="1.7469" y2="0.7639" layer="21"/>
<rectangle x1="0.3677" y1="0.7639" x2="1.3049" y2="0.7677" layer="21"/>
<rectangle x1="1.3887" y1="0.7639" x2="1.7469" y2="0.7677" layer="21"/>
<rectangle x1="0.3677" y1="0.7677" x2="1.3011" y2="0.7715" layer="21"/>
<rectangle x1="1.3887" y1="0.7677" x2="1.7431" y2="0.7715" layer="21"/>
<rectangle x1="0.3715" y1="0.7715" x2="1.2973" y2="0.7753" layer="21"/>
<rectangle x1="1.3926" y1="0.7715" x2="1.7431" y2="0.7753" layer="21"/>
<rectangle x1="0.3715" y1="0.7753" x2="1.2935" y2="0.7791" layer="21"/>
<rectangle x1="1.3926" y1="0.7753" x2="1.7393" y2="0.7791" layer="21"/>
<rectangle x1="0.3715" y1="0.7791" x2="1.2897" y2="0.783" layer="21"/>
<rectangle x1="1.3926" y1="0.7791" x2="1.7393" y2="0.783" layer="21"/>
<rectangle x1="0.3753" y1="0.783" x2="1.2859" y2="0.7868" layer="21"/>
<rectangle x1="1.3926" y1="0.783" x2="1.7355" y2="0.7868" layer="21"/>
<rectangle x1="0.3753" y1="0.7868" x2="1.2821" y2="0.7906" layer="21"/>
<rectangle x1="1.3926" y1="0.7868" x2="1.7355" y2="0.7906" layer="21"/>
<rectangle x1="0.3753" y1="0.7906" x2="1.2783" y2="0.7944" layer="21"/>
<rectangle x1="1.3926" y1="0.7906" x2="1.7316" y2="0.7944" layer="21"/>
<rectangle x1="0.3791" y1="0.7944" x2="1.2744" y2="0.7982" layer="21"/>
<rectangle x1="1.3926" y1="0.7944" x2="1.7316" y2="0.7982" layer="21"/>
<rectangle x1="0.3791" y1="0.7982" x2="1.2744" y2="0.802" layer="21"/>
<rectangle x1="1.3926" y1="0.7982" x2="1.7278" y2="0.802" layer="21"/>
<rectangle x1="0.3829" y1="0.802" x2="1.2706" y2="0.8058" layer="21"/>
<rectangle x1="1.3926" y1="0.802" x2="1.7278" y2="0.8058" layer="21"/>
<rectangle x1="0.3829" y1="0.8058" x2="1.2668" y2="0.8096" layer="21"/>
<rectangle x1="1.3926" y1="0.8058" x2="1.724" y2="0.8096" layer="21"/>
<rectangle x1="0.3829" y1="0.8096" x2="1.263" y2="0.8134" layer="21"/>
<rectangle x1="1.3926" y1="0.8096" x2="1.7202" y2="0.8134" layer="21"/>
<rectangle x1="0.3867" y1="0.8134" x2="1.263" y2="0.8172" layer="21"/>
<rectangle x1="1.3926" y1="0.8134" x2="1.7202" y2="0.8172" layer="21"/>
<rectangle x1="0.3867" y1="0.8172" x2="0.8553" y2="0.8211" layer="21"/>
<rectangle x1="0.863" y1="0.8172" x2="1.2592" y2="0.8211" layer="21"/>
<rectangle x1="1.3926" y1="0.8172" x2="1.7164" y2="0.8211" layer="21"/>
<rectangle x1="0.3905" y1="0.8211" x2="0.8401" y2="0.8249" layer="21"/>
<rectangle x1="0.8858" y1="0.8211" x2="1.2554" y2="0.8249" layer="21"/>
<rectangle x1="1.3887" y1="0.8211" x2="1.7126" y2="0.8249" layer="21"/>
<rectangle x1="0.3905" y1="0.8249" x2="0.8325" y2="0.8287" layer="21"/>
<rectangle x1="0.8973" y1="0.8249" x2="1.2554" y2="0.8287" layer="21"/>
<rectangle x1="1.3887" y1="0.8249" x2="1.7126" y2="0.8287" layer="21"/>
<rectangle x1="0.3943" y1="0.8287" x2="0.8287" y2="0.8325" layer="21"/>
<rectangle x1="0.9049" y1="0.8287" x2="1.2516" y2="0.8325" layer="21"/>
<rectangle x1="1.3887" y1="0.8287" x2="1.7088" y2="0.8325" layer="21"/>
<rectangle x1="0.3943" y1="0.8325" x2="0.8287" y2="0.8363" layer="21"/>
<rectangle x1="0.9125" y1="0.8325" x2="1.2478" y2="0.8363" layer="21"/>
<rectangle x1="1.3887" y1="0.8325" x2="1.705" y2="0.8363" layer="21"/>
<rectangle x1="0.3981" y1="0.8363" x2="0.8249" y2="0.8401" layer="21"/>
<rectangle x1="0.9201" y1="0.8363" x2="1.2478" y2="0.8401" layer="21"/>
<rectangle x1="1.3887" y1="0.8363" x2="1.7012" y2="0.8401" layer="21"/>
<rectangle x1="0.3981" y1="0.8401" x2="0.8249" y2="0.8439" layer="21"/>
<rectangle x1="0.9277" y1="0.8401" x2="1.244" y2="0.8439" layer="21"/>
<rectangle x1="1.3887" y1="0.8401" x2="1.7012" y2="0.8439" layer="21"/>
<rectangle x1="0.402" y1="0.8439" x2="0.8249" y2="0.8477" layer="21"/>
<rectangle x1="0.9354" y1="0.8439" x2="1.244" y2="0.8477" layer="21"/>
<rectangle x1="1.3849" y1="0.8439" x2="1.6974" y2="0.8477" layer="21"/>
<rectangle x1="0.402" y1="0.8477" x2="0.8249" y2="0.8515" layer="21"/>
<rectangle x1="0.9392" y1="0.8477" x2="1.2402" y2="0.8515" layer="21"/>
<rectangle x1="1.3849" y1="0.8477" x2="1.6935" y2="0.8515" layer="21"/>
<rectangle x1="0.4058" y1="0.8515" x2="0.8249" y2="0.8553" layer="21"/>
<rectangle x1="0.9468" y1="0.8515" x2="1.2402" y2="0.8553" layer="21"/>
<rectangle x1="1.3849" y1="0.8515" x2="1.6897" y2="0.8553" layer="21"/>
<rectangle x1="0.4058" y1="0.8553" x2="0.8249" y2="0.8592" layer="21"/>
<rectangle x1="0.9506" y1="0.8553" x2="1.2363" y2="0.8592" layer="21"/>
<rectangle x1="1.3849" y1="0.8553" x2="1.6859" y2="0.8592" layer="21"/>
<rectangle x1="0.4096" y1="0.8592" x2="0.8249" y2="0.863" layer="21"/>
<rectangle x1="0.9582" y1="0.8592" x2="1.2325" y2="0.863" layer="21"/>
<rectangle x1="1.3811" y1="0.8592" x2="1.6821" y2="0.863" layer="21"/>
<rectangle x1="0.4096" y1="0.863" x2="0.8249" y2="0.8668" layer="21"/>
<rectangle x1="0.962" y1="0.863" x2="1.2325" y2="0.8668" layer="21"/>
<rectangle x1="1.3811" y1="0.863" x2="1.6783" y2="0.8668" layer="21"/>
<rectangle x1="0.4134" y1="0.8668" x2="0.8249" y2="0.8706" layer="21"/>
<rectangle x1="0.9658" y1="0.8668" x2="1.2287" y2="0.8706" layer="21"/>
<rectangle x1="1.3811" y1="0.8668" x2="1.6745" y2="0.8706" layer="21"/>
<rectangle x1="0.4134" y1="0.8706" x2="0.8249" y2="0.8744" layer="21"/>
<rectangle x1="0.9696" y1="0.8706" x2="1.2287" y2="0.8744" layer="21"/>
<rectangle x1="1.3773" y1="0.8706" x2="1.6707" y2="0.8744" layer="21"/>
<rectangle x1="0.4172" y1="0.8744" x2="0.8249" y2="0.8782" layer="21"/>
<rectangle x1="0.9773" y1="0.8744" x2="1.2249" y2="0.8782" layer="21"/>
<rectangle x1="1.3773" y1="0.8744" x2="1.6669" y2="0.8782" layer="21"/>
<rectangle x1="0.421" y1="0.8782" x2="0.8287" y2="0.882" layer="21"/>
<rectangle x1="0.9811" y1="0.8782" x2="1.2249" y2="0.882" layer="21"/>
<rectangle x1="1.3773" y1="0.8782" x2="1.6631" y2="0.882" layer="21"/>
<rectangle x1="0.421" y1="0.882" x2="0.8287" y2="0.8858" layer="21"/>
<rectangle x1="0.9849" y1="0.882" x2="1.2249" y2="0.8858" layer="21"/>
<rectangle x1="1.3735" y1="0.882" x2="1.6593" y2="0.8858" layer="21"/>
<rectangle x1="0.4248" y1="0.8858" x2="0.8287" y2="0.8896" layer="21"/>
<rectangle x1="0.9887" y1="0.8858" x2="1.2211" y2="0.8896" layer="21"/>
<rectangle x1="1.3735" y1="0.8858" x2="1.6554" y2="0.8896" layer="21"/>
<rectangle x1="0.4248" y1="0.8896" x2="0.8325" y2="0.8934" layer="21"/>
<rectangle x1="0.9925" y1="0.8896" x2="1.2211" y2="0.8934" layer="21"/>
<rectangle x1="1.3697" y1="0.8896" x2="1.6516" y2="0.8934" layer="21"/>
<rectangle x1="0.4286" y1="0.8934" x2="0.8325" y2="0.8973" layer="21"/>
<rectangle x1="0.9963" y1="0.8934" x2="1.2173" y2="0.8973" layer="21"/>
<rectangle x1="1.3697" y1="0.8934" x2="1.6478" y2="0.8973" layer="21"/>
<rectangle x1="0.4324" y1="0.8973" x2="0.8325" y2="0.9011" layer="21"/>
<rectangle x1="1.0001" y1="0.8973" x2="1.2173" y2="0.9011" layer="21"/>
<rectangle x1="1.3697" y1="0.8973" x2="1.6402" y2="0.9011" layer="21"/>
<rectangle x1="0.4324" y1="0.9011" x2="0.8363" y2="0.9049" layer="21"/>
<rectangle x1="1.0039" y1="0.9011" x2="1.2135" y2="0.9049" layer="21"/>
<rectangle x1="1.3659" y1="0.9011" x2="1.6364" y2="0.9049" layer="21"/>
<rectangle x1="0.4362" y1="0.9049" x2="0.8363" y2="0.9087" layer="21"/>
<rectangle x1="1.0077" y1="0.9049" x2="1.2135" y2="0.9087" layer="21"/>
<rectangle x1="1.3659" y1="0.9049" x2="1.6326" y2="0.9087" layer="21"/>
<rectangle x1="1.7278" y1="0.9049" x2="1.7659" y2="0.9087" layer="21"/>
<rectangle x1="0.4401" y1="0.9087" x2="0.8401" y2="0.9125" layer="21"/>
<rectangle x1="1.0116" y1="0.9087" x2="1.2135" y2="0.9125" layer="21"/>
<rectangle x1="1.3621" y1="0.9087" x2="1.625" y2="0.9125" layer="21"/>
<rectangle x1="1.6935" y1="0.9087" x2="1.804" y2="0.9125" layer="21"/>
<rectangle x1="0.4401" y1="0.9125" x2="0.8401" y2="0.9163" layer="21"/>
<rectangle x1="1.0154" y1="0.9125" x2="1.2097" y2="0.9163" layer="21"/>
<rectangle x1="1.3621" y1="0.9125" x2="1.6212" y2="0.9163" layer="21"/>
<rectangle x1="1.6745" y1="0.9125" x2="1.8231" y2="0.9163" layer="21"/>
<rectangle x1="0.4439" y1="0.9163" x2="0.8439" y2="0.9201" layer="21"/>
<rectangle x1="1.0192" y1="0.9163" x2="1.2097" y2="0.9201" layer="21"/>
<rectangle x1="1.3583" y1="0.9163" x2="1.6173" y2="0.9201" layer="21"/>
<rectangle x1="1.6593" y1="0.9163" x2="1.8421" y2="0.9201" layer="21"/>
<rectangle x1="0.4477" y1="0.9201" x2="0.8439" y2="0.9239" layer="21"/>
<rectangle x1="1.023" y1="0.9201" x2="1.2097" y2="0.9239" layer="21"/>
<rectangle x1="1.3583" y1="0.9201" x2="1.6097" y2="0.9239" layer="21"/>
<rectangle x1="1.644" y1="0.9201" x2="1.8574" y2="0.9239" layer="21"/>
<rectangle x1="0.4515" y1="0.9239" x2="0.8477" y2="0.9277" layer="21"/>
<rectangle x1="1.0268" y1="0.9239" x2="1.2059" y2="0.9277" layer="21"/>
<rectangle x1="1.3545" y1="0.9239" x2="1.6059" y2="0.9277" layer="21"/>
<rectangle x1="1.6326" y1="0.9239" x2="1.8688" y2="0.9277" layer="21"/>
<rectangle x1="0.4515" y1="0.9277" x2="0.8515" y2="0.9315" layer="21"/>
<rectangle x1="1.0268" y1="0.9277" x2="1.2059" y2="0.9315" layer="21"/>
<rectangle x1="1.3545" y1="0.9277" x2="1.5983" y2="0.9315" layer="21"/>
<rectangle x1="1.6212" y1="0.9277" x2="1.8802" y2="0.9315" layer="21"/>
<rectangle x1="0.4553" y1="0.9315" x2="0.8515" y2="0.9354" layer="21"/>
<rectangle x1="1.0306" y1="0.9315" x2="1.2059" y2="0.9354" layer="21"/>
<rectangle x1="1.3506" y1="0.9315" x2="1.5945" y2="0.9354" layer="21"/>
<rectangle x1="1.6097" y1="0.9315" x2="1.8917" y2="0.9354" layer="21"/>
<rectangle x1="0.4591" y1="0.9354" x2="0.8553" y2="0.9392" layer="21"/>
<rectangle x1="1.0344" y1="0.9354" x2="1.2021" y2="0.9392" layer="21"/>
<rectangle x1="1.3506" y1="0.9354" x2="1.5869" y2="0.9392" layer="21"/>
<rectangle x1="1.6021" y1="0.9354" x2="1.9031" y2="0.9392" layer="21"/>
<rectangle x1="0.4629" y1="0.9392" x2="0.8592" y2="0.943" layer="21"/>
<rectangle x1="1.0382" y1="0.9392" x2="1.2021" y2="0.943" layer="21"/>
<rectangle x1="1.3468" y1="0.9392" x2="1.5831" y2="0.943" layer="21"/>
<rectangle x1="1.5907" y1="0.9392" x2="1.9107" y2="0.943" layer="21"/>
<rectangle x1="0.4667" y1="0.943" x2="0.8592" y2="0.9468" layer="21"/>
<rectangle x1="1.042" y1="0.943" x2="1.2021" y2="0.9468" layer="21"/>
<rectangle x1="1.3468" y1="0.943" x2="1.5754" y2="0.9468" layer="21"/>
<rectangle x1="1.5792" y1="0.943" x2="1.9221" y2="0.9468" layer="21"/>
<rectangle x1="0.4667" y1="0.9468" x2="0.863" y2="0.9506" layer="21"/>
<rectangle x1="1.042" y1="0.9468" x2="1.2021" y2="0.9506" layer="21"/>
<rectangle x1="1.343" y1="0.9468" x2="1.9298" y2="0.9506" layer="21"/>
<rectangle x1="0.4705" y1="0.9506" x2="0.8668" y2="0.9544" layer="21"/>
<rectangle x1="1.0458" y1="0.9506" x2="1.1982" y2="0.9544" layer="21"/>
<rectangle x1="1.3392" y1="0.9506" x2="1.9374" y2="0.9544" layer="21"/>
<rectangle x1="0.4743" y1="0.9544" x2="0.8668" y2="0.9582" layer="21"/>
<rectangle x1="1.0497" y1="0.9544" x2="1.1982" y2="0.9582" layer="21"/>
<rectangle x1="1.3392" y1="0.9544" x2="1.945" y2="0.9582" layer="21"/>
<rectangle x1="0.4782" y1="0.9582" x2="0.8706" y2="0.962" layer="21"/>
<rectangle x1="1.0497" y1="0.9582" x2="1.1982" y2="0.962" layer="21"/>
<rectangle x1="1.3354" y1="0.9582" x2="1.9564" y2="0.962" layer="21"/>
<rectangle x1="0.482" y1="0.962" x2="0.8744" y2="0.9658" layer="21"/>
<rectangle x1="1.0535" y1="0.962" x2="1.1982" y2="0.9658" layer="21"/>
<rectangle x1="1.3354" y1="0.962" x2="1.9602" y2="0.9658" layer="21"/>
<rectangle x1="0.4858" y1="0.9658" x2="0.8782" y2="0.9696" layer="21"/>
<rectangle x1="1.0573" y1="0.9658" x2="1.1982" y2="0.9696" layer="21"/>
<rectangle x1="1.3316" y1="0.9658" x2="1.9679" y2="0.9696" layer="21"/>
<rectangle x1="0.4896" y1="0.9696" x2="0.882" y2="0.9735" layer="21"/>
<rectangle x1="1.0573" y1="0.9696" x2="1.1982" y2="0.9735" layer="21"/>
<rectangle x1="1.3278" y1="0.9696" x2="1.9755" y2="0.9735" layer="21"/>
<rectangle x1="0.4934" y1="0.9735" x2="0.882" y2="0.9773" layer="21"/>
<rectangle x1="1.0611" y1="0.9735" x2="1.1944" y2="0.9773" layer="21"/>
<rectangle x1="1.3278" y1="0.9735" x2="1.9831" y2="0.9773" layer="21"/>
<rectangle x1="0.4972" y1="0.9773" x2="0.8858" y2="0.9811" layer="21"/>
<rectangle x1="1.0611" y1="0.9773" x2="1.1944" y2="0.9811" layer="21"/>
<rectangle x1="1.324" y1="0.9773" x2="1.9907" y2="0.9811" layer="21"/>
<rectangle x1="0.501" y1="0.9811" x2="0.8896" y2="0.9849" layer="21"/>
<rectangle x1="1.0649" y1="0.9811" x2="1.1944" y2="0.9849" layer="21"/>
<rectangle x1="1.3202" y1="0.9811" x2="1.9945" y2="0.9849" layer="21"/>
<rectangle x1="0.5048" y1="0.9849" x2="0.8934" y2="0.9887" layer="21"/>
<rectangle x1="1.0649" y1="0.9849" x2="1.1944" y2="0.9887" layer="21"/>
<rectangle x1="1.3164" y1="0.9849" x2="2.0022" y2="0.9887" layer="21"/>
<rectangle x1="0.5086" y1="0.9887" x2="0.8973" y2="0.9925" layer="21"/>
<rectangle x1="1.0687" y1="0.9887" x2="1.1944" y2="0.9925" layer="21"/>
<rectangle x1="1.3164" y1="0.9887" x2="2.0098" y2="0.9925" layer="21"/>
<rectangle x1="0.5124" y1="0.9925" x2="0.9011" y2="0.9963" layer="21"/>
<rectangle x1="1.0687" y1="0.9925" x2="1.1944" y2="0.9963" layer="21"/>
<rectangle x1="1.3125" y1="0.9925" x2="2.0136" y2="0.9963" layer="21"/>
<rectangle x1="0.5163" y1="0.9963" x2="0.9049" y2="1.0001" layer="21"/>
<rectangle x1="1.0725" y1="0.9963" x2="1.1944" y2="1.0001" layer="21"/>
<rectangle x1="1.3087" y1="0.9963" x2="2.0212" y2="1.0001" layer="21"/>
<rectangle x1="0.5239" y1="1.0001" x2="0.9087" y2="1.0039" layer="21"/>
<rectangle x1="1.0725" y1="1.0001" x2="1.1944" y2="1.0039" layer="21"/>
<rectangle x1="1.3049" y1="1.0001" x2="2.025" y2="1.0039" layer="21"/>
<rectangle x1="0.5277" y1="1.0039" x2="0.9125" y2="1.0077" layer="21"/>
<rectangle x1="1.0763" y1="1.0039" x2="1.1944" y2="1.0077" layer="21"/>
<rectangle x1="1.3011" y1="1.0039" x2="2.0288" y2="1.0077" layer="21"/>
<rectangle x1="0.5315" y1="1.0077" x2="0.9163" y2="1.0116" layer="21"/>
<rectangle x1="1.0763" y1="1.0077" x2="1.1944" y2="1.0116" layer="21"/>
<rectangle x1="1.2973" y1="1.0077" x2="2.0364" y2="1.0116" layer="21"/>
<rectangle x1="0.5353" y1="1.0116" x2="0.9201" y2="1.0154" layer="21"/>
<rectangle x1="1.0801" y1="1.0116" x2="1.1944" y2="1.0154" layer="21"/>
<rectangle x1="1.2935" y1="1.0116" x2="2.0403" y2="1.0154" layer="21"/>
<rectangle x1="0.5429" y1="1.0154" x2="0.9239" y2="1.0192" layer="21"/>
<rectangle x1="1.0801" y1="1.0154" x2="1.1982" y2="1.0192" layer="21"/>
<rectangle x1="1.2897" y1="1.0154" x2="2.0441" y2="1.0192" layer="21"/>
<rectangle x1="0.5467" y1="1.0192" x2="0.9277" y2="1.023" layer="21"/>
<rectangle x1="1.0801" y1="1.0192" x2="1.1982" y2="1.023" layer="21"/>
<rectangle x1="1.2859" y1="1.0192" x2="2.0517" y2="1.023" layer="21"/>
<rectangle x1="0.5544" y1="1.023" x2="0.9354" y2="1.0268" layer="21"/>
<rectangle x1="1.0801" y1="1.023" x2="1.1982" y2="1.0268" layer="21"/>
<rectangle x1="1.2821" y1="1.023" x2="2.0555" y2="1.0268" layer="21"/>
<rectangle x1="0.5582" y1="1.0268" x2="0.9392" y2="1.0306" layer="21"/>
<rectangle x1="1.0839" y1="1.0268" x2="1.1982" y2="1.0306" layer="21"/>
<rectangle x1="1.2783" y1="1.0268" x2="2.0631" y2="1.0306" layer="21"/>
<rectangle x1="0.5658" y1="1.0306" x2="0.943" y2="1.0344" layer="21"/>
<rectangle x1="1.0839" y1="1.0306" x2="1.2021" y2="1.0344" layer="21"/>
<rectangle x1="1.2744" y1="1.0306" x2="2.0669" y2="1.0344" layer="21"/>
<rectangle x1="0.5734" y1="1.0344" x2="0.9468" y2="1.0382" layer="21"/>
<rectangle x1="1.0839" y1="1.0344" x2="1.2021" y2="1.0382" layer="21"/>
<rectangle x1="1.2668" y1="1.0344" x2="2.0707" y2="1.0382" layer="21"/>
<rectangle x1="0.581" y1="1.0382" x2="0.9544" y2="1.042" layer="21"/>
<rectangle x1="1.0839" y1="1.0382" x2="1.2059" y2="1.042" layer="21"/>
<rectangle x1="1.263" y1="1.0382" x2="2.0784" y2="1.042" layer="21"/>
<rectangle x1="0.5848" y1="1.042" x2="0.9582" y2="1.0458" layer="21"/>
<rectangle x1="1.0839" y1="1.042" x2="1.2097" y2="1.0458" layer="21"/>
<rectangle x1="1.2554" y1="1.042" x2="2.0822" y2="1.0458" layer="21"/>
<rectangle x1="0.5963" y1="1.0458" x2="0.9658" y2="1.0497" layer="21"/>
<rectangle x1="1.0839" y1="1.0458" x2="1.2173" y2="1.0497" layer="21"/>
<rectangle x1="1.2478" y1="1.0458" x2="2.0898" y2="1.0497" layer="21"/>
<rectangle x1="0.6039" y1="1.0497" x2="0.9696" y2="1.0535" layer="21"/>
<rectangle x1="1.0839" y1="1.0497" x2="2.0936" y2="1.0535" layer="21"/>
<rectangle x1="0.6115" y1="1.0535" x2="0.9773" y2="1.0573" layer="21"/>
<rectangle x1="1.0839" y1="1.0535" x2="2.0974" y2="1.0573" layer="21"/>
<rectangle x1="0.6229" y1="1.0573" x2="0.9849" y2="1.0611" layer="21"/>
<rectangle x1="1.0801" y1="1.0573" x2="2.105" y2="1.0611" layer="21"/>
<rectangle x1="0.6344" y1="1.0611" x2="0.9925" y2="1.0649" layer="21"/>
<rectangle x1="1.0801" y1="1.0611" x2="2.1088" y2="1.0649" layer="21"/>
<rectangle x1="0.6458" y1="1.0649" x2="1.0001" y2="1.0687" layer="21"/>
<rectangle x1="1.0763" y1="1.0649" x2="2.1126" y2="1.0687" layer="21"/>
<rectangle x1="0.6572" y1="1.0687" x2="1.0077" y2="1.0725" layer="21"/>
<rectangle x1="1.0725" y1="1.0687" x2="2.1203" y2="1.0725" layer="21"/>
<rectangle x1="0.6725" y1="1.0725" x2="1.0192" y2="1.0763" layer="21"/>
<rectangle x1="1.0687" y1="1.0725" x2="2.1241" y2="1.0763" layer="21"/>
<rectangle x1="0.6839" y1="1.0763" x2="1.0306" y2="1.0801" layer="21"/>
<rectangle x1="1.0611" y1="1.0763" x2="2.1317" y2="1.0801" layer="21"/>
<rectangle x1="0.6191" y1="1.0801" x2="0.6496" y2="1.0839" layer="21"/>
<rectangle x1="0.6991" y1="1.0801" x2="2.1355" y2="1.0839" layer="21"/>
<rectangle x1="0.5772" y1="1.0839" x2="2.1393" y2="1.0878" layer="21"/>
<rectangle x1="0.5582" y1="1.0878" x2="2.1469" y2="1.0916" layer="21"/>
<rectangle x1="0.5429" y1="1.0916" x2="2.1507" y2="1.0954" layer="21"/>
<rectangle x1="0.5315" y1="1.0954" x2="2.1584" y2="1.0992" layer="21"/>
<rectangle x1="0.5201" y1="1.0992" x2="2.1622" y2="1.103" layer="21"/>
<rectangle x1="0.5086" y1="1.103" x2="2.166" y2="1.1068" layer="21"/>
<rectangle x1="0.4972" y1="1.1068" x2="2.1736" y2="1.1106" layer="21"/>
<rectangle x1="0.4896" y1="1.1106" x2="2.1774" y2="1.1144" layer="21"/>
<rectangle x1="0.482" y1="1.1144" x2="2.185" y2="1.1182" layer="21"/>
<rectangle x1="0.4743" y1="1.1182" x2="2.1888" y2="1.122" layer="21"/>
<rectangle x1="0.4667" y1="1.122" x2="2.1927" y2="1.1259" layer="21"/>
<rectangle x1="0.4591" y1="1.1259" x2="2.2003" y2="1.1297" layer="21"/>
<rectangle x1="0.4515" y1="1.1297" x2="1.3659" y2="1.1335" layer="21"/>
<rectangle x1="1.4345" y1="1.1297" x2="2.2041" y2="1.1335" layer="21"/>
<rectangle x1="0.4439" y1="1.1335" x2="1.3392" y2="1.1373" layer="21"/>
<rectangle x1="1.4649" y1="1.1335" x2="2.2079" y2="1.1373" layer="21"/>
<rectangle x1="0.4401" y1="1.1373" x2="1.324" y2="1.1411" layer="21"/>
<rectangle x1="1.484" y1="1.1373" x2="2.2155" y2="1.1411" layer="21"/>
<rectangle x1="0.4324" y1="1.1411" x2="1.3164" y2="1.1449" layer="21"/>
<rectangle x1="1.4992" y1="1.1411" x2="2.2193" y2="1.1449" layer="21"/>
<rectangle x1="0.4248" y1="1.1449" x2="1.3087" y2="1.1487" layer="21"/>
<rectangle x1="1.5145" y1="1.1449" x2="2.2269" y2="1.1487" layer="21"/>
<rectangle x1="0.421" y1="1.1487" x2="1.3011" y2="1.1525" layer="21"/>
<rectangle x1="1.5259" y1="1.1487" x2="2.2308" y2="1.1525" layer="21"/>
<rectangle x1="0.4134" y1="1.1525" x2="1.2935" y2="1.1563" layer="21"/>
<rectangle x1="1.5373" y1="1.1525" x2="2.2346" y2="1.1563" layer="21"/>
<rectangle x1="0.4096" y1="1.1563" x2="1.2897" y2="1.1601" layer="21"/>
<rectangle x1="1.545" y1="1.1563" x2="2.2422" y2="1.1601" layer="21"/>
<rectangle x1="0.4058" y1="1.1601" x2="1.2859" y2="1.164" layer="21"/>
<rectangle x1="1.5526" y1="1.1601" x2="2.246" y2="1.164" layer="21"/>
<rectangle x1="0.3981" y1="1.164" x2="1.2859" y2="1.1678" layer="21"/>
<rectangle x1="1.564" y1="1.164" x2="2.2536" y2="1.1678" layer="21"/>
<rectangle x1="0.3943" y1="1.1678" x2="1.2821" y2="1.1716" layer="21"/>
<rectangle x1="1.5678" y1="1.1678" x2="2.2574" y2="1.1716" layer="21"/>
<rectangle x1="0.3905" y1="1.1716" x2="1.2821" y2="1.1754" layer="21"/>
<rectangle x1="1.5754" y1="1.1716" x2="2.2612" y2="1.1754" layer="21"/>
<rectangle x1="0.3867" y1="1.1754" x2="1.2821" y2="1.1792" layer="21"/>
<rectangle x1="1.5831" y1="1.1754" x2="2.2689" y2="1.1792" layer="21"/>
<rectangle x1="0.3791" y1="1.1792" x2="1.2821" y2="1.183" layer="21"/>
<rectangle x1="1.5869" y1="1.1792" x2="2.2727" y2="1.183" layer="21"/>
<rectangle x1="0.3753" y1="1.183" x2="1.2821" y2="1.1868" layer="21"/>
<rectangle x1="1.5945" y1="1.183" x2="2.2765" y2="1.1868" layer="21"/>
<rectangle x1="0.3715" y1="1.1868" x2="1.2821" y2="1.1906" layer="21"/>
<rectangle x1="1.5983" y1="1.1868" x2="2.2841" y2="1.1906" layer="21"/>
<rectangle x1="0.3677" y1="1.1906" x2="0.9773" y2="1.1944" layer="21"/>
<rectangle x1="1.0192" y1="1.1906" x2="1.2821" y2="1.1944" layer="21"/>
<rectangle x1="1.6021" y1="1.1906" x2="2.2879" y2="1.1944" layer="21"/>
<rectangle x1="0.3639" y1="1.1944" x2="0.9544" y2="1.1982" layer="21"/>
<rectangle x1="1.0344" y1="1.1944" x2="1.2859" y2="1.1982" layer="21"/>
<rectangle x1="1.6059" y1="1.1944" x2="2.2955" y2="1.1982" layer="21"/>
<rectangle x1="0.36" y1="1.1982" x2="0.9392" y2="1.2021" layer="21"/>
<rectangle x1="1.042" y1="1.1982" x2="1.2859" y2="1.2021" layer="21"/>
<rectangle x1="1.6097" y1="1.1982" x2="2.2993" y2="1.2021" layer="21"/>
<rectangle x1="0.3562" y1="1.2021" x2="0.9239" y2="1.2059" layer="21"/>
<rectangle x1="1.0458" y1="1.2021" x2="1.2897" y2="1.2059" layer="21"/>
<rectangle x1="1.6097" y1="1.2021" x2="2.3031" y2="1.2059" layer="21"/>
<rectangle x1="0.3524" y1="1.2059" x2="0.9163" y2="1.2097" layer="21"/>
<rectangle x1="1.0497" y1="1.2059" x2="1.2935" y2="1.2097" layer="21"/>
<rectangle x1="1.6135" y1="1.2059" x2="2.3108" y2="1.2097" layer="21"/>
<rectangle x1="0.3448" y1="1.2097" x2="0.9049" y2="1.2135" layer="21"/>
<rectangle x1="1.0497" y1="1.2097" x2="1.2973" y2="1.2135" layer="21"/>
<rectangle x1="1.6173" y1="1.2097" x2="2.3146" y2="1.2135" layer="21"/>
<rectangle x1="0.341" y1="1.2135" x2="0.8973" y2="1.2173" layer="21"/>
<rectangle x1="1.0535" y1="1.2135" x2="1.3011" y2="1.2173" layer="21"/>
<rectangle x1="1.6173" y1="1.2135" x2="2.3222" y2="1.2173" layer="21"/>
<rectangle x1="0.3372" y1="1.2173" x2="0.8858" y2="1.2211" layer="21"/>
<rectangle x1="1.0535" y1="1.2173" x2="1.3049" y2="1.2211" layer="21"/>
<rectangle x1="1.6173" y1="1.2173" x2="2.326" y2="1.2211" layer="21"/>
<rectangle x1="0.3372" y1="1.2211" x2="0.8782" y2="1.2249" layer="21"/>
<rectangle x1="1.0535" y1="1.2211" x2="1.3087" y2="1.2249" layer="21"/>
<rectangle x1="1.6173" y1="1.2211" x2="2.3298" y2="1.2249" layer="21"/>
<rectangle x1="0.3334" y1="1.2249" x2="0.8706" y2="1.2287" layer="21"/>
<rectangle x1="1.0535" y1="1.2249" x2="1.3164" y2="1.2287" layer="21"/>
<rectangle x1="1.6173" y1="1.2249" x2="2.3374" y2="1.2287" layer="21"/>
<rectangle x1="0.3296" y1="1.2287" x2="0.863" y2="1.2325" layer="21"/>
<rectangle x1="1.0535" y1="1.2287" x2="1.3202" y2="1.2325" layer="21"/>
<rectangle x1="1.6173" y1="1.2287" x2="2.3412" y2="1.2325" layer="21"/>
<rectangle x1="0.3258" y1="1.2325" x2="0.8553" y2="1.2363" layer="21"/>
<rectangle x1="1.0535" y1="1.2325" x2="1.3278" y2="1.2363" layer="21"/>
<rectangle x1="1.6173" y1="1.2325" x2="2.3489" y2="1.2363" layer="21"/>
<rectangle x1="0.3219" y1="1.2363" x2="0.8477" y2="1.2402" layer="21"/>
<rectangle x1="1.0535" y1="1.2363" x2="1.3354" y2="1.2402" layer="21"/>
<rectangle x1="1.6173" y1="1.2363" x2="2.3527" y2="1.2402" layer="21"/>
<rectangle x1="0.3181" y1="1.2402" x2="0.8439" y2="1.244" layer="21"/>
<rectangle x1="1.0535" y1="1.2402" x2="1.343" y2="1.244" layer="21"/>
<rectangle x1="1.6135" y1="1.2402" x2="2.3565" y2="1.244" layer="21"/>
<rectangle x1="0.3143" y1="1.244" x2="0.8363" y2="1.2478" layer="21"/>
<rectangle x1="1.0497" y1="1.244" x2="1.3506" y2="1.2478" layer="21"/>
<rectangle x1="1.6097" y1="1.244" x2="2.3641" y2="1.2478" layer="21"/>
<rectangle x1="0.3105" y1="1.2478" x2="0.8325" y2="1.2516" layer="21"/>
<rectangle x1="1.0497" y1="1.2478" x2="1.3583" y2="1.2516" layer="21"/>
<rectangle x1="1.6059" y1="1.2478" x2="2.3679" y2="1.2516" layer="21"/>
<rectangle x1="0.3067" y1="1.2516" x2="0.8249" y2="1.2554" layer="21"/>
<rectangle x1="1.0458" y1="1.2516" x2="1.3697" y2="1.2554" layer="21"/>
<rectangle x1="1.6021" y1="1.2516" x2="2.3717" y2="1.2554" layer="21"/>
<rectangle x1="0.3029" y1="1.2554" x2="0.8211" y2="1.2592" layer="21"/>
<rectangle x1="1.0458" y1="1.2554" x2="1.3811" y2="1.2592" layer="21"/>
<rectangle x1="1.5945" y1="1.2554" x2="2.3793" y2="1.2592" layer="21"/>
<rectangle x1="0.3029" y1="1.2592" x2="0.8134" y2="1.263" layer="21"/>
<rectangle x1="1.042" y1="1.2592" x2="1.3926" y2="1.263" layer="21"/>
<rectangle x1="1.5869" y1="1.2592" x2="2.3832" y2="1.263" layer="21"/>
<rectangle x1="0.2991" y1="1.263" x2="0.8096" y2="1.2668" layer="21"/>
<rectangle x1="1.0382" y1="1.263" x2="1.4078" y2="1.2668" layer="21"/>
<rectangle x1="1.5792" y1="1.263" x2="2.387" y2="1.2668" layer="21"/>
<rectangle x1="0.2953" y1="1.2668" x2="0.802" y2="1.2706" layer="21"/>
<rectangle x1="1.0382" y1="1.2668" x2="1.4268" y2="1.2706" layer="21"/>
<rectangle x1="1.5678" y1="1.2668" x2="2.3946" y2="1.2706" layer="21"/>
<rectangle x1="0.2915" y1="1.2706" x2="0.7982" y2="1.2744" layer="21"/>
<rectangle x1="1.0344" y1="1.2706" x2="1.4497" y2="1.2744" layer="21"/>
<rectangle x1="1.5488" y1="1.2706" x2="2.3984" y2="1.2744" layer="21"/>
<rectangle x1="0.2877" y1="1.2744" x2="0.7944" y2="1.2783" layer="21"/>
<rectangle x1="1.0306" y1="1.2744" x2="2.4022" y2="1.2783" layer="21"/>
<rectangle x1="0.2877" y1="1.2783" x2="0.7906" y2="1.2821" layer="21"/>
<rectangle x1="1.0268" y1="1.2783" x2="1.1716" y2="1.2821" layer="21"/>
<rectangle x1="1.1982" y1="1.2783" x2="2.406" y2="1.2821" layer="21"/>
<rectangle x1="0.2838" y1="1.2821" x2="0.7868" y2="1.2859" layer="21"/>
<rectangle x1="1.023" y1="1.2821" x2="1.164" y2="1.2859" layer="21"/>
<rectangle x1="1.2059" y1="1.2821" x2="2.4098" y2="1.2859" layer="21"/>
<rectangle x1="0.28" y1="1.2859" x2="0.783" y2="1.2897" layer="21"/>
<rectangle x1="1.0192" y1="1.2859" x2="1.1601" y2="1.2897" layer="21"/>
<rectangle x1="1.2097" y1="1.2859" x2="2.4136" y2="1.2897" layer="21"/>
<rectangle x1="0.28" y1="1.2897" x2="0.7791" y2="1.2935" layer="21"/>
<rectangle x1="1.0154" y1="1.2897" x2="1.1563" y2="1.2935" layer="21"/>
<rectangle x1="1.2135" y1="1.2897" x2="2.4174" y2="1.2935" layer="21"/>
<rectangle x1="0.2762" y1="1.2935" x2="0.7753" y2="1.2973" layer="21"/>
<rectangle x1="1.0116" y1="1.2935" x2="1.1563" y2="1.2973" layer="21"/>
<rectangle x1="1.2173" y1="1.2935" x2="2.4213" y2="1.2973" layer="21"/>
<rectangle x1="0.2724" y1="1.2973" x2="0.7715" y2="1.3011" layer="21"/>
<rectangle x1="1.0077" y1="1.2973" x2="1.1525" y2="1.3011" layer="21"/>
<rectangle x1="1.2211" y1="1.2973" x2="2.4213" y2="1.3011" layer="21"/>
<rectangle x1="0.2686" y1="1.3011" x2="0.7677" y2="1.3049" layer="21"/>
<rectangle x1="1.0039" y1="1.3011" x2="1.1487" y2="1.3049" layer="21"/>
<rectangle x1="1.2249" y1="1.3011" x2="2.4251" y2="1.3049" layer="21"/>
<rectangle x1="0.2686" y1="1.3049" x2="0.7639" y2="1.3087" layer="21"/>
<rectangle x1="1.0001" y1="1.3049" x2="1.1487" y2="1.3087" layer="21"/>
<rectangle x1="1.2287" y1="1.3049" x2="2.4289" y2="1.3087" layer="21"/>
<rectangle x1="0.2648" y1="1.3087" x2="0.7601" y2="1.3125" layer="21"/>
<rectangle x1="0.9925" y1="1.3087" x2="1.1449" y2="1.3125" layer="21"/>
<rectangle x1="1.2287" y1="1.3087" x2="2.4289" y2="1.3125" layer="21"/>
<rectangle x1="0.261" y1="1.3125" x2="0.7601" y2="1.3164" layer="21"/>
<rectangle x1="0.9887" y1="1.3125" x2="1.1449" y2="1.3164" layer="21"/>
<rectangle x1="1.2325" y1="1.3125" x2="2.4289" y2="1.3164" layer="21"/>
<rectangle x1="0.2572" y1="1.3164" x2="0.7563" y2="1.3202" layer="21"/>
<rectangle x1="0.9849" y1="1.3164" x2="1.1449" y2="1.3202" layer="21"/>
<rectangle x1="1.2363" y1="1.3164" x2="2.4327" y2="1.3202" layer="21"/>
<rectangle x1="0.2572" y1="1.3202" x2="0.7525" y2="1.324" layer="21"/>
<rectangle x1="0.9773" y1="1.3202" x2="1.1411" y2="1.324" layer="21"/>
<rectangle x1="1.2363" y1="1.3202" x2="2.4327" y2="1.324" layer="21"/>
<rectangle x1="0.2534" y1="1.324" x2="0.7525" y2="1.3278" layer="21"/>
<rectangle x1="0.9735" y1="1.324" x2="1.1411" y2="1.3278" layer="21"/>
<rectangle x1="1.2402" y1="1.324" x2="2.4327" y2="1.3278" layer="21"/>
<rectangle x1="0.2496" y1="1.3278" x2="0.7487" y2="1.3316" layer="21"/>
<rectangle x1="0.9658" y1="1.3278" x2="1.1411" y2="1.3316" layer="21"/>
<rectangle x1="1.2402" y1="1.3278" x2="2.4327" y2="1.3316" layer="21"/>
<rectangle x1="0.2457" y1="1.3316" x2="0.7487" y2="1.3354" layer="21"/>
<rectangle x1="0.962" y1="1.3316" x2="1.1411" y2="1.3354" layer="21"/>
<rectangle x1="1.244" y1="1.3316" x2="2.4365" y2="1.3354" layer="21"/>
<rectangle x1="0.2457" y1="1.3354" x2="0.7449" y2="1.3392" layer="21"/>
<rectangle x1="0.9544" y1="1.3354" x2="1.1373" y2="1.3392" layer="21"/>
<rectangle x1="1.244" y1="1.3354" x2="2.4365" y2="1.3392" layer="21"/>
<rectangle x1="0.2419" y1="1.3392" x2="0.7449" y2="1.343" layer="21"/>
<rectangle x1="0.9468" y1="1.3392" x2="1.1373" y2="1.343" layer="21"/>
<rectangle x1="1.2478" y1="1.3392" x2="2.4365" y2="1.343" layer="21"/>
<rectangle x1="0.2381" y1="1.343" x2="0.7449" y2="1.3468" layer="21"/>
<rectangle x1="0.943" y1="1.343" x2="1.1373" y2="1.3468" layer="21"/>
<rectangle x1="1.2478" y1="1.343" x2="2.4365" y2="1.3468" layer="21"/>
<rectangle x1="0.2381" y1="1.3468" x2="0.7449" y2="1.3506" layer="21"/>
<rectangle x1="0.9354" y1="1.3468" x2="1.1373" y2="1.3506" layer="21"/>
<rectangle x1="1.2516" y1="1.3468" x2="2.4365" y2="1.3506" layer="21"/>
<rectangle x1="0.2343" y1="1.3506" x2="0.7449" y2="1.3545" layer="21"/>
<rectangle x1="0.9277" y1="1.3506" x2="1.1373" y2="1.3545" layer="21"/>
<rectangle x1="1.2516" y1="1.3506" x2="2.4327" y2="1.3545" layer="21"/>
<rectangle x1="0.2305" y1="1.3545" x2="0.7449" y2="1.3583" layer="21"/>
<rectangle x1="0.9201" y1="1.3545" x2="1.1335" y2="1.3583" layer="21"/>
<rectangle x1="1.2516" y1="1.3545" x2="2.4327" y2="1.3583" layer="21"/>
<rectangle x1="0.2267" y1="1.3583" x2="0.7449" y2="1.3621" layer="21"/>
<rectangle x1="0.9125" y1="1.3583" x2="1.1335" y2="1.3621" layer="21"/>
<rectangle x1="1.2554" y1="1.3583" x2="2.4327" y2="1.3621" layer="21"/>
<rectangle x1="0.2267" y1="1.3621" x2="0.7449" y2="1.3659" layer="21"/>
<rectangle x1="0.9011" y1="1.3621" x2="1.1335" y2="1.3659" layer="21"/>
<rectangle x1="1.2554" y1="1.3621" x2="2.4327" y2="1.3659" layer="21"/>
<rectangle x1="0.2229" y1="1.3659" x2="0.7487" y2="1.3697" layer="21"/>
<rectangle x1="0.8934" y1="1.3659" x2="1.1335" y2="1.3697" layer="21"/>
<rectangle x1="1.2592" y1="1.3659" x2="2.4327" y2="1.3697" layer="21"/>
<rectangle x1="0.2191" y1="1.3697" x2="0.7487" y2="1.3735" layer="21"/>
<rectangle x1="0.882" y1="1.3697" x2="1.1335" y2="1.3735" layer="21"/>
<rectangle x1="1.2592" y1="1.3697" x2="2.4327" y2="1.3735" layer="21"/>
<rectangle x1="0.2153" y1="1.3735" x2="0.7525" y2="1.3773" layer="21"/>
<rectangle x1="0.8706" y1="1.3735" x2="1.1335" y2="1.3773" layer="21"/>
<rectangle x1="1.2592" y1="1.3735" x2="2.4289" y2="1.3773" layer="21"/>
<rectangle x1="0.2153" y1="1.3773" x2="0.7563" y2="1.3811" layer="21"/>
<rectangle x1="0.8592" y1="1.3773" x2="1.1335" y2="1.3811" layer="21"/>
<rectangle x1="1.263" y1="1.3773" x2="2.4289" y2="1.3811" layer="21"/>
<rectangle x1="0.2115" y1="1.3811" x2="0.7639" y2="1.3849" layer="21"/>
<rectangle x1="0.8439" y1="1.3811" x2="1.1335" y2="1.3849" layer="21"/>
<rectangle x1="1.263" y1="1.3811" x2="2.4289" y2="1.3849" layer="21"/>
<rectangle x1="0.2076" y1="1.3849" x2="0.7791" y2="1.3887" layer="21"/>
<rectangle x1="0.8211" y1="1.3849" x2="1.1335" y2="1.3887" layer="21"/>
<rectangle x1="1.263" y1="1.3849" x2="2.4251" y2="1.3887" layer="21"/>
<rectangle x1="0.2038" y1="1.3887" x2="1.1335" y2="1.3926" layer="21"/>
<rectangle x1="1.263" y1="1.3887" x2="2.4251" y2="1.3926" layer="21"/>
<rectangle x1="0.2038" y1="1.3926" x2="1.1335" y2="1.3964" layer="21"/>
<rectangle x1="1.2668" y1="1.3926" x2="2.4213" y2="1.3964" layer="21"/>
<rectangle x1="0.2" y1="1.3964" x2="1.1335" y2="1.4002" layer="21"/>
<rectangle x1="1.2668" y1="1.3964" x2="2.4174" y2="1.4002" layer="21"/>
<rectangle x1="0.1962" y1="1.4002" x2="1.1335" y2="1.404" layer="21"/>
<rectangle x1="1.2668" y1="1.4002" x2="2.4174" y2="1.404" layer="21"/>
<rectangle x1="0.1962" y1="1.404" x2="1.1335" y2="1.4078" layer="21"/>
<rectangle x1="1.2668" y1="1.404" x2="2.4136" y2="1.4078" layer="21"/>
<rectangle x1="0.1924" y1="1.4078" x2="1.1335" y2="1.4116" layer="21"/>
<rectangle x1="1.2706" y1="1.4078" x2="2.4098" y2="1.4116" layer="21"/>
<rectangle x1="0.1886" y1="1.4116" x2="1.1335" y2="1.4154" layer="21"/>
<rectangle x1="1.2706" y1="1.4116" x2="2.406" y2="1.4154" layer="21"/>
<rectangle x1="0.1848" y1="1.4154" x2="1.1335" y2="1.4192" layer="21"/>
<rectangle x1="1.2706" y1="1.4154" x2="2.3984" y2="1.4192" layer="21"/>
<rectangle x1="0.1848" y1="1.4192" x2="1.1335" y2="1.423" layer="21"/>
<rectangle x1="1.2706" y1="1.4192" x2="2.3946" y2="1.423" layer="21"/>
<rectangle x1="0.181" y1="1.423" x2="1.1335" y2="1.4268" layer="21"/>
<rectangle x1="1.2706" y1="1.423" x2="2.387" y2="1.4268" layer="21"/>
<rectangle x1="0.1772" y1="1.4268" x2="1.1335" y2="1.4307" layer="21"/>
<rectangle x1="1.2744" y1="1.4268" x2="2.3793" y2="1.4307" layer="21"/>
<rectangle x1="0.1734" y1="1.4307" x2="1.1335" y2="1.4345" layer="21"/>
<rectangle x1="1.2744" y1="1.4307" x2="2.3679" y2="1.4345" layer="21"/>
<rectangle x1="0.1734" y1="1.4345" x2="1.1335" y2="1.4383" layer="21"/>
<rectangle x1="1.2744" y1="1.4345" x2="2.3603" y2="1.4383" layer="21"/>
<rectangle x1="0.1695" y1="1.4383" x2="1.1373" y2="1.4421" layer="21"/>
<rectangle x1="1.2744" y1="1.4383" x2="2.3489" y2="1.4421" layer="21"/>
<rectangle x1="0.1657" y1="1.4421" x2="1.1373" y2="1.4459" layer="21"/>
<rectangle x1="1.2744" y1="1.4421" x2="2.3374" y2="1.4459" layer="21"/>
<rectangle x1="0.1619" y1="1.4459" x2="1.1373" y2="1.4497" layer="21"/>
<rectangle x1="1.2744" y1="1.4459" x2="2.3222" y2="1.4497" layer="21"/>
<rectangle x1="0.1619" y1="1.4497" x2="1.1373" y2="1.4535" layer="21"/>
<rectangle x1="1.2744" y1="1.4497" x2="2.3108" y2="1.4535" layer="21"/>
<rectangle x1="0.1581" y1="1.4535" x2="1.1373" y2="1.4573" layer="21"/>
<rectangle x1="1.2783" y1="1.4535" x2="2.2993" y2="1.4573" layer="21"/>
<rectangle x1="0.1543" y1="1.4573" x2="1.1373" y2="1.4611" layer="21"/>
<rectangle x1="1.2783" y1="1.4573" x2="2.2879" y2="1.4611" layer="21"/>
<rectangle x1="0.1505" y1="1.4611" x2="1.1373" y2="1.4649" layer="21"/>
<rectangle x1="1.2783" y1="1.4611" x2="2.2765" y2="1.4649" layer="21"/>
<rectangle x1="0.1505" y1="1.4649" x2="1.1411" y2="1.4688" layer="21"/>
<rectangle x1="1.2783" y1="1.4649" x2="2.265" y2="1.4688" layer="21"/>
<rectangle x1="0.1467" y1="1.4688" x2="1.1411" y2="1.4726" layer="21"/>
<rectangle x1="1.2783" y1="1.4688" x2="2.2536" y2="1.4726" layer="21"/>
<rectangle x1="0.1429" y1="1.4726" x2="1.1411" y2="1.4764" layer="21"/>
<rectangle x1="1.2783" y1="1.4726" x2="2.2422" y2="1.4764" layer="21"/>
<rectangle x1="0.1429" y1="1.4764" x2="1.1411" y2="1.4802" layer="21"/>
<rectangle x1="1.2783" y1="1.4764" x2="2.2269" y2="1.4802" layer="21"/>
<rectangle x1="0.1391" y1="1.4802" x2="1.1411" y2="1.484" layer="21"/>
<rectangle x1="1.2783" y1="1.4802" x2="2.2155" y2="1.484" layer="21"/>
<rectangle x1="0.1353" y1="1.484" x2="1.1449" y2="1.4878" layer="21"/>
<rectangle x1="1.2783" y1="1.484" x2="1.4878" y2="1.4878" layer="21"/>
<rectangle x1="1.4916" y1="1.484" x2="2.2041" y2="1.4878" layer="21"/>
<rectangle x1="0.1314" y1="1.4878" x2="1.1449" y2="1.4916" layer="21"/>
<rectangle x1="1.2783" y1="1.4878" x2="1.4916" y2="1.4916" layer="21"/>
<rectangle x1="1.4954" y1="1.4878" x2="2.1927" y2="1.4916" layer="21"/>
<rectangle x1="0.1314" y1="1.4916" x2="1.1449" y2="1.4954" layer="21"/>
<rectangle x1="1.2783" y1="1.4916" x2="1.4954" y2="1.4954" layer="21"/>
<rectangle x1="1.4992" y1="1.4916" x2="2.1812" y2="1.4954" layer="21"/>
<rectangle x1="0.1276" y1="1.4954" x2="1.1449" y2="1.4992" layer="21"/>
<rectangle x1="1.2783" y1="1.4954" x2="1.4954" y2="1.4992" layer="21"/>
<rectangle x1="1.503" y1="1.4954" x2="2.1698" y2="1.4992" layer="21"/>
<rectangle x1="0.1238" y1="1.4992" x2="1.1487" y2="1.503" layer="21"/>
<rectangle x1="1.2783" y1="1.4992" x2="1.4992" y2="1.503" layer="21"/>
<rectangle x1="1.5107" y1="1.4992" x2="2.1584" y2="1.503" layer="21"/>
<rectangle x1="0.12" y1="1.503" x2="1.1487" y2="1.5069" layer="21"/>
<rectangle x1="1.2783" y1="1.503" x2="1.503" y2="1.5069" layer="21"/>
<rectangle x1="1.5145" y1="1.503" x2="2.1431" y2="1.5069" layer="21"/>
<rectangle x1="0.12" y1="1.5069" x2="1.1487" y2="1.5107" layer="21"/>
<rectangle x1="1.2783" y1="1.5069" x2="1.5069" y2="1.5107" layer="21"/>
<rectangle x1="1.5183" y1="1.5069" x2="2.1317" y2="1.5107" layer="21"/>
<rectangle x1="0.1162" y1="1.5107" x2="1.1487" y2="1.5145" layer="21"/>
<rectangle x1="1.2783" y1="1.5107" x2="1.5107" y2="1.5145" layer="21"/>
<rectangle x1="1.5221" y1="1.5107" x2="2.1203" y2="1.5145" layer="21"/>
<rectangle x1="0.1124" y1="1.5145" x2="1.1525" y2="1.5183" layer="21"/>
<rectangle x1="1.2783" y1="1.5145" x2="1.5107" y2="1.5183" layer="21"/>
<rectangle x1="1.5297" y1="1.5145" x2="2.1088" y2="1.5183" layer="21"/>
<rectangle x1="0.1086" y1="1.5183" x2="1.1525" y2="1.5221" layer="21"/>
<rectangle x1="1.2783" y1="1.5183" x2="1.5145" y2="1.5221" layer="21"/>
<rectangle x1="1.5335" y1="1.5183" x2="2.0974" y2="1.5221" layer="21"/>
<rectangle x1="0.1086" y1="1.5221" x2="1.1525" y2="1.5259" layer="21"/>
<rectangle x1="1.2783" y1="1.5221" x2="1.5183" y2="1.5259" layer="21"/>
<rectangle x1="1.5373" y1="1.5221" x2="2.086" y2="1.5259" layer="21"/>
<rectangle x1="0.1048" y1="1.5259" x2="1.1563" y2="1.5297" layer="21"/>
<rectangle x1="1.2783" y1="1.5259" x2="1.5221" y2="1.5297" layer="21"/>
<rectangle x1="1.545" y1="1.5259" x2="2.0745" y2="1.5297" layer="21"/>
<rectangle x1="0.101" y1="1.5297" x2="1.1563" y2="1.5335" layer="21"/>
<rectangle x1="1.2783" y1="1.5297" x2="1.5221" y2="1.5335" layer="21"/>
<rectangle x1="1.5488" y1="1.5297" x2="2.0593" y2="1.5335" layer="21"/>
<rectangle x1="0.101" y1="1.5335" x2="1.1601" y2="1.5373" layer="21"/>
<rectangle x1="1.2783" y1="1.5335" x2="1.5259" y2="1.5373" layer="21"/>
<rectangle x1="1.5564" y1="1.5335" x2="2.0479" y2="1.5373" layer="21"/>
<rectangle x1="0.0972" y1="1.5373" x2="1.1601" y2="1.5411" layer="21"/>
<rectangle x1="1.2744" y1="1.5373" x2="1.5297" y2="1.5411" layer="21"/>
<rectangle x1="1.5602" y1="1.5373" x2="2.0364" y2="1.5411" layer="21"/>
<rectangle x1="0.0933" y1="1.5411" x2="1.1601" y2="1.545" layer="21"/>
<rectangle x1="1.2744" y1="1.5411" x2="1.5335" y2="1.545" layer="21"/>
<rectangle x1="1.5678" y1="1.5411" x2="2.025" y2="1.545" layer="21"/>
<rectangle x1="0.0895" y1="1.545" x2="1.164" y2="1.5488" layer="21"/>
<rectangle x1="1.2744" y1="1.545" x2="1.5335" y2="1.5488" layer="21"/>
<rectangle x1="1.5716" y1="1.545" x2="2.0136" y2="1.5488" layer="21"/>
<rectangle x1="0.0895" y1="1.5488" x2="1.164" y2="1.5526" layer="21"/>
<rectangle x1="1.2744" y1="1.5488" x2="1.5373" y2="1.5526" layer="21"/>
<rectangle x1="1.5792" y1="1.5488" x2="2.0022" y2="1.5526" layer="21"/>
<rectangle x1="0.0857" y1="1.5526" x2="1.1678" y2="1.5564" layer="21"/>
<rectangle x1="1.2744" y1="1.5526" x2="1.5411" y2="1.5564" layer="21"/>
<rectangle x1="1.5869" y1="1.5526" x2="1.9907" y2="1.5564" layer="21"/>
<rectangle x1="0.0819" y1="1.5564" x2="1.1678" y2="1.5602" layer="21"/>
<rectangle x1="1.2744" y1="1.5564" x2="1.5411" y2="1.5602" layer="21"/>
<rectangle x1="1.5945" y1="1.5564" x2="1.9793" y2="1.5602" layer="21"/>
<rectangle x1="0.0781" y1="1.5602" x2="1.1716" y2="1.564" layer="21"/>
<rectangle x1="1.2706" y1="1.5602" x2="1.545" y2="1.564" layer="21"/>
<rectangle x1="1.6021" y1="1.5602" x2="1.9641" y2="1.564" layer="21"/>
<rectangle x1="0.0781" y1="1.564" x2="1.1716" y2="1.5678" layer="21"/>
<rectangle x1="1.2706" y1="1.564" x2="1.5488" y2="1.5678" layer="21"/>
<rectangle x1="1.6097" y1="1.564" x2="1.9526" y2="1.5678" layer="21"/>
<rectangle x1="0.0743" y1="1.5678" x2="1.1754" y2="1.5716" layer="21"/>
<rectangle x1="1.2706" y1="1.5678" x2="1.5488" y2="1.5716" layer="21"/>
<rectangle x1="1.6212" y1="1.5678" x2="1.9412" y2="1.5716" layer="21"/>
<rectangle x1="0.0705" y1="1.5716" x2="0.9468" y2="1.5754" layer="21"/>
<rectangle x1="0.9506" y1="1.5716" x2="1.1754" y2="1.5754" layer="21"/>
<rectangle x1="1.2668" y1="1.5716" x2="1.5526" y2="1.5754" layer="21"/>
<rectangle x1="1.6288" y1="1.5716" x2="1.9298" y2="1.5754" layer="21"/>
<rectangle x1="0.0667" y1="1.5754" x2="0.943" y2="1.5792" layer="21"/>
<rectangle x1="0.9468" y1="1.5754" x2="1.1792" y2="1.5792" layer="21"/>
<rectangle x1="1.2668" y1="1.5754" x2="1.5526" y2="1.5792" layer="21"/>
<rectangle x1="1.6402" y1="1.5754" x2="1.9183" y2="1.5792" layer="21"/>
<rectangle x1="0.0667" y1="1.5792" x2="0.943" y2="1.5831" layer="21"/>
<rectangle x1="0.9468" y1="1.5792" x2="1.183" y2="1.5831" layer="21"/>
<rectangle x1="1.2668" y1="1.5792" x2="1.5564" y2="1.5831" layer="21"/>
<rectangle x1="1.6554" y1="1.5792" x2="1.9031" y2="1.5831" layer="21"/>
<rectangle x1="0.0629" y1="1.5831" x2="0.9392" y2="1.5869" layer="21"/>
<rectangle x1="0.943" y1="1.5831" x2="1.183" y2="1.5869" layer="21"/>
<rectangle x1="1.263" y1="1.5831" x2="1.5564" y2="1.5869" layer="21"/>
<rectangle x1="1.6669" y1="1.5831" x2="1.884" y2="1.5869" layer="21"/>
<rectangle x1="0.0591" y1="1.5869" x2="0.9354" y2="1.5907" layer="21"/>
<rectangle x1="0.943" y1="1.5869" x2="1.1868" y2="1.5907" layer="21"/>
<rectangle x1="1.263" y1="1.5869" x2="1.5602" y2="1.5907" layer="21"/>
<rectangle x1="1.6859" y1="1.5869" x2="1.865" y2="1.5907" layer="21"/>
<rectangle x1="0.0591" y1="1.5907" x2="0.9354" y2="1.5945" layer="21"/>
<rectangle x1="0.943" y1="1.5907" x2="1.1906" y2="1.5945" layer="21"/>
<rectangle x1="1.2592" y1="1.5907" x2="1.5602" y2="1.5945" layer="21"/>
<rectangle x1="1.7088" y1="1.5907" x2="1.8383" y2="1.5945" layer="21"/>
<rectangle x1="0.0552" y1="1.5945" x2="0.9315" y2="1.5983" layer="21"/>
<rectangle x1="0.9392" y1="1.5945" x2="1.1944" y2="1.5983" layer="21"/>
<rectangle x1="1.2592" y1="1.5945" x2="1.564" y2="1.5983" layer="21"/>
<rectangle x1="1.7469" y1="1.5945" x2="1.7964" y2="1.5983" layer="21"/>
<rectangle x1="0.0514" y1="1.5983" x2="0.9277" y2="1.6021" layer="21"/>
<rectangle x1="0.9392" y1="1.5983" x2="1.1982" y2="1.6021" layer="21"/>
<rectangle x1="1.2554" y1="1.5983" x2="1.564" y2="1.6021" layer="21"/>
<rectangle x1="0.0476" y1="1.6021" x2="0.9277" y2="1.6059" layer="21"/>
<rectangle x1="0.9392" y1="1.6021" x2="1.2021" y2="1.6059" layer="21"/>
<rectangle x1="1.2516" y1="1.6021" x2="1.5678" y2="1.6059" layer="21"/>
<rectangle x1="0.0476" y1="1.6059" x2="0.9239" y2="1.6097" layer="21"/>
<rectangle x1="0.9354" y1="1.6059" x2="1.2059" y2="1.6097" layer="21"/>
<rectangle x1="1.2478" y1="1.6059" x2="1.5678" y2="1.6097" layer="21"/>
<rectangle x1="0.0438" y1="1.6097" x2="0.9201" y2="1.6135" layer="21"/>
<rectangle x1="0.9354" y1="1.6097" x2="1.2135" y2="1.6135" layer="21"/>
<rectangle x1="1.244" y1="1.6097" x2="1.5716" y2="1.6135" layer="21"/>
<rectangle x1="0.04" y1="1.6135" x2="0.9201" y2="1.6173" layer="21"/>
<rectangle x1="0.9315" y1="1.6135" x2="1.5716" y2="1.6173" layer="21"/>
<rectangle x1="0.0362" y1="1.6173" x2="0.9163" y2="1.6212" layer="21"/>
<rectangle x1="0.9315" y1="1.6173" x2="1.5716" y2="1.6212" layer="21"/>
<rectangle x1="0.0362" y1="1.6212" x2="0.9125" y2="1.625" layer="21"/>
<rectangle x1="0.9315" y1="1.6212" x2="1.5754" y2="1.625" layer="21"/>
<rectangle x1="0.0324" y1="1.625" x2="0.9087" y2="1.6288" layer="21"/>
<rectangle x1="0.9277" y1="1.625" x2="1.5754" y2="1.6288" layer="21"/>
<rectangle x1="0.0286" y1="1.6288" x2="0.9087" y2="1.6326" layer="21"/>
<rectangle x1="0.9277" y1="1.6288" x2="1.5792" y2="1.6326" layer="21"/>
<rectangle x1="0.0286" y1="1.6326" x2="0.9049" y2="1.6364" layer="21"/>
<rectangle x1="0.9277" y1="1.6326" x2="1.5792" y2="1.6364" layer="21"/>
<rectangle x1="0.0248" y1="1.6364" x2="0.9011" y2="1.6402" layer="21"/>
<rectangle x1="0.9239" y1="1.6364" x2="1.5792" y2="1.6402" layer="21"/>
<rectangle x1="0.021" y1="1.6402" x2="0.8973" y2="1.644" layer="21"/>
<rectangle x1="0.9239" y1="1.6402" x2="1.5831" y2="1.644" layer="21"/>
<rectangle x1="0.021" y1="1.644" x2="0.8973" y2="1.6478" layer="21"/>
<rectangle x1="0.9239" y1="1.644" x2="1.5831" y2="1.6478" layer="21"/>
<rectangle x1="0.0171" y1="1.6478" x2="0.8934" y2="1.6516" layer="21"/>
<rectangle x1="0.9239" y1="1.6478" x2="1.5831" y2="1.6516" layer="21"/>
<rectangle x1="0.0133" y1="1.6516" x2="0.8896" y2="1.6554" layer="21"/>
<rectangle x1="0.9201" y1="1.6516" x2="1.5831" y2="1.6554" layer="21"/>
<rectangle x1="0.0133" y1="1.6554" x2="0.8858" y2="1.6593" layer="21"/>
<rectangle x1="0.9201" y1="1.6554" x2="1.5869" y2="1.6593" layer="21"/>
<rectangle x1="0.0095" y1="1.6593" x2="0.882" y2="1.6631" layer="21"/>
<rectangle x1="0.9201" y1="1.6593" x2="1.5869" y2="1.6631" layer="21"/>
<rectangle x1="0.0095" y1="1.6631" x2="0.8782" y2="1.6669" layer="21"/>
<rectangle x1="0.9163" y1="1.6631" x2="1.5869" y2="1.6669" layer="21"/>
<rectangle x1="0.0057" y1="1.6669" x2="0.8744" y2="1.6707" layer="21"/>
<rectangle x1="0.9163" y1="1.6669" x2="1.5869" y2="1.6707" layer="21"/>
<rectangle x1="0.0057" y1="1.6707" x2="0.8706" y2="1.6745" layer="21"/>
<rectangle x1="0.9163" y1="1.6707" x2="1.5907" y2="1.6745" layer="21"/>
<rectangle x1="0.0057" y1="1.6745" x2="0.8668" y2="1.6783" layer="21"/>
<rectangle x1="0.9163" y1="1.6745" x2="1.5907" y2="1.6783" layer="21"/>
<rectangle x1="0.0019" y1="1.6783" x2="0.863" y2="1.6821" layer="21"/>
<rectangle x1="0.9163" y1="1.6783" x2="1.5907" y2="1.6821" layer="21"/>
<rectangle x1="0.0019" y1="1.6821" x2="0.8592" y2="1.6859" layer="21"/>
<rectangle x1="0.9125" y1="1.6821" x2="1.5907" y2="1.6859" layer="21"/>
<rectangle x1="0.0019" y1="1.6859" x2="0.8553" y2="1.6897" layer="21"/>
<rectangle x1="0.9125" y1="1.6859" x2="1.5907" y2="1.6897" layer="21"/>
<rectangle x1="0.0019" y1="1.6897" x2="0.8477" y2="1.6935" layer="21"/>
<rectangle x1="0.9125" y1="1.6897" x2="1.5945" y2="1.6935" layer="21"/>
<rectangle x1="0.0019" y1="1.6935" x2="0.8439" y2="1.6974" layer="21"/>
<rectangle x1="0.9125" y1="1.6935" x2="1.5945" y2="1.6974" layer="21"/>
<rectangle x1="-0.0019" y1="1.6974" x2="0.8401" y2="1.7012" layer="21"/>
<rectangle x1="0.9125" y1="1.6974" x2="1.5945" y2="1.7012" layer="21"/>
<rectangle x1="0.0019" y1="1.7012" x2="0.8363" y2="1.705" layer="21"/>
<rectangle x1="0.9125" y1="1.7012" x2="1.5945" y2="1.705" layer="21"/>
<rectangle x1="0.0019" y1="1.705" x2="0.8287" y2="1.7088" layer="21"/>
<rectangle x1="0.9125" y1="1.705" x2="1.5945" y2="1.7088" layer="21"/>
<rectangle x1="0.0019" y1="1.7088" x2="0.8249" y2="1.7126" layer="21"/>
<rectangle x1="0.9087" y1="1.7088" x2="1.5945" y2="1.7126" layer="21"/>
<rectangle x1="0.0019" y1="1.7126" x2="0.8172" y2="1.7164" layer="21"/>
<rectangle x1="0.9087" y1="1.7126" x2="1.5983" y2="1.7164" layer="21"/>
<rectangle x1="0.0019" y1="1.7164" x2="0.8134" y2="1.7202" layer="21"/>
<rectangle x1="0.9087" y1="1.7164" x2="1.5983" y2="1.7202" layer="21"/>
<rectangle x1="0.0019" y1="1.7202" x2="0.8058" y2="1.724" layer="21"/>
<rectangle x1="0.9087" y1="1.7202" x2="1.5983" y2="1.724" layer="21"/>
<rectangle x1="0.0057" y1="1.724" x2="0.7982" y2="1.7278" layer="21"/>
<rectangle x1="0.9087" y1="1.724" x2="1.5983" y2="1.7278" layer="21"/>
<rectangle x1="0.0057" y1="1.7278" x2="0.7944" y2="1.7316" layer="21"/>
<rectangle x1="0.9087" y1="1.7278" x2="1.5983" y2="1.7316" layer="21"/>
<rectangle x1="0.0095" y1="1.7316" x2="0.7868" y2="1.7355" layer="21"/>
<rectangle x1="0.9087" y1="1.7316" x2="1.5983" y2="1.7355" layer="21"/>
<rectangle x1="0.0095" y1="1.7355" x2="0.7791" y2="1.7393" layer="21"/>
<rectangle x1="0.9087" y1="1.7355" x2="1.5983" y2="1.7393" layer="21"/>
<rectangle x1="0.0095" y1="1.7393" x2="0.7715" y2="1.7431" layer="21"/>
<rectangle x1="0.9087" y1="1.7393" x2="1.5983" y2="1.7431" layer="21"/>
<rectangle x1="0.0133" y1="1.7431" x2="0.7639" y2="1.7469" layer="21"/>
<rectangle x1="0.9087" y1="1.7431" x2="1.5983" y2="1.7469" layer="21"/>
<rectangle x1="0.0171" y1="1.7469" x2="0.7525" y2="1.7507" layer="21"/>
<rectangle x1="0.9087" y1="1.7469" x2="1.5983" y2="1.7507" layer="21"/>
<rectangle x1="0.0171" y1="1.7507" x2="0.7449" y2="1.7545" layer="21"/>
<rectangle x1="0.9087" y1="1.7507" x2="1.5983" y2="1.7545" layer="21"/>
<rectangle x1="0.021" y1="1.7545" x2="0.7334" y2="1.7583" layer="21"/>
<rectangle x1="0.9087" y1="1.7545" x2="1.5983" y2="1.7583" layer="21"/>
<rectangle x1="0.0248" y1="1.7583" x2="0.722" y2="1.7621" layer="21"/>
<rectangle x1="0.9087" y1="1.7583" x2="1.5983" y2="1.7621" layer="21"/>
<rectangle x1="0.0248" y1="1.7621" x2="0.7106" y2="1.7659" layer="21"/>
<rectangle x1="0.9087" y1="1.7621" x2="1.5983" y2="1.7659" layer="21"/>
<rectangle x1="0.0286" y1="1.7659" x2="0.6991" y2="1.7697" layer="21"/>
<rectangle x1="0.9087" y1="1.7659" x2="1.5983" y2="1.7697" layer="21"/>
<rectangle x1="0.0362" y1="1.7697" x2="0.6839" y2="1.7736" layer="21"/>
<rectangle x1="0.9087" y1="1.7697" x2="1.5983" y2="1.7736" layer="21"/>
<rectangle x1="0.04" y1="1.7736" x2="0.6687" y2="1.7774" layer="21"/>
<rectangle x1="0.9087" y1="1.7736" x2="1.5983" y2="1.7774" layer="21"/>
<rectangle x1="0.0476" y1="1.7774" x2="0.6534" y2="1.7812" layer="21"/>
<rectangle x1="0.9087" y1="1.7774" x2="1.5983" y2="1.7812" layer="21"/>
<rectangle x1="0.0552" y1="1.7812" x2="0.6306" y2="1.785" layer="21"/>
<rectangle x1="0.9125" y1="1.7812" x2="1.5983" y2="1.785" layer="21"/>
<rectangle x1="0.0667" y1="1.785" x2="0.6039" y2="1.7888" layer="21"/>
<rectangle x1="0.9125" y1="1.785" x2="1.5983" y2="1.7888" layer="21"/>
<rectangle x1="0.0972" y1="1.7888" x2="0.3981" y2="1.7926" layer="21"/>
<rectangle x1="0.9125" y1="1.7888" x2="1.5983" y2="1.7926" layer="21"/>
<rectangle x1="0.9125" y1="1.7926" x2="1.5983" y2="1.7964" layer="21"/>
<rectangle x1="0.9125" y1="1.7964" x2="1.5983" y2="1.8002" layer="21"/>
<rectangle x1="0.9125" y1="1.8002" x2="1.5983" y2="1.804" layer="21"/>
<rectangle x1="0.9125" y1="1.804" x2="1.5983" y2="1.8078" layer="21"/>
<rectangle x1="0.9163" y1="1.8078" x2="1.5983" y2="1.8117" layer="21"/>
<rectangle x1="0.9163" y1="1.8117" x2="1.5983" y2="1.8155" layer="21"/>
<rectangle x1="0.9163" y1="1.8155" x2="1.5983" y2="1.8193" layer="21"/>
<rectangle x1="0.9163" y1="1.8193" x2="1.5983" y2="1.8231" layer="21"/>
<rectangle x1="0.9163" y1="1.8231" x2="1.5945" y2="1.8269" layer="21"/>
<rectangle x1="0.9201" y1="1.8269" x2="1.5945" y2="1.8307" layer="21"/>
<rectangle x1="0.9201" y1="1.8307" x2="1.5945" y2="1.8345" layer="21"/>
<rectangle x1="0.9201" y1="1.8345" x2="1.5945" y2="1.8383" layer="21"/>
<rectangle x1="0.9201" y1="1.8383" x2="1.5945" y2="1.8421" layer="21"/>
<rectangle x1="0.9239" y1="1.8421" x2="1.5945" y2="1.8459" layer="21"/>
<rectangle x1="0.9239" y1="1.8459" x2="1.5945" y2="1.8498" layer="21"/>
<rectangle x1="0.9239" y1="1.8498" x2="1.5945" y2="1.8536" layer="21"/>
<rectangle x1="0.9239" y1="1.8536" x2="1.5907" y2="1.8574" layer="21"/>
<rectangle x1="0.9277" y1="1.8574" x2="1.5907" y2="1.8612" layer="21"/>
<rectangle x1="0.9277" y1="1.8612" x2="1.5907" y2="1.865" layer="21"/>
<rectangle x1="0.9277" y1="1.865" x2="1.5907" y2="1.8688" layer="21"/>
<rectangle x1="0.9315" y1="1.8688" x2="1.5907" y2="1.8726" layer="21"/>
<rectangle x1="0.9315" y1="1.8726" x2="1.5869" y2="1.8764" layer="21"/>
<rectangle x1="0.9315" y1="1.8764" x2="1.5869" y2="1.8802" layer="21"/>
<rectangle x1="0.9354" y1="1.8802" x2="1.5869" y2="1.884" layer="21"/>
<rectangle x1="0.9354" y1="1.884" x2="1.5869" y2="1.8879" layer="21"/>
<rectangle x1="0.9354" y1="1.8879" x2="1.5869" y2="1.8917" layer="21"/>
<rectangle x1="0.9392" y1="1.8917" x2="1.5831" y2="1.8955" layer="21"/>
<rectangle x1="0.9392" y1="1.8955" x2="1.5831" y2="1.8993" layer="21"/>
<rectangle x1="0.9392" y1="1.8993" x2="1.5831" y2="1.9031" layer="21"/>
<rectangle x1="0.943" y1="1.9031" x2="1.5831" y2="1.9069" layer="21"/>
<rectangle x1="0.943" y1="1.9069" x2="1.5792" y2="1.9107" layer="21"/>
<rectangle x1="0.9468" y1="1.9107" x2="1.5792" y2="1.9145" layer="21"/>
<rectangle x1="0.9468" y1="1.9145" x2="1.5792" y2="1.9183" layer="21"/>
<rectangle x1="0.9468" y1="1.9183" x2="1.5792" y2="1.9221" layer="21"/>
<rectangle x1="0.9506" y1="1.9221" x2="1.5754" y2="1.926" layer="21"/>
<rectangle x1="0.9506" y1="1.926" x2="1.5754" y2="1.9298" layer="21"/>
<rectangle x1="0.9544" y1="1.9298" x2="1.5754" y2="1.9336" layer="21"/>
<rectangle x1="0.9544" y1="1.9336" x2="1.5716" y2="1.9374" layer="21"/>
<rectangle x1="0.9582" y1="1.9374" x2="1.5716" y2="1.9412" layer="21"/>
<rectangle x1="0.9582" y1="1.9412" x2="1.5716" y2="1.945" layer="21"/>
<rectangle x1="0.962" y1="1.945" x2="1.5678" y2="1.9488" layer="21"/>
<rectangle x1="0.962" y1="1.9488" x2="1.5678" y2="1.9526" layer="21"/>
<rectangle x1="0.9658" y1="1.9526" x2="1.5678" y2="1.9564" layer="21"/>
<rectangle x1="0.9658" y1="1.9564" x2="1.564" y2="1.9602" layer="21"/>
<rectangle x1="0.9696" y1="1.9602" x2="1.564" y2="1.9641" layer="21"/>
<rectangle x1="0.9696" y1="1.9641" x2="1.564" y2="1.9679" layer="21"/>
<rectangle x1="0.9735" y1="1.9679" x2="1.5602" y2="1.9717" layer="21"/>
<rectangle x1="0.9735" y1="1.9717" x2="1.5602" y2="1.9755" layer="21"/>
<rectangle x1="0.9773" y1="1.9755" x2="1.5602" y2="1.9793" layer="21"/>
<rectangle x1="0.9773" y1="1.9793" x2="1.5602" y2="1.9831" layer="21"/>
<rectangle x1="0.9811" y1="1.9831" x2="1.5564" y2="1.9869" layer="21"/>
<rectangle x1="0.9849" y1="1.9869" x2="1.5564" y2="1.9907" layer="21"/>
<rectangle x1="0.9849" y1="1.9907" x2="1.5564" y2="1.9945" layer="21"/>
<rectangle x1="0.9887" y1="1.9945" x2="1.5526" y2="1.9983" layer="21"/>
<rectangle x1="0.9887" y1="1.9983" x2="1.5526" y2="2.0022" layer="21"/>
<rectangle x1="0.9925" y1="2.0022" x2="1.5526" y2="2.006" layer="21"/>
<rectangle x1="0.9963" y1="2.006" x2="1.5488" y2="2.0098" layer="21"/>
<rectangle x1="0.9963" y1="2.0098" x2="1.5488" y2="2.0136" layer="21"/>
<rectangle x1="1.0001" y1="2.0136" x2="1.5488" y2="2.0174" layer="21"/>
<rectangle x1="1.0039" y1="2.0174" x2="1.545" y2="2.0212" layer="21"/>
<rectangle x1="1.0039" y1="2.0212" x2="1.545" y2="2.025" layer="21"/>
<rectangle x1="1.0077" y1="2.025" x2="1.545" y2="2.0288" layer="21"/>
<rectangle x1="1.0116" y1="2.0288" x2="1.5411" y2="2.0326" layer="21"/>
<rectangle x1="1.0154" y1="2.0326" x2="1.5411" y2="2.0364" layer="21"/>
<rectangle x1="1.0154" y1="2.0364" x2="1.5411" y2="2.0403" layer="21"/>
<rectangle x1="1.0192" y1="2.0403" x2="1.5373" y2="2.0441" layer="21"/>
<rectangle x1="1.023" y1="2.0441" x2="1.5373" y2="2.0479" layer="21"/>
<rectangle x1="1.0268" y1="2.0479" x2="1.5373" y2="2.0517" layer="21"/>
<rectangle x1="1.0268" y1="2.0517" x2="1.5335" y2="2.0555" layer="21"/>
<rectangle x1="1.0306" y1="2.0555" x2="1.5335" y2="2.0593" layer="21"/>
<rectangle x1="1.0344" y1="2.0593" x2="1.5335" y2="2.0631" layer="21"/>
<rectangle x1="1.0344" y1="2.0631" x2="1.5297" y2="2.0669" layer="21"/>
<rectangle x1="1.0382" y1="2.0669" x2="1.5297" y2="2.0707" layer="21"/>
<rectangle x1="1.042" y1="2.0707" x2="1.5297" y2="2.0745" layer="21"/>
<rectangle x1="1.0458" y1="2.0745" x2="1.5259" y2="2.0784" layer="21"/>
<rectangle x1="1.0458" y1="2.0784" x2="1.5259" y2="2.0822" layer="21"/>
<rectangle x1="1.0497" y1="2.0822" x2="1.5259" y2="2.086" layer="21"/>
<rectangle x1="1.0535" y1="2.086" x2="1.5259" y2="2.0898" layer="21"/>
<rectangle x1="1.0535" y1="2.0898" x2="1.5221" y2="2.0936" layer="21"/>
<rectangle x1="1.0573" y1="2.0936" x2="1.5221" y2="2.0974" layer="21"/>
<rectangle x1="1.0611" y1="2.0974" x2="1.5221" y2="2.1012" layer="21"/>
<rectangle x1="1.0649" y1="2.1012" x2="1.5183" y2="2.105" layer="21"/>
<rectangle x1="1.0649" y1="2.105" x2="1.5183" y2="2.1088" layer="21"/>
<rectangle x1="1.0687" y1="2.1088" x2="1.5183" y2="2.1126" layer="21"/>
<rectangle x1="1.0725" y1="2.1126" x2="1.5145" y2="2.1165" layer="21"/>
<rectangle x1="1.0725" y1="2.1165" x2="1.5145" y2="2.1203" layer="21"/>
<rectangle x1="1.0763" y1="2.1203" x2="1.5145" y2="2.1241" layer="21"/>
<rectangle x1="1.0801" y1="2.1241" x2="1.5107" y2="2.1279" layer="21"/>
<rectangle x1="1.0839" y1="2.1279" x2="1.5107" y2="2.1317" layer="21"/>
<rectangle x1="1.0839" y1="2.1317" x2="1.5107" y2="2.1355" layer="21"/>
<rectangle x1="1.0878" y1="2.1355" x2="1.5069" y2="2.1393" layer="21"/>
<rectangle x1="1.0916" y1="2.1393" x2="1.5069" y2="2.1431" layer="21"/>
<rectangle x1="1.0916" y1="2.1431" x2="1.5069" y2="2.1469" layer="21"/>
<rectangle x1="1.0954" y1="2.1469" x2="1.503" y2="2.1507" layer="21"/>
<rectangle x1="1.0992" y1="2.1507" x2="1.503" y2="2.1546" layer="21"/>
<rectangle x1="1.103" y1="2.1546" x2="1.503" y2="2.1584" layer="21"/>
<rectangle x1="1.103" y1="2.1584" x2="1.4992" y2="2.1622" layer="21"/>
<rectangle x1="1.1068" y1="2.1622" x2="1.4992" y2="2.166" layer="21"/>
<rectangle x1="1.1106" y1="2.166" x2="1.4992" y2="2.1698" layer="21"/>
<rectangle x1="1.1144" y1="2.1698" x2="1.4954" y2="2.1736" layer="21"/>
<rectangle x1="1.1144" y1="2.1736" x2="1.4954" y2="2.1774" layer="21"/>
<rectangle x1="1.1182" y1="2.1774" x2="1.4954" y2="2.1812" layer="21"/>
<rectangle x1="1.122" y1="2.1812" x2="1.4954" y2="2.185" layer="21"/>
<rectangle x1="1.122" y1="2.185" x2="1.4916" y2="2.1888" layer="21"/>
<rectangle x1="1.1259" y1="2.1888" x2="1.4916" y2="2.1927" layer="21"/>
<rectangle x1="1.1297" y1="2.1927" x2="1.4916" y2="2.1965" layer="21"/>
<rectangle x1="1.1335" y1="2.1965" x2="1.4878" y2="2.2003" layer="21"/>
<rectangle x1="1.1335" y1="2.2003" x2="1.4878" y2="2.2041" layer="21"/>
<rectangle x1="1.1373" y1="2.2041" x2="1.4878" y2="2.2079" layer="21"/>
<rectangle x1="1.1411" y1="2.2079" x2="1.484" y2="2.2117" layer="21"/>
<rectangle x1="1.1411" y1="2.2117" x2="1.484" y2="2.2155" layer="21"/>
<rectangle x1="1.1449" y1="2.2155" x2="1.484" y2="2.2193" layer="21"/>
<rectangle x1="1.1487" y1="2.2193" x2="1.4802" y2="2.2231" layer="21"/>
<rectangle x1="1.1525" y1="2.2231" x2="1.4802" y2="2.2269" layer="21"/>
<rectangle x1="1.1525" y1="2.2269" x2="1.4802" y2="2.2308" layer="21"/>
<rectangle x1="1.1563" y1="2.2308" x2="1.4764" y2="2.2346" layer="21"/>
<rectangle x1="1.1601" y1="2.2346" x2="1.4764" y2="2.2384" layer="21"/>
<rectangle x1="1.1601" y1="2.2384" x2="1.4764" y2="2.2422" layer="21"/>
<rectangle x1="1.164" y1="2.2422" x2="1.4726" y2="2.246" layer="21"/>
<rectangle x1="1.1678" y1="2.246" x2="1.4726" y2="2.2498" layer="21"/>
<rectangle x1="1.1716" y1="2.2498" x2="1.4726" y2="2.2536" layer="21"/>
<rectangle x1="1.1716" y1="2.2536" x2="1.4688" y2="2.2574" layer="21"/>
<rectangle x1="1.1754" y1="2.2574" x2="1.4688" y2="2.2612" layer="21"/>
<rectangle x1="1.1792" y1="2.2612" x2="1.4688" y2="2.265" layer="21"/>
<rectangle x1="1.1792" y1="2.265" x2="1.4649" y2="2.2689" layer="21"/>
<rectangle x1="1.183" y1="2.2689" x2="1.4649" y2="2.2727" layer="21"/>
<rectangle x1="1.1868" y1="2.2727" x2="1.4649" y2="2.2765" layer="21"/>
<rectangle x1="1.1906" y1="2.2765" x2="1.4611" y2="2.2803" layer="21"/>
<rectangle x1="1.1906" y1="2.2803" x2="1.4611" y2="2.2841" layer="21"/>
<rectangle x1="1.1944" y1="2.2841" x2="1.4611" y2="2.2879" layer="21"/>
<rectangle x1="1.1982" y1="2.2879" x2="1.4611" y2="2.2917" layer="21"/>
<rectangle x1="1.1982" y1="2.2917" x2="1.4573" y2="2.2955" layer="21"/>
<rectangle x1="1.2021" y1="2.2955" x2="1.4573" y2="2.2993" layer="21"/>
<rectangle x1="1.2059" y1="2.2993" x2="1.4573" y2="2.3031" layer="21"/>
<rectangle x1="1.2097" y1="2.3031" x2="1.4535" y2="2.307" layer="21"/>
<rectangle x1="1.2097" y1="2.307" x2="1.4535" y2="2.3108" layer="21"/>
<rectangle x1="1.2135" y1="2.3108" x2="1.4535" y2="2.3146" layer="21"/>
<rectangle x1="1.2173" y1="2.3146" x2="1.4497" y2="2.3184" layer="21"/>
<rectangle x1="1.2211" y1="2.3184" x2="1.4497" y2="2.3222" layer="21"/>
<rectangle x1="1.2211" y1="2.3222" x2="1.4497" y2="2.326" layer="21"/>
<rectangle x1="1.2249" y1="2.326" x2="1.4459" y2="2.3298" layer="21"/>
<rectangle x1="1.2287" y1="2.3298" x2="1.4459" y2="2.3336" layer="21"/>
<rectangle x1="1.2287" y1="2.3336" x2="1.4459" y2="2.3374" layer="21"/>
<rectangle x1="1.2325" y1="2.3374" x2="1.4421" y2="2.3412" layer="21"/>
<rectangle x1="1.2363" y1="2.3412" x2="1.4421" y2="2.3451" layer="21"/>
<rectangle x1="1.2402" y1="2.3451" x2="1.4421" y2="2.3489" layer="21"/>
<rectangle x1="1.2402" y1="2.3489" x2="1.4383" y2="2.3527" layer="21"/>
<rectangle x1="1.244" y1="2.3527" x2="1.4383" y2="2.3565" layer="21"/>
<rectangle x1="1.2478" y1="2.3565" x2="1.4383" y2="2.3603" layer="21"/>
<rectangle x1="1.2478" y1="2.3603" x2="1.4345" y2="2.3641" layer="21"/>
<rectangle x1="1.2516" y1="2.3641" x2="1.4345" y2="2.3679" layer="21"/>
<rectangle x1="1.2554" y1="2.3679" x2="1.4307" y2="2.3717" layer="21"/>
<rectangle x1="1.2592" y1="2.3717" x2="1.4307" y2="2.3755" layer="21"/>
<rectangle x1="1.2592" y1="2.3755" x2="1.4307" y2="2.3793" layer="21"/>
<rectangle x1="1.263" y1="2.3793" x2="1.4268" y2="2.3832" layer="21"/>
<rectangle x1="1.2668" y1="2.3832" x2="1.4268" y2="2.387" layer="21"/>
<rectangle x1="1.2706" y1="2.387" x2="1.423" y2="2.3908" layer="21"/>
<rectangle x1="1.2744" y1="2.3908" x2="1.4192" y2="2.3946" layer="21"/>
<rectangle x1="1.2744" y1="2.3946" x2="1.4192" y2="2.3984" layer="21"/>
<rectangle x1="1.2783" y1="2.3984" x2="1.4154" y2="2.4022" layer="21"/>
<rectangle x1="1.2821" y1="2.4022" x2="1.4116" y2="2.406" layer="21"/>
<rectangle x1="1.2859" y1="2.406" x2="1.4078" y2="2.4098" layer="21"/>
<rectangle x1="1.2897" y1="2.4098" x2="1.404" y2="2.4136" layer="21"/>
<rectangle x1="1.2973" y1="2.4136" x2="1.4002" y2="2.4174" layer="21"/>
<rectangle x1="1.3011" y1="2.4174" x2="1.3926" y2="2.4213" layer="21"/>
<rectangle x1="1.3087" y1="2.4213" x2="1.3849" y2="2.4251" layer="21"/>
<rectangle x1="1.3164" y1="2.4251" x2="1.3773" y2="2.4289" layer="21"/>
<rectangle x1="1.3278" y1="2.4289" x2="1.3583" y2="2.4327" layer="21"/>
</package>
<package name="SOLDERJUMPER_ARROW_NOPASTE">
<wire x1="1.397" y1="-1.016" x2="-1.397" y2="-1.016" width="0.2032" layer="21"/>
<wire x1="1.397" y1="1.016" x2="1.651" y2="0.762" width="0.2032" layer="21" curve="-90"/>
<wire x1="-1.651" y1="0.762" x2="-1.397" y2="1.016" width="0.2032" layer="21" curve="-90"/>
<wire x1="-1.651" y1="-0.762" x2="-1.397" y2="-1.016" width="0.2032" layer="21" curve="90"/>
<wire x1="1.397" y1="-1.016" x2="1.651" y2="-0.762" width="0.2032" layer="21" curve="90"/>
<wire x1="1.651" y1="-0.762" x2="1.651" y2="0.762" width="0.2032" layer="21"/>
<wire x1="-1.651" y1="-0.762" x2="-1.651" y2="0.762" width="0.2032" layer="21"/>
<wire x1="-1.397" y1="1.016" x2="1.397" y2="1.016" width="0.2032" layer="21"/>
<smd name="1" x="-1.016" y="0" dx="0.762" dy="1.524" layer="1" roundness="50" stop="no" cream="no"/>
<smd name="2" x="1.016" y="0" dx="0.762" dy="1.524" layer="1" roundness="50" stop="no" cream="no"/>
<text x="-1.778" y="1.27" size="0.8128" layer="25" ratio="18">&gt;NAME</text>
<text x="-1.651" y="-1.651" size="0.4064" layer="27" ratio="10">&gt;VALUE</text>
<polygon width="0.2032" layer="1">
<vertex x="-1.293" y="0.6866"/>
<vertex x="-0.6715" y="0.6866"/>
<vertex x="-0.0349" y="0"/>
<vertex x="-0.7215" y="-0.6866"/>
<vertex x="-1.293" y="-0.6866"/>
</polygon>
<polygon width="0.2032" layer="1">
<vertex x="-0.077" y="0.6866"/>
<vertex x="0.5842" y="0"/>
<vertex x="-0.077" y="-0.6866"/>
<vertex x="1.293" y="-0.6866"/>
<vertex x="1.293" y="0.6866"/>
</polygon>
<rectangle x1="-1.4605" y1="-0.8255" x2="1.4605" y2="0.8255" layer="29"/>
</package>
<package name="SOD-323_MINI">
<smd name="C" x="-1.07" y="0" dx="0.9" dy="0.8" layer="1"/>
<smd name="A" x="1.07" y="0" dx="0.9" dy="0.8" layer="1"/>
<text x="-1.1" y="1" size="0.8128" layer="25" ratio="18">&gt;NAME</text>
<text x="-1.1" y="-1.792" size="0.4064" layer="27" ratio="10">&gt;VALUE</text>
<wire x1="-1" y1="0.7" x2="1" y2="0.7" width="0.2032" layer="21"/>
<wire x1="1" y1="-0.7" x2="-1" y2="-0.7" width="0.2032" layer="21"/>
<wire x1="-0.25" y1="0" x2="0.35" y2="0.4" width="0.2032" layer="21"/>
<wire x1="0.35" y1="0.4" x2="0.35" y2="-0.4" width="0.2032" layer="21"/>
<wire x1="0.35" y1="-0.4" x2="-0.25" y2="0" width="0.2032" layer="21"/>
<rectangle x1="-0.45" y1="-0.5" x2="-0.25" y2="0.5" layer="21"/>
<polygon width="0.2032" layer="21">
<vertex x="-0.1" y="0"/>
<vertex x="0.2" y="0.2"/>
<vertex x="0.2" y="-0.2"/>
</polygon>
</package>
<package name="ADAFRUIT_3.5MM">
<rectangle x1="2.6384" y1="0.0159" x2="2.6892" y2="0.0222" layer="21"/>
<rectangle x1="2.6257" y1="0.0222" x2="2.7083" y2="0.0286" layer="21"/>
<rectangle x1="2.6067" y1="0.0286" x2="2.7273" y2="0.0349" layer="21"/>
<rectangle x1="2.594" y1="0.0349" x2="2.7337" y2="0.0413" layer="21"/>
<rectangle x1="2.5876" y1="0.0413" x2="2.7464" y2="0.0476" layer="21"/>
<rectangle x1="2.5749" y1="0.0476" x2="2.7527" y2="0.054" layer="21"/>
<rectangle x1="2.5686" y1="0.054" x2="2.7654" y2="0.0603" layer="21"/>
<rectangle x1="2.5559" y1="0.0603" x2="2.7718" y2="0.0667" layer="21"/>
<rectangle x1="2.5495" y1="0.0667" x2="2.7781" y2="0.073" layer="21"/>
<rectangle x1="2.5368" y1="0.073" x2="2.7781" y2="0.0794" layer="21"/>
<rectangle x1="2.5305" y1="0.0794" x2="2.7845" y2="0.0857" layer="21"/>
<rectangle x1="2.5178" y1="0.0857" x2="2.7845" y2="0.0921" layer="21"/>
<rectangle x1="2.5114" y1="0.0921" x2="2.7908" y2="0.0984" layer="21"/>
<rectangle x1="2.5051" y1="0.0984" x2="2.7908" y2="0.1048" layer="21"/>
<rectangle x1="2.4924" y1="0.1048" x2="2.7908" y2="0.1111" layer="21"/>
<rectangle x1="2.486" y1="0.1111" x2="2.7972" y2="0.1175" layer="21"/>
<rectangle x1="2.4797" y1="0.1175" x2="2.7972" y2="0.1238" layer="21"/>
<rectangle x1="2.467" y1="0.1238" x2="2.7972" y2="0.1302" layer="21"/>
<rectangle x1="2.4606" y1="0.1302" x2="2.7972" y2="0.1365" layer="21"/>
<rectangle x1="2.4543" y1="0.1365" x2="2.8035" y2="0.1429" layer="21"/>
<rectangle x1="2.4416" y1="0.1429" x2="2.8035" y2="0.1492" layer="21"/>
<rectangle x1="2.4352" y1="0.1492" x2="2.8035" y2="0.1556" layer="21"/>
<rectangle x1="2.4225" y1="0.1556" x2="2.8035" y2="0.1619" layer="21"/>
<rectangle x1="2.4162" y1="0.1619" x2="2.8035" y2="0.1683" layer="21"/>
<rectangle x1="2.4098" y1="0.1683" x2="2.8035" y2="0.1746" layer="21"/>
<rectangle x1="2.3971" y1="0.1746" x2="2.8035" y2="0.181" layer="21"/>
<rectangle x1="2.3908" y1="0.181" x2="2.8035" y2="0.1873" layer="21"/>
<rectangle x1="2.3844" y1="0.1873" x2="2.8035" y2="0.1937" layer="21"/>
<rectangle x1="2.3717" y1="0.1937" x2="2.8035" y2="0.2" layer="21"/>
<rectangle x1="2.3654" y1="0.2" x2="2.8035" y2="0.2064" layer="21"/>
<rectangle x1="2.3527" y1="0.2064" x2="2.8035" y2="0.2127" layer="21"/>
<rectangle x1="2.3463" y1="0.2127" x2="2.8035" y2="0.2191" layer="21"/>
<rectangle x1="2.34" y1="0.2191" x2="2.8035" y2="0.2254" layer="21"/>
<rectangle x1="2.3273" y1="0.2254" x2="2.8035" y2="0.2318" layer="21"/>
<rectangle x1="2.3209" y1="0.2318" x2="2.8035" y2="0.2381" layer="21"/>
<rectangle x1="2.3146" y1="0.2381" x2="2.8035" y2="0.2445" layer="21"/>
<rectangle x1="2.3019" y1="0.2445" x2="2.8035" y2="0.2508" layer="21"/>
<rectangle x1="2.2955" y1="0.2508" x2="2.8035" y2="0.2572" layer="21"/>
<rectangle x1="2.2892" y1="0.2572" x2="2.8035" y2="0.2635" layer="21"/>
<rectangle x1="2.2765" y1="0.2635" x2="2.8035" y2="0.2699" layer="21"/>
<rectangle x1="2.2701" y1="0.2699" x2="2.8035" y2="0.2762" layer="21"/>
<rectangle x1="2.2574" y1="0.2762" x2="2.8035" y2="0.2826" layer="21"/>
<rectangle x1="2.2511" y1="0.2826" x2="2.8035" y2="0.2889" layer="21"/>
<rectangle x1="2.2447" y1="0.2889" x2="2.8035" y2="0.2953" layer="21"/>
<rectangle x1="2.232" y1="0.2953" x2="2.8035" y2="0.3016" layer="21"/>
<rectangle x1="2.2257" y1="0.3016" x2="2.8035" y2="0.308" layer="21"/>
<rectangle x1="2.2193" y1="0.308" x2="2.8035" y2="0.3143" layer="21"/>
<rectangle x1="2.2066" y1="0.3143" x2="2.8035" y2="0.3207" layer="21"/>
<rectangle x1="2.2003" y1="0.3207" x2="2.8035" y2="0.327" layer="21"/>
<rectangle x1="2.1939" y1="0.327" x2="2.8035" y2="0.3334" layer="21"/>
<rectangle x1="2.1812" y1="0.3334" x2="2.8035" y2="0.3397" layer="21"/>
<rectangle x1="2.1749" y1="0.3397" x2="2.8035" y2="0.3461" layer="21"/>
<rectangle x1="2.1622" y1="0.3461" x2="2.8035" y2="0.3524" layer="21"/>
<rectangle x1="2.1558" y1="0.3524" x2="2.8035" y2="0.3588" layer="21"/>
<rectangle x1="0.4667" y1="0.3588" x2="0.5302" y2="0.3651" layer="21"/>
<rectangle x1="2.1495" y1="0.3588" x2="2.8035" y2="0.3651" layer="21"/>
<rectangle x1="0.4477" y1="0.3651" x2="0.5493" y2="0.3715" layer="21"/>
<rectangle x1="2.1368" y1="0.3651" x2="2.8035" y2="0.3715" layer="21"/>
<rectangle x1="0.435" y1="0.3715" x2="0.5747" y2="0.3778" layer="21"/>
<rectangle x1="2.1304" y1="0.3715" x2="2.8035" y2="0.3778" layer="21"/>
<rectangle x1="0.4286" y1="0.3778" x2="0.5937" y2="0.3842" layer="21"/>
<rectangle x1="2.1241" y1="0.3778" x2="2.8035" y2="0.3842" layer="21"/>
<rectangle x1="0.4159" y1="0.3842" x2="0.6128" y2="0.3905" layer="21"/>
<rectangle x1="2.1114" y1="0.3842" x2="2.8035" y2="0.3905" layer="21"/>
<rectangle x1="0.4096" y1="0.3905" x2="0.6318" y2="0.3969" layer="21"/>
<rectangle x1="2.105" y1="0.3905" x2="2.8035" y2="0.3969" layer="21"/>
<rectangle x1="0.4032" y1="0.3969" x2="0.6509" y2="0.4032" layer="21"/>
<rectangle x1="2.0987" y1="0.3969" x2="2.8035" y2="0.4032" layer="21"/>
<rectangle x1="0.3969" y1="0.4032" x2="0.6763" y2="0.4096" layer="21"/>
<rectangle x1="2.086" y1="0.4032" x2="2.8035" y2="0.4096" layer="21"/>
<rectangle x1="0.3905" y1="0.4096" x2="0.689" y2="0.4159" layer="21"/>
<rectangle x1="2.0796" y1="0.4096" x2="2.8035" y2="0.4159" layer="21"/>
<rectangle x1="0.3842" y1="0.4159" x2="0.7144" y2="0.4223" layer="21"/>
<rectangle x1="2.0669" y1="0.4159" x2="2.8035" y2="0.4223" layer="21"/>
<rectangle x1="0.3842" y1="0.4223" x2="0.7271" y2="0.4286" layer="21"/>
<rectangle x1="2.0606" y1="0.4223" x2="2.8035" y2="0.4286" layer="21"/>
<rectangle x1="0.3778" y1="0.4286" x2="0.7525" y2="0.435" layer="21"/>
<rectangle x1="2.0542" y1="0.4286" x2="2.8035" y2="0.435" layer="21"/>
<rectangle x1="0.3778" y1="0.435" x2="0.7715" y2="0.4413" layer="21"/>
<rectangle x1="2.0415" y1="0.435" x2="2.8035" y2="0.4413" layer="21"/>
<rectangle x1="0.3715" y1="0.4413" x2="0.7842" y2="0.4477" layer="21"/>
<rectangle x1="2.0352" y1="0.4413" x2="2.8035" y2="0.4477" layer="21"/>
<rectangle x1="0.3715" y1="0.4477" x2="0.8096" y2="0.454" layer="21"/>
<rectangle x1="2.0288" y1="0.4477" x2="2.8035" y2="0.454" layer="21"/>
<rectangle x1="0.3651" y1="0.454" x2="0.8287" y2="0.4604" layer="21"/>
<rectangle x1="2.0161" y1="0.454" x2="2.8035" y2="0.4604" layer="21"/>
<rectangle x1="0.3651" y1="0.4604" x2="0.8477" y2="0.4667" layer="21"/>
<rectangle x1="2.0098" y1="0.4604" x2="2.8035" y2="0.4667" layer="21"/>
<rectangle x1="0.3651" y1="0.4667" x2="0.8604" y2="0.4731" layer="21"/>
<rectangle x1="2.0034" y1="0.4667" x2="2.8035" y2="0.4731" layer="21"/>
<rectangle x1="0.3651" y1="0.4731" x2="0.8858" y2="0.4794" layer="21"/>
<rectangle x1="1.9907" y1="0.4731" x2="2.8035" y2="0.4794" layer="21"/>
<rectangle x1="0.3651" y1="0.4794" x2="0.8985" y2="0.4858" layer="21"/>
<rectangle x1="1.9844" y1="0.4794" x2="2.8035" y2="0.4858" layer="21"/>
<rectangle x1="0.3651" y1="0.4858" x2="0.9239" y2="0.4921" layer="21"/>
<rectangle x1="1.978" y1="0.4858" x2="2.8035" y2="0.4921" layer="21"/>
<rectangle x1="0.3651" y1="0.4921" x2="0.943" y2="0.4985" layer="21"/>
<rectangle x1="1.9717" y1="0.4921" x2="2.8035" y2="0.4985" layer="21"/>
<rectangle x1="0.3651" y1="0.4985" x2="0.962" y2="0.5048" layer="21"/>
<rectangle x1="1.959" y1="0.4985" x2="2.8035" y2="0.5048" layer="21"/>
<rectangle x1="0.3651" y1="0.5048" x2="0.9811" y2="0.5112" layer="21"/>
<rectangle x1="1.9526" y1="0.5048" x2="2.8035" y2="0.5112" layer="21"/>
<rectangle x1="0.3651" y1="0.5112" x2="1.0001" y2="0.5175" layer="21"/>
<rectangle x1="1.9463" y1="0.5112" x2="2.8035" y2="0.5175" layer="21"/>
<rectangle x1="0.3651" y1="0.5175" x2="1.0192" y2="0.5239" layer="21"/>
<rectangle x1="1.9399" y1="0.5175" x2="2.8035" y2="0.5239" layer="21"/>
<rectangle x1="0.3715" y1="0.5239" x2="1.0382" y2="0.5302" layer="21"/>
<rectangle x1="1.9336" y1="0.5239" x2="2.8035" y2="0.5302" layer="21"/>
<rectangle x1="0.3715" y1="0.5302" x2="1.0573" y2="0.5366" layer="21"/>
<rectangle x1="1.9272" y1="0.5302" x2="2.8035" y2="0.5366" layer="21"/>
<rectangle x1="0.3715" y1="0.5366" x2="1.0763" y2="0.5429" layer="21"/>
<rectangle x1="1.9209" y1="0.5366" x2="2.8035" y2="0.5429" layer="21"/>
<rectangle x1="0.3715" y1="0.5429" x2="1.0954" y2="0.5493" layer="21"/>
<rectangle x1="1.9145" y1="0.5429" x2="2.8035" y2="0.5493" layer="21"/>
<rectangle x1="0.3715" y1="0.5493" x2="1.1144" y2="0.5556" layer="21"/>
<rectangle x1="1.9082" y1="0.5493" x2="2.8035" y2="0.5556" layer="21"/>
<rectangle x1="0.3778" y1="0.5556" x2="1.1335" y2="0.562" layer="21"/>
<rectangle x1="1.9018" y1="0.5556" x2="2.8035" y2="0.562" layer="21"/>
<rectangle x1="0.3778" y1="0.562" x2="1.1525" y2="0.5683" layer="21"/>
<rectangle x1="1.8955" y1="0.562" x2="2.8035" y2="0.5683" layer="21"/>
<rectangle x1="0.3778" y1="0.5683" x2="1.1716" y2="0.5747" layer="21"/>
<rectangle x1="1.8891" y1="0.5683" x2="2.8035" y2="0.5747" layer="21"/>
<rectangle x1="0.3842" y1="0.5747" x2="1.1906" y2="0.581" layer="21"/>
<rectangle x1="1.8828" y1="0.5747" x2="2.8035" y2="0.581" layer="21"/>
<rectangle x1="0.3842" y1="0.581" x2="1.2097" y2="0.5874" layer="21"/>
<rectangle x1="1.8764" y1="0.581" x2="2.8035" y2="0.5874" layer="21"/>
<rectangle x1="0.3842" y1="0.5874" x2="1.2287" y2="0.5937" layer="21"/>
<rectangle x1="1.8701" y1="0.5874" x2="2.8035" y2="0.5937" layer="21"/>
<rectangle x1="0.3905" y1="0.5937" x2="1.2478" y2="0.6001" layer="21"/>
<rectangle x1="1.8637" y1="0.5937" x2="2.8035" y2="0.6001" layer="21"/>
<rectangle x1="0.3905" y1="0.6001" x2="1.2605" y2="0.6064" layer="21"/>
<rectangle x1="1.8637" y1="0.6001" x2="2.8035" y2="0.6064" layer="21"/>
<rectangle x1="0.3905" y1="0.6064" x2="1.2795" y2="0.6128" layer="21"/>
<rectangle x1="1.8574" y1="0.6064" x2="2.8035" y2="0.6128" layer="21"/>
<rectangle x1="0.3969" y1="0.6128" x2="1.2922" y2="0.6191" layer="21"/>
<rectangle x1="1.851" y1="0.6128" x2="2.8035" y2="0.6191" layer="21"/>
<rectangle x1="0.3969" y1="0.6191" x2="1.3049" y2="0.6255" layer="21"/>
<rectangle x1="1.8447" y1="0.6191" x2="2.8035" y2="0.6255" layer="21"/>
<rectangle x1="0.3969" y1="0.6255" x2="1.3176" y2="0.6318" layer="21"/>
<rectangle x1="1.8383" y1="0.6255" x2="2.8035" y2="0.6318" layer="21"/>
<rectangle x1="0.4032" y1="0.6318" x2="1.3303" y2="0.6382" layer="21"/>
<rectangle x1="1.8383" y1="0.6318" x2="2.8035" y2="0.6382" layer="21"/>
<rectangle x1="0.4032" y1="0.6382" x2="1.343" y2="0.6445" layer="21"/>
<rectangle x1="1.832" y1="0.6382" x2="2.8035" y2="0.6445" layer="21"/>
<rectangle x1="0.4032" y1="0.6445" x2="1.3557" y2="0.6509" layer="21"/>
<rectangle x1="1.8256" y1="0.6445" x2="2.8035" y2="0.6509" layer="21"/>
<rectangle x1="0.4096" y1="0.6509" x2="1.3684" y2="0.6572" layer="21"/>
<rectangle x1="1.8193" y1="0.6509" x2="2.8035" y2="0.6572" layer="21"/>
<rectangle x1="0.4096" y1="0.6572" x2="1.3811" y2="0.6636" layer="21"/>
<rectangle x1="1.8193" y1="0.6572" x2="2.8035" y2="0.6636" layer="21"/>
<rectangle x1="0.4096" y1="0.6636" x2="1.3938" y2="0.6699" layer="21"/>
<rectangle x1="1.8129" y1="0.6636" x2="2.8035" y2="0.6699" layer="21"/>
<rectangle x1="0.4159" y1="0.6699" x2="1.4002" y2="0.6763" layer="21"/>
<rectangle x1="1.8066" y1="0.6699" x2="2.8035" y2="0.6763" layer="21"/>
<rectangle x1="0.4159" y1="0.6763" x2="1.4129" y2="0.6826" layer="21"/>
<rectangle x1="1.8066" y1="0.6763" x2="2.8035" y2="0.6826" layer="21"/>
<rectangle x1="0.4159" y1="0.6826" x2="1.4192" y2="0.689" layer="21"/>
<rectangle x1="1.8002" y1="0.6826" x2="2.8035" y2="0.689" layer="21"/>
<rectangle x1="0.4159" y1="0.689" x2="1.4319" y2="0.6953" layer="21"/>
<rectangle x1="1.7939" y1="0.689" x2="2.8035" y2="0.6953" layer="21"/>
<rectangle x1="0.4223" y1="0.6953" x2="1.4383" y2="0.7017" layer="21"/>
<rectangle x1="1.7939" y1="0.6953" x2="2.8035" y2="0.7017" layer="21"/>
<rectangle x1="0.4223" y1="0.7017" x2="1.4446" y2="0.708" layer="21"/>
<rectangle x1="1.7875" y1="0.7017" x2="2.8035" y2="0.708" layer="21"/>
<rectangle x1="0.4286" y1="0.708" x2="1.4573" y2="0.7144" layer="21"/>
<rectangle x1="1.7875" y1="0.708" x2="2.8035" y2="0.7144" layer="21"/>
<rectangle x1="0.4286" y1="0.7144" x2="1.4637" y2="0.7207" layer="21"/>
<rectangle x1="1.7812" y1="0.7144" x2="2.8035" y2="0.7207" layer="21"/>
<rectangle x1="0.4286" y1="0.7207" x2="1.4764" y2="0.7271" layer="21"/>
<rectangle x1="1.7748" y1="0.7207" x2="2.8035" y2="0.7271" layer="21"/>
<rectangle x1="0.4286" y1="0.7271" x2="1.4827" y2="0.7334" layer="21"/>
<rectangle x1="1.7748" y1="0.7271" x2="2.8035" y2="0.7334" layer="21"/>
<rectangle x1="0.435" y1="0.7334" x2="1.4891" y2="0.7398" layer="21"/>
<rectangle x1="1.7685" y1="0.7334" x2="2.8035" y2="0.7398" layer="21"/>
<rectangle x1="0.435" y1="0.7398" x2="1.4954" y2="0.7461" layer="21"/>
<rectangle x1="1.7685" y1="0.7398" x2="2.8035" y2="0.7461" layer="21"/>
<rectangle x1="0.4413" y1="0.7461" x2="1.5018" y2="0.7525" layer="21"/>
<rectangle x1="1.7621" y1="0.7461" x2="2.8035" y2="0.7525" layer="21"/>
<rectangle x1="0.4413" y1="0.7525" x2="1.5081" y2="0.7588" layer="21"/>
<rectangle x1="1.7621" y1="0.7525" x2="2.8035" y2="0.7588" layer="21"/>
<rectangle x1="0.4413" y1="0.7588" x2="1.5208" y2="0.7652" layer="21"/>
<rectangle x1="1.7558" y1="0.7588" x2="2.8035" y2="0.7652" layer="21"/>
<rectangle x1="0.4413" y1="0.7652" x2="1.5272" y2="0.7715" layer="21"/>
<rectangle x1="1.7558" y1="0.7652" x2="2.8035" y2="0.7715" layer="21"/>
<rectangle x1="0.4477" y1="0.7715" x2="1.5335" y2="0.7779" layer="21"/>
<rectangle x1="1.7494" y1="0.7715" x2="2.8035" y2="0.7779" layer="21"/>
<rectangle x1="0.4477" y1="0.7779" x2="1.5399" y2="0.7842" layer="21"/>
<rectangle x1="1.7494" y1="0.7779" x2="2.8035" y2="0.7842" layer="21"/>
<rectangle x1="0.454" y1="0.7842" x2="1.5399" y2="0.7906" layer="21"/>
<rectangle x1="1.7494" y1="0.7842" x2="2.8035" y2="0.7906" layer="21"/>
<rectangle x1="0.454" y1="0.7906" x2="1.5526" y2="0.7969" layer="21"/>
<rectangle x1="1.7431" y1="0.7906" x2="2.8035" y2="0.7969" layer="21"/>
<rectangle x1="0.454" y1="0.7969" x2="1.5526" y2="0.8033" layer="21"/>
<rectangle x1="1.7431" y1="0.7969" x2="2.8035" y2="0.8033" layer="21"/>
<rectangle x1="0.454" y1="0.8033" x2="1.5589" y2="0.8096" layer="21"/>
<rectangle x1="1.7367" y1="0.8033" x2="2.8035" y2="0.8096" layer="21"/>
<rectangle x1="0.4604" y1="0.8096" x2="1.5653" y2="0.816" layer="21"/>
<rectangle x1="1.7367" y1="0.8096" x2="2.8035" y2="0.816" layer="21"/>
<rectangle x1="0.4604" y1="0.816" x2="1.5716" y2="0.8223" layer="21"/>
<rectangle x1="1.7367" y1="0.816" x2="2.8035" y2="0.8223" layer="21"/>
<rectangle x1="0.4604" y1="0.8223" x2="1.578" y2="0.8287" layer="21"/>
<rectangle x1="1.7367" y1="0.8223" x2="2.8035" y2="0.8287" layer="21"/>
<rectangle x1="0.4667" y1="0.8287" x2="1.5843" y2="0.835" layer="21"/>
<rectangle x1="1.7304" y1="0.8287" x2="2.8035" y2="0.835" layer="21"/>
<rectangle x1="0.4667" y1="0.835" x2="1.5843" y2="0.8414" layer="21"/>
<rectangle x1="1.7304" y1="0.835" x2="2.8035" y2="0.8414" layer="21"/>
<rectangle x1="0.4667" y1="0.8414" x2="1.5907" y2="0.8477" layer="21"/>
<rectangle x1="1.724" y1="0.8414" x2="2.8035" y2="0.8477" layer="21"/>
<rectangle x1="0.4731" y1="0.8477" x2="1.597" y2="0.8541" layer="21"/>
<rectangle x1="1.724" y1="0.8477" x2="2.8035" y2="0.8541" layer="21"/>
<rectangle x1="0.4731" y1="0.8541" x2="1.6034" y2="0.8604" layer="21"/>
<rectangle x1="1.724" y1="0.8541" x2="2.8035" y2="0.8604" layer="21"/>
<rectangle x1="0.4731" y1="0.8604" x2="1.6034" y2="0.8668" layer="21"/>
<rectangle x1="1.724" y1="0.8604" x2="2.8035" y2="0.8668" layer="21"/>
<rectangle x1="0.4794" y1="0.8668" x2="1.6097" y2="0.8731" layer="21"/>
<rectangle x1="1.724" y1="0.8668" x2="2.8035" y2="0.8731" layer="21"/>
<rectangle x1="0.4794" y1="0.8731" x2="1.6161" y2="0.8795" layer="21"/>
<rectangle x1="1.7177" y1="0.8731" x2="2.8035" y2="0.8795" layer="21"/>
<rectangle x1="0.4794" y1="0.8795" x2="1.6161" y2="0.8858" layer="21"/>
<rectangle x1="1.7177" y1="0.8795" x2="2.8035" y2="0.8858" layer="21"/>
<rectangle x1="0.4858" y1="0.8858" x2="1.6224" y2="0.8922" layer="21"/>
<rectangle x1="1.7177" y1="0.8858" x2="2.7972" y2="0.8922" layer="21"/>
<rectangle x1="0.4858" y1="0.8922" x2="1.6224" y2="0.8985" layer="21"/>
<rectangle x1="1.7177" y1="0.8922" x2="2.7972" y2="0.8985" layer="21"/>
<rectangle x1="0.4858" y1="0.8985" x2="1.6288" y2="0.9049" layer="21"/>
<rectangle x1="1.7113" y1="0.8985" x2="2.7972" y2="0.9049" layer="21"/>
<rectangle x1="0.4921" y1="0.9049" x2="1.6351" y2="0.9112" layer="21"/>
<rectangle x1="1.7113" y1="0.9049" x2="2.7972" y2="0.9112" layer="21"/>
<rectangle x1="0.4921" y1="0.9112" x2="1.6351" y2="0.9176" layer="21"/>
<rectangle x1="1.7113" y1="0.9112" x2="2.7972" y2="0.9176" layer="21"/>
<rectangle x1="0.4921" y1="0.9176" x2="1.6415" y2="0.9239" layer="21"/>
<rectangle x1="1.7113" y1="0.9176" x2="2.7972" y2="0.9239" layer="21"/>
<rectangle x1="0.4985" y1="0.9239" x2="1.6415" y2="0.9303" layer="21"/>
<rectangle x1="1.7113" y1="0.9239" x2="2.7972" y2="0.9303" layer="21"/>
<rectangle x1="0.4985" y1="0.9303" x2="1.6478" y2="0.9366" layer="21"/>
<rectangle x1="1.7113" y1="0.9303" x2="2.7972" y2="0.9366" layer="21"/>
<rectangle x1="0.4985" y1="0.9366" x2="1.6478" y2="0.943" layer="21"/>
<rectangle x1="1.7113" y1="0.9366" x2="2.7972" y2="0.943" layer="21"/>
<rectangle x1="0.5048" y1="0.943" x2="1.6542" y2="0.9493" layer="21"/>
<rectangle x1="1.7113" y1="0.943" x2="2.7972" y2="0.9493" layer="21"/>
<rectangle x1="0.5048" y1="0.9493" x2="1.6542" y2="0.9557" layer="21"/>
<rectangle x1="1.7113" y1="0.9493" x2="2.7972" y2="0.9557" layer="21"/>
<rectangle x1="0.5048" y1="0.9557" x2="1.6542" y2="0.962" layer="21"/>
<rectangle x1="1.705" y1="0.9557" x2="2.7908" y2="0.962" layer="21"/>
<rectangle x1="0.5112" y1="0.962" x2="1.6605" y2="0.9684" layer="21"/>
<rectangle x1="1.705" y1="0.962" x2="2.7908" y2="0.9684" layer="21"/>
<rectangle x1="0.5112" y1="0.9684" x2="1.6605" y2="0.9747" layer="21"/>
<rectangle x1="1.705" y1="0.9684" x2="2.7908" y2="0.9747" layer="21"/>
<rectangle x1="0.5112" y1="0.9747" x2="1.6669" y2="0.9811" layer="21"/>
<rectangle x1="1.705" y1="0.9747" x2="2.7908" y2="0.9811" layer="21"/>
<rectangle x1="0.5175" y1="0.9811" x2="1.6669" y2="0.9874" layer="21"/>
<rectangle x1="1.705" y1="0.9811" x2="2.7908" y2="0.9874" layer="21"/>
<rectangle x1="0.5175" y1="0.9874" x2="1.6669" y2="0.9938" layer="21"/>
<rectangle x1="1.705" y1="0.9874" x2="2.7908" y2="0.9938" layer="21"/>
<rectangle x1="0.5175" y1="0.9938" x2="1.6732" y2="1.0001" layer="21"/>
<rectangle x1="1.705" y1="0.9938" x2="2.7908" y2="1.0001" layer="21"/>
<rectangle x1="0.5239" y1="1.0001" x2="1.6732" y2="1.0065" layer="21"/>
<rectangle x1="1.705" y1="1.0001" x2="2.7908" y2="1.0065" layer="21"/>
<rectangle x1="0.5239" y1="1.0065" x2="1.6732" y2="1.0128" layer="21"/>
<rectangle x1="1.705" y1="1.0065" x2="2.7845" y2="1.0128" layer="21"/>
<rectangle x1="0.5239" y1="1.0128" x2="1.6796" y2="1.0192" layer="21"/>
<rectangle x1="1.705" y1="1.0128" x2="2.7845" y2="1.0192" layer="21"/>
<rectangle x1="0.5302" y1="1.0192" x2="1.6796" y2="1.0255" layer="21"/>
<rectangle x1="1.705" y1="1.0192" x2="2.7845" y2="1.0255" layer="21"/>
<rectangle x1="0.5302" y1="1.0255" x2="1.6796" y2="1.0319" layer="21"/>
<rectangle x1="1.705" y1="1.0255" x2="2.7845" y2="1.0319" layer="21"/>
<rectangle x1="0.5302" y1="1.0319" x2="1.6796" y2="1.0382" layer="21"/>
<rectangle x1="1.705" y1="1.0319" x2="2.7845" y2="1.0382" layer="21"/>
<rectangle x1="0.5366" y1="1.0382" x2="1.6859" y2="1.0446" layer="21"/>
<rectangle x1="1.705" y1="1.0382" x2="2.7781" y2="1.0446" layer="21"/>
<rectangle x1="0.5366" y1="1.0446" x2="1.6859" y2="1.0509" layer="21"/>
<rectangle x1="1.705" y1="1.0446" x2="2.7781" y2="1.0509" layer="21"/>
<rectangle x1="0.5366" y1="1.0509" x2="1.6859" y2="1.0573" layer="21"/>
<rectangle x1="1.7113" y1="1.0509" x2="2.7781" y2="1.0573" layer="21"/>
<rectangle x1="0.5429" y1="1.0573" x2="1.6923" y2="1.0636" layer="21"/>
<rectangle x1="1.7113" y1="1.0573" x2="2.7781" y2="1.0636" layer="21"/>
<rectangle x1="0.5429" y1="1.0636" x2="1.6923" y2="1.07" layer="21"/>
<rectangle x1="1.7113" y1="1.0636" x2="2.7781" y2="1.07" layer="21"/>
<rectangle x1="0.5429" y1="1.07" x2="1.6923" y2="1.0763" layer="21"/>
<rectangle x1="1.7113" y1="1.07" x2="2.7718" y2="1.0763" layer="21"/>
<rectangle x1="0.5493" y1="1.0763" x2="1.6923" y2="1.0827" layer="21"/>
<rectangle x1="1.7113" y1="1.0763" x2="2.7718" y2="1.0827" layer="21"/>
<rectangle x1="0.5493" y1="1.0827" x2="1.6986" y2="1.089" layer="21"/>
<rectangle x1="1.7113" y1="1.0827" x2="2.7718" y2="1.089" layer="21"/>
<rectangle x1="0.5493" y1="1.089" x2="1.6986" y2="1.0954" layer="21"/>
<rectangle x1="1.7113" y1="1.089" x2="2.7654" y2="1.0954" layer="21"/>
<rectangle x1="0.5556" y1="1.0954" x2="1.6986" y2="1.1017" layer="21"/>
<rectangle x1="1.7113" y1="1.0954" x2="2.7654" y2="1.1017" layer="21"/>
<rectangle x1="0.5556" y1="1.1017" x2="1.705" y2="1.1081" layer="21"/>
<rectangle x1="1.7113" y1="1.1017" x2="2.7654" y2="1.1081" layer="21"/>
<rectangle x1="0.5556" y1="1.1081" x2="1.705" y2="1.1144" layer="21"/>
<rectangle x1="1.7113" y1="1.1081" x2="2.7654" y2="1.1144" layer="21"/>
<rectangle x1="0.562" y1="1.1144" x2="2.7591" y2="1.1208" layer="21"/>
<rectangle x1="0.562" y1="1.1208" x2="2.7591" y2="1.1271" layer="21"/>
<rectangle x1="0.562" y1="1.1271" x2="2.7591" y2="1.1335" layer="21"/>
<rectangle x1="0.5683" y1="1.1335" x2="2.7527" y2="1.1398" layer="21"/>
<rectangle x1="0.5683" y1="1.1398" x2="2.7527" y2="1.1462" layer="21"/>
<rectangle x1="0.5683" y1="1.1462" x2="2.7527" y2="1.1525" layer="21"/>
<rectangle x1="0.5747" y1="1.1525" x2="2.7464" y2="1.1589" layer="21"/>
<rectangle x1="0.5747" y1="1.1589" x2="2.7464" y2="1.1652" layer="21"/>
<rectangle x1="0.5747" y1="1.1652" x2="2.105" y2="1.1716" layer="21"/>
<rectangle x1="2.1431" y1="1.1652" x2="2.74" y2="1.1716" layer="21"/>
<rectangle x1="0.581" y1="1.1716" x2="2.086" y2="1.1779" layer="21"/>
<rectangle x1="2.1558" y1="1.1716" x2="2.74" y2="1.1779" layer="21"/>
<rectangle x1="0.581" y1="1.1779" x2="2.0733" y2="1.1843" layer="21"/>
<rectangle x1="2.1622" y1="1.1779" x2="2.74" y2="1.1843" layer="21"/>
<rectangle x1="0.581" y1="1.1843" x2="2.0669" y2="1.1906" layer="21"/>
<rectangle x1="2.1685" y1="1.1843" x2="2.7337" y2="1.1906" layer="21"/>
<rectangle x1="0.581" y1="1.1906" x2="2.0542" y2="1.197" layer="21"/>
<rectangle x1="2.1685" y1="1.1906" x2="2.7337" y2="1.197" layer="21"/>
<rectangle x1="0.5874" y1="1.197" x2="2.0479" y2="1.2033" layer="21"/>
<rectangle x1="2.1749" y1="1.197" x2="2.7273" y2="1.2033" layer="21"/>
<rectangle x1="0.5874" y1="1.2033" x2="2.0415" y2="1.2097" layer="21"/>
<rectangle x1="2.1749" y1="1.2033" x2="2.7273" y2="1.2097" layer="21"/>
<rectangle x1="0.5937" y1="1.2097" x2="2.0352" y2="1.216" layer="21"/>
<rectangle x1="2.1749" y1="1.2097" x2="2.721" y2="1.216" layer="21"/>
<rectangle x1="0.5937" y1="1.216" x2="2.0288" y2="1.2224" layer="21"/>
<rectangle x1="2.1812" y1="1.216" x2="2.721" y2="1.2224" layer="21"/>
<rectangle x1="0.5937" y1="1.2224" x2="2.0225" y2="1.2287" layer="21"/>
<rectangle x1="2.1812" y1="1.2224" x2="2.7146" y2="1.2287" layer="21"/>
<rectangle x1="0.5937" y1="1.2287" x2="2.0161" y2="1.2351" layer="21"/>
<rectangle x1="2.1812" y1="1.2287" x2="2.7146" y2="1.2351" layer="21"/>
<rectangle x1="0.6001" y1="1.2351" x2="2.0098" y2="1.2414" layer="21"/>
<rectangle x1="2.1812" y1="1.2351" x2="2.7083" y2="1.2414" layer="21"/>
<rectangle x1="0.6001" y1="1.2414" x2="2.0034" y2="1.2478" layer="21"/>
<rectangle x1="2.1812" y1="1.2414" x2="2.7083" y2="1.2478" layer="21"/>
<rectangle x1="0.6064" y1="1.2478" x2="1.9971" y2="1.2541" layer="21"/>
<rectangle x1="2.1812" y1="1.2478" x2="2.7019" y2="1.2541" layer="21"/>
<rectangle x1="0.6064" y1="1.2541" x2="1.9907" y2="1.2605" layer="21"/>
<rectangle x1="2.1812" y1="1.2541" x2="2.7019" y2="1.2605" layer="21"/>
<rectangle x1="0.6064" y1="1.2605" x2="1.9907" y2="1.2668" layer="21"/>
<rectangle x1="2.1812" y1="1.2605" x2="2.6956" y2="1.2668" layer="21"/>
<rectangle x1="0.6128" y1="1.2668" x2="1.9844" y2="1.2732" layer="21"/>
<rectangle x1="2.1812" y1="1.2668" x2="2.6892" y2="1.2732" layer="21"/>
<rectangle x1="0.6128" y1="1.2732" x2="1.978" y2="1.2795" layer="21"/>
<rectangle x1="2.1812" y1="1.2732" x2="2.6892" y2="1.2795" layer="21"/>
<rectangle x1="0.6191" y1="1.2795" x2="1.9717" y2="1.2859" layer="21"/>
<rectangle x1="2.1812" y1="1.2795" x2="2.6829" y2="1.2859" layer="21"/>
<rectangle x1="0.6191" y1="1.2859" x2="1.3303" y2="1.2922" layer="21"/>
<rectangle x1="1.3684" y1="1.2859" x2="1.9717" y2="1.2922" layer="21"/>
<rectangle x1="2.1812" y1="1.2859" x2="2.6829" y2="1.2922" layer="21"/>
<rectangle x1="0.6255" y1="1.2922" x2="1.3176" y2="1.2986" layer="21"/>
<rectangle x1="1.3938" y1="1.2922" x2="1.9653" y2="1.2986" layer="21"/>
<rectangle x1="2.1812" y1="1.2922" x2="2.6765" y2="1.2986" layer="21"/>
<rectangle x1="0.6255" y1="1.2986" x2="1.3049" y2="1.3049" layer="21"/>
<rectangle x1="1.4129" y1="1.2986" x2="1.959" y2="1.3049" layer="21"/>
<rectangle x1="2.1749" y1="1.2986" x2="2.6702" y2="1.3049" layer="21"/>
<rectangle x1="0.6318" y1="1.3049" x2="1.3049" y2="1.3113" layer="21"/>
<rectangle x1="1.4256" y1="1.3049" x2="1.959" y2="1.3113" layer="21"/>
<rectangle x1="2.1749" y1="1.3049" x2="2.6638" y2="1.3113" layer="21"/>
<rectangle x1="0.6318" y1="1.3113" x2="1.2986" y2="1.3176" layer="21"/>
<rectangle x1="1.4383" y1="1.3113" x2="1.9526" y2="1.3176" layer="21"/>
<rectangle x1="2.1749" y1="1.3113" x2="2.6638" y2="1.3176" layer="21"/>
<rectangle x1="0.6318" y1="1.3176" x2="1.2922" y2="1.324" layer="21"/>
<rectangle x1="1.451" y1="1.3176" x2="1.9463" y2="1.324" layer="21"/>
<rectangle x1="2.1749" y1="1.3176" x2="2.6575" y2="1.324" layer="21"/>
<rectangle x1="0.6382" y1="1.324" x2="1.2922" y2="1.3303" layer="21"/>
<rectangle x1="1.4637" y1="1.324" x2="1.9463" y2="1.3303" layer="21"/>
<rectangle x1="2.1749" y1="1.324" x2="2.6511" y2="1.3303" layer="21"/>
<rectangle x1="0.6382" y1="1.3303" x2="1.2922" y2="1.3367" layer="21"/>
<rectangle x1="1.47" y1="1.3303" x2="1.9399" y2="1.3367" layer="21"/>
<rectangle x1="2.1685" y1="1.3303" x2="2.6448" y2="1.3367" layer="21"/>
<rectangle x1="0.6445" y1="1.3367" x2="1.2922" y2="1.343" layer="21"/>
<rectangle x1="1.4827" y1="1.3367" x2="1.9399" y2="1.343" layer="21"/>
<rectangle x1="2.1685" y1="1.3367" x2="2.6384" y2="1.343" layer="21"/>
<rectangle x1="0.6509" y1="1.343" x2="1.2922" y2="1.3494" layer="21"/>
<rectangle x1="1.4891" y1="1.343" x2="1.9336" y2="1.3494" layer="21"/>
<rectangle x1="2.1685" y1="1.343" x2="2.6384" y2="1.3494" layer="21"/>
<rectangle x1="0.6509" y1="1.3494" x2="1.2922" y2="1.3557" layer="21"/>
<rectangle x1="1.5018" y1="1.3494" x2="1.9336" y2="1.3557" layer="21"/>
<rectangle x1="2.1685" y1="1.3494" x2="2.6321" y2="1.3557" layer="21"/>
<rectangle x1="0.6572" y1="1.3557" x2="1.2922" y2="1.3621" layer="21"/>
<rectangle x1="1.5081" y1="1.3557" x2="1.9272" y2="1.3621" layer="21"/>
<rectangle x1="2.1622" y1="1.3557" x2="2.6257" y2="1.3621" layer="21"/>
<rectangle x1="0.6572" y1="1.3621" x2="1.2922" y2="1.3684" layer="21"/>
<rectangle x1="1.5145" y1="1.3621" x2="1.9272" y2="1.3684" layer="21"/>
<rectangle x1="2.1622" y1="1.3621" x2="2.6194" y2="1.3684" layer="21"/>
<rectangle x1="0.6636" y1="1.3684" x2="1.2922" y2="1.3748" layer="21"/>
<rectangle x1="1.5272" y1="1.3684" x2="1.9209" y2="1.3748" layer="21"/>
<rectangle x1="2.1622" y1="1.3684" x2="2.613" y2="1.3748" layer="21"/>
<rectangle x1="0.6636" y1="1.3748" x2="1.2922" y2="1.3811" layer="21"/>
<rectangle x1="1.5335" y1="1.3748" x2="1.9209" y2="1.3811" layer="21"/>
<rectangle x1="2.1558" y1="1.3748" x2="2.6067" y2="1.3811" layer="21"/>
<rectangle x1="0.6699" y1="1.3811" x2="1.2986" y2="1.3875" layer="21"/>
<rectangle x1="1.5399" y1="1.3811" x2="1.9145" y2="1.3875" layer="21"/>
<rectangle x1="2.1558" y1="1.3811" x2="2.6003" y2="1.3875" layer="21"/>
<rectangle x1="0.6763" y1="1.3875" x2="1.2986" y2="1.3938" layer="21"/>
<rectangle x1="1.5462" y1="1.3875" x2="1.9145" y2="1.3938" layer="21"/>
<rectangle x1="2.1558" y1="1.3875" x2="2.594" y2="1.3938" layer="21"/>
<rectangle x1="0.6763" y1="1.3938" x2="1.2986" y2="1.4002" layer="21"/>
<rectangle x1="1.5526" y1="1.3938" x2="1.9082" y2="1.4002" layer="21"/>
<rectangle x1="2.1495" y1="1.3938" x2="2.5813" y2="1.4002" layer="21"/>
<rectangle x1="0.6826" y1="1.4002" x2="1.3049" y2="1.4065" layer="21"/>
<rectangle x1="1.5589" y1="1.4002" x2="1.9082" y2="1.4065" layer="21"/>
<rectangle x1="2.1495" y1="1.4002" x2="2.5749" y2="1.4065" layer="21"/>
<rectangle x1="0.6826" y1="1.4065" x2="1.3049" y2="1.4129" layer="21"/>
<rectangle x1="1.5716" y1="1.4065" x2="1.9018" y2="1.4129" layer="21"/>
<rectangle x1="2.1495" y1="1.4065" x2="2.5686" y2="1.4129" layer="21"/>
<rectangle x1="0.689" y1="1.4129" x2="1.3049" y2="1.4192" layer="21"/>
<rectangle x1="1.5716" y1="1.4129" x2="1.9018" y2="1.4192" layer="21"/>
<rectangle x1="2.1431" y1="1.4129" x2="2.5622" y2="1.4192" layer="21"/>
<rectangle x1="0.6953" y1="1.4192" x2="1.3113" y2="1.4256" layer="21"/>
<rectangle x1="1.5843" y1="1.4192" x2="1.8955" y2="1.4256" layer="21"/>
<rectangle x1="2.1431" y1="1.4192" x2="2.5495" y2="1.4256" layer="21"/>
<rectangle x1="0.6953" y1="1.4256" x2="1.3113" y2="1.4319" layer="21"/>
<rectangle x1="1.5843" y1="1.4256" x2="1.8955" y2="1.4319" layer="21"/>
<rectangle x1="2.1368" y1="1.4256" x2="2.5432" y2="1.4319" layer="21"/>
<rectangle x1="0.7017" y1="1.4319" x2="1.3176" y2="1.4383" layer="21"/>
<rectangle x1="1.5907" y1="1.4319" x2="1.8955" y2="1.4383" layer="21"/>
<rectangle x1="2.1368" y1="1.4319" x2="2.5305" y2="1.4383" layer="21"/>
<rectangle x1="2.6511" y1="1.4319" x2="2.8099" y2="1.4383" layer="21"/>
<rectangle x1="0.708" y1="1.4383" x2="1.3176" y2="1.4446" layer="21"/>
<rectangle x1="1.597" y1="1.4383" x2="1.8891" y2="1.4446" layer="21"/>
<rectangle x1="2.1304" y1="1.4383" x2="2.5241" y2="1.4446" layer="21"/>
<rectangle x1="2.613" y1="1.4383" x2="2.848" y2="1.4446" layer="21"/>
<rectangle x1="0.708" y1="1.4446" x2="1.324" y2="1.451" layer="21"/>
<rectangle x1="1.6034" y1="1.4446" x2="1.8891" y2="1.451" layer="21"/>
<rectangle x1="2.1304" y1="1.4446" x2="2.5178" y2="1.451" layer="21"/>
<rectangle x1="2.5876" y1="1.4446" x2="2.8797" y2="1.451" layer="21"/>
<rectangle x1="0.7144" y1="1.451" x2="1.3303" y2="1.4573" layer="21"/>
<rectangle x1="1.6097" y1="1.451" x2="1.8891" y2="1.4573" layer="21"/>
<rectangle x1="2.1241" y1="1.451" x2="2.5051" y2="1.4573" layer="21"/>
<rectangle x1="2.5686" y1="1.451" x2="2.9051" y2="1.4573" layer="21"/>
<rectangle x1="0.7207" y1="1.4573" x2="1.3303" y2="1.4637" layer="21"/>
<rectangle x1="1.6161" y1="1.4573" x2="1.8828" y2="1.4637" layer="21"/>
<rectangle x1="2.1241" y1="1.4573" x2="2.4987" y2="1.4637" layer="21"/>
<rectangle x1="2.5495" y1="1.4573" x2="2.9242" y2="1.4637" layer="21"/>
<rectangle x1="0.7271" y1="1.4637" x2="1.3367" y2="1.47" layer="21"/>
<rectangle x1="1.6224" y1="1.4637" x2="1.8828" y2="1.47" layer="21"/>
<rectangle x1="2.1177" y1="1.4637" x2="2.486" y2="1.47" layer="21"/>
<rectangle x1="2.5305" y1="1.4637" x2="2.9432" y2="1.47" layer="21"/>
<rectangle x1="0.7334" y1="1.47" x2="1.3367" y2="1.4764" layer="21"/>
<rectangle x1="1.6224" y1="1.47" x2="1.8828" y2="1.4764" layer="21"/>
<rectangle x1="2.1177" y1="1.47" x2="2.4797" y2="1.4764" layer="21"/>
<rectangle x1="2.5114" y1="1.47" x2="2.9623" y2="1.4764" layer="21"/>
<rectangle x1="0.7334" y1="1.4764" x2="1.343" y2="1.4827" layer="21"/>
<rectangle x1="1.6288" y1="1.4764" x2="1.8828" y2="1.4827" layer="21"/>
<rectangle x1="2.1114" y1="1.4764" x2="2.467" y2="1.4827" layer="21"/>
<rectangle x1="2.4924" y1="1.4764" x2="2.975" y2="1.4827" layer="21"/>
<rectangle x1="0.7398" y1="1.4827" x2="1.3494" y2="1.4891" layer="21"/>
<rectangle x1="1.6351" y1="1.4827" x2="1.8764" y2="1.4891" layer="21"/>
<rectangle x1="2.1114" y1="1.4827" x2="2.4543" y2="1.4891" layer="21"/>
<rectangle x1="2.4797" y1="1.4827" x2="2.994" y2="1.4891" layer="21"/>
<rectangle x1="0.7461" y1="1.4891" x2="1.3494" y2="1.4954" layer="21"/>
<rectangle x1="1.6415" y1="1.4891" x2="1.8764" y2="1.4954" layer="21"/>
<rectangle x1="2.105" y1="1.4891" x2="2.4479" y2="1.4954" layer="21"/>
<rectangle x1="2.467" y1="1.4891" x2="3.0067" y2="1.4954" layer="21"/>
<rectangle x1="0.7525" y1="1.4954" x2="1.3557" y2="1.5018" layer="21"/>
<rectangle x1="1.6415" y1="1.4954" x2="1.8764" y2="1.5018" layer="21"/>
<rectangle x1="2.0987" y1="1.4954" x2="3.0194" y2="1.5018" layer="21"/>
<rectangle x1="0.7588" y1="1.5018" x2="1.3621" y2="1.5081" layer="21"/>
<rectangle x1="1.6478" y1="1.5018" x2="1.8764" y2="1.5081" layer="21"/>
<rectangle x1="2.0987" y1="1.5018" x2="3.0321" y2="1.5081" layer="21"/>
<rectangle x1="0.7652" y1="1.5081" x2="1.3684" y2="1.5145" layer="21"/>
<rectangle x1="1.6542" y1="1.5081" x2="1.8701" y2="1.5145" layer="21"/>
<rectangle x1="2.0923" y1="1.5081" x2="3.0512" y2="1.5145" layer="21"/>
<rectangle x1="0.7715" y1="1.5145" x2="1.3684" y2="1.5208" layer="21"/>
<rectangle x1="1.6542" y1="1.5145" x2="1.8701" y2="1.5208" layer="21"/>
<rectangle x1="2.0923" y1="1.5145" x2="3.0575" y2="1.5208" layer="21"/>
<rectangle x1="0.7779" y1="1.5208" x2="1.3748" y2="1.5272" layer="21"/>
<rectangle x1="1.6605" y1="1.5208" x2="1.8701" y2="1.5272" layer="21"/>
<rectangle x1="2.086" y1="1.5208" x2="3.0702" y2="1.5272" layer="21"/>
<rectangle x1="0.7842" y1="1.5272" x2="1.3811" y2="1.5335" layer="21"/>
<rectangle x1="1.6669" y1="1.5272" x2="1.8701" y2="1.5335" layer="21"/>
<rectangle x1="2.0796" y1="1.5272" x2="3.0829" y2="1.5335" layer="21"/>
<rectangle x1="0.7906" y1="1.5335" x2="1.3875" y2="1.5399" layer="21"/>
<rectangle x1="1.6669" y1="1.5335" x2="1.8701" y2="1.5399" layer="21"/>
<rectangle x1="2.0796" y1="1.5335" x2="3.0956" y2="1.5399" layer="21"/>
<rectangle x1="0.7969" y1="1.5399" x2="1.3938" y2="1.5462" layer="21"/>
<rectangle x1="1.6732" y1="1.5399" x2="1.8701" y2="1.5462" layer="21"/>
<rectangle x1="2.0733" y1="1.5399" x2="3.1083" y2="1.5462" layer="21"/>
<rectangle x1="0.8033" y1="1.5462" x2="1.4002" y2="1.5526" layer="21"/>
<rectangle x1="1.6732" y1="1.5462" x2="1.8701" y2="1.5526" layer="21"/>
<rectangle x1="2.0669" y1="1.5462" x2="3.1147" y2="1.5526" layer="21"/>
<rectangle x1="0.8096" y1="1.5526" x2="1.4065" y2="1.5589" layer="21"/>
<rectangle x1="1.6796" y1="1.5526" x2="1.8701" y2="1.5589" layer="21"/>
<rectangle x1="2.0606" y1="1.5526" x2="3.1274" y2="1.5589" layer="21"/>
<rectangle x1="0.816" y1="1.5589" x2="1.4129" y2="1.5653" layer="21"/>
<rectangle x1="1.6796" y1="1.5589" x2="1.8701" y2="1.5653" layer="21"/>
<rectangle x1="2.0606" y1="1.5589" x2="3.1337" y2="1.5653" layer="21"/>
<rectangle x1="0.8223" y1="1.5653" x2="1.4192" y2="1.5716" layer="21"/>
<rectangle x1="1.6859" y1="1.5653" x2="1.8701" y2="1.5716" layer="21"/>
<rectangle x1="2.0542" y1="1.5653" x2="3.1464" y2="1.5716" layer="21"/>
<rectangle x1="0.8287" y1="1.5716" x2="1.4192" y2="1.578" layer="21"/>
<rectangle x1="1.6859" y1="1.5716" x2="1.8701" y2="1.578" layer="21"/>
<rectangle x1="2.0479" y1="1.5716" x2="3.1528" y2="1.578" layer="21"/>
<rectangle x1="0.8414" y1="1.578" x2="1.4319" y2="1.5843" layer="21"/>
<rectangle x1="1.6923" y1="1.578" x2="1.8701" y2="1.5843" layer="21"/>
<rectangle x1="2.0415" y1="1.578" x2="3.1655" y2="1.5843" layer="21"/>
<rectangle x1="0.8477" y1="1.5843" x2="1.4319" y2="1.5907" layer="21"/>
<rectangle x1="1.6923" y1="1.5843" x2="1.8701" y2="1.5907" layer="21"/>
<rectangle x1="2.0352" y1="1.5843" x2="3.1718" y2="1.5907" layer="21"/>
<rectangle x1="0.8541" y1="1.5907" x2="1.4446" y2="1.597" layer="21"/>
<rectangle x1="1.6923" y1="1.5907" x2="1.8701" y2="1.597" layer="21"/>
<rectangle x1="2.0288" y1="1.5907" x2="3.1845" y2="1.597" layer="21"/>
<rectangle x1="0.8668" y1="1.597" x2="1.451" y2="1.6034" layer="21"/>
<rectangle x1="1.6923" y1="1.597" x2="1.8701" y2="1.6034" layer="21"/>
<rectangle x1="2.0225" y1="1.597" x2="3.1909" y2="1.6034" layer="21"/>
<rectangle x1="0.8731" y1="1.6034" x2="1.4573" y2="1.6097" layer="21"/>
<rectangle x1="1.6986" y1="1.6034" x2="1.8701" y2="1.6097" layer="21"/>
<rectangle x1="2.0161" y1="1.6034" x2="3.2036" y2="1.6097" layer="21"/>
<rectangle x1="0.8858" y1="1.6097" x2="1.4637" y2="1.6161" layer="21"/>
<rectangle x1="1.6986" y1="1.6097" x2="1.8764" y2="1.6161" layer="21"/>
<rectangle x1="2.0098" y1="1.6097" x2="3.2099" y2="1.6161" layer="21"/>
<rectangle x1="0.8922" y1="1.6161" x2="1.47" y2="1.6224" layer="21"/>
<rectangle x1="1.6986" y1="1.6161" x2="1.8764" y2="1.6224" layer="21"/>
<rectangle x1="2.0034" y1="1.6161" x2="3.2163" y2="1.6224" layer="21"/>
<rectangle x1="0.9049" y1="1.6224" x2="1.4827" y2="1.6288" layer="21"/>
<rectangle x1="1.6986" y1="1.6224" x2="1.8828" y2="1.6288" layer="21"/>
<rectangle x1="1.9971" y1="1.6224" x2="3.229" y2="1.6288" layer="21"/>
<rectangle x1="0.9176" y1="1.6288" x2="1.4891" y2="1.6351" layer="21"/>
<rectangle x1="1.6986" y1="1.6288" x2="1.8828" y2="1.6351" layer="21"/>
<rectangle x1="1.9844" y1="1.6288" x2="3.2353" y2="1.6351" layer="21"/>
<rectangle x1="0.9303" y1="1.6351" x2="1.4954" y2="1.6415" layer="21"/>
<rectangle x1="1.705" y1="1.6351" x2="1.8891" y2="1.6415" layer="21"/>
<rectangle x1="1.978" y1="1.6351" x2="3.2417" y2="1.6415" layer="21"/>
<rectangle x1="0.943" y1="1.6415" x2="1.5081" y2="1.6478" layer="21"/>
<rectangle x1="1.6986" y1="1.6415" x2="1.8955" y2="1.6478" layer="21"/>
<rectangle x1="1.9653" y1="1.6415" x2="3.2544" y2="1.6478" layer="21"/>
<rectangle x1="0.9557" y1="1.6478" x2="1.5145" y2="1.6542" layer="21"/>
<rectangle x1="1.6986" y1="1.6478" x2="1.9082" y2="1.6542" layer="21"/>
<rectangle x1="1.9463" y1="1.6478" x2="3.2607" y2="1.6542" layer="21"/>
<rectangle x1="0.9747" y1="1.6542" x2="1.5272" y2="1.6605" layer="21"/>
<rectangle x1="1.6986" y1="1.6542" x2="3.2671" y2="1.6605" layer="21"/>
<rectangle x1="0.9874" y1="1.6605" x2="1.5399" y2="1.6669" layer="21"/>
<rectangle x1="1.6986" y1="1.6605" x2="3.2798" y2="1.6669" layer="21"/>
<rectangle x1="1.0128" y1="1.6669" x2="1.5462" y2="1.6732" layer="21"/>
<rectangle x1="1.6923" y1="1.6669" x2="3.2861" y2="1.6732" layer="21"/>
<rectangle x1="1.0319" y1="1.6732" x2="1.5653" y2="1.6796" layer="21"/>
<rectangle x1="1.6923" y1="1.6732" x2="3.2988" y2="1.6796" layer="21"/>
<rectangle x1="1.0509" y1="1.6796" x2="1.5716" y2="1.6859" layer="21"/>
<rectangle x1="1.6859" y1="1.6796" x2="3.3052" y2="1.6859" layer="21"/>
<rectangle x1="1.0763" y1="1.6859" x2="1.5907" y2="1.6923" layer="21"/>
<rectangle x1="1.6796" y1="1.6859" x2="3.3179" y2="1.6923" layer="21"/>
<rectangle x1="1.0954" y1="1.6923" x2="1.6161" y2="1.6986" layer="21"/>
<rectangle x1="1.6669" y1="1.6923" x2="3.3242" y2="1.6986" layer="21"/>
<rectangle x1="1.1208" y1="1.6986" x2="3.3306" y2="1.705" layer="21"/>
<rectangle x1="0.9176" y1="1.705" x2="3.3433" y2="1.7113" layer="21"/>
<rectangle x1="0.8795" y1="1.7113" x2="3.3496" y2="1.7177" layer="21"/>
<rectangle x1="0.8541" y1="1.7177" x2="3.356" y2="1.724" layer="21"/>
<rectangle x1="0.835" y1="1.724" x2="3.3687" y2="1.7304" layer="21"/>
<rectangle x1="0.816" y1="1.7304" x2="3.375" y2="1.7367" layer="21"/>
<rectangle x1="0.7969" y1="1.7367" x2="3.3814" y2="1.7431" layer="21"/>
<rectangle x1="0.7842" y1="1.7431" x2="3.3941" y2="1.7494" layer="21"/>
<rectangle x1="0.7715" y1="1.7494" x2="3.4004" y2="1.7558" layer="21"/>
<rectangle x1="0.7525" y1="1.7558" x2="3.4131" y2="1.7621" layer="21"/>
<rectangle x1="0.7461" y1="1.7621" x2="3.4195" y2="1.7685" layer="21"/>
<rectangle x1="0.7271" y1="1.7685" x2="2.1495" y2="1.7748" layer="21"/>
<rectangle x1="2.232" y1="1.7685" x2="3.4322" y2="1.7748" layer="21"/>
<rectangle x1="0.7207" y1="1.7748" x2="2.105" y2="1.7812" layer="21"/>
<rectangle x1="2.2828" y1="1.7748" x2="3.4385" y2="1.7812" layer="21"/>
<rectangle x1="0.708" y1="1.7812" x2="2.0733" y2="1.7875" layer="21"/>
<rectangle x1="2.3209" y1="1.7812" x2="3.4449" y2="1.7875" layer="21"/>
<rectangle x1="0.6953" y1="1.7875" x2="2.0606" y2="1.7939" layer="21"/>
<rectangle x1="2.34" y1="1.7875" x2="3.4576" y2="1.7939" layer="21"/>
<rectangle x1="0.689" y1="1.7939" x2="2.0415" y2="1.8002" layer="21"/>
<rectangle x1="2.3654" y1="1.7939" x2="3.4639" y2="1.8002" layer="21"/>
<rectangle x1="0.6763" y1="1.8002" x2="2.0352" y2="1.8066" layer="21"/>
<rectangle x1="2.3844" y1="1.8002" x2="3.4703" y2="1.8066" layer="21"/>
<rectangle x1="0.6699" y1="1.8066" x2="2.0225" y2="1.8129" layer="21"/>
<rectangle x1="2.4035" y1="1.8066" x2="3.483" y2="1.8129" layer="21"/>
<rectangle x1="0.6572" y1="1.8129" x2="2.0161" y2="1.8193" layer="21"/>
<rectangle x1="2.4225" y1="1.8129" x2="3.4893" y2="1.8193" layer="21"/>
<rectangle x1="0.6509" y1="1.8193" x2="2.0098" y2="1.8256" layer="21"/>
<rectangle x1="2.4352" y1="1.8193" x2="3.4957" y2="1.8256" layer="21"/>
<rectangle x1="0.6382" y1="1.8256" x2="2.0098" y2="1.832" layer="21"/>
<rectangle x1="2.4479" y1="1.8256" x2="3.5084" y2="1.832" layer="21"/>
<rectangle x1="0.6318" y1="1.832" x2="2.0034" y2="1.8383" layer="21"/>
<rectangle x1="2.4606" y1="1.832" x2="3.5147" y2="1.8383" layer="21"/>
<rectangle x1="0.6255" y1="1.8383" x2="2.0034" y2="1.8447" layer="21"/>
<rectangle x1="2.467" y1="1.8383" x2="3.5274" y2="1.8447" layer="21"/>
<rectangle x1="0.6191" y1="1.8447" x2="2.0034" y2="1.851" layer="21"/>
<rectangle x1="2.4797" y1="1.8447" x2="3.5338" y2="1.851" layer="21"/>
<rectangle x1="0.6064" y1="1.851" x2="2.0034" y2="1.8574" layer="21"/>
<rectangle x1="2.486" y1="1.851" x2="3.5465" y2="1.8574" layer="21"/>
<rectangle x1="0.6001" y1="1.8574" x2="2.0034" y2="1.8637" layer="21"/>
<rectangle x1="2.4987" y1="1.8574" x2="3.5528" y2="1.8637" layer="21"/>
<rectangle x1="0.5937" y1="1.8637" x2="1.5335" y2="1.8701" layer="21"/>
<rectangle x1="1.597" y1="1.8637" x2="2.0034" y2="1.8701" layer="21"/>
<rectangle x1="2.5051" y1="1.8637" x2="3.5592" y2="1.8701" layer="21"/>
<rectangle x1="0.5874" y1="1.8701" x2="1.5018" y2="1.8764" layer="21"/>
<rectangle x1="1.6161" y1="1.8701" x2="2.0098" y2="1.8764" layer="21"/>
<rectangle x1="2.5114" y1="1.8701" x2="3.5719" y2="1.8764" layer="21"/>
<rectangle x1="0.581" y1="1.8764" x2="1.47" y2="1.8828" layer="21"/>
<rectangle x1="1.6351" y1="1.8764" x2="2.0098" y2="1.8828" layer="21"/>
<rectangle x1="2.5178" y1="1.8764" x2="3.5782" y2="1.8828" layer="21"/>
<rectangle x1="0.5747" y1="1.8828" x2="1.451" y2="1.8891" layer="21"/>
<rectangle x1="1.6415" y1="1.8828" x2="2.0161" y2="1.8891" layer="21"/>
<rectangle x1="2.5178" y1="1.8828" x2="3.5909" y2="1.8891" layer="21"/>
<rectangle x1="0.5683" y1="1.8891" x2="1.4319" y2="1.8955" layer="21"/>
<rectangle x1="1.6478" y1="1.8891" x2="2.0161" y2="1.8955" layer="21"/>
<rectangle x1="2.5241" y1="1.8891" x2="3.5973" y2="1.8955" layer="21"/>
<rectangle x1="0.562" y1="1.8955" x2="1.4192" y2="1.9018" layer="21"/>
<rectangle x1="1.6478" y1="1.8955" x2="2.0225" y2="1.9018" layer="21"/>
<rectangle x1="2.5305" y1="1.8955" x2="3.6036" y2="1.9018" layer="21"/>
<rectangle x1="0.5556" y1="1.9018" x2="1.4002" y2="1.9082" layer="21"/>
<rectangle x1="1.6542" y1="1.9018" x2="2.0288" y2="1.9082" layer="21"/>
<rectangle x1="2.5305" y1="1.9018" x2="3.6163" y2="1.9082" layer="21"/>
<rectangle x1="0.5429" y1="1.9082" x2="1.3875" y2="1.9145" layer="21"/>
<rectangle x1="1.6542" y1="1.9082" x2="2.0352" y2="1.9145" layer="21"/>
<rectangle x1="2.5305" y1="1.9082" x2="3.6227" y2="1.9145" layer="21"/>
<rectangle x1="0.5429" y1="1.9145" x2="1.3748" y2="1.9209" layer="21"/>
<rectangle x1="1.6542" y1="1.9145" x2="2.0415" y2="1.9209" layer="21"/>
<rectangle x1="2.5368" y1="1.9145" x2="3.629" y2="1.9209" layer="21"/>
<rectangle x1="0.5366" y1="1.9209" x2="1.3621" y2="1.9272" layer="21"/>
<rectangle x1="1.6542" y1="1.9209" x2="2.0542" y2="1.9272" layer="21"/>
<rectangle x1="2.5368" y1="1.9209" x2="3.6417" y2="1.9272" layer="21"/>
<rectangle x1="0.5302" y1="1.9272" x2="1.3494" y2="1.9336" layer="21"/>
<rectangle x1="1.6542" y1="1.9272" x2="2.0606" y2="1.9336" layer="21"/>
<rectangle x1="2.5368" y1="1.9272" x2="3.6481" y2="1.9336" layer="21"/>
<rectangle x1="0.5239" y1="1.9336" x2="1.3367" y2="1.9399" layer="21"/>
<rectangle x1="1.6542" y1="1.9336" x2="2.0733" y2="1.9399" layer="21"/>
<rectangle x1="2.5305" y1="1.9336" x2="3.6608" y2="1.9399" layer="21"/>
<rectangle x1="0.5175" y1="1.9399" x2="1.3303" y2="1.9463" layer="21"/>
<rectangle x1="1.6542" y1="1.9399" x2="2.086" y2="1.9463" layer="21"/>
<rectangle x1="2.5305" y1="1.9399" x2="3.6671" y2="1.9463" layer="21"/>
<rectangle x1="0.5112" y1="1.9463" x2="1.3176" y2="1.9526" layer="21"/>
<rectangle x1="1.6542" y1="1.9463" x2="2.0923" y2="1.9526" layer="21"/>
<rectangle x1="2.5241" y1="1.9463" x2="3.6735" y2="1.9526" layer="21"/>
<rectangle x1="0.5048" y1="1.9526" x2="1.3049" y2="1.959" layer="21"/>
<rectangle x1="1.6478" y1="1.9526" x2="2.1114" y2="1.959" layer="21"/>
<rectangle x1="2.5178" y1="1.9526" x2="3.6862" y2="1.959" layer="21"/>
<rectangle x1="0.4985" y1="1.959" x2="1.2986" y2="1.9653" layer="21"/>
<rectangle x1="1.6478" y1="1.959" x2="2.1241" y2="1.9653" layer="21"/>
<rectangle x1="2.5114" y1="1.959" x2="3.6925" y2="1.9653" layer="21"/>
<rectangle x1="0.4921" y1="1.9653" x2="1.2859" y2="1.9717" layer="21"/>
<rectangle x1="1.6415" y1="1.9653" x2="2.1431" y2="1.9717" layer="21"/>
<rectangle x1="2.5051" y1="1.9653" x2="3.6989" y2="1.9717" layer="21"/>
<rectangle x1="0.4858" y1="1.9717" x2="1.2795" y2="1.978" layer="21"/>
<rectangle x1="1.6415" y1="1.9717" x2="2.1558" y2="1.978" layer="21"/>
<rectangle x1="2.4987" y1="1.9717" x2="3.7116" y2="1.978" layer="21"/>
<rectangle x1="0.4858" y1="1.978" x2="1.2668" y2="1.9844" layer="21"/>
<rectangle x1="1.6351" y1="1.978" x2="2.1812" y2="1.9844" layer="21"/>
<rectangle x1="2.4797" y1="1.978" x2="3.7179" y2="1.9844" layer="21"/>
<rectangle x1="0.4794" y1="1.9844" x2="1.2605" y2="1.9907" layer="21"/>
<rectangle x1="1.6288" y1="1.9844" x2="2.2066" y2="1.9907" layer="21"/>
<rectangle x1="2.467" y1="1.9844" x2="3.7243" y2="1.9907" layer="21"/>
<rectangle x1="0.4731" y1="1.9907" x2="1.2541" y2="1.9971" layer="21"/>
<rectangle x1="1.6224" y1="1.9907" x2="2.2384" y2="1.9971" layer="21"/>
<rectangle x1="2.4416" y1="1.9907" x2="3.737" y2="1.9971" layer="21"/>
<rectangle x1="0.4667" y1="1.9971" x2="1.2478" y2="2.0034" layer="21"/>
<rectangle x1="1.6224" y1="1.9971" x2="1.851" y2="2.0034" layer="21"/>
<rectangle x1="1.8574" y1="1.9971" x2="2.2828" y2="2.0034" layer="21"/>
<rectangle x1="2.4098" y1="1.9971" x2="3.7433" y2="2.0034" layer="21"/>
<rectangle x1="0.4667" y1="2.0034" x2="1.2414" y2="2.0098" layer="21"/>
<rectangle x1="1.6161" y1="2.0034" x2="1.832" y2="2.0098" layer="21"/>
<rectangle x1="1.8828" y1="2.0034" x2="3.7497" y2="2.0098" layer="21"/>
<rectangle x1="0.4604" y1="2.0098" x2="1.2351" y2="2.0161" layer="21"/>
<rectangle x1="1.6097" y1="2.0098" x2="1.8193" y2="2.0161" layer="21"/>
<rectangle x1="1.8891" y1="2.0098" x2="3.756" y2="2.0161" layer="21"/>
<rectangle x1="0.454" y1="2.0161" x2="1.2224" y2="2.0225" layer="21"/>
<rectangle x1="1.6034" y1="2.0161" x2="1.8129" y2="2.0225" layer="21"/>
<rectangle x1="1.9018" y1="2.0161" x2="3.7624" y2="2.0225" layer="21"/>
<rectangle x1="0.4477" y1="2.0225" x2="1.2224" y2="2.0288" layer="21"/>
<rectangle x1="1.597" y1="2.0225" x2="1.8066" y2="2.0288" layer="21"/>
<rectangle x1="1.9018" y1="2.0225" x2="3.7687" y2="2.0288" layer="21"/>
<rectangle x1="0.4477" y1="2.0288" x2="1.2097" y2="2.0352" layer="21"/>
<rectangle x1="1.5907" y1="2.0288" x2="1.8066" y2="2.0352" layer="21"/>
<rectangle x1="1.9145" y1="2.0288" x2="3.7751" y2="2.0352" layer="21"/>
<rectangle x1="0.4413" y1="2.0352" x2="1.2097" y2="2.0415" layer="21"/>
<rectangle x1="1.5843" y1="2.0352" x2="1.8002" y2="2.0415" layer="21"/>
<rectangle x1="1.9145" y1="2.0352" x2="3.7751" y2="2.0415" layer="21"/>
<rectangle x1="0.435" y1="2.0415" x2="1.2033" y2="2.0479" layer="21"/>
<rectangle x1="1.578" y1="2.0415" x2="1.8002" y2="2.0479" layer="21"/>
<rectangle x1="1.9209" y1="2.0415" x2="3.7814" y2="2.0479" layer="21"/>
<rectangle x1="0.4286" y1="2.0479" x2="1.197" y2="2.0542" layer="21"/>
<rectangle x1="1.5716" y1="2.0479" x2="1.7939" y2="2.0542" layer="21"/>
<rectangle x1="1.9272" y1="2.0479" x2="3.7814" y2="2.0542" layer="21"/>
<rectangle x1="0.4286" y1="2.0542" x2="1.1906" y2="2.0606" layer="21"/>
<rectangle x1="1.5589" y1="2.0542" x2="1.7939" y2="2.0606" layer="21"/>
<rectangle x1="1.9336" y1="2.0542" x2="3.7878" y2="2.0606" layer="21"/>
<rectangle x1="0.4223" y1="2.0606" x2="1.1906" y2="2.0669" layer="21"/>
<rectangle x1="1.5526" y1="2.0606" x2="1.7875" y2="2.0669" layer="21"/>
<rectangle x1="1.9336" y1="2.0606" x2="3.7878" y2="2.0669" layer="21"/>
<rectangle x1="0.4159" y1="2.0669" x2="1.1843" y2="2.0733" layer="21"/>
<rectangle x1="1.5462" y1="2.0669" x2="1.7875" y2="2.0733" layer="21"/>
<rectangle x1="1.9399" y1="2.0669" x2="3.7941" y2="2.0733" layer="21"/>
<rectangle x1="0.4159" y1="2.0733" x2="1.1779" y2="2.0796" layer="21"/>
<rectangle x1="1.5335" y1="2.0733" x2="1.7875" y2="2.0796" layer="21"/>
<rectangle x1="1.9399" y1="2.0733" x2="3.7941" y2="2.0796" layer="21"/>
<rectangle x1="0.4096" y1="2.0796" x2="1.1779" y2="2.086" layer="21"/>
<rectangle x1="1.5272" y1="2.0796" x2="1.7875" y2="2.086" layer="21"/>
<rectangle x1="1.9463" y1="2.0796" x2="3.7941" y2="2.086" layer="21"/>
<rectangle x1="0.4032" y1="2.086" x2="1.1716" y2="2.0923" layer="21"/>
<rectangle x1="1.5145" y1="2.086" x2="1.7812" y2="2.0923" layer="21"/>
<rectangle x1="1.9463" y1="2.086" x2="3.7941" y2="2.0923" layer="21"/>
<rectangle x1="0.3969" y1="2.0923" x2="1.1716" y2="2.0987" layer="21"/>
<rectangle x1="1.5081" y1="2.0923" x2="1.7812" y2="2.0987" layer="21"/>
<rectangle x1="1.9526" y1="2.0923" x2="3.7941" y2="2.0987" layer="21"/>
<rectangle x1="0.3969" y1="2.0987" x2="1.1716" y2="2.105" layer="21"/>
<rectangle x1="1.4954" y1="2.0987" x2="1.7812" y2="2.105" layer="21"/>
<rectangle x1="1.9526" y1="2.0987" x2="3.7941" y2="2.105" layer="21"/>
<rectangle x1="0.3905" y1="2.105" x2="1.1652" y2="2.1114" layer="21"/>
<rectangle x1="1.4827" y1="2.105" x2="1.7812" y2="2.1114" layer="21"/>
<rectangle x1="1.959" y1="2.105" x2="3.7941" y2="2.1114" layer="21"/>
<rectangle x1="0.3842" y1="2.1114" x2="1.1652" y2="2.1177" layer="21"/>
<rectangle x1="1.47" y1="2.1114" x2="1.7748" y2="2.1177" layer="21"/>
<rectangle x1="1.959" y1="2.1114" x2="3.7941" y2="2.1177" layer="21"/>
<rectangle x1="0.3778" y1="2.1177" x2="1.1652" y2="2.1241" layer="21"/>
<rectangle x1="1.4573" y1="2.1177" x2="1.7748" y2="2.1241" layer="21"/>
<rectangle x1="1.9653" y1="2.1177" x2="3.7941" y2="2.1241" layer="21"/>
<rectangle x1="0.3778" y1="2.1241" x2="1.1652" y2="2.1304" layer="21"/>
<rectangle x1="1.451" y1="2.1241" x2="1.7748" y2="2.1304" layer="21"/>
<rectangle x1="1.9653" y1="2.1241" x2="3.7941" y2="2.1304" layer="21"/>
<rectangle x1="0.3715" y1="2.1304" x2="1.1652" y2="2.1368" layer="21"/>
<rectangle x1="1.4319" y1="2.1304" x2="1.7748" y2="2.1368" layer="21"/>
<rectangle x1="1.9717" y1="2.1304" x2="3.7941" y2="2.1368" layer="21"/>
<rectangle x1="0.3651" y1="2.1368" x2="1.1716" y2="2.1431" layer="21"/>
<rectangle x1="1.4192" y1="2.1368" x2="1.7748" y2="2.1431" layer="21"/>
<rectangle x1="1.9717" y1="2.1368" x2="3.7941" y2="2.1431" layer="21"/>
<rectangle x1="0.3588" y1="2.1431" x2="1.1716" y2="2.1495" layer="21"/>
<rectangle x1="1.4002" y1="2.1431" x2="1.7748" y2="2.1495" layer="21"/>
<rectangle x1="1.9717" y1="2.1431" x2="3.7878" y2="2.1495" layer="21"/>
<rectangle x1="0.3588" y1="2.1495" x2="1.1779" y2="2.1558" layer="21"/>
<rectangle x1="1.3875" y1="2.1495" x2="1.7748" y2="2.1558" layer="21"/>
<rectangle x1="1.9717" y1="2.1495" x2="3.7878" y2="2.1558" layer="21"/>
<rectangle x1="0.3524" y1="2.1558" x2="1.1843" y2="2.1622" layer="21"/>
<rectangle x1="1.3684" y1="2.1558" x2="1.7748" y2="2.1622" layer="21"/>
<rectangle x1="1.978" y1="2.1558" x2="3.7878" y2="2.1622" layer="21"/>
<rectangle x1="0.3461" y1="2.1622" x2="1.1906" y2="2.1685" layer="21"/>
<rectangle x1="1.3494" y1="2.1622" x2="1.7748" y2="2.1685" layer="21"/>
<rectangle x1="1.978" y1="2.1622" x2="3.7814" y2="2.1685" layer="21"/>
<rectangle x1="0.3461" y1="2.1685" x2="1.2097" y2="2.1749" layer="21"/>
<rectangle x1="1.3176" y1="2.1685" x2="1.7748" y2="2.1749" layer="21"/>
<rectangle x1="1.9844" y1="2.1685" x2="3.7814" y2="2.1749" layer="21"/>
<rectangle x1="0.3397" y1="2.1749" x2="1.2414" y2="2.1812" layer="21"/>
<rectangle x1="1.2732" y1="2.1749" x2="1.7748" y2="2.1812" layer="21"/>
<rectangle x1="1.9844" y1="2.1749" x2="3.7814" y2="2.1812" layer="21"/>
<rectangle x1="0.3334" y1="2.1812" x2="1.7748" y2="2.1876" layer="21"/>
<rectangle x1="1.9844" y1="2.1812" x2="3.7751" y2="2.1876" layer="21"/>
<rectangle x1="0.327" y1="2.1876" x2="1.7748" y2="2.1939" layer="21"/>
<rectangle x1="1.9844" y1="2.1876" x2="3.7687" y2="2.1939" layer="21"/>
<rectangle x1="0.327" y1="2.1939" x2="1.7748" y2="2.2003" layer="21"/>
<rectangle x1="1.9844" y1="2.1939" x2="3.7687" y2="2.2003" layer="21"/>
<rectangle x1="0.3207" y1="2.2003" x2="1.7748" y2="2.2066" layer="21"/>
<rectangle x1="1.9907" y1="2.2003" x2="3.7624" y2="2.2066" layer="21"/>
<rectangle x1="0.3143" y1="2.2066" x2="1.7748" y2="2.213" layer="21"/>
<rectangle x1="1.9907" y1="2.2066" x2="3.7497" y2="2.213" layer="21"/>
<rectangle x1="0.308" y1="2.213" x2="1.7748" y2="2.2193" layer="21"/>
<rectangle x1="1.9907" y1="2.213" x2="3.7433" y2="2.2193" layer="21"/>
<rectangle x1="0.308" y1="2.2193" x2="1.7748" y2="2.2257" layer="21"/>
<rectangle x1="1.9907" y1="2.2193" x2="3.7306" y2="2.2257" layer="21"/>
<rectangle x1="0.3016" y1="2.2257" x2="1.7748" y2="2.232" layer="21"/>
<rectangle x1="1.9971" y1="2.2257" x2="3.7243" y2="2.232" layer="21"/>
<rectangle x1="0.2953" y1="2.232" x2="1.7748" y2="2.2384" layer="21"/>
<rectangle x1="1.9971" y1="2.232" x2="3.7116" y2="2.2384" layer="21"/>
<rectangle x1="0.2889" y1="2.2384" x2="1.7748" y2="2.2447" layer="21"/>
<rectangle x1="1.9971" y1="2.2384" x2="3.6925" y2="2.2447" layer="21"/>
<rectangle x1="0.2889" y1="2.2447" x2="1.7748" y2="2.2511" layer="21"/>
<rectangle x1="1.9971" y1="2.2447" x2="3.6798" y2="2.2511" layer="21"/>
<rectangle x1="0.2826" y1="2.2511" x2="1.7748" y2="2.2574" layer="21"/>
<rectangle x1="1.9971" y1="2.2511" x2="3.6608" y2="2.2574" layer="21"/>
<rectangle x1="0.2762" y1="2.2574" x2="1.7748" y2="2.2638" layer="21"/>
<rectangle x1="1.9971" y1="2.2574" x2="3.6417" y2="2.2638" layer="21"/>
<rectangle x1="0.2762" y1="2.2638" x2="1.7748" y2="2.2701" layer="21"/>
<rectangle x1="1.9971" y1="2.2638" x2="3.6163" y2="2.2701" layer="21"/>
<rectangle x1="0.2699" y1="2.2701" x2="1.7812" y2="2.2765" layer="21"/>
<rectangle x1="2.0034" y1="2.2701" x2="3.6036" y2="2.2765" layer="21"/>
<rectangle x1="0.2635" y1="2.2765" x2="1.7812" y2="2.2828" layer="21"/>
<rectangle x1="2.0034" y1="2.2765" x2="3.5782" y2="2.2828" layer="21"/>
<rectangle x1="0.2572" y1="2.2828" x2="1.7812" y2="2.2892" layer="21"/>
<rectangle x1="2.0034" y1="2.2828" x2="3.5592" y2="2.2892" layer="21"/>
<rectangle x1="0.2572" y1="2.2892" x2="1.7812" y2="2.2955" layer="21"/>
<rectangle x1="2.0034" y1="2.2892" x2="3.5401" y2="2.2955" layer="21"/>
<rectangle x1="0.2508" y1="2.2955" x2="1.7812" y2="2.3019" layer="21"/>
<rectangle x1="2.0034" y1="2.2955" x2="3.5211" y2="2.3019" layer="21"/>
<rectangle x1="0.2445" y1="2.3019" x2="1.7812" y2="2.3082" layer="21"/>
<rectangle x1="2.0034" y1="2.3019" x2="3.4957" y2="2.3082" layer="21"/>
<rectangle x1="0.2381" y1="2.3082" x2="1.7875" y2="2.3146" layer="21"/>
<rectangle x1="2.0034" y1="2.3082" x2="3.483" y2="2.3146" layer="21"/>
<rectangle x1="0.2381" y1="2.3146" x2="1.7875" y2="2.3209" layer="21"/>
<rectangle x1="2.0034" y1="2.3146" x2="2.3146" y2="2.3209" layer="21"/>
<rectangle x1="2.3209" y1="2.3146" x2="3.4639" y2="2.3209" layer="21"/>
<rectangle x1="0.2318" y1="2.3209" x2="1.7875" y2="2.3273" layer="21"/>
<rectangle x1="2.0034" y1="2.3209" x2="2.3209" y2="2.3273" layer="21"/>
<rectangle x1="2.3336" y1="2.3209" x2="3.4385" y2="2.3273" layer="21"/>
<rectangle x1="0.2254" y1="2.3273" x2="1.7875" y2="2.3336" layer="21"/>
<rectangle x1="2.0034" y1="2.3273" x2="2.3273" y2="2.3336" layer="21"/>
<rectangle x1="2.34" y1="2.3273" x2="3.4258" y2="2.3336" layer="21"/>
<rectangle x1="0.2191" y1="2.3336" x2="1.7875" y2="2.34" layer="21"/>
<rectangle x1="2.0034" y1="2.3336" x2="2.3336" y2="2.34" layer="21"/>
<rectangle x1="2.3463" y1="2.3336" x2="3.4004" y2="2.34" layer="21"/>
<rectangle x1="0.2191" y1="2.34" x2="1.7939" y2="2.3463" layer="21"/>
<rectangle x1="2.0034" y1="2.34" x2="2.3336" y2="2.3463" layer="21"/>
<rectangle x1="2.3527" y1="2.34" x2="3.3814" y2="2.3463" layer="21"/>
<rectangle x1="0.2127" y1="2.3463" x2="1.7939" y2="2.3527" layer="21"/>
<rectangle x1="2.0034" y1="2.3463" x2="2.34" y2="2.3527" layer="21"/>
<rectangle x1="2.3654" y1="2.3463" x2="3.3623" y2="2.3527" layer="21"/>
<rectangle x1="0.2064" y1="2.3527" x2="1.7939" y2="2.359" layer="21"/>
<rectangle x1="2.0034" y1="2.3527" x2="2.3463" y2="2.359" layer="21"/>
<rectangle x1="2.3717" y1="2.3527" x2="3.3433" y2="2.359" layer="21"/>
<rectangle x1="0.2" y1="2.359" x2="1.8002" y2="2.3654" layer="21"/>
<rectangle x1="2.0034" y1="2.359" x2="2.3527" y2="2.3654" layer="21"/>
<rectangle x1="2.3781" y1="2.359" x2="3.3179" y2="2.3654" layer="21"/>
<rectangle x1="0.2" y1="2.3654" x2="1.8002" y2="2.3717" layer="21"/>
<rectangle x1="2.0034" y1="2.3654" x2="2.359" y2="2.3717" layer="21"/>
<rectangle x1="2.3844" y1="2.3654" x2="3.3052" y2="2.3717" layer="21"/>
<rectangle x1="0.1937" y1="2.3717" x2="1.8002" y2="2.3781" layer="21"/>
<rectangle x1="2.0034" y1="2.3717" x2="2.359" y2="2.3781" layer="21"/>
<rectangle x1="2.3971" y1="2.3717" x2="3.2798" y2="2.3781" layer="21"/>
<rectangle x1="0.1873" y1="2.3781" x2="1.8002" y2="2.3844" layer="21"/>
<rectangle x1="2.0034" y1="2.3781" x2="2.3654" y2="2.3844" layer="21"/>
<rectangle x1="2.4035" y1="2.3781" x2="3.2607" y2="2.3844" layer="21"/>
<rectangle x1="0.181" y1="2.3844" x2="1.8066" y2="2.3908" layer="21"/>
<rectangle x1="2.0034" y1="2.3844" x2="2.3717" y2="2.3908" layer="21"/>
<rectangle x1="2.4098" y1="2.3844" x2="3.2417" y2="2.3908" layer="21"/>
<rectangle x1="0.181" y1="2.3908" x2="1.8066" y2="2.3971" layer="21"/>
<rectangle x1="2.0034" y1="2.3908" x2="2.3781" y2="2.3971" layer="21"/>
<rectangle x1="2.4225" y1="2.3908" x2="3.2226" y2="2.3971" layer="21"/>
<rectangle x1="0.1746" y1="2.3971" x2="1.8129" y2="2.4035" layer="21"/>
<rectangle x1="2.0034" y1="2.3971" x2="2.3781" y2="2.4035" layer="21"/>
<rectangle x1="2.4289" y1="2.3971" x2="3.2036" y2="2.4035" layer="21"/>
<rectangle x1="0.1683" y1="2.4035" x2="1.8129" y2="2.4098" layer="21"/>
<rectangle x1="2.0034" y1="2.4035" x2="2.3844" y2="2.4098" layer="21"/>
<rectangle x1="2.4416" y1="2.4035" x2="3.1782" y2="2.4098" layer="21"/>
<rectangle x1="0.1683" y1="2.4098" x2="1.8129" y2="2.4162" layer="21"/>
<rectangle x1="2.0034" y1="2.4098" x2="2.3908" y2="2.4162" layer="21"/>
<rectangle x1="2.4479" y1="2.4098" x2="3.1655" y2="2.4162" layer="21"/>
<rectangle x1="0.1619" y1="2.4162" x2="1.8193" y2="2.4225" layer="21"/>
<rectangle x1="1.9971" y1="2.4162" x2="2.3971" y2="2.4225" layer="21"/>
<rectangle x1="2.4606" y1="2.4162" x2="3.1401" y2="2.4225" layer="21"/>
<rectangle x1="0.1556" y1="2.4225" x2="1.8193" y2="2.4289" layer="21"/>
<rectangle x1="1.9971" y1="2.4225" x2="2.3971" y2="2.4289" layer="21"/>
<rectangle x1="2.4733" y1="2.4225" x2="3.121" y2="2.4289" layer="21"/>
<rectangle x1="0.1492" y1="2.4289" x2="1.8256" y2="2.4352" layer="21"/>
<rectangle x1="1.9971" y1="2.4289" x2="2.4035" y2="2.4352" layer="21"/>
<rectangle x1="2.486" y1="2.4289" x2="3.102" y2="2.4352" layer="21"/>
<rectangle x1="0.1492" y1="2.4352" x2="1.8256" y2="2.4416" layer="21"/>
<rectangle x1="1.9971" y1="2.4352" x2="2.4098" y2="2.4416" layer="21"/>
<rectangle x1="2.4924" y1="2.4352" x2="3.0829" y2="2.4416" layer="21"/>
<rectangle x1="0.1429" y1="2.4416" x2="1.4954" y2="2.4479" layer="21"/>
<rectangle x1="1.5018" y1="2.4416" x2="1.832" y2="2.4479" layer="21"/>
<rectangle x1="1.9971" y1="2.4416" x2="2.4098" y2="2.4479" layer="21"/>
<rectangle x1="2.5114" y1="2.4416" x2="3.0575" y2="2.4479" layer="21"/>
<rectangle x1="0.1365" y1="2.4479" x2="1.4891" y2="2.4543" layer="21"/>
<rectangle x1="1.4954" y1="2.4479" x2="1.832" y2="2.4543" layer="21"/>
<rectangle x1="1.9907" y1="2.4479" x2="2.4162" y2="2.4543" layer="21"/>
<rectangle x1="2.5241" y1="2.4479" x2="3.0448" y2="2.4543" layer="21"/>
<rectangle x1="0.1302" y1="2.4543" x2="1.4827" y2="2.4606" layer="21"/>
<rectangle x1="1.4954" y1="2.4543" x2="1.8383" y2="2.4606" layer="21"/>
<rectangle x1="1.9907" y1="2.4543" x2="2.4225" y2="2.4606" layer="21"/>
<rectangle x1="2.5432" y1="2.4543" x2="3.0194" y2="2.4606" layer="21"/>
<rectangle x1="0.1302" y1="2.4606" x2="1.4827" y2="2.467" layer="21"/>
<rectangle x1="1.4891" y1="2.4606" x2="1.8383" y2="2.467" layer="21"/>
<rectangle x1="1.9907" y1="2.4606" x2="2.4225" y2="2.467" layer="21"/>
<rectangle x1="2.5559" y1="2.4606" x2="3.0004" y2="2.467" layer="21"/>
<rectangle x1="0.1238" y1="2.467" x2="1.4764" y2="2.4733" layer="21"/>
<rectangle x1="1.4891" y1="2.467" x2="1.8447" y2="2.4733" layer="21"/>
<rectangle x1="1.9844" y1="2.467" x2="2.4289" y2="2.4733" layer="21"/>
<rectangle x1="2.5749" y1="2.467" x2="2.9813" y2="2.4733" layer="21"/>
<rectangle x1="0.1175" y1="2.4733" x2="1.47" y2="2.4797" layer="21"/>
<rectangle x1="1.4891" y1="2.4733" x2="1.851" y2="2.4797" layer="21"/>
<rectangle x1="1.9844" y1="2.4733" x2="2.4289" y2="2.4797" layer="21"/>
<rectangle x1="2.6003" y1="2.4733" x2="2.9496" y2="2.4797" layer="21"/>
<rectangle x1="0.1111" y1="2.4797" x2="1.47" y2="2.486" layer="21"/>
<rectangle x1="1.4827" y1="2.4797" x2="1.851" y2="2.486" layer="21"/>
<rectangle x1="1.9844" y1="2.4797" x2="2.4352" y2="2.486" layer="21"/>
<rectangle x1="2.6257" y1="2.4797" x2="2.9178" y2="2.486" layer="21"/>
<rectangle x1="0.1111" y1="2.486" x2="1.4637" y2="2.4924" layer="21"/>
<rectangle x1="1.4827" y1="2.486" x2="1.8574" y2="2.4924" layer="21"/>
<rectangle x1="1.978" y1="2.486" x2="2.4352" y2="2.4924" layer="21"/>
<rectangle x1="2.6638" y1="2.486" x2="2.8734" y2="2.4924" layer="21"/>
<rectangle x1="0.1048" y1="2.4924" x2="1.4573" y2="2.4987" layer="21"/>
<rectangle x1="1.4827" y1="2.4924" x2="1.8637" y2="2.4987" layer="21"/>
<rectangle x1="1.9717" y1="2.4924" x2="2.4416" y2="2.4987" layer="21"/>
<rectangle x1="2.721" y1="2.4924" x2="2.8099" y2="2.4987" layer="21"/>
<rectangle x1="0.0984" y1="2.4987" x2="1.4573" y2="2.5051" layer="21"/>
<rectangle x1="1.4764" y1="2.4987" x2="1.8701" y2="2.5051" layer="21"/>
<rectangle x1="1.9717" y1="2.4987" x2="2.4416" y2="2.5051" layer="21"/>
<rectangle x1="0.0984" y1="2.5051" x2="1.451" y2="2.5114" layer="21"/>
<rectangle x1="1.4764" y1="2.5051" x2="1.8764" y2="2.5114" layer="21"/>
<rectangle x1="1.9653" y1="2.5051" x2="2.4479" y2="2.5114" layer="21"/>
<rectangle x1="0.0921" y1="2.5114" x2="1.4446" y2="2.5178" layer="21"/>
<rectangle x1="1.4764" y1="2.5114" x2="1.8828" y2="2.5178" layer="21"/>
<rectangle x1="1.959" y1="2.5114" x2="2.4479" y2="2.5178" layer="21"/>
<rectangle x1="0.0857" y1="2.5178" x2="1.4446" y2="2.5241" layer="21"/>
<rectangle x1="1.47" y1="2.5178" x2="1.8891" y2="2.5241" layer="21"/>
<rectangle x1="1.9526" y1="2.5178" x2="2.4479" y2="2.5241" layer="21"/>
<rectangle x1="0.0794" y1="2.5241" x2="1.4383" y2="2.5305" layer="21"/>
<rectangle x1="1.47" y1="2.5241" x2="1.9018" y2="2.5305" layer="21"/>
<rectangle x1="1.9463" y1="2.5241" x2="2.4543" y2="2.5305" layer="21"/>
<rectangle x1="0.0794" y1="2.5305" x2="1.4319" y2="2.5368" layer="21"/>
<rectangle x1="1.4637" y1="2.5305" x2="2.4543" y2="2.5368" layer="21"/>
<rectangle x1="0.073" y1="2.5368" x2="1.4319" y2="2.5432" layer="21"/>
<rectangle x1="1.4637" y1="2.5368" x2="2.4606" y2="2.5432" layer="21"/>
<rectangle x1="0.0667" y1="2.5432" x2="1.4256" y2="2.5495" layer="21"/>
<rectangle x1="1.4637" y1="2.5432" x2="2.4606" y2="2.5495" layer="21"/>
<rectangle x1="0.0667" y1="2.5495" x2="1.4192" y2="2.5559" layer="21"/>
<rectangle x1="1.4573" y1="2.5495" x2="2.4606" y2="2.5559" layer="21"/>
<rectangle x1="0.0603" y1="2.5559" x2="1.4129" y2="2.5622" layer="21"/>
<rectangle x1="1.4573" y1="2.5559" x2="2.467" y2="2.5622" layer="21"/>
<rectangle x1="0.054" y1="2.5622" x2="1.4129" y2="2.5686" layer="21"/>
<rectangle x1="1.4573" y1="2.5622" x2="2.467" y2="2.5686" layer="21"/>
<rectangle x1="0.0476" y1="2.5686" x2="1.4065" y2="2.5749" layer="21"/>
<rectangle x1="1.451" y1="2.5686" x2="2.467" y2="2.5749" layer="21"/>
<rectangle x1="0.0476" y1="2.5749" x2="1.4002" y2="2.5813" layer="21"/>
<rectangle x1="1.451" y1="2.5749" x2="2.4733" y2="2.5813" layer="21"/>
<rectangle x1="0.0413" y1="2.5813" x2="1.3938" y2="2.5876" layer="21"/>
<rectangle x1="1.451" y1="2.5813" x2="2.4733" y2="2.5876" layer="21"/>
<rectangle x1="0.0413" y1="2.5876" x2="1.3875" y2="2.594" layer="21"/>
<rectangle x1="1.451" y1="2.5876" x2="2.4733" y2="2.594" layer="21"/>
<rectangle x1="0.0349" y1="2.594" x2="1.3811" y2="2.6003" layer="21"/>
<rectangle x1="1.4446" y1="2.594" x2="2.4733" y2="2.6003" layer="21"/>
<rectangle x1="0.0349" y1="2.6003" x2="1.3748" y2="2.6067" layer="21"/>
<rectangle x1="1.4446" y1="2.6003" x2="2.4797" y2="2.6067" layer="21"/>
<rectangle x1="0.0286" y1="2.6067" x2="1.3684" y2="2.613" layer="21"/>
<rectangle x1="1.4446" y1="2.6067" x2="2.4797" y2="2.613" layer="21"/>
<rectangle x1="0.0286" y1="2.613" x2="1.3621" y2="2.6194" layer="21"/>
<rectangle x1="1.4446" y1="2.613" x2="2.4797" y2="2.6194" layer="21"/>
<rectangle x1="0.0222" y1="2.6194" x2="1.3557" y2="2.6257" layer="21"/>
<rectangle x1="1.4383" y1="2.6194" x2="2.4797" y2="2.6257" layer="21"/>
<rectangle x1="0.0222" y1="2.6257" x2="1.3494" y2="2.6321" layer="21"/>
<rectangle x1="1.4383" y1="2.6257" x2="2.486" y2="2.6321" layer="21"/>
<rectangle x1="0.0222" y1="2.6321" x2="1.343" y2="2.6384" layer="21"/>
<rectangle x1="1.4383" y1="2.6321" x2="2.486" y2="2.6384" layer="21"/>
<rectangle x1="0.0222" y1="2.6384" x2="1.3367" y2="2.6448" layer="21"/>
<rectangle x1="1.4383" y1="2.6384" x2="2.486" y2="2.6448" layer="21"/>
<rectangle x1="0.0159" y1="2.6448" x2="1.3303" y2="2.6511" layer="21"/>
<rectangle x1="1.4383" y1="2.6448" x2="2.486" y2="2.6511" layer="21"/>
<rectangle x1="0.0159" y1="2.6511" x2="1.3176" y2="2.6575" layer="21"/>
<rectangle x1="1.4319" y1="2.6511" x2="2.486" y2="2.6575" layer="21"/>
<rectangle x1="0.0159" y1="2.6575" x2="1.3113" y2="2.6638" layer="21"/>
<rectangle x1="1.4319" y1="2.6575" x2="2.4924" y2="2.6638" layer="21"/>
<rectangle x1="0.0159" y1="2.6638" x2="1.3049" y2="2.6702" layer="21"/>
<rectangle x1="1.4319" y1="2.6638" x2="2.4924" y2="2.6702" layer="21"/>
<rectangle x1="0.0159" y1="2.6702" x2="1.2922" y2="2.6765" layer="21"/>
<rectangle x1="1.4319" y1="2.6702" x2="2.4924" y2="2.6765" layer="21"/>
<rectangle x1="0.0222" y1="2.6765" x2="1.2859" y2="2.6829" layer="21"/>
<rectangle x1="1.4319" y1="2.6765" x2="2.4924" y2="2.6829" layer="21"/>
<rectangle x1="0.0222" y1="2.6829" x2="1.2732" y2="2.6892" layer="21"/>
<rectangle x1="1.4319" y1="2.6829" x2="2.4924" y2="2.6892" layer="21"/>
<rectangle x1="0.0222" y1="2.6892" x2="1.2668" y2="2.6956" layer="21"/>
<rectangle x1="1.4319" y1="2.6892" x2="2.4924" y2="2.6956" layer="21"/>
<rectangle x1="0.0222" y1="2.6956" x2="1.2541" y2="2.7019" layer="21"/>
<rectangle x1="1.4319" y1="2.6956" x2="2.4924" y2="2.7019" layer="21"/>
<rectangle x1="0.0286" y1="2.7019" x2="1.2414" y2="2.7083" layer="21"/>
<rectangle x1="1.4319" y1="2.7019" x2="2.4924" y2="2.7083" layer="21"/>
<rectangle x1="0.0286" y1="2.7083" x2="1.2287" y2="2.7146" layer="21"/>
<rectangle x1="1.4319" y1="2.7083" x2="2.4924" y2="2.7146" layer="21"/>
<rectangle x1="0.0286" y1="2.7146" x2="1.216" y2="2.721" layer="21"/>
<rectangle x1="1.4319" y1="2.7146" x2="2.4924" y2="2.721" layer="21"/>
<rectangle x1="0.0349" y1="2.721" x2="1.2033" y2="2.7273" layer="21"/>
<rectangle x1="1.4319" y1="2.721" x2="2.4987" y2="2.7273" layer="21"/>
<rectangle x1="0.0413" y1="2.7273" x2="1.1906" y2="2.7337" layer="21"/>
<rectangle x1="1.4319" y1="2.7273" x2="2.4987" y2="2.7337" layer="21"/>
<rectangle x1="0.0413" y1="2.7337" x2="1.1716" y2="2.74" layer="21"/>
<rectangle x1="1.4319" y1="2.7337" x2="2.4987" y2="2.74" layer="21"/>
<rectangle x1="0.0476" y1="2.74" x2="1.1589" y2="2.7464" layer="21"/>
<rectangle x1="1.4319" y1="2.74" x2="2.4987" y2="2.7464" layer="21"/>
<rectangle x1="0.054" y1="2.7464" x2="1.1398" y2="2.7527" layer="21"/>
<rectangle x1="1.4319" y1="2.7464" x2="2.4987" y2="2.7527" layer="21"/>
<rectangle x1="0.054" y1="2.7527" x2="1.1208" y2="2.7591" layer="21"/>
<rectangle x1="1.4319" y1="2.7527" x2="2.4987" y2="2.7591" layer="21"/>
<rectangle x1="0.0603" y1="2.7591" x2="1.1017" y2="2.7654" layer="21"/>
<rectangle x1="1.4319" y1="2.7591" x2="2.4987" y2="2.7654" layer="21"/>
<rectangle x1="0.0667" y1="2.7654" x2="1.0763" y2="2.7718" layer="21"/>
<rectangle x1="1.4319" y1="2.7654" x2="2.4987" y2="2.7718" layer="21"/>
<rectangle x1="0.0794" y1="2.7718" x2="1.0509" y2="2.7781" layer="21"/>
<rectangle x1="1.4319" y1="2.7718" x2="2.4987" y2="2.7781" layer="21"/>
<rectangle x1="0.0921" y1="2.7781" x2="1.0192" y2="2.7845" layer="21"/>
<rectangle x1="1.4319" y1="2.7781" x2="2.4987" y2="2.7845" layer="21"/>
<rectangle x1="0.1048" y1="2.7845" x2="0.9811" y2="2.7908" layer="21"/>
<rectangle x1="1.4319" y1="2.7845" x2="2.4987" y2="2.7908" layer="21"/>
<rectangle x1="0.1302" y1="2.7908" x2="0.9239" y2="2.7972" layer="21"/>
<rectangle x1="1.4319" y1="2.7908" x2="2.4987" y2="2.7972" layer="21"/>
<rectangle x1="1.4319" y1="2.7972" x2="2.4987" y2="2.8035" layer="21"/>
<rectangle x1="1.4319" y1="2.8035" x2="2.4987" y2="2.8099" layer="21"/>
<rectangle x1="1.4383" y1="2.8099" x2="2.4924" y2="2.8162" layer="21"/>
<rectangle x1="1.4383" y1="2.8162" x2="2.4924" y2="2.8226" layer="21"/>
<rectangle x1="1.4383" y1="2.8226" x2="2.4924" y2="2.8289" layer="21"/>
<rectangle x1="1.4383" y1="2.8289" x2="2.4924" y2="2.8353" layer="21"/>
<rectangle x1="1.4383" y1="2.8353" x2="2.4924" y2="2.8416" layer="21"/>
<rectangle x1="1.4446" y1="2.8416" x2="2.4924" y2="2.848" layer="21"/>
<rectangle x1="1.4446" y1="2.848" x2="2.4924" y2="2.8543" layer="21"/>
<rectangle x1="1.4446" y1="2.8543" x2="2.4924" y2="2.8607" layer="21"/>
<rectangle x1="1.4446" y1="2.8607" x2="2.4924" y2="2.867" layer="21"/>
<rectangle x1="1.4446" y1="2.867" x2="2.4924" y2="2.8734" layer="21"/>
<rectangle x1="1.451" y1="2.8734" x2="2.4924" y2="2.8797" layer="21"/>
<rectangle x1="1.451" y1="2.8797" x2="2.486" y2="2.8861" layer="21"/>
<rectangle x1="1.451" y1="2.8861" x2="2.486" y2="2.8924" layer="21"/>
<rectangle x1="1.451" y1="2.8924" x2="2.486" y2="2.8988" layer="21"/>
<rectangle x1="1.4573" y1="2.8988" x2="2.486" y2="2.9051" layer="21"/>
<rectangle x1="1.4573" y1="2.9051" x2="2.486" y2="2.9115" layer="21"/>
<rectangle x1="1.4573" y1="2.9115" x2="2.486" y2="2.9178" layer="21"/>
<rectangle x1="1.4637" y1="2.9178" x2="2.4797" y2="2.9242" layer="21"/>
<rectangle x1="1.4637" y1="2.9242" x2="2.4797" y2="2.9305" layer="21"/>
<rectangle x1="1.4637" y1="2.9305" x2="2.4797" y2="2.9369" layer="21"/>
<rectangle x1="1.47" y1="2.9369" x2="2.4797" y2="2.9432" layer="21"/>
<rectangle x1="1.47" y1="2.9432" x2="2.4797" y2="2.9496" layer="21"/>
<rectangle x1="1.47" y1="2.9496" x2="2.4733" y2="2.9559" layer="21"/>
<rectangle x1="1.4764" y1="2.9559" x2="2.4733" y2="2.9623" layer="21"/>
<rectangle x1="1.4764" y1="2.9623" x2="2.4733" y2="2.9686" layer="21"/>
<rectangle x1="1.4764" y1="2.9686" x2="2.4733" y2="2.975" layer="21"/>
<rectangle x1="1.4827" y1="2.975" x2="2.4733" y2="2.9813" layer="21"/>
<rectangle x1="1.4827" y1="2.9813" x2="2.467" y2="2.9877" layer="21"/>
<rectangle x1="1.4891" y1="2.9877" x2="2.467" y2="2.994" layer="21"/>
<rectangle x1="1.4891" y1="2.994" x2="2.467" y2="3.0004" layer="21"/>
<rectangle x1="1.4891" y1="3.0004" x2="2.4606" y2="3.0067" layer="21"/>
<rectangle x1="1.4954" y1="3.0067" x2="2.4606" y2="3.0131" layer="21"/>
<rectangle x1="1.4954" y1="3.0131" x2="2.4606" y2="3.0194" layer="21"/>
<rectangle x1="1.5018" y1="3.0194" x2="2.4606" y2="3.0258" layer="21"/>
<rectangle x1="1.5018" y1="3.0258" x2="2.4543" y2="3.0321" layer="21"/>
<rectangle x1="1.5081" y1="3.0321" x2="2.4543" y2="3.0385" layer="21"/>
<rectangle x1="1.5081" y1="3.0385" x2="2.4479" y2="3.0448" layer="21"/>
<rectangle x1="1.5145" y1="3.0448" x2="2.4479" y2="3.0512" layer="21"/>
<rectangle x1="1.5145" y1="3.0512" x2="2.4479" y2="3.0575" layer="21"/>
<rectangle x1="1.5208" y1="3.0575" x2="2.4479" y2="3.0639" layer="21"/>
<rectangle x1="1.5208" y1="3.0639" x2="2.4416" y2="3.0702" layer="21"/>
<rectangle x1="1.5272" y1="3.0702" x2="2.4416" y2="3.0766" layer="21"/>
<rectangle x1="1.5272" y1="3.0766" x2="2.4416" y2="3.0829" layer="21"/>
<rectangle x1="1.5335" y1="3.0829" x2="2.4352" y2="3.0893" layer="21"/>
<rectangle x1="1.5335" y1="3.0893" x2="2.4352" y2="3.0956" layer="21"/>
<rectangle x1="1.5399" y1="3.0956" x2="2.4352" y2="3.102" layer="21"/>
<rectangle x1="1.5462" y1="3.102" x2="2.4289" y2="3.1083" layer="21"/>
<rectangle x1="1.5462" y1="3.1083" x2="2.4289" y2="3.1147" layer="21"/>
<rectangle x1="1.5526" y1="3.1147" x2="2.4289" y2="3.121" layer="21"/>
<rectangle x1="1.5589" y1="3.121" x2="2.4225" y2="3.1274" layer="21"/>
<rectangle x1="1.5589" y1="3.1274" x2="2.4225" y2="3.1337" layer="21"/>
<rectangle x1="1.5653" y1="3.1337" x2="2.4225" y2="3.1401" layer="21"/>
<rectangle x1="1.5653" y1="3.1401" x2="2.4162" y2="3.1464" layer="21"/>
<rectangle x1="1.5716" y1="3.1464" x2="2.4162" y2="3.1528" layer="21"/>
<rectangle x1="1.578" y1="3.1528" x2="2.4162" y2="3.1591" layer="21"/>
<rectangle x1="1.578" y1="3.1591" x2="2.4098" y2="3.1655" layer="21"/>
<rectangle x1="1.5843" y1="3.1655" x2="2.4098" y2="3.1718" layer="21"/>
<rectangle x1="1.5907" y1="3.1718" x2="2.4098" y2="3.1782" layer="21"/>
<rectangle x1="1.597" y1="3.1782" x2="2.4035" y2="3.1845" layer="21"/>
<rectangle x1="1.597" y1="3.1845" x2="2.4035" y2="3.1909" layer="21"/>
<rectangle x1="1.6034" y1="3.1909" x2="2.4035" y2="3.1972" layer="21"/>
<rectangle x1="1.6097" y1="3.1972" x2="2.4035" y2="3.2036" layer="21"/>
<rectangle x1="1.6161" y1="3.2036" x2="2.3971" y2="3.2099" layer="21"/>
<rectangle x1="1.6161" y1="3.2099" x2="2.3971" y2="3.2163" layer="21"/>
<rectangle x1="1.6224" y1="3.2163" x2="2.3908" y2="3.2226" layer="21"/>
<rectangle x1="1.6288" y1="3.2226" x2="2.3908" y2="3.229" layer="21"/>
<rectangle x1="1.6288" y1="3.229" x2="2.3908" y2="3.2353" layer="21"/>
<rectangle x1="1.6351" y1="3.2353" x2="2.3908" y2="3.2417" layer="21"/>
<rectangle x1="1.6415" y1="3.2417" x2="2.3844" y2="3.248" layer="21"/>
<rectangle x1="1.6478" y1="3.248" x2="2.3844" y2="3.2544" layer="21"/>
<rectangle x1="1.6478" y1="3.2544" x2="2.3844" y2="3.2607" layer="21"/>
<rectangle x1="1.6542" y1="3.2607" x2="2.3781" y2="3.2671" layer="21"/>
<rectangle x1="1.6605" y1="3.2671" x2="2.3781" y2="3.2734" layer="21"/>
<rectangle x1="1.6669" y1="3.2734" x2="2.3781" y2="3.2798" layer="21"/>
<rectangle x1="1.6669" y1="3.2798" x2="2.3717" y2="3.2861" layer="21"/>
<rectangle x1="1.6732" y1="3.2861" x2="2.3717" y2="3.2925" layer="21"/>
<rectangle x1="1.6796" y1="3.2925" x2="2.3717" y2="3.2988" layer="21"/>
<rectangle x1="1.6796" y1="3.2988" x2="2.3654" y2="3.3052" layer="21"/>
<rectangle x1="1.6859" y1="3.3052" x2="2.3654" y2="3.3115" layer="21"/>
<rectangle x1="1.6923" y1="3.3115" x2="2.3654" y2="3.3179" layer="21"/>
<rectangle x1="1.6923" y1="3.3179" x2="2.359" y2="3.3242" layer="21"/>
<rectangle x1="1.6986" y1="3.3242" x2="2.359" y2="3.3306" layer="21"/>
<rectangle x1="1.705" y1="3.3306" x2="2.359" y2="3.3369" layer="21"/>
<rectangle x1="1.7113" y1="3.3369" x2="2.3527" y2="3.3433" layer="21"/>
<rectangle x1="1.7113" y1="3.3433" x2="2.3527" y2="3.3496" layer="21"/>
<rectangle x1="1.7177" y1="3.3496" x2="2.3527" y2="3.356" layer="21"/>
<rectangle x1="1.724" y1="3.356" x2="2.3527" y2="3.3623" layer="21"/>
<rectangle x1="1.724" y1="3.3623" x2="2.3463" y2="3.3687" layer="21"/>
<rectangle x1="1.7304" y1="3.3687" x2="2.3463" y2="3.375" layer="21"/>
<rectangle x1="1.7367" y1="3.375" x2="2.3463" y2="3.3814" layer="21"/>
<rectangle x1="1.7431" y1="3.3814" x2="2.34" y2="3.3877" layer="21"/>
<rectangle x1="1.7431" y1="3.3877" x2="2.34" y2="3.3941" layer="21"/>
<rectangle x1="1.7494" y1="3.3941" x2="2.34" y2="3.4004" layer="21"/>
<rectangle x1="1.7558" y1="3.4004" x2="2.3336" y2="3.4068" layer="21"/>
<rectangle x1="1.7621" y1="3.4068" x2="2.3336" y2="3.4131" layer="21"/>
<rectangle x1="1.7621" y1="3.4131" x2="2.3336" y2="3.4195" layer="21"/>
<rectangle x1="1.7685" y1="3.4195" x2="2.3273" y2="3.4258" layer="21"/>
<rectangle x1="1.7748" y1="3.4258" x2="2.3273" y2="3.4322" layer="21"/>
<rectangle x1="1.7748" y1="3.4322" x2="2.3273" y2="3.4385" layer="21"/>
<rectangle x1="1.7812" y1="3.4385" x2="2.3209" y2="3.4449" layer="21"/>
<rectangle x1="1.7875" y1="3.4449" x2="2.3209" y2="3.4512" layer="21"/>
<rectangle x1="1.7939" y1="3.4512" x2="2.3209" y2="3.4576" layer="21"/>
<rectangle x1="1.7939" y1="3.4576" x2="2.3146" y2="3.4639" layer="21"/>
<rectangle x1="1.8002" y1="3.4639" x2="2.3146" y2="3.4703" layer="21"/>
<rectangle x1="1.8066" y1="3.4703" x2="2.3146" y2="3.4766" layer="21"/>
<rectangle x1="1.8066" y1="3.4766" x2="2.3082" y2="3.483" layer="21"/>
<rectangle x1="1.8129" y1="3.483" x2="2.3082" y2="3.4893" layer="21"/>
<rectangle x1="1.8193" y1="3.4893" x2="2.3082" y2="3.4957" layer="21"/>
<rectangle x1="1.8256" y1="3.4957" x2="2.3019" y2="3.502" layer="21"/>
<rectangle x1="1.8256" y1="3.502" x2="2.3019" y2="3.5084" layer="21"/>
<rectangle x1="1.832" y1="3.5084" x2="2.3019" y2="3.5147" layer="21"/>
<rectangle x1="1.8383" y1="3.5147" x2="2.2955" y2="3.5211" layer="21"/>
<rectangle x1="1.8447" y1="3.5211" x2="2.2955" y2="3.5274" layer="21"/>
<rectangle x1="1.8447" y1="3.5274" x2="2.2955" y2="3.5338" layer="21"/>
<rectangle x1="1.851" y1="3.5338" x2="2.2955" y2="3.5401" layer="21"/>
<rectangle x1="1.8574" y1="3.5401" x2="2.2892" y2="3.5465" layer="21"/>
<rectangle x1="1.8574" y1="3.5465" x2="2.2892" y2="3.5528" layer="21"/>
<rectangle x1="1.8637" y1="3.5528" x2="2.2828" y2="3.5592" layer="21"/>
<rectangle x1="1.8701" y1="3.5592" x2="2.2828" y2="3.5655" layer="21"/>
<rectangle x1="1.8701" y1="3.5655" x2="2.2828" y2="3.5719" layer="21"/>
<rectangle x1="1.8764" y1="3.5719" x2="2.2828" y2="3.5782" layer="21"/>
<rectangle x1="1.8828" y1="3.5782" x2="2.2765" y2="3.5846" layer="21"/>
<rectangle x1="1.8891" y1="3.5846" x2="2.2765" y2="3.5909" layer="21"/>
<rectangle x1="1.8891" y1="3.5909" x2="2.2765" y2="3.5973" layer="21"/>
<rectangle x1="1.8955" y1="3.5973" x2="2.2701" y2="3.6036" layer="21"/>
<rectangle x1="1.9018" y1="3.6036" x2="2.2701" y2="3.61" layer="21"/>
<rectangle x1="1.9018" y1="3.61" x2="2.2701" y2="3.6163" layer="21"/>
<rectangle x1="1.9082" y1="3.6163" x2="2.2638" y2="3.6227" layer="21"/>
<rectangle x1="1.9145" y1="3.6227" x2="2.2638" y2="3.629" layer="21"/>
<rectangle x1="1.9209" y1="3.629" x2="2.2638" y2="3.6354" layer="21"/>
<rectangle x1="1.9209" y1="3.6354" x2="2.2574" y2="3.6417" layer="21"/>
<rectangle x1="1.9272" y1="3.6417" x2="2.2574" y2="3.6481" layer="21"/>
<rectangle x1="1.9336" y1="3.6481" x2="2.2574" y2="3.6544" layer="21"/>
<rectangle x1="1.9399" y1="3.6544" x2="2.2511" y2="3.6608" layer="21"/>
<rectangle x1="1.9399" y1="3.6608" x2="2.2511" y2="3.6671" layer="21"/>
<rectangle x1="1.9463" y1="3.6671" x2="2.2511" y2="3.6735" layer="21"/>
<rectangle x1="1.9526" y1="3.6735" x2="2.2447" y2="3.6798" layer="21"/>
<rectangle x1="1.9526" y1="3.6798" x2="2.2447" y2="3.6862" layer="21"/>
<rectangle x1="1.959" y1="3.6862" x2="2.2447" y2="3.6925" layer="21"/>
<rectangle x1="1.9653" y1="3.6925" x2="2.2384" y2="3.6989" layer="21"/>
<rectangle x1="1.9717" y1="3.6989" x2="2.2384" y2="3.7052" layer="21"/>
<rectangle x1="1.9717" y1="3.7052" x2="2.232" y2="3.7116" layer="21"/>
<rectangle x1="1.978" y1="3.7116" x2="2.232" y2="3.7179" layer="21"/>
<rectangle x1="1.9844" y1="3.7179" x2="2.2257" y2="3.7243" layer="21"/>
<rectangle x1="1.9907" y1="3.7243" x2="2.2257" y2="3.7306" layer="21"/>
<rectangle x1="1.9971" y1="3.7306" x2="2.2193" y2="3.737" layer="21"/>
<rectangle x1="1.9971" y1="3.737" x2="2.2193" y2="3.7433" layer="21"/>
<rectangle x1="2.0034" y1="3.7433" x2="2.213" y2="3.7497" layer="21"/>
<rectangle x1="2.0098" y1="3.7497" x2="2.2066" y2="3.756" layer="21"/>
<rectangle x1="2.0161" y1="3.756" x2="2.2003" y2="3.7624" layer="21"/>
<rectangle x1="2.0225" y1="3.7624" x2="2.1939" y2="3.7687" layer="21"/>
<rectangle x1="2.0352" y1="3.7687" x2="2.1876" y2="3.7751" layer="21"/>
<rectangle x1="2.0415" y1="3.7751" x2="2.1749" y2="3.7814" layer="21"/>
<rectangle x1="2.0542" y1="3.7814" x2="2.1558" y2="3.7878" layer="21"/>
<rectangle x1="2.0733" y1="3.7878" x2="2.1368" y2="3.7941" layer="21"/>
</package>
</packages>
</library>
<library name="silks">
<packages>
<package name="STEMMAQT">
<rectangle x1="3.24358125" y1="-0.01143125" x2="3.705859375" y2="0.01143125" layer="21"/>
<rectangle x1="3.86841875" y1="-0.01143125" x2="4.3307" y2="0.01143125" layer="21"/>
<rectangle x1="4.49071875" y1="-0.01143125" x2="4.953" y2="0.01143125" layer="21"/>
<rectangle x1="5.13841875" y1="-0.01143125" x2="5.5753" y2="0.01143125" layer="21"/>
<rectangle x1="3.24358125" y1="0.01143125" x2="3.705859375" y2="0.03454375" layer="21"/>
<rectangle x1="3.86841875" y1="0.01143125" x2="4.3307" y2="0.03454375" layer="21"/>
<rectangle x1="4.49071875" y1="0.01143125" x2="4.953" y2="0.03454375" layer="21"/>
<rectangle x1="5.13841875" y1="0.01143125" x2="5.5753" y2="0.03454375" layer="21"/>
<rectangle x1="3.24358125" y1="0.03454375" x2="3.705859375" y2="0.057659375" layer="21"/>
<rectangle x1="3.86841875" y1="0.03454375" x2="4.3307" y2="0.057659375" layer="21"/>
<rectangle x1="4.49071875" y1="0.03454375" x2="4.953" y2="0.057659375" layer="21"/>
<rectangle x1="5.13841875" y1="0.03454375" x2="5.5753" y2="0.057659375" layer="21"/>
<rectangle x1="3.24358125" y1="0.057659375" x2="3.705859375" y2="0.080771875" layer="21"/>
<rectangle x1="3.86841875" y1="0.057659375" x2="4.3307" y2="0.080771875" layer="21"/>
<rectangle x1="4.49071875" y1="0.057659375" x2="4.953" y2="0.080771875" layer="21"/>
<rectangle x1="5.13841875" y1="0.057659375" x2="5.5753" y2="0.080771875" layer="21"/>
<rectangle x1="3.24358125" y1="0.080771875" x2="3.705859375" y2="0.1038875" layer="21"/>
<rectangle x1="3.86841875" y1="0.080771875" x2="4.3307" y2="0.1038875" layer="21"/>
<rectangle x1="4.49071875" y1="0.080771875" x2="4.953" y2="0.1038875" layer="21"/>
<rectangle x1="5.13841875" y1="0.080771875" x2="5.5753" y2="0.1038875" layer="21"/>
<rectangle x1="3.24358125" y1="0.1038875" x2="3.705859375" y2="0.127" layer="21"/>
<rectangle x1="3.86841875" y1="0.1038875" x2="4.3307" y2="0.127" layer="21"/>
<rectangle x1="4.49071875" y1="0.1038875" x2="4.953" y2="0.127" layer="21"/>
<rectangle x1="5.13841875" y1="0.1038875" x2="5.5753" y2="0.127" layer="21"/>
<rectangle x1="3.24358125" y1="0.127" x2="3.705859375" y2="0.1501125" layer="21"/>
<rectangle x1="3.86841875" y1="0.127" x2="4.3307" y2="0.1501125" layer="21"/>
<rectangle x1="4.49071875" y1="0.127" x2="4.953" y2="0.1501125" layer="21"/>
<rectangle x1="5.13841875" y1="0.127" x2="5.5753" y2="0.1501125" layer="21"/>
<rectangle x1="3.24358125" y1="0.1501125" x2="3.705859375" y2="0.173228125" layer="21"/>
<rectangle x1="3.86841875" y1="0.1501125" x2="4.3307" y2="0.173228125" layer="21"/>
<rectangle x1="4.49071875" y1="0.1501125" x2="4.953" y2="0.173228125" layer="21"/>
<rectangle x1="5.13841875" y1="0.1501125" x2="5.5753" y2="0.173228125" layer="21"/>
<rectangle x1="3.24358125" y1="0.173228125" x2="3.705859375" y2="0.196340625" layer="21"/>
<rectangle x1="3.86841875" y1="0.173228125" x2="4.3307" y2="0.196340625" layer="21"/>
<rectangle x1="4.49071875" y1="0.173228125" x2="4.953" y2="0.196340625" layer="21"/>
<rectangle x1="5.13841875" y1="0.173228125" x2="5.5753" y2="0.196340625" layer="21"/>
<rectangle x1="3.24358125" y1="0.196340625" x2="3.705859375" y2="0.21945625" layer="21"/>
<rectangle x1="3.86841875" y1="0.196340625" x2="4.3307" y2="0.21945625" layer="21"/>
<rectangle x1="4.49071875" y1="0.196340625" x2="4.953" y2="0.21945625" layer="21"/>
<rectangle x1="5.13841875" y1="0.196340625" x2="5.5753" y2="0.21945625" layer="21"/>
<rectangle x1="3.24358125" y1="0.21945625" x2="3.705859375" y2="0.24256875" layer="21"/>
<rectangle x1="3.86841875" y1="0.21945625" x2="4.3307" y2="0.24256875" layer="21"/>
<rectangle x1="4.49071875" y1="0.21945625" x2="4.953" y2="0.24256875" layer="21"/>
<rectangle x1="5.13841875" y1="0.21945625" x2="5.5753" y2="0.24256875" layer="21"/>
<rectangle x1="3.24358125" y1="0.24256875" x2="3.705859375" y2="0.26543125" layer="21"/>
<rectangle x1="3.86841875" y1="0.24256875" x2="4.3307" y2="0.26543125" layer="21"/>
<rectangle x1="4.49071875" y1="0.24256875" x2="4.953" y2="0.26543125" layer="21"/>
<rectangle x1="5.13841875" y1="0.24256875" x2="5.5753" y2="0.26543125" layer="21"/>
<rectangle x1="3.24358125" y1="0.26543125" x2="3.705859375" y2="0.28854375" layer="21"/>
<rectangle x1="3.86841875" y1="0.26543125" x2="4.3307" y2="0.28854375" layer="21"/>
<rectangle x1="4.49071875" y1="0.26543125" x2="4.953" y2="0.28854375" layer="21"/>
<rectangle x1="5.13841875" y1="0.26543125" x2="5.5753" y2="0.28854375" layer="21"/>
<rectangle x1="8.18641875" y1="0.26543125" x2="8.20928125" y2="0.28854375" layer="21"/>
<rectangle x1="3.24358125" y1="0.28854375" x2="3.705859375" y2="0.311659375" layer="21"/>
<rectangle x1="3.86841875" y1="0.28854375" x2="4.3307" y2="0.311659375" layer="21"/>
<rectangle x1="4.49071875" y1="0.28854375" x2="4.953" y2="0.311659375" layer="21"/>
<rectangle x1="5.13841875" y1="0.28854375" x2="5.5753" y2="0.311659375" layer="21"/>
<rectangle x1="8.1407" y1="0.28854375" x2="8.232140625" y2="0.311659375" layer="21"/>
<rectangle x1="3.24358125" y1="0.311659375" x2="3.705859375" y2="0.334771875" layer="21"/>
<rectangle x1="3.86841875" y1="0.311659375" x2="4.3307" y2="0.334771875" layer="21"/>
<rectangle x1="4.49071875" y1="0.311659375" x2="4.953" y2="0.334771875" layer="21"/>
<rectangle x1="5.13841875" y1="0.311659375" x2="5.5753" y2="0.334771875" layer="21"/>
<rectangle x1="8.092440625" y1="0.311659375" x2="8.232140625" y2="0.334771875" layer="21"/>
<rectangle x1="3.24358125" y1="0.334771875" x2="3.705859375" y2="0.3578875" layer="21"/>
<rectangle x1="3.86841875" y1="0.334771875" x2="4.3307" y2="0.3578875" layer="21"/>
<rectangle x1="4.49071875" y1="0.334771875" x2="4.953" y2="0.3578875" layer="21"/>
<rectangle x1="5.13841875" y1="0.334771875" x2="5.5753" y2="0.3578875" layer="21"/>
<rectangle x1="8.06958125" y1="0.334771875" x2="8.255" y2="0.3578875" layer="21"/>
<rectangle x1="3.24358125" y1="0.3578875" x2="3.705859375" y2="0.381" layer="21"/>
<rectangle x1="3.86841875" y1="0.3578875" x2="4.3307" y2="0.381" layer="21"/>
<rectangle x1="4.49071875" y1="0.3578875" x2="4.953" y2="0.381" layer="21"/>
<rectangle x1="5.13841875" y1="0.3578875" x2="5.5753" y2="0.381" layer="21"/>
<rectangle x1="8.023859375" y1="0.3578875" x2="8.277859375" y2="0.381" layer="21"/>
<rectangle x1="3.24358125" y1="0.381" x2="3.705859375" y2="0.4041125" layer="21"/>
<rectangle x1="3.86841875" y1="0.381" x2="4.3307" y2="0.4041125" layer="21"/>
<rectangle x1="4.49071875" y1="0.381" x2="4.953" y2="0.4041125" layer="21"/>
<rectangle x1="5.13841875" y1="0.381" x2="5.5753" y2="0.4041125" layer="21"/>
<rectangle x1="7.978140625" y1="0.381" x2="8.277859375" y2="0.4041125" layer="21"/>
<rectangle x1="3.24358125" y1="0.4041125" x2="3.705859375" y2="0.427228125" layer="21"/>
<rectangle x1="3.86841875" y1="0.4041125" x2="4.3307" y2="0.427228125" layer="21"/>
<rectangle x1="4.49071875" y1="0.4041125" x2="4.953" y2="0.427228125" layer="21"/>
<rectangle x1="5.13841875" y1="0.4041125" x2="5.5753" y2="0.427228125" layer="21"/>
<rectangle x1="7.95528125" y1="0.4041125" x2="8.30071875" y2="0.427228125" layer="21"/>
<rectangle x1="7.909559375" y1="0.427228125" x2="8.30071875" y2="0.450340625" layer="21"/>
<rectangle x1="7.8613" y1="0.450340625" x2="8.255" y2="0.47345625" layer="21"/>
<rectangle x1="7.724140625" y1="0.47345625" x2="8.18641875" y2="0.49656875" layer="21"/>
<rectangle x1="0.19558125" y1="0.49656875" x2="0.5207" y2="0.51943125" layer="21"/>
<rectangle x1="0.84328125" y1="0.49656875" x2="1.44271875" y2="0.51943125" layer="21"/>
<rectangle x1="1.60528125" y1="0.49656875" x2="2.22758125" y2="0.51943125" layer="21"/>
<rectangle x1="2.5527" y1="0.49656875" x2="3.083559375" y2="0.51943125" layer="21"/>
<rectangle x1="3.24358125" y1="0.49656875" x2="3.705859375" y2="0.51943125" layer="21"/>
<rectangle x1="3.86841875" y1="0.49656875" x2="4.3307" y2="0.51943125" layer="21"/>
<rectangle x1="4.49071875" y1="0.49656875" x2="4.953" y2="0.51943125" layer="21"/>
<rectangle x1="5.13841875" y1="0.49656875" x2="5.5753" y2="0.51943125" layer="21"/>
<rectangle x1="5.76071875" y1="0.49656875" x2="6.200140625" y2="0.51943125" layer="21"/>
<rectangle x1="6.43128125" y1="0.49656875" x2="6.66241875" y2="0.51943125" layer="21"/>
<rectangle x1="6.822440625" y1="0.49656875" x2="6.893559375" y2="0.51943125" layer="21"/>
<rectangle x1="7.6073" y1="0.49656875" x2="8.1407" y2="0.51943125" layer="21"/>
<rectangle x1="8.69441875" y1="0.49656875" x2="8.9027" y2="0.51943125" layer="21"/>
<rectangle x1="0.149859375" y1="0.51943125" x2="0.4953" y2="0.54254375" layer="21"/>
<rectangle x1="0.866140625" y1="0.51943125" x2="1.44271875" y2="0.54254375" layer="21"/>
<rectangle x1="1.60528125" y1="0.51943125" x2="2.20471875" y2="0.54254375" layer="21"/>
<rectangle x1="2.575559375" y1="0.51943125" x2="3.083559375" y2="0.54254375" layer="21"/>
<rectangle x1="3.24358125" y1="0.51943125" x2="3.705859375" y2="0.54254375" layer="21"/>
<rectangle x1="3.86841875" y1="0.51943125" x2="4.3307" y2="0.54254375" layer="21"/>
<rectangle x1="4.49071875" y1="0.51943125" x2="4.953" y2="0.54254375" layer="21"/>
<rectangle x1="5.13841875" y1="0.51943125" x2="5.5753" y2="0.54254375" layer="21"/>
<rectangle x1="5.76071875" y1="0.51943125" x2="6.17728125" y2="0.54254375" layer="21"/>
<rectangle x1="6.454140625" y1="0.51943125" x2="6.66241875" y2="0.54254375" layer="21"/>
<rectangle x1="6.822440625" y1="0.51943125" x2="6.962140625" y2="0.54254375" layer="21"/>
<rectangle x1="7.53871875" y1="0.51943125" x2="8.092440625" y2="0.54254375" layer="21"/>
<rectangle x1="8.69441875" y1="0.51943125" x2="8.9027" y2="0.54254375" layer="21"/>
<rectangle x1="0.104140625" y1="0.54254375" x2="0.44958125" y2="0.565659375" layer="21"/>
<rectangle x1="0.911859375" y1="0.54254375" x2="1.44271875" y2="0.565659375" layer="21"/>
<rectangle x1="1.60528125" y1="0.54254375" x2="2.136140625" y2="0.565659375" layer="21"/>
<rectangle x1="2.62128125" y1="0.54254375" x2="3.083559375" y2="0.565659375" layer="21"/>
<rectangle x1="3.24358125" y1="0.54254375" x2="3.705859375" y2="0.565659375" layer="21"/>
<rectangle x1="3.86841875" y1="0.54254375" x2="4.3307" y2="0.565659375" layer="21"/>
<rectangle x1="4.49071875" y1="0.54254375" x2="4.953" y2="0.565659375" layer="21"/>
<rectangle x1="5.13841875" y1="0.54254375" x2="5.5753" y2="0.565659375" layer="21"/>
<rectangle x1="5.76071875" y1="0.54254375" x2="6.131559375" y2="0.565659375" layer="21"/>
<rectangle x1="6.499859375" y1="0.54254375" x2="6.66241875" y2="0.565659375" layer="21"/>
<rectangle x1="6.822440625" y1="0.54254375" x2="7.007859375" y2="0.565659375" layer="21"/>
<rectangle x1="7.515859375" y1="0.54254375" x2="8.092440625" y2="0.565659375" layer="21"/>
<rectangle x1="8.69441875" y1="0.54254375" x2="8.9027" y2="0.565659375" layer="21"/>
<rectangle x1="0.08128125" y1="0.565659375" x2="0.403859375" y2="0.588771875" layer="21"/>
<rectangle x1="0.95758125" y1="0.565659375" x2="1.44271875" y2="0.588771875" layer="21"/>
<rectangle x1="1.60528125" y1="0.565659375" x2="2.11328125" y2="0.588771875" layer="21"/>
<rectangle x1="2.667" y1="0.565659375" x2="3.083559375" y2="0.588771875" layer="21"/>
<rectangle x1="3.24358125" y1="0.565659375" x2="3.705859375" y2="0.588771875" layer="21"/>
<rectangle x1="3.86841875" y1="0.565659375" x2="4.3307" y2="0.588771875" layer="21"/>
<rectangle x1="4.49071875" y1="0.565659375" x2="4.953" y2="0.588771875" layer="21"/>
<rectangle x1="5.13841875" y1="0.565659375" x2="5.5753" y2="0.588771875" layer="21"/>
<rectangle x1="5.76071875" y1="0.565659375" x2="6.1087" y2="0.588771875" layer="21"/>
<rectangle x1="6.54558125" y1="0.565659375" x2="6.66241875" y2="0.588771875" layer="21"/>
<rectangle x1="6.822440625" y1="0.565659375" x2="7.03071875" y2="0.588771875" layer="21"/>
<rectangle x1="7.493" y1="0.565659375" x2="8.1407" y2="0.588771875" layer="21"/>
<rectangle x1="8.69441875" y1="0.565659375" x2="8.9027" y2="0.588771875" layer="21"/>
<rectangle x1="0.05841875" y1="0.588771875" x2="0.381" y2="0.6118875" layer="21"/>
<rectangle x1="0.980440625" y1="0.588771875" x2="1.44271875" y2="0.6118875" layer="21"/>
<rectangle x1="1.60528125" y1="0.588771875" x2="2.09041875" y2="0.6118875" layer="21"/>
<rectangle x1="2.689859375" y1="0.588771875" x2="3.083559375" y2="0.6118875" layer="21"/>
<rectangle x1="3.24358125" y1="0.588771875" x2="3.705859375" y2="0.6118875" layer="21"/>
<rectangle x1="3.86841875" y1="0.588771875" x2="4.3307" y2="0.6118875" layer="21"/>
<rectangle x1="4.49071875" y1="0.588771875" x2="4.953" y2="0.6118875" layer="21"/>
<rectangle x1="5.13841875" y1="0.588771875" x2="5.5753" y2="0.6118875" layer="21"/>
<rectangle x1="5.76071875" y1="0.588771875" x2="6.0833" y2="0.6118875" layer="21"/>
<rectangle x1="6.568440625" y1="0.588771875" x2="6.66241875" y2="0.6118875" layer="21"/>
<rectangle x1="6.822440625" y1="0.588771875" x2="7.05358125" y2="0.6118875" layer="21"/>
<rectangle x1="7.470140625" y1="0.588771875" x2="8.163559375" y2="0.6118875" layer="21"/>
<rectangle x1="8.69441875" y1="0.588771875" x2="8.9027" y2="0.6118875" layer="21"/>
<rectangle x1="0.035559375" y1="0.6118875" x2="0.358140625" y2="0.635" layer="21"/>
<rectangle x1="1.0033" y1="0.6118875" x2="1.44271875" y2="0.635" layer="21"/>
<rectangle x1="1.60528125" y1="0.6118875" x2="2.067559375" y2="0.635" layer="21"/>
<rectangle x1="2.71271875" y1="0.6118875" x2="3.083559375" y2="0.635" layer="21"/>
<rectangle x1="3.24358125" y1="0.6118875" x2="3.705859375" y2="0.635" layer="21"/>
<rectangle x1="3.86841875" y1="0.6118875" x2="4.3307" y2="0.635" layer="21"/>
<rectangle x1="4.49071875" y1="0.6118875" x2="4.953" y2="0.635" layer="21"/>
<rectangle x1="5.13841875" y1="0.6118875" x2="5.5753" y2="0.635" layer="21"/>
<rectangle x1="5.76071875" y1="0.6118875" x2="6.060440625" y2="0.635" layer="21"/>
<rectangle x1="6.6167" y1="0.6118875" x2="6.66241875" y2="0.635" layer="21"/>
<rectangle x1="6.822440625" y1="0.6118875" x2="7.076440625" y2="0.635" layer="21"/>
<rectangle x1="7.44728125" y1="0.6118875" x2="8.18641875" y2="0.635" layer="21"/>
<rectangle x1="8.69441875" y1="0.6118875" x2="8.9027" y2="0.635" layer="21"/>
<rectangle x1="0.0127" y1="0.635" x2="0.33528125" y2="0.6581125" layer="21"/>
<rectangle x1="1.0287" y1="0.635" x2="1.44271875" y2="0.6581125" layer="21"/>
<rectangle x1="1.60528125" y1="0.635" x2="2.0447" y2="0.6581125" layer="21"/>
<rectangle x1="2.73558125" y1="0.635" x2="3.083559375" y2="0.6581125" layer="21"/>
<rectangle x1="3.24358125" y1="0.635" x2="3.705859375" y2="0.6581125" layer="21"/>
<rectangle x1="3.86841875" y1="0.635" x2="4.3307" y2="0.6581125" layer="21"/>
<rectangle x1="4.49071875" y1="0.635" x2="4.953" y2="0.6581125" layer="21"/>
<rectangle x1="5.13841875" y1="0.635" x2="5.5753" y2="0.6581125" layer="21"/>
<rectangle x1="5.76071875" y1="0.635" x2="6.060440625" y2="0.6581125" layer="21"/>
<rectangle x1="6.822440625" y1="0.635" x2="7.076440625" y2="0.6581125" layer="21"/>
<rectangle x1="7.42441875" y1="0.635" x2="8.18641875" y2="0.6581125" layer="21"/>
<rectangle x1="8.69441875" y1="0.635" x2="8.9027" y2="0.6581125" layer="21"/>
<rectangle x1="0.0127" y1="0.6581125" x2="0.33528125" y2="0.681228125" layer="21"/>
<rectangle x1="0.56641875" y1="0.6581125" x2="0.797559375" y2="0.681228125" layer="21"/>
<rectangle x1="1.0287" y1="0.6581125" x2="1.44271875" y2="0.681228125" layer="21"/>
<rectangle x1="1.60528125" y1="0.6581125" x2="2.0193" y2="0.681228125" layer="21"/>
<rectangle x1="2.2987" y1="0.6581125" x2="2.48158125" y2="0.681228125" layer="21"/>
<rectangle x1="2.73558125" y1="0.6581125" x2="3.083559375" y2="0.681228125" layer="21"/>
<rectangle x1="3.24358125" y1="0.6581125" x2="3.705859375" y2="0.681228125" layer="21"/>
<rectangle x1="3.86841875" y1="0.6581125" x2="4.3307" y2="0.681228125" layer="21"/>
<rectangle x1="4.49071875" y1="0.6581125" x2="4.953" y2="0.681228125" layer="21"/>
<rectangle x1="5.13841875" y1="0.6581125" x2="5.5753" y2="0.681228125" layer="21"/>
<rectangle x1="5.76071875" y1="0.6581125" x2="6.03758125" y2="0.681228125" layer="21"/>
<rectangle x1="6.314440625" y1="0.6581125" x2="6.43128125" y2="0.681228125" layer="21"/>
<rectangle x1="6.822440625" y1="0.6581125" x2="7.0993" y2="0.681228125" layer="21"/>
<rectangle x1="7.42441875" y1="0.6581125" x2="8.20928125" y2="0.681228125" layer="21"/>
<rectangle x1="8.69441875" y1="0.6581125" x2="8.9027" y2="0.681228125" layer="21"/>
<rectangle x1="-0.0127" y1="0.681228125" x2="0.31241875" y2="0.704340625" layer="21"/>
<rectangle x1="0.5207" y1="0.681228125" x2="0.84328125" y2="0.704340625" layer="21"/>
<rectangle x1="1.051559375" y1="0.681228125" x2="1.44271875" y2="0.704340625" layer="21"/>
<rectangle x1="1.60528125" y1="0.681228125" x2="2.0193" y2="0.704340625" layer="21"/>
<rectangle x1="2.22758125" y1="0.681228125" x2="2.5527" y2="0.704340625" layer="21"/>
<rectangle x1="2.758440625" y1="0.681228125" x2="3.083559375" y2="0.704340625" layer="21"/>
<rectangle x1="3.24358125" y1="0.681228125" x2="3.705859375" y2="0.704340625" layer="21"/>
<rectangle x1="3.86841875" y1="0.681228125" x2="4.3307" y2="0.704340625" layer="21"/>
<rectangle x1="4.49071875" y1="0.681228125" x2="4.953" y2="0.704340625" layer="21"/>
<rectangle x1="5.13841875" y1="0.681228125" x2="5.5753" y2="0.704340625" layer="21"/>
<rectangle x1="5.76071875" y1="0.681228125" x2="6.03758125" y2="0.704340625" layer="21"/>
<rectangle x1="6.245859375" y1="0.681228125" x2="6.52271875" y2="0.704340625" layer="21"/>
<rectangle x1="6.822440625" y1="0.681228125" x2="7.0993" y2="0.704340625" layer="21"/>
<rectangle x1="7.42441875" y1="0.681228125" x2="7.70128125" y2="0.704340625" layer="21"/>
<rectangle x1="7.95528125" y1="0.681228125" x2="8.232140625" y2="0.704340625" layer="21"/>
<rectangle x1="8.69441875" y1="0.681228125" x2="8.9027" y2="0.704340625" layer="21"/>
<rectangle x1="-0.0127" y1="0.704340625" x2="0.31241875" y2="0.72745625" layer="21"/>
<rectangle x1="0.4953" y1="0.704340625" x2="0.866140625" y2="0.72745625" layer="21"/>
<rectangle x1="1.051559375" y1="0.704340625" x2="1.44271875" y2="0.72745625" layer="21"/>
<rectangle x1="1.60528125" y1="0.704340625" x2="2.0193" y2="0.72745625" layer="21"/>
<rectangle x1="2.20471875" y1="0.704340625" x2="2.575559375" y2="0.72745625" layer="21"/>
<rectangle x1="2.758440625" y1="0.704340625" x2="3.083559375" y2="0.72745625" layer="21"/>
<rectangle x1="3.24358125" y1="0.704340625" x2="3.705859375" y2="0.72745625" layer="21"/>
<rectangle x1="3.86841875" y1="0.704340625" x2="4.3307" y2="0.72745625" layer="21"/>
<rectangle x1="4.49071875" y1="0.704340625" x2="4.953" y2="0.72745625" layer="21"/>
<rectangle x1="5.13841875" y1="0.704340625" x2="5.5753" y2="0.72745625" layer="21"/>
<rectangle x1="5.76071875" y1="0.704340625" x2="6.03758125" y2="0.72745625" layer="21"/>
<rectangle x1="6.223" y1="0.704340625" x2="6.568440625" y2="0.72745625" layer="21"/>
<rectangle x1="6.822440625" y1="0.704340625" x2="7.1247" y2="0.72745625" layer="21"/>
<rectangle x1="7.401559375" y1="0.704340625" x2="7.655559375" y2="0.72745625" layer="21"/>
<rectangle x1="8.001" y1="0.704340625" x2="8.232140625" y2="0.72745625" layer="21"/>
<rectangle x1="8.69441875" y1="0.704340625" x2="8.9027" y2="0.72745625" layer="21"/>
<rectangle x1="-0.0127" y1="0.72745625" x2="0.31241875" y2="0.75056875" layer="21"/>
<rectangle x1="0.472440625" y1="0.72745625" x2="0.889" y2="0.75056875" layer="21"/>
<rectangle x1="1.051559375" y1="0.72745625" x2="1.44271875" y2="0.75056875" layer="21"/>
<rectangle x1="1.60528125" y1="0.72745625" x2="1.996440625" y2="0.75056875" layer="21"/>
<rectangle x1="2.181859375" y1="0.72745625" x2="2.59841875" y2="0.75056875" layer="21"/>
<rectangle x1="2.7813" y1="0.72745625" x2="3.083559375" y2="0.75056875" layer="21"/>
<rectangle x1="3.24358125" y1="0.72745625" x2="3.705859375" y2="0.75056875" layer="21"/>
<rectangle x1="3.86841875" y1="0.72745625" x2="4.3307" y2="0.75056875" layer="21"/>
<rectangle x1="4.49071875" y1="0.72745625" x2="4.953" y2="0.75056875" layer="21"/>
<rectangle x1="5.13841875" y1="0.72745625" x2="5.5753" y2="0.75056875" layer="21"/>
<rectangle x1="5.76071875" y1="0.72745625" x2="6.03758125" y2="0.75056875" layer="21"/>
<rectangle x1="6.223" y1="0.72745625" x2="6.6167" y2="0.75056875" layer="21"/>
<rectangle x1="6.822440625" y1="0.72745625" x2="7.1247" y2="0.75056875" layer="21"/>
<rectangle x1="7.401559375" y1="0.72745625" x2="7.6327" y2="0.75056875" layer="21"/>
<rectangle x1="8.023859375" y1="0.72745625" x2="8.232140625" y2="0.75056875" layer="21"/>
<rectangle x1="8.69441875" y1="0.72745625" x2="8.9027" y2="0.75056875" layer="21"/>
<rectangle x1="-0.0127" y1="0.75056875" x2="0.289559375" y2="0.77343125" layer="21"/>
<rectangle x1="0.44958125" y1="0.75056875" x2="0.889" y2="0.77343125" layer="21"/>
<rectangle x1="1.07441875" y1="0.75056875" x2="1.44271875" y2="0.77343125" layer="21"/>
<rectangle x1="1.60528125" y1="0.75056875" x2="1.996440625" y2="0.77343125" layer="21"/>
<rectangle x1="2.181859375" y1="0.75056875" x2="2.59841875" y2="0.77343125" layer="21"/>
<rectangle x1="2.7813" y1="0.75056875" x2="3.083559375" y2="0.77343125" layer="21"/>
<rectangle x1="3.24358125" y1="0.75056875" x2="3.705859375" y2="0.77343125" layer="21"/>
<rectangle x1="3.86841875" y1="0.75056875" x2="4.3307" y2="0.77343125" layer="21"/>
<rectangle x1="4.49071875" y1="0.75056875" x2="4.953" y2="0.77343125" layer="21"/>
<rectangle x1="5.13841875" y1="0.75056875" x2="5.5753" y2="0.77343125" layer="21"/>
<rectangle x1="5.76071875" y1="0.75056875" x2="6.03758125" y2="0.77343125" layer="21"/>
<rectangle x1="6.200140625" y1="0.75056875" x2="6.639559375" y2="0.77343125" layer="21"/>
<rectangle x1="6.822440625" y1="0.75056875" x2="7.1247" y2="0.77343125" layer="21"/>
<rectangle x1="7.401559375" y1="0.75056875" x2="7.6073" y2="0.77343125" layer="21"/>
<rectangle x1="8.023859375" y1="0.75056875" x2="8.232140625" y2="0.77343125" layer="21"/>
<rectangle x1="8.69441875" y1="0.75056875" x2="8.9027" y2="0.77343125" layer="21"/>
<rectangle x1="-0.0127" y1="0.77343125" x2="0.289559375" y2="0.79654375" layer="21"/>
<rectangle x1="0.44958125" y1="0.77343125" x2="0.911859375" y2="0.79654375" layer="21"/>
<rectangle x1="1.07441875" y1="0.77343125" x2="1.44271875" y2="0.79654375" layer="21"/>
<rectangle x1="1.60528125" y1="0.77343125" x2="1.996440625" y2="0.79654375" layer="21"/>
<rectangle x1="2.159" y1="0.77343125" x2="2.62128125" y2="0.79654375" layer="21"/>
<rectangle x1="2.7813" y1="0.77343125" x2="3.083559375" y2="0.79654375" layer="21"/>
<rectangle x1="3.24358125" y1="0.77343125" x2="3.705859375" y2="0.79654375" layer="21"/>
<rectangle x1="3.86841875" y1="0.77343125" x2="4.3307" y2="0.79654375" layer="21"/>
<rectangle x1="4.49071875" y1="0.77343125" x2="4.953" y2="0.79654375" layer="21"/>
<rectangle x1="5.13841875" y1="0.77343125" x2="5.5753" y2="0.79654375" layer="21"/>
<rectangle x1="5.76071875" y1="0.77343125" x2="6.03758125" y2="0.79654375" layer="21"/>
<rectangle x1="6.200140625" y1="0.77343125" x2="6.66241875" y2="0.79654375" layer="21"/>
<rectangle x1="6.822440625" y1="0.77343125" x2="7.1247" y2="0.79654375" layer="21"/>
<rectangle x1="7.401559375" y1="0.77343125" x2="7.6073" y2="0.79654375" layer="21"/>
<rectangle x1="8.04671875" y1="0.77343125" x2="8.255" y2="0.79654375" layer="21"/>
<rectangle x1="8.69441875" y1="0.77343125" x2="8.9027" y2="0.79654375" layer="21"/>
<rectangle x1="-0.0127" y1="0.79654375" x2="0.289559375" y2="0.819659375" layer="21"/>
<rectangle x1="0.44958125" y1="0.79654375" x2="0.911859375" y2="0.819659375" layer="21"/>
<rectangle x1="1.07441875" y1="0.79654375" x2="1.44271875" y2="0.819659375" layer="21"/>
<rectangle x1="1.60528125" y1="0.79654375" x2="1.996440625" y2="0.819659375" layer="21"/>
<rectangle x1="2.159" y1="0.79654375" x2="2.62128125" y2="0.819659375" layer="21"/>
<rectangle x1="2.7813" y1="0.79654375" x2="3.083559375" y2="0.819659375" layer="21"/>
<rectangle x1="3.24358125" y1="0.79654375" x2="3.705859375" y2="0.819659375" layer="21"/>
<rectangle x1="3.86841875" y1="0.79654375" x2="4.3307" y2="0.819659375" layer="21"/>
<rectangle x1="4.49071875" y1="0.79654375" x2="4.953" y2="0.819659375" layer="21"/>
<rectangle x1="5.13841875" y1="0.79654375" x2="5.5753" y2="0.819659375" layer="21"/>
<rectangle x1="5.76071875" y1="0.79654375" x2="6.03758125" y2="0.819659375" layer="21"/>
<rectangle x1="6.200140625" y1="0.79654375" x2="6.66241875" y2="0.819659375" layer="21"/>
<rectangle x1="6.822440625" y1="0.79654375" x2="7.1247" y2="0.819659375" layer="21"/>
<rectangle x1="7.401559375" y1="0.79654375" x2="7.6073" y2="0.819659375" layer="21"/>
<rectangle x1="8.04671875" y1="0.79654375" x2="8.255" y2="0.819659375" layer="21"/>
<rectangle x1="8.69441875" y1="0.79654375" x2="8.9027" y2="0.819659375" layer="21"/>
<rectangle x1="-0.0127" y1="0.819659375" x2="0.289559375" y2="0.842771875" layer="21"/>
<rectangle x1="0.44958125" y1="0.819659375" x2="0.911859375" y2="0.842771875" layer="21"/>
<rectangle x1="1.07441875" y1="0.819659375" x2="1.44271875" y2="0.842771875" layer="21"/>
<rectangle x1="1.60528125" y1="0.819659375" x2="1.97358125" y2="0.842771875" layer="21"/>
<rectangle x1="2.159" y1="0.819659375" x2="2.62128125" y2="0.842771875" layer="21"/>
<rectangle x1="2.7813" y1="0.819659375" x2="3.083559375" y2="0.842771875" layer="21"/>
<rectangle x1="3.24358125" y1="0.819659375" x2="3.705859375" y2="0.842771875" layer="21"/>
<rectangle x1="3.86841875" y1="0.819659375" x2="4.3307" y2="0.842771875" layer="21"/>
<rectangle x1="4.49071875" y1="0.819659375" x2="4.953" y2="0.842771875" layer="21"/>
<rectangle x1="5.13841875" y1="0.819659375" x2="5.5753" y2="0.842771875" layer="21"/>
<rectangle x1="5.76071875" y1="0.819659375" x2="6.03758125" y2="0.842771875" layer="21"/>
<rectangle x1="6.200140625" y1="0.819659375" x2="6.66241875" y2="0.842771875" layer="21"/>
<rectangle x1="6.822440625" y1="0.819659375" x2="7.1247" y2="0.842771875" layer="21"/>
<rectangle x1="7.401559375" y1="0.819659375" x2="7.6073" y2="0.842771875" layer="21"/>
<rectangle x1="8.04671875" y1="0.819659375" x2="8.255" y2="0.842771875" layer="21"/>
<rectangle x1="8.69441875" y1="0.819659375" x2="8.9027" y2="0.842771875" layer="21"/>
<rectangle x1="-0.0127" y1="0.842771875" x2="0.289559375" y2="0.8658875" layer="21"/>
<rectangle x1="0.44958125" y1="0.842771875" x2="0.911859375" y2="0.8658875" layer="21"/>
<rectangle x1="1.07441875" y1="0.842771875" x2="1.44271875" y2="0.8658875" layer="21"/>
<rectangle x1="1.60528125" y1="0.842771875" x2="1.97358125" y2="0.8658875" layer="21"/>
<rectangle x1="2.159" y1="0.842771875" x2="2.62128125" y2="0.8658875" layer="21"/>
<rectangle x1="2.7813" y1="0.842771875" x2="3.083559375" y2="0.8658875" layer="21"/>
<rectangle x1="3.24358125" y1="0.842771875" x2="3.705859375" y2="0.8658875" layer="21"/>
<rectangle x1="3.86841875" y1="0.842771875" x2="4.3307" y2="0.8658875" layer="21"/>
<rectangle x1="4.49071875" y1="0.842771875" x2="4.953" y2="0.8658875" layer="21"/>
<rectangle x1="5.13841875" y1="0.842771875" x2="5.5753" y2="0.8658875" layer="21"/>
<rectangle x1="5.76071875" y1="0.842771875" x2="6.03758125" y2="0.8658875" layer="21"/>
<rectangle x1="6.200140625" y1="0.842771875" x2="6.66241875" y2="0.8658875" layer="21"/>
<rectangle x1="6.822440625" y1="0.842771875" x2="7.1247" y2="0.8658875" layer="21"/>
<rectangle x1="7.401559375" y1="0.842771875" x2="7.584440625" y2="0.8658875" layer="21"/>
<rectangle x1="8.04671875" y1="0.842771875" x2="8.255" y2="0.8658875" layer="21"/>
<rectangle x1="8.69441875" y1="0.842771875" x2="8.9027" y2="0.8658875" layer="21"/>
<rectangle x1="-0.0127" y1="0.8658875" x2="0.289559375" y2="0.889" layer="21"/>
<rectangle x1="0.44958125" y1="0.8658875" x2="0.911859375" y2="0.889" layer="21"/>
<rectangle x1="1.07441875" y1="0.8658875" x2="1.44271875" y2="0.889" layer="21"/>
<rectangle x1="1.60528125" y1="0.8658875" x2="1.97358125" y2="0.889" layer="21"/>
<rectangle x1="2.159" y1="0.8658875" x2="2.62128125" y2="0.889" layer="21"/>
<rectangle x1="2.7813" y1="0.8658875" x2="3.083559375" y2="0.889" layer="21"/>
<rectangle x1="3.24358125" y1="0.8658875" x2="3.705859375" y2="0.889" layer="21"/>
<rectangle x1="3.86841875" y1="0.8658875" x2="4.3307" y2="0.889" layer="21"/>
<rectangle x1="4.49071875" y1="0.8658875" x2="4.953" y2="0.889" layer="21"/>
<rectangle x1="5.13841875" y1="0.8658875" x2="5.5753" y2="0.889" layer="21"/>
<rectangle x1="5.76071875" y1="0.8658875" x2="6.03758125" y2="0.889" layer="21"/>
<rectangle x1="6.200140625" y1="0.8658875" x2="6.66241875" y2="0.889" layer="21"/>
<rectangle x1="6.822440625" y1="0.8658875" x2="7.1247" y2="0.889" layer="21"/>
<rectangle x1="7.401559375" y1="0.8658875" x2="7.584440625" y2="0.889" layer="21"/>
<rectangle x1="8.04671875" y1="0.8658875" x2="8.255" y2="0.889" layer="21"/>
<rectangle x1="8.69441875" y1="0.8658875" x2="8.9027" y2="0.889" layer="21"/>
<rectangle x1="-0.0127" y1="0.889" x2="0.289559375" y2="0.9121125" layer="21"/>
<rectangle x1="0.44958125" y1="0.889" x2="0.911859375" y2="0.9121125" layer="21"/>
<rectangle x1="1.07441875" y1="0.889" x2="1.44271875" y2="0.9121125" layer="21"/>
<rectangle x1="1.60528125" y1="0.889" x2="1.97358125" y2="0.9121125" layer="21"/>
<rectangle x1="2.159" y1="0.889" x2="2.62128125" y2="0.9121125" layer="21"/>
<rectangle x1="2.8067" y1="0.889" x2="3.083559375" y2="0.9121125" layer="21"/>
<rectangle x1="3.24358125" y1="0.889" x2="3.705859375" y2="0.9121125" layer="21"/>
<rectangle x1="3.86841875" y1="0.889" x2="4.3307" y2="0.9121125" layer="21"/>
<rectangle x1="4.49071875" y1="0.889" x2="4.953" y2="0.9121125" layer="21"/>
<rectangle x1="5.13841875" y1="0.889" x2="5.5753" y2="0.9121125" layer="21"/>
<rectangle x1="5.76071875" y1="0.889" x2="6.03758125" y2="0.9121125" layer="21"/>
<rectangle x1="6.200140625" y1="0.889" x2="6.66241875" y2="0.9121125" layer="21"/>
<rectangle x1="6.822440625" y1="0.889" x2="7.1247" y2="0.9121125" layer="21"/>
<rectangle x1="7.401559375" y1="0.889" x2="7.584440625" y2="0.9121125" layer="21"/>
<rectangle x1="8.04671875" y1="0.889" x2="8.255" y2="0.9121125" layer="21"/>
<rectangle x1="8.69441875" y1="0.889" x2="8.9027" y2="0.9121125" layer="21"/>
<rectangle x1="-0.0127" y1="0.9121125" x2="0.289559375" y2="0.935228125" layer="21"/>
<rectangle x1="0.44958125" y1="0.9121125" x2="0.911859375" y2="0.935228125" layer="21"/>
<rectangle x1="1.07441875" y1="0.9121125" x2="1.44271875" y2="0.935228125" layer="21"/>
<rectangle x1="1.60528125" y1="0.9121125" x2="1.97358125" y2="0.935228125" layer="21"/>
<rectangle x1="2.159" y1="0.9121125" x2="2.62128125" y2="0.935228125" layer="21"/>
<rectangle x1="2.8067" y1="0.9121125" x2="3.083559375" y2="0.935228125" layer="21"/>
<rectangle x1="3.24358125" y1="0.9121125" x2="3.705859375" y2="0.935228125" layer="21"/>
<rectangle x1="3.86841875" y1="0.9121125" x2="4.3307" y2="0.935228125" layer="21"/>
<rectangle x1="4.49071875" y1="0.9121125" x2="4.953" y2="0.935228125" layer="21"/>
<rectangle x1="5.13841875" y1="0.9121125" x2="5.5753" y2="0.935228125" layer="21"/>
<rectangle x1="5.76071875" y1="0.9121125" x2="6.03758125" y2="0.935228125" layer="21"/>
<rectangle x1="6.200140625" y1="0.9121125" x2="6.66241875" y2="0.935228125" layer="21"/>
<rectangle x1="6.822440625" y1="0.9121125" x2="7.1247" y2="0.935228125" layer="21"/>
<rectangle x1="7.401559375" y1="0.9121125" x2="7.584440625" y2="0.935228125" layer="21"/>
<rectangle x1="8.04671875" y1="0.9121125" x2="8.255" y2="0.935228125" layer="21"/>
<rectangle x1="8.69441875" y1="0.9121125" x2="8.9027" y2="0.935228125" layer="21"/>
<rectangle x1="-0.0127" y1="0.935228125" x2="0.289559375" y2="0.958340625" layer="21"/>
<rectangle x1="0.44958125" y1="0.935228125" x2="0.911859375" y2="0.958340625" layer="21"/>
<rectangle x1="1.07441875" y1="0.935228125" x2="1.44271875" y2="0.958340625" layer="21"/>
<rectangle x1="1.60528125" y1="0.935228125" x2="1.97358125" y2="0.958340625" layer="21"/>
<rectangle x1="2.159" y1="0.935228125" x2="2.62128125" y2="0.958340625" layer="21"/>
<rectangle x1="2.8067" y1="0.935228125" x2="3.083559375" y2="0.958340625" layer="21"/>
<rectangle x1="3.24358125" y1="0.935228125" x2="3.705859375" y2="0.958340625" layer="21"/>
<rectangle x1="3.86841875" y1="0.935228125" x2="4.3307" y2="0.958340625" layer="21"/>
<rectangle x1="4.49071875" y1="0.935228125" x2="4.953" y2="0.958340625" layer="21"/>
<rectangle x1="5.13841875" y1="0.935228125" x2="5.5753" y2="0.958340625" layer="21"/>
<rectangle x1="5.76071875" y1="0.935228125" x2="6.03758125" y2="0.958340625" layer="21"/>
<rectangle x1="6.200140625" y1="0.935228125" x2="6.66241875" y2="0.958340625" layer="21"/>
<rectangle x1="6.822440625" y1="0.935228125" x2="7.1247" y2="0.958340625" layer="21"/>
<rectangle x1="7.401559375" y1="0.935228125" x2="7.584440625" y2="0.958340625" layer="21"/>
<rectangle x1="8.04671875" y1="0.935228125" x2="8.255" y2="0.958340625" layer="21"/>
<rectangle x1="8.69441875" y1="0.935228125" x2="8.9027" y2="0.958340625" layer="21"/>
<rectangle x1="-0.0127" y1="0.958340625" x2="0.289559375" y2="0.98145625" layer="21"/>
<rectangle x1="0.44958125" y1="0.958340625" x2="0.911859375" y2="0.98145625" layer="21"/>
<rectangle x1="1.07441875" y1="0.958340625" x2="1.44271875" y2="0.98145625" layer="21"/>
<rectangle x1="1.60528125" y1="0.958340625" x2="1.97358125" y2="0.98145625" layer="21"/>
<rectangle x1="2.159" y1="0.958340625" x2="2.62128125" y2="0.98145625" layer="21"/>
<rectangle x1="2.8067" y1="0.958340625" x2="3.083559375" y2="0.98145625" layer="21"/>
<rectangle x1="3.24358125" y1="0.958340625" x2="3.705859375" y2="0.98145625" layer="21"/>
<rectangle x1="3.86841875" y1="0.958340625" x2="4.3307" y2="0.98145625" layer="21"/>
<rectangle x1="4.49071875" y1="0.958340625" x2="4.953" y2="0.98145625" layer="21"/>
<rectangle x1="5.13841875" y1="0.958340625" x2="5.5753" y2="0.98145625" layer="21"/>
<rectangle x1="5.76071875" y1="0.958340625" x2="6.03758125" y2="0.98145625" layer="21"/>
<rectangle x1="6.200140625" y1="0.958340625" x2="6.66241875" y2="0.98145625" layer="21"/>
<rectangle x1="6.822440625" y1="0.958340625" x2="7.1247" y2="0.98145625" layer="21"/>
<rectangle x1="7.401559375" y1="0.958340625" x2="7.584440625" y2="0.98145625" layer="21"/>
<rectangle x1="8.04671875" y1="0.958340625" x2="8.255" y2="0.98145625" layer="21"/>
<rectangle x1="8.69441875" y1="0.958340625" x2="8.9027" y2="0.98145625" layer="21"/>
<rectangle x1="-0.0127" y1="0.98145625" x2="0.289559375" y2="1.00456875" layer="21"/>
<rectangle x1="0.44958125" y1="0.98145625" x2="0.911859375" y2="1.00456875" layer="21"/>
<rectangle x1="1.07441875" y1="0.98145625" x2="1.44271875" y2="1.00456875" layer="21"/>
<rectangle x1="1.60528125" y1="0.98145625" x2="1.97358125" y2="1.00456875" layer="21"/>
<rectangle x1="2.159" y1="0.98145625" x2="2.62128125" y2="1.00456875" layer="21"/>
<rectangle x1="2.8067" y1="0.98145625" x2="3.083559375" y2="1.00456875" layer="21"/>
<rectangle x1="3.24358125" y1="0.98145625" x2="3.705859375" y2="1.00456875" layer="21"/>
<rectangle x1="3.86841875" y1="0.98145625" x2="4.3307" y2="1.00456875" layer="21"/>
<rectangle x1="4.49071875" y1="0.98145625" x2="4.953" y2="1.00456875" layer="21"/>
<rectangle x1="5.13841875" y1="0.98145625" x2="5.5753" y2="1.00456875" layer="21"/>
<rectangle x1="5.76071875" y1="0.98145625" x2="6.03758125" y2="1.00456875" layer="21"/>
<rectangle x1="6.200140625" y1="0.98145625" x2="6.66241875" y2="1.00456875" layer="21"/>
<rectangle x1="6.822440625" y1="0.98145625" x2="7.1247" y2="1.00456875" layer="21"/>
<rectangle x1="7.401559375" y1="0.98145625" x2="7.584440625" y2="1.00456875" layer="21"/>
<rectangle x1="8.04671875" y1="0.98145625" x2="8.255" y2="1.00456875" layer="21"/>
<rectangle x1="8.69441875" y1="0.98145625" x2="8.9027" y2="1.00456875" layer="21"/>
<rectangle x1="-0.0127" y1="1.00456875" x2="0.289559375" y2="1.02743125" layer="21"/>
<rectangle x1="0.44958125" y1="1.00456875" x2="0.911859375" y2="1.02743125" layer="21"/>
<rectangle x1="1.07441875" y1="1.00456875" x2="1.44271875" y2="1.02743125" layer="21"/>
<rectangle x1="1.60528125" y1="1.00456875" x2="1.97358125" y2="1.02743125" layer="21"/>
<rectangle x1="2.159" y1="1.00456875" x2="2.62128125" y2="1.02743125" layer="21"/>
<rectangle x1="2.8067" y1="1.00456875" x2="3.083559375" y2="1.02743125" layer="21"/>
<rectangle x1="3.24358125" y1="1.00456875" x2="3.705859375" y2="1.02743125" layer="21"/>
<rectangle x1="3.86841875" y1="1.00456875" x2="4.3307" y2="1.02743125" layer="21"/>
<rectangle x1="4.49071875" y1="1.00456875" x2="4.953" y2="1.02743125" layer="21"/>
<rectangle x1="5.13841875" y1="1.00456875" x2="5.5753" y2="1.02743125" layer="21"/>
<rectangle x1="5.76071875" y1="1.00456875" x2="6.03758125" y2="1.02743125" layer="21"/>
<rectangle x1="6.200140625" y1="1.00456875" x2="6.66241875" y2="1.02743125" layer="21"/>
<rectangle x1="6.822440625" y1="1.00456875" x2="7.1247" y2="1.02743125" layer="21"/>
<rectangle x1="7.401559375" y1="1.00456875" x2="7.584440625" y2="1.02743125" layer="21"/>
<rectangle x1="8.04671875" y1="1.00456875" x2="8.255" y2="1.02743125" layer="21"/>
<rectangle x1="8.69441875" y1="1.00456875" x2="8.9027" y2="1.02743125" layer="21"/>
<rectangle x1="-0.0127" y1="1.02743125" x2="0.289559375" y2="1.05054375" layer="21"/>
<rectangle x1="0.44958125" y1="1.02743125" x2="0.911859375" y2="1.05054375" layer="21"/>
<rectangle x1="1.07441875" y1="1.02743125" x2="1.44271875" y2="1.05054375" layer="21"/>
<rectangle x1="1.60528125" y1="1.02743125" x2="1.97358125" y2="1.05054375" layer="21"/>
<rectangle x1="2.159" y1="1.02743125" x2="2.62128125" y2="1.05054375" layer="21"/>
<rectangle x1="2.8067" y1="1.02743125" x2="3.083559375" y2="1.05054375" layer="21"/>
<rectangle x1="3.24358125" y1="1.02743125" x2="3.705859375" y2="1.05054375" layer="21"/>
<rectangle x1="3.86841875" y1="1.02743125" x2="4.3307" y2="1.05054375" layer="21"/>
<rectangle x1="4.49071875" y1="1.02743125" x2="4.953" y2="1.05054375" layer="21"/>
<rectangle x1="5.13841875" y1="1.02743125" x2="5.5753" y2="1.05054375" layer="21"/>
<rectangle x1="5.76071875" y1="1.02743125" x2="6.03758125" y2="1.05054375" layer="21"/>
<rectangle x1="6.200140625" y1="1.02743125" x2="6.66241875" y2="1.05054375" layer="21"/>
<rectangle x1="6.822440625" y1="1.02743125" x2="7.1247" y2="1.05054375" layer="21"/>
<rectangle x1="7.401559375" y1="1.02743125" x2="7.584440625" y2="1.05054375" layer="21"/>
<rectangle x1="8.04671875" y1="1.02743125" x2="8.255" y2="1.05054375" layer="21"/>
<rectangle x1="8.69441875" y1="1.02743125" x2="8.9027" y2="1.05054375" layer="21"/>
<rectangle x1="-0.0127" y1="1.05054375" x2="0.289559375" y2="1.073659375" layer="21"/>
<rectangle x1="0.44958125" y1="1.05054375" x2="0.911859375" y2="1.073659375" layer="21"/>
<rectangle x1="1.07441875" y1="1.05054375" x2="1.44271875" y2="1.073659375" layer="21"/>
<rectangle x1="1.60528125" y1="1.05054375" x2="1.97358125" y2="1.073659375" layer="21"/>
<rectangle x1="2.159" y1="1.05054375" x2="2.62128125" y2="1.073659375" layer="21"/>
<rectangle x1="2.8067" y1="1.05054375" x2="3.083559375" y2="1.073659375" layer="21"/>
<rectangle x1="3.24358125" y1="1.05054375" x2="3.705859375" y2="1.073659375" layer="21"/>
<rectangle x1="3.86841875" y1="1.05054375" x2="4.3307" y2="1.073659375" layer="21"/>
<rectangle x1="4.49071875" y1="1.05054375" x2="4.953" y2="1.073659375" layer="21"/>
<rectangle x1="5.13841875" y1="1.05054375" x2="5.5753" y2="1.073659375" layer="21"/>
<rectangle x1="5.76071875" y1="1.05054375" x2="6.03758125" y2="1.073659375" layer="21"/>
<rectangle x1="6.200140625" y1="1.05054375" x2="6.66241875" y2="1.073659375" layer="21"/>
<rectangle x1="6.822440625" y1="1.05054375" x2="7.1247" y2="1.073659375" layer="21"/>
<rectangle x1="7.401559375" y1="1.05054375" x2="7.584440625" y2="1.073659375" layer="21"/>
<rectangle x1="8.04671875" y1="1.05054375" x2="8.255" y2="1.073659375" layer="21"/>
<rectangle x1="8.69441875" y1="1.05054375" x2="8.9027" y2="1.073659375" layer="21"/>
<rectangle x1="-0.0127" y1="1.073659375" x2="0.289559375" y2="1.096771875" layer="21"/>
<rectangle x1="0.44958125" y1="1.073659375" x2="0.911859375" y2="1.096771875" layer="21"/>
<rectangle x1="1.07441875" y1="1.073659375" x2="1.44271875" y2="1.096771875" layer="21"/>
<rectangle x1="1.60528125" y1="1.073659375" x2="1.97358125" y2="1.096771875" layer="21"/>
<rectangle x1="2.159" y1="1.073659375" x2="3.083559375" y2="1.096771875" layer="21"/>
<rectangle x1="3.24358125" y1="1.073659375" x2="3.705859375" y2="1.096771875" layer="21"/>
<rectangle x1="3.86841875" y1="1.073659375" x2="4.3307" y2="1.096771875" layer="21"/>
<rectangle x1="4.49071875" y1="1.073659375" x2="4.953" y2="1.096771875" layer="21"/>
<rectangle x1="5.13841875" y1="1.073659375" x2="5.5753" y2="1.096771875" layer="21"/>
<rectangle x1="5.76071875" y1="1.073659375" x2="6.03758125" y2="1.096771875" layer="21"/>
<rectangle x1="6.200140625" y1="1.073659375" x2="6.66241875" y2="1.096771875" layer="21"/>
<rectangle x1="6.822440625" y1="1.073659375" x2="7.1247" y2="1.096771875" layer="21"/>
<rectangle x1="7.401559375" y1="1.073659375" x2="7.584440625" y2="1.096771875" layer="21"/>
<rectangle x1="8.04671875" y1="1.073659375" x2="8.255" y2="1.096771875" layer="21"/>
<rectangle x1="8.69441875" y1="1.073659375" x2="8.9027" y2="1.096771875" layer="21"/>
<rectangle x1="-0.0127" y1="1.096771875" x2="0.289559375" y2="1.1198875" layer="21"/>
<rectangle x1="0.44958125" y1="1.096771875" x2="0.911859375" y2="1.1198875" layer="21"/>
<rectangle x1="1.07441875" y1="1.096771875" x2="1.44271875" y2="1.1198875" layer="21"/>
<rectangle x1="1.60528125" y1="1.096771875" x2="1.97358125" y2="1.1198875" layer="21"/>
<rectangle x1="2.159" y1="1.096771875" x2="3.083559375" y2="1.1198875" layer="21"/>
<rectangle x1="3.24358125" y1="1.096771875" x2="3.705859375" y2="1.1198875" layer="21"/>
<rectangle x1="3.86841875" y1="1.096771875" x2="4.3307" y2="1.1198875" layer="21"/>
<rectangle x1="4.49071875" y1="1.096771875" x2="4.953" y2="1.1198875" layer="21"/>
<rectangle x1="5.13841875" y1="1.096771875" x2="5.5753" y2="1.1198875" layer="21"/>
<rectangle x1="5.76071875" y1="1.096771875" x2="6.03758125" y2="1.1198875" layer="21"/>
<rectangle x1="6.200140625" y1="1.096771875" x2="6.66241875" y2="1.1198875" layer="21"/>
<rectangle x1="6.822440625" y1="1.096771875" x2="7.1247" y2="1.1198875" layer="21"/>
<rectangle x1="7.401559375" y1="1.096771875" x2="7.584440625" y2="1.1198875" layer="21"/>
<rectangle x1="8.04671875" y1="1.096771875" x2="8.255" y2="1.1198875" layer="21"/>
<rectangle x1="8.69441875" y1="1.096771875" x2="8.9027" y2="1.1198875" layer="21"/>
<rectangle x1="-0.0127" y1="1.1198875" x2="0.289559375" y2="1.143" layer="21"/>
<rectangle x1="0.44958125" y1="1.1198875" x2="0.889" y2="1.143" layer="21"/>
<rectangle x1="1.07441875" y1="1.1198875" x2="1.44271875" y2="1.143" layer="21"/>
<rectangle x1="1.60528125" y1="1.1198875" x2="1.97358125" y2="1.143" layer="21"/>
<rectangle x1="2.159" y1="1.1198875" x2="3.083559375" y2="1.143" layer="21"/>
<rectangle x1="3.24358125" y1="1.1198875" x2="3.705859375" y2="1.143" layer="21"/>
<rectangle x1="3.86841875" y1="1.1198875" x2="4.3307" y2="1.143" layer="21"/>
<rectangle x1="4.49071875" y1="1.1198875" x2="4.953" y2="1.143" layer="21"/>
<rectangle x1="5.13841875" y1="1.1198875" x2="5.5753" y2="1.143" layer="21"/>
<rectangle x1="5.76071875" y1="1.1198875" x2="6.03758125" y2="1.143" layer="21"/>
<rectangle x1="6.200140625" y1="1.1198875" x2="6.66241875" y2="1.143" layer="21"/>
<rectangle x1="6.822440625" y1="1.1198875" x2="7.1247" y2="1.143" layer="21"/>
<rectangle x1="7.401559375" y1="1.1198875" x2="7.584440625" y2="1.143" layer="21"/>
<rectangle x1="8.04671875" y1="1.1198875" x2="8.255" y2="1.143" layer="21"/>
<rectangle x1="8.69441875" y1="1.1198875" x2="8.9027" y2="1.143" layer="21"/>
<rectangle x1="-0.0127" y1="1.143" x2="0.889" y2="1.1661125" layer="21"/>
<rectangle x1="1.07441875" y1="1.143" x2="1.44271875" y2="1.1661125" layer="21"/>
<rectangle x1="1.60528125" y1="1.143" x2="1.97358125" y2="1.1661125" layer="21"/>
<rectangle x1="2.159" y1="1.143" x2="3.083559375" y2="1.1661125" layer="21"/>
<rectangle x1="3.24358125" y1="1.143" x2="3.705859375" y2="1.1661125" layer="21"/>
<rectangle x1="3.86841875" y1="1.143" x2="4.3307" y2="1.1661125" layer="21"/>
<rectangle x1="4.49071875" y1="1.143" x2="4.953" y2="1.1661125" layer="21"/>
<rectangle x1="5.13841875" y1="1.143" x2="5.5753" y2="1.1661125" layer="21"/>
<rectangle x1="5.76071875" y1="1.143" x2="6.03758125" y2="1.1661125" layer="21"/>
<rectangle x1="6.200140625" y1="1.143" x2="6.66241875" y2="1.1661125" layer="21"/>
<rectangle x1="6.822440625" y1="1.143" x2="7.1247" y2="1.1661125" layer="21"/>
<rectangle x1="7.401559375" y1="1.143" x2="7.584440625" y2="1.1661125" layer="21"/>
<rectangle x1="8.04671875" y1="1.143" x2="8.255" y2="1.1661125" layer="21"/>
<rectangle x1="8.69441875" y1="1.143" x2="8.9027" y2="1.1661125" layer="21"/>
<rectangle x1="-0.0127" y1="1.1661125" x2="0.889" y2="1.189228125" layer="21"/>
<rectangle x1="1.07441875" y1="1.1661125" x2="1.44271875" y2="1.189228125" layer="21"/>
<rectangle x1="1.60528125" y1="1.1661125" x2="1.97358125" y2="1.189228125" layer="21"/>
<rectangle x1="2.159" y1="1.1661125" x2="3.083559375" y2="1.189228125" layer="21"/>
<rectangle x1="3.24358125" y1="1.1661125" x2="3.705859375" y2="1.189228125" layer="21"/>
<rectangle x1="3.86841875" y1="1.1661125" x2="4.3307" y2="1.189228125" layer="21"/>
<rectangle x1="4.49071875" y1="1.1661125" x2="4.953" y2="1.189228125" layer="21"/>
<rectangle x1="5.13841875" y1="1.1661125" x2="5.5753" y2="1.189228125" layer="21"/>
<rectangle x1="5.76071875" y1="1.1661125" x2="6.03758125" y2="1.189228125" layer="21"/>
<rectangle x1="6.200140625" y1="1.1661125" x2="6.66241875" y2="1.189228125" layer="21"/>
<rectangle x1="6.822440625" y1="1.1661125" x2="7.1247" y2="1.189228125" layer="21"/>
<rectangle x1="7.401559375" y1="1.1661125" x2="7.584440625" y2="1.189228125" layer="21"/>
<rectangle x1="8.04671875" y1="1.1661125" x2="8.255" y2="1.189228125" layer="21"/>
<rectangle x1="8.69441875" y1="1.1661125" x2="8.9027" y2="1.189228125" layer="21"/>
<rectangle x1="-0.0127" y1="1.189228125" x2="0.866140625" y2="1.212340625" layer="21"/>
<rectangle x1="1.051559375" y1="1.189228125" x2="1.44271875" y2="1.212340625" layer="21"/>
<rectangle x1="1.60528125" y1="1.189228125" x2="1.97358125" y2="1.212340625" layer="21"/>
<rectangle x1="2.159" y1="1.189228125" x2="3.083559375" y2="1.212340625" layer="21"/>
<rectangle x1="3.24358125" y1="1.189228125" x2="3.705859375" y2="1.212340625" layer="21"/>
<rectangle x1="3.86841875" y1="1.189228125" x2="4.3307" y2="1.212340625" layer="21"/>
<rectangle x1="4.49071875" y1="1.189228125" x2="4.953" y2="1.212340625" layer="21"/>
<rectangle x1="5.13841875" y1="1.189228125" x2="5.5753" y2="1.212340625" layer="21"/>
<rectangle x1="5.76071875" y1="1.189228125" x2="6.03758125" y2="1.212340625" layer="21"/>
<rectangle x1="6.200140625" y1="1.189228125" x2="6.66241875" y2="1.212340625" layer="21"/>
<rectangle x1="6.822440625" y1="1.189228125" x2="7.1247" y2="1.212340625" layer="21"/>
<rectangle x1="7.401559375" y1="1.189228125" x2="7.584440625" y2="1.212340625" layer="21"/>
<rectangle x1="8.04671875" y1="1.189228125" x2="8.255" y2="1.212340625" layer="21"/>
<rectangle x1="8.69441875" y1="1.189228125" x2="8.9027" y2="1.212340625" layer="21"/>
<rectangle x1="-0.0127" y1="1.212340625" x2="0.84328125" y2="1.23545625" layer="21"/>
<rectangle x1="1.051559375" y1="1.212340625" x2="1.44271875" y2="1.23545625" layer="21"/>
<rectangle x1="1.60528125" y1="1.212340625" x2="1.97358125" y2="1.23545625" layer="21"/>
<rectangle x1="2.159" y1="1.212340625" x2="3.083559375" y2="1.23545625" layer="21"/>
<rectangle x1="3.24358125" y1="1.212340625" x2="3.705859375" y2="1.23545625" layer="21"/>
<rectangle x1="3.86841875" y1="1.212340625" x2="4.3307" y2="1.23545625" layer="21"/>
<rectangle x1="4.49071875" y1="1.212340625" x2="4.953" y2="1.23545625" layer="21"/>
<rectangle x1="5.13841875" y1="1.212340625" x2="5.5753" y2="1.23545625" layer="21"/>
<rectangle x1="5.76071875" y1="1.212340625" x2="6.03758125" y2="1.23545625" layer="21"/>
<rectangle x1="6.200140625" y1="1.212340625" x2="6.66241875" y2="1.23545625" layer="21"/>
<rectangle x1="6.822440625" y1="1.212340625" x2="7.1247" y2="1.23545625" layer="21"/>
<rectangle x1="7.401559375" y1="1.212340625" x2="7.584440625" y2="1.23545625" layer="21"/>
<rectangle x1="8.04671875" y1="1.212340625" x2="8.255" y2="1.23545625" layer="21"/>
<rectangle x1="8.69441875" y1="1.212340625" x2="8.9027" y2="1.23545625" layer="21"/>
<rectangle x1="-0.0127" y1="1.23545625" x2="0.82041875" y2="1.25856875" layer="21"/>
<rectangle x1="1.0287" y1="1.23545625" x2="1.44271875" y2="1.25856875" layer="21"/>
<rectangle x1="1.60528125" y1="1.23545625" x2="1.97358125" y2="1.25856875" layer="21"/>
<rectangle x1="2.159" y1="1.23545625" x2="3.083559375" y2="1.25856875" layer="21"/>
<rectangle x1="3.24358125" y1="1.23545625" x2="3.705859375" y2="1.25856875" layer="21"/>
<rectangle x1="3.86841875" y1="1.23545625" x2="4.3307" y2="1.25856875" layer="21"/>
<rectangle x1="4.49071875" y1="1.23545625" x2="4.953" y2="1.25856875" layer="21"/>
<rectangle x1="5.13841875" y1="1.23545625" x2="5.5753" y2="1.25856875" layer="21"/>
<rectangle x1="5.76071875" y1="1.23545625" x2="6.03758125" y2="1.25856875" layer="21"/>
<rectangle x1="6.223" y1="1.23545625" x2="6.66241875" y2="1.25856875" layer="21"/>
<rectangle x1="6.822440625" y1="1.23545625" x2="7.1247" y2="1.25856875" layer="21"/>
<rectangle x1="7.401559375" y1="1.23545625" x2="7.584440625" y2="1.25856875" layer="21"/>
<rectangle x1="8.04671875" y1="1.23545625" x2="8.255" y2="1.25856875" layer="21"/>
<rectangle x1="8.69441875" y1="1.23545625" x2="8.9027" y2="1.25856875" layer="21"/>
<rectangle x1="-0.0127" y1="1.25856875" x2="0.7747" y2="1.28143125" layer="21"/>
<rectangle x1="1.0287" y1="1.25856875" x2="1.44271875" y2="1.28143125" layer="21"/>
<rectangle x1="1.60528125" y1="1.25856875" x2="1.97358125" y2="1.28143125" layer="21"/>
<rectangle x1="2.159" y1="1.25856875" x2="3.083559375" y2="1.28143125" layer="21"/>
<rectangle x1="3.24358125" y1="1.25856875" x2="3.705859375" y2="1.28143125" layer="21"/>
<rectangle x1="3.86841875" y1="1.25856875" x2="4.3307" y2="1.28143125" layer="21"/>
<rectangle x1="4.49071875" y1="1.25856875" x2="4.953" y2="1.28143125" layer="21"/>
<rectangle x1="5.13841875" y1="1.25856875" x2="5.5753" y2="1.28143125" layer="21"/>
<rectangle x1="5.76071875" y1="1.25856875" x2="6.03758125" y2="1.28143125" layer="21"/>
<rectangle x1="6.223" y1="1.25856875" x2="6.66241875" y2="1.28143125" layer="21"/>
<rectangle x1="6.822440625" y1="1.25856875" x2="7.1247" y2="1.28143125" layer="21"/>
<rectangle x1="7.401559375" y1="1.25856875" x2="7.584440625" y2="1.28143125" layer="21"/>
<rectangle x1="8.04671875" y1="1.25856875" x2="8.255" y2="1.28143125" layer="21"/>
<rectangle x1="8.69441875" y1="1.25856875" x2="8.9027" y2="1.28143125" layer="21"/>
<rectangle x1="-0.0127" y1="1.28143125" x2="0.726440625" y2="1.30454375" layer="21"/>
<rectangle x1="1.0033" y1="1.28143125" x2="1.44271875" y2="1.30454375" layer="21"/>
<rectangle x1="1.60528125" y1="1.28143125" x2="1.97358125" y2="1.30454375" layer="21"/>
<rectangle x1="2.159" y1="1.28143125" x2="3.083559375" y2="1.30454375" layer="21"/>
<rectangle x1="3.24358125" y1="1.28143125" x2="3.705859375" y2="1.30454375" layer="21"/>
<rectangle x1="3.86841875" y1="1.28143125" x2="4.3307" y2="1.30454375" layer="21"/>
<rectangle x1="4.49071875" y1="1.28143125" x2="4.953" y2="1.30454375" layer="21"/>
<rectangle x1="5.13841875" y1="1.28143125" x2="5.5753" y2="1.30454375" layer="21"/>
<rectangle x1="5.76071875" y1="1.28143125" x2="6.060440625" y2="1.30454375" layer="21"/>
<rectangle x1="6.245859375" y1="1.28143125" x2="6.66241875" y2="1.30454375" layer="21"/>
<rectangle x1="6.822440625" y1="1.28143125" x2="7.1247" y2="1.30454375" layer="21"/>
<rectangle x1="7.401559375" y1="1.28143125" x2="7.584440625" y2="1.30454375" layer="21"/>
<rectangle x1="8.04671875" y1="1.28143125" x2="8.255" y2="1.30454375" layer="21"/>
<rectangle x1="8.69441875" y1="1.28143125" x2="8.9027" y2="1.30454375" layer="21"/>
<rectangle x1="-0.0127" y1="1.30454375" x2="0.70358125" y2="1.327659375" layer="21"/>
<rectangle x1="0.980440625" y1="1.30454375" x2="1.44271875" y2="1.327659375" layer="21"/>
<rectangle x1="1.60528125" y1="1.30454375" x2="1.97358125" y2="1.327659375" layer="21"/>
<rectangle x1="2.159" y1="1.30454375" x2="3.083559375" y2="1.327659375" layer="21"/>
<rectangle x1="3.24358125" y1="1.30454375" x2="3.705859375" y2="1.327659375" layer="21"/>
<rectangle x1="3.86841875" y1="1.30454375" x2="4.3307" y2="1.327659375" layer="21"/>
<rectangle x1="4.49071875" y1="1.30454375" x2="4.953" y2="1.327659375" layer="21"/>
<rectangle x1="5.13841875" y1="1.30454375" x2="5.5753" y2="1.327659375" layer="21"/>
<rectangle x1="5.76071875" y1="1.30454375" x2="6.060440625" y2="1.327659375" layer="21"/>
<rectangle x1="6.26871875" y1="1.30454375" x2="6.66241875" y2="1.327659375" layer="21"/>
<rectangle x1="6.822440625" y1="1.30454375" x2="7.1247" y2="1.327659375" layer="21"/>
<rectangle x1="7.401559375" y1="1.30454375" x2="7.584440625" y2="1.327659375" layer="21"/>
<rectangle x1="8.04671875" y1="1.30454375" x2="8.255" y2="1.327659375" layer="21"/>
<rectangle x1="8.69441875" y1="1.30454375" x2="8.9027" y2="1.327659375" layer="21"/>
<rectangle x1="-0.0127" y1="1.327659375" x2="0.657859375" y2="1.350771875" layer="21"/>
<rectangle x1="0.95758125" y1="1.327659375" x2="1.44271875" y2="1.350771875" layer="21"/>
<rectangle x1="1.60528125" y1="1.327659375" x2="1.97358125" y2="1.350771875" layer="21"/>
<rectangle x1="2.159" y1="1.327659375" x2="3.083559375" y2="1.350771875" layer="21"/>
<rectangle x1="3.24358125" y1="1.327659375" x2="3.705859375" y2="1.350771875" layer="21"/>
<rectangle x1="3.86841875" y1="1.327659375" x2="4.3307" y2="1.350771875" layer="21"/>
<rectangle x1="4.49071875" y1="1.327659375" x2="4.953" y2="1.350771875" layer="21"/>
<rectangle x1="5.13841875" y1="1.327659375" x2="5.5753" y2="1.350771875" layer="21"/>
<rectangle x1="5.76071875" y1="1.327659375" x2="6.0833" y2="1.350771875" layer="21"/>
<rectangle x1="6.314440625" y1="1.327659375" x2="6.66241875" y2="1.350771875" layer="21"/>
<rectangle x1="6.822440625" y1="1.327659375" x2="7.1247" y2="1.350771875" layer="21"/>
<rectangle x1="7.401559375" y1="1.327659375" x2="7.584440625" y2="1.350771875" layer="21"/>
<rectangle x1="8.04671875" y1="1.327659375" x2="8.255" y2="1.350771875" layer="21"/>
<rectangle x1="8.69441875" y1="1.327659375" x2="8.9027" y2="1.350771875" layer="21"/>
<rectangle x1="-0.0127" y1="1.350771875" x2="0.635" y2="1.3738875" layer="21"/>
<rectangle x1="0.93471875" y1="1.350771875" x2="1.44271875" y2="1.3738875" layer="21"/>
<rectangle x1="1.60528125" y1="1.350771875" x2="1.97358125" y2="1.3738875" layer="21"/>
<rectangle x1="2.8067" y1="1.350771875" x2="3.083559375" y2="1.3738875" layer="21"/>
<rectangle x1="3.24358125" y1="1.350771875" x2="3.705859375" y2="1.3738875" layer="21"/>
<rectangle x1="3.86841875" y1="1.350771875" x2="4.3307" y2="1.3738875" layer="21"/>
<rectangle x1="4.49071875" y1="1.350771875" x2="4.953" y2="1.3738875" layer="21"/>
<rectangle x1="5.13841875" y1="1.350771875" x2="5.5753" y2="1.3738875" layer="21"/>
<rectangle x1="5.76071875" y1="1.350771875" x2="6.0833" y2="1.3738875" layer="21"/>
<rectangle x1="6.3627" y1="1.350771875" x2="6.66241875" y2="1.3738875" layer="21"/>
<rectangle x1="6.822440625" y1="1.350771875" x2="7.1247" y2="1.3738875" layer="21"/>
<rectangle x1="7.401559375" y1="1.350771875" x2="7.584440625" y2="1.3738875" layer="21"/>
<rectangle x1="8.04671875" y1="1.350771875" x2="8.255" y2="1.3738875" layer="21"/>
<rectangle x1="8.69441875" y1="1.350771875" x2="8.9027" y2="1.3738875" layer="21"/>
<rectangle x1="-0.0127" y1="1.3738875" x2="0.58928125" y2="1.397" layer="21"/>
<rectangle x1="0.911859375" y1="1.3738875" x2="1.44271875" y2="1.397" layer="21"/>
<rectangle x1="1.60528125" y1="1.3738875" x2="1.97358125" y2="1.397" layer="21"/>
<rectangle x1="2.8067" y1="1.3738875" x2="3.083559375" y2="1.397" layer="21"/>
<rectangle x1="3.24358125" y1="1.3738875" x2="3.705859375" y2="1.397" layer="21"/>
<rectangle x1="3.86841875" y1="1.3738875" x2="4.3307" y2="1.397" layer="21"/>
<rectangle x1="4.49071875" y1="1.3738875" x2="4.953" y2="1.397" layer="21"/>
<rectangle x1="5.13841875" y1="1.3738875" x2="5.5753" y2="1.397" layer="21"/>
<rectangle x1="5.76071875" y1="1.3738875" x2="6.1087" y2="1.397" layer="21"/>
<rectangle x1="6.43128125" y1="1.3738875" x2="6.66241875" y2="1.397" layer="21"/>
<rectangle x1="6.822440625" y1="1.3738875" x2="7.1247" y2="1.397" layer="21"/>
<rectangle x1="7.401559375" y1="1.3738875" x2="7.584440625" y2="1.397" layer="21"/>
<rectangle x1="8.04671875" y1="1.3738875" x2="8.255" y2="1.397" layer="21"/>
<rectangle x1="8.69441875" y1="1.3738875" x2="8.9027" y2="1.397" layer="21"/>
<rectangle x1="-0.0127" y1="1.397" x2="0.543559375" y2="1.4201125" layer="21"/>
<rectangle x1="0.866140625" y1="1.397" x2="1.44271875" y2="1.4201125" layer="21"/>
<rectangle x1="1.60528125" y1="1.397" x2="1.97358125" y2="1.4201125" layer="21"/>
<rectangle x1="2.8067" y1="1.397" x2="3.083559375" y2="1.4201125" layer="21"/>
<rectangle x1="3.24358125" y1="1.397" x2="3.705859375" y2="1.4201125" layer="21"/>
<rectangle x1="3.86841875" y1="1.397" x2="4.3307" y2="1.4201125" layer="21"/>
<rectangle x1="4.49071875" y1="1.397" x2="4.953" y2="1.4201125" layer="21"/>
<rectangle x1="5.13841875" y1="1.397" x2="5.5753" y2="1.4201125" layer="21"/>
<rectangle x1="5.76071875" y1="1.397" x2="6.131559375" y2="1.4201125" layer="21"/>
<rectangle x1="6.477" y1="1.397" x2="6.66241875" y2="1.4201125" layer="21"/>
<rectangle x1="6.822440625" y1="1.397" x2="7.1247" y2="1.4201125" layer="21"/>
<rectangle x1="7.401559375" y1="1.397" x2="7.584440625" y2="1.4201125" layer="21"/>
<rectangle x1="8.04671875" y1="1.397" x2="8.255" y2="1.4201125" layer="21"/>
<rectangle x1="8.69441875" y1="1.397" x2="8.9027" y2="1.4201125" layer="21"/>
<rectangle x1="-0.0127" y1="1.4201125" x2="0.5207" y2="1.443228125" layer="21"/>
<rectangle x1="0.84328125" y1="1.4201125" x2="1.44271875" y2="1.443228125" layer="21"/>
<rectangle x1="1.60528125" y1="1.4201125" x2="1.97358125" y2="1.443228125" layer="21"/>
<rectangle x1="2.8067" y1="1.4201125" x2="3.083559375" y2="1.443228125" layer="21"/>
<rectangle x1="3.24358125" y1="1.4201125" x2="3.705859375" y2="1.443228125" layer="21"/>
<rectangle x1="3.86841875" y1="1.4201125" x2="4.3307" y2="1.443228125" layer="21"/>
<rectangle x1="4.49071875" y1="1.4201125" x2="4.953" y2="1.443228125" layer="21"/>
<rectangle x1="5.13841875" y1="1.4201125" x2="5.5753" y2="1.443228125" layer="21"/>
<rectangle x1="5.76071875" y1="1.4201125" x2="6.17728125" y2="1.443228125" layer="21"/>
<rectangle x1="6.54558125" y1="1.4201125" x2="6.66241875" y2="1.443228125" layer="21"/>
<rectangle x1="6.822440625" y1="1.4201125" x2="7.1247" y2="1.443228125" layer="21"/>
<rectangle x1="7.401559375" y1="1.4201125" x2="7.584440625" y2="1.443228125" layer="21"/>
<rectangle x1="8.04671875" y1="1.4201125" x2="8.255" y2="1.443228125" layer="21"/>
<rectangle x1="8.69441875" y1="1.4201125" x2="8.9027" y2="1.443228125" layer="21"/>
<rectangle x1="-0.0127" y1="1.443228125" x2="0.472440625" y2="1.466340625" layer="21"/>
<rectangle x1="0.797559375" y1="1.443228125" x2="1.44271875" y2="1.466340625" layer="21"/>
<rectangle x1="1.60528125" y1="1.443228125" x2="1.97358125" y2="1.466340625" layer="21"/>
<rectangle x1="2.8067" y1="1.443228125" x2="3.083559375" y2="1.466340625" layer="21"/>
<rectangle x1="3.24358125" y1="1.443228125" x2="3.705859375" y2="1.466340625" layer="21"/>
<rectangle x1="3.86841875" y1="1.443228125" x2="4.3307" y2="1.466340625" layer="21"/>
<rectangle x1="4.49071875" y1="1.443228125" x2="4.953" y2="1.466340625" layer="21"/>
<rectangle x1="5.13841875" y1="1.443228125" x2="5.5753" y2="1.466340625" layer="21"/>
<rectangle x1="5.76071875" y1="1.443228125" x2="6.223" y2="1.466340625" layer="21"/>
<rectangle x1="6.6167" y1="1.443228125" x2="6.66241875" y2="1.466340625" layer="21"/>
<rectangle x1="6.822440625" y1="1.443228125" x2="7.1247" y2="1.466340625" layer="21"/>
<rectangle x1="7.401559375" y1="1.443228125" x2="7.584440625" y2="1.466340625" layer="21"/>
<rectangle x1="8.04671875" y1="1.443228125" x2="8.255" y2="1.466340625" layer="21"/>
<rectangle x1="8.69441875" y1="1.443228125" x2="8.9027" y2="1.466340625" layer="21"/>
<rectangle x1="-0.0127" y1="1.466340625" x2="0.44958125" y2="1.48945625" layer="21"/>
<rectangle x1="0.7493" y1="1.466340625" x2="1.44271875" y2="1.48945625" layer="21"/>
<rectangle x1="1.60528125" y1="1.466340625" x2="1.97358125" y2="1.48945625" layer="21"/>
<rectangle x1="2.8067" y1="1.466340625" x2="3.083559375" y2="1.48945625" layer="21"/>
<rectangle x1="3.24358125" y1="1.466340625" x2="3.705859375" y2="1.48945625" layer="21"/>
<rectangle x1="3.86841875" y1="1.466340625" x2="4.3307" y2="1.48945625" layer="21"/>
<rectangle x1="4.49071875" y1="1.466340625" x2="4.953" y2="1.48945625" layer="21"/>
<rectangle x1="5.13841875" y1="1.466340625" x2="5.5753" y2="1.48945625" layer="21"/>
<rectangle x1="5.76071875" y1="1.466340625" x2="6.26871875" y2="1.48945625" layer="21"/>
<rectangle x1="6.822440625" y1="1.466340625" x2="7.1247" y2="1.48945625" layer="21"/>
<rectangle x1="7.401559375" y1="1.466340625" x2="7.584440625" y2="1.48945625" layer="21"/>
<rectangle x1="8.04671875" y1="1.466340625" x2="8.255" y2="1.48945625" layer="21"/>
<rectangle x1="8.69441875" y1="1.466340625" x2="8.9027" y2="1.48945625" layer="21"/>
<rectangle x1="-0.0127" y1="1.48945625" x2="0.403859375" y2="1.51256875" layer="21"/>
<rectangle x1="0.726440625" y1="1.48945625" x2="1.44271875" y2="1.51256875" layer="21"/>
<rectangle x1="1.60528125" y1="1.48945625" x2="1.97358125" y2="1.51256875" layer="21"/>
<rectangle x1="2.8067" y1="1.48945625" x2="3.083559375" y2="1.51256875" layer="21"/>
<rectangle x1="3.24358125" y1="1.48945625" x2="3.705859375" y2="1.51256875" layer="21"/>
<rectangle x1="3.86841875" y1="1.48945625" x2="4.3307" y2="1.51256875" layer="21"/>
<rectangle x1="4.49071875" y1="1.48945625" x2="4.953" y2="1.51256875" layer="21"/>
<rectangle x1="5.13841875" y1="1.48945625" x2="5.5753" y2="1.51256875" layer="21"/>
<rectangle x1="5.76071875" y1="1.48945625" x2="6.314440625" y2="1.51256875" layer="21"/>
<rectangle x1="6.822440625" y1="1.48945625" x2="7.1247" y2="1.51256875" layer="21"/>
<rectangle x1="7.401559375" y1="1.48945625" x2="7.584440625" y2="1.51256875" layer="21"/>
<rectangle x1="8.04671875" y1="1.48945625" x2="8.255" y2="1.51256875" layer="21"/>
<rectangle x1="8.69441875" y1="1.48945625" x2="8.9027" y2="1.51256875" layer="21"/>
<rectangle x1="-0.0127" y1="1.51256875" x2="0.381" y2="1.53543125" layer="21"/>
<rectangle x1="0.68071875" y1="1.51256875" x2="1.44271875" y2="1.53543125" layer="21"/>
<rectangle x1="1.60528125" y1="1.51256875" x2="1.97358125" y2="1.53543125" layer="21"/>
<rectangle x1="2.159" y1="1.51256875" x2="2.62128125" y2="1.53543125" layer="21"/>
<rectangle x1="2.8067" y1="1.51256875" x2="3.083559375" y2="1.53543125" layer="21"/>
<rectangle x1="3.24358125" y1="1.51256875" x2="3.705859375" y2="1.53543125" layer="21"/>
<rectangle x1="3.86841875" y1="1.51256875" x2="4.3307" y2="1.53543125" layer="21"/>
<rectangle x1="4.49071875" y1="1.51256875" x2="4.953" y2="1.53543125" layer="21"/>
<rectangle x1="5.13841875" y1="1.51256875" x2="5.5753" y2="1.53543125" layer="21"/>
<rectangle x1="5.76071875" y1="1.51256875" x2="6.385559375" y2="1.53543125" layer="21"/>
<rectangle x1="6.822440625" y1="1.51256875" x2="7.1247" y2="1.53543125" layer="21"/>
<rectangle x1="7.401559375" y1="1.51256875" x2="7.584440625" y2="1.53543125" layer="21"/>
<rectangle x1="8.04671875" y1="1.51256875" x2="8.255" y2="1.53543125" layer="21"/>
<rectangle x1="8.69441875" y1="1.51256875" x2="8.9027" y2="1.53543125" layer="21"/>
<rectangle x1="-0.0127" y1="1.53543125" x2="0.358140625" y2="1.55854375" layer="21"/>
<rectangle x1="0.657859375" y1="1.53543125" x2="1.44271875" y2="1.55854375" layer="21"/>
<rectangle x1="1.60528125" y1="1.53543125" x2="1.97358125" y2="1.55854375" layer="21"/>
<rectangle x1="2.159" y1="1.53543125" x2="2.62128125" y2="1.55854375" layer="21"/>
<rectangle x1="2.8067" y1="1.53543125" x2="3.083559375" y2="1.55854375" layer="21"/>
<rectangle x1="3.24358125" y1="1.53543125" x2="3.705859375" y2="1.55854375" layer="21"/>
<rectangle x1="3.86841875" y1="1.53543125" x2="4.3307" y2="1.55854375" layer="21"/>
<rectangle x1="4.49071875" y1="1.53543125" x2="4.953" y2="1.55854375" layer="21"/>
<rectangle x1="5.13841875" y1="1.53543125" x2="5.5753" y2="1.55854375" layer="21"/>
<rectangle x1="5.76071875" y1="1.53543125" x2="6.454140625" y2="1.55854375" layer="21"/>
<rectangle x1="6.822440625" y1="1.53543125" x2="7.1247" y2="1.55854375" layer="21"/>
<rectangle x1="7.401559375" y1="1.53543125" x2="7.584440625" y2="1.55854375" layer="21"/>
<rectangle x1="8.04671875" y1="1.53543125" x2="8.255" y2="1.55854375" layer="21"/>
<rectangle x1="8.69441875" y1="1.53543125" x2="8.9027" y2="1.55854375" layer="21"/>
<rectangle x1="-0.0127" y1="1.55854375" x2="0.358140625" y2="1.581659375" layer="21"/>
<rectangle x1="0.612140625" y1="1.55854375" x2="1.44271875" y2="1.581659375" layer="21"/>
<rectangle x1="1.60528125" y1="1.55854375" x2="1.97358125" y2="1.581659375" layer="21"/>
<rectangle x1="2.159" y1="1.55854375" x2="2.62128125" y2="1.581659375" layer="21"/>
<rectangle x1="2.8067" y1="1.55854375" x2="3.083559375" y2="1.581659375" layer="21"/>
<rectangle x1="3.24358125" y1="1.55854375" x2="3.705859375" y2="1.581659375" layer="21"/>
<rectangle x1="3.86841875" y1="1.55854375" x2="4.3307" y2="1.581659375" layer="21"/>
<rectangle x1="4.49071875" y1="1.55854375" x2="4.953" y2="1.581659375" layer="21"/>
<rectangle x1="5.13841875" y1="1.55854375" x2="5.5753" y2="1.581659375" layer="21"/>
<rectangle x1="5.76071875" y1="1.55854375" x2="6.499859375" y2="1.581659375" layer="21"/>
<rectangle x1="6.822440625" y1="1.55854375" x2="7.1247" y2="1.581659375" layer="21"/>
<rectangle x1="7.401559375" y1="1.55854375" x2="7.584440625" y2="1.581659375" layer="21"/>
<rectangle x1="8.04671875" y1="1.55854375" x2="8.255" y2="1.581659375" layer="21"/>
<rectangle x1="8.69441875" y1="1.55854375" x2="8.9027" y2="1.581659375" layer="21"/>
<rectangle x1="-0.0127" y1="1.581659375" x2="0.33528125" y2="1.604771875" layer="21"/>
<rectangle x1="0.56641875" y1="1.581659375" x2="1.44271875" y2="1.604771875" layer="21"/>
<rectangle x1="1.60528125" y1="1.581659375" x2="1.97358125" y2="1.604771875" layer="21"/>
<rectangle x1="2.159" y1="1.581659375" x2="2.62128125" y2="1.604771875" layer="21"/>
<rectangle x1="2.8067" y1="1.581659375" x2="3.083559375" y2="1.604771875" layer="21"/>
<rectangle x1="3.24358125" y1="1.581659375" x2="3.705859375" y2="1.604771875" layer="21"/>
<rectangle x1="3.86841875" y1="1.581659375" x2="4.3307" y2="1.604771875" layer="21"/>
<rectangle x1="4.49071875" y1="1.581659375" x2="4.953" y2="1.604771875" layer="21"/>
<rectangle x1="5.13841875" y1="1.581659375" x2="5.5753" y2="1.604771875" layer="21"/>
<rectangle x1="5.76071875" y1="1.581659375" x2="6.568440625" y2="1.604771875" layer="21"/>
<rectangle x1="6.822440625" y1="1.581659375" x2="7.1247" y2="1.604771875" layer="21"/>
<rectangle x1="7.401559375" y1="1.581659375" x2="7.584440625" y2="1.604771875" layer="21"/>
<rectangle x1="8.04671875" y1="1.581659375" x2="8.255" y2="1.604771875" layer="21"/>
<rectangle x1="8.69441875" y1="1.581659375" x2="8.9027" y2="1.604771875" layer="21"/>
<rectangle x1="-0.0127" y1="1.604771875" x2="0.31241875" y2="1.6278875" layer="21"/>
<rectangle x1="0.543559375" y1="1.604771875" x2="1.44271875" y2="1.6278875" layer="21"/>
<rectangle x1="1.60528125" y1="1.604771875" x2="1.97358125" y2="1.6278875" layer="21"/>
<rectangle x1="2.159" y1="1.604771875" x2="2.62128125" y2="1.6278875" layer="21"/>
<rectangle x1="2.8067" y1="1.604771875" x2="3.083559375" y2="1.6278875" layer="21"/>
<rectangle x1="3.24358125" y1="1.604771875" x2="3.705859375" y2="1.6278875" layer="21"/>
<rectangle x1="3.86841875" y1="1.604771875" x2="4.3307" y2="1.6278875" layer="21"/>
<rectangle x1="4.49071875" y1="1.604771875" x2="4.953" y2="1.6278875" layer="21"/>
<rectangle x1="5.13841875" y1="1.604771875" x2="5.5753" y2="1.6278875" layer="21"/>
<rectangle x1="5.76071875" y1="1.604771875" x2="6.639559375" y2="1.6278875" layer="21"/>
<rectangle x1="6.822440625" y1="1.604771875" x2="7.1247" y2="1.6278875" layer="21"/>
<rectangle x1="7.401559375" y1="1.604771875" x2="7.584440625" y2="1.6278875" layer="21"/>
<rectangle x1="8.04671875" y1="1.604771875" x2="8.255" y2="1.6278875" layer="21"/>
<rectangle x1="8.69441875" y1="1.604771875" x2="8.9027" y2="1.6278875" layer="21"/>
<rectangle x1="-0.0127" y1="1.6278875" x2="0.31241875" y2="1.651" layer="21"/>
<rectangle x1="0.5207" y1="1.6278875" x2="1.44271875" y2="1.651" layer="21"/>
<rectangle x1="1.60528125" y1="1.6278875" x2="1.97358125" y2="1.651" layer="21"/>
<rectangle x1="2.159" y1="1.6278875" x2="2.62128125" y2="1.651" layer="21"/>
<rectangle x1="2.8067" y1="1.6278875" x2="3.083559375" y2="1.651" layer="21"/>
<rectangle x1="3.24358125" y1="1.6278875" x2="3.705859375" y2="1.651" layer="21"/>
<rectangle x1="3.86841875" y1="1.6278875" x2="4.3307" y2="1.651" layer="21"/>
<rectangle x1="4.49071875" y1="1.6278875" x2="4.953" y2="1.651" layer="21"/>
<rectangle x1="5.13841875" y1="1.6278875" x2="5.5753" y2="1.651" layer="21"/>
<rectangle x1="5.76071875" y1="1.6278875" x2="6.66241875" y2="1.651" layer="21"/>
<rectangle x1="6.822440625" y1="1.6278875" x2="7.1247" y2="1.651" layer="21"/>
<rectangle x1="7.401559375" y1="1.6278875" x2="7.584440625" y2="1.651" layer="21"/>
<rectangle x1="8.04671875" y1="1.6278875" x2="8.255" y2="1.651" layer="21"/>
<rectangle x1="8.69441875" y1="1.6278875" x2="8.9027" y2="1.651" layer="21"/>
<rectangle x1="-0.0127" y1="1.651" x2="0.31241875" y2="1.6741125" layer="21"/>
<rectangle x1="0.4953" y1="1.651" x2="1.44271875" y2="1.6741125" layer="21"/>
<rectangle x1="1.60528125" y1="1.651" x2="1.97358125" y2="1.6741125" layer="21"/>
<rectangle x1="2.159" y1="1.651" x2="2.62128125" y2="1.6741125" layer="21"/>
<rectangle x1="2.8067" y1="1.651" x2="3.083559375" y2="1.6741125" layer="21"/>
<rectangle x1="3.24358125" y1="1.651" x2="3.705859375" y2="1.6741125" layer="21"/>
<rectangle x1="3.86841875" y1="1.651" x2="4.3307" y2="1.6741125" layer="21"/>
<rectangle x1="4.49071875" y1="1.651" x2="4.953" y2="1.6741125" layer="21"/>
<rectangle x1="5.13841875" y1="1.651" x2="5.5753" y2="1.6741125" layer="21"/>
<rectangle x1="5.76071875" y1="1.651" x2="6.66241875" y2="1.6741125" layer="21"/>
<rectangle x1="6.822440625" y1="1.651" x2="7.1247" y2="1.6741125" layer="21"/>
<rectangle x1="7.401559375" y1="1.651" x2="7.584440625" y2="1.6741125" layer="21"/>
<rectangle x1="8.04671875" y1="1.651" x2="8.255" y2="1.6741125" layer="21"/>
<rectangle x1="8.69441875" y1="1.651" x2="8.9027" y2="1.6741125" layer="21"/>
<rectangle x1="-0.0127" y1="1.6741125" x2="0.289559375" y2="1.697228125" layer="21"/>
<rectangle x1="0.472440625" y1="1.6741125" x2="1.44271875" y2="1.697228125" layer="21"/>
<rectangle x1="1.60528125" y1="1.6741125" x2="1.97358125" y2="1.697228125" layer="21"/>
<rectangle x1="2.159" y1="1.6741125" x2="2.62128125" y2="1.697228125" layer="21"/>
<rectangle x1="2.8067" y1="1.6741125" x2="3.083559375" y2="1.697228125" layer="21"/>
<rectangle x1="3.24358125" y1="1.6741125" x2="3.705859375" y2="1.697228125" layer="21"/>
<rectangle x1="3.86841875" y1="1.6741125" x2="4.3307" y2="1.697228125" layer="21"/>
<rectangle x1="4.49071875" y1="1.6741125" x2="4.953" y2="1.697228125" layer="21"/>
<rectangle x1="5.13841875" y1="1.6741125" x2="5.5753" y2="1.697228125" layer="21"/>
<rectangle x1="5.76071875" y1="1.6741125" x2="6.66241875" y2="1.697228125" layer="21"/>
<rectangle x1="6.822440625" y1="1.6741125" x2="7.1247" y2="1.697228125" layer="21"/>
<rectangle x1="7.401559375" y1="1.6741125" x2="7.584440625" y2="1.697228125" layer="21"/>
<rectangle x1="8.04671875" y1="1.6741125" x2="8.255" y2="1.697228125" layer="21"/>
<rectangle x1="8.69441875" y1="1.6741125" x2="8.9027" y2="1.697228125" layer="21"/>
<rectangle x1="-0.0127" y1="1.697228125" x2="0.289559375" y2="1.720340625" layer="21"/>
<rectangle x1="0.472440625" y1="1.697228125" x2="1.44271875" y2="1.720340625" layer="21"/>
<rectangle x1="1.60528125" y1="1.697228125" x2="1.97358125" y2="1.720340625" layer="21"/>
<rectangle x1="2.159" y1="1.697228125" x2="2.62128125" y2="1.720340625" layer="21"/>
<rectangle x1="2.8067" y1="1.697228125" x2="3.083559375" y2="1.720340625" layer="21"/>
<rectangle x1="3.24358125" y1="1.697228125" x2="3.705859375" y2="1.720340625" layer="21"/>
<rectangle x1="3.86841875" y1="1.697228125" x2="4.3307" y2="1.720340625" layer="21"/>
<rectangle x1="4.49071875" y1="1.697228125" x2="4.953" y2="1.720340625" layer="21"/>
<rectangle x1="5.13841875" y1="1.697228125" x2="5.5753" y2="1.720340625" layer="21"/>
<rectangle x1="5.76071875" y1="1.697228125" x2="6.66241875" y2="1.720340625" layer="21"/>
<rectangle x1="6.822440625" y1="1.697228125" x2="7.1247" y2="1.720340625" layer="21"/>
<rectangle x1="7.401559375" y1="1.697228125" x2="7.584440625" y2="1.720340625" layer="21"/>
<rectangle x1="8.04671875" y1="1.697228125" x2="8.255" y2="1.720340625" layer="21"/>
<rectangle x1="8.69441875" y1="1.697228125" x2="8.9027" y2="1.720340625" layer="21"/>
<rectangle x1="-0.0127" y1="1.720340625" x2="0.289559375" y2="1.74345625" layer="21"/>
<rectangle x1="0.44958125" y1="1.720340625" x2="0.911859375" y2="1.74345625" layer="21"/>
<rectangle x1="1.07441875" y1="1.720340625" x2="1.44271875" y2="1.74345625" layer="21"/>
<rectangle x1="1.60528125" y1="1.720340625" x2="1.97358125" y2="1.74345625" layer="21"/>
<rectangle x1="2.159" y1="1.720340625" x2="2.62128125" y2="1.74345625" layer="21"/>
<rectangle x1="2.8067" y1="1.720340625" x2="3.083559375" y2="1.74345625" layer="21"/>
<rectangle x1="3.24358125" y1="1.720340625" x2="3.705859375" y2="1.74345625" layer="21"/>
<rectangle x1="3.86841875" y1="1.720340625" x2="4.3307" y2="1.74345625" layer="21"/>
<rectangle x1="4.49071875" y1="1.720340625" x2="4.953" y2="1.74345625" layer="21"/>
<rectangle x1="5.13841875" y1="1.720340625" x2="5.5753" y2="1.74345625" layer="21"/>
<rectangle x1="5.76071875" y1="1.720340625" x2="6.66241875" y2="1.74345625" layer="21"/>
<rectangle x1="6.822440625" y1="1.720340625" x2="7.1247" y2="1.74345625" layer="21"/>
<rectangle x1="7.401559375" y1="1.720340625" x2="7.584440625" y2="1.74345625" layer="21"/>
<rectangle x1="8.04671875" y1="1.720340625" x2="8.255" y2="1.74345625" layer="21"/>
<rectangle x1="8.69441875" y1="1.720340625" x2="8.9027" y2="1.74345625" layer="21"/>
<rectangle x1="-0.0127" y1="1.74345625" x2="0.289559375" y2="1.76656875" layer="21"/>
<rectangle x1="0.44958125" y1="1.74345625" x2="0.911859375" y2="1.76656875" layer="21"/>
<rectangle x1="1.07441875" y1="1.74345625" x2="1.44271875" y2="1.76656875" layer="21"/>
<rectangle x1="1.60528125" y1="1.74345625" x2="1.97358125" y2="1.76656875" layer="21"/>
<rectangle x1="2.159" y1="1.74345625" x2="2.62128125" y2="1.76656875" layer="21"/>
<rectangle x1="2.8067" y1="1.74345625" x2="3.083559375" y2="1.76656875" layer="21"/>
<rectangle x1="3.24358125" y1="1.74345625" x2="3.705859375" y2="1.76656875" layer="21"/>
<rectangle x1="3.86841875" y1="1.74345625" x2="4.3307" y2="1.76656875" layer="21"/>
<rectangle x1="4.49071875" y1="1.74345625" x2="4.953" y2="1.76656875" layer="21"/>
<rectangle x1="5.13841875" y1="1.74345625" x2="5.5753" y2="1.76656875" layer="21"/>
<rectangle x1="5.76071875" y1="1.74345625" x2="6.03758125" y2="1.76656875" layer="21"/>
<rectangle x1="6.223" y1="1.74345625" x2="6.66241875" y2="1.76656875" layer="21"/>
<rectangle x1="6.822440625" y1="1.74345625" x2="7.1247" y2="1.76656875" layer="21"/>
<rectangle x1="7.401559375" y1="1.74345625" x2="7.584440625" y2="1.76656875" layer="21"/>
<rectangle x1="8.04671875" y1="1.74345625" x2="8.255" y2="1.76656875" layer="21"/>
<rectangle x1="8.69441875" y1="1.74345625" x2="8.9027" y2="1.76656875" layer="21"/>
<rectangle x1="-0.0127" y1="1.76656875" x2="0.289559375" y2="1.78943125" layer="21"/>
<rectangle x1="0.44958125" y1="1.76656875" x2="0.911859375" y2="1.78943125" layer="21"/>
<rectangle x1="1.07441875" y1="1.76656875" x2="1.44271875" y2="1.78943125" layer="21"/>
<rectangle x1="1.60528125" y1="1.76656875" x2="1.97358125" y2="1.78943125" layer="21"/>
<rectangle x1="2.159" y1="1.76656875" x2="2.62128125" y2="1.78943125" layer="21"/>
<rectangle x1="2.8067" y1="1.76656875" x2="3.083559375" y2="1.78943125" layer="21"/>
<rectangle x1="3.24358125" y1="1.76656875" x2="3.705859375" y2="1.78943125" layer="21"/>
<rectangle x1="3.86841875" y1="1.76656875" x2="4.3307" y2="1.78943125" layer="21"/>
<rectangle x1="4.49071875" y1="1.76656875" x2="4.953" y2="1.78943125" layer="21"/>
<rectangle x1="5.13841875" y1="1.76656875" x2="5.5753" y2="1.78943125" layer="21"/>
<rectangle x1="5.76071875" y1="1.76656875" x2="6.03758125" y2="1.78943125" layer="21"/>
<rectangle x1="6.223" y1="1.76656875" x2="6.66241875" y2="1.78943125" layer="21"/>
<rectangle x1="6.822440625" y1="1.76656875" x2="7.1247" y2="1.78943125" layer="21"/>
<rectangle x1="7.401559375" y1="1.76656875" x2="7.584440625" y2="1.78943125" layer="21"/>
<rectangle x1="8.04671875" y1="1.76656875" x2="8.255" y2="1.78943125" layer="21"/>
<rectangle x1="8.69441875" y1="1.76656875" x2="8.9027" y2="1.78943125" layer="21"/>
<rectangle x1="-0.0127" y1="1.78943125" x2="0.289559375" y2="1.81254375" layer="21"/>
<rectangle x1="0.44958125" y1="1.78943125" x2="0.911859375" y2="1.81254375" layer="21"/>
<rectangle x1="1.07441875" y1="1.78943125" x2="1.44271875" y2="1.81254375" layer="21"/>
<rectangle x1="1.60528125" y1="1.78943125" x2="1.97358125" y2="1.81254375" layer="21"/>
<rectangle x1="2.159" y1="1.78943125" x2="2.62128125" y2="1.81254375" layer="21"/>
<rectangle x1="2.8067" y1="1.78943125" x2="3.083559375" y2="1.81254375" layer="21"/>
<rectangle x1="3.24358125" y1="1.78943125" x2="3.705859375" y2="1.81254375" layer="21"/>
<rectangle x1="3.86841875" y1="1.78943125" x2="4.3307" y2="1.81254375" layer="21"/>
<rectangle x1="4.49071875" y1="1.78943125" x2="4.953" y2="1.81254375" layer="21"/>
<rectangle x1="5.13841875" y1="1.78943125" x2="5.5753" y2="1.81254375" layer="21"/>
<rectangle x1="5.76071875" y1="1.78943125" x2="6.03758125" y2="1.81254375" layer="21"/>
<rectangle x1="6.223" y1="1.78943125" x2="6.66241875" y2="1.81254375" layer="21"/>
<rectangle x1="6.822440625" y1="1.78943125" x2="7.1247" y2="1.81254375" layer="21"/>
<rectangle x1="7.401559375" y1="1.78943125" x2="7.584440625" y2="1.81254375" layer="21"/>
<rectangle x1="8.04671875" y1="1.78943125" x2="8.255" y2="1.81254375" layer="21"/>
<rectangle x1="8.69441875" y1="1.78943125" x2="8.9027" y2="1.81254375" layer="21"/>
<rectangle x1="-0.0127" y1="1.81254375" x2="0.289559375" y2="1.835659375" layer="21"/>
<rectangle x1="0.44958125" y1="1.81254375" x2="0.911859375" y2="1.835659375" layer="21"/>
<rectangle x1="1.07441875" y1="1.81254375" x2="1.44271875" y2="1.835659375" layer="21"/>
<rectangle x1="1.60528125" y1="1.81254375" x2="1.97358125" y2="1.835659375" layer="21"/>
<rectangle x1="2.159" y1="1.81254375" x2="2.62128125" y2="1.835659375" layer="21"/>
<rectangle x1="2.8067" y1="1.81254375" x2="3.083559375" y2="1.835659375" layer="21"/>
<rectangle x1="3.24358125" y1="1.81254375" x2="3.705859375" y2="1.835659375" layer="21"/>
<rectangle x1="3.86841875" y1="1.81254375" x2="4.3307" y2="1.835659375" layer="21"/>
<rectangle x1="4.49071875" y1="1.81254375" x2="4.953" y2="1.835659375" layer="21"/>
<rectangle x1="5.13841875" y1="1.81254375" x2="5.5753" y2="1.835659375" layer="21"/>
<rectangle x1="5.76071875" y1="1.81254375" x2="6.03758125" y2="1.835659375" layer="21"/>
<rectangle x1="6.223" y1="1.81254375" x2="6.66241875" y2="1.835659375" layer="21"/>
<rectangle x1="6.822440625" y1="1.81254375" x2="7.1247" y2="1.835659375" layer="21"/>
<rectangle x1="7.401559375" y1="1.81254375" x2="7.584440625" y2="1.835659375" layer="21"/>
<rectangle x1="8.04671875" y1="1.81254375" x2="8.255" y2="1.835659375" layer="21"/>
<rectangle x1="8.69441875" y1="1.81254375" x2="8.9027" y2="1.835659375" layer="21"/>
<rectangle x1="-0.0127" y1="1.835659375" x2="0.289559375" y2="1.858771875" layer="21"/>
<rectangle x1="0.44958125" y1="1.835659375" x2="0.911859375" y2="1.858771875" layer="21"/>
<rectangle x1="1.07441875" y1="1.835659375" x2="1.44271875" y2="1.858771875" layer="21"/>
<rectangle x1="1.60528125" y1="1.835659375" x2="1.97358125" y2="1.858771875" layer="21"/>
<rectangle x1="2.159" y1="1.835659375" x2="2.62128125" y2="1.858771875" layer="21"/>
<rectangle x1="2.8067" y1="1.835659375" x2="3.083559375" y2="1.858771875" layer="21"/>
<rectangle x1="3.24358125" y1="1.835659375" x2="3.705859375" y2="1.858771875" layer="21"/>
<rectangle x1="3.86841875" y1="1.835659375" x2="4.3307" y2="1.858771875" layer="21"/>
<rectangle x1="4.49071875" y1="1.835659375" x2="4.953" y2="1.858771875" layer="21"/>
<rectangle x1="5.13841875" y1="1.835659375" x2="5.5753" y2="1.858771875" layer="21"/>
<rectangle x1="5.76071875" y1="1.835659375" x2="6.03758125" y2="1.858771875" layer="21"/>
<rectangle x1="6.223" y1="1.835659375" x2="6.66241875" y2="1.858771875" layer="21"/>
<rectangle x1="6.822440625" y1="1.835659375" x2="7.1247" y2="1.858771875" layer="21"/>
<rectangle x1="7.401559375" y1="1.835659375" x2="7.584440625" y2="1.858771875" layer="21"/>
<rectangle x1="8.04671875" y1="1.835659375" x2="8.255" y2="1.858771875" layer="21"/>
<rectangle x1="8.69441875" y1="1.835659375" x2="8.9027" y2="1.858771875" layer="21"/>
<rectangle x1="-0.0127" y1="1.858771875" x2="0.289559375" y2="1.8818875" layer="21"/>
<rectangle x1="0.44958125" y1="1.858771875" x2="0.911859375" y2="1.8818875" layer="21"/>
<rectangle x1="1.07441875" y1="1.858771875" x2="1.44271875" y2="1.8818875" layer="21"/>
<rectangle x1="1.60528125" y1="1.858771875" x2="1.97358125" y2="1.8818875" layer="21"/>
<rectangle x1="2.159" y1="1.858771875" x2="2.62128125" y2="1.8818875" layer="21"/>
<rectangle x1="2.8067" y1="1.858771875" x2="3.083559375" y2="1.8818875" layer="21"/>
<rectangle x1="3.24358125" y1="1.858771875" x2="3.705859375" y2="1.8818875" layer="21"/>
<rectangle x1="3.86841875" y1="1.858771875" x2="4.3307" y2="1.8818875" layer="21"/>
<rectangle x1="4.49071875" y1="1.858771875" x2="4.953" y2="1.8818875" layer="21"/>
<rectangle x1="5.13841875" y1="1.858771875" x2="5.5753" y2="1.8818875" layer="21"/>
<rectangle x1="5.76071875" y1="1.858771875" x2="6.03758125" y2="1.8818875" layer="21"/>
<rectangle x1="6.223" y1="1.858771875" x2="6.66241875" y2="1.8818875" layer="21"/>
<rectangle x1="6.822440625" y1="1.858771875" x2="7.1247" y2="1.8818875" layer="21"/>
<rectangle x1="7.401559375" y1="1.858771875" x2="7.584440625" y2="1.8818875" layer="21"/>
<rectangle x1="8.04671875" y1="1.858771875" x2="8.255" y2="1.8818875" layer="21"/>
<rectangle x1="8.69441875" y1="1.858771875" x2="8.9027" y2="1.8818875" layer="21"/>
<rectangle x1="-0.0127" y1="1.8818875" x2="0.289559375" y2="1.905" layer="21"/>
<rectangle x1="0.44958125" y1="1.8818875" x2="0.911859375" y2="1.905" layer="21"/>
<rectangle x1="1.07441875" y1="1.8818875" x2="1.44271875" y2="1.905" layer="21"/>
<rectangle x1="1.60528125" y1="1.8818875" x2="1.97358125" y2="1.905" layer="21"/>
<rectangle x1="2.159" y1="1.8818875" x2="2.62128125" y2="1.905" layer="21"/>
<rectangle x1="2.8067" y1="1.8818875" x2="3.083559375" y2="1.905" layer="21"/>
<rectangle x1="3.24358125" y1="1.8818875" x2="3.705859375" y2="1.905" layer="21"/>
<rectangle x1="3.86841875" y1="1.8818875" x2="4.3307" y2="1.905" layer="21"/>
<rectangle x1="4.49071875" y1="1.8818875" x2="4.953" y2="1.905" layer="21"/>
<rectangle x1="5.13841875" y1="1.8818875" x2="5.5753" y2="1.905" layer="21"/>
<rectangle x1="5.76071875" y1="1.8818875" x2="6.03758125" y2="1.905" layer="21"/>
<rectangle x1="6.223" y1="1.8818875" x2="6.66241875" y2="1.905" layer="21"/>
<rectangle x1="6.822440625" y1="1.8818875" x2="7.1247" y2="1.905" layer="21"/>
<rectangle x1="7.401559375" y1="1.8818875" x2="7.584440625" y2="1.905" layer="21"/>
<rectangle x1="8.04671875" y1="1.8818875" x2="8.255" y2="1.905" layer="21"/>
<rectangle x1="8.69441875" y1="1.8818875" x2="8.9027" y2="1.905" layer="21"/>
<rectangle x1="-0.0127" y1="1.905" x2="0.289559375" y2="1.9281125" layer="21"/>
<rectangle x1="0.44958125" y1="1.905" x2="0.911859375" y2="1.9281125" layer="21"/>
<rectangle x1="1.07441875" y1="1.905" x2="1.44271875" y2="1.9281125" layer="21"/>
<rectangle x1="1.60528125" y1="1.905" x2="1.97358125" y2="1.9281125" layer="21"/>
<rectangle x1="2.159" y1="1.905" x2="2.62128125" y2="1.9281125" layer="21"/>
<rectangle x1="2.8067" y1="1.905" x2="3.083559375" y2="1.9281125" layer="21"/>
<rectangle x1="3.24358125" y1="1.905" x2="3.705859375" y2="1.9281125" layer="21"/>
<rectangle x1="3.86841875" y1="1.905" x2="4.3307" y2="1.9281125" layer="21"/>
<rectangle x1="4.49071875" y1="1.905" x2="4.953" y2="1.9281125" layer="21"/>
<rectangle x1="5.13841875" y1="1.905" x2="5.5753" y2="1.9281125" layer="21"/>
<rectangle x1="5.76071875" y1="1.905" x2="6.03758125" y2="1.9281125" layer="21"/>
<rectangle x1="6.223" y1="1.905" x2="6.66241875" y2="1.9281125" layer="21"/>
<rectangle x1="6.822440625" y1="1.905" x2="7.1247" y2="1.9281125" layer="21"/>
<rectangle x1="7.401559375" y1="1.905" x2="7.584440625" y2="1.9281125" layer="21"/>
<rectangle x1="8.04671875" y1="1.905" x2="8.255" y2="1.9281125" layer="21"/>
<rectangle x1="8.69441875" y1="1.905" x2="8.9027" y2="1.9281125" layer="21"/>
<rectangle x1="-0.0127" y1="1.9281125" x2="0.289559375" y2="1.951228125" layer="21"/>
<rectangle x1="0.44958125" y1="1.9281125" x2="0.911859375" y2="1.951228125" layer="21"/>
<rectangle x1="1.07441875" y1="1.9281125" x2="1.44271875" y2="1.951228125" layer="21"/>
<rectangle x1="1.60528125" y1="1.9281125" x2="1.97358125" y2="1.951228125" layer="21"/>
<rectangle x1="2.159" y1="1.9281125" x2="2.62128125" y2="1.951228125" layer="21"/>
<rectangle x1="2.8067" y1="1.9281125" x2="3.083559375" y2="1.951228125" layer="21"/>
<rectangle x1="3.24358125" y1="1.9281125" x2="3.705859375" y2="1.951228125" layer="21"/>
<rectangle x1="3.86841875" y1="1.9281125" x2="4.3307" y2="1.951228125" layer="21"/>
<rectangle x1="4.49071875" y1="1.9281125" x2="4.953" y2="1.951228125" layer="21"/>
<rectangle x1="5.13841875" y1="1.9281125" x2="5.5753" y2="1.951228125" layer="21"/>
<rectangle x1="5.76071875" y1="1.9281125" x2="6.03758125" y2="1.951228125" layer="21"/>
<rectangle x1="6.223" y1="1.9281125" x2="6.66241875" y2="1.951228125" layer="21"/>
<rectangle x1="6.822440625" y1="1.9281125" x2="7.1247" y2="1.951228125" layer="21"/>
<rectangle x1="7.401559375" y1="1.9281125" x2="7.584440625" y2="1.951228125" layer="21"/>
<rectangle x1="8.04671875" y1="1.9281125" x2="8.255" y2="1.951228125" layer="21"/>
<rectangle x1="8.69441875" y1="1.9281125" x2="8.9027" y2="1.951228125" layer="21"/>
<rectangle x1="-0.0127" y1="1.951228125" x2="0.289559375" y2="1.974340625" layer="21"/>
<rectangle x1="0.44958125" y1="1.951228125" x2="0.911859375" y2="1.974340625" layer="21"/>
<rectangle x1="1.07441875" y1="1.951228125" x2="1.44271875" y2="1.974340625" layer="21"/>
<rectangle x1="1.60528125" y1="1.951228125" x2="1.97358125" y2="1.974340625" layer="21"/>
<rectangle x1="2.159" y1="1.951228125" x2="2.62128125" y2="1.974340625" layer="21"/>
<rectangle x1="2.7813" y1="1.951228125" x2="3.083559375" y2="1.974340625" layer="21"/>
<rectangle x1="3.24358125" y1="1.951228125" x2="3.705859375" y2="1.974340625" layer="21"/>
<rectangle x1="3.86841875" y1="1.951228125" x2="4.3307" y2="1.974340625" layer="21"/>
<rectangle x1="4.49071875" y1="1.951228125" x2="4.953" y2="1.974340625" layer="21"/>
<rectangle x1="5.13841875" y1="1.951228125" x2="5.5753" y2="1.974340625" layer="21"/>
<rectangle x1="5.76071875" y1="1.951228125" x2="6.03758125" y2="1.974340625" layer="21"/>
<rectangle x1="6.223" y1="1.951228125" x2="6.66241875" y2="1.974340625" layer="21"/>
<rectangle x1="6.822440625" y1="1.951228125" x2="7.1247" y2="1.974340625" layer="21"/>
<rectangle x1="7.401559375" y1="1.951228125" x2="7.584440625" y2="1.974340625" layer="21"/>
<rectangle x1="8.04671875" y1="1.951228125" x2="8.255" y2="1.974340625" layer="21"/>
<rectangle x1="8.69441875" y1="1.951228125" x2="8.9027" y2="1.974340625" layer="21"/>
<rectangle x1="-0.0127" y1="1.974340625" x2="0.289559375" y2="1.99745625" layer="21"/>
<rectangle x1="0.44958125" y1="1.974340625" x2="0.911859375" y2="1.99745625" layer="21"/>
<rectangle x1="1.07441875" y1="1.974340625" x2="1.44271875" y2="1.99745625" layer="21"/>
<rectangle x1="1.60528125" y1="1.974340625" x2="1.97358125" y2="1.99745625" layer="21"/>
<rectangle x1="2.159" y1="1.974340625" x2="2.62128125" y2="1.99745625" layer="21"/>
<rectangle x1="2.7813" y1="1.974340625" x2="3.083559375" y2="1.99745625" layer="21"/>
<rectangle x1="3.24358125" y1="1.974340625" x2="3.705859375" y2="1.99745625" layer="21"/>
<rectangle x1="3.86841875" y1="1.974340625" x2="4.3307" y2="1.99745625" layer="21"/>
<rectangle x1="4.49071875" y1="1.974340625" x2="4.953" y2="1.99745625" layer="21"/>
<rectangle x1="5.13841875" y1="1.974340625" x2="5.5753" y2="1.99745625" layer="21"/>
<rectangle x1="5.76071875" y1="1.974340625" x2="6.03758125" y2="1.99745625" layer="21"/>
<rectangle x1="6.223" y1="1.974340625" x2="6.66241875" y2="1.99745625" layer="21"/>
<rectangle x1="6.822440625" y1="1.974340625" x2="7.1247" y2="1.99745625" layer="21"/>
<rectangle x1="7.401559375" y1="1.974340625" x2="7.584440625" y2="1.99745625" layer="21"/>
<rectangle x1="8.04671875" y1="1.974340625" x2="8.255" y2="1.99745625" layer="21"/>
<rectangle x1="8.69441875" y1="1.974340625" x2="8.9027" y2="1.99745625" layer="21"/>
<rectangle x1="-0.0127" y1="1.99745625" x2="0.289559375" y2="2.02056875" layer="21"/>
<rectangle x1="0.44958125" y1="1.99745625" x2="0.911859375" y2="2.02056875" layer="21"/>
<rectangle x1="1.07441875" y1="1.99745625" x2="1.44271875" y2="2.02056875" layer="21"/>
<rectangle x1="1.60528125" y1="1.99745625" x2="1.97358125" y2="2.02056875" layer="21"/>
<rectangle x1="2.159" y1="1.99745625" x2="2.62128125" y2="2.02056875" layer="21"/>
<rectangle x1="2.7813" y1="1.99745625" x2="3.083559375" y2="2.02056875" layer="21"/>
<rectangle x1="3.24358125" y1="1.99745625" x2="3.705859375" y2="2.02056875" layer="21"/>
<rectangle x1="3.86841875" y1="1.99745625" x2="4.3307" y2="2.02056875" layer="21"/>
<rectangle x1="4.49071875" y1="1.99745625" x2="4.953" y2="2.02056875" layer="21"/>
<rectangle x1="5.13841875" y1="1.99745625" x2="5.5753" y2="2.02056875" layer="21"/>
<rectangle x1="5.76071875" y1="1.99745625" x2="6.060440625" y2="2.02056875" layer="21"/>
<rectangle x1="6.223" y1="1.99745625" x2="6.66241875" y2="2.02056875" layer="21"/>
<rectangle x1="6.822440625" y1="1.99745625" x2="7.1247" y2="2.02056875" layer="21"/>
<rectangle x1="7.401559375" y1="1.99745625" x2="7.584440625" y2="2.02056875" layer="21"/>
<rectangle x1="8.04671875" y1="1.99745625" x2="8.255" y2="2.02056875" layer="21"/>
<rectangle x1="8.69441875" y1="1.99745625" x2="8.9027" y2="2.02056875" layer="21"/>
<rectangle x1="-0.0127" y1="2.02056875" x2="0.289559375" y2="2.04343125" layer="21"/>
<rectangle x1="0.44958125" y1="2.02056875" x2="0.911859375" y2="2.04343125" layer="21"/>
<rectangle x1="1.07441875" y1="2.02056875" x2="1.44271875" y2="2.04343125" layer="21"/>
<rectangle x1="1.60528125" y1="2.02056875" x2="1.996440625" y2="2.04343125" layer="21"/>
<rectangle x1="2.159" y1="2.02056875" x2="2.62128125" y2="2.04343125" layer="21"/>
<rectangle x1="2.7813" y1="2.02056875" x2="3.083559375" y2="2.04343125" layer="21"/>
<rectangle x1="3.24358125" y1="2.02056875" x2="3.705859375" y2="2.04343125" layer="21"/>
<rectangle x1="3.86841875" y1="2.02056875" x2="4.3307" y2="2.04343125" layer="21"/>
<rectangle x1="4.49071875" y1="2.02056875" x2="4.953" y2="2.04343125" layer="21"/>
<rectangle x1="5.13841875" y1="2.02056875" x2="5.5753" y2="2.04343125" layer="21"/>
<rectangle x1="5.76071875" y1="2.02056875" x2="6.060440625" y2="2.04343125" layer="21"/>
<rectangle x1="6.223" y1="2.02056875" x2="6.66241875" y2="2.04343125" layer="21"/>
<rectangle x1="6.822440625" y1="2.02056875" x2="7.1247" y2="2.04343125" layer="21"/>
<rectangle x1="7.401559375" y1="2.02056875" x2="7.584440625" y2="2.04343125" layer="21"/>
<rectangle x1="8.04671875" y1="2.02056875" x2="8.255" y2="2.04343125" layer="21"/>
<rectangle x1="8.69441875" y1="2.02056875" x2="8.9027" y2="2.04343125" layer="21"/>
<rectangle x1="-0.0127" y1="2.04343125" x2="0.289559375" y2="2.06654375" layer="21"/>
<rectangle x1="0.44958125" y1="2.04343125" x2="0.889" y2="2.06654375" layer="21"/>
<rectangle x1="1.07441875" y1="2.04343125" x2="1.44271875" y2="2.06654375" layer="21"/>
<rectangle x1="1.60528125" y1="2.04343125" x2="1.996440625" y2="2.06654375" layer="21"/>
<rectangle x1="2.159" y1="2.04343125" x2="2.59841875" y2="2.06654375" layer="21"/>
<rectangle x1="2.7813" y1="2.04343125" x2="3.083559375" y2="2.06654375" layer="21"/>
<rectangle x1="3.24358125" y1="2.04343125" x2="3.705859375" y2="2.06654375" layer="21"/>
<rectangle x1="3.86841875" y1="2.04343125" x2="4.3307" y2="2.06654375" layer="21"/>
<rectangle x1="4.49071875" y1="2.04343125" x2="4.953" y2="2.06654375" layer="21"/>
<rectangle x1="5.13841875" y1="2.04343125" x2="5.5753" y2="2.06654375" layer="21"/>
<rectangle x1="5.76071875" y1="2.04343125" x2="6.060440625" y2="2.06654375" layer="21"/>
<rectangle x1="6.223" y1="2.04343125" x2="6.639559375" y2="2.06654375" layer="21"/>
<rectangle x1="6.822440625" y1="2.04343125" x2="7.1247" y2="2.06654375" layer="21"/>
<rectangle x1="7.401559375" y1="2.04343125" x2="7.584440625" y2="2.06654375" layer="21"/>
<rectangle x1="8.04671875" y1="2.04343125" x2="8.255" y2="2.06654375" layer="21"/>
<rectangle x1="8.69441875" y1="2.04343125" x2="8.9027" y2="2.06654375" layer="21"/>
<rectangle x1="-0.0127" y1="2.06654375" x2="0.289559375" y2="2.089659375" layer="21"/>
<rectangle x1="0.472440625" y1="2.06654375" x2="0.889" y2="2.089659375" layer="21"/>
<rectangle x1="1.051559375" y1="2.06654375" x2="1.44271875" y2="2.089659375" layer="21"/>
<rectangle x1="1.60528125" y1="2.06654375" x2="1.996440625" y2="2.089659375" layer="21"/>
<rectangle x1="2.181859375" y1="2.06654375" x2="2.59841875" y2="2.089659375" layer="21"/>
<rectangle x1="2.7813" y1="2.06654375" x2="3.083559375" y2="2.089659375" layer="21"/>
<rectangle x1="3.266440625" y1="2.06654375" x2="3.705859375" y2="2.089659375" layer="21"/>
<rectangle x1="3.89128125" y1="2.06654375" x2="4.3307" y2="2.089659375" layer="21"/>
<rectangle x1="4.51358125" y1="2.06654375" x2="4.953" y2="2.089659375" layer="21"/>
<rectangle x1="5.16128125" y1="2.06654375" x2="5.5753" y2="2.089659375" layer="21"/>
<rectangle x1="5.76071875" y1="2.06654375" x2="6.060440625" y2="2.089659375" layer="21"/>
<rectangle x1="6.223" y1="2.06654375" x2="6.639559375" y2="2.089659375" layer="21"/>
<rectangle x1="6.79958125" y1="2.06654375" x2="7.1247" y2="2.089659375" layer="21"/>
<rectangle x1="7.401559375" y1="2.06654375" x2="7.584440625" y2="2.089659375" layer="21"/>
<rectangle x1="8.04671875" y1="2.06654375" x2="8.255" y2="2.089659375" layer="21"/>
<rectangle x1="8.69441875" y1="2.06654375" x2="8.9027" y2="2.089659375" layer="21"/>
<rectangle x1="-0.0127" y1="2.089659375" x2="0.31241875" y2="2.112771875" layer="21"/>
<rectangle x1="0.472440625" y1="2.089659375" x2="0.889" y2="2.112771875" layer="21"/>
<rectangle x1="1.051559375" y1="2.089659375" x2="1.44271875" y2="2.112771875" layer="21"/>
<rectangle x1="1.60528125" y1="2.089659375" x2="1.996440625" y2="2.112771875" layer="21"/>
<rectangle x1="2.181859375" y1="2.089659375" x2="2.59841875" y2="2.112771875" layer="21"/>
<rectangle x1="2.7813" y1="2.089659375" x2="3.083559375" y2="2.112771875" layer="21"/>
<rectangle x1="3.3147" y1="2.089659375" x2="3.683" y2="2.112771875" layer="21"/>
<rectangle x1="3.937" y1="2.089659375" x2="4.3053" y2="2.112771875" layer="21"/>
<rectangle x1="4.5593" y1="2.089659375" x2="4.930140625" y2="2.112771875" layer="21"/>
<rectangle x1="5.184140625" y1="2.089659375" x2="5.5753" y2="2.112771875" layer="21"/>
<rectangle x1="5.737859375" y1="2.089659375" x2="6.060440625" y2="2.112771875" layer="21"/>
<rectangle x1="6.245859375" y1="2.089659375" x2="6.6167" y2="2.112771875" layer="21"/>
<rectangle x1="6.79958125" y1="2.089659375" x2="7.1247" y2="2.112771875" layer="21"/>
<rectangle x1="7.401559375" y1="2.089659375" x2="7.584440625" y2="2.112771875" layer="21"/>
<rectangle x1="8.04671875" y1="2.089659375" x2="8.255" y2="2.112771875" layer="21"/>
<rectangle x1="8.69441875" y1="2.089659375" x2="8.9027" y2="2.112771875" layer="21"/>
<rectangle x1="-0.0127" y1="2.112771875" x2="0.31241875" y2="2.1358875" layer="21"/>
<rectangle x1="0.4953" y1="2.112771875" x2="0.866140625" y2="2.1358875" layer="21"/>
<rectangle x1="1.051559375" y1="2.112771875" x2="1.44271875" y2="2.1358875" layer="21"/>
<rectangle x1="1.60528125" y1="2.112771875" x2="2.0193" y2="2.1358875" layer="21"/>
<rectangle x1="2.20471875" y1="2.112771875" x2="2.575559375" y2="2.1358875" layer="21"/>
<rectangle x1="2.758440625" y1="2.112771875" x2="3.083559375" y2="2.1358875" layer="21"/>
<rectangle x1="3.36041875" y1="2.112771875" x2="3.683" y2="2.1358875" layer="21"/>
<rectangle x1="3.959859375" y1="2.112771875" x2="4.3053" y2="2.1358875" layer="21"/>
<rectangle x1="4.607559375" y1="2.112771875" x2="4.930140625" y2="2.1358875" layer="21"/>
<rectangle x1="5.229859375" y1="2.112771875" x2="5.552440625" y2="2.1358875" layer="21"/>
<rectangle x1="5.737859375" y1="2.112771875" x2="6.0833" y2="2.1358875" layer="21"/>
<rectangle x1="6.26871875" y1="2.112771875" x2="6.6167" y2="2.1358875" layer="21"/>
<rectangle x1="6.79958125" y1="2.112771875" x2="7.1247" y2="2.1358875" layer="21"/>
<rectangle x1="7.401559375" y1="2.112771875" x2="7.584440625" y2="2.1358875" layer="21"/>
<rectangle x1="8.04671875" y1="2.112771875" x2="8.255" y2="2.1358875" layer="21"/>
<rectangle x1="8.69441875" y1="2.112771875" x2="8.9027" y2="2.1358875" layer="21"/>
<rectangle x1="-0.0127" y1="2.1358875" x2="0.31241875" y2="2.159" layer="21"/>
<rectangle x1="0.5207" y1="2.1358875" x2="0.84328125" y2="2.159" layer="21"/>
<rectangle x1="1.0287" y1="2.1358875" x2="1.44271875" y2="2.159" layer="21"/>
<rectangle x1="1.60528125" y1="2.1358875" x2="2.0193" y2="2.159" layer="21"/>
<rectangle x1="2.250440625" y1="2.1358875" x2="2.5273" y2="2.159" layer="21"/>
<rectangle x1="2.758440625" y1="2.1358875" x2="3.083559375" y2="2.159" layer="21"/>
<rectangle x1="3.406140625" y1="2.1358875" x2="3.63728125" y2="2.159" layer="21"/>
<rectangle x1="4.028440625" y1="2.1358875" x2="4.25958125" y2="2.159" layer="21"/>
<rectangle x1="4.65328125" y1="2.1358875" x2="4.90728125" y2="2.159" layer="21"/>
<rectangle x1="5.27558125" y1="2.1358875" x2="5.52958125" y2="2.159" layer="21"/>
<rectangle x1="5.737859375" y1="2.1358875" x2="6.0833" y2="2.159" layer="21"/>
<rectangle x1="6.29158125" y1="2.1358875" x2="6.568440625" y2="2.159" layer="21"/>
<rectangle x1="6.77671875" y1="2.1358875" x2="7.1247" y2="2.159" layer="21"/>
<rectangle x1="7.401559375" y1="2.1358875" x2="7.584440625" y2="2.159" layer="21"/>
<rectangle x1="8.04671875" y1="2.1358875" x2="8.255" y2="2.159" layer="21"/>
<rectangle x1="8.69441875" y1="2.1358875" x2="8.9027" y2="2.159" layer="21"/>
<rectangle x1="-0.0127" y1="2.159" x2="0.33528125" y2="2.1821125" layer="21"/>
<rectangle x1="0.58928125" y1="2.159" x2="0.7747" y2="2.1821125" layer="21"/>
<rectangle x1="1.0287" y1="2.159" x2="1.234440625" y2="2.1821125" layer="21"/>
<rectangle x1="1.813559375" y1="2.159" x2="2.0447" y2="2.1821125" layer="21"/>
<rectangle x1="2.321559375" y1="2.159" x2="2.45871875" y2="2.1821125" layer="21"/>
<rectangle x1="2.73558125" y1="2.159" x2="3.083559375" y2="2.1821125" layer="21"/>
<rectangle x1="3.49758125" y1="2.159" x2="3.591559375" y2="2.1821125" layer="21"/>
<rectangle x1="4.099559375" y1="2.159" x2="4.191" y2="2.1821125" layer="21"/>
<rectangle x1="4.74471875" y1="2.159" x2="4.8387" y2="2.1821125" layer="21"/>
<rectangle x1="5.369559375" y1="2.159" x2="5.461" y2="2.1821125" layer="21"/>
<rectangle x1="5.737859375" y1="2.159" x2="6.1087" y2="2.1821125" layer="21"/>
<rectangle x1="6.385559375" y1="2.159" x2="6.499859375" y2="2.1821125" layer="21"/>
<rectangle x1="6.77671875" y1="2.159" x2="7.1247" y2="2.1821125" layer="21"/>
<rectangle x1="7.401559375" y1="2.159" x2="7.584440625" y2="2.1821125" layer="21"/>
<rectangle x1="8.04671875" y1="2.159" x2="8.255" y2="2.1821125" layer="21"/>
<rectangle x1="8.69441875" y1="2.159" x2="8.9027" y2="2.1821125" layer="21"/>
<rectangle x1="-0.0127" y1="2.1821125" x2="0.358140625" y2="2.205228125" layer="21"/>
<rectangle x1="1.0033" y1="2.1821125" x2="1.234440625" y2="2.205228125" layer="21"/>
<rectangle x1="1.813559375" y1="2.1821125" x2="2.0447" y2="2.205228125" layer="21"/>
<rectangle x1="2.73558125" y1="2.1821125" x2="3.083559375" y2="2.205228125" layer="21"/>
<rectangle x1="3.24358125" y1="2.1821125" x2="3.2893" y2="2.205228125" layer="21"/>
<rectangle x1="3.845559375" y1="2.1821125" x2="3.89128125" y2="2.205228125" layer="21"/>
<rectangle x1="4.467859375" y1="2.1821125" x2="4.51358125" y2="2.205228125" layer="21"/>
<rectangle x1="5.0927" y1="2.1821125" x2="5.13841875" y2="2.205228125" layer="21"/>
<rectangle x1="5.715" y1="2.1821125" x2="6.1087" y2="2.205228125" layer="21"/>
<rectangle x1="6.753859375" y1="2.1821125" x2="7.1247" y2="2.205228125" layer="21"/>
<rectangle x1="7.401559375" y1="2.1821125" x2="7.584440625" y2="2.205228125" layer="21"/>
<rectangle x1="8.04671875" y1="2.1821125" x2="8.255" y2="2.205228125" layer="21"/>
<rectangle x1="8.69441875" y1="2.1821125" x2="8.9027" y2="2.205228125" layer="21"/>
<rectangle x1="-0.0127" y1="2.205228125" x2="0.358140625" y2="2.228340625" layer="21"/>
<rectangle x1="1.0033" y1="2.205228125" x2="1.234440625" y2="2.228340625" layer="21"/>
<rectangle x1="1.813559375" y1="2.205228125" x2="2.067559375" y2="2.228340625" layer="21"/>
<rectangle x1="2.71271875" y1="2.205228125" x2="3.083559375" y2="2.228340625" layer="21"/>
<rectangle x1="3.24358125" y1="2.205228125" x2="3.3147" y2="2.228340625" layer="21"/>
<rectangle x1="3.8227" y1="2.205228125" x2="3.914140625" y2="2.228340625" layer="21"/>
<rectangle x1="4.445" y1="2.205228125" x2="4.536440625" y2="2.228340625" layer="21"/>
<rectangle x1="5.0673" y1="2.205228125" x2="5.184140625" y2="2.228340625" layer="21"/>
<rectangle x1="5.715" y1="2.205228125" x2="6.131559375" y2="2.228340625" layer="21"/>
<rectangle x1="6.753859375" y1="2.205228125" x2="7.1247" y2="2.228340625" layer="21"/>
<rectangle x1="7.401559375" y1="2.205228125" x2="7.584440625" y2="2.228340625" layer="21"/>
<rectangle x1="8.04671875" y1="2.205228125" x2="8.255" y2="2.228340625" layer="21"/>
<rectangle x1="8.69441875" y1="2.205228125" x2="8.9027" y2="2.228340625" layer="21"/>
<rectangle x1="-0.0127" y1="2.228340625" x2="0.381" y2="2.25145625" layer="21"/>
<rectangle x1="0.980440625" y1="2.228340625" x2="1.234440625" y2="2.25145625" layer="21"/>
<rectangle x1="1.813559375" y1="2.228340625" x2="2.09041875" y2="2.25145625" layer="21"/>
<rectangle x1="2.689859375" y1="2.228340625" x2="3.083559375" y2="2.25145625" layer="21"/>
<rectangle x1="3.24358125" y1="2.228340625" x2="3.337559375" y2="2.25145625" layer="21"/>
<rectangle x1="3.7973" y1="2.228340625" x2="3.959859375" y2="2.25145625" layer="21"/>
<rectangle x1="4.445" y1="2.228340625" x2="4.5847" y2="2.25145625" layer="21"/>
<rectangle x1="5.0673" y1="2.228340625" x2="5.207" y2="2.25145625" layer="21"/>
<rectangle x1="5.692140625" y1="2.228340625" x2="6.15441875" y2="2.25145625" layer="21"/>
<rectangle x1="6.731" y1="2.228340625" x2="7.1247" y2="2.25145625" layer="21"/>
<rectangle x1="7.401559375" y1="2.228340625" x2="7.584440625" y2="2.25145625" layer="21"/>
<rectangle x1="8.04671875" y1="2.228340625" x2="8.255" y2="2.25145625" layer="21"/>
<rectangle x1="8.69441875" y1="2.228340625" x2="8.9027" y2="2.25145625" layer="21"/>
<rectangle x1="-0.0127" y1="2.25145625" x2="0.403859375" y2="2.27456875" layer="21"/>
<rectangle x1="0.95758125" y1="2.25145625" x2="1.234440625" y2="2.27456875" layer="21"/>
<rectangle x1="1.813559375" y1="2.25145625" x2="2.11328125" y2="2.27456875" layer="21"/>
<rectangle x1="2.667" y1="2.25145625" x2="3.083559375" y2="2.27456875" layer="21"/>
<rectangle x1="3.24358125" y1="2.25145625" x2="3.38328125" y2="2.27456875" layer="21"/>
<rectangle x1="3.774440625" y1="2.25145625" x2="3.98271875" y2="2.27456875" layer="21"/>
<rectangle x1="4.422140625" y1="2.25145625" x2="4.607559375" y2="2.27456875" layer="21"/>
<rectangle x1="5.044440625" y1="2.25145625" x2="5.229859375" y2="2.27456875" layer="21"/>
<rectangle x1="5.66928125" y1="2.25145625" x2="6.17728125" y2="2.27456875" layer="21"/>
<rectangle x1="6.68528125" y1="2.25145625" x2="7.1247" y2="2.27456875" layer="21"/>
<rectangle x1="7.401559375" y1="2.25145625" x2="7.584440625" y2="2.27456875" layer="21"/>
<rectangle x1="8.04671875" y1="2.25145625" x2="8.255" y2="2.27456875" layer="21"/>
<rectangle x1="8.69441875" y1="2.25145625" x2="8.9027" y2="2.27456875" layer="21"/>
<rectangle x1="-0.0127" y1="2.27456875" x2="0.44958125" y2="2.29743125" layer="21"/>
<rectangle x1="0.911859375" y1="2.27456875" x2="1.234440625" y2="2.29743125" layer="21"/>
<rectangle x1="1.813559375" y1="2.27456875" x2="2.159" y2="2.29743125" layer="21"/>
<rectangle x1="2.62128125" y1="2.27456875" x2="3.083559375" y2="2.29743125" layer="21"/>
<rectangle x1="3.24358125" y1="2.27456875" x2="3.406140625" y2="2.29743125" layer="21"/>
<rectangle x1="3.75158125" y1="2.27456875" x2="4.028440625" y2="2.29743125" layer="21"/>
<rectangle x1="4.37641875" y1="2.27456875" x2="4.65328125" y2="2.29743125" layer="21"/>
<rectangle x1="4.99871875" y1="2.27456875" x2="5.27558125" y2="2.29743125" layer="21"/>
<rectangle x1="5.64641875" y1="2.27456875" x2="6.223" y2="2.29743125" layer="21"/>
<rectangle x1="6.66241875" y1="2.27456875" x2="7.1247" y2="2.29743125" layer="21"/>
<rectangle x1="7.401559375" y1="2.27456875" x2="7.6073" y2="2.29743125" layer="21"/>
<rectangle x1="8.04671875" y1="2.27456875" x2="8.255" y2="2.29743125" layer="21"/>
<rectangle x1="8.69441875" y1="2.27456875" x2="8.9027" y2="2.29743125" layer="21"/>
<rectangle x1="-0.0127" y1="2.29743125" x2="0.4953" y2="2.32054375" layer="21"/>
<rectangle x1="0.866140625" y1="2.29743125" x2="1.234440625" y2="2.32054375" layer="21"/>
<rectangle x1="1.813559375" y1="2.29743125" x2="2.20471875" y2="2.32054375" layer="21"/>
<rectangle x1="2.5527" y1="2.29743125" x2="3.083559375" y2="2.32054375" layer="21"/>
<rectangle x1="3.24358125" y1="2.29743125" x2="3.47471875" y2="2.32054375" layer="21"/>
<rectangle x1="3.705859375" y1="2.29743125" x2="4.0767" y2="2.32054375" layer="21"/>
<rectangle x1="4.3307" y1="2.29743125" x2="4.699" y2="2.32054375" layer="21"/>
<rectangle x1="4.953" y1="2.29743125" x2="5.3467" y2="2.32054375" layer="21"/>
<rectangle x1="5.6007" y1="2.29743125" x2="6.26871875" y2="2.32054375" layer="21"/>
<rectangle x1="6.5913" y1="2.29743125" x2="7.1247" y2="2.32054375" layer="21"/>
<rectangle x1="7.401559375" y1="2.29743125" x2="7.6073" y2="2.32054375" layer="21"/>
<rectangle x1="8.04671875" y1="2.29743125" x2="8.255" y2="2.32054375" layer="21"/>
<rectangle x1="8.69441875" y1="2.29743125" x2="8.9027" y2="2.32054375" layer="21"/>
<rectangle x1="-0.0127" y1="2.32054375" x2="1.44271875" y2="2.343659375" layer="21"/>
<rectangle x1="1.60528125" y1="2.32054375" x2="7.1247" y2="2.343659375" layer="21"/>
<rectangle x1="7.401559375" y1="2.32054375" x2="7.6073" y2="2.343659375" layer="21"/>
<rectangle x1="8.04671875" y1="2.32054375" x2="8.255" y2="2.343659375" layer="21"/>
<rectangle x1="8.69441875" y1="2.32054375" x2="8.9027" y2="2.343659375" layer="21"/>
<rectangle x1="-0.0127" y1="2.343659375" x2="1.44271875" y2="2.366771875" layer="21"/>
<rectangle x1="1.60528125" y1="2.343659375" x2="7.1247" y2="2.366771875" layer="21"/>
<rectangle x1="7.401559375" y1="2.343659375" x2="7.6073" y2="2.366771875" layer="21"/>
<rectangle x1="8.04671875" y1="2.343659375" x2="8.255" y2="2.366771875" layer="21"/>
<rectangle x1="8.69441875" y1="2.343659375" x2="8.9027" y2="2.366771875" layer="21"/>
<rectangle x1="-0.0127" y1="2.366771875" x2="1.44271875" y2="2.3898875" layer="21"/>
<rectangle x1="1.60528125" y1="2.366771875" x2="7.1247" y2="2.3898875" layer="21"/>
<rectangle x1="7.401559375" y1="2.366771875" x2="7.6073" y2="2.3898875" layer="21"/>
<rectangle x1="8.023859375" y1="2.366771875" x2="8.255" y2="2.3898875" layer="21"/>
<rectangle x1="8.69441875" y1="2.366771875" x2="8.9027" y2="2.3898875" layer="21"/>
<rectangle x1="-0.0127" y1="2.3898875" x2="1.44271875" y2="2.413" layer="21"/>
<rectangle x1="1.60528125" y1="2.3898875" x2="7.1247" y2="2.413" layer="21"/>
<rectangle x1="7.401559375" y1="2.3898875" x2="7.6327" y2="2.413" layer="21"/>
<rectangle x1="8.023859375" y1="2.3898875" x2="8.255" y2="2.413" layer="21"/>
<rectangle x1="8.69441875" y1="2.3898875" x2="8.9027" y2="2.413" layer="21"/>
<rectangle x1="-0.0127" y1="2.413" x2="1.44271875" y2="2.4361125" layer="21"/>
<rectangle x1="1.60528125" y1="2.413" x2="7.1247" y2="2.4361125" layer="21"/>
<rectangle x1="7.401559375" y1="2.413" x2="7.655559375" y2="2.4361125" layer="21"/>
<rectangle x1="8.001" y1="2.413" x2="8.232140625" y2="2.4361125" layer="21"/>
<rectangle x1="8.69441875" y1="2.413" x2="8.9027" y2="2.4361125" layer="21"/>
<rectangle x1="-0.0127" y1="2.4361125" x2="1.44271875" y2="2.459228125" layer="21"/>
<rectangle x1="1.60528125" y1="2.4361125" x2="7.0993" y2="2.459228125" layer="21"/>
<rectangle x1="7.42441875" y1="2.4361125" x2="7.70128125" y2="2.459228125" layer="21"/>
<rectangle x1="7.95528125" y1="2.4361125" x2="8.232140625" y2="2.459228125" layer="21"/>
<rectangle x1="8.3693" y1="2.4361125" x2="9.248140625" y2="2.459228125" layer="21"/>
<rectangle x1="0.0127" y1="2.459228125" x2="1.44271875" y2="2.482340625" layer="21"/>
<rectangle x1="1.60528125" y1="2.459228125" x2="7.0993" y2="2.482340625" layer="21"/>
<rectangle x1="7.42441875" y1="2.459228125" x2="8.232140625" y2="2.482340625" layer="21"/>
<rectangle x1="8.3693" y1="2.459228125" x2="9.248140625" y2="2.482340625" layer="21"/>
<rectangle x1="0.0127" y1="2.482340625" x2="1.44271875" y2="2.50545625" layer="21"/>
<rectangle x1="1.60528125" y1="2.482340625" x2="7.076440625" y2="2.50545625" layer="21"/>
<rectangle x1="7.44728125" y1="2.482340625" x2="8.20928125" y2="2.50545625" layer="21"/>
<rectangle x1="8.3693" y1="2.482340625" x2="9.248140625" y2="2.50545625" layer="21"/>
<rectangle x1="0.035559375" y1="2.50545625" x2="1.44271875" y2="2.52856875" layer="21"/>
<rectangle x1="1.60528125" y1="2.50545625" x2="7.076440625" y2="2.52856875" layer="21"/>
<rectangle x1="7.44728125" y1="2.50545625" x2="8.20928125" y2="2.52856875" layer="21"/>
<rectangle x1="8.3693" y1="2.50545625" x2="9.248140625" y2="2.52856875" layer="21"/>
<rectangle x1="0.05841875" y1="2.52856875" x2="1.44271875" y2="2.55143125" layer="21"/>
<rectangle x1="1.60528125" y1="2.52856875" x2="7.05358125" y2="2.55143125" layer="21"/>
<rectangle x1="7.470140625" y1="2.52856875" x2="8.18641875" y2="2.55143125" layer="21"/>
<rectangle x1="8.3693" y1="2.52856875" x2="9.248140625" y2="2.55143125" layer="21"/>
<rectangle x1="0.08128125" y1="2.55143125" x2="1.44271875" y2="2.57454375" layer="21"/>
<rectangle x1="1.60528125" y1="2.55143125" x2="7.03071875" y2="2.57454375" layer="21"/>
<rectangle x1="7.493" y1="2.55143125" x2="8.163559375" y2="2.57454375" layer="21"/>
<rectangle x1="8.3693" y1="2.55143125" x2="9.248140625" y2="2.57454375" layer="21"/>
<rectangle x1="0.104140625" y1="2.57454375" x2="1.44271875" y2="2.597659375" layer="21"/>
<rectangle x1="1.60528125" y1="2.57454375" x2="7.007859375" y2="2.597659375" layer="21"/>
<rectangle x1="7.515859375" y1="2.57454375" x2="8.1407" y2="2.597659375" layer="21"/>
<rectangle x1="8.3693" y1="2.57454375" x2="9.248140625" y2="2.597659375" layer="21"/>
<rectangle x1="0.149859375" y1="2.597659375" x2="1.44271875" y2="2.620771875" layer="21"/>
<rectangle x1="1.60528125" y1="2.597659375" x2="6.962140625" y2="2.620771875" layer="21"/>
<rectangle x1="7.53871875" y1="2.597659375" x2="8.092440625" y2="2.620771875" layer="21"/>
<rectangle x1="8.3693" y1="2.597659375" x2="9.248140625" y2="2.620771875" layer="21"/>
<rectangle x1="0.218440625" y1="2.620771875" x2="1.44271875" y2="2.6438875" layer="21"/>
<rectangle x1="1.60528125" y1="2.620771875" x2="6.893559375" y2="2.6438875" layer="21"/>
<rectangle x1="7.6073" y1="2.620771875" x2="8.04671875" y2="2.6438875" layer="21"/>
<rectangle x1="8.3693" y1="2.620771875" x2="9.248140625" y2="2.6438875" layer="21"/>
</package>
</packages>
</library>
<library name="adafruit_sensor">
<packages>
<package name="QFN24_3MM_NOEP">
<description>3x3mm QFN
.4mm pitch</description>
<wire x1="-1.5" y1="-1.5" x2="-1.5" y2="1" width="0.127" layer="21"/>
<wire x1="-1.5" y1="1" x2="-1" y2="1.5" width="0.127" layer="21"/>
<wire x1="-1" y1="1.5" x2="1.5" y2="1.5" width="0.127" layer="21"/>
<wire x1="1.5" y1="1.5" x2="1.5" y2="-1.5" width="0.127" layer="21"/>
<wire x1="1.5" y1="-1.5" x2="-1.5" y2="-1.5" width="0.127" layer="21"/>
<smd name="1" x="-1.5" y="1" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="24" x="-1" y="1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<smd name="23" x="-0.6" y="1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<smd name="22" x="-0.2" y="1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<smd name="21" x="0.2" y="1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<smd name="20" x="0.6" y="1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<smd name="19" x="1" y="1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<smd name="2" x="-1.5" y="0.6" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="3" x="-1.5" y="0.2" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="4" x="-1.5" y="-0.2" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="5" x="-1.5" y="-0.6" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="6" x="-1.5" y="-1" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="18" x="1.5" y="1" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="17" x="1.5" y="0.6" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="16" x="1.5" y="0.2" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="15" x="1.5" y="-0.2" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="14" x="1.5" y="-0.6" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="13" x="1.5" y="-1" dx="0.2" dy="0.55" layer="1" rot="R90"/>
<smd name="9" x="-0.2" y="-1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<smd name="8" x="-0.6" y="-1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<smd name="7" x="-1" y="-1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<smd name="10" x="0.2" y="-1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<smd name="11" x="0.6" y="-1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<smd name="12" x="1" y="-1.5" dx="0.2" dy="0.55" layer="1" rot="R180"/>
<circle x="-1.6" y="1.6" radius="0.3" width="0.127" layer="21"/>
</package>
</packages>
</library>
</libraries>
<attributes>
<attribute name="REV" value="C"/>
</attributes>
<variantdefs>
</variantdefs>
<classes>
<class number="0" name="default" width="0" drill="0">
</class>
<class number="1" name="highpower" width="0.4064" drill="0.4826">
</class>
<class number="2" name="lowpower" width="0.3048" drill="0.4826">
</class>
</classes>
<designrules name="adafruit *">
<description language="de">&lt;b&gt;EAGLE Design Rules&lt;/b&gt;
&lt;p&gt;
Die Standard-Design-Rules sind so gewählt, dass sie für
die meisten Anwendungen passen. Sollte ihre Platine
besondere Anforderungen haben, treffen Sie die erforderlichen
Einstellungen hier und speichern die Design Rules unter
einem neuen Namen ab.</description>
<description language="en">&lt;b&gt;Adafruit board design rules&lt;/b&gt;
&lt;p&gt;
&lt;ul&gt;
&lt;li&gt;Smallest drill: 16mm&lt;/li&gt;
&lt;li&gt;Min trace: 10mil&lt;/li&gt;
&lt;li&gt;Min spacing: 8mil&lt;/li&gt;
&lt;li&gt;Dimension spacing: 10mil&lt;/li&gt;
&lt;li&gt;Tenting for vias&lt;/li&gt;
&lt;li&gt;Angle check on&lt;/li&gt;
&lt;/ul&gt;</description>
<param name="layerSetup" value="(1*16)"/>
<param name="mtCopper" value="0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm"/>
<param name="mtIsolate" value="1.5mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/>
<param name="mdWireWire" value="7mil"/>
<param name="mdWirePad" value="7mil"/>
<param name="mdWireVia" value="7mil"/>
<param name="mdPadPad" value="7mil"/>
<param name="mdPadVia" value="7mil"/>
<param name="mdViaVia" value="7mil"/>
<param name="mdSmdPad" value="7mil"/>
<param name="mdSmdVia" value="7mil"/>
<param name="mdSmdSmd" value="7mil"/>
<param name="mdViaViaSameLayer" value="8mil"/>
<param name="mnLayersViaInSmd" value="2"/>
<param name="mdCopperDimension" value="10mil"/>
<param name="mdDrill" value="8mil"/>
<param name="mdSmdStop" value="0mil"/>
<param name="msWidth" value="7mil"/>
<param name="msDrill" value="15.5mil"/>
<param name="msMicroVia" value="9.99mm"/>
<param name="msBlindViaRatio" value="0.5"/>
<param name="rvPadTop" value="0.25"/>
<param name="rvPadInner" value="0.25"/>
<param name="rvPadBottom" value="0.25"/>
<param name="rvViaOuter" value="0.25"/>
<param name="rvViaInner" value="0.25"/>
<param name="rvMicroViaOuter" value="0.25"/>
<param name="rvMicroViaInner" value="0.25"/>
<param name="rlMinPadTop" value="10mil"/>
<param name="rlMaxPadTop" value="20mil"/>
<param name="rlMinPadInner" value="10mil"/>
<param name="rlMaxPadInner" value="20mil"/>
<param name="rlMinPadBottom" value="10mil"/>
<param name="rlMaxPadBottom" value="20mil"/>
<param name="rlMinViaOuter" value="8mil"/>
<param name="rlMaxViaOuter" value="20mil"/>
<param name="rlMinViaInner" value="8mil"/>
<param name="rlMaxViaInner" value="20mil"/>
<param name="rlMinMicroViaOuter" value="4mil"/>
<param name="rlMaxMicroViaOuter" value="20mil"/>
<param name="rlMinMicroViaInner" value="4mil"/>
<param name="rlMaxMicroViaInner" value="20mil"/>
<param name="psTop" value="-1"/>
<param name="psBottom" value="-1"/>
<param name="psFirst" value="-1"/>
<param name="psElongationLong" value="100"/>
<param name="psElongationOffset" value="100"/>
<param name="mvStopFrame" value="1"/>
<param name="mvCreamFrame" value="0"/>
<param name="mlMinStopFrame" value="2mil"/>
<param name="mlMaxStopFrame" value="2mil"/>
<param name="mlMinCreamFrame" value="0mil"/>
<param name="mlMaxCreamFrame" value="0mil"/>
<param name="mlViaStopLimit" value="20mil"/>
<param name="srRoundness" value="0"/>
<param name="srMinRoundness" value="0mil"/>
<param name="srMaxRoundness" value="0mil"/>
<param name="slThermalIsolate" value="10mil"/>
<param name="slThermalsForVias" value="0"/>
<param name="dpMaxLengthDifference" value="10mm"/>
<param name="dpGapFactor" value="2.5"/>
<param name="checkAngle" value="1"/>
<param name="checkFont" value="1"/>
<param name="checkRestrict" value="1"/>
<param name="checkStop" value="0"/>
<param name="checkValues" value="0"/>
<param name="checkNames" value="1"/>
<param name="checkWireStubs" value="1"/>
<param name="checkPolygonWidth" value="0"/>
<param name="useDiameter" value="13"/>
<param name="maxErrors" value="50"/>
</designrules>
<autorouter>
<pass name="Default">
<param name="RoutingGrid" value="50mil"/>
<param name="AutoGrid" value="1"/>
<param name="Efforts" value="0"/>
<param name="TopRouterVariant" value="1"/>
<param name="tpViaShape" value="round"/>
<param name="PrefDir.1" value="|"/>
<param name="PrefDir.2" value="0"/>
<param name="PrefDir.3" value="0"/>
<param name="PrefDir.4" value="0"/>
<param name="PrefDir.5" value="0"/>
<param name="PrefDir.6" value="0"/>
<param name="PrefDir.7" value="0"/>
<param name="PrefDir.8" value="0"/>
<param name="PrefDir.9" value="0"/>
<param name="PrefDir.10" value="0"/>
<param name="PrefDir.11" value="0"/>
<param name="PrefDir.12" value="0"/>
<param name="PrefDir.13" value="0"/>
<param name="PrefDir.14" value="0"/>
<param name="PrefDir.15" value="0"/>
<param name="PrefDir.16" value="-"/>
<param name="cfVia" value="8"/>
<param name="cfNonPref" value="5"/>
<param name="cfChangeDir" value="2"/>
<param name="cfOrthStep" value="2"/>
<param name="cfDiagStep" value="3"/>
<param name="cfExtdStep" value="0"/>
<param name="cfBonusStep" value="1"/>
<param name="cfMalusStep" value="1"/>
<param name="cfPadImpact" value="4"/>
<param name="cfSmdImpact" value="4"/>
<param name="cfBusImpact" value="0"/>
<param name="cfHugging" value="3"/>
<param name="cfAvoid" value="4"/>
<param name="cfPolygon" value="10"/>
<param name="cfBase.1" value="0"/>
<param name="cfBase.2" value="1"/>
<param name="cfBase.3" value="1"/>
<param name="cfBase.4" value="1"/>
<param name="cfBase.5" value="1"/>
<param name="cfBase.6" value="1"/>
<param name="cfBase.7" value="1"/>
<param name="cfBase.8" value="1"/>
<param name="cfBase.9" value="1"/>
<param name="cfBase.10" value="1"/>
<param name="cfBase.11" value="1"/>
<param name="cfBase.12" value="1"/>
<param name="cfBase.13" value="1"/>
<param name="cfBase.14" value="1"/>
<param name="cfBase.15" value="1"/>
<param name="cfBase.16" value="0"/>
<param name="mnVias" value="20"/>
<param name="mnSegments" value="9999"/>
<param name="mnExtdSteps" value="9999"/>
<param name="mnRipupLevel" value="10"/>
<param name="mnRipupSteps" value="100"/>
<param name="mnRipupTotal" value="100"/>
</pass>
<pass name="Follow-me" refer="Default" active="yes">
</pass>
<pass name="Busses" refer="Default" active="yes">
<param name="cfNonPref" value="4"/>
<param name="cfBusImpact" value="4"/>
<param name="cfHugging" value="0"/>
<param name="mnVias" value="0"/>
</pass>
<pass name="Route" refer="Default" active="yes">
</pass>
<pass name="Optimize1" refer="Default" active="yes">
<param name="cfVia" value="99"/>
<param name="cfExtdStep" value="10"/>
<param name="cfHugging" value="1"/>
<param name="mnExtdSteps" value="1"/>
<param name="mnRipupLevel" value="0"/>
</pass>
<pass name="Optimize2" refer="Optimize1" active="yes">
<param name="cfNonPref" value="0"/>
<param name="cfChangeDir" value="6"/>
<param name="cfExtdStep" value="0"/>
<param name="cfBonusStep" value="2"/>
<param name="cfMalusStep" value="2"/>
<param name="cfPadImpact" value="2"/>
<param name="cfSmdImpact" value="2"/>
<param name="cfHugging" value="0"/>
</pass>
<pass name="Optimize3" refer="Optimize2" active="yes">
<param name="cfChangeDir" value="8"/>
<param name="cfPadImpact" value="0"/>
<param name="cfSmdImpact" value="0"/>
</pass>
<pass name="Optimize4" refer="Optimize3" active="yes">
<param name="cfChangeDir" value="25"/>
</pass>
</autorouter>
<elements>
<element name="U$21" library="adafruit_sensor" package="QFN24_3MM_NOEP" value="MPU-9250_ICM20948" x="12.573" y="8.89" smashed="yes" rot="R180"/>
<element name="JP1" library="microbuilder" package="1X06_ROUND_70" value="" x="12.7" y="2.54" smashed="yes">
<attribute name="NAME" x="5.0038" y="4.3688" size="0.8128" layer="25" ratio="18"/>
<attribute name="VALUE" x="5.08" y="-0.635" size="0.4064" layer="27" ratio="10"/>
</element>
<element name="JP3" library="microbuilder" package="1X06_ROUND_70" value="" x="12.7" y="15.24" smashed="yes" rot="R180">
<attribute name="NAME" x="20.3962" y="13.4112" size="0.8128" layer="25" ratio="18" rot="R180"/>
<attribute name="VALUE" x="20.32" y="18.415" size="0.4064" layer="27" ratio="10" rot="R180"/>
</element>
<element name="C3" library="microbuilder" package="0603-NO" value="0.1uF" x="11.0236" y="12.0142" smashed="yes" rot="R180">
<attribute name="NAME" x="9.2456" y="12.1412" size="0.8128" layer="25" font="vector" ratio="18" rot="R180"/>
<attribute name="VALUE" x="13.5636" y="11.3157" size="1.016" layer="27" font="vector" ratio="10" rot="R180"/>
</element>
<element name="R2" library="microbuilder" package="RESPACK_4X0603" value="4.7K" x="17.4752" y="11.938" smashed="yes" rot="R270">
<attribute name="NAME" x="19.0752" y="13.538" size="0.8128" layer="25" ratio="18" rot="R270"/>
<attribute name="VALUE" x="16.1419" y="9.1316" size="1.016" layer="27" font="vector" ratio="10"/>
</element>
<element name="C5" library="microbuilder" package="0805-NO" value="10uF" x="6.604" y="5.588" smashed="yes">
<attribute name="NAME" x="8.509" y="6.35" size="0.8128" layer="25" ratio="18" rot="R270"/>
<attribute name="VALUE" x="5.207" y="3.6195" size="1.016" layer="27" ratio="10"/>
</element>
<element name="U1" library="microbuilder" package="SOT23-5" value="MIC5225-1.8V" x="7.493" y="8.636" smashed="yes">
<attribute name="NAME" x="9.525" y="9.198" size="0.8128" layer="25" ratio="18" rot="R270"/>
<attribute name="VALUE" x="2.8035" y="-1.8415" size="1.016" layer="27" ratio="10"/>
</element>
<element name="C6" library="microbuilder" package="0805-NO" value="10uF" x="7.874" y="11.811" smashed="yes">
<attribute name="NAME" x="9.779" y="12.573" size="0.8128" layer="25" ratio="18" rot="R270"/>
<attribute name="VALUE" x="9.9695" y="13.843" size="1.016" layer="27" ratio="10" rot="R180"/>
</element>
<element name="C7" library="microbuilder" package="0603-NO" value="0.1uF" x="9.779" y="8.6995" smashed="yes" rot="R270">
<attribute name="NAME" x="10.668" y="9.4615" size="0.8128" layer="25" ratio="18" rot="R270"/>
<attribute name="VALUE" x="11.557" y="6.4516" size="1.016" layer="27" ratio="10" rot="R90"/>
</element>
<element name="R3" library="microbuilder" package="RESPACK_4X0603" value="10K" x="17.78" y="7.112" smashed="yes" rot="R90">
<attribute name="NAME" x="16.18" y="5.512" size="0.8128" layer="25" ratio="18" rot="R90"/>
<attribute name="VALUE" x="19.4181" y="5.1432" size="1.016" layer="27" font="vector" ratio="10" rot="R180"/>
</element>
<element name="U$38" library="microbuilder" package="MOUNTINGHOLE_2.5_PLATED" value="MOUNTINGHOLE2.5" x="2.54" y="15.24" smashed="yes">
<attribute name="BOM" value="EXCLUDE" x="2.54" y="15.24" size="1.016" layer="27" font="vector" ratio="14" display="off"/>
</element>
<element name="U$39" library="microbuilder" package="MOUNTINGHOLE_2.5_PLATED" value="MOUNTINGHOLE2.5" x="22.86" y="15.24" smashed="yes">
<attribute name="BOM" value="EXCLUDE" x="22.86" y="15.24" size="1.016" layer="27" font="vector" ratio="14" display="off"/>
</element>
<element name="CONN3" library="microbuilder" package="JST_SH4" value="STEMMA_I2C_QT" x="22.86" y="8.89" smashed="yes" rot="R90">
<attribute name="NAME" x="16.96" y="4.29" size="1.778" layer="25" rot="R90"/>
</element>
<element name="CONN4" library="microbuilder" package="JST_SH4" value="STEMMA_I2C_QT" x="2.54" y="8.89" smashed="yes" rot="R270">
<attribute name="NAME" x="8.44" y="13.49" size="1.778" layer="25" rot="R270"/>
</element>
<element name="FID2" library="microbuilder" package="FIDUCIAL_1MM" value="FIDUCIAL_1MM" x="1.651" y="9.0805" smashed="yes">
<attribute name="BOM" value="EXCLUDE" x="1.651" y="9.0805" size="0.4064" layer="27" display="off"/>
</element>
<element name="FID4" library="microbuilder" package="FIDUCIAL_1MM" value="FIDUCIAL_1MM" x="23.622" y="8.9281" smashed="yes">
<attribute name="BOM" value="EXCLUDE" x="23.622" y="8.9281" size="0.4064" layer="27" display="off"/>
</element>
<element name="U$41" library="microbuilder" package="MOUNTINGHOLE_2.5_PLATED" value="MOUNTINGHOLE2.5" x="2.54" y="2.54" smashed="yes">
<attribute name="BOM" value="EXCLUDE" x="2.54" y="2.54" size="1.778" layer="27" display="off"/>
</element>
<element name="U$42" library="microbuilder" package="MOUNTINGHOLE_2.5_PLATED" value="MOUNTINGHOLE2.5" x="22.86" y="2.54" smashed="yes">
<attribute name="BOM" value="EXCLUDE" x="22.86" y="2.54" size="1.778" layer="27" display="off"/>
</element>
<element name="U$45" library="microbuilder" package="PCBFEAT-REV-040" value="" x="21.463" y="5.715" smashed="yes" rot="MR0">
<attribute name="REV" x="21.8186" y="5.207" size="1.016" layer="22" ratio="20" rot="MR0"/>
</element>
<element name="U$46" library="silks" package="STEMMAQT" value="" x="22.479" y="4.445" smashed="yes" rot="MR90"/>
<element name="U$47" library="silks" package="STEMMAQT" value="" x="2.921" y="13.335" smashed="yes" rot="MR270"/>
<element name="D1" library="microbuilder" package="CHIPLED_0603_NOOUTLINE" value="RED" x="3.556" y="12.573" smashed="yes" rot="R90">
<attribute name="NAME" x="4.826" y="11.811" size="0.8128" layer="25" ratio="18" rot="R180"/>
<attribute name="VALUE" x="1.4605" y="13.208" size="1.016" layer="27" ratio="10" rot="R180"/>
</element>
<element name="R4" library="microbuilder" package="0603-NO" value="1K" x="5.461" y="12.446" smashed="yes" rot="R270">
<attribute name="NAME" x="5.334" y="10.668" size="0.8128" layer="25" font="vector" ratio="18" rot="R270"/>
<attribute name="VALUE" x="4.9022" y="11.1633" size="1.016" layer="27" font="vector" ratio="10" rot="R270"/>
</element>
<element name="Q3" library="microbuilder" package="SOT363" value="BSS138" x="14.986" y="5.715" smashed="yes" rot="R270">
<attribute name="NAME" x="15.113" y="4.064" size="0.8128" layer="25" ratio="18" rot="R270"/>
<attribute name="VALUE" x="13.6525" y="4.445" size="1.016" layer="27" ratio="10" rot="R90"/>
</element>
<element name="Q2" library="microbuilder" package="SOT363" value="BSS138" x="14.732" y="12.192" smashed="yes" rot="R90">
<attribute name="NAME" x="14.605" y="13.843" size="0.8128" layer="25" ratio="18" rot="R90"/>
<attribute name="VALUE" x="16.383" y="14.097" size="1.016" layer="27" ratio="10" rot="R180"/>
</element>
<element name="U$2" library="microbuilder" package="ADAFRUIT_2.5MM" value="" x="21.336" y="5.7785" smashed="yes" rot="R180"/>
<element name="SJ1" library="microbuilder" package="SOLDERJUMPER_ARROW_NOPASTE" value="" x="17.78" y="11.811" smashed="yes" rot="MR270">
<attribute name="BOM" value="EXCLUDE" x="17.78" y="11.811" size="1.4224" layer="28" font="vector" ratio="12" rot="MR270" display="off"/>
<attribute name="NAME" x="16.51" y="13.589" size="0.8128" layer="26" ratio="18" rot="MR270"/>
<attribute name="VALUE" x="19.431" y="13.462" size="0.4064" layer="28" ratio="10" rot="MR270"/>
</element>
<element name="D2" library="microbuilder" package="SOD-323_MINI" value="1n4148" x="19.7485" y="12.446" smashed="yes" rot="R270">
<attribute name="NAME" x="19.7645" y="11.73" size="0.8128" layer="25" ratio="18" rot="R270"/>
<attribute name="VALUE" x="19.4309" y="12.8603" size="1.016" layer="27" ratio="10" rot="R270"/>
</element>
<element name="R1" library="microbuilder" package="0603-NO" value="10K" x="10.0965" y="5.207" smashed="yes">
<attribute name="NAME" x="11.8745" y="5.08" size="0.8128" layer="25" font="vector" ratio="18"/>
<attribute name="VALUE" x="8.9662" y="3.5814" size="1.016" layer="27" font="vector" ratio="10"/>
</element>
<element name="U$12" library="microbuilder" package="ADAFRUIT_3.5MM" value="" x="6.6294" y="7.0612" smashed="yes" rot="MR270"/>
</elements>
<signals>
<signal name="GND">
<contactref element="JP1" pad="3"/>
<contactref element="JP3" pad="3"/>
<contactref element="U$21" pad="18"/>
<contactref element="U$21" pad="20"/>
<contactref element="C3" pad="2"/>
<contactref element="C5" pad="2"/>
<contactref element="U1" pad="2"/>
<contactref element="C6" pad="2"/>
<contactref element="C7" pad="2"/>
<contactref element="CONN4" pad="1"/>
<contactref element="CONN3" pad="1"/>
<contactref element="D1" pad="C"/>
<polygon width="0.2032" layer="1">
<vertex x="0" y="17.78"/>
<vertex x="25.4" y="17.78"/>
<vertex x="25.4" y="0"/>
<vertex x="0" y="0"/>
</polygon>
<polygon width="0.2032" layer="16">
<vertex x="0" y="17.78"/>
<vertex x="25.4" y="17.78"/>
<vertex x="25.4" y="0"/>
<vertex x="0" y="0"/>
</polygon>
<wire x1="7.493" y1="7.3359" x2="7.493" y2="5.649" width="0.2032" layer="1"/>
<wire x1="7.554" y1="5.588" x2="7.493" y2="5.649" width="0.2032" layer="1"/>
<wire x1="11.073" y1="7.65175" x2="11.073" y2="7.89" width="0.2032" layer="1"/>
<wire x1="11.973" y1="7.39" x2="11.973" y2="6.893" width="0.2032" layer="1"/>
<wire x1="11.973" y1="6.893" x2="11.914" y2="6.834" width="0.2032" layer="1"/>
<wire x1="11.914" y1="6.834" x2="11.2635" y2="6.834" width="0.2032" layer="1"/>
<wire x1="7.554" y1="5.588" x2="8.189" y2="6.223" width="0.2032" layer="1"/>
<wire x1="8.189" y1="6.223" x2="8.9535" y2="6.223" width="0.2032" layer="1"/>
<via x="3.302" y="11.176" extent="1-16" drill="0.3937"/>
<via x="7.112" y="13.462" extent="1-16" drill="0.3937"/>
<contactref element="SJ1" pad="2"/>
<via x="10.287" y="13.335" extent="1-16" drill="0.3937"/>
<via x="9.4615" y="6.35" extent="1-16" drill="0.3937"/>
<via x="22.5425" y="12.065" extent="1-16" drill="0.3937"/>
<via x="21.717" y="8.128" extent="1-16" drill="0.3937"/>
<via x="20.955" y="0.8255" extent="1-16" drill="0.3937"/>
<via x="19.4945" y="4.0005" extent="1-16" drill="0.3937"/>
<wire x1="8.9535" y1="6.223" x2="9.3345" y2="6.604" width="0.254" layer="1"/>
<wire x1="9.3345" y1="7.405" x2="9.779" y2="7.8495" width="0.254" layer="1"/>
<wire x1="9.3345" y1="6.604" x2="9.3345" y2="7.405" width="0.254" layer="1"/>
<wire x1="11.2635" y1="6.834" x2="11.073" y2="7.0245" width="0.254" layer="1"/>
<wire x1="11.073" y1="7.0245" x2="11.073" y2="7.65175" width="0.254" layer="1"/>
<contactref element="CONN3" pad="MT1"/>
<contactref element="CONN3" pad="MT2"/>
<contactref element="CONN4" pad="MT1"/>
<contactref element="CONN4" pad="MT2"/>
</signal>
<signal name="VIN">
<contactref element="JP1" pad="1"/>
<contactref element="C5" pad="1"/>
<contactref element="U1" pad="1"/>
<contactref element="U1" pad="3"/>
<contactref element="CONN3" pad="2"/>
<contactref element="CONN4" pad="2"/>
<wire x1="6.35" y1="2.54" x2="6.35" y2="4.892" width="0.2032" layer="1"/>
<wire x1="6.35" y1="4.892" x2="5.654" y2="5.588" width="0.2032" layer="1"/>
<wire x1="5.654" y1="5.588" x2="5.654" y2="5.9055" width="0.2032" layer="1"/>
<wire x1="6.543" y1="6.7945" x2="5.654" y2="5.9055" width="0.2032" layer="1"/>
<wire x1="6.543" y1="6.7945" x2="6.543" y2="7.3359" width="0.2032" layer="1"/>
<wire x1="6.543" y1="7.3359" x2="6.543" y2="7.94" width="0.254" layer="1"/>
<wire x1="6.543" y1="7.94" x2="6.858" y2="8.255" width="0.254" layer="1"/>
<wire x1="6.858" y1="8.255" x2="6.985" y2="8.382" width="0.254" layer="1"/>
<wire x1="6.985" y1="8.382" x2="8.001" y2="8.382" width="0.254" layer="1"/>
<wire x1="8.443" y1="7.94" x2="8.443" y2="7.3359" width="0.254" layer="1"/>
<wire x1="8.443" y1="7.94" x2="8.001" y2="8.382" width="0.254" layer="1"/>
<contactref element="R3" pad="3"/>
<contactref element="R3" pad="2"/>
<wire x1="18.63" y1="6.712" x2="18.63" y2="7.512" width="0.2032" layer="1"/>
<contactref element="R2" pad="5"/>
<contactref element="R2" pad="7"/>
<wire x1="18.3252" y1="10.638" x2="18.503" y2="10.4602" width="0.2032" layer="1"/>
<wire x1="18.503" y1="10.4602" x2="18.503" y2="9.691" width="0.2032" layer="1"/>
<wire x1="5.054" y1="9.39" x2="5.723" y2="9.39" width="0.2032" layer="1"/>
<wire x1="5.723" y1="9.39" x2="6.858" y2="8.255" width="0.2032" layer="1"/>
<wire x1="6.35" y1="2.54" x2="8.001" y2="0.889" width="0.2032" layer="1"/>
<wire x1="20.339" y1="6.712" x2="18.63" y2="6.712" width="0.2032" layer="1"/>
<wire x1="8.001" y1="0.889" x2="19.8755" y2="0.889" width="0.2032" layer="1"/>
<wire x1="19.8755" y1="0.889" x2="20.701" y2="1.7145" width="0.2032" layer="1"/>
<wire x1="20.701" y1="1.7145" x2="20.701" y2="6.35" width="0.2032" layer="1"/>
<wire x1="20.701" y1="6.35" x2="20.339" y2="6.712" width="0.2032" layer="1"/>
<wire x1="19.0627" y1="10.90056875" x2="18.80013125" y2="10.638" width="0.2032" layer="1"/>
<wire x1="18.3252" y1="10.638" x2="18.80013125" y2="10.638" width="0.2032" layer="1"/>
<wire x1="19.0627" y1="10.90056875" x2="19.0627" y2="11.9253" width="0.2032" layer="1"/>
<wire x1="19.0627" y1="11.9253" x2="18.65" y2="12.338" width="0.2032" layer="1"/>
<wire x1="18.65" y1="12.338" x2="18.3252" y2="12.338" width="0.2032" layer="1"/>
<wire x1="18.503" y1="9.691" x2="19.804" y2="8.39" width="0.2032" layer="1"/>
<wire x1="19.804" y1="8.39" x2="20.346" y2="8.39" width="0.2032" layer="1"/>
<wire x1="18.63" y1="7.512" x2="18.80013125" y2="7.512" width="0.2032" layer="1"/>
<wire x1="19.67813125" y1="8.39" x2="18.80013125" y2="7.512" width="0.2032" layer="1"/>
<wire x1="19.67813125" y1="8.39" x2="19.804" y2="8.39" width="0.2032" layer="1"/>
</signal>
<signal name="INT">
<contactref element="JP1" pad="6"/>
<contactref element="Q2" pad="6"/>
<contactref element="R2" pad="4"/>
<wire x1="15.432025" y1="10.730975" x2="14.975" y2="11.188" width="0.2032" layer="1"/>
<wire x1="14.975" y1="11.188" x2="14.4035" y2="11.188" width="0.2032" layer="1"/>
<wire x1="14.4035" y1="11.188" x2="14.1495" y2="11.442" width="0.2032" layer="1"/>
<wire x1="13.832" y1="11.442" x2="14.1495" y2="11.442" width="0.2032" layer="1"/>
<wire x1="16.532225" y1="10.730975" x2="15.432025" y2="10.730975" width="0.2032" layer="1"/>
<wire x1="16.6252" y1="10.638" x2="16.532225" y2="10.730975" width="0.2032" layer="1"/>
<wire x1="16.6252" y1="10.638" x2="16.9545" y2="10.3087" width="0.1778" layer="1"/>
<wire x1="16.9545" y1="10.3087" x2="16.9545" y2="9.7155" width="0.1778" layer="1"/>
<via x="16.9545" y="9.7155" extent="1-16" drill="0.3937"/>
<wire x1="16.9545" y1="9.7155" x2="17.3863" y2="10.1473" width="0.1778" layer="16"/>
<wire x1="21.38993125" y1="11.1125" x2="23.3045" y2="11.1125" width="0.1778" layer="16"/>
<wire x1="17.3863" y1="10.1473" x2="20.42473125" y2="10.1473" width="0.1778" layer="16"/>
<wire x1="20.42473125" y1="10.1473" x2="21.38993125" y2="11.1125" width="0.1778" layer="16"/>
<wire x1="23.3045" y1="11.1125" x2="23.8125" y2="10.6045" width="0.1778" layer="16"/>
<wire x1="23.8125" y1="7.3025" x2="19.05" y2="2.54" width="0.1778" layer="16"/>
<wire x1="23.8125" y1="10.6045" x2="23.8125" y2="7.3025" width="0.1778" layer="16"/>
</signal>
<signal name="CS">
<contactref element="JP3" pad="1"/>
<contactref element="D2" pad="C"/>
<wire x1="19.05" y1="15.24" x2="19.05" y2="14.2145" width="0.2032" layer="1"/>
<wire x1="19.05" y1="14.2145" x2="19.7485" y2="13.516" width="0.2032" layer="1"/>
</signal>
<signal name="CS_1.8V">
<contactref element="U$21" pad="22"/>
<via x="12.87455" y="5.08" extent="1-16" drill="0.3937"/>
<wire x1="12.773" y1="7.39" x2="12.773" y2="5.18155" width="0.2032" layer="1"/>
<wire x1="12.87455" y1="5.08" x2="12.773" y2="5.18155" width="0.2032" layer="1"/>
<contactref element="D2" pad="A"/>
<contactref element="R1" pad="2"/>
<wire x1="10.9465" y1="5.207" x2="12.74755" y2="5.207" width="0.254" layer="1"/>
<wire x1="12.74755" y1="5.207" x2="12.87455" y2="5.08" width="0.254" layer="1"/>
<wire x1="19.7485" y1="11.376" x2="21.898" y2="11.376" width="0.2032" layer="1"/>
<wire x1="22.39645" y1="10.87755" x2="22.39645" y2="8.02005" width="0.2032" layer="1"/>
<wire x1="22.6695" y1="7.747" x2="22.39645" y2="8.02005" width="0.2032" layer="1"/>
<wire x1="21.898" y1="11.376" x2="22.39645" y2="10.87755" width="0.2032" layer="1"/>
<wire x1="12.87455" y1="5.08" x2="13.173" y2="4.78155" width="0.2032" layer="1"/>
<wire x1="13.173" y1="4.78155" x2="13.173" y2="4.38568125" width="0.2032" layer="1"/>
<wire x1="13.173" y1="4.38568125" x2="13.62168125" y2="3.937" width="0.2032" layer="1"/>
<wire x1="15.9385" y1="3.937" x2="16.5855" y2="4.584" width="0.2032" layer="1"/>
<wire x1="20.02155" y1="6.0050625" x2="19.9750625" y2="6.0050625" width="0.2032" layer="1"/>
<wire x1="19.9750625" y1="6.0050625" x2="18.554" y2="4.584" width="0.2032" layer="1"/>
<wire x1="13.62168125" y1="3.937" x2="15.9385" y2="3.937" width="0.2032" layer="1"/>
<wire x1="16.5855" y1="4.584" x2="18.554" y2="4.584" width="0.2032" layer="1"/>
<via x="22.6695" y="7.747" extent="1-16" drill="0.3937"/>
<wire x1="22.6695" y1="7.747" x2="22.76475" y2="7.65175" width="0.2032" layer="16"/>
<wire x1="22.76475" y1="7.65175" x2="21.1180625" y2="6.0050625" width="0.2032" layer="16"/>
<wire x1="21.1180625" y1="6.0050625" x2="20.02155" y2="6.0050625" width="0.2032" layer="16"/>
<via x="20.02155" y="6.0050625" extent="1-16" drill="0.3937"/>
</signal>
<signal name="SDO/ADR_1.8V">
<contactref element="U$21" pad="9"/>
<contactref element="Q2" pad="4"/>
<contactref element="R2" pad="1"/>
<wire x1="14.606" y1="14.097" x2="13.832" y2="13.323" width="0.2032" layer="1"/>
<wire x1="13.832" y1="12.942" x2="13.832" y2="13.323" width="0.2032" layer="1"/>
<wire x1="15.88013125" y1="14.097" x2="16.6252" y2="13.35193125" width="0.2032" layer="1"/>
<wire x1="14.606" y1="14.097" x2="15.24" y2="14.097" width="0.2032" layer="1"/>
<wire x1="15.24" y1="14.097" x2="15.88013125" y2="14.097" width="0.2032" layer="1"/>
<wire x1="16.6252" y1="13.35193125" x2="16.6252" y2="13.238" width="0.2032" layer="1"/>
<via x="12.62055" y="13.081" extent="1-16" drill="0.3937"/>
<wire x1="12.773" y1="10.39" x2="12.773" y2="12.85781875" width="0.2032" layer="1"/>
<wire x1="12.62055" y1="13.01026875" x2="12.62055" y2="13.081" width="0.2032" layer="1"/>
<wire x1="12.773" y1="12.85781875" x2="12.62055" y2="13.01026875" width="0.2032" layer="1"/>
<via x="15.24" y="14.224" extent="1-16" drill="0.3937"/>
<wire x1="14.73336875" y1="14.224" x2="13.59036875" y2="13.081" width="0.2032" layer="16"/>
<wire x1="12.62055" y1="13.081" x2="13.59036875" y2="13.081" width="0.2032" layer="16"/>
<wire x1="14.73336875" y1="14.224" x2="15.24" y2="14.224" width="0.2032" layer="16"/>
<wire x1="15.24" y1="14.224" x2="15.24" y2="14.097" width="0.2032" layer="1"/>
</signal>
<signal name="SDI/SDA">
<contactref element="JP1" pad="5"/>
<contactref element="CONN4" pad="3"/>
<contactref element="CONN3" pad="3"/>
<contactref element="Q3" pad="6"/>
<contactref element="R3" pad="7"/>
<wire x1="16.204" y1="6.783" x2="15.886" y2="6.465" width="0.2032" layer="1"/>
<wire x1="16.93" y1="6.712" x2="16.859" y2="6.783" width="0.2032" layer="1"/>
<wire x1="16.859" y1="6.783" x2="16.204" y2="6.783" width="0.2032" layer="1"/>
<wire x1="15.886" y1="6.465" x2="15.04245" y2="6.465" width="0.2032" layer="1"/>
<wire x1="15.04245" y1="6.465" x2="14.986" y2="6.52145" width="0.2032" layer="1"/>
<via x="14.986" y="6.52145" extent="1-16" drill="0.3937"/>
<wire x1="14.986" y1="6.52145" x2="15.91945" y2="5.588" width="0.2032" layer="16"/>
<wire x1="21.6535" y1="9.271" x2="21.336" y2="9.271" width="0.2032" layer="16"/>
<wire x1="21.6535" y1="9.271" x2="21.717" y2="9.2075" width="0.2032" layer="16"/>
<via x="21.717" y="9.2075" extent="1-16" drill="0.3937"/>
<wire x1="21.717" y1="9.2075" x2="21.5345" y2="9.39" width="0.2032" layer="1"/>
<wire x1="21.5345" y1="9.39" x2="20.346" y2="9.39" width="0.2032" layer="1"/>
<wire x1="15.91945" y1="5.588" x2="17.272" y2="5.588" width="0.2032" layer="16"/>
<wire x1="17.272" y1="5.588" x2="17.653" y2="5.588" width="0.2032" layer="16"/>
<wire x1="17.653" y1="5.588" x2="21.336" y2="9.271" width="0.2032" layer="16"/>
<wire x1="16.51" y1="2.54" x2="17.272" y2="3.302" width="0.2032" layer="16"/>
<wire x1="17.272" y1="3.302" x2="17.272" y2="5.588" width="0.2032" layer="16"/>
<wire x1="3.437" y1="8.39" x2="3.429" y2="8.382" width="0.2032" layer="1"/>
<via x="3.429" y="8.382" extent="1-16" drill="0.3937"/>
<wire x1="5.1689" y1="4.4831" x2="3.4925" y2="6.1595" width="0.2032" layer="16"/>
<wire x1="3.429" y1="8.382" x2="3.4925" y2="8.3185" width="0.2032" layer="16"/>
<wire x1="3.4925" y1="8.3185" x2="3.4925" y2="6.1595" width="0.2032" layer="16"/>
<wire x1="5.1689" y1="4.4831" x2="5.1689" y2="1.9939" width="0.2032" layer="16"/>
<wire x1="5.1689" y1="1.9939" x2="6.2738" y2="0.889" width="0.2032" layer="16"/>
<wire x1="6.2738" y1="0.889" x2="14.224" y2="0.889" width="0.2032" layer="16"/>
<wire x1="14.224" y1="0.889" x2="15.875" y2="2.54" width="0.2032" layer="16"/>
<wire x1="15.875" y1="2.54" x2="16.51" y2="2.54" width="0.2032" layer="16"/>
<wire x1="5.054" y1="8.39" x2="3.437" y2="8.39" width="0.2032" layer="1"/>
</signal>
<signal name="SCK/SCL">
<contactref element="JP1" pad="4"/>
<contactref element="CONN4" pad="4"/>
<contactref element="CONN3" pad="4"/>
<contactref element="R3" pad="6"/>
<contactref element="Q3" pad="3"/>
<via x="14.986" y="5.08" extent="1-16" drill="0.3937"/>
<wire x1="14.986" y1="5.08" x2="14.986" y2="3.556" width="0.2032" layer="16"/>
<wire x1="14.986" y1="3.556" x2="13.97" y2="2.54" width="0.2032" layer="16"/>
<via x="21.717" y="10.2235" extent="1-16" drill="0.3937"/>
<wire x1="21.717" y1="10.2235" x2="21.5505" y2="10.39" width="0.2032" layer="1"/>
<wire x1="21.5505" y1="10.39" x2="20.346" y2="10.39" width="0.2032" layer="1"/>
<wire x1="16.93" y1="7.512" x2="15.894" y2="7.512" width="0.2032" layer="1"/>
<wire x1="15.894" y1="7.512" x2="15.748" y2="7.366" width="0.2032" layer="1"/>
<via x="15.748" y="7.366" extent="1-16" drill="0.3937"/>
<wire x1="15.748" y1="7.366" x2="18.6055" y2="7.366" width="0.2032" layer="16"/>
<wire x1="21.717" y1="10.2235" x2="21.463" y2="10.2235" width="0.2032" layer="16"/>
<wire x1="21.463" y1="10.2235" x2="18.6055" y2="7.366" width="0.2032" layer="16"/>
<wire x1="5.054" y1="7.39" x2="4.318" y2="6.654" width="0.2032" layer="1"/>
<wire x1="4.318" y1="6.654" x2="4.318" y2="6.4135" width="0.2032" layer="1"/>
<via x="4.318" y="6.4135" extent="1-16" drill="0.3937"/>
<wire x1="7.62" y1="2.032" x2="8.382" y2="1.27" width="0.2032" layer="16"/>
<wire x1="8.382" y1="1.27" x2="12.7" y2="1.27" width="0.2032" layer="16"/>
<wire x1="12.7" y1="1.27" x2="13.97" y2="2.54" width="0.2032" layer="16"/>
<wire x1="7.62" y1="4.1275" x2="5.334" y2="6.4135" width="0.2032" layer="16"/>
<wire x1="4.318" y1="6.4135" x2="5.334" y2="6.4135" width="0.2032" layer="16"/>
<wire x1="7.62" y1="4.1275" x2="7.62" y2="2.032" width="0.2032" layer="16"/>
<wire x1="15.112996875" y1="5.306565625" x2="14.306559375" y2="6.113" width="0.2032" layer="16"/>
<wire x1="14.306559375" y1="6.113" x2="14.306559375" y2="6.813559375" width="0.2032" layer="16"/>
<wire x1="14.306559375" y1="6.813559375" x2="14.859" y2="7.366" width="0.2032" layer="16"/>
<wire x1="14.859" y1="7.366" x2="15.748" y2="7.366" width="0.2032" layer="16"/>
<wire x1="15.08125" y1="4.98475" x2="14.986" y2="5.08" width="0.2032" layer="1"/>
<wire x1="15.08125" y1="4.98475" x2="15.0615" y2="4.965" width="0.2032" layer="1"/>
<wire x1="15.0615" y1="4.965" x2="14.086" y2="4.965" width="0.2032" layer="1"/>
<wire x1="14.986" y1="5.08" x2="15.112996875" y2="5.08" width="0.2032" layer="16"/>
<wire x1="15.112996875" y1="5.306565625" x2="15.112996875" y2="5.08" width="0.2032" layer="16"/>
</signal>
<signal name="FSYNC">
<contactref element="U$21" pad="11"/>
<contactref element="JP3" pad="6"/>
<wire x1="7.8105" y1="14.033496875" x2="6.604" y2="15.24" width="0.2032" layer="1"/>
<wire x1="6.35" y1="15.24" x2="6.604" y2="15.24" width="0.2032" layer="1"/>
<wire x1="11.954" y1="11.00218125" x2="11.954" y2="10.409" width="0.2032" layer="1"/>
<wire x1="11.973" y1="10.39" x2="11.954" y2="10.409" width="0.2032" layer="1"/>
<wire x1="11.954" y1="11.00218125" x2="11.95158125" y2="11.0046" width="0.2032" layer="1"/>
<wire x1="11.04899375" y1="11.303" x2="11.04899375" y2="13.65250625" width="0.2032" layer="1"/>
<wire x1="10.668003125" y1="14.033496875" x2="7.8105" y2="14.033496875" width="0.2032" layer="1"/>
<wire x1="11.04899375" y1="13.65250625" x2="10.668003125" y2="14.033496875" width="0.2032" layer="1"/>
<wire x1="11.34739375" y1="11.0046" x2="11.04899375" y2="11.303" width="0.2032" layer="1"/>
<wire x1="11.95158125" y1="11.0046" x2="11.34739375" y2="11.0046" width="0.2032" layer="1"/>
</signal>
<signal name="AUX_SCL">
<contactref element="U$21" pad="7"/>
<contactref element="JP3" pad="4"/>
<wire x1="13.573" y1="10.39" x2="14.6685" y2="10.39" width="0.2032" layer="1"/>
<via x="14.6685" y="10.49655" extent="1-16" drill="0.3937"/>
<wire x1="14.6685" y1="10.49655" x2="14.6685" y2="10.39" width="0.2032" layer="1"/>
<wire x1="14.5415" y1="10.49655" x2="14.6685" y2="10.49655" width="0.2032" layer="16"/>
<wire x1="14.5415" y1="10.49655" x2="13.60805" y2="11.43" width="0.2032" layer="16"/>
<wire x1="11.43" y1="15.24" x2="11.43" y2="12.192" width="0.2032" layer="16"/>
<wire x1="12.192" y1="11.43" x2="13.60805" y2="11.43" width="0.2032" layer="16"/>
<wire x1="11.43" y1="12.192" x2="12.192" y2="11.43" width="0.2032" layer="16"/>
</signal>
<signal name="AUX_SDA">
<contactref element="U$21" pad="21"/>
<contactref element="JP3" pad="5"/>
<wire x1="8.89" y1="15.24" x2="8.89" y2="7.556496875" width="0.2032" layer="16"/>
<via x="10.414" y="6.6675" extent="1-16" drill="0.3937"/>
<wire x1="12.373" y1="7.39" x2="12.373" y2="6.63886875" width="0.2032" layer="1"/>
<wire x1="12.373" y1="6.63886875" x2="12.14763125" y2="6.4135" width="0.2032" layer="1"/>
<wire x1="12.14763125" y1="6.4135" x2="10.668" y2="6.4135" width="0.2032" layer="1"/>
<wire x1="10.668" y1="6.4135" x2="10.414" y2="6.6675" width="0.2032" layer="1"/>
<wire x1="10.414" y1="6.6675" x2="9.9695" y2="7.112" width="0.2032" layer="16"/>
<wire x1="9.9695" y1="7.112" x2="9.334496875" y2="7.112" width="0.2032" layer="16"/>
<wire x1="9.334496875" y1="7.112" x2="8.89" y2="7.556496875" width="0.2032" layer="16"/>
</signal>
<signal name="SCK/SCL_1.8V">
<contactref element="U$21" pad="23"/>
<contactref element="Q3" pad="4"/>
<wire x1="13.7795" y1="4.318" x2="15.494" y2="4.318" width="0.2032" layer="1"/>
<wire x1="15.494" y1="4.318" x2="15.886" y2="4.71" width="0.2032" layer="1"/>
<wire x1="15.886" y1="4.71" x2="15.886" y2="4.965" width="0.2032" layer="1"/>
<wire x1="13.554" y1="6.628" x2="13.173" y2="7.009" width="0.2032" layer="1"/>
<wire x1="13.173" y1="7.39" x2="13.173" y2="7.009" width="0.2032" layer="1"/>
<wire x1="13.554" y1="6.628" x2="13.554" y2="4.5435" width="0.2032" layer="1"/>
<wire x1="13.554" y1="4.5435" x2="13.7795" y2="4.318" width="0.2032" layer="1"/>
<contactref element="R3" pad="1"/>
<wire x1="15.886" y1="4.965" x2="17.792" y2="4.965" width="0.2032" layer="1"/>
<wire x1="18.63" y1="5.803" x2="18.63" y2="5.812" width="0.2032" layer="1"/>
<wire x1="17.792" y1="4.965" x2="18.63" y2="5.803" width="0.2032" layer="1"/>
</signal>
<signal name="SDI/SDA_1.8V">
<contactref element="U$21" pad="24"/>
<contactref element="Q3" pad="1"/>
<wire x1="13.573" y1="7.39" x2="13.669" y2="7.39" width="0.2032" layer="1"/>
<wire x1="14.086" y1="6.973" x2="14.086" y2="6.72" width="0.2032" layer="1"/>
<wire x1="14.086" y1="6.973" x2="13.669" y2="7.39" width="0.2032" layer="1"/>
<contactref element="R3" pad="5"/>
<wire x1="14.086" y1="6.72" x2="15.778" y2="8.412" width="0.2032" layer="1"/>
<wire x1="15.778" y1="8.412" x2="16.93" y2="8.412" width="0.2032" layer="1"/>
<wire x1="14.086" y1="6.465" x2="14.086" y2="6.72" width="0.2032" layer="1"/>
</signal>
<signal name="REGOUT">
<contactref element="U$21" pad="10"/>
<contactref element="C3" pad="1"/>
<wire x1="12.373" y1="10.39" x2="12.373" y2="11.122" width="0.2032" layer="1"/>
<wire x1="11.8736" y1="11.6214" x2="11.8736" y2="12.0142" width="0.2032" layer="1"/>
<wire x1="12.373" y1="11.122" x2="11.8736" y2="11.6214" width="0.2032" layer="1"/>
</signal>
<signal name="1.8V">
<contactref element="JP1" pad="2"/>
<contactref element="U$21" pad="13"/>
<contactref element="U$21" pad="8" route="any" routetag="G$1.VDDIO"/>
<contactref element="U1" pad="5"/>
<contactref element="C6" pad="1"/>
<contactref element="C7" pad="1"/>
<wire x1="6.924" y1="10.287" x2="6.5731" y2="9.9361" width="0.254" layer="1"/>
<wire x1="6.543" y1="9.9361" x2="6.5731" y2="9.9361" width="0.254" layer="1"/>
<wire x1="9.017" y1="8.89" x2="7.239" y2="8.89" width="0.254" layer="1"/>
<wire x1="7.239" y1="8.89" x2="6.543" y2="9.586" width="0.254" layer="1"/>
<wire x1="6.543" y1="9.586" x2="6.543" y2="9.9361" width="0.254" layer="1"/>
<wire x1="9.779" y1="9.5495" x2="9.6765" y2="9.5495" width="0.254" layer="1"/>
<wire x1="9.6765" y1="9.5495" x2="9.017" y2="8.89" width="0.254" layer="1"/>
<contactref element="Q3" pad="2"/>
<contactref element="Q3" pad="5"/>
<contactref element="R3" pad="8"/>
<wire x1="15.886" y1="5.715" x2="16.51" y2="5.715" width="0.2032" layer="1"/>
<contactref element="R3" pad="4"/>
<wire x1="17.369" y1="5.812" x2="17.78" y2="6.223" width="0.2032" layer="1"/>
<wire x1="18.445" y1="8.412" x2="18.63" y2="8.412" width="0.2032" layer="1"/>
<wire x1="17.78" y1="6.223" x2="17.78" y2="7.747" width="0.2032" layer="1"/>
<wire x1="17.78" y1="7.747" x2="18.445" y2="8.412" width="0.2032" layer="1"/>
<contactref element="Q2" pad="2"/>
<contactref element="Q2" pad="5"/>
<wire x1="13.173" y1="10.39" x2="13.173" y2="11.903" width="0.2032" layer="1"/>
<wire x1="13.462" y1="12.192" x2="13.832" y2="12.192" width="0.2032" layer="1"/>
<wire x1="13.173" y1="11.903" x2="13.3" y2="12.03" width="0.2032" layer="1"/>
<wire x1="13.3" y1="12.03" x2="13.462" y2="12.192" width="0.2032" layer="1"/>
<wire x1="14.997" y1="12.573" x2="14.467" y2="12.573" width="0.2032" layer="1"/>
<wire x1="14.467" y1="12.573" x2="14.086" y2="12.192" width="0.2032" layer="1"/>
<wire x1="13.832" y1="12.192" x2="14.086" y2="12.192" width="0.2032" layer="1"/>
<wire x1="15.632" y1="12.192" x2="15.378" y2="12.192" width="0.2032" layer="1"/>
<wire x1="15.378" y1="12.192" x2="14.997" y2="12.573" width="0.2032" layer="1"/>
<contactref element="R2" pad="8"/>
<contactref element="R2" pad="6"/>
<wire x1="17.9406" y1="8.9164" x2="18.445" y2="8.412" width="0.2032" layer="1"/>
<wire x1="10.564" y1="9.89" x2="10.2235" y2="9.5495" width="0.2032" layer="1"/>
<wire x1="9.779" y1="9.5495" x2="10.2235" y2="9.5495" width="0.2032" layer="1"/>
<wire x1="10.564" y1="9.89" x2="11.073" y2="9.89" width="0.2032" layer="1"/>
<contactref element="R4" pad="1"/>
<wire x1="18.3252" y1="13.238" x2="17.771" y2="13.7922" width="0.2032" layer="1"/>
<wire x1="5.461" y1="13.296" x2="6.924" y2="11.833" width="0.2032" layer="1"/>
<wire x1="7.073" y1="10.16" x2="6.924" y2="10.309" width="0.2032" layer="1"/>
<wire x1="6.924" y1="10.309" x2="6.924" y2="10.287" width="0.2032" layer="1"/>
<wire x1="6.924" y1="11.811" x2="6.924" y2="10.309" width="0.2032" layer="1"/>
<wire x1="7.5565" y1="10.16" x2="7.073" y2="10.16" width="0.2032" layer="1"/>
<wire x1="6.924" y1="11.833" x2="6.924" y2="11.811" width="0.2032" layer="1"/>
<wire x1="5.461" y1="13.296" x2="5.08" y2="13.677" width="0.2032" layer="1"/>
<wire x1="17.771" y1="16.011" x2="17.771" y2="13.7922" width="0.2032" layer="1"/>
<wire x1="5.08" y1="13.677" x2="5.08" y2="16.002" width="0.2032" layer="1"/>
<wire x1="5.08" y1="16.002" x2="5.969" y2="16.891" width="0.2032" layer="1"/>
<wire x1="5.969" y1="16.891" x2="12.954" y2="16.891" width="0.2032" layer="1"/>
<wire x1="12.954" y1="16.891" x2="16.891" y2="16.891" width="0.2032" layer="1"/>
<wire x1="16.891" y1="16.891" x2="17.771" y2="16.011" width="0.2032" layer="1"/>
<wire x1="13.3" y1="12.03" x2="13.3" y2="14.005" width="0.2032" layer="1"/>
<wire x1="12.8016" y1="14.5034" x2="12.8016" y2="16.7386" width="0.2032" layer="1"/>
<wire x1="13.3" y1="14.005" x2="12.8016" y2="14.5034" width="0.2032" layer="1"/>
<wire x1="12.8016" y1="16.7386" x2="12.954" y2="16.891" width="0.2032" layer="1"/>
<wire x1="8.89" y1="2.54" x2="8.89" y2="3.556" width="0.2032" layer="16"/>
<wire x1="7.620003125" y1="4.82599375" x2="8.89" y2="3.556" width="0.2032" layer="16"/>
<wire x1="7.5565" y1="10.16" x2="7.620003125" y2="10.096496875" width="0.2032" layer="16"/>
<wire x1="7.620003125" y1="10.096496875" x2="7.620003125" y2="4.82599375" width="0.2032" layer="16"/>
<via x="7.5565" y="10.16" extent="1-16" drill="0.3937"/>
<wire x1="18.064" y1="13.238" x2="18.3252" y2="13.238" width="0.2032" layer="1"/>
<wire x1="16.93" y1="5.812" x2="16.607" y2="5.812" width="0.2032" layer="1"/>
<wire x1="16.607" y1="5.812" x2="16.51" y2="5.715" width="0.2032" layer="1"/>
<wire x1="16.93" y1="5.812" x2="17.369" y2="5.812" width="0.2032" layer="1"/>
<wire x1="17.9406" y1="9.81276875" x2="17.3926" y2="10.36076875" width="0.2032" layer="1"/>
<wire x1="17.3926" y1="10.36076875" x2="17.3926" y2="11.8745" width="0.2032" layer="1"/>
<wire x1="17.3926" y1="11.8745" x2="17.3926" y2="12.5666" width="0.2032" layer="1"/>
<wire x1="17.3926" y1="12.5666" x2="18.064" y2="13.238" width="0.2032" layer="1"/>
<wire x1="17.9406" y1="8.9164" x2="17.9406" y2="9.81276875" width="0.2032" layer="1"/>
<wire x1="18.3252" y1="11.538" x2="17.7291" y2="11.538" width="0.2032" layer="1"/>
<wire x1="17.7291" y1="11.538" x2="17.3926" y2="11.8745" width="0.2032" layer="1"/>
<contactref element="R1" pad="1"/>
<wire x1="9.2465" y1="5.207" x2="9.2465" y2="2.8965" width="0.254" layer="1"/>
<wire x1="9.2465" y1="2.8965" x2="8.89" y2="2.54" width="0.254" layer="1"/>
<wire x1="14.086" y1="5.715" x2="14.6601125" y2="5.715" width="0.2032" layer="1"/>
<wire x1="14.6601125" y1="5.715" x2="14.7045625" y2="5.75945" width="0.2032" layer="1"/>
<wire x1="14.7045625" y1="5.75945" x2="15.3944375" y2="5.75945" width="0.2032" layer="1"/>
<wire x1="15.3944375" y1="5.75945" x2="15.4388875" y2="5.715" width="0.2032" layer="1"/>
<wire x1="15.4388875" y1="5.715" x2="15.886" y2="5.715" width="0.2032" layer="1"/>
</signal>
<signal name="SDO/ADR">
<contactref element="JP3" pad="2"/>
<contactref element="Q2" pad="3"/>
<wire x1="15.632" y1="12.942" x2="15.32155" y2="13.25245" width="0.2032" layer="1"/>
<wire x1="15.32155" y1="13.25245" x2="14.7858375" y2="13.25245" width="0.2032" layer="1"/>
<via x="14.7858375" y="13.25245" extent="1-16" drill="0.3937"/>
<wire x1="16.51" y1="14.1511125" x2="16.48294375" y2="14.12405625" width="0.2032" layer="16"/>
<wire x1="16.48294375" y1="14.12405625" x2="15.6113375" y2="13.25245" width="0.2032" layer="16"/>
<wire x1="14.7858375" y1="13.25245" x2="15.6113375" y2="13.25245" width="0.2032" layer="16"/>
<wire x1="16.51" y1="14.1511125" x2="16.51" y2="15.24" width="0.2032" layer="16"/>
<contactref element="R2" pad="2"/>
<wire x1="16.33113125" y1="12.338" x2="16.6252" y2="12.338" width="0.2032" layer="1"/>
<wire x1="15.632" y1="12.942" x2="15.6486" y2="12.9254" width="0.2032" layer="1"/>
<wire x1="15.6486" y1="12.9254" x2="15.74373125" y2="12.9254" width="0.2032" layer="1"/>
<wire x1="15.74373125" y1="12.9254" x2="16.33113125" y2="12.338" width="0.2032" layer="1"/>
<contactref element="SJ1" pad="1"/>
<wire x1="17.78" y1="12.827" x2="16.48294375" y2="14.12405625" width="0.2032" layer="16"/>
</signal>
<signal name="N$1">
<contactref element="R4" pad="2"/>
<contactref element="D1" pad="A"/>
<wire x1="4.306" y1="12.573" x2="5.283" y2="11.596" width="0.2032" layer="1"/>
<wire x1="5.283" y1="11.596" x2="5.461" y2="11.596" width="0.2032" layer="1"/>
</signal>
<signal name="INT_1.8V">
<contactref element="U$21" pad="12"/>
<contactref element="Q2" pad="1"/>
<contactref element="R2" pad="3"/>
<wire x1="16.6252" y1="11.538" x2="16.5292" y2="11.442" width="0.2032" layer="1"/>
<wire x1="16.5292" y1="11.442" x2="15.632" y2="11.442" width="0.2032" layer="1"/>
<wire x1="11.573" y1="10.39" x2="10.692" y2="10.39" width="0.1778" layer="1"/>
<wire x1="10.692" y1="10.39" x2="10.414" y2="10.668" width="0.1778" layer="1"/>
<via x="10.414" y="10.668" extent="1-16" drill="0.3937"/>
<wire x1="13.208" y1="10.922" x2="10.8585" y2="10.922" width="0.1778" layer="16"/>
<wire x1="10.8585" y1="10.922" x2="10.6045" y2="10.668" width="0.1778" layer="16"/>
<wire x1="10.414" y1="10.668" x2="10.6045" y2="10.668" width="0.1778" layer="16"/>
<wire x1="13.208" y1="10.922" x2="14.4145" y2="9.7155" width="0.1778" layer="16"/>
<wire x1="14.4145" y1="9.7155" x2="15.24" y2="9.7155" width="0.1778" layer="16"/>
<wire x1="15.24" y1="9.7155" x2="15.6845" y2="10.16" width="0.1778" layer="16"/>
<wire x1="15.6845" y1="10.16" x2="15.6845" y2="10.91495" width="0.1778" layer="16"/>
<wire x1="15.6845" y1="10.91495" x2="14.732" y2="11.86745" width="0.1778" layer="16"/>
<via x="14.732" y="11.86745" extent="1-16" drill="0.3937"/>
<wire x1="15.632" y1="11.442" x2="15.47495" y2="11.442" width="0.1778" layer="1"/>
<wire x1="15.47495" y1="11.442" x2="15.0495" y2="11.86745" width="0.1778" layer="1"/>
<wire x1="14.732" y1="11.86745" x2="15.0495" y2="11.86745" width="0.1778" layer="1"/>
</signal>
</signals>
<mfgpreviewcolors>
<mfgpreviewcolor name="soldermaskcolor" color="0xC80000FF"/>
<mfgpreviewcolor name="silkscreencolor" color="0xFFFEFEFE"/>
<mfgpreviewcolor name="backgroundcolor" color="0xFF282828"/>
<mfgpreviewcolor name="coppercolor" color="0xFFFFBF00"/>
<mfgpreviewcolor name="substratecolor" color="0xFF786E46"/>
</mfgpreviewcolors>
<errors>
<approved hash="6,16,df1297198264ff2a"/>
</errors>
</board>
</drawing>
<compatibility>
<note version="6.3" minversion="6.2.2" severity="warning">
Since Version 6.2.2 text objects can contain more than one line,
which will not be processed correctly with this version.
</note>
</compatibility>
</eagle>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/gu_lan/Adafruit-ICM20948-PCB.git
git@gitee.com:gu_lan/Adafruit-ICM20948-PCB.git
gu_lan
Adafruit-ICM20948-PCB
Adafruit-ICM20948-PCB
master

搜索帮助