CamBox_RV1106.PrjPcb 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334
  1. [Design]
  2. Version=1.0
  3. HierarchyMode=0
  4. ChannelRoomNamingStyle=0
  5. ReleasesFolder=
  6. ChannelDesignatorFormatString=$Component_$RoomName
  7. ChannelRoomLevelSeperator=_
  8. OpenOutputs=1
  9. ArchiveProject=0
  10. TimestampOutput=0
  11. SeparateFolders=0
  12. TemplateLocationPath=
  13. PinSwapBy_Netlabel=1
  14. PinSwapBy_Pin=1
  15. AllowPortNetNames=0
  16. AllowSheetEntryNetNames=1
  17. AppendSheetNumberToLocalNets=0
  18. NetlistSinglePinNets=0
  19. DefaultConfiguration=Sources
  20. UserID=0xFFFFFFFF
  21. DefaultPcbProtel=1
  22. DefaultPcbPcad=0
  23. ReorderDocumentsOnCompile=1
  24. NameNetsHierarchically=0
  25. PowerPortNamesTakePriority=0
  26. AutoSheetNumbering=1
  27. AutoCrossReferences=0
  28. NewIndexingOfSheetSymbols=0
  29. PushECOToAnnotationFile=1
  30. DItemRevisionGUID=
  31. ReportSuppressedErrorsInMessages=0
  32. FSMCodingStyle=eFMSDropDownList_OneProcess
  33. FSMEncodingStyle=eFMSDropDownList_OneHot
  34. IsProjectConflictPreventionWarningsEnabled=0
  35. IsVirtualBomDocumentRemoved=1
  36. OutputPath=
  37. LogFolderPath=
  38. ManagedProjectGUID=
  39. IncludeDesignInRelease=0
  40. CrossRefSheetStyle=1
  41. CrossRefLocationStyle=1
  42. CrossRefPorts=3
  43. CrossRefCrossSheets=1
  44. CrossRefSheetEntries=0
  45. CrossRefFollowFromMainSettings=1
  46. CurrentVariant=CameraBox
  47. [Preferences]
  48. PrefsVaultGUID=
  49. PrefsRevisionGUID=
  50. [Document1]
  51. DocumentPath=Output.OutJob
  52. AnnotationEnabled=1
  53. AnnotateStartValue=1
  54. AnnotationIndexControlEnabled=0
  55. AnnotateSuffix=
  56. AnnotateScope=All
  57. AnnotateOrder=-1
  58. DoLibraryUpdate=1
  59. DoDatabaseUpdate=1
  60. ClassGenCCAutoEnabled=1
  61. ClassGenCCAutoRoomEnabled=1
  62. ClassGenNCAutoScope=None
  63. DItemRevisionGUID=
  64. GenerateClassCluster=0
  65. DocumentUniqueId=
  66. [Document2]
  67. DocumentPath=Block_Diagram.SchDoc
  68. AnnotationEnabled=1
  69. AnnotateStartValue=1
  70. AnnotationIndexControlEnabled=0
  71. AnnotateSuffix=
  72. AnnotateScope=All
  73. AnnotateOrder=15
  74. DoLibraryUpdate=1
  75. DoDatabaseUpdate=1
  76. ClassGenCCAutoEnabled=1
  77. ClassGenCCAutoRoomEnabled=1
  78. ClassGenNCAutoScope=None
  79. DItemRevisionGUID=
  80. GenerateClassCluster=0
  81. DocumentUniqueId=BCYXRSKT
  82. [Document3]
  83. DocumentPath=POWER.SchDoc
  84. AnnotationEnabled=1
  85. AnnotateStartValue=1
  86. AnnotationIndexControlEnabled=0
  87. AnnotateSuffix=
  88. AnnotateScope=All
  89. AnnotateOrder=0
  90. DoLibraryUpdate=1
  91. DoDatabaseUpdate=1
  92. ClassGenCCAutoEnabled=1
  93. ClassGenCCAutoRoomEnabled=1
  94. ClassGenNCAutoScope=None
  95. DItemRevisionGUID=
  96. GenerateClassCluster=0
  97. DocumentUniqueId=YZVKBUMY
  98. [Document4]
  99. DocumentPath=CORE_RV1106.SchDoc
  100. AnnotationEnabled=1
  101. AnnotateStartValue=1
  102. AnnotationIndexControlEnabled=0
  103. AnnotateSuffix=
  104. AnnotateScope=All
  105. AnnotateOrder=14
  106. DoLibraryUpdate=1
  107. DoDatabaseUpdate=1
  108. ClassGenCCAutoEnabled=1
  109. ClassGenCCAutoRoomEnabled=1
  110. ClassGenNCAutoScope=None
  111. DItemRevisionGUID=
  112. GenerateClassCluster=0
  113. DocumentUniqueId=TYDQGRHT
  114. [Document5]
  115. DocumentPath=MCU_RX130-140.SchDoc
  116. AnnotationEnabled=1
  117. AnnotateStartValue=1
  118. AnnotationIndexControlEnabled=0
  119. AnnotateSuffix=
  120. AnnotateScope=All
  121. AnnotateOrder=16
  122. DoLibraryUpdate=1
  123. DoDatabaseUpdate=1
  124. ClassGenCCAutoEnabled=1
  125. ClassGenCCAutoRoomEnabled=1
  126. ClassGenNCAutoScope=None
  127. DItemRevisionGUID=
  128. GenerateClassCluster=0
  129. DocumentUniqueId=UGELCSZG
  130. [Document6]
  131. DocumentPath=AUDIO.SchDoc
  132. AnnotationEnabled=1
  133. AnnotateStartValue=1
  134. AnnotationIndexControlEnabled=0
  135. AnnotateSuffix=
  136. AnnotateScope=All
  137. AnnotateOrder=2
  138. DoLibraryUpdate=1
  139. DoDatabaseUpdate=1
  140. ClassGenCCAutoEnabled=1
  141. ClassGenCCAutoRoomEnabled=0
  142. ClassGenNCAutoScope=None
  143. DItemRevisionGUID=
  144. GenerateClassCluster=0
  145. DocumentUniqueId=FQUWCDSP
  146. [Document7]
  147. DocumentPath=CAMERA.SchDoc
  148. AnnotationEnabled=1
  149. AnnotateStartValue=1
  150. AnnotationIndexControlEnabled=0
  151. AnnotateSuffix=
  152. AnnotateScope=All
  153. AnnotateOrder=3
  154. DoLibraryUpdate=1
  155. DoDatabaseUpdate=1
  156. ClassGenCCAutoEnabled=1
  157. ClassGenCCAutoRoomEnabled=0
  158. ClassGenNCAutoScope=None
  159. DItemRevisionGUID=
  160. GenerateClassCluster=0
  161. DocumentUniqueId=CPLWNQMC
  162. [Document8]
  163. DocumentPath=UART.SchDoc
  164. AnnotationEnabled=1
  165. AnnotateStartValue=1
  166. AnnotationIndexControlEnabled=0
  167. AnnotateSuffix=
  168. AnnotateScope=All
  169. AnnotateOrder=4
  170. DoLibraryUpdate=1
  171. DoDatabaseUpdate=1
  172. ClassGenCCAutoEnabled=1
  173. ClassGenCCAutoRoomEnabled=0
  174. ClassGenNCAutoScope=None
  175. DItemRevisionGUID=
  176. GenerateClassCluster=0
  177. DocumentUniqueId=IBCFWMTB
  178. [Document9]
  179. DocumentPath=Function.SchDoc
  180. AnnotationEnabled=1
  181. AnnotateStartValue=1
  182. AnnotationIndexControlEnabled=0
  183. AnnotateSuffix=
  184. AnnotateScope=All
  185. AnnotateOrder=5
  186. DoLibraryUpdate=1
  187. DoDatabaseUpdate=1
  188. ClassGenCCAutoEnabled=1
  189. ClassGenCCAutoRoomEnabled=0
  190. ClassGenNCAutoScope=None
  191. DItemRevisionGUID=
  192. GenerateClassCluster=0
  193. DocumentUniqueId=XTFNUDHB
  194. [Document10]
  195. DocumentPath=TF.SchDoc
  196. AnnotationEnabled=1
  197. AnnotateStartValue=1
  198. AnnotationIndexControlEnabled=0
  199. AnnotateSuffix=
  200. AnnotateScope=All
  201. AnnotateOrder=6
  202. DoLibraryUpdate=1
  203. DoDatabaseUpdate=1
  204. ClassGenCCAutoEnabled=1
  205. ClassGenCCAutoRoomEnabled=0
  206. ClassGenNCAutoScope=None
  207. DItemRevisionGUID=
  208. GenerateClassCluster=0
  209. DocumentUniqueId=HTPWMWOC
  210. [Document11]
  211. DocumentPath=4G.SchDoc
  212. AnnotationEnabled=1
  213. AnnotateStartValue=1
  214. AnnotationIndexControlEnabled=0
  215. AnnotateSuffix=
  216. AnnotateScope=All
  217. AnnotateOrder=7
  218. DoLibraryUpdate=1
  219. DoDatabaseUpdate=1
  220. ClassGenCCAutoEnabled=1
  221. ClassGenCCAutoRoomEnabled=0
  222. ClassGenNCAutoScope=None
  223. DItemRevisionGUID=
  224. GenerateClassCluster=0
  225. DocumentUniqueId=HBTPIULA
  226. [Document12]
  227. DocumentPath=GPS.SchDoc
  228. AnnotationEnabled=1
  229. AnnotateStartValue=1
  230. AnnotationIndexControlEnabled=0
  231. AnnotateSuffix=
  232. AnnotateScope=All
  233. AnnotateOrder=8
  234. DoLibraryUpdate=1
  235. DoDatabaseUpdate=1
  236. ClassGenCCAutoEnabled=1
  237. ClassGenCCAutoRoomEnabled=0
  238. ClassGenNCAutoScope=None
  239. DItemRevisionGUID=
  240. GenerateClassCluster=0
  241. DocumentUniqueId=XBHZKGQY
  242. [Document13]
  243. DocumentPath=ETH.SchDoc
  244. AnnotationEnabled=1
  245. AnnotateStartValue=1
  246. AnnotationIndexControlEnabled=0
  247. AnnotateSuffix=
  248. AnnotateScope=All
  249. AnnotateOrder=9
  250. DoLibraryUpdate=1
  251. DoDatabaseUpdate=1
  252. ClassGenCCAutoEnabled=1
  253. ClassGenCCAutoRoomEnabled=0
  254. ClassGenNCAutoScope=None
  255. DItemRevisionGUID=
  256. GenerateClassCluster=0
  257. DocumentUniqueId=PURCMWXV
  258. [Document14]
  259. DocumentPath=INPUT.SchDoc
  260. AnnotationEnabled=1
  261. AnnotateStartValue=1
  262. AnnotationIndexControlEnabled=0
  263. AnnotateSuffix=
  264. AnnotateScope=All
  265. AnnotateOrder=10
  266. DoLibraryUpdate=1
  267. DoDatabaseUpdate=1
  268. ClassGenCCAutoEnabled=1
  269. ClassGenCCAutoRoomEnabled=0
  270. ClassGenNCAutoScope=None
  271. DItemRevisionGUID=
  272. GenerateClassCluster=0
  273. DocumentUniqueId=BCQXQIZB
  274. [Document15]
  275. DocumentPath=OUTPUT.SchDoc
  276. AnnotationEnabled=1
  277. AnnotateStartValue=1
  278. AnnotationIndexControlEnabled=0
  279. AnnotateSuffix=
  280. AnnotateScope=All
  281. AnnotateOrder=11
  282. DoLibraryUpdate=1
  283. DoDatabaseUpdate=1
  284. ClassGenCCAutoEnabled=1
  285. ClassGenCCAutoRoomEnabled=0
  286. ClassGenNCAutoScope=None
  287. DItemRevisionGUID=
  288. GenerateClassCluster=0
  289. DocumentUniqueId=QOXORCSF
  290. [Document16]
  291. DocumentPath=CONN.SchDoc
  292. AnnotationEnabled=1
  293. AnnotateStartValue=1
  294. AnnotationIndexControlEnabled=0
  295. AnnotateSuffix=
  296. AnnotateScope=All
  297. AnnotateOrder=13
  298. DoLibraryUpdate=1
  299. DoDatabaseUpdate=1
  300. ClassGenCCAutoEnabled=1
  301. ClassGenCCAutoRoomEnabled=0
  302. ClassGenNCAutoScope=None
  303. DItemRevisionGUID=
  304. GenerateClassCluster=0
  305. DocumentUniqueId=SAITEOPN
  306. [Document17]
  307. DocumentPath=CamBox_RV1106.PcbDoc
  308. AnnotationEnabled=1
  309. AnnotateStartValue=1
  310. AnnotationIndexControlEnabled=0
  311. AnnotateSuffix=
  312. AnnotateScope=All
  313. AnnotateOrder=-1
  314. DoLibraryUpdate=1
  315. DoDatabaseUpdate=1
  316. ClassGenCCAutoEnabled=1
  317. ClassGenCCAutoRoomEnabled=0
  318. ClassGenNCAutoScope=None
  319. DItemRevisionGUID=
  320. GenerateClassCluster=0
  321. DocumentUniqueId=DNIDONKW
  322. [Document18]
  323. DocumentPath=CamBox_RV1106.OutJob
  324. AnnotationEnabled=1
  325. AnnotateStartValue=1
  326. AnnotationIndexControlEnabled=0
  327. AnnotateSuffix=
  328. AnnotateScope=All
  329. AnnotateOrder=-1
  330. DoLibraryUpdate=1
  331. DoDatabaseUpdate=1
  332. ClassGenCCAutoEnabled=1
  333. ClassGenCCAutoRoomEnabled=1
  334. ClassGenNCAutoScope=None
  335. DItemRevisionGUID=
  336. GenerateClassCluster=0
  337. DocumentUniqueId=
  338. [Document19]
  339. DocumentPath=CamBox_RV11061\CamBox_RV1106.PcbLib
  340. AnnotationEnabled=1
  341. AnnotateStartValue=1
  342. AnnotationIndexControlEnabled=0
  343. AnnotateSuffix=
  344. AnnotateScope=All
  345. AnnotateOrder=-1
  346. DoLibraryUpdate=1
  347. DoDatabaseUpdate=1
  348. ClassGenCCAutoEnabled=1
  349. ClassGenCCAutoRoomEnabled=1
  350. ClassGenNCAutoScope=None
  351. DItemRevisionGUID=
  352. GenerateClassCluster=0
  353. DocumentUniqueId=TCHWHPCA
  354. [Document20]
  355. DocumentPath=CamBox_RV11061\CamBox_RV1106.SCHLIB
  356. AnnotationEnabled=1
  357. AnnotateStartValue=1
  358. AnnotationIndexControlEnabled=0
  359. AnnotateSuffix=
  360. AnnotateScope=All
  361. AnnotateOrder=-1
  362. DoLibraryUpdate=1
  363. DoDatabaseUpdate=1
  364. ClassGenCCAutoEnabled=1
  365. ClassGenCCAutoRoomEnabled=1
  366. ClassGenNCAutoScope=None
  367. DItemRevisionGUID=
  368. GenerateClassCluster=0
  369. DocumentUniqueId=PJEWJJUC
  370. [Document21]
  371. DocumentPath=CamBox_RV1106.IntLib
  372. AnnotationEnabled=1
  373. AnnotateStartValue=1
  374. AnnotationIndexControlEnabled=0
  375. AnnotateSuffix=
  376. AnnotateScope=All
  377. AnnotateOrder=-1
  378. DoLibraryUpdate=1
  379. DoDatabaseUpdate=1
  380. ClassGenCCAutoEnabled=1
  381. ClassGenCCAutoRoomEnabled=1
  382. ClassGenNCAutoScope=None
  383. DItemRevisionGUID=
  384. GenerateClassCluster=0
  385. DocumentUniqueId=
  386. [ProjectVariant1]
  387. UniqueID=E3D06398-A058-42DC-91D4-E4FCEEED59B6
  388. Description=CameraBox
  389. AllowFabrication=0
  390. ParameterCount=4
  391. VariationCount=23
  392. Variation1=Designator=R28|UniqueId=\PGKVMOGM|Kind=1|AlternatePart=
  393. Variation2=Designator=R32|UniqueId=\EHOLIYFG|Kind=1|AlternatePart=
  394. Variation3=Designator=C109|UniqueId=\HMEZJDJO|Kind=1|AlternatePart=
  395. Variation4=Designator=C114|UniqueId=\RSCQUYGB|Kind=1|AlternatePart=
  396. Variation5=Designator=C187|UniqueId=\WUOFJAQV|Kind=1|AlternatePart=
  397. Variation6=Designator=R117|UniqueId=\YWMIUTDW|Kind=1|AlternatePart=
  398. Variation7=Designator=R118|UniqueId=\OYEEWPHO|Kind=1|AlternatePart=
  399. Variation8=Designator=C163|UniqueId=\FLDWJTMA|Kind=1|AlternatePart=
  400. Variation9=Designator=C164|UniqueId=\RLEMRSVZ|Kind=1|AlternatePart=
  401. Variation10=Designator=R160|UniqueId=\GTVIZXDC|Kind=1|AlternatePart=
  402. Variation11=Designator=R174|UniqueId=\BXITKBOI|Kind=1|AlternatePart=
  403. Variation12=Designator=R176|UniqueId=\ZWGPDMSA|Kind=1|AlternatePart=
  404. Variation13=Designator=R177|UniqueId=\NCLNTMOM|Kind=1|AlternatePart=
  405. Variation14=Designator=R180|UniqueId=\OZQHEAGH|Kind=1|AlternatePart=
  406. Variation15=Designator=R184|UniqueId=\FAABKJMQ|Kind=1|AlternatePart=
  407. Variation16=Designator=R183|UniqueId=\CBERASUA|Kind=1|AlternatePart=
  408. Variation17=Designator=R170|UniqueId=\KPAKVTZV|Kind=1|AlternatePart=
  409. Variation18=Designator=R225|UniqueId=\HTBUCSTY|Kind=1|AlternatePart=
  410. Variation19=Designator=R?|UniqueId=\SYIFLMHS|Kind=1|AlternatePart=
  411. Variation20=Designator=D34|UniqueId=\AJSNUYRF|Kind=1|AlternatePart=
  412. Variation21=Designator=C147|UniqueId=\RGPLURCD|Kind=1|AlternatePart=
  413. Variation22=Designator=R?|UniqueId=\JGFXGPCO|Kind=1|AlternatePart=
  414. Variation23=Designator=R?|UniqueId=\SWISXZIF|Kind=1|AlternatePart=
  415. ParamVariationCount=0
  416. [Parameter2_1]
  417. Name=author
  418. Value=Hainv
  419. [Parameter2_2]
  420. Name=Cus
  421. Value=Aithings
  422. [Parameter2_3]
  423. Name=des
  424. Value=Cambox_2026
  425. [Parameter2_4]
  426. Name=ver
  427. Value=4.0
  428. [Configuration1]
  429. Name=Sources
  430. ParameterCount=0
  431. ConstraintFileCount=0
  432. ReleaseItemId=
  433. Variant=[No Variations]
  434. OutputJobsCount=0
  435. ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2
  436. ConfigurationType=Source
  437. [Generic_EDE]
  438. OutputDir=
  439. [Generic_SmartPDF]
  440. AutoOpenFile=-1
  441. AutoOpenOutJob=-1
  442. [Generic_SmartPDFSettings]
  443. ProjectMode=-1
  444. ZoomPrecision=50
  445. AddNetsInformation=-1
  446. AddNetPins=-1
  447. AddNetNetLabels=-1
  448. AddNetPorts=-1
  449. ShowComponentParameters=-1
  450. GlobalBookmarks=0
  451. ExportBOM=0
  452. TemplateFilename=Board Stack Report.XLT
  453. TemplateStoreRelative=-1
  454. PCB_PrintColor=1
  455. SCH_PrintColor=0
  456. PrintQuality=-4
  457. SCH_ShowNoErc=-1
  458. SCH_ShowParameter=-1
  459. SCH_ShowProbes=-1
  460. SCH_ShowBlankets=-1
  461. SCH_NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle
  462. SCH_ShowNote=-1
  463. SCH_ShowNoteCollapsed=-1
  464. Wir_PrintColor=0
  465. Ldr_PrintColor=0
  466. SCH_ExpandLogicalToPhysical=-1
  467. SCH_VariantName=[No Variations]
  468. SCH_ExpandComponentDesignators=-1
  469. SCH_ExpandNetlabels=-1
  470. SCH_ExpandPorts=-1
  471. SCH_ExpandSheetNumber=-1
  472. SCH_ExpandDocumentNumber=-1
  473. SCH_HasExpandLogicalToPhysicalSheets=-1
  474. SaveSettingsToOutJob=-1
  475. [OutputGroup1]
  476. Name=Netlist Outputs
  477. Description=
  478. TargetPrinter=Microsoft Print to PDF
  479. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  480. OutputType1=CadnetixNetlist
  481. OutputName1=Cadnetix Netlist
  482. OutputDocumentPath1=
  483. OutputVariantName1=
  484. OutputDefault1=0
  485. OutputType2=CalayNetlist
  486. OutputName2=Calay Netlist
  487. OutputDocumentPath2=
  488. OutputVariantName2=
  489. OutputDefault2=0
  490. OutputType3=EDIF
  491. OutputName3=EDIF for PCB
  492. OutputDocumentPath3=
  493. OutputVariantName3=
  494. OutputDefault3=0
  495. OutputType4=EESofNetlist
  496. OutputName4=EESof Netlist
  497. OutputDocumentPath4=
  498. OutputVariantName4=
  499. OutputDefault4=0
  500. OutputType5=IntergraphNetlist
  501. OutputName5=Intergraph Netlist
  502. OutputDocumentPath5=
  503. OutputVariantName5=
  504. OutputDefault5=0
  505. OutputType6=MentorBoardStationNetlist
  506. OutputName6=Mentor BoardStation Netlist
  507. OutputDocumentPath6=
  508. OutputVariantName6=
  509. OutputDefault6=0
  510. OutputType7=MultiWire
  511. OutputName7=MultiWire
  512. OutputDocumentPath7=
  513. OutputVariantName7=
  514. OutputDefault7=0
  515. OutputType8=OrCadPCB2Netlist
  516. OutputName8=Orcad/PCB2 Netlist
  517. OutputDocumentPath8=
  518. OutputVariantName8=
  519. OutputDefault8=0
  520. OutputType9=PADSNetlist
  521. OutputName9=PADS ASCII Netlist
  522. OutputDocumentPath9=
  523. OutputVariantName9=
  524. OutputDefault9=0
  525. OutputType10=Pcad
  526. OutputName10=Pcad for PCB
  527. OutputDocumentPath10=
  528. OutputVariantName10=
  529. OutputDefault10=0
  530. OutputType11=PCADNetlist
  531. OutputName11=PCAD Netlist
  532. OutputDocumentPath11=
  533. OutputVariantName11=
  534. OutputDefault11=0
  535. OutputType12=PCADnltNetlist
  536. OutputName12=PCADnlt Netlist
  537. OutputDocumentPath12=
  538. OutputVariantName12=
  539. OutputDefault12=0
  540. OutputType13=Protel2Netlist
  541. OutputName13=Protel2 Netlist
  542. OutputDocumentPath13=
  543. OutputVariantName13=
  544. OutputDefault13=0
  545. OutputType14=ProtelNetlist
  546. OutputName14=Protel
  547. OutputDocumentPath14=
  548. OutputVariantName14=
  549. OutputDefault14=0
  550. OutputType15=RacalNetlist
  551. OutputName15=Racal Netlist
  552. OutputDocumentPath15=
  553. OutputVariantName15=
  554. OutputDefault15=0
  555. OutputType16=RINFNetlist
  556. OutputName16=RINF Netlist
  557. OutputDocumentPath16=
  558. OutputVariantName16=
  559. OutputDefault16=0
  560. OutputType17=SciCardsNetlist
  561. OutputName17=SciCards Netlist
  562. OutputDocumentPath17=
  563. OutputVariantName17=
  564. OutputDefault17=0
  565. OutputType18=TangoNetlist
  566. OutputName18=Tango Netlist
  567. OutputDocumentPath18=
  568. OutputVariantName18=
  569. OutputDefault18=0
  570. OutputType19=TelesisNetlist
  571. OutputName19=Telesis Netlist
  572. OutputDocumentPath19=
  573. OutputVariantName19=
  574. OutputDefault19=0
  575. OutputType20=WireListNetlist
  576. OutputName20=WireList Netlist
  577. OutputDocumentPath20=
  578. OutputVariantName20=
  579. OutputDefault20=0
  580. OutputType21=XSpiceNetlist
  581. OutputName21=Mixed Sim Netlist
  582. OutputDocumentPath21=
  583. OutputVariantName21=
  584. OutputDefault21=0
  585. [OutputGroup2]
  586. Name=Simulator Outputs
  587. Description=
  588. TargetPrinter=MF230 Series
  589. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  590. OutputType1=AdvSimNetlist
  591. OutputName1=Mixed Sim
  592. OutputDocumentPath1=
  593. OutputVariantName1=
  594. OutputDefault1=0
  595. [OutputGroup3]
  596. Name=Documentation Outputs
  597. Description=
  598. TargetPrinter=Virtual Printer
  599. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=0
  600. OutputType1=Composite
  601. OutputName1=Composite Drawing
  602. OutputDocumentPath1=
  603. OutputVariantName1=[No Variations]
  604. OutputDefault1=0
  605. 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
  606. OutputType2=PCB 3D Print
  607. OutputName2=PCB 3D Print
  608. OutputDocumentPath2=
  609. OutputVariantName2=[No Variations]
  610. OutputDefault2=0
  611. 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
  612. OutputType3=PCB 3D Video
  613. OutputName3=PCB 3D Video
  614. OutputDocumentPath3=
  615. OutputVariantName3=[No Variations]
  616. OutputDefault3=0
  617. 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
  618. OutputType4=PCB Print
  619. OutputName4=PCB Prints
  620. OutputDocumentPath4=
  621. OutputVariantName4=[No Variations]
  622. OutputDefault4=0
  623. 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
  624. OutputType5=PCBDrawing
  625. OutputName5=Draftsman
  626. OutputDocumentPath5=
  627. OutputVariantName5=[No Variations]
  628. OutputDefault5=0
  629. 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
  630. OutputType6=PCBLIB Print
  631. OutputName6=PCBLIB Prints
  632. OutputDocumentPath6=
  633. OutputVariantName6=[No Variations]
  634. OutputDefault6=0
  635. 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
  636. OutputType7=PDF3D
  637. OutputName7=PDF3D
  638. OutputDocumentPath7=
  639. OutputVariantName7=[No Variations]
  640. OutputDefault7=0
  641. 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
  642. OutputType8=PDF3D MBA
  643. OutputName8=PDF3D MBA
  644. OutputDocumentPath8=
  645. OutputVariantName8=
  646. OutputDefault8=0
  647. 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
  648. OutputType9=Report Print
  649. OutputName9=Report Prints
  650. OutputDocumentPath9=
  651. OutputVariantName9=
  652. OutputDefault9=0
  653. 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
  654. OutputType10=Schematic Print
  655. OutputName10=Schematic Prints
  656. OutputDocumentPath10=
  657. OutputVariantName10=
  658. OutputDefault10=0
  659. PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=0.88|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
  660. Configuration10_Name1=OutputConfigurationParameter1
  661. 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=D:\1. Makipos\1. mkp-project\CameraBox_2025\Header_GPIO.SchDoc
  662. OutputType11=SimView Print
  663. OutputName11=SimView Prints
  664. OutputDocumentPath11=
  665. OutputVariantName11=
  666. OutputDefault11=0
  667. 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
  668. OutputType12=Harness Layout Drawing Print
  669. OutputName12=Harness Layout Drawing Prints
  670. OutputDocumentPath12=
  671. OutputVariantName12=
  672. OutputDefault12=0
  673. PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  674. OutputType13=Harness Wiring Diagram Print
  675. OutputName13=Harness Wiring Diagram Prints
  676. OutputDocumentPath13=
  677. OutputVariantName13=
  678. OutputDefault13=0
  679. PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1
  680. [OutputGroup4]
  681. Name=Assembly Outputs
  682. Description=
  683. TargetPrinter=Microsoft Print to PDF
  684. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  685. OutputType1=Assembly
  686. OutputName1=Assembly Drawings
  687. OutputDocumentPath1=
  688. OutputVariantName1=[No Variations]
  689. OutputDefault1=0
  690. 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
  691. OutputType2=Pick Place
  692. OutputName2=Generates pick and place files
  693. OutputDocumentPath2=
  694. OutputVariantName2=[No Variations]
  695. OutputDefault2=0
  696. OutputType3=Test Points For Assembly
  697. OutputName3=Test Point Report
  698. OutputDocumentPath3=
  699. OutputVariantName3=[No Variations]
  700. OutputDefault3=0
  701. [OutputGroup5]
  702. Name=Fabrication Outputs
  703. Description=
  704. TargetPrinter=Microsoft Print to PDF
  705. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  706. OutputType1=Board Stack Report
  707. OutputName1=Report Board Stack
  708. OutputDocumentPath1=
  709. OutputVariantName1=
  710. OutputDefault1=0
  711. 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
  712. OutputType2=CompositeDrill
  713. OutputName2=Composite Drill Drawing
  714. OutputDocumentPath2=
  715. OutputVariantName2=[No Variations]
  716. OutputDefault2=0
  717. 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
  718. OutputType3=Drill
  719. OutputName3=Drill Drawing/Guides
  720. OutputDocumentPath3=
  721. OutputVariantName3=[No Variations]
  722. OutputDefault3=0
  723. 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
  724. OutputType4=Final
  725. OutputName4=Final Artwork Prints
  726. OutputDocumentPath4=
  727. OutputVariantName4=[No Variations]
  728. OutputDefault4=0
  729. 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
  730. OutputType5=Gerber
  731. OutputName5=Gerber Files
  732. OutputDocumentPath5=
  733. OutputVariantName5=[No Variations]
  734. OutputDefault5=0
  735. OutputType6=Gerber X2
  736. OutputName6=Gerber X2 Files
  737. OutputDocumentPath6=
  738. OutputVariantName6=[No Variations]
  739. OutputDefault6=0
  740. OutputType7=IPC2581
  741. OutputName7=IPC-2581 Files
  742. OutputDocumentPath7=
  743. OutputVariantName7=[No Variations]
  744. OutputDefault7=0
  745. OutputType8=Mask
  746. OutputName8=Solder/Paste Mask Prints
  747. OutputDocumentPath8=
  748. OutputVariantName8=[No Variations]
  749. OutputDefault8=0
  750. 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
  751. OutputType9=NC Drill
  752. OutputName9=NC Drill Files
  753. OutputDocumentPath9=
  754. OutputVariantName9=
  755. OutputDefault9=0
  756. OutputType10=ODB
  757. OutputName10=ODB++ Files
  758. OutputDocumentPath10=
  759. OutputVariantName10=[No Variations]
  760. OutputDefault10=0
  761. OutputType11=Plane
  762. OutputName11=Power-Plane Prints
  763. OutputDocumentPath11=
  764. OutputVariantName11=[No Variations]
  765. OutputDefault11=0
  766. 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
  767. OutputType12=Test Points
  768. OutputName12=Test Point Report
  769. OutputDocumentPath12=
  770. OutputVariantName12=
  771. OutputDefault12=0
  772. [OutputGroup6]
  773. Name=Report Outputs
  774. Description=
  775. TargetPrinter=Microsoft Print to PDF
  776. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  777. OutputType1=BOM_PartType
  778. OutputName1=Bill of Materials
  779. OutputDocumentPath1=
  780. OutputVariantName1=[No Variations]
  781. OutputDefault1=0
  782. 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
  783. OutputType2=ComponentCrossReference
  784. OutputName2=Component Cross Reference Report
  785. OutputDocumentPath2=
  786. OutputVariantName2=[No Variations]
  787. OutputDefault2=0
  788. OutputType3=ReportHierarchy
  789. OutputName3=Report Project Hierarchy
  790. OutputDocumentPath3=
  791. OutputVariantName3=[No Variations]
  792. OutputDefault3=0
  793. OutputType4=Script
  794. OutputName4=Script Output
  795. OutputDocumentPath4=
  796. OutputVariantName4=[No Variations]
  797. OutputDefault4=0
  798. OutputType5=SimpleBOM
  799. OutputName5=Simple BOM
  800. OutputDocumentPath5=
  801. OutputVariantName5=[No Variations]
  802. OutputDefault5=0
  803. OutputType6=SinglePinNetReporter
  804. OutputName6=Report Single Pin Nets
  805. OutputDocumentPath6=
  806. OutputVariantName6=[No Variations]
  807. OutputDefault6=0
  808. OutputType7=Export Comments
  809. OutputName7=Export Comments
  810. OutputDocumentPath7=
  811. OutputVariantName7=[No Variations]
  812. OutputDefault7=0
  813. 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
  814. OutputType8=BOM_ReportCompare
  815. OutputName8=BOM Compare
  816. OutputDocumentPath8=
  817. OutputVariantName8=[No Variations]
  818. OutputDefault8=0
  819. 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
  820. OutputType9=Project History
  821. OutputName9=Project History
  822. OutputDocumentPath9=
  823. OutputVariantName9=[No Variations]
  824. OutputDefault9=0
  825. 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
  826. [OutputGroup7]
  827. Name=Other Outputs
  828. Description=
  829. TargetPrinter=Microsoft Print to PDF
  830. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  831. OutputType1=Text Print
  832. OutputName1=Text Print
  833. OutputDocumentPath1=
  834. OutputVariantName1=
  835. OutputDefault1=0
  836. 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
  837. OutputType2=Text Print
  838. OutputName2=Text Print
  839. OutputDocumentPath2=
  840. OutputVariantName2=
  841. OutputDefault2=0
  842. 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
  843. OutputType3=Text Print
  844. OutputName3=Text Print
  845. OutputDocumentPath3=
  846. OutputVariantName3=
  847. OutputDefault3=0
  848. 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
  849. OutputType4=Text Print
  850. OutputName4=Text Print
  851. OutputDocumentPath4=
  852. OutputVariantName4=
  853. OutputDefault4=0
  854. 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
  855. OutputType5=Text Print
  856. OutputName5=Text Print
  857. OutputDocumentPath5=
  858. OutputVariantName5=
  859. OutputDefault5=0
  860. 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
  861. OutputType6=Text Print
  862. OutputName6=Text Print
  863. OutputDocumentPath6=
  864. OutputVariantName6=
  865. OutputDefault6=0
  866. 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
  867. OutputType7=Text Print
  868. OutputName7=Text Print
  869. OutputDocumentPath7=
  870. OutputVariantName7=
  871. OutputDefault7=0
  872. 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
  873. OutputType8=Text Print
  874. OutputName8=Text Print
  875. OutputDocumentPath8=
  876. OutputVariantName8=
  877. OutputDefault8=0
  878. 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
  879. OutputType9=Text Print
  880. OutputName9=Text Print
  881. OutputDocumentPath9=
  882. OutputVariantName9=
  883. OutputDefault9=0
  884. 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
  885. OutputType10=Text Print
  886. OutputName10=Text Print
  887. OutputDocumentPath10=
  888. OutputVariantName10=
  889. OutputDefault10=0
  890. 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
  891. OutputType11=Text Print
  892. OutputName11=Text Print
  893. OutputDocumentPath11=
  894. OutputVariantName11=
  895. OutputDefault11=0
  896. 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
  897. OutputType12=Text Print
  898. OutputName12=Text Print
  899. OutputDocumentPath12=
  900. OutputVariantName12=
  901. OutputDefault12=0
  902. 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
  903. OutputType13=Text Print
  904. OutputName13=Text Print
  905. OutputDocumentPath13=
  906. OutputVariantName13=
  907. OutputDefault13=0
  908. 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
  909. OutputType14=Text Print
  910. OutputName14=Text Print
  911. OutputDocumentPath14=
  912. OutputVariantName14=
  913. OutputDefault14=0
  914. 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
  915. OutputType15=Text Print
  916. OutputName15=Text Print
  917. OutputDocumentPath15=
  918. OutputVariantName15=
  919. OutputDefault15=0
  920. 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
  921. OutputType16=Text Print
  922. OutputName16=Text Print
  923. OutputDocumentPath16=
  924. OutputVariantName16=
  925. OutputDefault16=0
  926. 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
  927. OutputType17=Text Print
  928. OutputName17=Text Print
  929. OutputDocumentPath17=
  930. OutputVariantName17=
  931. OutputDefault17=0
  932. 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
  933. [OutputGroup8]
  934. Name=Validation Outputs
  935. Description=
  936. TargetPrinter=Microsoft Print to PDF
  937. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  938. OutputType1=BOM_Violations
  939. OutputName1=BOM Checks Report
  940. OutputDocumentPath1=
  941. OutputVariantName1=
  942. OutputDefault1=0
  943. OutputType2=Component states check
  944. OutputName2=Server's components states check
  945. OutputDocumentPath2=
  946. OutputVariantName2=
  947. OutputDefault2=0
  948. OutputType3=Configuration compliance
  949. OutputName3=Environment configuration compliance check
  950. OutputDocumentPath3=
  951. OutputVariantName3=
  952. OutputDefault3=0
  953. OutputType4=Design Rules Check
  954. OutputName4=Design Rules Check
  955. OutputDocumentPath4=
  956. OutputVariantName4=
  957. OutputDefault4=0
  958. 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
  959. OutputType5=Differences Report
  960. OutputName5=Differences Report
  961. OutputDocumentPath5=
  962. OutputVariantName5=
  963. OutputDefault5=0
  964. 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
  965. OutputType6=Electrical Rules Check
  966. OutputName6=Electrical Rules Check
  967. OutputDocumentPath6=
  968. OutputVariantName6=
  969. OutputDefault6=0
  970. 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
  971. OutputType7=Footprint Comparison Report
  972. OutputName7=Footprint Comparison Report
  973. OutputDocumentPath7=
  974. OutputVariantName7=
  975. OutputDefault7=0
  976. [OutputGroup9]
  977. Name=Export Outputs
  978. Description=
  979. TargetPrinter=Microsoft Print to PDF
  980. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  981. OutputType1=AutoCAD dwg/dxf PCB
  982. OutputName1=AutoCAD dwg/dxf File PCB
  983. OutputDocumentPath1=
  984. OutputVariantName1=
  985. OutputDefault1=0
  986. OutputType2=AutoCAD dwg/dxf Schematic
  987. OutputName2=AutoCAD dwg/dxf File Schematic
  988. OutputDocumentPath2=
  989. OutputVariantName2=
  990. OutputDefault2=0
  991. OutputType3=ExportIDF
  992. OutputName3=Export IDF
  993. OutputDocumentPath3=
  994. OutputVariantName3=
  995. OutputDefault3=0
  996. OutputType4=ExportPARASOLID
  997. OutputName4=Export PARASOLID
  998. OutputDocumentPath4=
  999. OutputVariantName4=[No Variations]
  1000. OutputDefault4=0
  1001. OutputType5=ExportSTEP
  1002. OutputName5=Export STEP
  1003. OutputDocumentPath5=
  1004. OutputVariantName5=[No Variations]
  1005. OutputDefault5=0
  1006. OutputType6=ExportVRML
  1007. OutputName6=Export VRML
  1008. OutputDocumentPath6=
  1009. OutputVariantName6=[No Variations]
  1010. OutputDefault6=0
  1011. OutputType7=MBAExportPARASOLID
  1012. OutputName7=Export PARASOLID
  1013. OutputDocumentPath7=
  1014. OutputVariantName7=
  1015. OutputDefault7=0
  1016. OutputType8=MBAExportSTEP
  1017. OutputName8=Export STEP
  1018. OutputDocumentPath8=
  1019. OutputVariantName8=
  1020. OutputDefault8=0
  1021. OutputType9=Save As/Export PCB
  1022. OutputName9=Save As/Export PCB
  1023. OutputDocumentPath9=
  1024. OutputVariantName9=
  1025. OutputDefault9=0
  1026. OutputType10=Save As/Export Schematic
  1027. OutputName10=Save As/Export Schematic
  1028. OutputDocumentPath10=
  1029. OutputVariantName10=
  1030. OutputDefault10=0
  1031. OutputType11=Specctra Design PCB
  1032. OutputName11=Specctra Design PCB
  1033. OutputDocumentPath11=
  1034. OutputVariantName11=
  1035. OutputDefault11=0
  1036. OutputType12=Web ReviewOutputName
  1037. OutputName12=Web Review Data
  1038. OutputDocumentPath12=
  1039. OutputVariantName12=
  1040. OutputDefault12=0
  1041. [OutputGroup10]
  1042. Name=PostProcess Outputs
  1043. Description=
  1044. TargetPrinter=Microsoft Print to PDF
  1045. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1046. OutputType1=Copy Files
  1047. OutputName1=Copy Files
  1048. OutputDocumentPath1=
  1049. OutputVariantName1=
  1050. OutputDefault1=0
  1051. [Modification Levels]
  1052. Type1=1
  1053. Type2=1
  1054. Type3=1
  1055. Type4=1
  1056. Type5=1
  1057. Type6=1
  1058. Type7=1
  1059. Type8=1
  1060. Type9=1
  1061. Type10=1
  1062. Type11=1
  1063. Type12=1
  1064. Type13=1
  1065. Type14=1
  1066. Type15=1
  1067. Type16=1
  1068. Type17=1
  1069. Type18=1
  1070. Type19=1
  1071. Type20=1
  1072. Type21=1
  1073. Type22=1
  1074. Type23=1
  1075. Type24=1
  1076. Type25=1
  1077. Type26=1
  1078. Type27=1
  1079. Type28=1
  1080. Type29=1
  1081. Type30=1
  1082. Type31=1
  1083. Type32=1
  1084. Type33=1
  1085. Type34=1
  1086. Type35=1
  1087. Type36=1
  1088. Type37=1
  1089. Type38=1
  1090. Type39=1
  1091. Type40=1
  1092. Type41=1
  1093. Type42=1
  1094. Type43=1
  1095. Type44=1
  1096. Type45=1
  1097. Type46=1
  1098. Type47=1
  1099. Type48=1
  1100. Type49=1
  1101. Type50=1
  1102. Type51=1
  1103. Type52=1
  1104. Type53=1
  1105. Type54=1
  1106. Type55=1
  1107. Type56=1
  1108. Type57=1
  1109. Type58=1
  1110. Type59=1
  1111. Type60=1
  1112. Type61=1
  1113. Type62=1
  1114. Type63=1
  1115. Type64=1
  1116. Type65=1
  1117. Type66=1
  1118. Type67=1
  1119. Type68=1
  1120. Type69=1
  1121. Type70=1
  1122. Type71=1
  1123. Type72=1
  1124. Type73=1
  1125. Type74=1
  1126. Type75=1
  1127. Type76=1
  1128. Type77=1
  1129. Type78=1
  1130. Type79=1
  1131. Type80=1
  1132. Type81=1
  1133. Type82=1
  1134. Type83=1
  1135. Type84=1
  1136. Type85=1
  1137. Type86=1
  1138. Type87=1
  1139. Type88=1
  1140. Type89=1
  1141. Type90=1
  1142. Type91=1
  1143. Type92=1
  1144. Type93=1
  1145. Type94=1
  1146. Type95=1
  1147. Type96=1
  1148. Type97=1
  1149. Type98=1
  1150. Type99=1
  1151. Type100=1
  1152. Type101=1
  1153. Type102=1
  1154. Type103=1
  1155. Type104=1
  1156. Type105=1
  1157. Type106=1
  1158. Type107=1
  1159. Type108=1
  1160. Type109=1
  1161. Type110=1
  1162. Type111=1
  1163. Type112=1
  1164. Type113=1
  1165. Type114=1
  1166. Type115=1
  1167. Type116=1
  1168. Type117=1
  1169. Type118=1
  1170. Type119=1
  1171. Type120=1
  1172. [Difference Levels]
  1173. Type1=1
  1174. Type2=1
  1175. Type3=1
  1176. Type4=1
  1177. Type5=1
  1178. Type6=1
  1179. Type7=1
  1180. Type8=1
  1181. Type9=1
  1182. Type10=1
  1183. Type11=1
  1184. Type12=1
  1185. Type13=1
  1186. Type14=1
  1187. Type15=1
  1188. Type16=1
  1189. Type17=1
  1190. Type18=1
  1191. Type19=1
  1192. Type20=1
  1193. Type21=1
  1194. Type22=1
  1195. Type23=1
  1196. Type24=1
  1197. Type25=1
  1198. Type26=1
  1199. Type27=1
  1200. Type28=1
  1201. Type29=1
  1202. Type30=1
  1203. Type31=1
  1204. Type32=1
  1205. Type33=1
  1206. Type34=1
  1207. Type35=1
  1208. Type36=1
  1209. Type37=1
  1210. Type38=1
  1211. Type39=1
  1212. Type40=1
  1213. Type41=1
  1214. Type42=1
  1215. Type43=1
  1216. Type44=1
  1217. Type45=1
  1218. Type46=1
  1219. Type47=1
  1220. Type48=1
  1221. Type49=1
  1222. Type50=1
  1223. Type51=1
  1224. Type52=1
  1225. Type53=1
  1226. Type54=1
  1227. Type55=1
  1228. Type56=1
  1229. Type57=1
  1230. Type58=1
  1231. Type59=1
  1232. Type60=1
  1233. Type61=1
  1234. Type62=1
  1235. Type63=1
  1236. Type64=1
  1237. Type65=1
  1238. Type66=1
  1239. Type67=1
  1240. Type68=1
  1241. [Electrical Rules Check]
  1242. Type1=1
  1243. Type2=1
  1244. Type3=2
  1245. Type4=1
  1246. Type5=2
  1247. Type6=2
  1248. Type7=0
  1249. Type8=1
  1250. Type9=1
  1251. Type10=1
  1252. Type11=2
  1253. Type12=0
  1254. Type13=0
  1255. Type14=1
  1256. Type15=1
  1257. Type16=1
  1258. Type17=1
  1259. Type18=1
  1260. Type19=1
  1261. Type20=0
  1262. Type21=0
  1263. Type22=0
  1264. Type23=0
  1265. Type24=1
  1266. Type25=2
  1267. Type26=0
  1268. Type27=2
  1269. Type28=1
  1270. Type29=1
  1271. Type30=1
  1272. Type31=1
  1273. Type32=2
  1274. Type33=0
  1275. Type34=2
  1276. Type35=1
  1277. Type36=2
  1278. Type37=1
  1279. Type38=2
  1280. Type39=2
  1281. Type40=2
  1282. Type41=0
  1283. Type42=2
  1284. Type43=1
  1285. Type44=0
  1286. Type45=0
  1287. Type46=0
  1288. Type47=0
  1289. Type48=0
  1290. Type49=0
  1291. Type50=2
  1292. Type51=0
  1293. Type52=0
  1294. Type53=1
  1295. Type54=1
  1296. Type55=1
  1297. Type56=2
  1298. Type57=1
  1299. Type58=1
  1300. Type59=2
  1301. Type60=0
  1302. Type61=0
  1303. Type62=0
  1304. Type63=0
  1305. Type64=0
  1306. Type65=2
  1307. Type66=3
  1308. Type67=2
  1309. Type68=2
  1310. Type69=0
  1311. Type70=2
  1312. Type71=2
  1313. Type72=2
  1314. Type73=2
  1315. Type74=1
  1316. Type75=2
  1317. Type76=1
  1318. Type77=1
  1319. Type78=1
  1320. Type79=1
  1321. Type80=2
  1322. Type81=3
  1323. Type82=3
  1324. Type83=3
  1325. Type84=3
  1326. Type85=3
  1327. Type86=2
  1328. Type87=2
  1329. Type88=2
  1330. Type89=1
  1331. Type90=1
  1332. Type91=3
  1333. Type92=3
  1334. Type93=2
  1335. Type94=2
  1336. Type95=2
  1337. Type96=2
  1338. Type97=2
  1339. Type98=0
  1340. Type99=1
  1341. Type100=2
  1342. Type101=0
  1343. Type102=2
  1344. Type103=2
  1345. Type104=1
  1346. Type105=2
  1347. Type106=2
  1348. Type107=2
  1349. Type108=2
  1350. Type109=1
  1351. Type110=1
  1352. Type111=1
  1353. Type112=1
  1354. Type113=1
  1355. Type114=2
  1356. Type115=2
  1357. Type116=2
  1358. Type117=3
  1359. Type118=3
  1360. Type119=3
  1361. AlternateItemFail=3
  1362. Type122=2
  1363. Type123=1
  1364. Type124=1
  1365. Type125=1
  1366. Type126=1
  1367. Type127=1
  1368. [ERC Connection Matrix]
  1369. L1=NNNNNNNNNNNWNNNWW
  1370. L2=NNWNNNNWWWNWNWNWN
  1371. L3=NWEENEEEENEWNEEWN
  1372. L4=NNENNNWEENNWNENWN
  1373. L5=NNNNNNNNNNNNNNNNN
  1374. L6=NNENNNNEENNWNENWN
  1375. L7=NNEWNNWEENNWNENWN
  1376. L8=NWEENEENEEENNEENN
  1377. L9=NWEENEEEENEWNEEWW
  1378. L10=NWNNNNNENNEWNNEWN
  1379. L11=NNENNNNEEENWNENWN
  1380. L12=WWWWNWWNWWWNWWWNN
  1381. L13=NNNNNNNNNNNWNNNWW
  1382. L14=NWEENEEEENEWNEEWW
  1383. L15=NNENNNNEEENWNENWW
  1384. L16=WWWWNWWNWWWNWWWNW
  1385. L17=WNNNNNNNWNNNWWWWN
  1386. [Annotate]
  1387. SortOrder=3
  1388. SortLocation=0
  1389. ReplaceSubparts=0
  1390. MatchParameter1=Comment
  1391. MatchStrictly1=1
  1392. MatchParameter2=Library Reference
  1393. MatchStrictly2=1
  1394. PhysicalNamingFormat=$Component_$RoomName
  1395. GlobalIndexSortOrder=3
  1396. GlobalIndexSortLocation=0
  1397. [PrjClassGen]
  1398. CompClassManualEnabled=0
  1399. CompClassManualRoomEnabled=0
  1400. NetClassAutoBusEnabled=1
  1401. NetClassAutoCompEnabled=0
  1402. NetClassAutoNamedHarnessEnabled=0
  1403. NetClassManualEnabled=1
  1404. NetClassSeparateForBusSections=0
  1405. [LibraryUpdateOptions]
  1406. SelectedOnly=1
  1407. UpdateVariants=1
  1408. UpdateToLatestRevision=1
  1409. PartTypes=0
  1410. ComponentLibIdentifierKind0=Library Name And Type
  1411. ComponentLibraryIdentifier0=MKP_lib.DbLib/Components
  1412. ComponentDesignItemID0=B72590D50H160
  1413. ComponentSymbolReference0=B72590D50H160
  1414. ComponentUpdate0=1
  1415. ComponentIsDeviceSheet0=0
  1416. FullReplace=1
  1417. UpdateDesignatorLock=1
  1418. UpdatePartIDLock=1
  1419. PreserveParameterLocations=1
  1420. PreserveParameterVisibility=1
  1421. DoGraphics=1
  1422. DoParameters=1
  1423. DoModels=1
  1424. AddParameters=0
  1425. RemoveParameters=0
  1426. AddModels=1
  1427. RemoveModels=1
  1428. UpdateCurrentModels=1
  1429. ParameterName0=Category
  1430. ParameterUpdate0=1
  1431. ParameterName1=Comment
  1432. ParameterUpdate1=1
  1433. ParameterName2=Component Kind
  1434. ParameterUpdate2=1
  1435. ParameterName3=Description
  1436. ParameterUpdate3=1
  1437. ParameterName4=Detailed Value
  1438. ParameterUpdate4=1
  1439. ParameterName5=Library Reference
  1440. ParameterUpdate5=1
  1441. ParameterName6=Manufacture
  1442. ParameterUpdate6=1
  1443. ParameterName7=Mounting type
  1444. ParameterUpdate7=1
  1445. ParameterName8=Partnumber
  1446. ParameterUpdate8=1
  1447. ParameterName9=Supplier
  1448. ParameterUpdate9=1
  1449. ParameterName10=Value
  1450. ParameterUpdate10=1
  1451. ModelTypeGroup0=PCBLIB
  1452. ModelTypeUpdate0=1
  1453. ModelType0=PCBLIB
  1454. ModelName0=D0402
  1455. ModelUpdate0=1
  1456. ModelType1=PCBLIB
  1457. ModelName1=R0402
  1458. ModelUpdate1=1
  1459. [DatabaseUpdateOptions]
  1460. SelectedOnly=0
  1461. UpdateVariants=1
  1462. UpdateToLatestRevision=1
  1463. PartTypes=0
  1464. ComponentLibIdentifierKind0=Library Name And Type
  1465. ComponentLibraryIdentifier0=MKP_lib.DbLib/Components
  1466. ComponentDesignItemID0=0805CG330J500NT
  1467. ComponentSymbolReference0=CAP
  1468. ComponentUpdate0=1
  1469. ComponentIsDeviceSheet0=0
  1470. ComponentLibIdentifierKind1=Library Name And Type
  1471. ComponentLibraryIdentifier1=MKP_lib.DbLib/Components
  1472. ComponentDesignItemID1=150060YS75000
  1473. ComponentSymbolReference1=LED
  1474. ComponentUpdate1=1
  1475. ComponentIsDeviceSheet1=0
  1476. ComponentLibIdentifierKind2=Library Name And Type
  1477. ComponentLibraryIdentifier2=MKP_lib.DbLib/Components
  1478. ComponentDesignItemID2=2.54-2*8P
  1479. ComponentSymbolReference2=CON-8X2PIN
  1480. ComponentUpdate2=1
  1481. ComponentIsDeviceSheet2=0
  1482. ComponentLibIdentifierKind3=Library Name And Type
  1483. ComponentLibraryIdentifier3=MKP_lib.DbLib/Components
  1484. ComponentDesignItemID3=3.0-2*2A
  1485. ComponentSymbolReference3=CON-2X2PIN
  1486. ComponentUpdate3=1
  1487. ComponentIsDeviceSheet3=0
  1488. ComponentLibIdentifierKind4=Library Name And Type
  1489. ComponentLibraryIdentifier4=MKP_lib.DbLib/Components
  1490. ComponentDesignItemID4=3N27000G33YC
  1491. ComponentSymbolReference4=OSCILLATOR
  1492. ComponentUpdate4=1
  1493. ComponentIsDeviceSheet4=0
  1494. ComponentLibIdentifierKind5=Library Name And Type
  1495. ComponentLibraryIdentifier5=MKP_lib.DbLib/Components
  1496. ComponentDesignItemID5=A2541WV-4P
  1497. ComponentSymbolReference5=CON-4PIN
  1498. ComponentUpdate5=1
  1499. ComponentIsDeviceSheet5=0
  1500. ComponentLibIdentifierKind6=Library Name And Type
  1501. ComponentLibraryIdentifier6=MKP_lib.DbLib/Components
  1502. ComponentDesignItemID6=ABS07-32.768KHZ-T
  1503. ComponentSymbolReference6=XTL-2PIN
  1504. ComponentUpdate6=1
  1505. ComponentIsDeviceSheet6=0
  1506. ComponentLibIdentifierKind7=Library Name And Type
  1507. ComponentLibraryIdentifier7=MKP_lib.DbLib/Components
  1508. ComponentDesignItemID7=AC0402FR-07590KL
  1509. ComponentSymbolReference7=RES
  1510. ComponentUpdate7=1
  1511. ComponentIsDeviceSheet7=0
  1512. ComponentLibIdentifierKind8=Library Name And Type
  1513. ComponentLibraryIdentifier8=MKP_lib.DbLib/Components
  1514. ComponentDesignItemID8=AFC07-S20FCC-00
  1515. ComponentSymbolReference8=FFC-20P
  1516. ComponentUpdate8=1
  1517. ComponentIsDeviceSheet8=0
  1518. ComponentLibIdentifierKind9=Library Name And Type
  1519. ComponentLibraryIdentifier9=MKP_lib.DbLib/Components
  1520. ComponentDesignItemID9=APCI0146-P001A
  1521. ComponentSymbolReference9=APCI0146-P001A
  1522. ComponentUpdate9=1
  1523. ComponentIsDeviceSheet9=0
  1524. ComponentLibIdentifierKind10=Library Name And Type
  1525. ComponentLibraryIdentifier10=MKP_lib.DbLib/Components
  1526. ComponentDesignItemID10=APX823-26W5G-7
  1527. ComponentSymbolReference10=APX823-26W5G-7
  1528. ComponentUpdate10=1
  1529. ComponentIsDeviceSheet10=0
  1530. ComponentLibIdentifierKind11=Library Name And Type
  1531. ComponentLibraryIdentifier11=MKP_lib.DbLib/Components
  1532. ComponentDesignItemID11=AZ6118-01F
  1533. ComponentSymbolReference11=TVS
  1534. ComponentUpdate11=1
  1535. ComponentIsDeviceSheet11=0
  1536. ComponentLibIdentifierKind12=Library Name And Type
  1537. ComponentLibraryIdentifier12=MKP_lib.DbLib/Components
  1538. ComponentDesignItemID12=B72590D50H160
  1539. ComponentSymbolReference12=B72590D50H160
  1540. ComponentUpdate12=1
  1541. ComponentIsDeviceSheet12=0
  1542. ComponentLibIdentifierKind13=Library Name And Type
  1543. ComponentLibraryIdentifier13=MKP_lib.DbLib/Components
  1544. ComponentDesignItemID13=BLM18KG221SN1D
  1545. ComponentSymbolReference13=FB
  1546. ComponentUpdate13=1
  1547. ComponentIsDeviceSheet13=0
  1548. ComponentLibIdentifierKind14=Library Name And Type
  1549. ComponentLibraryIdentifier14=MKP_lib.DbLib/Components
  1550. ComponentDesignItemID14=BLM31KN121SN1L
  1551. ComponentSymbolReference14=FB
  1552. ComponentUpdate14=1
  1553. ComponentIsDeviceSheet14=0
  1554. ComponentLibIdentifierKind15=Library Name And Type
  1555. ComponentLibraryIdentifier15=MKP_lib.DbLib/Components
  1556. ComponentDesignItemID15=C0603X5R105K500NT
  1557. ComponentSymbolReference15=CAP
  1558. ComponentUpdate15=1
  1559. ComponentIsDeviceSheet15=0
  1560. ComponentLibIdentifierKind16=Library Name And Type
  1561. ComponentLibraryIdentifier16=MKP_lib.DbLib/Components
  1562. ComponentDesignItemID16=C0603X5R475K350NT
  1563. ComponentSymbolReference16=C0603X5R475K350NT
  1564. ComponentUpdate16=1
  1565. ComponentIsDeviceSheet16=0
  1566. ComponentLibIdentifierKind17=Library Name And Type
  1567. ComponentLibraryIdentifier17=MKP_lib.DbLib/Components
  1568. ComponentDesignItemID17=C0805X5R106K160NT
  1569. ComponentSymbolReference17=CAP
  1570. ComponentUpdate17=1
  1571. ComponentIsDeviceSheet17=0
  1572. ComponentLibIdentifierKind18=Library Name And Type
  1573. ComponentLibraryIdentifier18=MKP_lib.DbLib/Components
  1574. ComponentDesignItemID18=CC0402FRNPO9BN101
  1575. ComponentSymbolReference18=CAP
  1576. ComponentUpdate18=1
  1577. ComponentIsDeviceSheet18=0
  1578. ComponentLibIdentifierKind19=Library Name And Type
  1579. ComponentLibraryIdentifier19=MKP_lib.DbLib/Components
  1580. ComponentDesignItemID19=CC0402FRNPO9BN120
  1581. ComponentSymbolReference19=CAP
  1582. ComponentUpdate19=1
  1583. ComponentIsDeviceSheet19=0
  1584. ComponentLibIdentifierKind20=Library Name And Type
  1585. ComponentLibraryIdentifier20=MKP_lib.DbLib/Components
  1586. ComponentDesignItemID20=CC0402KRX7R7BB104
  1587. ComponentSymbolReference20=CAP
  1588. ComponentUpdate20=1
  1589. ComponentIsDeviceSheet20=0
  1590. ComponentLibIdentifierKind21=Library Name And Type
  1591. ComponentLibraryIdentifier21=MKP_lib.DbLib/Components
  1592. ComponentDesignItemID21=CC0402KRX7R9BB103
  1593. ComponentSymbolReference21=CAP
  1594. ComponentUpdate21=1
  1595. ComponentIsDeviceSheet21=0
  1596. ComponentLibIdentifierKind22=Library Name And Type
  1597. ComponentLibraryIdentifier22=MKP_lib.DbLib/Components
  1598. ComponentDesignItemID22=CC0402KRX7R9BB104
  1599. ComponentSymbolReference22=CAP
  1600. ComponentUpdate22=1
  1601. ComponentIsDeviceSheet22=0
  1602. ComponentLibIdentifierKind23=Library Name And Type
  1603. ComponentLibraryIdentifier23=MKP_lib.DbLib/Components
  1604. ComponentDesignItemID23=CC0603JRNPO9BN750
  1605. ComponentSymbolReference23=CAP
  1606. ComponentUpdate23=1
  1607. ComponentIsDeviceSheet23=0
  1608. ComponentLibIdentifierKind24=Library Name And Type
  1609. ComponentLibraryIdentifier24=MKP_lib.DbLib/Components
  1610. ComponentDesignItemID24=CC0603KRX7R9BB104
  1611. ComponentSymbolReference24=CAP
  1612. ComponentUpdate24=1
  1613. ComponentIsDeviceSheet24=0
  1614. ComponentLibIdentifierKind25=Library Name And Type
  1615. ComponentLibraryIdentifier25=MKP_lib.DbLib/Components
  1616. ComponentDesignItemID25=CC0603KRX7R9BB474
  1617. ComponentSymbolReference25=CAP
  1618. ComponentUpdate25=1
  1619. ComponentIsDeviceSheet25=0
  1620. ComponentLibIdentifierKind26=Library Name And Type
  1621. ComponentLibraryIdentifier26=MKP_lib.DbLib/Components
  1622. ComponentDesignItemID26=CC0603KRX7R9BB561
  1623. ComponentSymbolReference26=CAP
  1624. ComponentUpdate26=1
  1625. ComponentIsDeviceSheet26=0
  1626. ComponentLibIdentifierKind27=Library Name And Type
  1627. ComponentLibraryIdentifier27=MKP_lib.DbLib/Components
  1628. ComponentDesignItemID27=CC0603KRX7R9BB563
  1629. ComponentSymbolReference27=CAP
  1630. ComponentUpdate27=1
  1631. ComponentIsDeviceSheet27=0
  1632. ComponentLibIdentifierKind28=Library Name And Type
  1633. ComponentLibraryIdentifier28=MKP_lib.DbLib/Components
  1634. ComponentDesignItemID28=CC1206KKX7R0BB104
  1635. ComponentSymbolReference28=CAP
  1636. ComponentUpdate28=1
  1637. ComponentIsDeviceSheet28=0
  1638. ComponentLibIdentifierKind29=Library Name And Type
  1639. ComponentLibraryIdentifier29=MKP_lib.DbLib/Components
  1640. ComponentDesignItemID29=CCTC TCC1206X7R225K101HT
  1641. ComponentSymbolReference29=CAP
  1642. ComponentUpdate29=1
  1643. ComponentIsDeviceSheet29=0
  1644. ComponentLibIdentifierKind30=Library Name And Type
  1645. ComponentLibraryIdentifier30=MKP_lib.DbLib/Components
  1646. ComponentDesignItemID30=CL05A105KO5NNNC
  1647. ComponentSymbolReference30=CAP
  1648. ComponentUpdate30=1
  1649. ComponentIsDeviceSheet30=0
  1650. ComponentLibIdentifierKind31=Library Name And Type
  1651. ComponentLibraryIdentifier31=MKP_lib.DbLib/Components
  1652. ComponentDesignItemID31=CL05C330JB5NNNC
  1653. ComponentSymbolReference31=CAP
  1654. ComponentUpdate31=1
  1655. ComponentIsDeviceSheet31=0
  1656. ComponentLibIdentifierKind32=Library Name And Type
  1657. ComponentLibraryIdentifier32=MKP_lib.DbLib/Components
  1658. ComponentDesignItemID32=CL10A226MO7JZNC
  1659. ComponentSymbolReference32=CL10A226MO7JZNC
  1660. ComponentUpdate32=1
  1661. ComponentIsDeviceSheet32=0
  1662. ComponentLibIdentifierKind33=Library Name And Type
  1663. ComponentLibraryIdentifier33=MKP_lib.DbLib/Components
  1664. ComponentDesignItemID33=CL10A226MQ8NRNE
  1665. ComponentSymbolReference33=CAP
  1666. ComponentUpdate33=1
  1667. ComponentIsDeviceSheet33=0
  1668. ComponentLibIdentifierKind34=Library Name And Type
  1669. ComponentLibraryIdentifier34=MKP_lib.DbLib/Components
  1670. ComponentDesignItemID34=CL10A476MQ8QRNC
  1671. ComponentSymbolReference34=CAP
  1672. ComponentUpdate34=1
  1673. ComponentIsDeviceSheet34=0
  1674. ComponentLibIdentifierKind35=Library Name And Type
  1675. ComponentLibraryIdentifier35=MKP_lib.DbLib/Components
  1676. ComponentDesignItemID35=D-DMR009PM-D002
  1677. ComponentSymbolReference35=D-DMR009PM-D002
  1678. ComponentUpdate35=1
  1679. ComponentIsDeviceSheet35=0
  1680. ComponentLibIdentifierKind36=Library Name And Type
  1681. ComponentLibraryIdentifier36=MKP_lib.DbLib/Components
  1682. ComponentDesignItemID36=DLM0NSN900HY2D
  1683. ComponentSymbolReference36=Common Mode Filters
  1684. ComponentUpdate36=1
  1685. ComponentIsDeviceSheet36=0
  1686. ComponentLibIdentifierKind37=Library Name And Type
  1687. ComponentLibraryIdentifier37=MKP_lib.DbLib/Components
  1688. ComponentDesignItemID37=DRQ125-220-R
  1689. ComponentSymbolReference37=DRQ125
  1690. ComponentUpdate37=1
  1691. ComponentIsDeviceSheet37=0
  1692. ComponentLibIdentifierKind38=Library Name And Type
  1693. ComponentLibraryIdentifier38=MKP_lib.DbLib/Components
  1694. ComponentDesignItemID38=EC25EUGA-512-SGNS
  1695. ComponentSymbolReference38=EC25EUGA-512-SGNS
  1696. ComponentUpdate38=1
  1697. ComponentIsDeviceSheet38=0
  1698. ComponentLibIdentifierKind39=Library Name And Type
  1699. ComponentLibraryIdentifier39=MKP_lib.DbLib/Components
  1700. ComponentDesignItemID39=EL3H7(B)(TA)-VG
  1701. ComponentSymbolReference39=PS2801
  1702. ComponentUpdate39=1
  1703. ComponentIsDeviceSheet39=0
  1704. ComponentLibIdentifierKind40=Library Name And Type
  1705. ComponentLibraryIdentifier40=MKP_lib.DbLib/Components
  1706. ComponentDesignItemID40=EMK316BBJ476ML-T
  1707. ComponentSymbolReference40=CAP
  1708. ComponentUpdate40=1
  1709. ComponentIsDeviceSheet40=0
  1710. ComponentLibIdentifierKind41=Library Name And Type
  1711. ComponentLibraryIdentifier41=MKP_lib.DbLib/Components
  1712. ComponentDesignItemID41=ESD5Z5V0
  1713. ComponentSymbolReference41=TVS
  1714. ComponentUpdate41=1
  1715. ComponentIsDeviceSheet41=0
  1716. ComponentLibIdentifierKind42=Library Name And Type
  1717. ComponentLibraryIdentifier42=MKP_lib.DbLib/Components
  1718. ComponentDesignItemID42=EWK1HM101F11OT
  1719. ComponentSymbolReference42=CAPP
  1720. ComponentUpdate42=1
  1721. ComponentIsDeviceSheet42=0
  1722. ComponentLibIdentifierKind43=Library Name And Type
  1723. ComponentLibraryIdentifier43=MKP_lib.DbLib/Components
  1724. ComponentDesignItemID43=FN21N100J500PAG
  1725. ComponentSymbolReference43=CAP
  1726. ComponentUpdate43=1
  1727. ComponentIsDeviceSheet43=0
  1728. ComponentLibIdentifierKind44=Library Name And Type
  1729. ComponentLibraryIdentifier44=MKP_lib.DbLib/Components
  1730. ComponentDesignItemID44=GT-F0502SR20-24SMT01
  1731. ComponentSymbolReference44=CON-24PIN
  1732. ComponentUpdate44=1
  1733. ComponentIsDeviceSheet44=0
  1734. ComponentLibIdentifierKind45=Library Name And Type
  1735. ComponentLibraryIdentifier45=MKP_lib.DbLib/Components
  1736. ComponentDesignItemID45=HNB09A05
  1737. ComponentSymbolReference45=BUZZER
  1738. ComponentUpdate45=1
  1739. ComponentIsDeviceSheet45=0
  1740. ComponentLibIdentifierKind46=Library Name And Type
  1741. ComponentLibraryIdentifier46=MKP_lib.DbLib/Components
  1742. ComponentDesignItemID46=HT66F0021
  1743. ComponentSymbolReference46=HT66F0021
  1744. ComponentUpdate46=1
  1745. ComponentIsDeviceSheet46=0
  1746. ComponentLibIdentifierKind47=Library Name And Type
  1747. ComponentLibraryIdentifier47=MKP_lib.DbLib/Components
  1748. ComponentDesignItemID47=KH-IPEX-K501-29
  1749. ComponentSymbolReference47=KH-IPEX-K501-29
  1750. ComponentUpdate47=1
  1751. ComponentIsDeviceSheet47=0
  1752. ComponentLibIdentifierKind48=Library Name And Type
  1753. ComponentLibraryIdentifier48=MKP_lib.DbLib/Components
  1754. ComponentDesignItemID48=LBAT54CLT1G
  1755. ComponentSymbolReference48=DIODE-3
  1756. ComponentUpdate48=1
  1757. ComponentIsDeviceSheet48=0
  1758. ComponentLibIdentifierKind49=Library Name And Type
  1759. ComponentLibraryIdentifier49=MKP_lib.DbLib/Components
  1760. ComponentDesignItemID49=LBSS139LT1G
  1761. ComponentSymbolReference49=N-Channel
  1762. ComponentUpdate49=1
  1763. ComponentIsDeviceSheet49=0
  1764. ComponentLibIdentifierKind50=Library Name And Type
  1765. ComponentLibraryIdentifier50=MKP_lib.DbLib/Components
  1766. ComponentDesignItemID50=LK8563T
  1767. ComponentSymbolReference50=LK8563T
  1768. ComponentUpdate50=1
  1769. ComponentIsDeviceSheet50=0
  1770. ComponentLibIdentifierKind51=Library Name And Type
  1771. ComponentLibraryIdentifier51=MKP_lib.DbLib/Components
  1772. ComponentDesignItemID51=LM3481MMX/NOPB
  1773. ComponentSymbolReference51=LM3481MMX/NOPB
  1774. ComponentUpdate51=1
  1775. ComponentIsDeviceSheet51=0
  1776. ComponentLibIdentifierKind52=Library Name And Type
  1777. ComponentLibraryIdentifier52=MKP_lib.DbLib/Components
  1778. ComponentDesignItemID52=LM393DR
  1779. ComponentSymbolReference52=LM358
  1780. ComponentUpdate52=1
  1781. ComponentIsDeviceSheet52=0
  1782. ComponentLibIdentifierKind53=Library Name And Type
  1783. ComponentLibraryIdentifier53=MKP_lib.DbLib/Components
  1784. ComponentDesignItemID53=LM-SE05NRE14GA
  1785. ComponentSymbolReference53=LM-SE05NRE14GA
  1786. ComponentUpdate53=1
  1787. ComponentIsDeviceSheet53=0
  1788. ComponentLibIdentifierKind54=Library Name And Type
  1789. ComponentLibraryIdentifier54=MKP_lib.DbLib/Components
  1790. ComponentDesignItemID54=LQG15HS56NJ02D
  1791. ComponentSymbolReference54=IND
  1792. ComponentUpdate54=1
  1793. ComponentIsDeviceSheet54=0
  1794. ComponentLibIdentifierKind55=Library Name And Type
  1795. ComponentLibraryIdentifier55=MKP_lib.DbLib/Components
  1796. ComponentDesignItemID55=LQM2HPN2R2MGHL
  1797. ComponentSymbolReference55=IND
  1798. ComponentUpdate55=1
  1799. ComponentIsDeviceSheet55=0
  1800. ComponentLibIdentifierKind56=Library Name And Type
  1801. ComponentLibraryIdentifier56=MKP_lib.DbLib/Components
  1802. ComponentDesignItemID56=M7
  1803. ComponentSymbolReference56=Diode
  1804. ComponentUpdate56=1
  1805. ComponentIsDeviceSheet56=0
  1806. ComponentLibIdentifierKind57=Library Name And Type
  1807. ComponentLibraryIdentifier57=MKP_lib.DbLib/Components
  1808. ComponentDesignItemID57=MAI4020S-2R2MT
  1809. ComponentSymbolReference57=IND
  1810. ComponentUpdate57=1
  1811. ComponentIsDeviceSheet57=0
  1812. ComponentLibIdentifierKind58=Library Name And Type
  1813. ComponentLibraryIdentifier58=MKP_lib.DbLib/Components
  1814. ComponentDesignItemID58=MAX3232CDR
  1815. ComponentSymbolReference58=Max3232
  1816. ComponentUpdate58=1
  1817. ComponentIsDeviceSheet58=0
  1818. ComponentLibIdentifierKind59=Library Name And Type
  1819. ComponentLibraryIdentifier59=MKP_lib.DbLib/Components
  1820. ComponentDesignItemID59=MF-NSMF110-2
  1821. ComponentSymbolReference59=Fuse
  1822. ComponentUpdate59=1
  1823. ComponentIsDeviceSheet59=0
  1824. ComponentLibIdentifierKind60=Library Name And Type
  1825. ComponentLibraryIdentifier60=MKP_lib.DbLib/Components
  1826. ComponentDesignItemID60=MMBT3904-TP
  1827. ComponentSymbolReference60=NPN
  1828. ComponentUpdate60=1
  1829. ComponentIsDeviceSheet60=0
  1830. ComponentLibIdentifierKind61=Library Name And Type
  1831. ComponentLibraryIdentifier61=MKP_lib.DbLib/Components
  1832. ComponentDesignItemID61=MMBTA05LT1G
  1833. ComponentSymbolReference61=NPN
  1834. ComponentUpdate61=1
  1835. ComponentIsDeviceSheet61=0
  1836. ComponentLibIdentifierKind62=Library Name And Type
  1837. ComponentLibraryIdentifier62=MKP_lib.DbLib/Components
  1838. ComponentDesignItemID62=MR01A-01211
  1839. ComponentSymbolReference62=MicroSDCard
  1840. ComponentUpdate62=1
  1841. ComponentIsDeviceSheet62=0
  1842. ComponentLibIdentifierKind63=Library Name And Type
  1843. ComponentLibraryIdentifier63=MKP_lib.DbLib/Components
  1844. ComponentDesignItemID63=N4
  1845. ComponentSymbolReference63=N4
  1846. ComponentUpdate63=1
  1847. ComponentIsDeviceSheet63=0
  1848. ComponentLibIdentifierKind64=Library Name And Type
  1849. ComponentLibraryIdentifier64=MKP_lib.DbLib/Components
  1850. ComponentDesignItemID64=NDP2435KC
  1851. ComponentSymbolReference64=NDP2435KC
  1852. ComponentUpdate64=1
  1853. ComponentIsDeviceSheet64=0
  1854. ComponentLibIdentifierKind65=Library Name And Type
  1855. ComponentLibraryIdentifier65=MKP_lib.DbLib/Components
  1856. ComponentDesignItemID65=PA4341.103ANLT
  1857. ComponentSymbolReference65=IND
  1858. ComponentUpdate65=1
  1859. ComponentIsDeviceSheet65=0
  1860. ComponentLibIdentifierKind66=Library Name And Type
  1861. ComponentLibraryIdentifier66=MKP_lib.DbLib/Components
  1862. ComponentDesignItemID66=PE1206DRF7W0R015L
  1863. ComponentSymbolReference66=RES
  1864. ComponentUpdate66=1
  1865. ComponentIsDeviceSheet66=0
  1866. ComponentLibIdentifierKind67=Library Name And Type
  1867. ComponentLibraryIdentifier67=MKP_lib.DbLib/Components
  1868. ComponentDesignItemID67=PTVS5V0S1UR,115
  1869. ComponentSymbolReference67=TVS
  1870. ComponentUpdate67=1
  1871. ComponentIsDeviceSheet67=0
  1872. ComponentLibIdentifierKind68=Library Name And Type
  1873. ComponentLibraryIdentifier68=MKP_lib.DbLib/Components
  1874. ComponentDesignItemID68=PZ254R-12-4P
  1875. ComponentSymbolReference68=CON-2X2PIN
  1876. ComponentUpdate68=1
  1877. ComponentIsDeviceSheet68=0
  1878. ComponentLibIdentifierKind69=Library Name And Type
  1879. ComponentLibraryIdentifier69=MKP_lib.DbLib/Components
  1880. ComponentDesignItemID69=RC0402FR-070RL
  1881. ComponentSymbolReference69=RES
  1882. ComponentUpdate69=1
  1883. ComponentIsDeviceSheet69=0
  1884. ComponentLibIdentifierKind70=Library Name And Type
  1885. ComponentLibraryIdentifier70=MKP_lib.DbLib/Components
  1886. ComponentDesignItemID70=RC0402FR-07100KL
  1887. ComponentSymbolReference70=RES
  1888. ComponentUpdate70=1
  1889. ComponentIsDeviceSheet70=0
  1890. ComponentLibIdentifierKind71=Library Name And Type
  1891. ComponentLibraryIdentifier71=MKP_lib.DbLib/Components
  1892. ComponentDesignItemID71=RC0402FR-07100RL
  1893. ComponentSymbolReference71=RES
  1894. ComponentUpdate71=1
  1895. ComponentIsDeviceSheet71=0
  1896. ComponentLibIdentifierKind72=Library Name And Type
  1897. ComponentLibraryIdentifier72=MKP_lib.DbLib/Components
  1898. ComponentDesignItemID72=RC0402FR-07105KL
  1899. ComponentSymbolReference72=RES
  1900. ComponentUpdate72=1
  1901. ComponentIsDeviceSheet72=0
  1902. ComponentLibIdentifierKind73=Library Name And Type
  1903. ComponentLibraryIdentifier73=MKP_lib.DbLib/Components
  1904. ComponentDesignItemID73=RC0402FR-0710KL
  1905. ComponentSymbolReference73=RES
  1906. ComponentUpdate73=1
  1907. ComponentIsDeviceSheet73=0
  1908. ComponentLibIdentifierKind74=Library Name And Type
  1909. ComponentLibraryIdentifier74=MKP_lib.DbLib/Components
  1910. ComponentDesignItemID74=RC0402FR-0710RL
  1911. ComponentSymbolReference74=RES
  1912. ComponentUpdate74=1
  1913. ComponentIsDeviceSheet74=0
  1914. ComponentLibIdentifierKind75=Library Name And Type
  1915. ComponentLibraryIdentifier75=MKP_lib.DbLib/Components
  1916. ComponentDesignItemID75=RC0402FR-0715KL
  1917. ComponentSymbolReference75=RES
  1918. ComponentUpdate75=1
  1919. ComponentIsDeviceSheet75=0
  1920. ComponentLibIdentifierKind76=Library Name And Type
  1921. ComponentLibraryIdentifier76=MKP_lib.DbLib/Components
  1922. ComponentDesignItemID76=RC0402FR-071K91L
  1923. ComponentSymbolReference76=RES
  1924. ComponentUpdate76=1
  1925. ComponentIsDeviceSheet76=0
  1926. ComponentLibIdentifierKind77=Library Name And Type
  1927. ComponentLibraryIdentifier77=MKP_lib.DbLib/Components
  1928. ComponentDesignItemID77=RC0402FR-071KL
  1929. ComponentSymbolReference77=RES
  1930. ComponentUpdate77=1
  1931. ComponentIsDeviceSheet77=0
  1932. ComponentLibIdentifierKind78=Library Name And Type
  1933. ComponentLibraryIdentifier78=MKP_lib.DbLib/Components
  1934. ComponentDesignItemID78=RC0402FR-0720KL
  1935. ComponentSymbolReference78=RES
  1936. ComponentUpdate78=1
  1937. ComponentIsDeviceSheet78=0
  1938. ComponentLibIdentifierKind79=Library Name And Type
  1939. ComponentLibraryIdentifier79=MKP_lib.DbLib/Components
  1940. ComponentDesignItemID79=RC0402FR-0721K5L
  1941. ComponentSymbolReference79=RES
  1942. ComponentUpdate79=1
  1943. ComponentIsDeviceSheet79=0
  1944. ComponentLibIdentifierKind80=Library Name And Type
  1945. ComponentLibraryIdentifier80=MKP_lib.DbLib/Components
  1946. ComponentDesignItemID80=RC0402FR-0722RL
  1947. ComponentSymbolReference80=RES
  1948. ComponentUpdate80=1
  1949. ComponentIsDeviceSheet80=0
  1950. ComponentLibIdentifierKind81=Library Name And Type
  1951. ComponentLibraryIdentifier81=MKP_lib.DbLib/Components
  1952. ComponentDesignItemID81=RC0402FR-0724K9L
  1953. ComponentSymbolReference81=RES
  1954. ComponentUpdate81=1
  1955. ComponentIsDeviceSheet81=0
  1956. ComponentLibIdentifierKind82=Library Name And Type
  1957. ComponentLibraryIdentifier82=MKP_lib.DbLib/Components
  1958. ComponentDesignItemID82=RC0402FR-072K2L
  1959. ComponentSymbolReference82=RES
  1960. ComponentUpdate82=1
  1961. ComponentIsDeviceSheet82=0
  1962. ComponentLibIdentifierKind83=Library Name And Type
  1963. ComponentLibraryIdentifier83=MKP_lib.DbLib/Components
  1964. ComponentDesignItemID83=RC0402FR-072K49L
  1965. ComponentSymbolReference83=RES
  1966. ComponentUpdate83=1
  1967. ComponentIsDeviceSheet83=0
  1968. ComponentLibIdentifierKind84=Library Name And Type
  1969. ComponentLibraryIdentifier84=MKP_lib.DbLib/Components
  1970. ComponentDesignItemID84=RC0402FR-0734KL
  1971. ComponentSymbolReference84=RES
  1972. ComponentUpdate84=1
  1973. ComponentIsDeviceSheet84=0
  1974. ComponentLibIdentifierKind85=Library Name And Type
  1975. ComponentLibraryIdentifier85=MKP_lib.DbLib/Components
  1976. ComponentDesignItemID85=RC0402FR-0739K2L
  1977. ComponentSymbolReference85=RES
  1978. ComponentUpdate85=1
  1979. ComponentIsDeviceSheet85=0
  1980. ComponentLibIdentifierKind86=Library Name And Type
  1981. ComponentLibraryIdentifier86=MKP_lib.DbLib/Components
  1982. ComponentDesignItemID86=RC0402FR-073K3L
  1983. ComponentSymbolReference86=RES
  1984. ComponentUpdate86=1
  1985. ComponentIsDeviceSheet86=0
  1986. ComponentLibIdentifierKind87=Library Name And Type
  1987. ComponentLibraryIdentifier87=MKP_lib.DbLib/Components
  1988. ComponentDesignItemID87=RC0402FR-07470RL
  1989. ComponentSymbolReference87=RES
  1990. ComponentUpdate87=1
  1991. ComponentIsDeviceSheet87=0
  1992. ComponentLibIdentifierKind88=Library Name And Type
  1993. ComponentLibraryIdentifier88=MKP_lib.DbLib/Components
  1994. ComponentDesignItemID88=RC0402FR-0747KL
  1995. ComponentSymbolReference88=RES
  1996. ComponentUpdate88=1
  1997. ComponentIsDeviceSheet88=0
  1998. ComponentLibIdentifierKind89=Library Name And Type
  1999. ComponentLibraryIdentifier89=MKP_lib.DbLib/Components
  2000. ComponentDesignItemID89=RC0402FR-074K7L
  2001. ComponentSymbolReference89=RES
  2002. ComponentUpdate89=1
  2003. ComponentIsDeviceSheet89=0
  2004. ComponentLibIdentifierKind90=Library Name And Type
  2005. ComponentLibraryIdentifier90=MKP_lib.DbLib/Components
  2006. ComponentDesignItemID90=RC0402FR-0757K6P
  2007. ComponentSymbolReference90=RES
  2008. ComponentUpdate90=1
  2009. ComponentIsDeviceSheet90=0
  2010. ComponentLibIdentifierKind91=Library Name And Type
  2011. ComponentLibraryIdentifier91=MKP_lib.DbLib/Components
  2012. ComponentDesignItemID91=RC0402FR-075K6L
  2013. ComponentSymbolReference91=RES
  2014. ComponentUpdate91=1
  2015. ComponentIsDeviceSheet91=0
  2016. ComponentLibIdentifierKind92=Library Name And Type
  2017. ComponentLibraryIdentifier92=MKP_lib.DbLib/Components
  2018. ComponentDesignItemID92=RC0402FR-0768KL
  2019. ComponentSymbolReference92=RES
  2020. ComponentUpdate92=1
  2021. ComponentIsDeviceSheet92=0
  2022. ComponentLibIdentifierKind93=Library Name And Type
  2023. ComponentLibraryIdentifier93=MKP_lib.DbLib/Components
  2024. ComponentDesignItemID93=RC0402FR-0769K8L
  2025. ComponentSymbolReference93=RES
  2026. ComponentUpdate93=1
  2027. ComponentIsDeviceSheet93=0
  2028. ComponentLibIdentifierKind94=Library Name And Type
  2029. ComponentLibraryIdentifier94=MKP_lib.DbLib/Components
  2030. ComponentDesignItemID94=RC0402FR-076K8L
  2031. ComponentSymbolReference94=RES
  2032. ComponentUpdate94=1
  2033. ComponentIsDeviceSheet94=0
  2034. ComponentLibIdentifierKind95=Library Name And Type
  2035. ComponentLibraryIdentifier95=MKP_lib.DbLib/Components
  2036. ComponentDesignItemID95=RC0402FR-0775RL
  2037. ComponentSymbolReference95=RES
  2038. ComponentUpdate95=1
  2039. ComponentIsDeviceSheet95=0
  2040. ComponentLibIdentifierKind96=Library Name And Type
  2041. ComponentLibraryIdentifier96=MKP_lib.DbLib/Components
  2042. ComponentDesignItemID96=RC0402FR-0784K5L
  2043. ComponentSymbolReference96=RES
  2044. ComponentUpdate96=1
  2045. ComponentIsDeviceSheet96=0
  2046. ComponentLibIdentifierKind97=Library Name And Type
  2047. ComponentLibraryIdentifier97=MKP_lib.DbLib/Components
  2048. ComponentDesignItemID97=RI0603L000JT
  2049. ComponentSymbolReference97=RES
  2050. ComponentUpdate97=1
  2051. ComponentIsDeviceSheet97=0
  2052. ComponentLibIdentifierKind98=Library Name And Type
  2053. ComponentLibraryIdentifier98=MKP_lib.DbLib/Components
  2054. ComponentDesignItemID98=RI0603L1R00FT
  2055. ComponentSymbolReference98=RES
  2056. ComponentUpdate98=1
  2057. ComponentIsDeviceSheet98=0
  2058. ComponentLibIdentifierKind99=Library Name And Type
  2059. ComponentLibraryIdentifier99=MKP_lib.DbLib/Components
  2060. ComponentDesignItemID99=RI1206L000JT
  2061. ComponentSymbolReference99=RES
  2062. ComponentUpdate99=1
  2063. ComponentIsDeviceSheet99=0
  2064. ComponentLibIdentifierKind100=Library Name And Type
  2065. ComponentLibraryIdentifier100=MKP_lib.DbLib/Components
  2066. ComponentDesignItemID100=RS1G126XC5
  2067. ComponentSymbolReference100=RS1G126XC5
  2068. ComponentUpdate100=1
  2069. ComponentIsDeviceSheet100=0
  2070. ComponentLibIdentifierKind101=Library Name And Type
  2071. ComponentLibraryIdentifier101=MKP_lib.DbLib/Components
  2072. ComponentDesignItemID101=RT1H101M0810
  2073. ComponentSymbolReference101=CAPP
  2074. ComponentUpdate101=1
  2075. ComponentIsDeviceSheet101=0
  2076. ComponentLibIdentifierKind102=Library Name And Type
  2077. ComponentLibraryIdentifier102=MKP_lib.DbLib/Components
  2078. ComponentDesignItemID102=RT7-174AAM1A
  2079. ComponentSymbolReference102=RT7-174AAM1A
  2080. ComponentUpdate102=1
  2081. ComponentIsDeviceSheet102=0
  2082. ComponentLibIdentifierKind103=Library Name And Type
  2083. ComponentLibraryIdentifier103=MKP_lib.DbLib/Components
  2084. ComponentDesignItemID103=RVT1A331M0607
  2085. ComponentSymbolReference103=CAPP
  2086. ComponentUpdate103=1
  2087. ComponentIsDeviceSheet103=0
  2088. ComponentLibIdentifierKind104=Library Name And Type
  2089. ComponentLibraryIdentifier104=MKP_lib.DbLib/Components
  2090. ComponentDesignItemID104=RVT2A100M0605
  2091. ComponentSymbolReference104=CAPP
  2092. ComponentUpdate104=1
  2093. ComponentIsDeviceSheet104=0
  2094. ComponentLibIdentifierKind105=Library Name And Type
  2095. ComponentLibraryIdentifier105=MKP_lib.DbLib/Components
  2096. ComponentDesignItemID105=RY3408
  2097. ComponentSymbolReference105=RY3408
  2098. ComponentUpdate105=1
  2099. ComponentIsDeviceSheet105=0
  2100. ComponentLibIdentifierKind106=Library Name And Type
  2101. ComponentLibraryIdentifier106=MKP_lib.DbLib/Components
  2102. ComponentDesignItemID106=S10M
  2103. ComponentSymbolReference106=Diode
  2104. ComponentUpdate106=1
  2105. ComponentIsDeviceSheet106=0
  2106. ComponentLibIdentifierKind107=Library Name And Type
  2107. ComponentLibraryIdentifier107=MKP_lib.DbLib/Components
  2108. ComponentDesignItemID107=SGM2028-ADJYN5G/TR
  2109. ComponentSymbolReference107=SGM2028-ADJYN5G/TR
  2110. ComponentUpdate107=1
  2111. ComponentIsDeviceSheet107=0
  2112. ComponentLibIdentifierKind108=Library Name And Type
  2113. ComponentLibraryIdentifier108=MKP_lib.DbLib/Components
  2114. ComponentDesignItemID108=SI2333CDS
  2115. ComponentSymbolReference108=P-Channel
  2116. ComponentUpdate108=1
  2117. ComponentIsDeviceSheet108=0
  2118. ComponentLibIdentifierKind109=Library Name And Type
  2119. ComponentLibraryIdentifier109=MKP_lib.DbLib/Components
  2120. ComponentDesignItemID109=SIM8066-6-1-14-01-A
  2121. ComponentSymbolReference109=SIM8066-6-1-14-01-A
  2122. ComponentUpdate109=1
  2123. ComponentIsDeviceSheet109=0
  2124. ComponentLibIdentifierKind110=Library Name And Type
  2125. ComponentLibraryIdentifier110=MKP_lib.DbLib/Components
  2126. ComponentDesignItemID110=SMF05CT1G-P
  2127. ComponentSymbolReference110=SMF05CT1G-P
  2128. ComponentUpdate110=1
  2129. ComponentIsDeviceSheet110=0
  2130. ComponentLibIdentifierKind111=Library Name And Type
  2131. ComponentLibraryIdentifier111=MKP_lib.DbLib/Components
  2132. ComponentDesignItemID111=SMF54A
  2133. ComponentSymbolReference111=TVS
  2134. ComponentUpdate111=1
  2135. ComponentIsDeviceSheet111=0
  2136. ComponentLibIdentifierKind112=Library Name And Type
  2137. ComponentLibraryIdentifier112=MKP_lib.DbLib/Components
  2138. ComponentDesignItemID112=SR05-04A
  2139. ComponentSymbolReference112=SR05-04A
  2140. ComponentUpdate112=1
  2141. ComponentIsDeviceSheet112=0
  2142. ComponentLibIdentifierKind113=Library Name And Type
  2143. ComponentLibraryIdentifier113=MKP_lib.DbLib/Components
  2144. ComponentDesignItemID113=SRP6540-2R2M
  2145. ComponentSymbolReference113=IND
  2146. ComponentUpdate113=1
  2147. ComponentIsDeviceSheet113=0
  2148. ComponentLibIdentifierKind114=Library Name And Type
  2149. ComponentLibraryIdentifier114=MKP_lib.DbLib/Components
  2150. ComponentDesignItemID114=SS34A
  2151. ComponentSymbolReference114=SCHOTTKY
  2152. ComponentUpdate114=1
  2153. ComponentIsDeviceSheet114=0
  2154. ComponentLibIdentifierKind115=Library Name And Type
  2155. ComponentLibraryIdentifier115=MKP_lib.DbLib/Components
  2156. ComponentDesignItemID115=SS56F
  2157. ComponentSymbolReference115=SCHOTTKY
  2158. ComponentUpdate115=1
  2159. ComponentIsDeviceSheet115=0
  2160. ComponentLibIdentifierKind116=Library Name And Type
  2161. ComponentLibraryIdentifier116=MKP_lib.DbLib/Components
  2162. ComponentDesignItemID116=SX20Y025000B91T002
  2163. ComponentSymbolReference116=Q22FA12800078
  2164. ComponentUpdate116=1
  2165. ComponentIsDeviceSheet116=0
  2166. ComponentLibIdentifierKind117=Library Name And Type
  2167. ComponentLibraryIdentifier117=MKP_lib.DbLib/Components
  2168. ComponentDesignItemID117=TAJB476K010RNJ
  2169. ComponentSymbolReference117=CAPP
  2170. ComponentUpdate117=1
  2171. ComponentIsDeviceSheet117=0
  2172. ComponentLibIdentifierKind118=Library Name And Type
  2173. ComponentLibraryIdentifier118=MKP_lib.DbLib/Components
  2174. ComponentDesignItemID118=TannhietSOM
  2175. ComponentSymbolReference118=Tannhiet
  2176. ComponentUpdate118=1
  2177. ComponentIsDeviceSheet118=0
  2178. ComponentLibIdentifierKind119=Library Name And Type
  2179. ComponentLibraryIdentifier119=MKP_lib.DbLib/Components
  2180. ComponentDesignItemID119=TP
  2181. ComponentSymbolReference119=TP
  2182. ComponentUpdate119=1
  2183. ComponentIsDeviceSheet119=0
  2184. ComponentLibIdentifierKind120=Library Name And Type
  2185. ComponentLibraryIdentifier120=MKP_lib.DbLib/Components
  2186. ComponentDesignItemID120=TS-1090S-AR02026
  2187. ComponentSymbolReference120=SW-4PIN
  2188. ComponentUpdate120=1
  2189. ComponentIsDeviceSheet120=0
  2190. ComponentLibIdentifierKind121=Library Name And Type
  2191. ComponentLibraryIdentifier121=MKP_lib.DbLib/Components
  2192. ComponentDesignItemID121=UMK212B7104KG-T
  2193. ComponentSymbolReference121=CAP
  2194. ComponentUpdate121=1
  2195. ComponentIsDeviceSheet121=0
  2196. ComponentLibIdentifierKind122=Library Name And Type
  2197. ComponentLibraryIdentifier122=MKP_lib.DbLib/Components
  2198. ComponentDesignItemID122=UPZ2012E102-1R5TF
  2199. ComponentSymbolReference122=FB
  2200. ComponentUpdate122=1
  2201. ComponentIsDeviceSheet122=0
  2202. ComponentLibIdentifierKind123=Library Name And Type
  2203. ComponentLibraryIdentifier123=MKP_lib.DbLib/Components
  2204. ComponentDesignItemID123=VH3.96-3A
  2205. ComponentSymbolReference123=CON-3PIN
  2206. ComponentUpdate123=1
  2207. ComponentIsDeviceSheet123=0
  2208. ComponentLibIdentifierKind124=Library Name And Type
  2209. ComponentLibraryIdentifier124=MKP_lib.DbLib/Components
  2210. ComponentDesignItemID124=XL-1608SURC-06
  2211. ComponentSymbolReference124=LED
  2212. ComponentUpdate124=1
  2213. ComponentIsDeviceSheet124=0
  2214. ComponentLibIdentifierKind125=Library Name And Type
  2215. ComponentLibraryIdentifier125=MKP_lib.DbLib/Components
  2216. ComponentDesignItemID125=XL-1608SYGC-04
  2217. ComponentSymbolReference125=LED
  2218. ComponentUpdate125=1
  2219. ComponentIsDeviceSheet125=0
  2220. ComponentLibIdentifierKind126=Library Name And Type
  2221. ComponentLibraryIdentifier126=MKP_lib.DbLib/Components
  2222. ComponentDesignItemID126=XL-DZ304SURD/3
  2223. ComponentSymbolReference126=LED3
  2224. ComponentUpdate126=1
  2225. ComponentIsDeviceSheet126=0
  2226. ComponentLibIdentifierKind127=Library Name And Type
  2227. ComponentLibraryIdentifier127=MKP_lib.DbLib/Components
  2228. ComponentDesignItemID127=YI201209U601-2R5T
  2229. ComponentSymbolReference127=FB
  2230. ComponentUpdate127=1
  2231. ComponentIsDeviceSheet127=0
  2232. ComponentLibIdentifierKind128=Library Name And Type
  2233. ComponentLibraryIdentifier128=MKP_lib.DbLib/Components
  2234. ComponentDesignItemID128=YJL2305A
  2235. ComponentSymbolReference128=P-Channel
  2236. ComponentUpdate128=1
  2237. ComponentIsDeviceSheet128=0
  2238. ComponentLibIdentifierKind129=Library Name And Type
  2239. ComponentLibraryIdentifier129=MKP_lib.DbLib/Components
  2240. ComponentDesignItemID129=YT8531SH-CA
  2241. ComponentSymbolReference129=YT8531SH-CA
  2242. ComponentUpdate129=1
  2243. ComponentIsDeviceSheet129=0
  2244. ComponentLibIdentifierKind130=Library Name And Type
  2245. ComponentLibraryIdentifier130=MKP_lib.DbLib/Components
  2246. ComponentDesignItemID130=ZX-PZ2.54-2-3PZZ
  2247. ComponentSymbolReference130=CON-3x2PIN
  2248. ComponentUpdate130=1
  2249. ComponentIsDeviceSheet130=0
  2250. ComponentLibIdentifierKind131=Library Name And Type
  2251. ComponentLibraryIdentifier131=MKP_lib.DbLib
  2252. ComponentDesignItemID131=CSD19538Q3A
  2253. ComponentSymbolReference131=Mosfet N-Chanel
  2254. ComponentUpdate131=1
  2255. ComponentIsDeviceSheet131=0
  2256. ComponentLibIdentifierKind132=Library Name And Type
  2257. ComponentLibraryIdentifier132=MKP_lib.DbLib
  2258. ComponentDesignItemID132=JUMP-2.54-2PIN-M-TH
  2259. ComponentSymbolReference132=CON-2PIN
  2260. ComponentUpdate132=1
  2261. ComponentIsDeviceSheet132=0
  2262. ComponentLibIdentifierKind133=Library Name And Type
  2263. ComponentLibraryIdentifier133=MKP_lib.DbLib
  2264. ComponentDesignItemID133=PH-2A
  2265. ComponentSymbolReference133=CON-2PIN
  2266. ComponentUpdate133=1
  2267. ComponentIsDeviceSheet133=0
  2268. ComponentLibIdentifierKind134=Library Name And Type
  2269. ComponentLibraryIdentifier134=MYC_LR3568.SchLib
  2270. ComponentDesignItemID134=MYC-LR3568X
  2271. ComponentSymbolReference134=MYC-LR3568X
  2272. ComponentUpdate134=1
  2273. ComponentIsDeviceSheet134=0
  2274. [Comparison Options]
  2275. ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  2276. ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  2277. ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  2278. ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  2279. ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|UseName=0|InclAllRules=0
  2280. ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  2281. [SmartPDF]
  2282. 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