CamBox_RV1106.PrjPcb 127 KB

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