CamBox_RV1106.PrjPcb 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780
  1. [Design]
  2. Version=1.0
  3. HierarchyMode=0
  4. ChannelRoomNamingStyle=0
  5. ReleasesFolder=
  6. ChannelDesignatorFormatString=$Component_$RoomName
  7. ChannelRoomLevelSeperator=_
  8. OpenOutputs=1
  9. ArchiveProject=0
  10. TimestampOutput=0
  11. SeparateFolders=0
  12. TemplateLocationPath=
  13. PinSwapBy_Netlabel=1
  14. PinSwapBy_Pin=1
  15. AllowPortNetNames=0
  16. AllowSheetEntryNetNames=1
  17. AppendSheetNumberToLocalNets=0
  18. NetlistSinglePinNets=0
  19. DefaultConfiguration=Sources
  20. UserID=0xFFFFFFFF
  21. DefaultPcbProtel=1
  22. DefaultPcbPcad=0
  23. ReorderDocumentsOnCompile=1
  24. NameNetsHierarchically=0
  25. PowerPortNamesTakePriority=0
  26. AutoSheetNumbering=0
  27. AutoCrossReferences=0
  28. NewIndexingOfSheetSymbols=0
  29. PushECOToAnnotationFile=1
  30. DItemRevisionGUID=
  31. ReportSuppressedErrorsInMessages=0
  32. FSMCodingStyle=eFMSDropDownList_OneProcess
  33. FSMEncodingStyle=eFMSDropDownList_OneHot
  34. IsProjectConflictPreventionWarningsEnabled=1
  35. IsVirtualBomDocumentRemoved=0
  36. OutputPath=
  37. LogFolderPath=
  38. ManagedProjectGUID=
  39. IncludeDesignInRelease=0
  40. CrossRefSheetStyle=1
  41. CrossRefLocationStyle=1
  42. CrossRefPorts=3
  43. CrossRefCrossSheets=1
  44. CrossRefSheetEntries=0
  45. CrossRefFollowFromMainSettings=1
  46. [Preferences]
  47. PrefsVaultGUID=
  48. PrefsRevisionGUID=
  49. [Document1]
  50. DocumentPath=Block_Diagram.SchDoc
  51. AnnotationEnabled=1
  52. AnnotateStartValue=1
  53. AnnotationIndexControlEnabled=0
  54. AnnotateSuffix=
  55. AnnotateScope=All
  56. AnnotateOrder=15
  57. DoLibraryUpdate=1
  58. DoDatabaseUpdate=1
  59. ClassGenCCAutoEnabled=1
  60. ClassGenCCAutoRoomEnabled=0
  61. ClassGenNCAutoScope=None
  62. DItemRevisionGUID=
  63. GenerateClassCluster=0
  64. DocumentUniqueId=BCYXRSKT
  65. [Document2]
  66. DocumentPath=POWER.SchDoc
  67. AnnotationEnabled=1
  68. AnnotateStartValue=1
  69. AnnotationIndexControlEnabled=0
  70. AnnotateSuffix=
  71. AnnotateScope=All
  72. AnnotateOrder=0
  73. DoLibraryUpdate=1
  74. DoDatabaseUpdate=1
  75. ClassGenCCAutoEnabled=1
  76. ClassGenCCAutoRoomEnabled=0
  77. ClassGenNCAutoScope=None
  78. DItemRevisionGUID=
  79. GenerateClassCluster=0
  80. DocumentUniqueId=YZVKBUMY
  81. [Document3]
  82. DocumentPath=CORE_RV1106.SchDoc
  83. AnnotationEnabled=1
  84. AnnotateStartValue=1
  85. AnnotationIndexControlEnabled=0
  86. AnnotateSuffix=
  87. AnnotateScope=All
  88. AnnotateOrder=14
  89. DoLibraryUpdate=1
  90. DoDatabaseUpdate=1
  91. ClassGenCCAutoEnabled=1
  92. ClassGenCCAutoRoomEnabled=0
  93. ClassGenNCAutoScope=None
  94. DItemRevisionGUID=
  95. GenerateClassCluster=0
  96. DocumentUniqueId=TYDQGRHT
  97. [Document4]
  98. DocumentPath=AUDIO.SchDoc
  99. AnnotationEnabled=1
  100. AnnotateStartValue=1
  101. AnnotationIndexControlEnabled=0
  102. AnnotateSuffix=
  103. AnnotateScope=All
  104. AnnotateOrder=2
  105. DoLibraryUpdate=1
  106. DoDatabaseUpdate=1
  107. ClassGenCCAutoEnabled=1
  108. ClassGenCCAutoRoomEnabled=0
  109. ClassGenNCAutoScope=None
  110. DItemRevisionGUID=
  111. GenerateClassCluster=0
  112. DocumentUniqueId=FQUWCDSP
  113. [Document5]
  114. DocumentPath=MCU_RX130-140.SchDoc
  115. AnnotationEnabled=1
  116. AnnotateStartValue=1
  117. AnnotationIndexControlEnabled=0
  118. AnnotateSuffix=
  119. AnnotateScope=All
  120. AnnotateOrder=16
  121. DoLibraryUpdate=1
  122. DoDatabaseUpdate=1
  123. ClassGenCCAutoEnabled=1
  124. ClassGenCCAutoRoomEnabled=0
  125. ClassGenNCAutoScope=None
  126. DItemRevisionGUID=
  127. GenerateClassCluster=0
  128. DocumentUniqueId=UGELCSZG
  129. [Document6]
  130. DocumentPath=CAMERA.SchDoc
  131. AnnotationEnabled=1
  132. AnnotateStartValue=1
  133. AnnotationIndexControlEnabled=0
  134. AnnotateSuffix=
  135. AnnotateScope=All
  136. AnnotateOrder=3
  137. DoLibraryUpdate=1
  138. DoDatabaseUpdate=1
  139. ClassGenCCAutoEnabled=1
  140. ClassGenCCAutoRoomEnabled=0
  141. ClassGenNCAutoScope=None
  142. DItemRevisionGUID=
  143. GenerateClassCluster=0
  144. DocumentUniqueId=CPLWNQMC
  145. [Document7]
  146. DocumentPath=UART.SchDoc
  147. AnnotationEnabled=1
  148. AnnotateStartValue=1
  149. AnnotationIndexControlEnabled=0
  150. AnnotateSuffix=
  151. AnnotateScope=All
  152. AnnotateOrder=4
  153. DoLibraryUpdate=1
  154. DoDatabaseUpdate=1
  155. ClassGenCCAutoEnabled=1
  156. ClassGenCCAutoRoomEnabled=0
  157. ClassGenNCAutoScope=None
  158. DItemRevisionGUID=
  159. GenerateClassCluster=0
  160. DocumentUniqueId=IBCFWMTB
  161. [Document8]
  162. DocumentPath=Function.SchDoc
  163. AnnotationEnabled=1
  164. AnnotateStartValue=1
  165. AnnotationIndexControlEnabled=0
  166. AnnotateSuffix=
  167. AnnotateScope=All
  168. AnnotateOrder=5
  169. DoLibraryUpdate=1
  170. DoDatabaseUpdate=1
  171. ClassGenCCAutoEnabled=1
  172. ClassGenCCAutoRoomEnabled=0
  173. ClassGenNCAutoScope=None
  174. DItemRevisionGUID=
  175. GenerateClassCluster=0
  176. DocumentUniqueId=XTFNUDHB
  177. [Document9]
  178. DocumentPath=TF.SchDoc
  179. AnnotationEnabled=1
  180. AnnotateStartValue=1
  181. AnnotationIndexControlEnabled=0
  182. AnnotateSuffix=
  183. AnnotateScope=All
  184. AnnotateOrder=6
  185. DoLibraryUpdate=1
  186. DoDatabaseUpdate=1
  187. ClassGenCCAutoEnabled=1
  188. ClassGenCCAutoRoomEnabled=0
  189. ClassGenNCAutoScope=None
  190. DItemRevisionGUID=
  191. GenerateClassCluster=0
  192. DocumentUniqueId=DYCPCOVH
  193. [Document10]
  194. DocumentPath=4G.SchDoc
  195. AnnotationEnabled=1
  196. AnnotateStartValue=1
  197. AnnotationIndexControlEnabled=0
  198. AnnotateSuffix=
  199. AnnotateScope=All
  200. AnnotateOrder=7
  201. DoLibraryUpdate=1
  202. DoDatabaseUpdate=1
  203. ClassGenCCAutoEnabled=1
  204. ClassGenCCAutoRoomEnabled=0
  205. ClassGenNCAutoScope=None
  206. DItemRevisionGUID=
  207. GenerateClassCluster=0
  208. DocumentUniqueId=HBTPIULA
  209. [Document11]
  210. DocumentPath=GPS.SchDoc
  211. AnnotationEnabled=1
  212. AnnotateStartValue=1
  213. AnnotationIndexControlEnabled=0
  214. AnnotateSuffix=
  215. AnnotateScope=All
  216. AnnotateOrder=8
  217. DoLibraryUpdate=1
  218. DoDatabaseUpdate=1
  219. ClassGenCCAutoEnabled=1
  220. ClassGenCCAutoRoomEnabled=0
  221. ClassGenNCAutoScope=None
  222. DItemRevisionGUID=
  223. GenerateClassCluster=0
  224. DocumentUniqueId=XBHZKGQY
  225. [Document12]
  226. DocumentPath=ETH.SchDoc
  227. AnnotationEnabled=1
  228. AnnotateStartValue=1
  229. AnnotationIndexControlEnabled=0
  230. AnnotateSuffix=
  231. AnnotateScope=All
  232. AnnotateOrder=9
  233. DoLibraryUpdate=1
  234. DoDatabaseUpdate=1
  235. ClassGenCCAutoEnabled=1
  236. ClassGenCCAutoRoomEnabled=0
  237. ClassGenNCAutoScope=None
  238. DItemRevisionGUID=
  239. GenerateClassCluster=0
  240. DocumentUniqueId=PURCMWXV
  241. [Document13]
  242. DocumentPath=INPUT.SchDoc
  243. AnnotationEnabled=1
  244. AnnotateStartValue=1
  245. AnnotationIndexControlEnabled=0
  246. AnnotateSuffix=
  247. AnnotateScope=All
  248. AnnotateOrder=10
  249. DoLibraryUpdate=1
  250. DoDatabaseUpdate=1
  251. ClassGenCCAutoEnabled=1
  252. ClassGenCCAutoRoomEnabled=0
  253. ClassGenNCAutoScope=None
  254. DItemRevisionGUID=
  255. GenerateClassCluster=0
  256. DocumentUniqueId=BCQXQIZB
  257. [Document14]
  258. DocumentPath=OUTPUT.SchDoc
  259. AnnotationEnabled=1
  260. AnnotateStartValue=1
  261. AnnotationIndexControlEnabled=0
  262. AnnotateSuffix=
  263. AnnotateScope=All
  264. AnnotateOrder=11
  265. DoLibraryUpdate=1
  266. DoDatabaseUpdate=1
  267. ClassGenCCAutoEnabled=1
  268. ClassGenCCAutoRoomEnabled=0
  269. ClassGenNCAutoScope=None
  270. DItemRevisionGUID=
  271. GenerateClassCluster=0
  272. DocumentUniqueId=QOXORCSF
  273. [Document15]
  274. DocumentPath=CONN.SchDoc
  275. AnnotationEnabled=1
  276. AnnotateStartValue=1
  277. AnnotationIndexControlEnabled=0
  278. AnnotateSuffix=
  279. AnnotateScope=All
  280. AnnotateOrder=13
  281. DoLibraryUpdate=1
  282. DoDatabaseUpdate=1
  283. ClassGenCCAutoEnabled=1
  284. ClassGenCCAutoRoomEnabled=0
  285. ClassGenNCAutoScope=None
  286. DItemRevisionGUID=
  287. GenerateClassCluster=0
  288. DocumentUniqueId=SAITEOPN
  289. [Document16]
  290. DocumentPath=CamBox_RV11061\CamBox_RV1106.PcbLib
  291. AnnotationEnabled=1
  292. AnnotateStartValue=1
  293. AnnotationIndexControlEnabled=0
  294. AnnotateSuffix=
  295. AnnotateScope=All
  296. AnnotateOrder=-1
  297. DoLibraryUpdate=1
  298. DoDatabaseUpdate=1
  299. ClassGenCCAutoEnabled=1
  300. ClassGenCCAutoRoomEnabled=1
  301. ClassGenNCAutoScope=None
  302. DItemRevisionGUID=
  303. GenerateClassCluster=0
  304. DocumentUniqueId=TCHWHPCA
  305. [Document17]
  306. DocumentPath=CamBox_RV11061\CamBox_RV1106.SCHLIB
  307. AnnotationEnabled=1
  308. AnnotateStartValue=1
  309. AnnotationIndexControlEnabled=0
  310. AnnotateSuffix=
  311. AnnotateScope=All
  312. AnnotateOrder=-1
  313. DoLibraryUpdate=1
  314. DoDatabaseUpdate=1
  315. ClassGenCCAutoEnabled=1
  316. ClassGenCCAutoRoomEnabled=1
  317. ClassGenNCAutoScope=None
  318. DItemRevisionGUID=
  319. GenerateClassCluster=0
  320. DocumentUniqueId=PJEWJJUC
  321. [Document18]
  322. DocumentPath=CamBox_RV1106.IntLib
  323. AnnotationEnabled=1
  324. AnnotateStartValue=1
  325. AnnotationIndexControlEnabled=0
  326. AnnotateSuffix=
  327. AnnotateScope=All
  328. AnnotateOrder=-1
  329. DoLibraryUpdate=1
  330. DoDatabaseUpdate=1
  331. ClassGenCCAutoEnabled=1
  332. ClassGenCCAutoRoomEnabled=1
  333. ClassGenNCAutoScope=None
  334. DItemRevisionGUID=
  335. GenerateClassCluster=0
  336. DocumentUniqueId=
  337. [Document19]
  338. DocumentPath=CamBox_RV1106.PcbDoc
  339. AnnotationEnabled=1
  340. AnnotateStartValue=1
  341. AnnotationIndexControlEnabled=0
  342. AnnotateSuffix=
  343. AnnotateScope=All
  344. AnnotateOrder=-1
  345. DoLibraryUpdate=1
  346. DoDatabaseUpdate=1
  347. ClassGenCCAutoEnabled=1
  348. ClassGenCCAutoRoomEnabled=1
  349. ClassGenNCAutoScope=None
  350. DItemRevisionGUID=
  351. GenerateClassCluster=0
  352. DocumentUniqueId=DNIDONKW
  353. [Document20]
  354. DocumentPath=MECHANICALS.SchDoc
  355. AnnotationEnabled=1
  356. AnnotateStartValue=1
  357. AnnotationIndexControlEnabled=0
  358. AnnotateSuffix=
  359. AnnotateScope=All
  360. AnnotateOrder=17
  361. DoLibraryUpdate=1
  362. DoDatabaseUpdate=1
  363. ClassGenCCAutoEnabled=1
  364. ClassGenCCAutoRoomEnabled=0
  365. ClassGenNCAutoScope=None
  366. DItemRevisionGUID=
  367. GenerateClassCluster=0
  368. DocumentUniqueId=ECTNIVSY
  369. [Document21]
  370. DocumentPath=CamBox_RV1106.OutJob
  371. AnnotationEnabled=1
  372. AnnotateStartValue=1
  373. AnnotationIndexControlEnabled=0
  374. AnnotateSuffix=
  375. AnnotateScope=All
  376. AnnotateOrder=-1
  377. DoLibraryUpdate=1
  378. DoDatabaseUpdate=1
  379. ClassGenCCAutoEnabled=1
  380. ClassGenCCAutoRoomEnabled=1
  381. ClassGenNCAutoScope=None
  382. DItemRevisionGUID=
  383. GenerateClassCluster=0
  384. DocumentUniqueId=
  385. [Document22]
  386. DocumentPath=CamBox_RV1106.PCBDwf
  387. AnnotationEnabled=1
  388. AnnotateStartValue=1
  389. AnnotationIndexControlEnabled=0
  390. AnnotateSuffix=
  391. AnnotateScope=All
  392. AnnotateOrder=-1
  393. DoLibraryUpdate=1
  394. DoDatabaseUpdate=1
  395. ClassGenCCAutoEnabled=1
  396. ClassGenCCAutoRoomEnabled=1
  397. ClassGenNCAutoScope=None
  398. DItemRevisionGUID=
  399. GenerateClassCluster=0
  400. DocumentUniqueId=
  401. [ProjectVariant1]
  402. UniqueID=E3D06398-A058-42DC-91D4-E4FCEEED59B6
  403. Description=CameraBox
  404. AllowFabrication=0
  405. ParameterCount=4
  406. VariationCount=23
  407. Variation1=Designator=R28|UniqueId=\PGKVMOGM|Kind=1|AlternatePart=
  408. Variation2=Designator=R32|UniqueId=\EHOLIYFG|Kind=1|AlternatePart=
  409. Variation3=Designator=C109|UniqueId=\HMEZJDJO|Kind=1|AlternatePart=
  410. Variation4=Designator=C114|UniqueId=\RSCQUYGB|Kind=1|AlternatePart=
  411. Variation5=Designator=C187|UniqueId=\WUOFJAQV|Kind=1|AlternatePart=
  412. Variation6=Designator=R117|UniqueId=\YWMIUTDW|Kind=1|AlternatePart=
  413. Variation7=Designator=R118|UniqueId=\OYEEWPHO|Kind=1|AlternatePart=
  414. Variation8=Designator=C163|UniqueId=\FLDWJTMA|Kind=1|AlternatePart=
  415. Variation9=Designator=C164|UniqueId=\RLEMRSVZ|Kind=1|AlternatePart=
  416. Variation10=Designator=R160|UniqueId=\GTVIZXDC|Kind=1|AlternatePart=
  417. Variation11=Designator=R174|UniqueId=\BXITKBOI|Kind=1|AlternatePart=
  418. Variation12=Designator=R176|UniqueId=\ZWGPDMSA|Kind=1|AlternatePart=
  419. Variation13=Designator=R177|UniqueId=\NCLNTMOM|Kind=1|AlternatePart=
  420. Variation14=Designator=R180|UniqueId=\OZQHEAGH|Kind=1|AlternatePart=
  421. Variation15=Designator=R184|UniqueId=\FAABKJMQ|Kind=1|AlternatePart=
  422. Variation16=Designator=R183|UniqueId=\CBERASUA|Kind=1|AlternatePart=
  423. Variation17=Designator=R170|UniqueId=\KPAKVTZV|Kind=1|AlternatePart=
  424. Variation18=Designator=R225|UniqueId=\HTBUCSTY|Kind=1|AlternatePart=
  425. Variation19=Designator=R?|UniqueId=\SYIFLMHS|Kind=1|AlternatePart=
  426. Variation20=Designator=D34|UniqueId=\AJSNUYRF|Kind=1|AlternatePart=
  427. Variation21=Designator=C147|UniqueId=\RGPLURCD|Kind=1|AlternatePart=
  428. Variation22=Designator=R?|UniqueId=\JGFXGPCO|Kind=1|AlternatePart=
  429. Variation23=Designator=R?|UniqueId=\SWISXZIF|Kind=1|AlternatePart=
  430. ParamVariationCount=0
  431. [Parameter2_1]
  432. Name=author
  433. Value=Hainv
  434. [Parameter2_2]
  435. Name=Cus
  436. Value=Aithings
  437. [Parameter2_3]
  438. Name=des
  439. Value=Cambox_2026
  440. [Parameter2_4]
  441. Name=ver
  442. Value=4.0
  443. [GeneratedDocument1]
  444. DocumentPath=https://d.docs.live.net/e2dddec8eed3f8e8/Fiducialx_Documents/_2Fiducial project/Cambox_v5.1_AIthings/_DesignFiles/Project Outputs for CamBox_RV1106/CCA/CCA/BOM/Bill of Materials-CamBox_RV1106.xlsx
  445. DItemRevisionGUID=
  446. [GeneratedDocument2]
  447. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\NC Drill\CamBox_RV1106-RoundHoles.TXT
  448. DItemRevisionGUID=
  449. [GeneratedDocument3]
  450. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\NC Drill\CamBox_RV1106-RoundHoles.TXT
  451. DItemRevisionGUID=
  452. [GeneratedDocument4]
  453. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\NC Drill\CamBox_RV1106-SlotHoles.TXT
  454. DItemRevisionGUID=
  455. [GeneratedDocument5]
  456. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\NC Drill\CamBox_RV1106-SlotHoles.TXT
  457. DItemRevisionGUID=
  458. [GeneratedDocument6]
  459. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\NC Drill\CamBox_RV1106.DRR
  460. DItemRevisionGUID=
  461. [GeneratedDocument7]
  462. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\NC Drill\CamBox_RV1106.DRR
  463. DItemRevisionGUID=
  464. [GeneratedDocument8]
  465. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.EXTREP
  466. DItemRevisionGUID=
  467. [GeneratedDocument9]
  468. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.EXTREP
  469. DItemRevisionGUID=
  470. [GeneratedDocument10]
  471. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GBL
  472. DItemRevisionGUID=
  473. [GeneratedDocument11]
  474. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GBL
  475. DItemRevisionGUID=
  476. [GeneratedDocument12]
  477. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GBO
  478. DItemRevisionGUID=
  479. [GeneratedDocument13]
  480. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GBO
  481. DItemRevisionGUID=
  482. [GeneratedDocument14]
  483. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GBP
  484. DItemRevisionGUID=
  485. [GeneratedDocument15]
  486. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GBP
  487. DItemRevisionGUID=
  488. [GeneratedDocument16]
  489. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GBS
  490. DItemRevisionGUID=
  491. [GeneratedDocument17]
  492. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GBS
  493. DItemRevisionGUID=
  494. [GeneratedDocument18]
  495. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GD1
  496. DItemRevisionGUID=
  497. [GeneratedDocument19]
  498. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GD1
  499. DItemRevisionGUID=
  500. [GeneratedDocument20]
  501. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GG1
  502. DItemRevisionGUID=
  503. [GeneratedDocument21]
  504. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GG1
  505. DItemRevisionGUID=
  506. [GeneratedDocument22]
  507. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GKO
  508. DItemRevisionGUID=
  509. [GeneratedDocument23]
  510. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GKO
  511. DItemRevisionGUID=
  512. [GeneratedDocument24]
  513. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GM1
  514. DItemRevisionGUID=
  515. [GeneratedDocument25]
  516. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GM1
  517. DItemRevisionGUID=
  518. [GeneratedDocument26]
  519. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GM13
  520. DItemRevisionGUID=
  521. [GeneratedDocument27]
  522. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GM13
  523. DItemRevisionGUID=
  524. [GeneratedDocument28]
  525. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GM14
  526. DItemRevisionGUID=
  527. [GeneratedDocument29]
  528. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GM14
  529. DItemRevisionGUID=
  530. [GeneratedDocument30]
  531. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GPB
  532. DItemRevisionGUID=
  533. [GeneratedDocument31]
  534. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GPB
  535. DItemRevisionGUID=
  536. [GeneratedDocument32]
  537. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GPT
  538. DItemRevisionGUID=
  539. [GeneratedDocument33]
  540. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GPT
  541. DItemRevisionGUID=
  542. [GeneratedDocument34]
  543. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GTL
  544. DItemRevisionGUID=
  545. [GeneratedDocument35]
  546. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GTL
  547. DItemRevisionGUID=
  548. [GeneratedDocument36]
  549. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GTO
  550. DItemRevisionGUID=
  551. [GeneratedDocument37]
  552. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GTO
  553. DItemRevisionGUID=
  554. [GeneratedDocument38]
  555. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GTP
  556. DItemRevisionGUID=
  557. [GeneratedDocument39]
  558. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GTP
  559. DItemRevisionGUID=
  560. [GeneratedDocument40]
  561. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.GTS
  562. DItemRevisionGUID=
  563. [GeneratedDocument41]
  564. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.GTS
  565. DItemRevisionGUID=
  566. [GeneratedDocument42]
  567. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\NC Drill\CamBox_RV1106.LDP
  568. DItemRevisionGUID=
  569. [GeneratedDocument43]
  570. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\NC Drill\CamBox_RV1106.LDP
  571. DItemRevisionGUID=
  572. [GeneratedDocument44]
  573. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106.REP
  574. DItemRevisionGUID=
  575. [GeneratedDocument45]
  576. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Gerber\CamBox_RV1106.REP
  577. DItemRevisionGUID=
  578. [GeneratedDocument46]
  579. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Report Board Stack\CamBox_RV1106.xls
  580. DItemRevisionGUID=
  581. [GeneratedDocument47]
  582. DocumentPath=Project Outputs for CamBox_RV1106\Design Rule Check - CamBox_RV1106.html
  583. DItemRevisionGUID=
  584. [GeneratedDocument48]
  585. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Pick Place\Pick Place for CamBox_RV1106.csv
  586. DItemRevisionGUID=
  587. [GeneratedDocument49]
  588. DocumentPath=Project Outputs for CamBox_RV1106\CCA\CCA\Pick Place\Pick Place for CamBox_RV1106.txt
  589. DItemRevisionGUID=
  590. [Configuration1]
  591. Name=Sources
  592. ParameterCount=0
  593. ConstraintFileCount=0
  594. ReleaseItemId=
  595. Variant=[No Variations]
  596. OutputJobsCount=0
  597. ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2
  598. ConfigurationType=Source
  599. [Generic_SmartPDF]
  600. AutoOpenFile=-1
  601. AutoOpenOutJob=-1
  602. [Generic_SmartPDFSettings]
  603. ProjectMode=-1
  604. ZoomPrecision=50
  605. AddNetsInformation=-1
  606. AddNetPins=-1
  607. AddNetNetLabels=-1
  608. AddNetPorts=-1
  609. ShowComponentParameters=-1
  610. GlobalBookmarks=0
  611. ExportBOM=0
  612. TemplateFilename=Board Stack Report.XLT
  613. TemplateStoreRelative=-1
  614. PCB_PrintColor=1
  615. SCH_PrintColor=0
  616. PrintQuality=-4
  617. SCH_ShowNoErc=-1
  618. SCH_ShowParameter=-1
  619. SCH_ShowProbes=-1
  620. SCH_ShowBlankets=-1
  621. SCH_NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle
  622. SCH_ShowNote=-1
  623. SCH_ShowNoteCollapsed=-1
  624. Wir_PrintColor=0
  625. Ldr_PrintColor=0
  626. SCH_ExpandLogicalToPhysical=-1
  627. SCH_VariantName=[No Variations]
  628. SCH_ExpandComponentDesignators=-1
  629. SCH_ExpandNetlabels=-1
  630. SCH_ExpandPorts=-1
  631. SCH_ExpandSheetNumber=-1
  632. SCH_ExpandDocumentNumber=-1
  633. SCH_HasExpandLogicalToPhysicalSheets=-1
  634. SaveSettingsToOutJob=-1
  635. [Generic_EDE]
  636. OutputDir=
  637. [OutputGroup1]
  638. Name=Netlist Outputs
  639. Description=
  640. TargetPrinter=Microsoft Print to PDF
  641. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  642. OutputType1=CadnetixNetlist
  643. OutputName1=Cadnetix Netlist
  644. OutputDocumentPath1=
  645. OutputVariantName1=
  646. OutputDefault1=0
  647. OutputType2=CalayNetlist
  648. OutputName2=Calay Netlist
  649. OutputDocumentPath2=
  650. OutputVariantName2=
  651. OutputDefault2=0
  652. OutputType3=EDIF
  653. OutputName3=EDIF for PCB
  654. OutputDocumentPath3=
  655. OutputVariantName3=
  656. OutputDefault3=0
  657. OutputType4=EESofNetlist
  658. OutputName4=EESof Netlist
  659. OutputDocumentPath4=
  660. OutputVariantName4=
  661. OutputDefault4=0
  662. OutputType5=IntergraphNetlist
  663. OutputName5=Intergraph Netlist
  664. OutputDocumentPath5=
  665. OutputVariantName5=
  666. OutputDefault5=0
  667. OutputType6=MentorBoardStationNetlist
  668. OutputName6=Mentor BoardStation Netlist
  669. OutputDocumentPath6=
  670. OutputVariantName6=
  671. OutputDefault6=0
  672. OutputType7=MultiWire
  673. OutputName7=MultiWire
  674. OutputDocumentPath7=
  675. OutputVariantName7=
  676. OutputDefault7=0
  677. OutputType8=OrCadPCB2Netlist
  678. OutputName8=Orcad/PCB2 Netlist
  679. OutputDocumentPath8=
  680. OutputVariantName8=
  681. OutputDefault8=0
  682. OutputType9=PADSNetlist
  683. OutputName9=PADS ASCII Netlist
  684. OutputDocumentPath9=
  685. OutputVariantName9=
  686. OutputDefault9=0
  687. OutputType10=Pcad
  688. OutputName10=Pcad for PCB
  689. OutputDocumentPath10=
  690. OutputVariantName10=
  691. OutputDefault10=0
  692. OutputType11=PCADNetlist
  693. OutputName11=PCAD Netlist
  694. OutputDocumentPath11=
  695. OutputVariantName11=
  696. OutputDefault11=0
  697. OutputType12=PCADnltNetlist
  698. OutputName12=PCADnlt Netlist
  699. OutputDocumentPath12=
  700. OutputVariantName12=
  701. OutputDefault12=0
  702. OutputType13=Protel2Netlist
  703. OutputName13=Protel2 Netlist
  704. OutputDocumentPath13=
  705. OutputVariantName13=
  706. OutputDefault13=0
  707. OutputType14=ProtelNetlist
  708. OutputName14=Protel
  709. OutputDocumentPath14=
  710. OutputVariantName14=
  711. OutputDefault14=0
  712. OutputType15=RacalNetlist
  713. OutputName15=Racal Netlist
  714. OutputDocumentPath15=
  715. OutputVariantName15=
  716. OutputDefault15=0
  717. OutputType16=RINFNetlist
  718. OutputName16=RINF Netlist
  719. OutputDocumentPath16=
  720. OutputVariantName16=
  721. OutputDefault16=0
  722. OutputType17=SciCardsNetlist
  723. OutputName17=SciCards Netlist
  724. OutputDocumentPath17=
  725. OutputVariantName17=
  726. OutputDefault17=0
  727. OutputType18=TangoNetlist
  728. OutputName18=Tango Netlist
  729. OutputDocumentPath18=
  730. OutputVariantName18=
  731. OutputDefault18=0
  732. OutputType19=TelesisNetlist
  733. OutputName19=Telesis Netlist
  734. OutputDocumentPath19=
  735. OutputVariantName19=
  736. OutputDefault19=0
  737. OutputType20=WireListNetlist
  738. OutputName20=WireList Netlist
  739. OutputDocumentPath20=
  740. OutputVariantName20=
  741. OutputDefault20=0
  742. OutputType21=XSpiceNetlist
  743. OutputName21=Mixed Sim Netlist
  744. OutputDocumentPath21=
  745. OutputVariantName21=
  746. OutputDefault21=0
  747. [OutputGroup2]
  748. Name=Simulator Outputs
  749. Description=
  750. TargetPrinter=Microsoft Print to PDF
  751. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  752. OutputType1=AdvSimNetlist
  753. OutputName1=Mixed Sim
  754. OutputDocumentPath1=
  755. OutputVariantName1=
  756. OutputDefault1=0
  757. [OutputGroup3]
  758. Name=Documentation Outputs
  759. Description=
  760. TargetPrinter=Virtual Printer
  761. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=0
  762. OutputType1=Composite
  763. OutputName1=Composite Drawing
  764. OutputDocumentPath1=
  765. OutputVariantName1=[No Variations]
  766. OutputDefault1=0
  767. PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  768. OutputType2=PCB 3D Print
  769. OutputName2=PCB 3D Print
  770. OutputDocumentPath2=
  771. OutputVariantName2=[No Variations]
  772. OutputDefault2=0
  773. PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  774. OutputType3=PCB 3D Video
  775. OutputName3=PCB 3D Video
  776. OutputDocumentPath3=
  777. OutputVariantName3=[No Variations]
  778. OutputDefault3=0
  779. PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  780. OutputType4=PCB Print
  781. OutputName4=PCB Prints
  782. OutputDocumentPath4=
  783. OutputVariantName4=[No Variations]
  784. OutputDefault4=0
  785. PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  786. OutputType5=PCBDrawing
  787. OutputName5=Draftsman
  788. OutputDocumentPath5=
  789. OutputVariantName5=[No Variations]
  790. OutputDefault5=0
  791. PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  792. OutputType6=PCBLIB Print
  793. OutputName6=PCBLIB Prints
  794. OutputDocumentPath6=
  795. OutputVariantName6=[No Variations]
  796. OutputDefault6=0
  797. PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  798. OutputType7=PDF3D
  799. OutputName7=PDF3D
  800. OutputDocumentPath7=
  801. OutputVariantName7=[No Variations]
  802. OutputDefault7=0
  803. PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  804. OutputType8=PDF3D MBA
  805. OutputName8=PDF3D MBA
  806. OutputDocumentPath8=
  807. OutputVariantName8=
  808. OutputDefault8=0
  809. PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  810. OutputType9=Report Print
  811. OutputName9=Report Prints
  812. OutputDocumentPath9=
  813. OutputVariantName9=
  814. OutputDefault9=0
  815. PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  816. OutputType10=Schematic Print
  817. OutputName10=Schematic Prints
  818. OutputDocumentPath10=
  819. OutputVariantName10=
  820. OutputDefault10=0
  821. PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=0.94|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=0|PaperKind=Letter|PaperIndex=1
  822. Configuration10_Name1=OutputConfigurationParameter1
  823. Configuration10_Item1=Record=SchPrintView|ShowNoERC=True|ShowParamSet=True|ShowProbe=True|ShowBlanket=True|NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle|ShowNote=True|ShowNoteCollapsed=True|ShowOpenEnds=True|ExpandDesignator=True|ExpandNetLabel=False|ExpandPort=False|ExpandSheetNum=False|ExpandDocNum=False|PrintArea=0|PrintAreaRect.X1=0|PrintAreaRect.Y1=0|PrintAreaRect.X2=0|PrintAreaRect.Y2=0|DocumentPath=E:\HARDWARE\GitDVD\CAMBOX_RV1106\CORE_RV1106.SchDoc
  824. OutputType11=SimView Print
  825. OutputName11=SimView Prints
  826. OutputDocumentPath11=
  827. OutputVariantName11=
  828. OutputDefault11=0
  829. PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  830. OutputType12=Harness Layout Drawing Print
  831. OutputName12=Harness Layout Drawing Prints
  832. OutputDocumentPath12=
  833. OutputVariantName12=
  834. OutputDefault12=0
  835. PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  836. OutputType13=Harness Wiring Diagram Print
  837. OutputName13=Harness Wiring Diagram Prints
  838. OutputDocumentPath13=
  839. OutputVariantName13=
  840. OutputDefault13=0
  841. PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  842. [OutputGroup4]
  843. Name=Assembly Outputs
  844. Description=
  845. TargetPrinter=Microsoft Print to PDF
  846. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  847. OutputType1=Assembly
  848. OutputName1=Assembly Drawings
  849. OutputDocumentPath1=
  850. OutputVariantName1=[No Variations]
  851. OutputDefault1=0
  852. PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  853. OutputType2=Pick Place
  854. OutputName2=Generates pick and place files
  855. OutputDocumentPath2=
  856. OutputVariantName2=[No Variations]
  857. OutputDefault2=0
  858. Configuration2_Name1=ForceUpdateSettings
  859. Configuration2_Item1=False
  860. Configuration2_Name2=OutputConfigurationParameter1
  861. Configuration2_Item2=Record=PickPlaceView|Units=Metric|GenerateCSVFormat=True|GenerateTextFormat=False|ShowUnits=False|Separator=.|ExcludeFilterParam=False|IncludeVariations=False|IncludeStandardNoBOM=True|Filter= |FilterActive=False|YFlip=False|DifferentFootprints=False|Column#1=Name:Designator,Fixed:True,Metric:False,Visible:True,Sort:None,Position:0|Column#2=Name:Comment,Fixed:True,Metric:False,Visible:True,Sort:None,Position:1|Column#3=Name:Layer,Fixed:True,Metric:False,Visible:True,Sort:None,Position:2|Column#4=Name:Footprint,Fixed:True,Metric:False,Visible:True,Sort:None,Position:3|Column#5=Name:Footprint Description,Fixed:True,Metric:False,Visible:False,Sort:None,Position:4|Column#6=Name:Center-X,Fixed:True,Metric:True,Visible:True,Sort:None,Position:5|Column#7=Name:Center-Y,Fixed:True,Metric:True,Visible:True,Sort:None,Position:6|Column#8=Name:Rotation,Fixed:True,Metric:False,Visible:True,Sort:None,Position:7|Column#9=Name:Description,Fixed:True,Metric:False,Visible:True,Sort:None,Position:8|Column#10=Name:ComponentKind,Fixed:True,Metric:False,Visible:False,Sort:None,Position:9|Column#11=Name:Height,Fixed:True,Metric:True,Visible:False,Sort:None,Position:10|Column#12=Name:Ref-X,Fixed:True,Metric:True,Visible:False,Sort:None,Position:11|Column#13=Name:Ref-Y,Fixed:True,Metric:True,Visible:False,Sort:None,Position:12|Column#14=Name:Pad-X,Fixed:True,Metric:True,Visible:False,Sort:None,Position:13|Column#15=Name:Pad-Y,Fixed:True,Metric:True,Visible:False,Sort:None,Position:14|Column#16=Name:Variation,Fixed:True,Metric:False,Visible:False,Sort:None,Position:15|Column#17=Name:ComponentLink6Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:29,Type:0|Column#18=Name:Continuous Drain Current (ID),Fixed:False,Metric:False,Visible:False,Sort:None,Position:32,Type:0|Column#19=Name:Operating Temperature,Fixed:False,Metric:False,Visible:False,Sort:None,Position:67,Type:0|Column#20=Name:Manufacturer Part Number,Fixed:False,Metric:False,Visible:False,Sort:None,Position:55,Type:0|Column#21=Name:ComponentLink3Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:23,Type:0|Column#22=Name:Kieu_Chan,Fixed:False,Metric:False,Visible:False,Sort:None,Position:46,Type:0|Column#23=Name:Detailed Value,Fixed:False,Metric:False,Visible:False,Sort:None,Position:37,Type:0|Column#24=Name:REACH SVHC,Fixed:False,Metric:False,Visible:False,Sort:None,Position:80,Type:0|Column#25=Name:MPN,Fixed:False,Metric:False,Visible:False,Sort:None,Position:63,Type:0|Column#26=Name:Pricing (USD),Fixed:False,Metric:False,Visible:False,Sort:None,Position:75,Type:0|Column#27=Name:Threshold Voltage,Fixed:False,Metric:False,Visible:False,Sort:None,Position:93,Type:0|Column#28=Name:Package Quantity,Fixed:False,Metric:False,Visible:False,Sort:None,Position:68,Type:0|Column#29=Name:Fall Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:42,Type:0|Column#30=Name:Length,Fixed:False,Metric:False,Visible:False,Sort:None,Position:48,Type:0|Column#31=Name:ComponentLink5URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:28,Type:0|Column#32=Name:Max Operating Temperature,Fixed:False,Metric:False,Visible:False,Sort:None,Position:57,Type:0|Column#33=Name:Min Operating Temperature,Fixed:False,Metric:False,Visible:False,Sort:None,Position:60,Type:0|Column#34=Name:PROJECT,Fixed:False,Metric:False,Visible:False,Sort:None,Position:77,Type:0|Column#35=Name:ComponentLink4URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:26,Type:0|Column#36=Name:Category,Fixed:False,Metric:False,Visible:False,Sort:None,Position:16,Type:0|Column#37=Name:Packaging,Fixed:False,Metric:False,Visible:False,Sort:None,Position:69,Type:0|Column#38=Name:Supplier,Fixed:False,Metric:False,Visible:False,Sort:None,Position:85,Type:0|Column#39=Name:Contact Plating,Fixed:False,Metric:False,Visible:False,Sort:None,Position:31,Type:0|Column#40=Name:Mount,Fixed:False,Metric:False,Visible:False,Sort:None,Position:61,Type:0|Column#41=Name:Turn-Off Delay Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:90,Type:0|Column#42=Name:Datasheet,Fixed:False,Metric:False,Visible:False,Sort:None,Position:35,Type:0|Column#43=Name:Number of Pins,Fixed:False,Metric:False,Visible:False,Sort:None,Position:66,Type:0|Column#44=Name:Pricing 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:76,Type:0|Column#45=Name:Drain to Source Breakdown Voltage,Fixed:False,Metric:False,Visible:False,Sort:None,Position:38,Type:0|Column#46=Name:Stock 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:84,Type:0|Column#47=Name:Turn-On Delay Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:91,Type:0|Column#48=Name:Rise Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:81,Type:0|Column#49=Name:Width,Fixed:False,Metric:False,Visible:False,Sort:None,Position:97,Type:0|Column#50=Name:ComponentLink3URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:24,Type:0|Column#51=Name:Part Num 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:71,Type:0|Column#52=Name:Rds On Max,Fixed:False,Metric:False,Visible:False,Sort:None,Position:79,Type:0|Column#53=Name:Supplier 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:86,Type:0|Column#54=Name:Tolerance,Fixed:False,Metric:False,Visible:False,Sort:None,Position:89,Type:0|Column#55=Name:MFR,Fixed:False,Metric:False,Visible:False,Sort:None,Position:59,Type:0|Column#56=Name:Nominal Vgs,Fixed:False,Metric:False,Visible:False,Sort:None,Position:64,Type:0|Column#57=Name:Drain to Source Resistance,Fixed:False,Metric:False,Visible:False,Sort:None,Position:39,Type:0|Column#58=Name:Drain to Source Voltage (Vdss),Fixed:False,Metric:False,Visible:False,Sort:None,Position:40,Type:0|Column#59=Name:Supplier Part Number 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:87,Type:0|Column#60=Name:ComponentLink2URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:22,Type:0|Column#61=Name:Gate to Source Voltage (Vgs),Fixed:False,Metric:False,Visible:False,Sort:None,Position:43,Type:0|Column#62=Name:MANU 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:50,Type:0|Column#63=Name:Manufacturer,Fixed:False,Metric:False,Visible:False,Sort:None,Position:53,Type:0|Column#64=Name:MANU 2,Fixed:False,Metric:False,Visible:False,Sort:None,Position:51,Type:0|Column#65=Name:Manufacturer 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:54,Type:0|Column#66=Name:RoHS,Fixed:False,Metric:False,Visible:False,Sort:None,Position:82,Type:0|Column#67=Name:Input Capacitance,Fixed:False,Metric:False,Visible:False,Sort:None,Position:45,Type:0|Column#68=Name:Type,Fixed:False,Metric:False,Visible:False,Sort:None,Position:92,Type:0|Column#69=Name:PartNumber,Fixed:False,Metric:False,Visible:False,Sort:None,Position:73,Type:0|Column#70=Name:ComponentLink5Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:27,Type:0|Column#71=Name:ComponentLink4Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:25,Type:0|Column#72=Name:Radiation Hardening,Fixed:False,Metric:False,Visible:False,Sort:None,Position:78,Type:0|Column#73=Name:ComponentLink6URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:30,Type:0|Column#74=Name:ComponentLink2Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:21,Type:0|Column#75=Name:Lead Free,Fixed:False,Metric:False,Visible:False,Sort:None,Position:47,Type:0|Column#76=Name:Current Rating,Fixed:False,Metric:False,Visible:False,Sort:None,Position:34,Type:0|Column#77=Name:Power Dissipation,Fixed:False,Metric:False,Visible:False,Sort:None,Position:74,Type:0|Column#78=Name:Max Power Dissipation,Fixed:False,Metric:False,Visible:False,Sort:None,Position:58,Type:0|Column#79=Name:Temperature Coefficient,Fixed:False,Metric:False,Visible:False,Sort:None,Position:88,Type:0|Column#80=Name:Des,Fixed:False,Metric:False,Visible:False,Sort:None,Position:36,Type:0|Column#81=Name:Unit,Fixed:False,Metric:False,Visible:False,Sort:None,Position:94,Type:0|Column#82=Name:ComponentLink1URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:20,Type:0|Column#83=Name:Solder,Fixed:False,Metric:False,Visible:False,Sort:None,Position:83,Type:0|Column#84=Name:Link sale,Fixed:False,Metric:False,Visible:False,Sort:None,Position:49,Type:0|Column#85=Name:Value,Fixed:False,Metric:False,Visible:False,Sort:None,Position:95,Type:0|Column#86=Name:Company ID,Fixed:False,Metric:False,Visible:False,Sort:None,Position:18,Type:0|Column#87=Name:Manufacturer Part Number 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:56,Type:0|Column#88=Name:Creator,Fixed:False,Metric:False,Visible:False,Sort:None,Position:33,Type:0|Column#89=Name:Number of Elements,Fixed:False,Metric:False,Visible:False,Sort:None,Position:65,Type:0|Column#90=Name:Manufacture,Fixed:False,Metric:False,Visible:False,Sort:None,Position:52,Type:0|Column#91=Name:ComponentLink1Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:19,Type:0|Column#92=Name:Mounting type,Fixed:False,Metric:False,Visible:False,Sort:None,Position:62,Type:0|Column#93=Name:Catelogy,Fixed:False,Metric:False,Visible:False,Sort:None,Position:17,Type:0|Column#94=Name:Parameter 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:70,Type:0|Column#95=Name:Part Num 2,Fixed:False,Metric:False,Visible:False,Sort:None,Position:72,Type:0|Column#96=Name:Element Configuration,Fixed:False,Metric:False,Visible:False,Sort:None,Position:41,Type:0|Column#97=Name:Height,Fixed:False,Metric:False,Visible:False,Sort:None,Position:44,Type:0|Column#98=Name:Voltage Rated,Fixed:False,Metric:False,Visible:False,Sort:None,Position:96,Type:0|DocumentPath=E:\HARDWARE\GitDVD\CAMBOX_RV1106\CamBox_RV1106.PcbDoc
  862. OutputType3=Test Points For Assembly
  863. OutputName3=Test Point Report
  864. OutputDocumentPath3=
  865. OutputVariantName3=[No Variations]
  866. OutputDefault3=0
  867. [OutputGroup5]
  868. Name=Fabrication Outputs
  869. Description=
  870. TargetPrinter=Microsoft Print to PDF
  871. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  872. OutputType1=Board Stack Report
  873. OutputName1=Report Board Stack
  874. OutputDocumentPath1=
  875. OutputVariantName1=
  876. OutputDefault1=0
  877. PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  878. OutputType2=CompositeDrill
  879. OutputName2=Composite Drill Drawing
  880. OutputDocumentPath2=
  881. OutputVariantName2=[No Variations]
  882. OutputDefault2=0
  883. PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  884. OutputType3=Drill
  885. OutputName3=Drill Drawing/Guides
  886. OutputDocumentPath3=
  887. OutputVariantName3=[No Variations]
  888. OutputDefault3=0
  889. PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  890. OutputType4=Final
  891. OutputName4=Final Artwork Prints
  892. OutputDocumentPath4=
  893. OutputVariantName4=[No Variations]
  894. OutputDefault4=0
  895. PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  896. OutputType5=Gerber
  897. OutputName5=Gerber Files
  898. OutputDocumentPath5=
  899. OutputVariantName5=[No Variations]
  900. OutputDefault5=0
  901. OutputType6=Gerber X2
  902. OutputName6=Gerber X2 Files
  903. OutputDocumentPath6=
  904. OutputVariantName6=[No Variations]
  905. OutputDefault6=0
  906. OutputType7=IPC2581
  907. OutputName7=IPC-2581 Files
  908. OutputDocumentPath7=
  909. OutputVariantName7=[No Variations]
  910. OutputDefault7=0
  911. OutputType8=Mask
  912. OutputName8=Solder/Paste Mask Prints
  913. OutputDocumentPath8=
  914. OutputVariantName8=[No Variations]
  915. OutputDefault8=0
  916. PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  917. OutputType9=NC Drill
  918. OutputName9=NC Drill Files
  919. OutputDocumentPath9=
  920. OutputVariantName9=
  921. OutputDefault9=0
  922. OutputType10=ODB
  923. OutputName10=ODB++ Files
  924. OutputDocumentPath10=
  925. OutputVariantName10=[No Variations]
  926. OutputDefault10=0
  927. OutputType11=Plane
  928. OutputName11=Power-Plane Prints
  929. OutputDocumentPath11=
  930. OutputVariantName11=[No Variations]
  931. OutputDefault11=0
  932. PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  933. OutputType12=Test Points
  934. OutputName12=Test Point Report
  935. OutputDocumentPath12=
  936. OutputVariantName12=
  937. OutputDefault12=0
  938. [OutputGroup6]
  939. Name=Report Outputs
  940. Description=
  941. TargetPrinter=Microsoft Print to PDF
  942. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  943. OutputType1=BOM_PartType
  944. OutputName1=Bill of Materials
  945. OutputDocumentPath1=
  946. OutputVariantName1=[No Variations]
  947. OutputDefault1=0
  948. PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  949. OutputType2=ComponentCrossReference
  950. OutputName2=Component Cross Reference Report
  951. OutputDocumentPath2=
  952. OutputVariantName2=[No Variations]
  953. OutputDefault2=0
  954. OutputType3=ReportHierarchy
  955. OutputName3=Report Project Hierarchy
  956. OutputDocumentPath3=
  957. OutputVariantName3=[No Variations]
  958. OutputDefault3=0
  959. OutputType4=Script
  960. OutputName4=Script Output
  961. OutputDocumentPath4=
  962. OutputVariantName4=[No Variations]
  963. OutputDefault4=0
  964. OutputType5=SimpleBOM
  965. OutputName5=Simple BOM
  966. OutputDocumentPath5=
  967. OutputVariantName5=[No Variations]
  968. OutputDefault5=0
  969. OutputType6=SinglePinNetReporter
  970. OutputName6=Report Single Pin Nets
  971. OutputDocumentPath6=
  972. OutputVariantName6=[No Variations]
  973. OutputDefault6=0
  974. OutputType7=Export Comments
  975. OutputName7=Export Comments
  976. OutputDocumentPath7=
  977. OutputVariantName7=[No Variations]
  978. OutputDefault7=0
  979. PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  980. OutputType8=BOM_ReportCompare
  981. OutputName8=BOM Compare
  982. OutputDocumentPath8=
  983. OutputVariantName8=[No Variations]
  984. OutputDefault8=0
  985. PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  986. OutputType9=Project History
  987. OutputName9=Project History
  988. OutputDocumentPath9=
  989. OutputVariantName9=[No Variations]
  990. OutputDefault9=0
  991. PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  992. [OutputGroup7]
  993. Name=Other Outputs
  994. Description=
  995. TargetPrinter=Microsoft Print to PDF
  996. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  997. OutputType1=Text Print
  998. OutputName1=Text Print
  999. OutputDocumentPath1=
  1000. OutputVariantName1=
  1001. OutputDefault1=0
  1002. PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  1003. OutputType2=Text Print
  1004. OutputName2=Text Print
  1005. OutputDocumentPath2=
  1006. OutputVariantName2=
  1007. OutputDefault2=0
  1008. PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1009. OutputType3=Text Print
  1010. OutputName3=Text Print
  1011. OutputDocumentPath3=
  1012. OutputVariantName3=
  1013. OutputDefault3=0
  1014. PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1015. OutputType4=Text Print
  1016. OutputName4=Text Print
  1017. OutputDocumentPath4=
  1018. OutputVariantName4=
  1019. OutputDefault4=0
  1020. PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1021. OutputType5=Text Print
  1022. OutputName5=Text Print
  1023. OutputDocumentPath5=
  1024. OutputVariantName5=
  1025. OutputDefault5=0
  1026. PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1027. OutputType6=Text Print
  1028. OutputName6=Text Print
  1029. OutputDocumentPath6=
  1030. OutputVariantName6=
  1031. OutputDefault6=0
  1032. PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1033. OutputType7=Text Print
  1034. OutputName7=Text Print
  1035. OutputDocumentPath7=
  1036. OutputVariantName7=
  1037. OutputDefault7=0
  1038. PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1039. OutputType8=Text Print
  1040. OutputName8=Text Print
  1041. OutputDocumentPath8=
  1042. OutputVariantName8=
  1043. OutputDefault8=0
  1044. PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1045. OutputType9=Text Print
  1046. OutputName9=Text Print
  1047. OutputDocumentPath9=
  1048. OutputVariantName9=
  1049. OutputDefault9=0
  1050. PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1051. OutputType10=Text Print
  1052. OutputName10=Text Print
  1053. OutputDocumentPath10=
  1054. OutputVariantName10=
  1055. OutputDefault10=0
  1056. PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1057. OutputType11=Text Print
  1058. OutputName11=Text Print
  1059. OutputDocumentPath11=
  1060. OutputVariantName11=
  1061. OutputDefault11=0
  1062. PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1063. OutputType12=Text Print
  1064. OutputName12=Text Print
  1065. OutputDocumentPath12=
  1066. OutputVariantName12=
  1067. OutputDefault12=0
  1068. PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1069. OutputType13=Text Print
  1070. OutputName13=Text Print
  1071. OutputDocumentPath13=
  1072. OutputVariantName13=
  1073. OutputDefault13=0
  1074. PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1075. OutputType14=Text Print
  1076. OutputName14=Text Print
  1077. OutputDocumentPath14=
  1078. OutputVariantName14=
  1079. OutputDefault14=0
  1080. PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1081. OutputType15=Text Print
  1082. OutputName15=Text Print
  1083. OutputDocumentPath15=
  1084. OutputVariantName15=
  1085. OutputDefault15=0
  1086. PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1087. OutputType16=Text Print
  1088. OutputName16=Text Print
  1089. OutputDocumentPath16=
  1090. OutputVariantName16=
  1091. OutputDefault16=0
  1092. PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1093. OutputType17=Text Print
  1094. OutputName17=Text Print
  1095. OutputDocumentPath17=
  1096. OutputVariantName17=
  1097. OutputDefault17=0
  1098. PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9
  1099. [OutputGroup8]
  1100. Name=Validation Outputs
  1101. Description=
  1102. TargetPrinter=Microsoft Print to PDF
  1103. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1104. OutputType1=BOM_Violations
  1105. OutputName1=BOM Checks Report
  1106. OutputDocumentPath1=
  1107. OutputVariantName1=
  1108. OutputDefault1=0
  1109. OutputType2=Component states check
  1110. OutputName2=Server's components states check
  1111. OutputDocumentPath2=
  1112. OutputVariantName2=
  1113. OutputDefault2=0
  1114. OutputType3=Configuration compliance
  1115. OutputName3=Environment configuration compliance check
  1116. OutputDocumentPath3=
  1117. OutputVariantName3=
  1118. OutputDefault3=0
  1119. OutputType4=Design Rules Check
  1120. OutputName4=Design Rules Check
  1121. OutputDocumentPath4=
  1122. OutputVariantName4=
  1123. OutputDefault4=0
  1124. PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  1125. OutputType5=Differences Report
  1126. OutputName5=Differences Report
  1127. OutputDocumentPath5=
  1128. OutputVariantName5=
  1129. OutputDefault5=0
  1130. PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  1131. OutputType6=Electrical Rules Check
  1132. OutputName6=Electrical Rules Check
  1133. OutputDocumentPath6=
  1134. OutputVariantName6=
  1135. OutputDefault6=0
  1136. PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  1137. OutputType7=Footprint Comparison Report
  1138. OutputName7=Footprint Comparison Report
  1139. OutputDocumentPath7=
  1140. OutputVariantName7=
  1141. OutputDefault7=0
  1142. [OutputGroup9]
  1143. Name=Export Outputs
  1144. Description=
  1145. TargetPrinter=Microsoft Print to PDF
  1146. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1147. OutputType1=AutoCAD dwg/dxf PCB
  1148. OutputName1=AutoCAD dwg/dxf File PCB
  1149. OutputDocumentPath1=
  1150. OutputVariantName1=
  1151. OutputDefault1=0
  1152. OutputType2=AutoCAD dwg/dxf Schematic
  1153. OutputName2=AutoCAD dwg/dxf File Schematic
  1154. OutputDocumentPath2=
  1155. OutputVariantName2=
  1156. OutputDefault2=0
  1157. OutputType3=ExportIDF
  1158. OutputName3=Export IDF
  1159. OutputDocumentPath3=
  1160. OutputVariantName3=
  1161. OutputDefault3=0
  1162. OutputType4=ExportPARASOLID
  1163. OutputName4=Export PARASOLID
  1164. OutputDocumentPath4=
  1165. OutputVariantName4=[No Variations]
  1166. OutputDefault4=0
  1167. OutputType5=ExportSTEP
  1168. OutputName5=Export STEP
  1169. OutputDocumentPath5=
  1170. OutputVariantName5=[No Variations]
  1171. OutputDefault5=0
  1172. OutputType6=ExportVRML
  1173. OutputName6=Export VRML
  1174. OutputDocumentPath6=
  1175. OutputVariantName6=[No Variations]
  1176. OutputDefault6=0
  1177. OutputType7=MBAExportPARASOLID
  1178. OutputName7=Export PARASOLID
  1179. OutputDocumentPath7=
  1180. OutputVariantName7=
  1181. OutputDefault7=0
  1182. OutputType8=MBAExportSTEP
  1183. OutputName8=Export STEP
  1184. OutputDocumentPath8=
  1185. OutputVariantName8=
  1186. OutputDefault8=0
  1187. OutputType9=Save As/Export PCB
  1188. OutputName9=Save As/Export PCB
  1189. OutputDocumentPath9=
  1190. OutputVariantName9=
  1191. OutputDefault9=0
  1192. OutputType10=Save As/Export Schematic
  1193. OutputName10=Save As/Export Schematic
  1194. OutputDocumentPath10=
  1195. OutputVariantName10=
  1196. OutputDefault10=0
  1197. OutputType11=Specctra Design PCB
  1198. OutputName11=Specctra Design PCB
  1199. OutputDocumentPath11=
  1200. OutputVariantName11=
  1201. OutputDefault11=0
  1202. OutputType12=Web ReviewOutputName
  1203. OutputName12=Web Review Data
  1204. OutputDocumentPath12=
  1205. OutputVariantName12=
  1206. OutputDefault12=0
  1207. [OutputGroup10]
  1208. Name=PostProcess Outputs
  1209. Description=
  1210. TargetPrinter=Microsoft Print to PDF
  1211. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1212. OutputType1=Copy Files
  1213. OutputName1=Copy Files
  1214. OutputDocumentPath1=
  1215. OutputVariantName1=
  1216. OutputDefault1=0
  1217. [Modification Levels]
  1218. Type1=1
  1219. Type2=1
  1220. Type3=1
  1221. Type4=1
  1222. Type5=1
  1223. Type6=1
  1224. Type7=1
  1225. Type8=1
  1226. Type9=1
  1227. Type10=1
  1228. Type11=1
  1229. Type12=1
  1230. Type13=1
  1231. Type14=1
  1232. Type15=1
  1233. Type16=1
  1234. Type17=1
  1235. Type18=1
  1236. Type19=1
  1237. Type20=1
  1238. Type21=1
  1239. Type22=1
  1240. Type23=1
  1241. Type24=1
  1242. Type25=1
  1243. Type26=1
  1244. Type27=1
  1245. Type28=1
  1246. Type29=1
  1247. Type30=1
  1248. Type31=1
  1249. Type32=1
  1250. Type33=1
  1251. Type34=1
  1252. Type35=1
  1253. Type36=1
  1254. Type37=1
  1255. Type38=1
  1256. Type39=1
  1257. Type40=1
  1258. Type41=1
  1259. Type42=1
  1260. Type43=1
  1261. Type44=1
  1262. Type45=1
  1263. Type46=1
  1264. Type47=1
  1265. Type48=1
  1266. Type49=1
  1267. Type50=1
  1268. Type51=1
  1269. Type52=1
  1270. Type53=1
  1271. Type54=1
  1272. Type55=1
  1273. Type56=1
  1274. Type57=1
  1275. Type58=1
  1276. Type59=1
  1277. Type60=1
  1278. Type61=1
  1279. Type62=1
  1280. Type63=1
  1281. Type64=1
  1282. Type65=1
  1283. Type66=1
  1284. Type67=1
  1285. Type68=1
  1286. Type69=1
  1287. Type70=1
  1288. Type71=1
  1289. Type72=1
  1290. Type73=1
  1291. Type74=1
  1292. Type75=1
  1293. Type76=1
  1294. Type77=1
  1295. Type78=1
  1296. Type79=1
  1297. Type80=1
  1298. Type81=1
  1299. Type82=1
  1300. Type83=1
  1301. Type84=1
  1302. Type85=1
  1303. Type86=1
  1304. Type87=1
  1305. Type88=1
  1306. Type89=1
  1307. Type90=1
  1308. Type91=1
  1309. Type92=1
  1310. Type93=1
  1311. Type94=1
  1312. Type95=1
  1313. Type96=1
  1314. Type97=1
  1315. Type98=1
  1316. Type99=1
  1317. Type100=1
  1318. Type101=1
  1319. Type102=1
  1320. Type103=1
  1321. Type104=1
  1322. Type105=1
  1323. Type106=1
  1324. Type107=1
  1325. Type108=1
  1326. Type109=1
  1327. Type110=1
  1328. Type111=1
  1329. Type112=1
  1330. Type113=1
  1331. Type114=1
  1332. Type115=1
  1333. Type116=1
  1334. Type117=1
  1335. Type118=1
  1336. Type119=1
  1337. Type120=1
  1338. [Difference Levels]
  1339. Type1=1
  1340. Type2=1
  1341. Type3=1
  1342. Type4=1
  1343. Type5=1
  1344. Type6=1
  1345. Type7=1
  1346. Type8=1
  1347. Type9=1
  1348. Type10=1
  1349. Type11=1
  1350. Type12=1
  1351. Type13=1
  1352. Type14=1
  1353. Type15=1
  1354. Type16=1
  1355. Type17=1
  1356. Type18=1
  1357. Type19=1
  1358. Type20=1
  1359. Type21=1
  1360. Type22=1
  1361. Type23=1
  1362. Type24=1
  1363. Type25=1
  1364. Type26=1
  1365. Type27=1
  1366. Type28=1
  1367. Type29=1
  1368. Type30=1
  1369. Type31=1
  1370. Type32=1
  1371. Type33=1
  1372. Type34=1
  1373. Type35=1
  1374. Type36=1
  1375. Type37=1
  1376. Type38=1
  1377. Type39=1
  1378. Type40=1
  1379. Type41=1
  1380. Type42=1
  1381. Type43=1
  1382. Type44=1
  1383. Type45=1
  1384. Type46=1
  1385. Type47=1
  1386. Type48=1
  1387. Type49=1
  1388. Type50=1
  1389. Type51=1
  1390. Type52=1
  1391. Type53=1
  1392. Type54=1
  1393. Type55=1
  1394. Type56=1
  1395. Type57=1
  1396. Type58=1
  1397. Type59=1
  1398. Type60=1
  1399. Type61=1
  1400. Type62=1
  1401. Type63=1
  1402. Type64=1
  1403. Type65=1
  1404. Type66=1
  1405. Type67=1
  1406. Type68=1
  1407. [Electrical Rules Check]
  1408. Type1=1
  1409. Type2=1
  1410. Type3=2
  1411. Type4=1
  1412. Type5=2
  1413. Type6=2
  1414. Type7=0
  1415. Type8=1
  1416. Type9=1
  1417. Type10=1
  1418. Type11=2
  1419. Type12=0
  1420. Type13=0
  1421. Type14=1
  1422. Type15=1
  1423. Type16=1
  1424. Type17=1
  1425. Type18=1
  1426. Type19=1
  1427. Type20=0
  1428. Type21=0
  1429. Type22=0
  1430. Type23=0
  1431. Type24=1
  1432. Type25=2
  1433. Type26=0
  1434. Type27=2
  1435. Type28=1
  1436. Type29=1
  1437. Type30=1
  1438. Type31=1
  1439. Type32=2
  1440. Type33=0
  1441. Type34=2
  1442. Type35=1
  1443. Type36=2
  1444. Type37=1
  1445. Type38=2
  1446. Type39=2
  1447. Type40=2
  1448. Type41=0
  1449. Type42=2
  1450. Type43=1
  1451. Type44=0
  1452. Type45=0
  1453. Type46=0
  1454. Type47=0
  1455. Type48=0
  1456. Type49=0
  1457. Type50=2
  1458. Type51=0
  1459. Type52=0
  1460. Type53=1
  1461. Type54=1
  1462. Type55=1
  1463. Type56=2
  1464. Type57=1
  1465. Type58=1
  1466. Type59=2
  1467. Type60=0
  1468. Type61=0
  1469. Type62=0
  1470. Type63=0
  1471. Type64=0
  1472. Type65=2
  1473. Type66=3
  1474. Type67=2
  1475. Type68=2
  1476. Type69=0
  1477. Type70=2
  1478. Type71=2
  1479. Type72=2
  1480. Type73=2
  1481. Type74=1
  1482. Type75=2
  1483. Type76=1
  1484. Type77=1
  1485. Type78=1
  1486. Type79=1
  1487. Type80=2
  1488. Type81=3
  1489. Type82=3
  1490. Type83=3
  1491. Type84=3
  1492. Type85=3
  1493. Type86=2
  1494. Type87=2
  1495. Type88=2
  1496. Type89=1
  1497. Type90=1
  1498. Type91=3
  1499. Type92=3
  1500. Type93=2
  1501. Type94=2
  1502. Type95=2
  1503. Type96=2
  1504. Type97=2
  1505. Type98=0
  1506. Type99=1
  1507. Type100=2
  1508. Type101=0
  1509. Type102=2
  1510. Type103=2
  1511. Type104=1
  1512. Type105=2
  1513. Type106=2
  1514. Type107=2
  1515. Type108=2
  1516. Type109=1
  1517. Type110=1
  1518. Type111=1
  1519. Type112=1
  1520. Type113=1
  1521. Type114=2
  1522. Type115=2
  1523. Type116=2
  1524. Type117=3
  1525. Type118=3
  1526. Type119=3
  1527. AlternateItemFail=3
  1528. Type122=2
  1529. Type123=1
  1530. Type124=1
  1531. Type125=1
  1532. Type126=1
  1533. Type127=1
  1534. [ERC Connection Matrix]
  1535. L1=NNNNNNNNNNNWNNNWW
  1536. L2=NNWNNNNWWWNWNWNWN
  1537. L3=NWEENEEEENEWNEEWN
  1538. L4=NNENNNWEENNWNENWN
  1539. L5=NNNNNNNNNNNNNNNNN
  1540. L6=NNENNNNEENNWNENWN
  1541. L7=NNEWNNWEENNWNENWN
  1542. L8=NWEENEENEEENNEENN
  1543. L9=NWEENEEEENEWNEEWW
  1544. L10=NWNNNNNENNEWNNEWN
  1545. L11=NNENNNNEEENWNENWN
  1546. L12=WWWWNWWNWWWNWWWNN
  1547. L13=NNNNNNNNNNNWNNNWW
  1548. L14=NWEENEEEENEWNEEWW
  1549. L15=NNENNNNEEENWNENWW
  1550. L16=WWWWNWWNWWWNWWWNW
  1551. L17=WNNNNNNNWNNNWWWWN
  1552. [Annotate]
  1553. SortOrder=3
  1554. SortLocation=0
  1555. ReplaceSubparts=0
  1556. MatchParameter1=Comment
  1557. MatchStrictly1=1
  1558. MatchParameter2=Library Reference
  1559. MatchStrictly2=1
  1560. PhysicalNamingFormat=$Component_$RoomName
  1561. GlobalIndexSortOrder=3
  1562. GlobalIndexSortLocation=0
  1563. [PrjClassGen]
  1564. CompClassManualEnabled=0
  1565. CompClassManualRoomEnabled=0
  1566. NetClassAutoBusEnabled=1
  1567. NetClassAutoCompEnabled=0
  1568. NetClassAutoNamedHarnessEnabled=0
  1569. NetClassManualEnabled=1
  1570. NetClassSeparateForBusSections=0
  1571. [LibraryUpdateOptions]
  1572. SelectedOnly=0
  1573. UpdateVariants=1
  1574. UpdateToLatestRevision=1
  1575. PartTypes=0
  1576. ComponentLibIdentifierKind0=Library Name And Type
  1577. ComponentLibraryIdentifier0=CamBox_RV1106.SCHLIB
  1578. ComponentDesignItemID0=AS0BC21-S40BM-7H (RV1106-PCIE)
  1579. ComponentSymbolReference0=AS0BC21-S40BM-7H (RV1106-PCIE)
  1580. ComponentUpdate0=1
  1581. ComponentIsDeviceSheet0=0
  1582. ComponentLibIdentifierKind1=Library Name And Type
  1583. ComponentLibraryIdentifier1=CamBox_RV1106.SCHLIB
  1584. ComponentDesignItemID1=CSD19538Q3A
  1585. ComponentSymbolReference1=CSD19538Q3A
  1586. ComponentUpdate1=1
  1587. ComponentIsDeviceSheet1=0
  1588. ComponentLibIdentifierKind2=Library Name And Type
  1589. ComponentLibraryIdentifier2=CamBox_RV1106.SCHLIB
  1590. ComponentDesignItemID2=ETA3409S2F
  1591. ComponentSymbolReference2=ETA3409S2F
  1592. ComponentUpdate2=1
  1593. ComponentIsDeviceSheet2=0
  1594. ComponentLibIdentifierKind3=Library Name And Type
  1595. ComponentLibraryIdentifier3=CamBox_RV1106.SCHLIB
  1596. ComponentDesignItemID3=ETA6003Q3Q
  1597. ComponentSymbolReference3=ETA6003Q3Q
  1598. ComponentUpdate3=1
  1599. ComponentIsDeviceSheet3=0
  1600. ComponentLibIdentifierKind4=Library Name And Type
  1601. ComponentLibraryIdentifier4=CamBox_RV1106.SCHLIB
  1602. ComponentDesignItemID4=HEATSINK
  1603. ComponentSymbolReference4=HEATSINK
  1604. ComponentUpdate4=1
  1605. ComponentIsDeviceSheet4=0
  1606. ComponentLibIdentifierKind5=Library Name And Type
  1607. ComponentLibraryIdentifier5=CamBox_RV1106.SCHLIB
  1608. ComponentDesignItemID5=NR4030S2R2MT
  1609. ComponentSymbolReference5=NR4030S2R2MT
  1610. ComponentUpdate5=1
  1611. ComponentIsDeviceSheet5=0
  1612. ComponentLibIdentifierKind6=Library Name And Type
  1613. ComponentLibraryIdentifier6=CamBox_RV1106.SCHLIB
  1614. ComponentDesignItemID6=R5F51303ADFM
  1615. ComponentSymbolReference6=R5F51303ADFM
  1616. ComponentUpdate6=1
  1617. ComponentIsDeviceSheet6=0
  1618. ComponentLibIdentifierKind7=Library Name And Type
  1619. ComponentLibraryIdentifier7=CamBox_RV1106.SCHLIB
  1620. ComponentDesignItemID7=RC0402FR-070RL
  1621. ComponentSymbolReference7=RC0402FR-070RL
  1622. ComponentUpdate7=1
  1623. ComponentIsDeviceSheet7=0
  1624. ComponentLibIdentifierKind8=Library Name And Type
  1625. ComponentLibraryIdentifier8=CamBox_RV1106.SCHLIB
  1626. ComponentDesignItemID8=RC0402FR-071KL
  1627. ComponentSymbolReference8=RC0402FR-071KL
  1628. ComponentUpdate8=1
  1629. ComponentIsDeviceSheet8=0
  1630. ComponentLibIdentifierKind9=Library Name And Type
  1631. ComponentLibraryIdentifier9=CamBox_RV1106.SCHLIB
  1632. ComponentDesignItemID9=RC0402FR-072K2L
  1633. ComponentSymbolReference9=RC0402FR-072K2L
  1634. ComponentUpdate9=1
  1635. ComponentIsDeviceSheet9=0
  1636. ComponentLibIdentifierKind10=Library Name And Type
  1637. ComponentLibraryIdentifier10=CamBox_RV1106.SCHLIB
  1638. ComponentDesignItemID10=RC0402FR-07470RL
  1639. ComponentSymbolReference10=RC0402FR-07470RL
  1640. ComponentUpdate10=1
  1641. ComponentIsDeviceSheet10=0
  1642. ComponentLibIdentifierKind11=Library Name And Type
  1643. ComponentLibraryIdentifier11=CamBox_RV1106.SCHLIB
  1644. ComponentDesignItemID11=RC0402FR-074K7L
  1645. ComponentSymbolReference11=RC0402FR-074K7L
  1646. ComponentUpdate11=1
  1647. ComponentIsDeviceSheet11=0
  1648. ComponentLibIdentifierKind12=Library Name And Type
  1649. ComponentLibraryIdentifier12=CamBox_RV1106.SCHLIB
  1650. ComponentDesignItemID12=SPACER
  1651. ComponentSymbolReference12=SPACER
  1652. ComponentUpdate12=1
  1653. ComponentIsDeviceSheet12=0
  1654. ComponentLibIdentifierKind13=Library Name And Type
  1655. ComponentLibraryIdentifier13=CamBox_RV1106.SCHLIB
  1656. ComponentDesignItemID13=XL-1608SYGC-04
  1657. ComponentSymbolReference13=XL-1608SYGC-04
  1658. ComponentUpdate13=1
  1659. ComponentIsDeviceSheet13=0
  1660. ComponentLibIdentifierKind14=Library Name And Type
  1661. ComponentLibraryIdentifier14=Camera_Box_RK3562.IntLib
  1662. ComponentDesignItemID14=2SK3018
  1663. ComponentSymbolReference14=2SK3018
  1664. ComponentUpdate14=1
  1665. ComponentIsDeviceSheet14=0
  1666. ComponentLibIdentifierKind15=Library Name And Type
  1667. ComponentLibraryIdentifier15=Miscellaneous Devices.IntLib
  1668. ComponentDesignItemID15=Cap
  1669. ComponentSymbolReference15=Cap
  1670. ComponentUpdate15=1
  1671. ComponentIsDeviceSheet15=0
  1672. ComponentLibIdentifierKind16=Library Name And Type
  1673. ComponentLibraryIdentifier16=MKP_lib.DbLib/Components
  1674. ComponentDesignItemID16=0805CG330J500NT
  1675. ComponentSymbolReference16=CAP
  1676. ComponentUpdate16=1
  1677. ComponentIsDeviceSheet16=0
  1678. ComponentLibIdentifierKind17=Library Name And Type
  1679. ComponentLibraryIdentifier17=MKP_lib.DbLib/Components
  1680. ComponentDesignItemID17=150060YS75000
  1681. ComponentSymbolReference17=LED
  1682. ComponentUpdate17=1
  1683. ComponentIsDeviceSheet17=0
  1684. ComponentLibIdentifierKind18=Library Name And Type
  1685. ComponentLibraryIdentifier18=MKP_lib.DbLib/Components
  1686. ComponentDesignItemID18=2.D.1.270002002
  1687. ComponentSymbolReference18=XTL-4PIN
  1688. ComponentUpdate18=1
  1689. ComponentIsDeviceSheet18=0
  1690. ComponentLibIdentifierKind19=Library Name And Type
  1691. ComponentLibraryIdentifier19=MKP_lib.DbLib/Components
  1692. ComponentDesignItemID19=2SK3018
  1693. ComponentSymbolReference19=N-Channel
  1694. ComponentUpdate19=1
  1695. ComponentIsDeviceSheet19=0
  1696. ComponentLibIdentifierKind20=Library Name And Type
  1697. ComponentLibraryIdentifier20=MKP_lib.DbLib/Components
  1698. ComponentDesignItemID20=A2541WV-4P
  1699. ComponentSymbolReference20=CON-4PIN
  1700. ComponentUpdate20=1
  1701. ComponentIsDeviceSheet20=0
  1702. ComponentLibIdentifierKind21=Library Name And Type
  1703. ComponentLibraryIdentifier21=MKP_lib.DbLib/Components
  1704. ComponentDesignItemID21=A7677S
  1705. ComponentSymbolReference21=A7677S
  1706. ComponentUpdate21=1
  1707. ComponentIsDeviceSheet21=0
  1708. ComponentLibIdentifierKind22=Library Name And Type
  1709. ComponentLibraryIdentifier22=MKP_lib.DbLib/Components
  1710. ComponentDesignItemID22=ABS07-32.768KHZ-T
  1711. ComponentSymbolReference22=XTL-2PIN
  1712. ComponentUpdate22=1
  1713. ComponentIsDeviceSheet22=0
  1714. ComponentLibIdentifierKind23=Library Name And Type
  1715. ComponentLibraryIdentifier23=MKP_lib.DbLib/Components
  1716. ComponentDesignItemID23=AC0402FR-07226KL
  1717. ComponentSymbolReference23=RES
  1718. ComponentUpdate23=1
  1719. ComponentIsDeviceSheet23=0
  1720. ComponentLibIdentifierKind24=Library Name And Type
  1721. ComponentLibraryIdentifier24=MKP_lib.DbLib/Components
  1722. ComponentDesignItemID24=AC0402FR-07590KL
  1723. ComponentSymbolReference24=RES
  1724. ComponentUpdate24=1
  1725. ComponentIsDeviceSheet24=0
  1726. ComponentLibIdentifierKind25=Library Name And Type
  1727. ComponentLibraryIdentifier25=MKP_lib.DbLib/Components
  1728. ComponentDesignItemID25=ASDM3401ZA-R
  1729. ComponentSymbolReference25=P-Channel
  1730. ComponentUpdate25=1
  1731. ComponentIsDeviceSheet25=0
  1732. ComponentLibIdentifierKind26=Library Name And Type
  1733. ComponentLibraryIdentifier26=MKP_lib.DbLib/Components
  1734. ComponentDesignItemID26=B72590D50H160
  1735. ComponentSymbolReference26=B72590D50H160
  1736. ComponentUpdate26=1
  1737. ComponentIsDeviceSheet26=0
  1738. ComponentLibIdentifierKind27=Library Name And Type
  1739. ComponentLibraryIdentifier27=MKP_lib.DbLib/Components
  1740. ComponentDesignItemID27=C0603X5R105K500NT
  1741. ComponentSymbolReference27=CAP
  1742. ComponentUpdate27=1
  1743. ComponentIsDeviceSheet27=0
  1744. ComponentLibIdentifierKind28=Library Name And Type
  1745. ComponentLibraryIdentifier28=MKP_lib.DbLib/Components
  1746. ComponentDesignItemID28=C0603X5R475K350NT
  1747. ComponentSymbolReference28=C0603X5R475K350NT
  1748. ComponentUpdate28=1
  1749. ComponentIsDeviceSheet28=0
  1750. ComponentLibIdentifierKind29=Library Name And Type
  1751. ComponentLibraryIdentifier29=MKP_lib.DbLib/Components
  1752. ComponentDesignItemID29=C0603X5R475K6R3NT
  1753. ComponentSymbolReference29=CAP
  1754. ComponentUpdate29=1
  1755. ComponentIsDeviceSheet29=0
  1756. ComponentLibIdentifierKind30=Library Name And Type
  1757. ComponentLibraryIdentifier30=MKP_lib.DbLib/Components
  1758. ComponentDesignItemID30=C0603X7R104K500NT
  1759. ComponentSymbolReference30=CAP
  1760. ComponentUpdate30=1
  1761. ComponentIsDeviceSheet30=0
  1762. ComponentLibIdentifierKind31=Library Name And Type
  1763. ComponentLibraryIdentifier31=MKP_lib.DbLib/Components
  1764. ComponentDesignItemID31=C0805X5R106K160NT
  1765. ComponentSymbolReference31=CAP
  1766. ComponentUpdate31=1
  1767. ComponentIsDeviceSheet31=0
  1768. ComponentLibIdentifierKind32=Library Name And Type
  1769. ComponentLibraryIdentifier32=MKP_lib.DbLib/Components
  1770. ComponentDesignItemID32=C1206X5R106K500NT
  1771. ComponentSymbolReference32=CAP
  1772. ComponentUpdate32=1
  1773. ComponentIsDeviceSheet32=0
  1774. ComponentLibIdentifierKind33=Library Name And Type
  1775. ComponentLibraryIdentifier33=MKP_lib.DbLib/Components
  1776. ComponentDesignItemID33=C7802-02
  1777. ComponentSymbolReference33=C7802-02
  1778. ComponentUpdate33=1
  1779. ComponentIsDeviceSheet33=0
  1780. ComponentLibIdentifierKind34=Library Name And Type
  1781. ComponentLibraryIdentifier34=MKP_lib.DbLib/Components
  1782. ComponentDesignItemID34=CBW100505U600T
  1783. ComponentSymbolReference34=FB
  1784. ComponentUpdate34=1
  1785. ComponentIsDeviceSheet34=0
  1786. ComponentLibIdentifierKind35=Library Name And Type
  1787. ComponentLibraryIdentifier35=MKP_lib.DbLib/Components
  1788. ComponentDesignItemID35=CC0402FRNPO9BN101
  1789. ComponentSymbolReference35=CAP
  1790. ComponentUpdate35=1
  1791. ComponentIsDeviceSheet35=0
  1792. ComponentLibIdentifierKind36=Library Name And Type
  1793. ComponentLibraryIdentifier36=MKP_lib.DbLib/Components
  1794. ComponentDesignItemID36=CC0402FRNPO9BN120
  1795. ComponentSymbolReference36=CAP
  1796. ComponentUpdate36=1
  1797. ComponentIsDeviceSheet36=0
  1798. ComponentLibIdentifierKind37=Library Name And Type
  1799. ComponentLibraryIdentifier37=MKP_lib.DbLib/Components
  1800. ComponentDesignItemID37=CC0402JRNPO9BN220
  1801. ComponentSymbolReference37=CAP
  1802. ComponentUpdate37=1
  1803. ComponentIsDeviceSheet37=0
  1804. ComponentLibIdentifierKind38=Library Name And Type
  1805. ComponentLibraryIdentifier38=MKP_lib.DbLib/Components
  1806. ComponentDesignItemID38=CC0402KRX7R7BB104
  1807. ComponentSymbolReference38=CAP
  1808. ComponentUpdate38=1
  1809. ComponentIsDeviceSheet38=0
  1810. ComponentLibIdentifierKind39=Library Name And Type
  1811. ComponentLibraryIdentifier39=MKP_lib.DbLib/Components
  1812. ComponentDesignItemID39=CC0402KRX7R9BB822
  1813. ComponentSymbolReference39=CAP
  1814. ComponentUpdate39=1
  1815. ComponentIsDeviceSheet39=0
  1816. ComponentLibIdentifierKind40=Library Name And Type
  1817. ComponentLibraryIdentifier40=MKP_lib.DbLib/Components
  1818. ComponentDesignItemID40=CC0603JRNPO9BN750
  1819. ComponentSymbolReference40=CAP
  1820. ComponentUpdate40=1
  1821. ComponentIsDeviceSheet40=0
  1822. ComponentLibIdentifierKind41=Library Name And Type
  1823. ComponentLibraryIdentifier41=MKP_lib.DbLib/Components
  1824. ComponentDesignItemID41=CC0603KRX7R9BB104
  1825. ComponentSymbolReference41=CAP
  1826. ComponentUpdate41=1
  1827. ComponentIsDeviceSheet41=0
  1828. ComponentLibIdentifierKind42=Library Name And Type
  1829. ComponentLibraryIdentifier42=MKP_lib.DbLib/Components
  1830. ComponentDesignItemID42=CC0603KRX7R9BB474
  1831. ComponentSymbolReference42=CAP
  1832. ComponentUpdate42=1
  1833. ComponentIsDeviceSheet42=0
  1834. ComponentLibIdentifierKind43=Library Name And Type
  1835. ComponentLibraryIdentifier43=MKP_lib.DbLib/Components
  1836. ComponentDesignItemID43=CC0603KRX7R9BB561
  1837. ComponentSymbolReference43=CAP
  1838. ComponentUpdate43=1
  1839. ComponentIsDeviceSheet43=0
  1840. ComponentLibIdentifierKind44=Library Name And Type
  1841. ComponentLibraryIdentifier44=MKP_lib.DbLib/Components
  1842. ComponentDesignItemID44=CC0603KRX7R9BB563
  1843. ComponentSymbolReference44=CAP
  1844. ComponentUpdate44=1
  1845. ComponentIsDeviceSheet44=0
  1846. ComponentLibIdentifierKind45=Library Name And Type
  1847. ComponentLibraryIdentifier45=MKP_lib.DbLib/Components
  1848. ComponentDesignItemID45=CC1206KKX7R0BB104
  1849. ComponentSymbolReference45=CAP
  1850. ComponentUpdate45=1
  1851. ComponentIsDeviceSheet45=0
  1852. ComponentLibIdentifierKind46=Library Name And Type
  1853. ComponentLibraryIdentifier46=MKP_lib.DbLib/Components
  1854. ComponentDesignItemID46=CCTC TCC1206X7R225K101HT
  1855. ComponentSymbolReference46=CAP
  1856. ComponentUpdate46=1
  1857. ComponentIsDeviceSheet46=0
  1858. ComponentLibIdentifierKind47=Library Name And Type
  1859. ComponentLibraryIdentifier47=MKP_lib.DbLib/Components
  1860. ComponentDesignItemID47=CDRCH12D78BNP-220MC
  1861. ComponentSymbolReference47=DRQ125
  1862. ComponentUpdate47=1
  1863. ComponentIsDeviceSheet47=0
  1864. ComponentLibIdentifierKind48=Library Name And Type
  1865. ComponentLibraryIdentifier48=MKP_lib.DbLib/Components
  1866. ComponentDesignItemID48=CL05C330JB5NNNC
  1867. ComponentSymbolReference48=CAP
  1868. ComponentUpdate48=1
  1869. ComponentIsDeviceSheet48=0
  1870. ComponentLibIdentifierKind49=Library Name And Type
  1871. ComponentLibraryIdentifier49=MKP_lib.DbLib/Components
  1872. ComponentDesignItemID49=CL10A225KQ8NNNC
  1873. ComponentSymbolReference49=CAP
  1874. ComponentUpdate49=1
  1875. ComponentIsDeviceSheet49=0
  1876. ComponentLibIdentifierKind50=Library Name And Type
  1877. ComponentLibraryIdentifier50=MKP_lib.DbLib/Components
  1878. ComponentDesignItemID50=CL10A226MQ8NRNE
  1879. ComponentSymbolReference50=CAP
  1880. ComponentUpdate50=1
  1881. ComponentIsDeviceSheet50=0
  1882. ComponentLibIdentifierKind51=Library Name And Type
  1883. ComponentLibraryIdentifier51=MKP_lib.DbLib/Components
  1884. ComponentDesignItemID51=CMFA 103F3435
  1885. ComponentSymbolReference51=NTC
  1886. ComponentUpdate51=1
  1887. ComponentIsDeviceSheet51=0
  1888. ComponentLibIdentifierKind52=Library Name And Type
  1889. ComponentLibraryIdentifier52=MKP_lib.DbLib/Components
  1890. ComponentDesignItemID52=CS3225X7R106K500NRL
  1891. ComponentSymbolReference52=CAP
  1892. ComponentUpdate52=1
  1893. ComponentIsDeviceSheet52=0
  1894. ComponentLibIdentifierKind53=Library Name And Type
  1895. ComponentLibraryIdentifier53=MKP_lib.DbLib/Components
  1896. ComponentDesignItemID53=D-DMR009PM-D002
  1897. ComponentSymbolReference53=D-DMR009PM-D002
  1898. ComponentUpdate53=1
  1899. ComponentIsDeviceSheet53=0
  1900. ComponentLibIdentifierKind54=Library Name And Type
  1901. ComponentLibraryIdentifier54=MKP_lib.DbLib/Components
  1902. ComponentDesignItemID54=DLM0NSN900HY2D
  1903. ComponentSymbolReference54=Common Mode Filters
  1904. ComponentUpdate54=1
  1905. ComponentIsDeviceSheet54=0
  1906. ComponentLibIdentifierKind55=Library Name And Type
  1907. ComponentLibraryIdentifier55=MKP_lib.DbLib/Components
  1908. ComponentDesignItemID55=EMK316BBJ476ML-T
  1909. ComponentSymbolReference55=CAP
  1910. ComponentUpdate55=1
  1911. ComponentIsDeviceSheet55=0
  1912. ComponentLibIdentifierKind56=Library Name And Type
  1913. ComponentLibraryIdentifier56=MKP_lib.DbLib/Components
  1914. ComponentDesignItemID56=EMK325ABJ107MM-T
  1915. ComponentSymbolReference56=CAP
  1916. ComponentUpdate56=1
  1917. ComponentIsDeviceSheet56=0
  1918. ComponentLibIdentifierKind57=Library Name And Type
  1919. ComponentLibraryIdentifier57=MKP_lib.DbLib/Components
  1920. ComponentDesignItemID57=ESD5Z5V0
  1921. ComponentSymbolReference57=TVS
  1922. ComponentUpdate57=1
  1923. ComponentIsDeviceSheet57=0
  1924. ComponentLibIdentifierKind58=Library Name And Type
  1925. ComponentLibraryIdentifier58=MKP_lib.DbLib/Components
  1926. ComponentDesignItemID58=FCC0402B681K500AT
  1927. ComponentSymbolReference58=CAP
  1928. ComponentUpdate58=1
  1929. ComponentIsDeviceSheet58=0
  1930. ComponentLibIdentifierKind59=Library Name And Type
  1931. ComponentLibraryIdentifier59=MKP_lib.DbLib/Components
  1932. ComponentDesignItemID59=FN21N100J500PAG
  1933. ComponentSymbolReference59=CAP
  1934. ComponentUpdate59=1
  1935. ComponentIsDeviceSheet59=0
  1936. ComponentLibIdentifierKind60=Library Name And Type
  1937. ComponentLibraryIdentifier60=MKP_lib.DbLib/Components
  1938. ComponentDesignItemID60=HNB09A05
  1939. ComponentSymbolReference60=BUZZER
  1940. ComponentUpdate60=1
  1941. ComponentIsDeviceSheet60=0
  1942. ComponentLibIdentifierKind61=Library Name And Type
  1943. ComponentLibraryIdentifier61=MKP_lib.DbLib/Components
  1944. ComponentDesignItemID61=HR911105A
  1945. ComponentSymbolReference61=HR911105A
  1946. ComponentUpdate61=1
  1947. ComponentIsDeviceSheet61=0
  1948. ComponentLibIdentifierKind62=Library Name And Type
  1949. ComponentLibraryIdentifier62=MKP_lib.DbLib/Components
  1950. ComponentDesignItemID62=JUMP-2.0-4PIN-FM-TH
  1951. ComponentSymbolReference62=CON-4PIN
  1952. ComponentUpdate62=1
  1953. ComponentIsDeviceSheet62=0
  1954. ComponentLibIdentifierKind63=Library Name And Type
  1955. ComponentLibraryIdentifier63=MKP_lib.DbLib/Components
  1956. ComponentDesignItemID63=KH-IPEX-K501-29
  1957. ComponentSymbolReference63=KH-IPEX-K501-29
  1958. ComponentUpdate63=1
  1959. ComponentIsDeviceSheet63=0
  1960. ComponentLibIdentifierKind64=Library Name And Type
  1961. ComponentLibraryIdentifier64=MKP_lib.DbLib/Components
  1962. ComponentDesignItemID64=LBSS139LT1G
  1963. ComponentSymbolReference64=N-Channel
  1964. ComponentUpdate64=1
  1965. ComponentIsDeviceSheet64=0
  1966. ComponentLibIdentifierKind65=Library Name And Type
  1967. ComponentLibraryIdentifier65=MKP_lib.DbLib/Components
  1968. ComponentDesignItemID65=LK8563T
  1969. ComponentSymbolReference65=LK8563T
  1970. ComponentUpdate65=1
  1971. ComponentIsDeviceSheet65=0
  1972. ComponentLibIdentifierKind66=Library Name And Type
  1973. ComponentLibraryIdentifier66=MKP_lib.DbLib/Components
  1974. ComponentDesignItemID66=LM3481MMX/NOPB
  1975. ComponentSymbolReference66=LM3481MMX/NOPB
  1976. ComponentUpdate66=1
  1977. ComponentIsDeviceSheet66=0
  1978. ComponentLibIdentifierKind67=Library Name And Type
  1979. ComponentLibraryIdentifier67=MKP_lib.DbLib/Components
  1980. ComponentDesignItemID67=LM393DR
  1981. ComponentSymbolReference67=LM358
  1982. ComponentUpdate67=1
  1983. ComponentIsDeviceSheet67=0
  1984. ComponentLibIdentifierKind68=Library Name And Type
  1985. ComponentLibraryIdentifier68=MKP_lib.DbLib/Components
  1986. ComponentDesignItemID68=LM-AZ6118-01F
  1987. ComponentSymbolReference68=TVS
  1988. ComponentUpdate68=1
  1989. ComponentIsDeviceSheet68=0
  1990. ComponentLibIdentifierKind69=Library Name And Type
  1991. ComponentLibraryIdentifier69=MKP_lib.DbLib/Components
  1992. ComponentDesignItemID69=LMR14050SDDAR
  1993. ComponentSymbolReference69=LMR14050SDDAR
  1994. ComponentUpdate69=1
  1995. ComponentIsDeviceSheet69=0
  1996. ComponentLibIdentifierKind70=Library Name And Type
  1997. ComponentLibraryIdentifier70=MKP_lib.DbLib/Components
  1998. ComponentDesignItemID70=M6110-01
  1999. ComponentSymbolReference70=M6110-01
  2000. ComponentUpdate70=1
  2001. ComponentIsDeviceSheet70=0
  2002. ComponentLibIdentifierKind71=Library Name And Type
  2003. ComponentLibraryIdentifier71=MKP_lib.DbLib/Components
  2004. ComponentDesignItemID71=M7
  2005. ComponentSymbolReference71=Diode
  2006. ComponentUpdate71=1
  2007. ComponentIsDeviceSheet71=0
  2008. ComponentLibIdentifierKind72=Library Name And Type
  2009. ComponentLibraryIdentifier72=MKP_lib.DbLib/Components
  2010. ComponentDesignItemID72=MAX3232CDR
  2011. ComponentSymbolReference72=Max3232
  2012. ComponentUpdate72=1
  2013. ComponentIsDeviceSheet72=0
  2014. ComponentLibIdentifierKind73=Library Name And Type
  2015. ComponentLibraryIdentifier73=MKP_lib.DbLib/Components
  2016. ComponentDesignItemID73=MMBT3904-TP
  2017. ComponentSymbolReference73=NPN
  2018. ComponentUpdate73=1
  2019. ComponentIsDeviceSheet73=0
  2020. ComponentLibIdentifierKind74=Library Name And Type
  2021. ComponentLibraryIdentifier74=MKP_lib.DbLib/Components
  2022. ComponentDesignItemID74=MMSZ5231B-7-F
  2023. ComponentSymbolReference74=ZENER
  2024. ComponentUpdate74=1
  2025. ComponentIsDeviceSheet74=0
  2026. ComponentLibIdentifierKind75=Library Name And Type
  2027. ComponentLibraryIdentifier75=MKP_lib.DbLib/Components
  2028. ComponentDesignItemID75=PDS760-13
  2029. ComponentSymbolReference75=Diode_SCHOTTKY_3_pins
  2030. ComponentUpdate75=1
  2031. ComponentIsDeviceSheet75=0
  2032. ComponentLibIdentifierKind76=Library Name And Type
  2033. ComponentLibraryIdentifier76=MKP_lib.DbLib/Components
  2034. ComponentDesignItemID76=PE1206DRF7W0R015L
  2035. ComponentSymbolReference76=RES
  2036. ComponentUpdate76=1
  2037. ComponentIsDeviceSheet76=0
  2038. ComponentLibIdentifierKind77=Library Name And Type
  2039. ComponentLibraryIdentifier77=MKP_lib.DbLib/Components
  2040. ComponentDesignItemID77=PM200V-12-12-H43
  2041. ComponentSymbolReference77=CON-2X6PIN
  2042. ComponentUpdate77=1
  2043. ComponentIsDeviceSheet77=0
  2044. ComponentLibIdentifierKind78=Library Name And Type
  2045. ComponentLibraryIdentifier78=MKP_lib.DbLib/Components
  2046. ComponentDesignItemID78=PSPMAA0605H-6R8M-ANP
  2047. ComponentSymbolReference78=IND
  2048. ComponentUpdate78=1
  2049. ComponentIsDeviceSheet78=0
  2050. ComponentLibIdentifierKind79=Library Name And Type
  2051. ComponentLibraryIdentifier79=MKP_lib.DbLib/Components
  2052. ComponentDesignItemID79=PTVS5V0S1UR
  2053. ComponentSymbolReference79=TVS
  2054. ComponentUpdate79=1
  2055. ComponentIsDeviceSheet79=0
  2056. ComponentLibIdentifierKind80=Library Name And Type
  2057. ComponentLibraryIdentifier80=MKP_lib.DbLib/Components
  2058. ComponentDesignItemID80=RC0402DR-07118KL
  2059. ComponentSymbolReference80=RES
  2060. ComponentUpdate80=1
  2061. ComponentIsDeviceSheet80=0
  2062. ComponentLibIdentifierKind81=Library Name And Type
  2063. ComponentLibraryIdentifier81=MKP_lib.DbLib/Components
  2064. ComponentDesignItemID81=RC0402FR-070RL
  2065. ComponentSymbolReference81=RES
  2066. ComponentUpdate81=1
  2067. ComponentIsDeviceSheet81=0
  2068. ComponentLibIdentifierKind82=Library Name And Type
  2069. ComponentLibraryIdentifier82=MKP_lib.DbLib/Components
  2070. ComponentDesignItemID82=RC0402FR-07100KL
  2071. ComponentSymbolReference82=RES
  2072. ComponentUpdate82=1
  2073. ComponentIsDeviceSheet82=0
  2074. ComponentLibIdentifierKind83=Library Name And Type
  2075. ComponentLibraryIdentifier83=MKP_lib.DbLib/Components
  2076. ComponentDesignItemID83=RC0402FR-07100RL
  2077. ComponentSymbolReference83=RES
  2078. ComponentUpdate83=1
  2079. ComponentIsDeviceSheet83=0
  2080. ComponentLibIdentifierKind84=Library Name And Type
  2081. ComponentLibraryIdentifier84=MKP_lib.DbLib/Components
  2082. ComponentDesignItemID84=RC0402FR-07105KL
  2083. ComponentSymbolReference84=RES
  2084. ComponentUpdate84=1
  2085. ComponentIsDeviceSheet84=0
  2086. ComponentLibIdentifierKind85=Library Name And Type
  2087. ComponentLibraryIdentifier85=MKP_lib.DbLib/Components
  2088. ComponentDesignItemID85=RC0402FR-0710KL
  2089. ComponentSymbolReference85=RES
  2090. ComponentUpdate85=1
  2091. ComponentIsDeviceSheet85=0
  2092. ComponentLibIdentifierKind86=Library Name And Type
  2093. ComponentLibraryIdentifier86=MKP_lib.DbLib/Components
  2094. ComponentDesignItemID86=RC0402FR-0710RL
  2095. ComponentSymbolReference86=RES
  2096. ComponentUpdate86=1
  2097. ComponentIsDeviceSheet86=0
  2098. ComponentLibIdentifierKind87=Library Name And Type
  2099. ComponentLibraryIdentifier87=MKP_lib.DbLib/Components
  2100. ComponentDesignItemID87=RC0402FR-0712KL
  2101. ComponentSymbolReference87=RES
  2102. ComponentUpdate87=1
  2103. ComponentIsDeviceSheet87=0
  2104. ComponentLibIdentifierKind88=Library Name And Type
  2105. ComponentLibraryIdentifier88=MKP_lib.DbLib/Components
  2106. ComponentDesignItemID88=RC0402FR-0715KL
  2107. ComponentSymbolReference88=RES
  2108. ComponentUpdate88=1
  2109. ComponentIsDeviceSheet88=0
  2110. ComponentLibIdentifierKind89=Library Name And Type
  2111. ComponentLibraryIdentifier89=MKP_lib.DbLib/Components
  2112. ComponentDesignItemID89=RC0402FR-071K2L
  2113. ComponentSymbolReference89=RES
  2114. ComponentUpdate89=1
  2115. ComponentIsDeviceSheet89=0
  2116. ComponentLibIdentifierKind90=Library Name And Type
  2117. ComponentLibraryIdentifier90=MKP_lib.DbLib/Components
  2118. ComponentDesignItemID90=RC0402FR-071K91L
  2119. ComponentSymbolReference90=RES
  2120. ComponentUpdate90=1
  2121. ComponentIsDeviceSheet90=0
  2122. ComponentLibIdentifierKind91=Library Name And Type
  2123. ComponentLibraryIdentifier91=MKP_lib.DbLib/Components
  2124. ComponentDesignItemID91=RC0402FR-071KL
  2125. ComponentSymbolReference91=RES
  2126. ComponentUpdate91=1
  2127. ComponentIsDeviceSheet91=0
  2128. ComponentLibIdentifierKind92=Library Name And Type
  2129. ComponentLibraryIdentifier92=MKP_lib.DbLib/Components
  2130. ComponentDesignItemID92=RC0402FR-071ML
  2131. ComponentSymbolReference92=RES
  2132. ComponentUpdate92=1
  2133. ComponentIsDeviceSheet92=0
  2134. ComponentLibIdentifierKind93=Library Name And Type
  2135. ComponentLibraryIdentifier93=MKP_lib.DbLib/Components
  2136. ComponentDesignItemID93=RC0402FR-0721K5L
  2137. ComponentSymbolReference93=RES
  2138. ComponentUpdate93=1
  2139. ComponentIsDeviceSheet93=0
  2140. ComponentLibIdentifierKind94=Library Name And Type
  2141. ComponentLibraryIdentifier94=MKP_lib.DbLib/Components
  2142. ComponentDesignItemID94=RC0402FR-07220RL
  2143. ComponentSymbolReference94=RES
  2144. ComponentUpdate94=1
  2145. ComponentIsDeviceSheet94=0
  2146. ComponentLibIdentifierKind95=Library Name And Type
  2147. ComponentLibraryIdentifier95=MKP_lib.DbLib/Components
  2148. ComponentDesignItemID95=RC0402FR-0722RL
  2149. ComponentSymbolReference95=RES
  2150. ComponentUpdate95=1
  2151. ComponentIsDeviceSheet95=0
  2152. ComponentLibIdentifierKind96=Library Name And Type
  2153. ComponentLibraryIdentifier96=MKP_lib.DbLib/Components
  2154. ComponentDesignItemID96=RC0402FR-072K2L
  2155. ComponentSymbolReference96=RES
  2156. ComponentUpdate96=1
  2157. ComponentIsDeviceSheet96=0
  2158. ComponentLibIdentifierKind97=Library Name And Type
  2159. ComponentLibraryIdentifier97=MKP_lib.DbLib/Components
  2160. ComponentDesignItemID97=RC0402FR-0734KL
  2161. ComponentSymbolReference97=RES
  2162. ComponentUpdate97=1
  2163. ComponentIsDeviceSheet97=0
  2164. ComponentLibIdentifierKind98=Library Name And Type
  2165. ComponentLibraryIdentifier98=MKP_lib.DbLib/Components
  2166. ComponentDesignItemID98=RC0402FR-07357KL
  2167. ComponentSymbolReference98=RES
  2168. ComponentUpdate98=1
  2169. ComponentIsDeviceSheet98=0
  2170. ComponentLibIdentifierKind99=Library Name And Type
  2171. ComponentLibraryIdentifier99=MKP_lib.DbLib/Components
  2172. ComponentDesignItemID99=RC0402FR-073K3L
  2173. ComponentSymbolReference99=RES
  2174. ComponentUpdate99=1
  2175. ComponentIsDeviceSheet99=0
  2176. ComponentLibIdentifierKind100=Library Name And Type
  2177. ComponentLibraryIdentifier100=MKP_lib.DbLib/Components
  2178. ComponentDesignItemID100=RC0402FR-0745K3L
  2179. ComponentSymbolReference100=RES
  2180. ComponentUpdate100=1
  2181. ComponentIsDeviceSheet100=0
  2182. ComponentLibIdentifierKind101=Library Name And Type
  2183. ComponentLibraryIdentifier101=MKP_lib.DbLib/Components
  2184. ComponentDesignItemID101=RC0402FR-0747KL
  2185. ComponentSymbolReference101=RES
  2186. ComponentUpdate101=1
  2187. ComponentIsDeviceSheet101=0
  2188. ComponentLibIdentifierKind102=Library Name And Type
  2189. ComponentLibraryIdentifier102=MKP_lib.DbLib/Components
  2190. ComponentDesignItemID102=RC0402FR-07499KL
  2191. ComponentSymbolReference102=RES
  2192. ComponentUpdate102=1
  2193. ComponentIsDeviceSheet102=0
  2194. ComponentLibIdentifierKind103=Library Name And Type
  2195. ComponentLibraryIdentifier103=MKP_lib.DbLib/Components
  2196. ComponentDesignItemID103=RC0402FR-074K7L
  2197. ComponentSymbolReference103=RES
  2198. ComponentUpdate103=1
  2199. ComponentIsDeviceSheet103=0
  2200. ComponentLibIdentifierKind104=Library Name And Type
  2201. ComponentLibraryIdentifier104=MKP_lib.DbLib/Components
  2202. ComponentDesignItemID104=RC0402FR-074R02L
  2203. ComponentSymbolReference104=RES
  2204. ComponentUpdate104=1
  2205. ComponentIsDeviceSheet104=0
  2206. ComponentLibIdentifierKind105=Library Name And Type
  2207. ComponentLibraryIdentifier105=MKP_lib.DbLib/Components
  2208. ComponentDesignItemID105=RC0402FR-0751K1L
  2209. ComponentSymbolReference105=RES
  2210. ComponentUpdate105=1
  2211. ComponentIsDeviceSheet105=0
  2212. ComponentLibIdentifierKind106=Library Name And Type
  2213. ComponentLibraryIdentifier106=MKP_lib.DbLib/Components
  2214. ComponentDesignItemID106=RC0402FR-075K6L
  2215. ComponentSymbolReference106=RES
  2216. ComponentUpdate106=1
  2217. ComponentIsDeviceSheet106=0
  2218. ComponentLibIdentifierKind107=Library Name And Type
  2219. ComponentLibraryIdentifier107=MKP_lib.DbLib/Components
  2220. ComponentDesignItemID107=RC0402FR-0768KL
  2221. ComponentSymbolReference107=RES
  2222. ComponentUpdate107=1
  2223. ComponentIsDeviceSheet107=0
  2224. ComponentLibIdentifierKind108=Library Name And Type
  2225. ComponentLibraryIdentifier108=MKP_lib.DbLib/Components
  2226. ComponentDesignItemID108=RC0402FR-0775RL
  2227. ComponentSymbolReference108=RES
  2228. ComponentUpdate108=1
  2229. ComponentIsDeviceSheet108=0
  2230. ComponentLibIdentifierKind109=Library Name And Type
  2231. ComponentLibraryIdentifier109=MKP_lib.DbLib/Components
  2232. ComponentDesignItemID109=RC0402FR-0784K5L
  2233. ComponentSymbolReference109=RES
  2234. ComponentUpdate109=1
  2235. ComponentIsDeviceSheet109=0
  2236. ComponentLibIdentifierKind110=Library Name And Type
  2237. ComponentLibraryIdentifier110=MKP_lib.DbLib/Components
  2238. ComponentDesignItemID110=RC0603FR-0710KL
  2239. ComponentSymbolReference110=RES
  2240. ComponentUpdate110=1
  2241. ComponentIsDeviceSheet110=0
  2242. ComponentLibIdentifierKind111=Library Name And Type
  2243. ComponentLibraryIdentifier111=MKP_lib.DbLib/Components
  2244. ComponentDesignItemID111=RI0603L000JT
  2245. ComponentSymbolReference111=RES
  2246. ComponentUpdate111=1
  2247. ComponentIsDeviceSheet111=0
  2248. ComponentLibIdentifierKind112=Library Name And Type
  2249. ComponentLibraryIdentifier112=MKP_lib.DbLib/Components
  2250. ComponentDesignItemID112=RI0603L1002FT
  2251. ComponentSymbolReference112=RES
  2252. ComponentUpdate112=1
  2253. ComponentIsDeviceSheet112=0
  2254. ComponentLibIdentifierKind113=Library Name And Type
  2255. ComponentLibraryIdentifier113=MKP_lib.DbLib/Components
  2256. ComponentDesignItemID113=RI0603L1R00FT
  2257. ComponentSymbolReference113=RES
  2258. ComponentUpdate113=1
  2259. ComponentIsDeviceSheet113=0
  2260. ComponentLibIdentifierKind114=Library Name And Type
  2261. ComponentLibraryIdentifier114=MKP_lib.DbLib/Components
  2262. ComponentDesignItemID114=RI1206L000JT
  2263. ComponentSymbolReference114=RES
  2264. ComponentUpdate114=1
  2265. ComponentIsDeviceSheet114=0
  2266. ComponentLibIdentifierKind115=Library Name And Type
  2267. ComponentLibraryIdentifier115=MKP_lib.DbLib/Components
  2268. ComponentDesignItemID115=RT1H101M0810
  2269. ComponentSymbolReference115=CAPP
  2270. ComponentUpdate115=1
  2271. ComponentIsDeviceSheet115=0
  2272. ComponentLibIdentifierKind116=Library Name And Type
  2273. ComponentLibraryIdentifier116=MKP_lib.DbLib/Components
  2274. ComponentDesignItemID116=RVT1C471M0810
  2275. ComponentSymbolReference116=CAPP
  2276. ComponentUpdate116=1
  2277. ComponentIsDeviceSheet116=0
  2278. ComponentLibIdentifierKind117=Library Name And Type
  2279. ComponentLibraryIdentifier117=MKP_lib.DbLib/Components
  2280. ComponentDesignItemID117=RVT2A100M0605
  2281. ComponentSymbolReference117=CAPP
  2282. ComponentUpdate117=1
  2283. ComponentIsDeviceSheet117=0
  2284. ComponentLibIdentifierKind118=Library Name And Type
  2285. ComponentLibraryIdentifier118=MKP_lib.DbLib/Components
  2286. ComponentDesignItemID118=S10M
  2287. ComponentSymbolReference118=Diode
  2288. ComponentUpdate118=1
  2289. ComponentIsDeviceSheet118=0
  2290. ComponentLibIdentifierKind119=Library Name And Type
  2291. ComponentLibraryIdentifier119=MKP_lib.DbLib/Components
  2292. ComponentDesignItemID119=SI2333CDS
  2293. ComponentSymbolReference119=P-Channel
  2294. ComponentUpdate119=1
  2295. ComponentIsDeviceSheet119=0
  2296. ComponentLibIdentifierKind120=Library Name And Type
  2297. ComponentLibraryIdentifier120=MKP_lib.DbLib/Components
  2298. ComponentDesignItemID120=SIM65M-C
  2299. ComponentSymbolReference120=SIM65M-C
  2300. ComponentUpdate120=1
  2301. ComponentIsDeviceSheet120=0
  2302. ComponentLibIdentifierKind121=Library Name And Type
  2303. ComponentLibraryIdentifier121=MKP_lib.DbLib/Components
  2304. ComponentDesignItemID121=SMF05CT1G-P
  2305. ComponentSymbolReference121=SMF05CT1G-P
  2306. ComponentUpdate121=1
  2307. ComponentIsDeviceSheet121=0
  2308. ComponentLibIdentifierKind122=Library Name And Type
  2309. ComponentLibraryIdentifier122=MKP_lib.DbLib/Components
  2310. ComponentDesignItemID122=SMF36A
  2311. ComponentSymbolReference122=TVS
  2312. ComponentUpdate122=1
  2313. ComponentIsDeviceSheet122=0
  2314. ComponentLibIdentifierKind123=Library Name And Type
  2315. ComponentLibraryIdentifier123=MKP_lib.DbLib/Components
  2316. ComponentDesignItemID123=SR05-04A
  2317. ComponentSymbolReference123=SR05-04A
  2318. ComponentUpdate123=1
  2319. ComponentIsDeviceSheet123=0
  2320. ComponentLibIdentifierKind124=Library Name And Type
  2321. ComponentLibraryIdentifier124=MKP_lib.DbLib/Components
  2322. ComponentDesignItemID124=SS34A
  2323. ComponentSymbolReference124=SCHOTTKY
  2324. ComponentUpdate124=1
  2325. ComponentIsDeviceSheet124=0
  2326. ComponentLibIdentifierKind125=Library Name And Type
  2327. ComponentLibraryIdentifier125=MKP_lib.DbLib/Components
  2328. ComponentDesignItemID125=SS36F
  2329. ComponentSymbolReference125=SCHOTTKY
  2330. ComponentUpdate125=1
  2331. ComponentIsDeviceSheet125=0
  2332. ComponentLibIdentifierKind126=Library Name And Type
  2333. ComponentLibraryIdentifier126=MKP_lib.DbLib/Components
  2334. ComponentDesignItemID126=TLV75801PDBVR
  2335. ComponentSymbolReference126=SGM2028-ADJYN5G/TR
  2336. ComponentUpdate126=1
  2337. ComponentIsDeviceSheet126=0
  2338. ComponentLibIdentifierKind127=Library Name And Type
  2339. ComponentLibraryIdentifier127=MKP_lib.DbLib/Components
  2340. ComponentDesignItemID127=TP
  2341. ComponentSymbolReference127=TP
  2342. ComponentUpdate127=1
  2343. ComponentIsDeviceSheet127=0
  2344. ComponentLibIdentifierKind128=Library Name And Type
  2345. ComponentLibraryIdentifier128=MKP_lib.DbLib/Components
  2346. ComponentDesignItemID128=TS-1090S-AR02026
  2347. ComponentSymbolReference128=SW-4PIN
  2348. ComponentUpdate128=1
  2349. ComponentIsDeviceSheet128=0
  2350. ComponentLibIdentifierKind129=Library Name And Type
  2351. ComponentLibraryIdentifier129=MKP_lib.DbLib/Components
  2352. ComponentDesignItemID129=UPZ2012E102-1R5TF
  2353. ComponentSymbolReference129=FB
  2354. ComponentUpdate129=1
  2355. ComponentIsDeviceSheet129=0
  2356. ComponentLibIdentifierKind130=Library Name And Type
  2357. ComponentLibraryIdentifier130=MKP_lib.DbLib/Components
  2358. ComponentDesignItemID130=VHF100505HQ47NJT
  2359. ComponentSymbolReference130=IND
  2360. ComponentUpdate130=1
  2361. ComponentIsDeviceSheet130=0
  2362. ComponentLibIdentifierKind131=Library Name And Type
  2363. ComponentLibraryIdentifier131=MKP_lib.DbLib/Components
  2364. ComponentDesignItemID131=VHF100505HQ68NJT
  2365. ComponentSymbolReference131=IND
  2366. ComponentUpdate131=1
  2367. ComponentIsDeviceSheet131=0
  2368. ComponentLibIdentifierKind132=Library Name And Type
  2369. ComponentLibraryIdentifier132=MKP_lib.DbLib/Components
  2370. ComponentDesignItemID132=WE05DGCF-B
  2371. ComponentSymbolReference132=TVS-ESD
  2372. ComponentUpdate132=1
  2373. ComponentIsDeviceSheet132=0
  2374. ComponentLibIdentifierKind133=Library Name And Type
  2375. ComponentLibraryIdentifier133=MKP_lib.DbLib/Components
  2376. ComponentDesignItemID133=XL-1608SURC-06
  2377. ComponentSymbolReference133=LED
  2378. ComponentUpdate133=1
  2379. ComponentIsDeviceSheet133=0
  2380. ComponentLibIdentifierKind134=Library Name And Type
  2381. ComponentLibraryIdentifier134=MKP_lib.DbLib/Components
  2382. ComponentDesignItemID134=XL-1608SYGC-04
  2383. ComponentSymbolReference134=LED
  2384. ComponentUpdate134=1
  2385. ComponentIsDeviceSheet134=0
  2386. ComponentLibIdentifierKind135=Library Name And Type
  2387. ComponentLibraryIdentifier135=MKP_lib.DbLib/Components
  2388. ComponentDesignItemID135=XL-DZ304SURD/3
  2389. ComponentSymbolReference135=LED3
  2390. ComponentUpdate135=1
  2391. ComponentIsDeviceSheet135=0
  2392. ComponentLibIdentifierKind136=Library Name And Type
  2393. ComponentLibraryIdentifier136=MKP_lib.DbLib/Components
  2394. ComponentDesignItemID136=XS9922B
  2395. ComponentSymbolReference136=XS9922B
  2396. ComponentUpdate136=1
  2397. ComponentIsDeviceSheet136=0
  2398. ComponentLibIdentifierKind137=Library Name And Type
  2399. ComponentLibraryIdentifier137=MKP_lib.DbLib/Components
  2400. ComponentDesignItemID137=YAGEO RC0402FR-072R2L
  2401. ComponentSymbolReference137=RES
  2402. ComponentUpdate137=1
  2403. ComponentIsDeviceSheet137=0
  2404. ComponentLibIdentifierKind138=Library Name And Type
  2405. ComponentLibraryIdentifier138=MKP_lib.DbLib/Components
  2406. ComponentDesignItemID138=YI160808U100-5R0T
  2407. ComponentSymbolReference138=FB
  2408. ComponentUpdate138=1
  2409. ComponentIsDeviceSheet138=0
  2410. ComponentLibIdentifierKind139=Library Name And Type
  2411. ComponentLibraryIdentifier139=MKP_lib.DbLib/Components
  2412. ComponentDesignItemID139=ZD0650-2R2M
  2413. ComponentSymbolReference139=IND
  2414. ComponentUpdate139=1
  2415. ComponentIsDeviceSheet139=0
  2416. ComponentLibIdentifierKind140=Library Name And Type
  2417. ComponentLibraryIdentifier140=MKP_lib.DbLib
  2418. ComponentDesignItemID140=XH-2A
  2419. ComponentSymbolReference140=CON-2PIN
  2420. ComponentUpdate140=1
  2421. ComponentIsDeviceSheet140=0
  2422. ComponentLibIdentifierKind141=Library Name And Type
  2423. ComponentLibraryIdentifier141=MKP_lib.DbLib
  2424. ComponentDesignItemID141=XH-2AW
  2425. ComponentSymbolReference141=CON-2PIN
  2426. ComponentUpdate141=1
  2427. ComponentIsDeviceSheet141=0
  2428. FullReplace=1
  2429. UpdateDesignatorLock=1
  2430. UpdatePartIDLock=1
  2431. PreserveParameterLocations=1
  2432. PreserveParameterVisibility=1
  2433. DoGraphics=1
  2434. DoParameters=1
  2435. DoModels=1
  2436. AddParameters=0
  2437. RemoveParameters=0
  2438. AddModels=1
  2439. RemoveModels=1
  2440. UpdateCurrentModels=1
  2441. ParameterName0=Category
  2442. ParameterUpdate0=1
  2443. ParameterName1=Catelogy
  2444. ParameterUpdate1=1
  2445. ParameterName2=Comment
  2446. ParameterUpdate2=1
  2447. ParameterName3=Company ID
  2448. ParameterUpdate3=1
  2449. ParameterName4=Component Kind
  2450. ParameterUpdate4=1
  2451. ParameterName5=ComponentLink1Description
  2452. ParameterUpdate5=1
  2453. ParameterName6=ComponentLink1URL
  2454. ParameterUpdate6=1
  2455. ParameterName7=ComponentLink2Description
  2456. ParameterUpdate7=1
  2457. ParameterName8=ComponentLink2URL
  2458. ParameterUpdate8=1
  2459. ParameterName9=ComponentLink3Description
  2460. ParameterUpdate9=1
  2461. ParameterName10=ComponentLink3URL
  2462. ParameterUpdate10=1
  2463. ParameterName11=ComponentLink4Description
  2464. ParameterUpdate11=1
  2465. ParameterName12=ComponentLink4URL
  2466. ParameterUpdate12=1
  2467. ParameterName13=ComponentLink5Description
  2468. ParameterUpdate13=1
  2469. ParameterName14=ComponentLink5URL
  2470. ParameterUpdate14=1
  2471. ParameterName15=ComponentLink6Description
  2472. ParameterUpdate15=1
  2473. ParameterName16=ComponentLink6URL
  2474. ParameterUpdate16=1
  2475. ParameterName17=Contact Plating
  2476. ParameterUpdate17=1
  2477. ParameterName18=Continuous Drain Current (ID)
  2478. ParameterUpdate18=1
  2479. ParameterName19=Creator
  2480. ParameterUpdate19=1
  2481. ParameterName20=Current Rating
  2482. ParameterUpdate20=1
  2483. ParameterName21=Datasheet
  2484. ParameterUpdate21=1
  2485. ParameterName22=Des
  2486. ParameterUpdate22=1
  2487. ParameterName23=Description
  2488. ParameterUpdate23=1
  2489. ParameterName24=Detailed Value
  2490. ParameterUpdate24=1
  2491. ParameterName25=Drain to Source Breakdown Voltage
  2492. ParameterUpdate25=1
  2493. ParameterName26=Drain to Source Resistance
  2494. ParameterUpdate26=1
  2495. ParameterName27=Drain to Source Voltage (Vdss)
  2496. ParameterUpdate27=1
  2497. ParameterName28=Element Configuration
  2498. ParameterUpdate28=1
  2499. ParameterName29=Fall Time
  2500. ParameterUpdate29=1
  2501. ParameterName30=Gate to Source Voltage (Vgs)
  2502. ParameterUpdate30=1
  2503. ParameterName31=Height
  2504. ParameterUpdate31=1
  2505. ParameterName32=Input Capacitance
  2506. ParameterUpdate32=1
  2507. ParameterName33=Kieu_Chan
  2508. ParameterUpdate33=1
  2509. ParameterName34=Lead Free
  2510. ParameterUpdate34=1
  2511. ParameterName35=Length
  2512. ParameterUpdate35=1
  2513. ParameterName36=Library Reference
  2514. ParameterUpdate36=1
  2515. ParameterName37=Link sale
  2516. ParameterUpdate37=1
  2517. ParameterName38=MANU 1
  2518. ParameterUpdate38=1
  2519. ParameterName39=MANU 2
  2520. ParameterUpdate39=1
  2521. ParameterName40=Manufacture
  2522. ParameterUpdate40=1
  2523. ParameterName41=Manufacturer
  2524. ParameterUpdate41=1
  2525. ParameterName42=Manufacturer 1
  2526. ParameterUpdate42=1
  2527. ParameterName43=Manufacturer Part Number
  2528. ParameterUpdate43=1
  2529. ParameterName44=Manufacturer Part Number 1
  2530. ParameterUpdate44=1
  2531. ParameterName45=Max Operating Temperature
  2532. ParameterUpdate45=1
  2533. ParameterName46=Max Power Dissipation
  2534. ParameterUpdate46=1
  2535. ParameterName47=MFR
  2536. ParameterUpdate47=1
  2537. ParameterName48=Min Operating Temperature
  2538. ParameterUpdate48=1
  2539. ParameterName49=Mount
  2540. ParameterUpdate49=1
  2541. ParameterName50=Mounting type
  2542. ParameterUpdate50=1
  2543. ParameterName51=MPN
  2544. ParameterUpdate51=1
  2545. ParameterName52=Nominal Vgs
  2546. ParameterUpdate52=1
  2547. ParameterName53=Number of Elements
  2548. ParameterUpdate53=1
  2549. ParameterName54=Number of Pins
  2550. ParameterUpdate54=1
  2551. ParameterName55=Operating Temperature
  2552. ParameterUpdate55=1
  2553. ParameterName56=Package Quantity
  2554. ParameterUpdate56=1
  2555. ParameterName57=Packaging
  2556. ParameterUpdate57=1
  2557. ParameterName58=Parameter 1
  2558. ParameterUpdate58=1
  2559. ParameterName59=Part Num 1
  2560. ParameterUpdate59=1
  2561. ParameterName60=Part Num 2
  2562. ParameterUpdate60=1
  2563. ParameterName61=Partnumber
  2564. ParameterUpdate61=1
  2565. ParameterName62=Power Dissipation
  2566. ParameterUpdate62=1
  2567. ParameterName63=Pricing (USD)
  2568. ParameterUpdate63=1
  2569. ParameterName64=Pricing 1
  2570. ParameterUpdate64=1
  2571. ParameterName65=PROJECT
  2572. ParameterUpdate65=1
  2573. ParameterName66=Radiation Hardening
  2574. ParameterUpdate66=1
  2575. ParameterName67=Rds On Max
  2576. ParameterUpdate67=1
  2577. ParameterName68=REACH SVHC
  2578. ParameterUpdate68=1
  2579. ParameterName69=Rise Time
  2580. ParameterUpdate69=1
  2581. ParameterName70=RoHS
  2582. ParameterUpdate70=1
  2583. ParameterName71=Solder
  2584. ParameterUpdate71=1
  2585. ParameterName72=Stock 1
  2586. ParameterUpdate72=1
  2587. ParameterName73=Supplier
  2588. ParameterUpdate73=1
  2589. ParameterName74=Supplier 1
  2590. ParameterUpdate74=1
  2591. ParameterName75=Supplier Part Number 1
  2592. ParameterUpdate75=1
  2593. ParameterName76=System
  2594. ParameterUpdate76=1
  2595. ParameterName77=Temperature Coefficient
  2596. ParameterUpdate77=1
  2597. ParameterName78=Tolerance
  2598. ParameterUpdate78=1
  2599. ParameterName79=Turn-Off Delay Time
  2600. ParameterUpdate79=1
  2601. ParameterName80=Turn-On Delay Time
  2602. ParameterUpdate80=1
  2603. ParameterName81=Type
  2604. ParameterUpdate81=1
  2605. ParameterName82=Threshold Voltage
  2606. ParameterUpdate82=1
  2607. ParameterName83=Unit
  2608. ParameterUpdate83=1
  2609. ParameterName84=Value
  2610. ParameterUpdate84=1
  2611. ParameterName85=Voltage Rated
  2612. ParameterUpdate85=1
  2613. ParameterName86=Width
  2614. ParameterUpdate86=1
  2615. ModelTypeGroup0=PCBLIB
  2616. ModelTypeUpdate0=1
  2617. ModelType0=PCBLIB
  2618. ModelName0=0603
  2619. ModelUpdate0=1
  2620. ModelType1=PCBLIB
  2621. ModelName1=0603-GREEN
  2622. ModelUpdate1=1
  2623. ModelType2=PCBLIB
  2624. ModelName2=0603-RED
  2625. ModelUpdate2=1
  2626. ModelType3=PCBLIB
  2627. ModelName3=0603-YELLOW
  2628. ModelUpdate3=1
  2629. ModelType4=PCBLIB
  2630. ModelName4=0805
  2631. ModelUpdate4=1
  2632. ModelType5=PCBLIB
  2633. ModelName5=10-MSOP
  2634. ModelUpdate5=1
  2635. ModelType6=PCBLIB
  2636. ModelName6=2-SMD
  2637. ModelUpdate6=1
  2638. ModelType7=PCBLIB
  2639. ModelName7=2x6P, 2mm, TH, MALE
  2640. ModelUpdate7=1
  2641. ModelType8=PCBLIB
  2642. ModelName8=8-POWERIC
  2643. ModelUpdate8=1
  2644. ModelType9=PCBLIB
  2645. ModelName9=8-TSON_FIXED
  2646. ModelUpdate9=1
  2647. ModelType10=PCBLIB
  2648. ModelName10=A7677
  2649. ModelUpdate10=1
  2650. ModelType11=PCBLIB
  2651. ModelName11=AS0BC21S40BM7H
  2652. ModelUpdate11=1
  2653. ModelType12=PCBLIB
  2654. ModelName12=BZ-9x5.5
  2655. ModelUpdate12=1
  2656. ModelType13=PCBLIB
  2657. ModelName13=C0402
  2658. ModelUpdate13=1
  2659. ModelType14=PCBLIB
  2660. ModelName14=C0603X5R475K350NT
  2661. ModelUpdate14=1
  2662. ModelType15=PCBLIB
  2663. ModelName15=C1206
  2664. ModelUpdate15=1
  2665. ModelType16=PCBLIB
  2666. ModelName16=CAPC_0603_N
  2667. ModelUpdate16=1
  2668. ModelType17=PCBLIB
  2669. ModelName17=CAPC_0805_N
  2670. ModelUpdate17=1
  2671. ModelType18=PCBLIB
  2672. ModelName18=CAPC_1206_N
  2673. ModelUpdate18=1
  2674. ModelType19=PCBLIB
  2675. ModelName19=CAPC_1210_N
  2676. ModelUpdate19=1
  2677. ModelType20=PCBLIB
  2678. ModelName20=D0402
  2679. ModelUpdate20=1
  2680. ModelType21=PCBLIB
  2681. ModelName21=DFN1006-2L
  2682. ModelUpdate21=1
  2683. ModelType22=PCBLIB
  2684. ModelName22=DFN1006P2X
  2685. ModelUpdate22=1
  2686. ModelType23=PCBLIB
  2687. ModelName23=DIO-SMA
  2688. ModelUpdate23=1
  2689. ModelType24=PCBLIB
  2690. ModelName24=DIO-SMAF
  2691. ModelUpdate24=1
  2692. ModelType25=PCBLIB
  2693. ModelName25=DIP-6-2.54mm
  2694. ModelUpdate25=1
  2695. ModelType26=PCBLIB
  2696. ModelName26=D-Sub-9P-Male
  2697. ModelUpdate26=1
  2698. ModelType27=PCBLIB
  2699. ModelName27=ETA6003Q3Q-QFN16G-0.5-3X3MM
  2700. ModelUpdate27=1
  2701. ModelType28=PCBLIB
  2702. ModelName28=FERRITE_0402
  2703. ModelUpdate28=1
  2704. ModelType29=PCBLIB
  2705. ModelName29=HEADER_4PIN_2.54
  2706. ModelUpdate29=1
  2707. ModelType30=PCBLIB
  2708. ModelName30=HEATSINK
  2709. ModelUpdate30=1
  2710. ModelType31=PCBLIB
  2711. ModelName31=IND-12.2x12.2
  2712. ModelUpdate31=1
  2713. ModelType32=PCBLIB
  2714. ModelName32=IND-3x3
  2715. ModelUpdate32=1
  2716. ModelType33=PCBLIB
  2717. ModelName33=IND-4x4
  2718. ModelUpdate33=1
  2719. ModelType34=PCBLIB
  2720. ModelName34=IND-7X6.6
  2721. ModelUpdate34=1
  2722. ModelType35=PCBLIB
  2723. ModelName35=IPEX
  2724. ModelUpdate35=1
  2725. ModelType36=PCBLIB
  2726. ModelName36=JUMP_4PIN_2.0
  2727. ModelUpdate36=1
  2728. ModelType37=PCBLIB
  2729. ModelName37=JUMP-2.0-4PIN-FM-TH
  2730. ModelUpdate37=1
  2731. ModelType38=PCBLIB
  2732. ModelName38=L0402
  2733. ModelUpdate38=1
  2734. ModelType39=PCBLIB
  2735. ModelName39=M2_M_KEY_CONNECT_P
  2736. ModelUpdate39=1
  2737. ModelType40=PCBLIB
  2738. ModelName40=MUP-C7802-02
  2739. ModelUpdate40=1
  2740. ModelType41=PCBLIB
  2741. ModelName41=MUP-M6110-01
  2742. ModelUpdate41=1
  2743. ModelType42=PCBLIB
  2744. ModelName42=Power-DI-5
  2745. ModelUpdate42=1
  2746. ModelType43=PCBLIB
  2747. ModelName43=QFN-88(10x10mm)
  2748. ModelUpdate43=1
  2749. ModelType44=PCBLIB
  2750. ModelName44=QFP50P1200X1200X170-64N
  2751. ModelUpdate44=1
  2752. ModelType45=PCBLIB
  2753. ModelName45=Quectel L76
  2754. ModelUpdate45=1
  2755. ModelType46=PCBLIB
  2756. ModelName46=R0402
  2757. ModelUpdate46=1
  2758. ModelType47=PCBLIB
  2759. ModelName47=RESC_0603_N
  2760. ModelUpdate47=1
  2761. ModelType48=PCBLIB
  2762. ModelName48=RESC_1206_N
  2763. ModelUpdate48=1
  2764. ModelType49=PCBLIB
  2765. ModelName49=RJ45
  2766. ModelUpdate49=1
  2767. ModelType50=PCBLIB
  2768. ModelName50=RJ45-HR911105A
  2769. ModelUpdate50=1
  2770. ModelType51=PCBLIB
  2771. ModelName51=SIM65M-C
  2772. ModelUpdate51=1
  2773. ModelType52=PCBLIB
  2774. ModelName52=SMC(DO-214AB)
  2775. ModelUpdate52=1
  2776. ModelType53=PCBLIB
  2777. ModelName53=SMD,D6.3xL5.4mm
  2778. ModelUpdate53=1
  2779. ModelType54=PCBLIB
  2780. ModelName54=SMD2016-4P
  2781. ModelUpdate54=1
  2782. ModelType55=PCBLIB
  2783. ModelName55=SMD-4P,0.8x0.6mm
  2784. ModelUpdate55=1
  2785. ModelType56=PCBLIB
  2786. ModelName56=SMD-ALU-D8xL10.2mm
  2787. ModelUpdate56=1
  2788. ModelType57=PCBLIB
  2789. ModelName57=SMF05C
  2790. ModelUpdate57=1
  2791. ModelType58=PCBLIB
  2792. ModelName58=SOD123
  2793. ModelUpdate58=1
  2794. ModelType59=PCBLIB
  2795. ModelName59=SOD-123FL
  2796. ModelUpdate59=1
  2797. ModelType60=PCBLIB
  2798. ModelName60=SOD-523
  2799. ModelUpdate60=1
  2800. ModelType61=PCBLIB
  2801. ModelName61=SOIC127P600X175-16N
  2802. ModelUpdate61=1
  2803. ModelType62=PCBLIB
  2804. ModelName62=SOIC-16
  2805. ModelUpdate62=1
  2806. ModelType63=PCBLIB
  2807. ModelName63=SOIC-8
  2808. ModelUpdate63=1
  2809. ModelType64=PCBLIB
  2810. ModelName64=SOT-23-132
  2811. ModelUpdate64=1
  2812. ModelType65=PCBLIB
  2813. ModelName65=SOT-23-3
  2814. ModelUpdate65=1
  2815. ModelType66=PCBLIB
  2816. ModelName66=SOT-23-5
  2817. ModelUpdate66=1
  2818. ModelType67=PCBLIB
  2819. ModelName67=SOT-363-6
  2820. ModelUpdate67=1
  2821. ModelType68=PCBLIB
  2822. ModelName68=SW4-SMD
  2823. ModelUpdate68=1
  2824. ModelType69=PCBLIB
  2825. ModelName69=TP-SMD
  2826. ModelUpdate69=1
  2827. ModelType70=PCBLIB
  2828. ModelName70=TSOT-23-6
  2829. ModelUpdate70=1
  2830. ModelType71=PCBLIB
  2831. ModelName71=TH-0.8-0.5-M1.4
  2832. ModelUpdate71=1
  2833. ModelType72=PCBLIB
  2834. ModelName72=VSONP-8(3.1x3.1)
  2835. ModelUpdate72=1
  2836. ModelType73=PCBLIB
  2837. ModelName73=XH2.54-2P-2.54
  2838. ModelUpdate73=1
  2839. ModelType74=PCBLIB
  2840. ModelName74=XH2.54-2P-R
  2841. ModelUpdate74=1
  2842. ModelTypeGroup1=SI
  2843. ModelTypeUpdate1=1
  2844. ModelType75=SI
  2845. ModelName75=Cap
  2846. ModelUpdate75=1
  2847. ModelTypeGroup2=SIM
  2848. ModelTypeUpdate2=1
  2849. ModelType76=SIM
  2850. ModelName76=CAP
  2851. ModelUpdate76=1
  2852. ModelType77=SIM
  2853. ModelName77=CSD16323Q3
  2854. ModelUpdate77=1
  2855. [DatabaseUpdateOptions]
  2856. SelectedOnly=0
  2857. UpdateVariants=1
  2858. UpdateToLatestRevision=1
  2859. PartTypes=0
  2860. ComponentLibIdentifierKind0=Library Name And Type
  2861. ComponentLibraryIdentifier0=MKP_lib.DbLib/Components
  2862. ComponentDesignItemID0=0805CG330J500NT
  2863. ComponentSymbolReference0=CAP
  2864. ComponentUpdate0=1
  2865. ComponentIsDeviceSheet0=0
  2866. ComponentLibIdentifierKind1=Library Name And Type
  2867. ComponentLibraryIdentifier1=MKP_lib.DbLib/Components
  2868. ComponentDesignItemID1=150060YS75000
  2869. ComponentSymbolReference1=LED
  2870. ComponentUpdate1=1
  2871. ComponentIsDeviceSheet1=0
  2872. ComponentLibIdentifierKind2=Library Name And Type
  2873. ComponentLibraryIdentifier2=MKP_lib.DbLib/Components
  2874. ComponentDesignItemID2=2.54-2*8P
  2875. ComponentSymbolReference2=CON-8X2PIN
  2876. ComponentUpdate2=1
  2877. ComponentIsDeviceSheet2=0
  2878. ComponentLibIdentifierKind3=Library Name And Type
  2879. ComponentLibraryIdentifier3=MKP_lib.DbLib/Components
  2880. ComponentDesignItemID3=3.0-2*2A
  2881. ComponentSymbolReference3=CON-2X2PIN
  2882. ComponentUpdate3=1
  2883. ComponentIsDeviceSheet3=0
  2884. ComponentLibIdentifierKind4=Library Name And Type
  2885. ComponentLibraryIdentifier4=MKP_lib.DbLib/Components
  2886. ComponentDesignItemID4=3N27000G33YC
  2887. ComponentSymbolReference4=OSCILLATOR
  2888. ComponentUpdate4=1
  2889. ComponentIsDeviceSheet4=0
  2890. ComponentLibIdentifierKind5=Library Name And Type
  2891. ComponentLibraryIdentifier5=MKP_lib.DbLib/Components
  2892. ComponentDesignItemID5=A2541WV-4P
  2893. ComponentSymbolReference5=CON-4PIN
  2894. ComponentUpdate5=1
  2895. ComponentIsDeviceSheet5=0
  2896. ComponentLibIdentifierKind6=Library Name And Type
  2897. ComponentLibraryIdentifier6=MKP_lib.DbLib/Components
  2898. ComponentDesignItemID6=ABS07-32.768KHZ-T
  2899. ComponentSymbolReference6=XTL-2PIN
  2900. ComponentUpdate6=1
  2901. ComponentIsDeviceSheet6=0
  2902. ComponentLibIdentifierKind7=Library Name And Type
  2903. ComponentLibraryIdentifier7=MKP_lib.DbLib/Components
  2904. ComponentDesignItemID7=AC0402FR-07590KL
  2905. ComponentSymbolReference7=RES
  2906. ComponentUpdate7=1
  2907. ComponentIsDeviceSheet7=0
  2908. ComponentLibIdentifierKind8=Library Name And Type
  2909. ComponentLibraryIdentifier8=MKP_lib.DbLib/Components
  2910. ComponentDesignItemID8=AFC07-S20FCC-00
  2911. ComponentSymbolReference8=FFC-20P
  2912. ComponentUpdate8=1
  2913. ComponentIsDeviceSheet8=0
  2914. ComponentLibIdentifierKind9=Library Name And Type
  2915. ComponentLibraryIdentifier9=MKP_lib.DbLib/Components
  2916. ComponentDesignItemID9=APCI0146-P001A
  2917. ComponentSymbolReference9=APCI0146-P001A
  2918. ComponentUpdate9=1
  2919. ComponentIsDeviceSheet9=0
  2920. ComponentLibIdentifierKind10=Library Name And Type
  2921. ComponentLibraryIdentifier10=MKP_lib.DbLib/Components
  2922. ComponentDesignItemID10=APX823-26W5G-7
  2923. ComponentSymbolReference10=APX823-26W5G-7
  2924. ComponentUpdate10=1
  2925. ComponentIsDeviceSheet10=0
  2926. ComponentLibIdentifierKind11=Library Name And Type
  2927. ComponentLibraryIdentifier11=MKP_lib.DbLib/Components
  2928. ComponentDesignItemID11=AZ6118-01F
  2929. ComponentSymbolReference11=TVS
  2930. ComponentUpdate11=1
  2931. ComponentIsDeviceSheet11=0
  2932. ComponentLibIdentifierKind12=Library Name And Type
  2933. ComponentLibraryIdentifier12=MKP_lib.DbLib/Components
  2934. ComponentDesignItemID12=B72590D50H160
  2935. ComponentSymbolReference12=B72590D50H160
  2936. ComponentUpdate12=1
  2937. ComponentIsDeviceSheet12=0
  2938. ComponentLibIdentifierKind13=Library Name And Type
  2939. ComponentLibraryIdentifier13=MKP_lib.DbLib/Components
  2940. ComponentDesignItemID13=BLM18KG221SN1D
  2941. ComponentSymbolReference13=FB
  2942. ComponentUpdate13=1
  2943. ComponentIsDeviceSheet13=0
  2944. ComponentLibIdentifierKind14=Library Name And Type
  2945. ComponentLibraryIdentifier14=MKP_lib.DbLib/Components
  2946. ComponentDesignItemID14=BLM31KN121SN1L
  2947. ComponentSymbolReference14=FB
  2948. ComponentUpdate14=1
  2949. ComponentIsDeviceSheet14=0
  2950. ComponentLibIdentifierKind15=Library Name And Type
  2951. ComponentLibraryIdentifier15=MKP_lib.DbLib/Components
  2952. ComponentDesignItemID15=C0603X5R105K500NT
  2953. ComponentSymbolReference15=CAP
  2954. ComponentUpdate15=1
  2955. ComponentIsDeviceSheet15=0
  2956. ComponentLibIdentifierKind16=Library Name And Type
  2957. ComponentLibraryIdentifier16=MKP_lib.DbLib/Components
  2958. ComponentDesignItemID16=C0603X5R475K350NT
  2959. ComponentSymbolReference16=C0603X5R475K350NT
  2960. ComponentUpdate16=1
  2961. ComponentIsDeviceSheet16=0
  2962. ComponentLibIdentifierKind17=Library Name And Type
  2963. ComponentLibraryIdentifier17=MKP_lib.DbLib/Components
  2964. ComponentDesignItemID17=C0805X5R106K160NT
  2965. ComponentSymbolReference17=CAP
  2966. ComponentUpdate17=1
  2967. ComponentIsDeviceSheet17=0
  2968. ComponentLibIdentifierKind18=Library Name And Type
  2969. ComponentLibraryIdentifier18=MKP_lib.DbLib/Components
  2970. ComponentDesignItemID18=CC0402FRNPO9BN101
  2971. ComponentSymbolReference18=CAP
  2972. ComponentUpdate18=1
  2973. ComponentIsDeviceSheet18=0
  2974. ComponentLibIdentifierKind19=Library Name And Type
  2975. ComponentLibraryIdentifier19=MKP_lib.DbLib/Components
  2976. ComponentDesignItemID19=CC0402FRNPO9BN120
  2977. ComponentSymbolReference19=CAP
  2978. ComponentUpdate19=1
  2979. ComponentIsDeviceSheet19=0
  2980. ComponentLibIdentifierKind20=Library Name And Type
  2981. ComponentLibraryIdentifier20=MKP_lib.DbLib/Components
  2982. ComponentDesignItemID20=CC0402KRX7R7BB104
  2983. ComponentSymbolReference20=CAP
  2984. ComponentUpdate20=1
  2985. ComponentIsDeviceSheet20=0
  2986. ComponentLibIdentifierKind21=Library Name And Type
  2987. ComponentLibraryIdentifier21=MKP_lib.DbLib/Components
  2988. ComponentDesignItemID21=CC0402KRX7R9BB103
  2989. ComponentSymbolReference21=CAP
  2990. ComponentUpdate21=1
  2991. ComponentIsDeviceSheet21=0
  2992. ComponentLibIdentifierKind22=Library Name And Type
  2993. ComponentLibraryIdentifier22=MKP_lib.DbLib/Components
  2994. ComponentDesignItemID22=CC0402KRX7R9BB104
  2995. ComponentSymbolReference22=CAP
  2996. ComponentUpdate22=1
  2997. ComponentIsDeviceSheet22=0
  2998. ComponentLibIdentifierKind23=Library Name And Type
  2999. ComponentLibraryIdentifier23=MKP_lib.DbLib/Components
  3000. ComponentDesignItemID23=CC0603JRNPO9BN750
  3001. ComponentSymbolReference23=CAP
  3002. ComponentUpdate23=1
  3003. ComponentIsDeviceSheet23=0
  3004. ComponentLibIdentifierKind24=Library Name And Type
  3005. ComponentLibraryIdentifier24=MKP_lib.DbLib/Components
  3006. ComponentDesignItemID24=CC0603KRX7R9BB104
  3007. ComponentSymbolReference24=CAP
  3008. ComponentUpdate24=1
  3009. ComponentIsDeviceSheet24=0
  3010. ComponentLibIdentifierKind25=Library Name And Type
  3011. ComponentLibraryIdentifier25=MKP_lib.DbLib/Components
  3012. ComponentDesignItemID25=CC0603KRX7R9BB474
  3013. ComponentSymbolReference25=CAP
  3014. ComponentUpdate25=1
  3015. ComponentIsDeviceSheet25=0
  3016. ComponentLibIdentifierKind26=Library Name And Type
  3017. ComponentLibraryIdentifier26=MKP_lib.DbLib/Components
  3018. ComponentDesignItemID26=CC0603KRX7R9BB561
  3019. ComponentSymbolReference26=CAP
  3020. ComponentUpdate26=1
  3021. ComponentIsDeviceSheet26=0
  3022. ComponentLibIdentifierKind27=Library Name And Type
  3023. ComponentLibraryIdentifier27=MKP_lib.DbLib/Components
  3024. ComponentDesignItemID27=CC0603KRX7R9BB563
  3025. ComponentSymbolReference27=CAP
  3026. ComponentUpdate27=1
  3027. ComponentIsDeviceSheet27=0
  3028. ComponentLibIdentifierKind28=Library Name And Type
  3029. ComponentLibraryIdentifier28=MKP_lib.DbLib/Components
  3030. ComponentDesignItemID28=CC1206KKX7R0BB104
  3031. ComponentSymbolReference28=CAP
  3032. ComponentUpdate28=1
  3033. ComponentIsDeviceSheet28=0
  3034. ComponentLibIdentifierKind29=Library Name And Type
  3035. ComponentLibraryIdentifier29=MKP_lib.DbLib/Components
  3036. ComponentDesignItemID29=CCTC TCC1206X7R225K101HT
  3037. ComponentSymbolReference29=CAP
  3038. ComponentUpdate29=1
  3039. ComponentIsDeviceSheet29=0
  3040. ComponentLibIdentifierKind30=Library Name And Type
  3041. ComponentLibraryIdentifier30=MKP_lib.DbLib/Components
  3042. ComponentDesignItemID30=CL05A105KO5NNNC
  3043. ComponentSymbolReference30=CAP
  3044. ComponentUpdate30=1
  3045. ComponentIsDeviceSheet30=0
  3046. ComponentLibIdentifierKind31=Library Name And Type
  3047. ComponentLibraryIdentifier31=MKP_lib.DbLib/Components
  3048. ComponentDesignItemID31=CL05C330JB5NNNC
  3049. ComponentSymbolReference31=CAP
  3050. ComponentUpdate31=1
  3051. ComponentIsDeviceSheet31=0
  3052. ComponentLibIdentifierKind32=Library Name And Type
  3053. ComponentLibraryIdentifier32=MKP_lib.DbLib/Components
  3054. ComponentDesignItemID32=CL10A226MO7JZNC
  3055. ComponentSymbolReference32=CL10A226MO7JZNC
  3056. ComponentUpdate32=1
  3057. ComponentIsDeviceSheet32=0
  3058. ComponentLibIdentifierKind33=Library Name And Type
  3059. ComponentLibraryIdentifier33=MKP_lib.DbLib/Components
  3060. ComponentDesignItemID33=CL10A226MQ8NRNE
  3061. ComponentSymbolReference33=CAP
  3062. ComponentUpdate33=1
  3063. ComponentIsDeviceSheet33=0
  3064. ComponentLibIdentifierKind34=Library Name And Type
  3065. ComponentLibraryIdentifier34=MKP_lib.DbLib/Components
  3066. ComponentDesignItemID34=CL10A476MQ8QRNC
  3067. ComponentSymbolReference34=CAP
  3068. ComponentUpdate34=1
  3069. ComponentIsDeviceSheet34=0
  3070. ComponentLibIdentifierKind35=Library Name And Type
  3071. ComponentLibraryIdentifier35=MKP_lib.DbLib/Components
  3072. ComponentDesignItemID35=D-DMR009PM-D002
  3073. ComponentSymbolReference35=D-DMR009PM-D002
  3074. ComponentUpdate35=1
  3075. ComponentIsDeviceSheet35=0
  3076. ComponentLibIdentifierKind36=Library Name And Type
  3077. ComponentLibraryIdentifier36=MKP_lib.DbLib/Components
  3078. ComponentDesignItemID36=DLM0NSN900HY2D
  3079. ComponentSymbolReference36=Common Mode Filters
  3080. ComponentUpdate36=1
  3081. ComponentIsDeviceSheet36=0
  3082. ComponentLibIdentifierKind37=Library Name And Type
  3083. ComponentLibraryIdentifier37=MKP_lib.DbLib/Components
  3084. ComponentDesignItemID37=DRQ125-220-R
  3085. ComponentSymbolReference37=DRQ125
  3086. ComponentUpdate37=1
  3087. ComponentIsDeviceSheet37=0
  3088. ComponentLibIdentifierKind38=Library Name And Type
  3089. ComponentLibraryIdentifier38=MKP_lib.DbLib/Components
  3090. ComponentDesignItemID38=EC25EUGA-512-SGNS
  3091. ComponentSymbolReference38=EC25EUGA-512-SGNS
  3092. ComponentUpdate38=1
  3093. ComponentIsDeviceSheet38=0
  3094. ComponentLibIdentifierKind39=Library Name And Type
  3095. ComponentLibraryIdentifier39=MKP_lib.DbLib/Components
  3096. ComponentDesignItemID39=EL3H7(B)(TA)-VG
  3097. ComponentSymbolReference39=PS2801
  3098. ComponentUpdate39=1
  3099. ComponentIsDeviceSheet39=0
  3100. ComponentLibIdentifierKind40=Library Name And Type
  3101. ComponentLibraryIdentifier40=MKP_lib.DbLib/Components
  3102. ComponentDesignItemID40=EMK316BBJ476ML-T
  3103. ComponentSymbolReference40=CAP
  3104. ComponentUpdate40=1
  3105. ComponentIsDeviceSheet40=0
  3106. ComponentLibIdentifierKind41=Library Name And Type
  3107. ComponentLibraryIdentifier41=MKP_lib.DbLib/Components
  3108. ComponentDesignItemID41=ESD5Z5V0
  3109. ComponentSymbolReference41=TVS
  3110. ComponentUpdate41=1
  3111. ComponentIsDeviceSheet41=0
  3112. ComponentLibIdentifierKind42=Library Name And Type
  3113. ComponentLibraryIdentifier42=MKP_lib.DbLib/Components
  3114. ComponentDesignItemID42=EWK1HM101F11OT
  3115. ComponentSymbolReference42=CAPP
  3116. ComponentUpdate42=1
  3117. ComponentIsDeviceSheet42=0
  3118. ComponentLibIdentifierKind43=Library Name And Type
  3119. ComponentLibraryIdentifier43=MKP_lib.DbLib/Components
  3120. ComponentDesignItemID43=FN21N100J500PAG
  3121. ComponentSymbolReference43=CAP
  3122. ComponentUpdate43=1
  3123. ComponentIsDeviceSheet43=0
  3124. ComponentLibIdentifierKind44=Library Name And Type
  3125. ComponentLibraryIdentifier44=MKP_lib.DbLib/Components
  3126. ComponentDesignItemID44=GT-F0502SR20-24SMT01
  3127. ComponentSymbolReference44=CON-24PIN
  3128. ComponentUpdate44=1
  3129. ComponentIsDeviceSheet44=0
  3130. ComponentLibIdentifierKind45=Library Name And Type
  3131. ComponentLibraryIdentifier45=MKP_lib.DbLib/Components
  3132. ComponentDesignItemID45=HNB09A05
  3133. ComponentSymbolReference45=BUZZER
  3134. ComponentUpdate45=1
  3135. ComponentIsDeviceSheet45=0
  3136. ComponentLibIdentifierKind46=Library Name And Type
  3137. ComponentLibraryIdentifier46=MKP_lib.DbLib/Components
  3138. ComponentDesignItemID46=HT66F0021
  3139. ComponentSymbolReference46=HT66F0021
  3140. ComponentUpdate46=1
  3141. ComponentIsDeviceSheet46=0
  3142. ComponentLibIdentifierKind47=Library Name And Type
  3143. ComponentLibraryIdentifier47=MKP_lib.DbLib/Components
  3144. ComponentDesignItemID47=KH-IPEX-K501-29
  3145. ComponentSymbolReference47=KH-IPEX-K501-29
  3146. ComponentUpdate47=1
  3147. ComponentIsDeviceSheet47=0
  3148. ComponentLibIdentifierKind48=Library Name And Type
  3149. ComponentLibraryIdentifier48=MKP_lib.DbLib/Components
  3150. ComponentDesignItemID48=LBAT54CLT1G
  3151. ComponentSymbolReference48=DIODE-3
  3152. ComponentUpdate48=1
  3153. ComponentIsDeviceSheet48=0
  3154. ComponentLibIdentifierKind49=Library Name And Type
  3155. ComponentLibraryIdentifier49=MKP_lib.DbLib/Components
  3156. ComponentDesignItemID49=LBSS139LT1G
  3157. ComponentSymbolReference49=N-Channel
  3158. ComponentUpdate49=1
  3159. ComponentIsDeviceSheet49=0
  3160. ComponentLibIdentifierKind50=Library Name And Type
  3161. ComponentLibraryIdentifier50=MKP_lib.DbLib/Components
  3162. ComponentDesignItemID50=LK8563T
  3163. ComponentSymbolReference50=LK8563T
  3164. ComponentUpdate50=1
  3165. ComponentIsDeviceSheet50=0
  3166. ComponentLibIdentifierKind51=Library Name And Type
  3167. ComponentLibraryIdentifier51=MKP_lib.DbLib/Components
  3168. ComponentDesignItemID51=LM3481MMX/NOPB
  3169. ComponentSymbolReference51=LM3481MMX/NOPB
  3170. ComponentUpdate51=1
  3171. ComponentIsDeviceSheet51=0
  3172. ComponentLibIdentifierKind52=Library Name And Type
  3173. ComponentLibraryIdentifier52=MKP_lib.DbLib/Components
  3174. ComponentDesignItemID52=LM393DR
  3175. ComponentSymbolReference52=LM358
  3176. ComponentUpdate52=1
  3177. ComponentIsDeviceSheet52=0
  3178. ComponentLibIdentifierKind53=Library Name And Type
  3179. ComponentLibraryIdentifier53=MKP_lib.DbLib/Components
  3180. ComponentDesignItemID53=LM-SE05NRE14GA
  3181. ComponentSymbolReference53=LM-SE05NRE14GA
  3182. ComponentUpdate53=1
  3183. ComponentIsDeviceSheet53=0
  3184. ComponentLibIdentifierKind54=Library Name And Type
  3185. ComponentLibraryIdentifier54=MKP_lib.DbLib/Components
  3186. ComponentDesignItemID54=LQG15HS56NJ02D
  3187. ComponentSymbolReference54=IND
  3188. ComponentUpdate54=1
  3189. ComponentIsDeviceSheet54=0
  3190. ComponentLibIdentifierKind55=Library Name And Type
  3191. ComponentLibraryIdentifier55=MKP_lib.DbLib/Components
  3192. ComponentDesignItemID55=LQM2HPN2R2MGHL
  3193. ComponentSymbolReference55=IND
  3194. ComponentUpdate55=1
  3195. ComponentIsDeviceSheet55=0
  3196. ComponentLibIdentifierKind56=Library Name And Type
  3197. ComponentLibraryIdentifier56=MKP_lib.DbLib/Components
  3198. ComponentDesignItemID56=M7
  3199. ComponentSymbolReference56=Diode
  3200. ComponentUpdate56=1
  3201. ComponentIsDeviceSheet56=0
  3202. ComponentLibIdentifierKind57=Library Name And Type
  3203. ComponentLibraryIdentifier57=MKP_lib.DbLib/Components
  3204. ComponentDesignItemID57=MAI4020S-2R2MT
  3205. ComponentSymbolReference57=IND
  3206. ComponentUpdate57=1
  3207. ComponentIsDeviceSheet57=0
  3208. ComponentLibIdentifierKind58=Library Name And Type
  3209. ComponentLibraryIdentifier58=MKP_lib.DbLib/Components
  3210. ComponentDesignItemID58=MAX3232CDR
  3211. ComponentSymbolReference58=Max3232
  3212. ComponentUpdate58=1
  3213. ComponentIsDeviceSheet58=0
  3214. ComponentLibIdentifierKind59=Library Name And Type
  3215. ComponentLibraryIdentifier59=MKP_lib.DbLib/Components
  3216. ComponentDesignItemID59=MF-NSMF110-2
  3217. ComponentSymbolReference59=Fuse
  3218. ComponentUpdate59=1
  3219. ComponentIsDeviceSheet59=0
  3220. ComponentLibIdentifierKind60=Library Name And Type
  3221. ComponentLibraryIdentifier60=MKP_lib.DbLib/Components
  3222. ComponentDesignItemID60=MMBT3904-TP
  3223. ComponentSymbolReference60=NPN
  3224. ComponentUpdate60=1
  3225. ComponentIsDeviceSheet60=0
  3226. ComponentLibIdentifierKind61=Library Name And Type
  3227. ComponentLibraryIdentifier61=MKP_lib.DbLib/Components
  3228. ComponentDesignItemID61=MMBTA05LT1G
  3229. ComponentSymbolReference61=NPN
  3230. ComponentUpdate61=1
  3231. ComponentIsDeviceSheet61=0
  3232. ComponentLibIdentifierKind62=Library Name And Type
  3233. ComponentLibraryIdentifier62=MKP_lib.DbLib/Components
  3234. ComponentDesignItemID62=MR01A-01211
  3235. ComponentSymbolReference62=MicroSDCard
  3236. ComponentUpdate62=1
  3237. ComponentIsDeviceSheet62=0
  3238. ComponentLibIdentifierKind63=Library Name And Type
  3239. ComponentLibraryIdentifier63=MKP_lib.DbLib/Components
  3240. ComponentDesignItemID63=N4
  3241. ComponentSymbolReference63=N4
  3242. ComponentUpdate63=1
  3243. ComponentIsDeviceSheet63=0
  3244. ComponentLibIdentifierKind64=Library Name And Type
  3245. ComponentLibraryIdentifier64=MKP_lib.DbLib/Components
  3246. ComponentDesignItemID64=NDP2435KC
  3247. ComponentSymbolReference64=NDP2435KC
  3248. ComponentUpdate64=1
  3249. ComponentIsDeviceSheet64=0
  3250. ComponentLibIdentifierKind65=Library Name And Type
  3251. ComponentLibraryIdentifier65=MKP_lib.DbLib/Components
  3252. ComponentDesignItemID65=PA4341.103ANLT
  3253. ComponentSymbolReference65=IND
  3254. ComponentUpdate65=1
  3255. ComponentIsDeviceSheet65=0
  3256. ComponentLibIdentifierKind66=Library Name And Type
  3257. ComponentLibraryIdentifier66=MKP_lib.DbLib/Components
  3258. ComponentDesignItemID66=PE1206DRF7W0R015L
  3259. ComponentSymbolReference66=RES
  3260. ComponentUpdate66=1
  3261. ComponentIsDeviceSheet66=0
  3262. ComponentLibIdentifierKind67=Library Name And Type
  3263. ComponentLibraryIdentifier67=MKP_lib.DbLib/Components
  3264. ComponentDesignItemID67=PTVS5V0S1UR,115
  3265. ComponentSymbolReference67=TVS
  3266. ComponentUpdate67=1
  3267. ComponentIsDeviceSheet67=0
  3268. ComponentLibIdentifierKind68=Library Name And Type
  3269. ComponentLibraryIdentifier68=MKP_lib.DbLib/Components
  3270. ComponentDesignItemID68=PZ254R-12-4P
  3271. ComponentSymbolReference68=CON-2X2PIN
  3272. ComponentUpdate68=1
  3273. ComponentIsDeviceSheet68=0
  3274. ComponentLibIdentifierKind69=Library Name And Type
  3275. ComponentLibraryIdentifier69=MKP_lib.DbLib/Components
  3276. ComponentDesignItemID69=RC0402FR-070RL
  3277. ComponentSymbolReference69=RES
  3278. ComponentUpdate69=1
  3279. ComponentIsDeviceSheet69=0
  3280. ComponentLibIdentifierKind70=Library Name And Type
  3281. ComponentLibraryIdentifier70=MKP_lib.DbLib/Components
  3282. ComponentDesignItemID70=RC0402FR-07100KL
  3283. ComponentSymbolReference70=RES
  3284. ComponentUpdate70=1
  3285. ComponentIsDeviceSheet70=0
  3286. ComponentLibIdentifierKind71=Library Name And Type
  3287. ComponentLibraryIdentifier71=MKP_lib.DbLib/Components
  3288. ComponentDesignItemID71=RC0402FR-07100RL
  3289. ComponentSymbolReference71=RES
  3290. ComponentUpdate71=1
  3291. ComponentIsDeviceSheet71=0
  3292. ComponentLibIdentifierKind72=Library Name And Type
  3293. ComponentLibraryIdentifier72=MKP_lib.DbLib/Components
  3294. ComponentDesignItemID72=RC0402FR-07105KL
  3295. ComponentSymbolReference72=RES
  3296. ComponentUpdate72=1
  3297. ComponentIsDeviceSheet72=0
  3298. ComponentLibIdentifierKind73=Library Name And Type
  3299. ComponentLibraryIdentifier73=MKP_lib.DbLib/Components
  3300. ComponentDesignItemID73=RC0402FR-0710KL
  3301. ComponentSymbolReference73=RES
  3302. ComponentUpdate73=1
  3303. ComponentIsDeviceSheet73=0
  3304. ComponentLibIdentifierKind74=Library Name And Type
  3305. ComponentLibraryIdentifier74=MKP_lib.DbLib/Components
  3306. ComponentDesignItemID74=RC0402FR-0710RL
  3307. ComponentSymbolReference74=RES
  3308. ComponentUpdate74=1
  3309. ComponentIsDeviceSheet74=0
  3310. ComponentLibIdentifierKind75=Library Name And Type
  3311. ComponentLibraryIdentifier75=MKP_lib.DbLib/Components
  3312. ComponentDesignItemID75=RC0402FR-0715KL
  3313. ComponentSymbolReference75=RES
  3314. ComponentUpdate75=1
  3315. ComponentIsDeviceSheet75=0
  3316. ComponentLibIdentifierKind76=Library Name And Type
  3317. ComponentLibraryIdentifier76=MKP_lib.DbLib/Components
  3318. ComponentDesignItemID76=RC0402FR-071K91L
  3319. ComponentSymbolReference76=RES
  3320. ComponentUpdate76=1
  3321. ComponentIsDeviceSheet76=0
  3322. ComponentLibIdentifierKind77=Library Name And Type
  3323. ComponentLibraryIdentifier77=MKP_lib.DbLib/Components
  3324. ComponentDesignItemID77=RC0402FR-071KL
  3325. ComponentSymbolReference77=RES
  3326. ComponentUpdate77=1
  3327. ComponentIsDeviceSheet77=0
  3328. ComponentLibIdentifierKind78=Library Name And Type
  3329. ComponentLibraryIdentifier78=MKP_lib.DbLib/Components
  3330. ComponentDesignItemID78=RC0402FR-0720KL
  3331. ComponentSymbolReference78=RES
  3332. ComponentUpdate78=1
  3333. ComponentIsDeviceSheet78=0
  3334. ComponentLibIdentifierKind79=Library Name And Type
  3335. ComponentLibraryIdentifier79=MKP_lib.DbLib/Components
  3336. ComponentDesignItemID79=RC0402FR-0721K5L
  3337. ComponentSymbolReference79=RES
  3338. ComponentUpdate79=1
  3339. ComponentIsDeviceSheet79=0
  3340. ComponentLibIdentifierKind80=Library Name And Type
  3341. ComponentLibraryIdentifier80=MKP_lib.DbLib/Components
  3342. ComponentDesignItemID80=RC0402FR-0722RL
  3343. ComponentSymbolReference80=RES
  3344. ComponentUpdate80=1
  3345. ComponentIsDeviceSheet80=0
  3346. ComponentLibIdentifierKind81=Library Name And Type
  3347. ComponentLibraryIdentifier81=MKP_lib.DbLib/Components
  3348. ComponentDesignItemID81=RC0402FR-0724K9L
  3349. ComponentSymbolReference81=RES
  3350. ComponentUpdate81=1
  3351. ComponentIsDeviceSheet81=0
  3352. ComponentLibIdentifierKind82=Library Name And Type
  3353. ComponentLibraryIdentifier82=MKP_lib.DbLib/Components
  3354. ComponentDesignItemID82=RC0402FR-072K2L
  3355. ComponentSymbolReference82=RES
  3356. ComponentUpdate82=1
  3357. ComponentIsDeviceSheet82=0
  3358. ComponentLibIdentifierKind83=Library Name And Type
  3359. ComponentLibraryIdentifier83=MKP_lib.DbLib/Components
  3360. ComponentDesignItemID83=RC0402FR-072K49L
  3361. ComponentSymbolReference83=RES
  3362. ComponentUpdate83=1
  3363. ComponentIsDeviceSheet83=0
  3364. ComponentLibIdentifierKind84=Library Name And Type
  3365. ComponentLibraryIdentifier84=MKP_lib.DbLib/Components
  3366. ComponentDesignItemID84=RC0402FR-0734KL
  3367. ComponentSymbolReference84=RES
  3368. ComponentUpdate84=1
  3369. ComponentIsDeviceSheet84=0
  3370. ComponentLibIdentifierKind85=Library Name And Type
  3371. ComponentLibraryIdentifier85=MKP_lib.DbLib/Components
  3372. ComponentDesignItemID85=RC0402FR-0739K2L
  3373. ComponentSymbolReference85=RES
  3374. ComponentUpdate85=1
  3375. ComponentIsDeviceSheet85=0
  3376. ComponentLibIdentifierKind86=Library Name And Type
  3377. ComponentLibraryIdentifier86=MKP_lib.DbLib/Components
  3378. ComponentDesignItemID86=RC0402FR-073K3L
  3379. ComponentSymbolReference86=RES
  3380. ComponentUpdate86=1
  3381. ComponentIsDeviceSheet86=0
  3382. ComponentLibIdentifierKind87=Library Name And Type
  3383. ComponentLibraryIdentifier87=MKP_lib.DbLib/Components
  3384. ComponentDesignItemID87=RC0402FR-07470RL
  3385. ComponentSymbolReference87=RES
  3386. ComponentUpdate87=1
  3387. ComponentIsDeviceSheet87=0
  3388. ComponentLibIdentifierKind88=Library Name And Type
  3389. ComponentLibraryIdentifier88=MKP_lib.DbLib/Components
  3390. ComponentDesignItemID88=RC0402FR-0747KL
  3391. ComponentSymbolReference88=RES
  3392. ComponentUpdate88=1
  3393. ComponentIsDeviceSheet88=0
  3394. ComponentLibIdentifierKind89=Library Name And Type
  3395. ComponentLibraryIdentifier89=MKP_lib.DbLib/Components
  3396. ComponentDesignItemID89=RC0402FR-074K7L
  3397. ComponentSymbolReference89=RES
  3398. ComponentUpdate89=1
  3399. ComponentIsDeviceSheet89=0
  3400. ComponentLibIdentifierKind90=Library Name And Type
  3401. ComponentLibraryIdentifier90=MKP_lib.DbLib/Components
  3402. ComponentDesignItemID90=RC0402FR-0757K6P
  3403. ComponentSymbolReference90=RES
  3404. ComponentUpdate90=1
  3405. ComponentIsDeviceSheet90=0
  3406. ComponentLibIdentifierKind91=Library Name And Type
  3407. ComponentLibraryIdentifier91=MKP_lib.DbLib/Components
  3408. ComponentDesignItemID91=RC0402FR-075K6L
  3409. ComponentSymbolReference91=RES
  3410. ComponentUpdate91=1
  3411. ComponentIsDeviceSheet91=0
  3412. ComponentLibIdentifierKind92=Library Name And Type
  3413. ComponentLibraryIdentifier92=MKP_lib.DbLib/Components
  3414. ComponentDesignItemID92=RC0402FR-0768KL
  3415. ComponentSymbolReference92=RES
  3416. ComponentUpdate92=1
  3417. ComponentIsDeviceSheet92=0
  3418. ComponentLibIdentifierKind93=Library Name And Type
  3419. ComponentLibraryIdentifier93=MKP_lib.DbLib/Components
  3420. ComponentDesignItemID93=RC0402FR-0769K8L
  3421. ComponentSymbolReference93=RES
  3422. ComponentUpdate93=1
  3423. ComponentIsDeviceSheet93=0
  3424. ComponentLibIdentifierKind94=Library Name And Type
  3425. ComponentLibraryIdentifier94=MKP_lib.DbLib/Components
  3426. ComponentDesignItemID94=RC0402FR-076K8L
  3427. ComponentSymbolReference94=RES
  3428. ComponentUpdate94=1
  3429. ComponentIsDeviceSheet94=0
  3430. ComponentLibIdentifierKind95=Library Name And Type
  3431. ComponentLibraryIdentifier95=MKP_lib.DbLib/Components
  3432. ComponentDesignItemID95=RC0402FR-0775RL
  3433. ComponentSymbolReference95=RES
  3434. ComponentUpdate95=1
  3435. ComponentIsDeviceSheet95=0
  3436. ComponentLibIdentifierKind96=Library Name And Type
  3437. ComponentLibraryIdentifier96=MKP_lib.DbLib/Components
  3438. ComponentDesignItemID96=RC0402FR-0784K5L
  3439. ComponentSymbolReference96=RES
  3440. ComponentUpdate96=1
  3441. ComponentIsDeviceSheet96=0
  3442. ComponentLibIdentifierKind97=Library Name And Type
  3443. ComponentLibraryIdentifier97=MKP_lib.DbLib/Components
  3444. ComponentDesignItemID97=RI0603L000JT
  3445. ComponentSymbolReference97=RES
  3446. ComponentUpdate97=1
  3447. ComponentIsDeviceSheet97=0
  3448. ComponentLibIdentifierKind98=Library Name And Type
  3449. ComponentLibraryIdentifier98=MKP_lib.DbLib/Components
  3450. ComponentDesignItemID98=RI0603L1R00FT
  3451. ComponentSymbolReference98=RES
  3452. ComponentUpdate98=1
  3453. ComponentIsDeviceSheet98=0
  3454. ComponentLibIdentifierKind99=Library Name And Type
  3455. ComponentLibraryIdentifier99=MKP_lib.DbLib/Components
  3456. ComponentDesignItemID99=RI1206L000JT
  3457. ComponentSymbolReference99=RES
  3458. ComponentUpdate99=1
  3459. ComponentIsDeviceSheet99=0
  3460. ComponentLibIdentifierKind100=Library Name And Type
  3461. ComponentLibraryIdentifier100=MKP_lib.DbLib/Components
  3462. ComponentDesignItemID100=RS1G126XC5
  3463. ComponentSymbolReference100=RS1G126XC5
  3464. ComponentUpdate100=1
  3465. ComponentIsDeviceSheet100=0
  3466. ComponentLibIdentifierKind101=Library Name And Type
  3467. ComponentLibraryIdentifier101=MKP_lib.DbLib/Components
  3468. ComponentDesignItemID101=RT1H101M0810
  3469. ComponentSymbolReference101=CAPP
  3470. ComponentUpdate101=1
  3471. ComponentIsDeviceSheet101=0
  3472. ComponentLibIdentifierKind102=Library Name And Type
  3473. ComponentLibraryIdentifier102=MKP_lib.DbLib/Components
  3474. ComponentDesignItemID102=RT7-174AAM1A
  3475. ComponentSymbolReference102=RT7-174AAM1A
  3476. ComponentUpdate102=1
  3477. ComponentIsDeviceSheet102=0
  3478. ComponentLibIdentifierKind103=Library Name And Type
  3479. ComponentLibraryIdentifier103=MKP_lib.DbLib/Components
  3480. ComponentDesignItemID103=RVT1A331M0607
  3481. ComponentSymbolReference103=CAPP
  3482. ComponentUpdate103=1
  3483. ComponentIsDeviceSheet103=0
  3484. ComponentLibIdentifierKind104=Library Name And Type
  3485. ComponentLibraryIdentifier104=MKP_lib.DbLib/Components
  3486. ComponentDesignItemID104=RVT2A100M0605
  3487. ComponentSymbolReference104=CAPP
  3488. ComponentUpdate104=1
  3489. ComponentIsDeviceSheet104=0
  3490. ComponentLibIdentifierKind105=Library Name And Type
  3491. ComponentLibraryIdentifier105=MKP_lib.DbLib/Components
  3492. ComponentDesignItemID105=RY3408
  3493. ComponentSymbolReference105=RY3408
  3494. ComponentUpdate105=1
  3495. ComponentIsDeviceSheet105=0
  3496. ComponentLibIdentifierKind106=Library Name And Type
  3497. ComponentLibraryIdentifier106=MKP_lib.DbLib/Components
  3498. ComponentDesignItemID106=S10M
  3499. ComponentSymbolReference106=Diode
  3500. ComponentUpdate106=1
  3501. ComponentIsDeviceSheet106=0
  3502. ComponentLibIdentifierKind107=Library Name And Type
  3503. ComponentLibraryIdentifier107=MKP_lib.DbLib/Components
  3504. ComponentDesignItemID107=SGM2028-ADJYN5G/TR
  3505. ComponentSymbolReference107=SGM2028-ADJYN5G/TR
  3506. ComponentUpdate107=1
  3507. ComponentIsDeviceSheet107=0
  3508. ComponentLibIdentifierKind108=Library Name And Type
  3509. ComponentLibraryIdentifier108=MKP_lib.DbLib/Components
  3510. ComponentDesignItemID108=SI2333CDS
  3511. ComponentSymbolReference108=P-Channel
  3512. ComponentUpdate108=1
  3513. ComponentIsDeviceSheet108=0
  3514. ComponentLibIdentifierKind109=Library Name And Type
  3515. ComponentLibraryIdentifier109=MKP_lib.DbLib/Components
  3516. ComponentDesignItemID109=SIM8066-6-1-14-01-A
  3517. ComponentSymbolReference109=SIM8066-6-1-14-01-A
  3518. ComponentUpdate109=1
  3519. ComponentIsDeviceSheet109=0
  3520. ComponentLibIdentifierKind110=Library Name And Type
  3521. ComponentLibraryIdentifier110=MKP_lib.DbLib/Components
  3522. ComponentDesignItemID110=SMF05CT1G-P
  3523. ComponentSymbolReference110=SMF05CT1G-P
  3524. ComponentUpdate110=1
  3525. ComponentIsDeviceSheet110=0
  3526. ComponentLibIdentifierKind111=Library Name And Type
  3527. ComponentLibraryIdentifier111=MKP_lib.DbLib/Components
  3528. ComponentDesignItemID111=SMF54A
  3529. ComponentSymbolReference111=TVS
  3530. ComponentUpdate111=1
  3531. ComponentIsDeviceSheet111=0
  3532. ComponentLibIdentifierKind112=Library Name And Type
  3533. ComponentLibraryIdentifier112=MKP_lib.DbLib/Components
  3534. ComponentDesignItemID112=SR05-04A
  3535. ComponentSymbolReference112=SR05-04A
  3536. ComponentUpdate112=1
  3537. ComponentIsDeviceSheet112=0
  3538. ComponentLibIdentifierKind113=Library Name And Type
  3539. ComponentLibraryIdentifier113=MKP_lib.DbLib/Components
  3540. ComponentDesignItemID113=SRP6540-2R2M
  3541. ComponentSymbolReference113=IND
  3542. ComponentUpdate113=1
  3543. ComponentIsDeviceSheet113=0
  3544. ComponentLibIdentifierKind114=Library Name And Type
  3545. ComponentLibraryIdentifier114=MKP_lib.DbLib/Components
  3546. ComponentDesignItemID114=SS34A
  3547. ComponentSymbolReference114=SCHOTTKY
  3548. ComponentUpdate114=1
  3549. ComponentIsDeviceSheet114=0
  3550. ComponentLibIdentifierKind115=Library Name And Type
  3551. ComponentLibraryIdentifier115=MKP_lib.DbLib/Components
  3552. ComponentDesignItemID115=SS56F
  3553. ComponentSymbolReference115=SCHOTTKY
  3554. ComponentUpdate115=1
  3555. ComponentIsDeviceSheet115=0
  3556. ComponentLibIdentifierKind116=Library Name And Type
  3557. ComponentLibraryIdentifier116=MKP_lib.DbLib/Components
  3558. ComponentDesignItemID116=SX20Y025000B91T002
  3559. ComponentSymbolReference116=Q22FA12800078
  3560. ComponentUpdate116=1
  3561. ComponentIsDeviceSheet116=0
  3562. ComponentLibIdentifierKind117=Library Name And Type
  3563. ComponentLibraryIdentifier117=MKP_lib.DbLib/Components
  3564. ComponentDesignItemID117=TAJB476K010RNJ
  3565. ComponentSymbolReference117=CAPP
  3566. ComponentUpdate117=1
  3567. ComponentIsDeviceSheet117=0
  3568. ComponentLibIdentifierKind118=Library Name And Type
  3569. ComponentLibraryIdentifier118=MKP_lib.DbLib/Components
  3570. ComponentDesignItemID118=TannhietSOM
  3571. ComponentSymbolReference118=Tannhiet
  3572. ComponentUpdate118=1
  3573. ComponentIsDeviceSheet118=0
  3574. ComponentLibIdentifierKind119=Library Name And Type
  3575. ComponentLibraryIdentifier119=MKP_lib.DbLib/Components
  3576. ComponentDesignItemID119=TP
  3577. ComponentSymbolReference119=TP
  3578. ComponentUpdate119=1
  3579. ComponentIsDeviceSheet119=0
  3580. ComponentLibIdentifierKind120=Library Name And Type
  3581. ComponentLibraryIdentifier120=MKP_lib.DbLib/Components
  3582. ComponentDesignItemID120=TS-1090S-AR02026
  3583. ComponentSymbolReference120=SW-4PIN
  3584. ComponentUpdate120=1
  3585. ComponentIsDeviceSheet120=0
  3586. ComponentLibIdentifierKind121=Library Name And Type
  3587. ComponentLibraryIdentifier121=MKP_lib.DbLib/Components
  3588. ComponentDesignItemID121=UMK212B7104KG-T
  3589. ComponentSymbolReference121=CAP
  3590. ComponentUpdate121=1
  3591. ComponentIsDeviceSheet121=0
  3592. ComponentLibIdentifierKind122=Library Name And Type
  3593. ComponentLibraryIdentifier122=MKP_lib.DbLib/Components
  3594. ComponentDesignItemID122=UPZ2012E102-1R5TF
  3595. ComponentSymbolReference122=FB
  3596. ComponentUpdate122=1
  3597. ComponentIsDeviceSheet122=0
  3598. ComponentLibIdentifierKind123=Library Name And Type
  3599. ComponentLibraryIdentifier123=MKP_lib.DbLib/Components
  3600. ComponentDesignItemID123=VH3.96-3A
  3601. ComponentSymbolReference123=CON-3PIN
  3602. ComponentUpdate123=1
  3603. ComponentIsDeviceSheet123=0
  3604. ComponentLibIdentifierKind124=Library Name And Type
  3605. ComponentLibraryIdentifier124=MKP_lib.DbLib/Components
  3606. ComponentDesignItemID124=XL-1608SURC-06
  3607. ComponentSymbolReference124=LED
  3608. ComponentUpdate124=1
  3609. ComponentIsDeviceSheet124=0
  3610. ComponentLibIdentifierKind125=Library Name And Type
  3611. ComponentLibraryIdentifier125=MKP_lib.DbLib/Components
  3612. ComponentDesignItemID125=XL-1608SYGC-04
  3613. ComponentSymbolReference125=LED
  3614. ComponentUpdate125=1
  3615. ComponentIsDeviceSheet125=0
  3616. ComponentLibIdentifierKind126=Library Name And Type
  3617. ComponentLibraryIdentifier126=MKP_lib.DbLib/Components
  3618. ComponentDesignItemID126=XL-DZ304SURD/3
  3619. ComponentSymbolReference126=LED3
  3620. ComponentUpdate126=1
  3621. ComponentIsDeviceSheet126=0
  3622. ComponentLibIdentifierKind127=Library Name And Type
  3623. ComponentLibraryIdentifier127=MKP_lib.DbLib/Components
  3624. ComponentDesignItemID127=YI201209U601-2R5T
  3625. ComponentSymbolReference127=FB
  3626. ComponentUpdate127=1
  3627. ComponentIsDeviceSheet127=0
  3628. ComponentLibIdentifierKind128=Library Name And Type
  3629. ComponentLibraryIdentifier128=MKP_lib.DbLib/Components
  3630. ComponentDesignItemID128=YJL2305A
  3631. ComponentSymbolReference128=P-Channel
  3632. ComponentUpdate128=1
  3633. ComponentIsDeviceSheet128=0
  3634. ComponentLibIdentifierKind129=Library Name And Type
  3635. ComponentLibraryIdentifier129=MKP_lib.DbLib/Components
  3636. ComponentDesignItemID129=YT8531SH-CA
  3637. ComponentSymbolReference129=YT8531SH-CA
  3638. ComponentUpdate129=1
  3639. ComponentIsDeviceSheet129=0
  3640. ComponentLibIdentifierKind130=Library Name And Type
  3641. ComponentLibraryIdentifier130=MKP_lib.DbLib/Components
  3642. ComponentDesignItemID130=ZX-PZ2.54-2-3PZZ
  3643. ComponentSymbolReference130=CON-3x2PIN
  3644. ComponentUpdate130=1
  3645. ComponentIsDeviceSheet130=0
  3646. ComponentLibIdentifierKind131=Library Name And Type
  3647. ComponentLibraryIdentifier131=MKP_lib.DbLib
  3648. ComponentDesignItemID131=CSD19538Q3A
  3649. ComponentSymbolReference131=Mosfet N-Chanel
  3650. ComponentUpdate131=1
  3651. ComponentIsDeviceSheet131=0
  3652. ComponentLibIdentifierKind132=Library Name And Type
  3653. ComponentLibraryIdentifier132=MKP_lib.DbLib
  3654. ComponentDesignItemID132=JUMP-2.54-2PIN-M-TH
  3655. ComponentSymbolReference132=CON-2PIN
  3656. ComponentUpdate132=1
  3657. ComponentIsDeviceSheet132=0
  3658. ComponentLibIdentifierKind133=Library Name And Type
  3659. ComponentLibraryIdentifier133=MKP_lib.DbLib
  3660. ComponentDesignItemID133=PH-2A
  3661. ComponentSymbolReference133=CON-2PIN
  3662. ComponentUpdate133=1
  3663. ComponentIsDeviceSheet133=0
  3664. ComponentLibIdentifierKind134=Library Name And Type
  3665. ComponentLibraryIdentifier134=MYC_LR3568.SchLib
  3666. ComponentDesignItemID134=MYC-LR3568X
  3667. ComponentSymbolReference134=MYC-LR3568X
  3668. ComponentUpdate134=1
  3669. ComponentIsDeviceSheet134=0
  3670. [Comparison Options]
  3671. ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3672. ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3673. ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3674. ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3675. ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|UseName=0|InclAllRules=0
  3676. ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3677. [SmartPDF]
  3678. PageOptions=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1