Camera_Box_RK3562.PrjPcb 112 KB

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