CamBox_RV1106_lot_1000.PrjPcb 135 KB

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