diff --git a/bitmap2component/bitmap2component.icns b/bitmap2component/bitmap2component.icns index fc08f061cc..7ebd0c5cea 100644 Binary files a/bitmap2component/bitmap2component.icns and b/bitmap2component/bitmap2component.icns differ diff --git a/eeschema/eeschema.icns b/eeschema/eeschema.icns index 2e1edc8270..f575f5739b 100644 Binary files a/eeschema/eeschema.icns and b/eeschema/eeschema.icns differ diff --git a/eeschema/eeschema_doc.icns b/eeschema/eeschema_doc.icns index 2e1edc8270..5cb59ad85a 100644 Binary files a/eeschema/eeschema_doc.icns and b/eeschema/eeschema_doc.icns differ diff --git a/eeschema/libedit_doc.icns b/eeschema/libedit_doc.icns index bc5612b80c..673f313173 100644 Binary files a/eeschema/libedit_doc.icns and b/eeschema/libedit_doc.icns differ diff --git a/gerbview/gerbview.icns b/gerbview/gerbview.icns index 1abb8eee94..d9dababae1 100644 Binary files a/gerbview/gerbview.icns and b/gerbview/gerbview.icns differ diff --git a/gerbview/gerbview_doc.icns b/gerbview/gerbview_doc.icns index 1abb8eee94..d9dababae1 100644 Binary files a/gerbview/gerbview_doc.icns and b/gerbview/gerbview_doc.icns differ diff --git a/kicad/kicad.icns b/kicad/kicad.icns index d840f1ceda..ad82b76361 100644 Binary files a/kicad/kicad.icns and b/kicad/kicad.icns differ diff --git a/kicad/kicad_doc.icns b/kicad/kicad_doc.icns index d840f1ceda..5c85cf4a83 100644 Binary files a/kicad/kicad_doc.icns and b/kicad/kicad_doc.icns differ diff --git a/pagelayout_editor/pagelayout_editor.icns b/pagelayout_editor/pagelayout_editor.icns index 410e0a2fa9..3e7bdd4018 100644 Binary files a/pagelayout_editor/pagelayout_editor.icns and b/pagelayout_editor/pagelayout_editor.icns differ diff --git a/pagelayout_editor/pagelayout_editor_doc.icns b/pagelayout_editor/pagelayout_editor_doc.icns index 410e0a2fa9..57ab8db416 100644 Binary files a/pagelayout_editor/pagelayout_editor_doc.icns and b/pagelayout_editor/pagelayout_editor_doc.icns differ diff --git a/pcb_calculator/pcb_calculator.icns b/pcb_calculator/pcb_calculator.icns index 2db8a29cbc..bec6454c85 100644 Binary files a/pcb_calculator/pcb_calculator.icns and b/pcb_calculator/pcb_calculator.icns differ diff --git a/pcbnew/fpedit_doc.icns b/pcbnew/fpedit_doc.icns index 0d641cefb9..dae035b8fc 100644 Binary files a/pcbnew/fpedit_doc.icns and b/pcbnew/fpedit_doc.icns differ diff --git a/pcbnew/pcbnew.icns b/pcbnew/pcbnew.icns index 8320307ce3..726d5ce666 100644 Binary files a/pcbnew/pcbnew.icns and b/pcbnew/pcbnew.icns differ diff --git a/pcbnew/pcbnew_doc.icns b/pcbnew/pcbnew_doc.icns index 8320307ce3..2691bb939c 100644 Binary files a/pcbnew/pcbnew_doc.icns and b/pcbnew/pcbnew_doc.icns differ diff --git a/resources/bitmaps_png/mk_mac_icons.sh b/resources/bitmaps_png/mk_mac_icons.sh index 7784606435..d6341192d2 100644 --- a/resources/bitmaps_png/mk_mac_icons.sh +++ b/resources/bitmaps_png/mk_mac_icons.sh @@ -20,8 +20,14 @@ ICONS="bitmap2component pcbcalculator pcbnew" +DOCS="project + schematic + pcb + footprint + symbol + worksheet" -for pgm in $ICONS +for doc in $DOCS do output="" @@ -29,8 +35,8 @@ do do sz=${size%x*} - echo -e '\E[0;32m'"\nMaking the applications icons with size $size." - + echo -e '\E[0;32m'"\nMaking the documents icons with size $size." + # MacOS wants icons with 10% clearance on each side let "sub_sz = $sz * 8 / 10" @@ -49,9 +55,51 @@ do # Use specialized icons for smaller sizes to keep pixel alignment if [ $sz -le 32 ] then - inkscape sources/light/icon_${pgm}_${sz}.svg -o macos_tmp/${pgm}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap + inkscape linux/icons/hicolor/scalable/mimetypes/application-x-kicad-${doc}-${sz}.svg -o macos_tmp/${doc}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap else - inkscape sources/light/icon_${pgm}.svg -o macos_tmp/${pgm}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap + inkscape linux/icons/hicolor/scalable/mimetypes/application-x-kicad-${doc}.svg -o macos_tmp/${doc}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap + fi + + convert macos_tmp/${doc}_small_${sz}px.png \( +clone -background black -shadow 80x${sigma}+${off}+${off} \) +swap -background transparent -layers merge +repage -size $size xc:transparent +swap -gravity center -composite macos_tmp/${doc}_${sz}px.png + + output+="macos_tmp/${doc}_${sz}px.png " + done + + png2icns macos_tmp/${doc}.icns ${output} +done + + +for pgm in $ICONS +do + output="" + + for size in $SIZES + do + sz=${size%x*} + + echo -e '\E[0;32m'"\nMaking the applications icons with size $size." + + # MacOS wants icons with 10% clearance on each side + let "sub_sz = $sz * 8 / 10" + + sigma=3 + if [ $sz -eq 16 ] + then + sigma=2 + elif [ $sz -ge 512 ] + then + sigma=5 + fi + + # Offset the drop shadow by one smaller than the kernel + let "off = $sigma - 1" + + # Use specialized icons for smaller sizes to keep pixel alignment + if [ $sz -le 32 ] + then + inkscape bitmaps_png/sources/light/icon_${pgm}_${sz}.svg -o macos_tmp/${pgm}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap + else + inkscape bitmaps_png/sources/light/icon_${pgm}.svg -o macos_tmp/${pgm}_small_${sz}px.png -w ${sub_sz} -h ${sub_sz} --export-area-snap fi convert macos_tmp/${pgm}_small_${sz}px.png \( +clone -background black -shadow 80x${sigma}+${off}+${off} \) +swap -background transparent -layers merge +repage -size $size xc:transparent +swap -gravity center -composite macos_tmp/${pgm}_${sz}px.png @@ -59,18 +107,38 @@ do output+="macos_tmp/${pgm}_${sz}px.png " done - if [ ${pgm} == "pcbcalculator" ] - then - # mismatch in the pcbcalculator icon names - png2icns ../pcb_calculator/pcb_calculator.icns ${output} - elif [ ${pgm} == "bitmap2component" ] - then - #bitmap2component does not have associated documents - png2icns ../${pgm}/${pgm}.icns ${output} - else - png2icns ../${pgm}/${pgm}.icns ${output} - cp ../${pgm}/${pgm}.icns ../${pgm}/${pgm}_doc.icns - fi + case ${pgm} in + pcbcalculator) + # mismatch in the pcbcalculator icon names + png2icns ../pcb_calculator/pcb_calculator.icns ${output} + ;; + bitmap2component) + # bitmap2component does not have associated documents + png2icns ../${pgm}/${pgm}.icns ${output} + ;; + eeschema) + png2icns ../${pgm}/${pgm}.icns ${output} + cp macos_tmp/schematic.icns ../${pgm}/${pgm}_doc.icns + cp macos_tmp/symbol.icns ../${pgm}/libedit_doc.icns + ;; + pcbnew) + png2icns ../${pgm}/${pgm}.icns ${output} + cp macos_tmp/pcb.icns ../${pgm}/${pgm}_doc.icns + cp macos_tmp/footprint.icns ../${pgm}/fpedit_doc.icns + ;; + kicad) + png2icns ../${pgm}/${pgm}.icns ${output} + cp macos_tmp/project.icns ../${pgm}/${pgm}_doc.icns + ;; + pagelayout_editor) + png2icns ../${pgm}/${pgm}.icns ${output} + cp macos_tmp/worksheet.icns ../${pgm}/${pgm}_doc.icns + ;; + *) + png2icns ../${pgm}/${pgm}.icns ${output} + cp ../${pgm}/${pgm}.icns ../${pgm}/${pgm}_doc.icns + ;; + esac done # rm -rf macos_tmp \ No newline at end of file diff --git a/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-footprint.png b/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-footprint.png new file mode 100644 index 0000000000..d71798888a Binary files /dev/null and b/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-footprint.png differ diff --git a/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-pcb.png b/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-pcb.png index 6a924a8aaa..82714469bc 100644 Binary files a/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-pcb.png and b/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-pcb.png differ diff --git a/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-schematic.png b/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-schematic.png index 35af445342..b8cd8f6e27 100644 Binary files a/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-schematic.png and b/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-schematic.png differ diff --git a/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-symbol.png b/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-symbol.png new file mode 100644 index 0000000000..da3462c4c8 Binary files /dev/null and b/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-symbol.png differ diff --git a/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-worksheet.png b/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-worksheet.png new file mode 100644 index 0000000000..2ec8fde0af Binary files /dev/null and b/resources/linux/icons/hicolor/128x128/mimetypes/application-x-kicad-worksheet.png differ diff --git a/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-footprint.png b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-footprint.png new file mode 100644 index 0000000000..b3bd6bba99 Binary files /dev/null and b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-footprint.png differ diff --git a/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-pcb.png b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-pcb.png index 2c336b8251..0c861a83fe 100644 Binary files a/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-pcb.png and b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-pcb.png differ diff --git a/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-project.png b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-project.png index 2a52c0732a..979bf59f2f 100644 Binary files a/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-project.png and b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-project.png differ diff --git a/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-schematic.png b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-schematic.png index 9b9b38e6c5..8c1229210a 100644 Binary files a/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-schematic.png and b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-schematic.png differ diff --git a/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-symbol.png b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-symbol.png new file mode 100644 index 0000000000..a1f851e783 Binary files /dev/null and b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-symbol.png differ diff --git a/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-worksheet.png b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-worksheet.png new file mode 100644 index 0000000000..1c22099bfd Binary files /dev/null and b/resources/linux/icons/hicolor/16x16/mimetypes/application-x-kicad-worksheet.png differ diff --git a/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-footprint.png b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-footprint.png new file mode 100644 index 0000000000..e03e0b91b4 Binary files /dev/null and b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-footprint.png differ diff --git a/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-pcb.png b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-pcb.png index a0142449d7..35dabfd7c3 100644 Binary files a/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-pcb.png and b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-pcb.png differ diff --git a/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-project.png b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-project.png index 369a1a06bd..ed08dbd028 100644 Binary files a/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-project.png and b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-project.png differ diff --git a/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-schematic.png b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-schematic.png index 0ca7e9eae5..1be7a5416f 100644 Binary files a/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-schematic.png and b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-schematic.png differ diff --git a/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-symbol.png b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-symbol.png new file mode 100644 index 0000000000..6c4aa60194 Binary files /dev/null and b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-symbol.png differ diff --git a/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-worksheet.png b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-worksheet.png new file mode 100644 index 0000000000..6b784929d4 Binary files /dev/null and b/resources/linux/icons/hicolor/24x24/mimetypes/application-x-kicad-worksheet.png differ diff --git a/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-footprint.png b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-footprint.png new file mode 100644 index 0000000000..3daeed979b Binary files /dev/null and b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-footprint.png differ diff --git a/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-pcb.png b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-pcb.png index fc88632ce4..c668cea0a5 100644 Binary files a/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-pcb.png and b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-pcb.png differ diff --git a/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-project.png b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-project.png index 9209d0086f..b9f530f154 100644 Binary files a/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-project.png and b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-project.png differ diff --git a/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-schematic.png b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-schematic.png index 43ff66a13c..da2e48e752 100644 Binary files a/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-schematic.png and b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-schematic.png differ diff --git a/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-symbol.png b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-symbol.png new file mode 100644 index 0000000000..9eebf2af7d Binary files /dev/null and b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-symbol.png differ diff --git a/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-worksheet.png b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-worksheet.png new file mode 100644 index 0000000000..b70dcf134e Binary files /dev/null and b/resources/linux/icons/hicolor/32x32/mimetypes/application-x-kicad-worksheet.png differ diff --git a/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-footprint.png b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-footprint.png new file mode 100644 index 0000000000..2b0cf0c7c5 Binary files /dev/null and b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-footprint.png differ diff --git a/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-pcb.png b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-pcb.png index c7f024e3e4..4afe98306f 100644 Binary files a/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-pcb.png and b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-pcb.png differ diff --git a/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-project.png b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-project.png index 47fef793d9..a0e4625670 100644 Binary files a/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-project.png and b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-project.png differ diff --git a/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-schematic.png b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-schematic.png index a507e5fe53..2e77484f41 100644 Binary files a/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-schematic.png and b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-schematic.png differ diff --git a/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-symbol.png b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-symbol.png new file mode 100644 index 0000000000..5632765b70 Binary files /dev/null and b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-symbol.png differ diff --git a/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-worksheet.png b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-worksheet.png new file mode 100644 index 0000000000..301c8efb26 Binary files /dev/null and b/resources/linux/icons/hicolor/48x48/mimetypes/application-x-kicad-worksheet.png differ diff --git a/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-footprint.png b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-footprint.png new file mode 100644 index 0000000000..c207aa0a32 Binary files /dev/null and b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-footprint.png differ diff --git a/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-pcb.png b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-pcb.png index a639e1885c..1c49116618 100644 Binary files a/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-pcb.png and b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-pcb.png differ diff --git a/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-project.png b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-project.png index 52469a7784..70dfa1bf64 100644 Binary files a/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-project.png and b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-project.png differ diff --git a/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-schematic.png b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-schematic.png index 10239ae0e2..3564b81b1f 100644 Binary files a/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-schematic.png and b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-schematic.png differ diff --git a/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-symbol.png b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-symbol.png new file mode 100644 index 0000000000..e6c0167250 Binary files /dev/null and b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-symbol.png differ diff --git a/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-worksheet.png b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-worksheet.png new file mode 100644 index 0000000000..532b48ada3 Binary files /dev/null and b/resources/linux/icons/hicolor/64x64/mimetypes/application-x-kicad-worksheet.png differ diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-16.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-16.svg new file mode 100644 index 0000000000..a9a18b1efe --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-16.svg @@ -0,0 +1,340 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 16 16" + version="1.1" + sodipodi:docname="application-x-kicad-footprint-16.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="16" + height="16" + inkscape:export-filename="../../32x32/mimetypes/application-x-kicad-footprint.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="128" + inkscape:cx="10.417969" + inkscape:cy="6.4023437" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g45763" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.86252489,0,0,0.88679512,79.626719,68.77628)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2468" + id="linearGradient2470" + x1="-8.4666672" + y1="-105.83334" + x2="78.316666" + y2="-137.58334" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.0539586,0,0,1.7772034,23.757065,289.66288)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2468"> + <stop + style="stop-color:#39b4ea;stop-opacity:1;" + offset="0" + id="stop2464" /> + <stop + style="stop-color:#39b4ea;stop-opacity:0;" + offset="1" + id="stop2466" /> + </linearGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g45155" + transform="matrix(0.25,0,0,0.25,2,0)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 5.7052628,2.0038514 H 31.410526 L 46,17.003852 V 58.43243 c 0,2.079774 -1.682469,3.571422 -3.705264,3.571422 H 5.7052628 C 3.6824706,62.003852 2,60.27411 2,58.194331 V 5.8133752 C 2,3.7336029 3.682472,2.0064446 5.7052628,2.0038514 Z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#87badc;stroke-width:4;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 13.919072,11.209678 c 0,0 0,-1.209678 1.583879,-1.209678 h 19.534508" + id="path880" + sodipodi:nodetypes="csc" /> + <path + id="path5956" + style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.372454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 44,43.132884 2.4129712,53.65103 v 4.252016 c 0,1.73114 1.4006958,3.133064 3.1302063,3.133064 H 40.869795 c 1.729499,0 3.139739,-1.178158 3.130205,-2.909274 z M 1.6133544,57.985967 v 0.08302 c 0,0.507223 0.1100073,0.986149 0.3008981,1.421212 C 1.7225031,59.026236 1.6133544,58.519207 1.6133544,57.985967 Z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 14.674181,18 H 9.9999997" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:2.60718;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 20.891315,12.062832 h 14.502862 c 0.267822,0 0.483433,0.212658 0.483433,0.476825 v 6.675641 c 0,0.264167 -0.215611,0.476825 -0.483433,0.476825 H 20.891315 c -0.267822,0 -0.483423,-0.212658 -0.483423,-0.476825 v -6.675641 c 0,-0.264167 0.215601,-0.476825 0.483423,-0.476825 z" + id="path6035" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 37.566037,16.03611 H 33.886792" + id="path1048" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 37.993605,26 H 34.31436" + id="path1056" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 14.510115,34 H 10.83087" + id="path1062" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 38.06118,34 H 34.381935" + id="path1064" + sodipodi:nodetypes="cc" /> + <g + id="g2446" + transform="matrix(0.91356627,0,0,0.90109824,6.1125464,143.5096)" + style="stroke-width:2.05252" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 30,2.0663655 V 14 c 0,2.217881 1.781942,4.065728 3.924528,4.062514 h 11.773585 z" + sodipodi:nodetypes="csscc" /> + <g + id="g45763" + transform="matrix(0.58669789,0,0,0.57869085,-4.8679246,-10.721443)" + style="stroke-width:1.71621"> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.14862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 41,81.5 H 33.5" + id="path1074" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.14862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 41,88.5 H 33.5" + id="path1078" + sodipodi:nodetypes="cc" /> + <path + id="path1082" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.633946;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 1.6892891,73.824296 67.9682389,-5e-6 V 112 H 1.6892891 V 100.54729 L 8.2971572,98.016831 V 87.6486 L 1.6892891,85.277007 Z" + sodipodi:nodetypes="ccccccccc" /> + <g + id="g2452" + transform="matrix(1.8622697,0,0,1.8622697,22.383267,301.89429)" + style="stroke-width:1.71621"> + <g + id="g1133" + style="stroke-width:1.71621" /> + <g + id="g1143" + style="stroke-width:1.71621"> + <g + id="g73" + style="stroke-width:1.71621"> + <g + id="g45547-2-6" + transform="translate(1.093298,1.0733028)" + style="stroke-width:1.71621"> + <path + id="path5854-9-3-1" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 24.291992,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 h -3.650007 v 4.56432 l -3.625471,2.41641 v 3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-3-1-8" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 16.950664,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 H 9.6609312 v 4.56432 l -3.625471,2.41641 v 3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-3-1-7" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 9.5217337,-120.26778 10e-7,-3.74207 -3.639727,-2.41641 v -4.56432 H 2.2320005 v 4.56432 l -3.625471,2.41641 v 3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-3-1-9" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 2.4260043,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 h -3.650007 v 4.56432 l -3.625471,2.41641 v 3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + </g> + <g + id="g45547-2-6-2" + transform="rotate(180,8.3677903,-113.71788)" + style="stroke-width:1.71621"> + <path + id="path5854-9-3-1-0" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 24.291992,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 h -3.650007 v 4.56432 l -3.625471,2.41641 v 3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-3-1-8-2" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 16.950664,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 H 9.6609312 v 4.56432 l -3.625471,2.41641 v 3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-3-1-7-3" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 9.5217337,-120.26778 10e-7,-3.74207 -3.639727,-2.41641 v -4.56432 H 2.2320005 v 4.56432 l -3.625471,2.41641 v 3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-3-1-9-7" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.84314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 2.4260043,-120.22591 1e-6,-3.74207 -3.639727,-2.41641 v -4.56432 h -3.650007 v 4.56432 l -3.625471,2.41641 v 3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + </g> + </g> + </g> + </g> + <path + id="path5852" + style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.633946;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 1.753915,73.824293 H 69.657528 V 111.93751 H 1.753915 l -0.064626,-11.39222 6.6078682,-2.528459 0,-10.368231 -6.5432424,-2.372452 z" + sodipodi:nodetypes="ccccccccc" /> + <circle + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:1.62161;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path2462" + cx="55.210262" + cy="95.163109" + r="7.3689547" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-24.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-24.svg new file mode 100644 index 0000000000..3c345ec4a3 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-24.svg @@ -0,0 +1,366 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 24 24" + version="1.1" + sodipodi:docname="application-x-kicad-footprint-24.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="24" + height="24" + inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-footprint.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="64" + inkscape:cx="10" + inkscape:cy="13.742188" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g46886" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.7773242,0,0,1.8130035,163.29143,139.17921)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2468" + id="linearGradient2470" + x1="-8.4666672" + y1="-105.83334" + x2="78.316666" + y2="-137.58334" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.9977977,0,0,1.960284,14.687913,310.07344)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2468"> + <stop + style="stop-color:#39b4ea;stop-opacity:1;" + offset="0" + id="stop2464" /> + <stop + style="stop-color:#39b4ea;stop-opacity:0;" + offset="1" + id="stop2466" /> + </linearGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g2446" + transform="matrix(3.7245395,0,0,3.7245395,46.766534,586.89042)" /> + <g + id="g46886" + transform="matrix(0.1875,0,0,0.1875,2.875,0)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 10.968422,2.6666652 H 63.936849 L 94.000003,33.333335 v 84.698415 c 0,4.252 -3.466901,7.30159 -7.635089,7.30159 H 10.968422 c -4.1681795,0 -7.6350887,-3.53638 -7.6350887,-7.78836 V 10.455025 c 0,-4.2519787 3.4669122,-7.7830583 7.6350887,-7.7883598 z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#87badc;stroke-width:6.00001;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 29.705536,21.11348 c 0,0 0,-2.446813 2.961131,-2.446813 h 36.520624" + id="path880" + sodipodi:nodetypes="csc" /> + <path + id="path5956" + style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.744907;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 91.333333,85.743671 4.2301633,108.36037 v 9.14292 c 0,3.7224 2.9337296,6.7369 6.5561527,6.7369 h 73.990867 c 3.622394,0 6.576119,-2.53335 6.55615,-6.25569 z M 2.5553823,117.68159 v 0.17853 c 0,1.09066 0.2304082,2.12046 0.6302251,3.05597 -0.401615,-0.99765 -0.6302251,-2.08789 -0.6302251,-3.2345 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 29.654503,34.254226 h -7.89635" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 41.343621,22.898334 h 29.180496 c 0.538871,0 0.972692,0.430144 0.972692,0.964473 v 13.502807 c 0,0.534329 -0.433821,0.964473 -0.972692,0.964473 H 41.343621 c -0.538871,0 -0.972672,-0.430144 -0.972672,-0.964473 V 23.862807 c 0,-0.534329 0.433801,-0.964473 0.972672,-0.964473 z" + id="path6035" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6.00001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 74.894011,32.403164 H 67.491182" + id="path1048" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 29.57117,45.333333 H 21.67482" + id="path1054" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 74.822007,45.333333 H 67.419178" + id="path1056" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 29.650841,56 h -7.89635" + id="path1058" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 74.957098,56 H 67.554269" + id="path1060" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 74.726924,66.666667 H 67.324095" + id="path1068" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 74.736162,77.333333 H 67.333333" + id="path1072" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6.00001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 29.983517,80.360684 H 22.580688" + id="path1074" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6.00001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 29.983517,87.211758 H 22.580688" + id="path1078" + sodipodi:nodetypes="cc" /> + <path + id="path1082" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.744907;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M -6.1059829,72.041519 H 59.333333 V 112 H -6.1059829 V 99.381532 l 3.2183275,-2.103079 v -9.463848 l -3.2183275,-3.15462 z" + sodipodi:nodetypes="ccccccccc" /> + <g + id="g2452" + transform="matrix(1.8381419,0,0,1.8226498,11.607985,296.06607)" + style="stroke-width:2.03485"> + <g + id="g1133" + style="stroke-width:2.03485" /> + <g + id="g1143" + style="stroke-width:2.03485"> + <g + id="g73" + transform="translate(1.7209168,0.00630557)" + style="stroke-width:2.03485"> + <g + id="g47282" + style="stroke-width:2.03485"> + <path + id="path1127" + style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 22.655071,-118.42613 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1127-9" + style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 13.675787,-118.4268 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 H 9.9169305 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1127-7" + style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 5.3340304,-118.4268 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.61093742,2.41641 -1e-6,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1127-3" + style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m -3.6424249,-118.4268 1e-6,-4.29583 -1.6109374,-2.41641 v -4.56432 h -2.1479168 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + </g> + </g> + </g> + </g> + <g + id="g2452-6" + transform="matrix(-1.8381419,0,0,-1.8226498,42.847563,-114.58726)" + style="stroke-width:2.03485"> + <g + id="g1133-1" + style="stroke-width:2.03485" /> + <g + id="g1143-2" + style="stroke-width:2.03485"> + <g + id="g73-9" + transform="translate(1.7209168,0.00630557)" + style="stroke-width:2.03485"> + <g + id="g47282-3" + style="stroke-width:2.03485"> + <path + id="path1127-1" + style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 22.655071,-118.42613 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1127-9-9" + style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 13.675787,-118.4268 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 H 9.9169305 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1127-7-4" + style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 5.3340304,-118.4268 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.61093742,2.41641 -1e-6,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1127-3-7" + style="fill:#00578f;fill-opacity:1;stroke:#00578f;stroke-width:1.09267;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m -3.6424249,-118.4268 1e-6,-4.29583 -1.6109374,-2.41641 v -4.56432 h -2.1479168 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + </g> + </g> + </g> + </g> + <path + id="path5852" + style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M -6.1059825,72.000003 H 59.333332 V 112 H -6.1059825 V 99.36843 l 3.2183274,-2.105266 V 87.789483 L -6.1059825,84.63158 Z" + sodipodi:nodetypes="ccccccccc" /> + <ellipse + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path2462" + cx="40.841" + cy="93.573448" + rx="3.9481754" + ry="3.9148996" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 61.999995,2.6662881 V 26.539574 c 0,4.436881 3.632462,8.133506 8.000094,8.127075 h 24.000288 z" + sodipodi:nodetypes="csscc" /> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-32.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-32.svg new file mode 100644 index 0000000000..f179d971d9 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-32.svg @@ -0,0 +1,371 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 32 32" + version="1.1" + sodipodi:docname="application-x-kicad-footprint-32.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="32" + height="32" + inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-footprint.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="64" + inkscape:cx="16.742187" + inkscape:cy="18.414062" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g45155" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8034611,0,0,1.8327099,176.31041,139.99635)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2468" + id="linearGradient2470" + x1="-8.4666672" + y1="-105.83334" + x2="78.316666" + y2="-137.58334" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.0549184,0,0,1.8622697,22.078088,298.16975)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2468"> + <stop + style="stop-color:#39b4ea;stop-opacity:1;" + offset="0" + id="stop2464" /> + <stop + style="stop-color:#39b4ea;stop-opacity:0;" + offset="1" + id="stop2466" /> + </linearGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g45155" + transform="matrix(0.25,0,0,0.25,2,0)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 21.747367,2 h 53.74737 L 106,33 v 85.61906 C 106,122.91726 102.48211,126 98.252629,126 H 21.747367 C 17.517893,126 14,122.4252 14,118.12699 V 9.8730158 C 14,5.5748197 17.517896,2.0053591 21.747367,2 Z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#87badc;stroke-width:4;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 38.000001,24.577791 c 0,0 0,-2.5 3.228676,-2.5 h 39.820344" + id="path880" + sodipodi:nodetypes="csc" /> + <path + id="path5956" + style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.372454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 104,87 -89.075459,21.7375 v 8.7875 c 0,3.57769 3.000157,6.475 6.704604,6.475 h 75.666252 c 3.704423,0 6.725023,-2.43486 6.704603,-6.0125 z m -90.788162,30.69637 v 0.17158 c 0,1.04826 0.235625,2.03804 0.644495,2.93717 -0.410709,-0.95886 -0.644495,-2.00672 -0.644495,-3.10875 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 39.75,34 h -7.5" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:2.60718;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 52.50922,22.788558 h 29.563525 c 0.545945,0 0.98546,0.439494 0.98546,0.985438 v 13.796326 c 0,0.545944 -0.439515,0.985438 -0.98546,0.985438 H 52.50922 c -0.545945,0 -0.98544,-0.439494 -0.98544,-0.985438 V 23.773996 c 0,-0.545944 0.439495,-0.985438 0.98544,-0.985438 z" + id="path6035" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 86.5,31 H 79" + id="path1048" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 39.75,42 h -7.5" + id="path1050" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 85.75,42 h -7.5" + id="path1052" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 39.75,50 h -7.5" + id="path1054" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 85.75,50 h -7.5" + id="path1056" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 39.75,58 h -7.5" + id="path1058" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 85.75,58 h -7.5" + id="path1060" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 39.75,66 h -7.5" + id="path1062" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 85.75,66 h -7.5" + id="path1064" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 85.75,74 h -7.5" + id="path1068" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 85.75,82 h -7.5" + id="path1072" + sodipodi:nodetypes="cc" /> + <g + id="g2446" + transform="matrix(1.8622697,0,0,1.8622697,22.383267,294.4452)" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 74,2.0000001 V 25.873218 c 0,4.436869 3.63242,8.133482 8,8.127052 h 24 z" + sodipodi:nodetypes="csscc" /> + <g + id="g45763"> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 41,74.5 H 33.5" + id="path1070" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 41,81.5 H 33.5" + id="path1074" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 41,88.5 H 33.5" + id="path1078" + sodipodi:nodetypes="cc" /> + <path + id="path1082" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.369388;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 0,72 68.000001,-5e-6 V 112 H 0 v -12 l 4,-4 5e-7,-8.21053 L 0,84 Z" + sodipodi:nodetypes="ccccccccc" /> + <g + id="g2452" + transform="matrix(1.8622697,0,0,1.8622697,22.383267,301.89429)"> + <g + id="g1133" /> + <g + id="g1143"> + <g + id="g73"> + <g + id="g45547-2" + transform="rotate(180,5.7042143,-113.24583)"> + <path + id="path5854-9" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m -4.5437702,-120.2427 7e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -2.1334782,2.41641 0,3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-0" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 3.9183373,-120.23431 7e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.14791729 v 4.56432 l -2.13347801,2.41641 -7e-7,3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-9" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 12.674263,-120.23431 1e-6,-3.74207 -2.141869,-2.41641 v -4.56432 H 8.3844776 v 4.56432 l -2.1334784,2.41641 -7e-7,3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-3" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 21.243777,-120.22591 10e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.147917 v 4.56432 l -2.133479,2.41641 v 3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + </g> + <g + id="g45547-2-6" + transform="translate(1.093298,1.0733028)"> + <path + id="path5854-9-06" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m -4.5437702,-120.2427 7e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -2.1334782,2.41641 v 3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-0-2" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 3.9183373,-120.23431 7e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.14791729 v 4.56432 l -2.13347801,2.41641 -7e-7,3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-9-6" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 12.674263,-120.23431 1e-6,-3.74207 -2.141869,-2.41641 v -4.56432 H 8.3844776 v 4.56432 l -2.1334784,2.41641 -7e-7,3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path5854-9-3-1" + style="fill:#00578f;fill-opacity:1;stroke:none;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 21.243777,-120.22591 10e-7,-3.74207 -2.141869,-2.41641 v -4.56432 h -2.147917 v 4.56432 l -2.133479,2.41641 v 3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + </g> + </g> + </g> + </g> + <path + id="path5852" + style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.369388;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 0.064656,71.999995 H 68.000001 V 111.93751 H 0.064656 L 0,100 4.0000003,95.999995 4,88 0.064656,83.999995 Z" + sodipodi:nodetypes="ccccccccc" /> + <circle + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.94488;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path2462" + cx="52" + cy="94" + r="6" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-48.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-48.svg new file mode 100644 index 0000000000..4040869542 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-48.svg @@ -0,0 +1,368 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 48 48" + version="1.1" + sodipodi:docname="application-x-kicad-footprint-48.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="48" + height="48" + inkscape:export-filename="../../48x48/mimetypes/application-x-kicad-footprint.png" + inkscape:export-xdpi="110.3" + inkscape:export-ydpi="110.3" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="17.147339" + inkscape:cy="34.095805" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g46886" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6591968,0,0,3.7048331,359.32549,281.62706)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2468" + id="linearGradient2470" + x1="-8.4666672" + y1="-105.83334" + x2="78.316666" + y2="-137.58334" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.5961071,0,0,3.6591962,48.303319,588.40366)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2468"> + <stop + style="stop-color:#39b4ea;stop-opacity:1;" + offset="0" + id="stop2464" /> + <stop + style="stop-color:#39b4ea;stop-opacity:0;" + offset="1" + id="stop2466" /> + </linearGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g2446" + transform="matrix(3.7245395,0,0,3.7245395,46.766534,586.89042)" /> + <g + id="g46886" + transform="matrix(0.1875,0,0,0.1875,2.875,0)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 45.719299,2.6666651 H 154.77194 L 216.66667,65.333334 V 238.4127 c 0,8.68884 -7.13775,14.92064 -15.7193,14.92064 H 45.719299 C 37.137754,253.33334 30,246.10683 30,237.418 V 18.58201 C 30,9.8931826 37.137761,2.6774986 45.719299,2.6666651 Z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#87badc;stroke-width:6;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 82.666667,50.333333 c 0,0 0,-5 6,-5 h 74.000003" + id="path880" + sodipodi:nodetypes="csc" /> + <path + id="path5956" + style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 214,172 31.924541,218.21667 V 236.9 c 0,7.60663 6.132499,13.76667 13.704604,13.76667 H 200.2954 c 7.57205,0 13.74634,-5.17682 13.7046,-12.78334 z M 28.423676,237.26434 v 0.36482 c 0,2.22873 0.481632,4.33311 1.317386,6.2448 -0.839514,-2.03868 -1.317386,-4.26655 -1.317386,-6.60962 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33334;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 83.333336,61.333333 h -16" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,63 H 160" + id="path1048" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33334;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 83.333336,77 h -16" + id="path1050" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 175.66667,77.333333 h -15" + id="path1052" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33334;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 83.333336,93.333333 h -16" + id="path1054" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 175.66667,93.333333 h -15" + id="path1056" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33334;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 83.333336,109.33333 h -16" + id="path1058" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 175.66667,109.33333 h -15" + id="path1060" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33334;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 83.333336,125.33333 h -16" + id="path1062" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 175.66667,125.33333 h -15" + id="path1064" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 175.66667,141.33333 h -15" + id="path1068" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,147 H 69" + id="path1070" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 175.66667,157.33333 h -15" + id="path1072" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,161 H 69" + id="path1074" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,175 H 69" + id="path1078" + sodipodi:nodetypes="cc" /> + <path + id="path1082" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 10.873563,144 H 128.66667 v 74 H 10.873563 v -23.36842 l 5.793104,-3.89474 v -17.52631 l -5.793104,-5.84211 z" + sodipodi:nodetypes="ccccccccc" /> + <g + id="g2452" + transform="matrix(3.7245395,0,0,3.7245395,46.766534,601.78858)"> + <g + id="g1133" /> + <g + id="g1143"> + <g + id="g73" + transform="translate(1.7209168,0.00630557)"> + <g + id="g47282"> + <path + id="path5854" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m -2.9012593,-119.92066 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1123" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 4.1986569,-119.95807 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 H 0.43980298 v 4.56432 l -1.61093668,2.41641 -7e-7,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1125" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 11.583845,-119.93777 10e-7,-4.29583 -1.6109385,-2.41641 v -4.56432 H 7.8249902 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1127" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 18.588464,-119.95807 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + </g> + <g + id="g47282-5" + transform="rotate(180,5.1561426,-113.40114)"> + <path + id="path5854-9" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m -2.9012593,-119.92066 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1123-2" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 4.1986569,-119.95807 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 H 0.43980298 v 4.56432 l -1.61093668,2.41641 -7e-7,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1125-2" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 11.583845,-119.93777 10e-7,-4.29583 -1.6109385,-2.41641 v -4.56432 H 7.8249902 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1127-8" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 18.588464,-119.95807 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + </g> + </g> + </g> + </g> + <path + id="path5852" + style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 10.873563,144 H 128.66667 v 74.66666 H 10.873563 v -23.57894 l 5.793104,-3.92983 v -17.6842 l -5.793104,-5.89475 z" + sodipodi:nodetypes="ccccccccc" /> + <circle + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path2462" + cx="106" + cy="187.99997" + r="8" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 152.66667,2.6662952 V 50.412571 c 0,8.873708 7.26488,16.266911 16.00009,16.25405 h 48.0003 z" + sodipodi:nodetypes="csscc" /> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-64.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-64.svg new file mode 100644 index 0000000000..27f5451067 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint-64.svg @@ -0,0 +1,377 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 64 64" + version="1.1" + sodipodi:docname="application-x-kicad-footprint-64.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="64" + height="64" + inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-footprint.png" + inkscape:export-xdpi="48" + inkscape:export-ydpi="48" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="64" + inkscape:cx="19.757812" + inkscape:cy="43.445312" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g73" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6853338,0,0,3.7245395,361.67781,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2468" + id="linearGradient2470" + x1="-8.4666672" + y1="-105.83334" + x2="78.316666" + y2="-137.58334" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6634815,0,0,3.7245395,46.131017,594.3395)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2468"> + <stop + style="stop-color:#39b4ea;stop-opacity:1;" + offset="0" + id="stop2464" /> + <stop + style="stop-color:#39b4ea;stop-opacity:0;" + offset="1" + id="stop2466" /> + </linearGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g45155" + transform="matrix(0.25,0,0,0.25,2,0)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 45.831579,2 H 155.66316 L 218,65 v 174 c 0,8.73506 -7.18874,15 -15.83158,15 H 45.831579 C 37.188738,254 30,246.73506 30,238 V 18 C 30,9.2649563 37.188745,2.0108911 45.831579,2 Z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#87badc;stroke-width:8;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 84,49 c 0,0 0,-5 6,-5 h 74" + id="path880" + sodipodi:nodetypes="csc" /> + <path + id="path5956" + style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 216,172 31.96227,219 v 19 c 0,7.73556 6.198591,14 13.852303,14 H 202.1477 c 7.65366,0 13.89449,-5.26456 13.8523,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.486822,4.40655 1.331584,6.35064 -0.848562,-2.07323 -1.331584,-4.33886 -1.331584,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 83,60 H 68" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,60 H 160" + id="path1048" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 83,76 H 68" + id="path1050" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,76 H 160" + id="path1052" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 83,92 H 68" + id="path1054" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,92 H 160" + id="path1056" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 83,108 H 68" + id="path1058" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,108 H 160" + id="path1060" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 83,124 H 68" + id="path1062" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,124 H 160" + id="path1064" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 83,140 H 68" + id="path1066" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,140 H 160" + id="path1068" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,147 H 69" + id="path1070" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,156 H 160" + id="path1072" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,161 H 69" + id="path1074" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,175 H 69" + id="path1078" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,172 H 160" + id="path1080" + sodipodi:nodetypes="cc" /> + <g + id="g2446" + transform="matrix(3.7245395,0,0,3.7245395,46.766534,586.89042)" /> + <path + id="path1082" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.738777;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 7.9999998,141.99999 H 128 V 218 H 7.9999998 v -24 l 5.9016392,-4.00001 V 172 l -5.9016392,-6.00001 z" + sodipodi:nodetypes="ccccccccc" /> + <g + id="g2452" + transform="matrix(3.7245395,0,0,3.7245395,46.766534,601.78858)"> + <g + id="g1133" /> + <g + id="g1143"> + <g + id="g73"> + <g + id="g45547"> + <path + id="path5854" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m -3.4276815,-120.22656 7e-7,-3.75885 -1.0739583,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -1.0655673,2.41641 -7e-7,3.75885 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1123" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 4.0984163,-120.22656 7e-7,-3.75885 -1.0823486,-2.41641 v -4.56432 H 0.86815113 v 4.56432 l -1.06556727,2.41641 -7e-7,3.75885 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1125" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 11.607734,-120.22656 10e-7,-3.75885 -1.073959,-2.41641 v -4.56432 H 8.385859 v 4.56432 l -1.0739576,2.41641 -7e-7,3.75885 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1127" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 19.123552,-120.22656 1e-6,-3.75885 -1.072068,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.072066,2.41641 -10e-7,3.75885 z" + sodipodi:nodetypes="ccccccccc" /> + </g> + <g + id="g45547-2" + transform="rotate(180,5.7042143,-113.24583)"> + <path + id="path5854-9" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m -3.4276815,-120.24334 7e-7,-3.74207 -1.0739583,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -1.0655673,2.41641 -7e-7,3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1123-1" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 4.0984163,-120.24334 7e-7,-3.74207 -1.0823486,-2.41641 v -4.56432 H 0.86815113 v 4.56432 l -1.06556727,2.41641 -7e-7,3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1125-2" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 11.607734,-120.24334 10e-7,-3.74207 -1.073959,-2.41641 v -4.56432 H 8.385859 v 4.56432 l -1.0739576,2.41641 -7e-7,3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1127-7" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:1.07396;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 19.123552,-120.24334 1e-6,-3.74207 -1.072068,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.072066,2.41641 -10e-7,3.74207 z" + sodipodi:nodetypes="ccccccccc" /> + </g> + </g> + </g> + </g> + <path + id="path5852" + style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.738777;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 7.9999998,141.99999 H 128 V 218 H 7.9999998 v -24 l 5.9016392,-4.00001 V 172 l -5.9016392,-6.00001 z" + sodipodi:nodetypes="ccccccccc" /> + <circle + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path2462" + cx="106" + cy="187.99997" + r="8" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 154,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" /> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint.svg new file mode 100644 index 0000000000..f6b45359b2 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-footprint.svg @@ -0,0 +1,366 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 256 256" + version="1.1" + sodipodi:docname="application-x-kicad-footprint.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="256" + height="256" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="1" + inkscape:cx="17" + inkscape:cy="206.5" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="Слой_1" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2468" + id="linearGradient2470" + x1="-8.4666672" + y1="-105.83334" + x2="78.316666" + y2="-137.58334" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,46.766534,594.3395)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2468"> + <stop + style="stop-color:#39b4ea;stop-opacity:1;" + offset="0" + id="stop2464" /> + <stop + style="stop-color:#39b4ea;stop-opacity:0;" + offset="1" + id="stop2466" /> + </linearGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 46,2 h 111 l 63,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 46 c -8.734786,0 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#87badc;stroke-width:6;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 84,52 c 0,0 0,-5 6,-5 h 74" + id="path880" + sodipodi:nodetypes="csc" /> + <path + id="path5956" + style="fill:#87badc;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,63 H 69" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,63 H 160" + id="path1048" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,77 H 69" + id="path1050" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,77 H 160" + id="path1052" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,91 H 69" + id="path1054" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,91 H 160" + id="path1056" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,105 H 69" + id="path1058" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,105 H 160" + id="path1060" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,119 H 69" + id="path1062" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,119 H 160" + id="path1064" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,133 H 69" + id="path1066" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,133 H 160" + id="path1068" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,147 H 69" + id="path1070" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,147 H 160" + id="path1072" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,161 H 69" + id="path1074" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,161 H 160" + id="path1076" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 84,175 H 69" + id="path1078" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#87badc;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,175 H 160" + id="path1080" + sodipodi:nodetypes="cc" /> + <g + id="g2446" + transform="matrix(3.7245395,0,0,3.7245395,46.766534,586.89042)" /> + <path + id="path1082" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 7.9999998,141.99999 H 130 V 218 H 7.9999998 V 194 L 14,189.99999 V 172 l -6.0000002,-6.00001 z" + sodipodi:nodetypes="ccccccccc" /> + <g + id="g2452" + transform="matrix(3.7245395,0,0,3.7245395,46.766534,601.78858)"> + <g + id="g1133" /> + <g + id="g1143"> + <g + id="g73"> + <path + id="path5854" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m -2.3537229,-119.95807 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 h -2.1479173 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1123" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 4.6270051,-119.95807 7e-7,-4.29583 -1.6109374,-2.41641 v -4.56432 H 0.86815113 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1125" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 11.607734,-119.95807 10e-7,-4.29583 -1.6109378,-2.41641 v -4.56432 H 7.8488799 v 4.56432 l -1.6109367,2.41641 -7e-7,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1127" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 18.588464,-119.95807 1e-6,-4.29583 -1.610938,-2.41641 v -4.56432 h -2.147918 v 4.56432 l -1.610936,2.41641 -1e-6,4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1135" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m -2.3537229,-106.53359 7e-7,4.29583 -1.6109374,2.416407 v 4.56432 h -2.1479173 v -4.56432 l -1.6109367,-2.416407 -7e-7,-4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1137" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 4.6270051,-106.53359 7e-7,4.29583 -1.6109374,2.416407 v 4.56432 H 0.86815113 v -4.56432 l -1.6109367,-2.416407 -7e-7,-4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1139" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 11.607734,-106.53359 10e-7,4.29583 -1.6109378,2.416407 v 4.56432 H 7.8488799 v -4.56432 l -1.6109367,-2.416407 -7e-7,-4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + <path + id="path1141" + style="fill:#1a81c4;fill-opacity:1;stroke:#00578f;stroke-width:0.536979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 18.588464,-106.53359 1e-6,4.29583 -1.610938,2.416407 v 4.56432 h -2.147918 v -4.56432 l -1.610936,-2.416407 -1e-6,-4.29583 z" + sodipodi:nodetypes="ccccccccc" /> + </g> + </g> + </g> + <path + id="path5852" + style="fill:url(#linearGradient2470);fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 7.9999998,141.99999 H 130 V 218 H 7.9999998 V 194 L 14,189.99999 V 172 l -6.0000002,-6.00001 z" + sodipodi:nodetypes="ccccccccc" /> + <circle + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path2462" + cx="106" + cy="187.99997" + r="8" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 156,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" /> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-16.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-16.svg new file mode 100644 index 0000000000..3077464fd0 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-16.svg @@ -0,0 +1,487 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 16 16" + version="1.1" + sodipodi:docname="application-x-kicad-pcb-16.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="16" + height="16" + inkscape:export-filename="../../16x16/mimetypes/application-x-kicad-pcb.png" + inkscape:export-xdpi="48" + inkscape:export-ydpi="48" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="2838" + inkscape:window-height="1591" + id="namedview30" + showgrid="true" + inkscape:zoom="85.78301" + inkscape:cx="8.0785228" + inkscape:cy="8.6788748" + inkscape:window-x="4201" + inkscape:window-y="535" + inkscape:window-maximized="0" + inkscape:document-rotation="0" + inkscape:current-layer="g15318" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <marker + style="overflow:visible" + id="marker3269" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3267" /> + </marker> + <marker + style="overflow:visible" + id="marker3125" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3123" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.9021094,0,0,1.7735762,177.66094,137.6311)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-5"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-0" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-6"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-1" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g4648" + transform="matrix(0.25,0,0,0.25,2.75,0)"> + <g + id="g15318" + transform="matrix(0.49974545,0,0,0.49974545,-4.4707267,-0.02886212)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.00409;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 15.138062,4.0597998 56.192451,0.027473 31.663367,30.4759462 v 81.904141 c 0,4.15952 -3.199747,7.61706 -7.660638,7.61898 l -80.217109,0.0346 c -4.460823,0.002 -8.1720072,-3.45946 -8.1711359,-7.61898 L 6.9669297,11.678785 C 6.9677802,7.5192756 10.677242,4.0576189 15.138067,4.0597998 Z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.744906;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 98.991846,83.751295 -88.04482,21.567615 v 8.71881 c 0,3.54973 2.995352,6.42439 6.693865,6.42439 h 75.135154 c 3.698493,0 6.159764,-2.87506 6.215801,-6.42439 z" + sodipodi:nodetypes="ccssssc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:7.99999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke" + d="m 55.858353,20.197039 h -25.04942 l -7.707514,7.745879 v 27.110576" + id="path880" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21434;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 47.037345,23.395194 h 28.468159 c 0.525717,0 0.948948,0.425317 0.948948,0.95365 v 13.351283 c 0,0.528333 -0.423231,0.95365 -0.948948,0.95365 H 47.037345 c -0.525717,0 -0.948928,-0.425317 -0.948928,-0.95365 V 24.348844 c 0,-0.528333 0.423211,-0.95365 0.948928,-0.95365 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.00409;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 70.977595,4.0592299 V 27.070202 c 0,4.369591 4.635834,9.097246 9.004719,9.004295 h 23.012126 z" + sodipodi:nodetypes="csscc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#498d49;fill-opacity:1;fill-rule:nonzero;stroke:#4c724c;stroke-width:8.00409;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 10.947027,44.080165 c -4.0020379,0 -12.0061128,8.004075 -12.0061128,16.00815 l 0.0865486,51.629125 c 2.94e-5,0.31312 0.23474348,0.56695 0.52428669,0.56698 l 15.0566755,0.13046 c 0.289543,-3e-5 0.524257,-0.25387 0.524285,-0.56699 v -3.32686 c 0,-0.59255 0.155475,-0.99425 0.404479,-1.26354 0.249003,-0.26928 0.620446,-0.43742 1.168379,-0.43742 h 5.813729 c 0.673684,0 1.014478,0.20715 1.236986,0.49278 0.22251,0.28566 0.335872,0.71444 0.335872,1.20818 l -1.139016,7.59581 36.018337,0 15.369666,-0.19296 c 0,0 -0.0056,-2.73866 -0.0109,-4.53824 0.0061,-3.88258 -0.04561,-4.61879 6.374731,-4.53825 4.196422,0 6.288275,-3.0414 6.280748,-5.76619 l -0.08107,-29.347332 c -0.0027,-0.976477 -0.309821,-1.845557 -0.874493,-2.456223 -0.564672,-0.610668 -1.368287,-0.945724 -2.271223,-0.945724 H 56.526763 c -2.127097,0 -4.295158,-0.847925 -5.907436,-2.339946 L 30.957214,48.082203 c -1.129799,-1.045532 -6.294962,-4.002038 -8.004075,-4.002038 z" + id="path4601" + sodipodi:nodetypes="ccccccssccsscccccsssssccsc" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.4219;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3222" + width="8.4200153" + height="8.0504856" + x="9.2556419" + y="62.258392" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:7.99999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke" + d="M 86.985738,52.08424 H 62.973513 L 30.808933,20.197039" + id="path3265" + sodipodi:nodetypes="ccc" /> + <path + id="path4465" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.999998;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1" + d="m 26.166467,49.225944 v 0.283928 21.517526 L 11.620731,80.264609 H 3.7634158 1.3603733 l 0.1032223,7.837968 h 2.4030389 7.8880365 c 1.048572,0 2.866065,-0.787104 3.145717,-1.002553 l 16.056826,-11.003559 3.951722,-4.314904 0.05032,-15.695283 -5.980891,-4.546927 c -0.682685,-0.558549 -1.819377,-2.198936 -2.811893,-2.313407 z" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + id="path4494" + style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:5.99999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 34.908936,82.865638 10.947027,104.11073 9.889852,111.3903 h 4.718573 v -2.04752 c 0,-1.24975 0.790023,-2.0051 2.097143,-2.0051 h 2.621431 4.64512 c 1.572858,0 2.097144,0.97017 2.097144,2.0051 v 6.0923 c 0,1.82413 0.71356,3.00766 2.62143,3.00766 h 7.345425 l 22.050101,-0.0331 h 11.669303 c 1.572858,0 2.62143,-1.50383 2.62143,-3.00767 v -4.05412 c 0,-5.01276 4.200769,-4.92865 4.200769,-4.92865 l 5.210622,-0.0481 c 1.57278,-0.0145 3.251412,-1.78597 3.251412,-3.96424 V 82.345659 Z" + sodipodi:nodetypes="ccccssccsssccssscsscc" /> + <path + id="path3057" + clip-path="url(#clipPath1720)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.73241;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-4.6543227,-3.2899536,0,85.523486,194.93127)" + d="m 17,15.369285 h 2.51316 l 0,2.432884 -2.51316,0 c -0.554,0 -1,-0.446 -1,-1 v -0.432884 c 0,-0.554 0.446,-1 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <path + id="path3057-3" + clip-path="url(#clipPath1720-5)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.73241;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-4.6543227,-3.2899536,0,101.53965,194.93127)" + d="m 17,15.369285 h 2.51316 v 2.432884 H 17 c -0.554,0 -1,-0.446 -1,-1 v -0.432884 c 0,-0.554 0.446,-1 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <ellipse + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3214" + cx="19.975735" + cy="96.230072" + rx="2.0971441" + ry="2.0051064" /> + <ellipse + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3216" + cx="28.141146" + cy="100.23118" + rx="2.0971441" + ry="2.0051064" /> + <g + id="g57782" + transform="matrix(1.413544,0,0,1.4099525,-20.572483,-42.805348)" + style="stroke-width:0.708342"> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.35004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3143" + width="11.534293" + height="11.028087" + x="39.24987" + y="87.286598" /> + <path + id="rect3206" + style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:1.4167;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + d="M 38.201297,86.284029 H 51.832735 V 99.317247 H 38.201297 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path3057-0" + clip-path="url(#clipPath1720-6)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.73241;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-4.6543227,-3.2899536,0,117.53979,194.93127)" + d="m 17,15.369285 h 2.51316 v 2.432884 H 17 c -0.554,0 -1,-0.446 -1,-1 v -0.432884 c 0,-0.554 0.446,-1 1,-1 z" + sodipodi:nodetypes="sccssss" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-24.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-24.svg new file mode 100644 index 0000000000..e086c24a16 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-24.svg @@ -0,0 +1,518 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 24 24" + version="1.1" + sodipodi:docname="application-x-kicad-pcb-24.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="24" + height="24" + inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-pcb.png" + inkscape:export-xdpi="48" + inkscape:export-ydpi="48" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1514" + inkscape:window-height="1247" + id="namedview30" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="12.396466" + inkscape:cy="18.981398" + inkscape:window-x="4368" + inkscape:window-y="301" + inkscape:window-maximized="0" + inkscape:document-rotation="0" + inkscape:current-layer="g4226" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <marker + style="overflow:visible" + id="marker3403" + refX="-0.0074650599" + refY="0.007904782" + orient="148.03297424" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always" + markerWidth="3" + markerHeight="3" + viewBox="0 0 2.2666667 2.2666667" + preserveAspectRatio="none"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3401" /> + </marker> + <marker + style="overflow:visible" + id="marker3269" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always" + viewBox="0 0 2.2666667 2.2666667" + markerWidth="3" + markerHeight="3" + preserveAspectRatio="xMidYMid"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3267" /> + </marker> + <marker + style="overflow:visible" + id="marker3125" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always" + viewBox="0 0 2.2666667 2.2666667" + markerWidth="3" + markerHeight="3" + preserveAspectRatio="xMidYMid"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3123" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.857145,0,0,1.8175254,186.78016,139.19436)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-6"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-7" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-3"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-5" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g4648" + transform="matrix(0.1875,0,0,0.1875,2.0625,0)"> + <g + id="g4226" + transform="translate(-9.769214)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 27.117592,2.6666651 h 55.845895 l 30.472393,32.0000019 -0.022,83.346863 c -0.001,4.26259 -3.62261,7.3198 -7.97799,7.3198 l -80.000009,0 c -4.355374,0 -8.496393,-3.52448 -8.476609,-7.78703 L 17.457896,10.114569 C 17.477679,5.85203 21.08051,2.6666707 25.435881,2.6666667 Z" + sodipodi:nodetypes="sccsssssss" /> + <path + id="path5956" + style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.371429;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 110.76921,74.666667 -91.520252,32.365293 -0.164216,9.46212 c -0.06693,3.85654 3.250501,6.99458 7.061292,6.99247 l 78.002596,-0.0431 c 3.81077,-0.002 6.91607,-2.62502 6.89708,-6.48211 z M 17.487088,116.69057 v 0.18499 c 0,1.13013 0.242389,2.19721 0.662998,3.16658 -0.4225,-1.03376 -0.662998,-2.16346 -0.662998,-3.35157 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:5.33333;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke" + d="M 65.435881,18.666667 H 44.102547 l -10.666666,10.666667 0,29.333333" + id="path880" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:2.6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 58.041478,21.728599 h 29.48217 c 0.544443,0 0.982748,0.438285 0.982748,0.982727 v 13.75836 c 0,0.544441 -0.438305,0.982726 -0.982748,0.982726 h -29.48217 c -0.544442,0 -0.982728,-0.438285 -0.982728,-0.982726 v -13.75836 c 0,-0.544442 0.438286,-0.982727 0.982728,-0.982727 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 81.501921,3.1262168 -0.04402,18.6023822 c -0.01031,4.355475 8.957076,13.045644 13.311313,12.938068 l 18.600626,-0.45955 z" + sodipodi:nodetypes="csscc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#499149;fill-opacity:1;fill-rule:nonzero;stroke:#4c724c;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 14.769214,56 c -5.0023096,0.05354 -7.8768471,2.593125 -8,8 v 49.98726 c 3e-5,0.27537 0.8511788,0.67938 1.1470608,0.67941 l 14.4495302,0.007 c 0.295882,-3e-5 0.535736,-0.22325 0.535766,-0.49862 v -2.70857 c 0,-0.52112 0.158531,-0.87471 0.412986,-1.11152 0.254455,-0.23681 0.634379,-0.38436 1.194311,-0.38436 h 3.512163 4.209018 c 1.4296,0 1.339415,0.047 1.339415,1.37662 v 5.40016 c 0,0.9694 0.18896,1.82799 0.719935,2.47754 0.530974,0.64954 1.404055,0.99993 2.49466,1.01283 h 36.196668 c 0.982236,0 1.816542,-0.46927 2.366302,-1.1271 0.549765,-0.65784 0.848294,-1.50453 0.848294,-2.36327 v -4.40291 c -0.09278,-3.01114 1.931933,-3.01114 3.067888,-3.01114 0,0 2.228197,0 3.287119,0 3.469729,0 4.218884,-2.89567 4.218884,-5.33333 V 77.333333 C 86.769214,74.666667 84.102547,72 81.435881,72 H 58.130613 C 55.957,72.01456 53.632976,70.712636 51.985397,69.400522 L 37.134633,57.573783 C 35.980098,56.65432 34.589454,56 32.842925,56 Z" + id="path4601" + sodipodi:nodetypes="ccccccssscssssccssccsscccccsc" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.05272;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3222" + width="5.3333325" + height="5.3333359" + x="14.769214" + y="64" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:5.33333;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke" + d="m 76.102547,45.333333 h -16 L 49.435881,34.666667 h -16" + id="path3265" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:5.33333;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke" + d="m 100.14755,61.333332 -45.378336,1e-6" + id="path3399" + sodipodi:nodetypes="cc" /> + <path + id="path4465" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.498624;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1" + d="m 30.769214,58.666667 v 0.282426 10.38424 L 17.435881,80 H 12.37034 l 0.06554,5.333333 h 5.872388 c 0.341562,3.5e-5 0.672852,-0.116808 0.938816,-0.331116 L 35.545491,72.289756 c 0.352287,-0.284021 0.557086,-0.712234 0.557056,-1.164756 l 0.113899,-9.295522 -0.816107,-0.698268 c -0.64927,-0.555592 -1.964458,-2.464543 -4.631125,-2.464543 z" + sodipodi:nodetypes="ccccccccccccc" /> + <path + id="path4494" + style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:2.99174;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 36.102547,80 -16,13.333333 V 112 h 2.666667 c 0,-2.66667 0,-2.66667 2.666667,-2.66667 h 2.666666 5.333334 c 1.578395,0 2.622518,1.63817 2.666666,2.66667 l 0.107684,2.50863 c 0.12083,2.81489 -0.107684,2.99174 2.630659,2.99174 h 7.013204 19.483091 6.094358 c 1.578395,0 2.630659,-1.49587 2.630659,-2.99174 v -3.69457 c 0,-1.99449 1.449772,-3.88416 3.55139,-3.98899 l 3.332165,-0.16621 c 1.576211,-0.0786 3.156792,-1.32362 3.156792,-3.49037 L 84.102547,80 Z" + sodipodi:nodetypes="cccccccsssccsssssscc" /> + <path + id="path3057" + clip-path="url(#clipPath1720)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-2.5461657,-2.4931203,0,86.362279,159.07922)" + d="m 17,15.848418 1.545834,-0.01508 V 18.05478 L 17,18.069865 c -0.553975,0.0054 -1,-0.446 -1,-1 v -0.221447 c 0,-0.554 0.446025,-0.994596 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <path + id="path3057-5" + clip-path="url(#clipPath1720-6)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-2.5461657,-2.4931203,0,97.215582,159.07922)" + d="m 17,15.848418 1.545834,-0.01508 V 18.05478 L 17,18.069865 c -0.553975,0.0054 -1,-0.446 -1,-1 v -0.221447 c 0,-0.554 0.446025,-0.994596 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <ellipse + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:0.94228;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3214" + cy="98.692413" + cx="28.066221" + rx="2.7029927" + ry="2.6409187" /> + <g + id="g4326" + transform="translate(-5.1905111,-3.4909592)"> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65427;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3143" + width="10.969729" + height="10.969729" + x="46.563934" + y="88.755074" /> + <path + id="rect3206" + style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:0.997248;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + d="M 45.566682,87.757835 H 58.530908 V 100.72206 H 45.566682 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <ellipse + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:0.94228;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3216" + cx="33.435883" + cy="104" + rx="2.6666658" + ry="2.6666653" /> + <path + id="path3057-6" + clip-path="url(#clipPath1720-3)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-2.5461657,-2.4931203,0,107.69561,159.07922)" + d="m 17,15.848418 1.545834,-0.01508 V 18.05478 L 17,18.069865 c -0.553975,0.0054 -1,-0.446 -1,-1 v -0.221447 c 0,-0.554 0.446025,-0.994596 1,-1 z" + sodipodi:nodetypes="sccssss" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-32.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-32.svg new file mode 100644 index 0000000000..93a7bd9e78 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-32.svg @@ -0,0 +1,474 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 32 32" + version="1.1" + sodipodi:docname="application-x-kicad-pcb-32.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="32" + height="32" + inkscape:export-filename="../../16x16/mimetypes/application-x-kicad-pcb.png" + inkscape:export-xdpi="48" + inkscape:export-ydpi="48" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="2838" + inkscape:window-height="1591" + id="namedview30" + showgrid="true" + inkscape:zoom="30.328874" + inkscape:cx="10.254255" + inkscape:cy="18.777486" + inkscape:window-x="4201" + inkscape:window-y="537" + inkscape:window-maximized="0" + inkscape:document-rotation="0" + inkscape:current-layer="g15318" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <marker + style="overflow:visible" + id="marker3403" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3401" /> + </marker> + <marker + style="overflow:visible" + id="marker3269" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3267" /> + </marker> + <marker + style="overflow:visible" + id="marker3125" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3123" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.8042263,0,0,3.6653908,372.3894,280.10711)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g4648" + transform="matrix(0.25,0,0,0.25,2.75,0)"> + <g + id="g15318" + transform="matrix(0.49974545,0,0,0.49974545,-4.4707267,-0.02886212)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.00408;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 47.343395,4.0597957 159.72852,4.1165722 223.05501,67.1002 v 169.2685 c 0,8.59634 -6.39926,15.74193 -15.32093,15.74591 l -160.434542,0.0715 c -8.921666,0.004 -16.344062,-7.14956 -16.342321,-15.7459 l 0.04386,-216.634508 c 0.0017,-8.596323 7.420654,-15.7504136 16.342321,-15.7459063 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 219.20766,168.31306 -184.142727,47 v 19 c 0,7.73556 6.264682,14 14,14 H 206.20766 c 7.73527,0 12.88281,-6.26533 13,-14 z" + sodipodi:nodetypes="ccssssc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke" + d="M 131.00815,44.080165 H 78.981663 l -16.00815,16.00815 0,56.028525" + id="path880" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.00408;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 159.02241,4.0597911 V 50.059791 c 0,8.735013 9.26681,18.185813 18,18 h 46 z" + sodipodi:nodetypes="csscc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#498d49;fill-opacity:1;fill-rule:nonzero;stroke:#4c724c;stroke-width:8.00408;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 16.027764,107.77477 c -2.833324,-0.0168 -5.158552,1.45621 -6.681641,3.5332 -1.523088,2.077 -2.3245893,4.76681 -2.318359,7.4668 l 0.2537938,109.98431 c 5.5e-5,0.55226 0.447738,0.99994 1,1 L 37,229.98916 c 0.552262,-6e-5 0.999945,-0.44774 1,-1 v -5.86755 c 0,-1.0451 0.296546,-1.75358 0.771484,-2.22852 0.474938,-0.47493 1.18341,-0.77148 2.228516,-0.77148 h 11.088847 c 1.284955,0 1.934971,0.36534 2.359375,0.86914 0.424404,0.5038 0.640625,1.26002 0.640625,2.13086 v 11.88923 c 0,1.94415 0.348786,3.66803 1.339844,4.9707 0.991057,1.30267 2.62439,2.0293 4.660156,2.0293 h 19.816347 c 2.035765,0 3.669098,-0.72663 4.660156,-2.0293 0.991054,-1.30267 1.339844,-3.02655 1.339844,-4.9707 -0.147918,-14.60546 -1.719786,-15.25163 12.106918,-15.40645 15.178128,-0.16995 11.915798,1.60998 11.985848,16.57357 0,4.00204 4.00204,8.00408 8.00408,8.00408 h 23.92543 c 4.79892,-0.0291 8.01543,-3.71808 8.00407,-8.00408 0,0 -0.0106,-4.83018 -0.0208,-8.00407 0.0116,-6.84768 -0.087,-8.14613 12.15888,-8.00408 8.00407,0 11.99126,-5.36412 11.97962,-10.16981 l -0.15463,-63.86156 c -0.004,-1.72221 -0.59094,-3.255 -1.66797,-4.33203 -1.07703,-1.07703 -2.60981,-1.66797 -4.33203,-1.66797 h -68.04924 c -4.05713,0 -8.192394,-1.49548 -11.267582,-4.12695 l -26.81791,-24.85431 c -2.154926,-1.844 -4.753852,-3.13297 -8.013672,-3.15234 z" + id="path4601" + sodipodi:nodetypes="sssccccssccssssssscsccccccsssssccss" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.4219;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3222" + width="16.059965" + height="16.059965" + x="26.790342" + y="128.07114" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke" + d="m 151.01834,76.096465 h -32.0163 l -32.016302,-32.0163" + id="path3265" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke" + d="M 167.02649,100.10869 H 94.98981" + id="path3399" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3727);paint-order:fill markers stroke" + d="M 182.98981,124.12091 H 94.989813" + id="path3517" + sodipodi:nodetypes="cc" /> + <path + id="path4465" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1" + d="m 59.045298,113.65503 v 0.56641 31.34301 l -28,22.43555 H 16.058594 11.475138 l -0.05859,8 H 16 31.045298 c 2,0 5.466605,-1.5702 6,-2 L 65.92811,152.02344 c 0.70652,-0.56961 1.117248,-1.4284 1.117188,-2.33594 v -29.26214 l -2.636719,-2.1553 c -1.302123,-1.11425 -3.4702,-4.38667 -5.363281,-4.61503 z" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + id="path4494" + style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 58.971476,168.14333 28,190 v 36.08461 h 9 V 222 c 0,-2.49314 1.506856,-4 4,-4 h 5 8.859896 c 2.999999,0 4,1.93541 4,4 v 12.15357 c 0,3.63896 1.361013,6 5,6 h 14.010339 c 3.638987,0 5.075386,-2.36181 5,-6 -0.01125,-17.11775 0.06859,-18.019 16.13276,-18.22147 15.791715,-0.19903 15.989735,-0.18484 15.924625,18.15549 0,3.63897 2,6 5,6 h 22.25751 c 3,0 5,-3 5,-6 V 226 c 0,-10 8.01236,-9.83222 8.01236,-9.83222 l 9.93851,-0.0958 c 2.99985,-0.0289 6.2016,-3.56284 6.2016,-7.90829 v -40.02037 z" + sodipodi:nodetypes="ccccssccsssscscsssscsscc" /> + <path + id="rect880" + clip-path="url(#clipPath1720)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-5.1063835,-5,0,213.45563,316.78232)" + d="m 17,14.815357 h 1.154165 V 18 H 17 c -0.554,0 -1,-0.446 -1,-1 v -1.184643 c 0,-0.554 0.446,-1 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <path + id="path3057" + clip-path="url(#clipPath1720)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.58311;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-5.5021335,-3.3327253,0,126.2382,324.06737)" + d="m 17,15.369285 h 1.154165 v 2.432884 H 17 c -0.554,0 -1,-0.446 -1,-1 v -0.432884 c 0,-0.554 0.446,-1 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.31766;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3143" + width="22" + height="22" + x="84.000008" + y="177.99998" /> + <path + id="rect3206" + style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + d="m 82,176 h 26 v 26 H 82 Z" + sodipodi:nodetypes="ccccc" /> + <circle + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3214" + cx="47.237347" + cy="195.84146" + r="3.9999998" /> + <circle + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3216" + cx="62.811691" + cy="203.82329" + r="3.9999998" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-48.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-48.svg new file mode 100644 index 0000000000..a5f66ccbec --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-48.svg @@ -0,0 +1,478 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 48 48" + version="1.1" + sodipodi:docname="application-x-kicad-pcb-48.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="48" + height="48" + inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-pcb.png" + inkscape:export-xdpi="24" + inkscape:export-ydpi="24" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1514" + inkscape:window-height="1247" + id="namedview30" + showgrid="true" + inkscape:zoom="16" + inkscape:cx="24.09375" + inkscape:cy="32.78125" + inkscape:window-x="4368" + inkscape:window-y="301" + inkscape:window-maximized="0" + inkscape:document-rotation="0" + inkscape:current-layer="g4648" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <marker + style="overflow:visible" + id="marker3403" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3401" /> + </marker> + <marker + style="overflow:visible" + id="marker3269" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3267" /> + </marker> + <marker + style="overflow:visible" + id="marker3125" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3123" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g4648" + transform="matrix(0.1875,0,0,0.1875,2.0625,0)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 45,2.6666667 H 157 L 221,65.773117 V 238.95746 c 0,8.73506 -7.26521,14.99548 -16,15 l -159,0.0823 c -8.734785,0.005 -17,-7.2224 -17,-15.95746 V 17.92918 C 29,9.1941358 36.265369,2.7186585 45,2.6666667 Z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 218.33333,170.66667 32,219 31.666667,237.97646 C 31.530808,245.71082 38.264683,252.00422 46,252 l 158.33333,-0.0865 c 7.73527,-0.004 14.03854,-5.26454 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:5.33333;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke" + d="M 130.33333,50.666667 H 77 L 61,66 v 52" + id="path880" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.33333;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 156.08828,2.6666667 156,49 c -0.0166,8.734997 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#499149;fill-opacity:1;fill-rule:nonzero;stroke:#4c724c;stroke-width:5.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 21,113 c -2.833371,0 -5.153996,1.45426 -6.677083,3.53125 C 12.79983,118.60825 12,121.30001 12,124 v 104 c 5.5e-5,0.55226 0.447739,0.99994 1,1 h 24 c 0.552261,-6e-5 0.999945,-0.44774 1,-1 v -3.76083 c 0,-1.0451 0.295896,-1.75423 0.770833,-2.22917 0.474938,-0.47493 1.184062,-0.77083 2.229167,-0.77083 h 5 23 c 2.668329,0 2.5,0.0942 2.5,2.76083 v 12 c 0,1.94415 0.352693,3.66608 1.34375,4.96875 C 73.834806,242.27142 75.464236,243 77.5,243 h 15 c 2.035763,0 3.665193,-0.72858 4.65625,-2.03125 C 98.1473,239.66608 98.5,237.94415 98.5,236 v -14 c -0.166667,-3.33333 -0.166667,-3.33333 5.16667,-3.33333 5.33333,0 5.33333,0 5.25,3.33333 v 14 c 0,2.00269 0.54722,3.74796 1.60417,5.01042 1.05696,1.26246 2.63349,1.98958 4.39583,1.98958 h 15 c 1.83333,0 3.39055,-0.94112 4.41667,-2.26042 1.02613,-1.3193 1.58333,-3.01736 1.58333,-4.73958 v -10 c 0,-1.74999 0.67475,-3.54929 1.77083,-4.86458 1.09607,-1.31528 2.56564,-2.03305 4.22917,-2.13542 l 5.41666,-0.33333 c 3.58312,-0.2205 7,-3.19431 7,-8 v -61 c 0,-1.72222 -0.58963,-3.25631 -1.66666,-4.33334 -1.07703,-1.07703 -2.61116,-1.67905 -4.33334,-1.66666 L 102,144 c -4.057017,0.0292 -8.195648,-1.49353 -11.270833,-4.125 L 63.010417,116.15625 C 60.855493,114.31225 58.259874,113 55,113 Z" + id="path4601" + sodipodi:nodetypes="sssccccssscsssssssscscsssssssssssssscccss" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3222" + width="14" + height="14" + x="21.000008" + y="122.00002" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:5.33333;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke" + d="M 186.33333,77.333333 H 117 L 90.333333,50.666667" + id="path3265" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke" + d="M 186.33333,98.666667 H 85" + id="path3399" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3727);paint-order:fill markers stroke" + d="M 186.33333,125.33333 H 85" + id="path3517" + sodipodi:nodetypes="cc" /> + <path + id="path4465" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1" + d="m 58,116.36093 v 0.56641 29.63711 L 28.319682,170.6839 h -10.827545 -3 L 14.554309,176 h 3 H 30 c 0.685009,7e-5 1.349417,-0.23426 1.882812,-0.66406 l 31,-25 C 63.589332,149.76633 64.00006,148.90754 64,148 v -27.76016 l -1.636719,-1.40039 C 61.061158,117.7252 59.638576,116.85078 58,116.36093 Z" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + id="path4494" + style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 60,166 -33.666667,24.42217 v 37.64106 L 36.999993,228 37,222.70711 c 3e-6,-2.49314 1.506856,-4 4,-4 h 5 24.166666 c 2.999999,0 4.000007,1.93541 4.000006,4 L 74.166666,236 c -2e-6,3.63896 1.361013,6 5,6 h 11.666667 c 3.638987,0 5,-2.36103 5,-6 v -14 c 0,-2.0006 -0.166666,-6 7.833337,-6 8,0 8,4 8,6 v 14 c 0,3.63897 2,6 5,6 H 128.25 c 3,0 5,-3 5,-6 v -10 c 0,-3.99999 2.75553,-7.78977 6.75,-8 l 6.33333,-0.33333 c 2.99585,-0.15768 6,-2.65455 6,-7 v -45 z" + sodipodi:nodetypes="ccccssccsssssszssssssssscc" /> + <path + id="rect880" + clip-path="url(#clipPath1720)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-5.1063835,-3.3211424,0,177.66599,318.70214)" + d="m 16.99335,15.054856 h 1.552484 l -5e-5,3.211811 H 16.99335 c -0.554,0 -1,-0.446 -1,-1 v -1.211811 c 0,-0.554 0.446,-1 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <path + id="path3057" + clip-path="url(#clipPath1720)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-5.1063835,-5.0000001,0,170,318.70214)" + d="m 17,15.848418 1.545834,-0.01508 V 18.05478 L 17,18.069865 c -0.553975,0.0054 -1,-0.446 -1,-1 v -0.221447 c 0,-0.554 0.446025,-0.994596 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.31766;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3143" + width="22" + height="22" + x="84.000008" + y="177.99998" /> + <path + id="rect3206" + style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + d="m 82,176 h 26 v 26 H 82 Z" + sodipodi:nodetypes="ccccc" /> + <circle + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3214" + cx="36" + cy="208" + r="3.9999998" /> + <circle + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3216" + cx="63.999992" + cy="208" + r="3.9999998" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#4c724c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 269.66667,266.66667 h 34 c 2.74012,0 4.78896,1.03464 6.70833,2.67708 l 27.71875,23.71875 c 3.4601,2.96084 8.02877,4.63686 12.57292,4.60417 L 397,297.33334 c 1.27775,-0.009 2.2437,0.41036 2.91667,1.08333 0.67297,0.67297 1.08333,1.63889 1.08333,2.91667 v 61 c 0,3.88519 -2.59238,5.89056 -5,6 l -7.33333,0.33333 c -2.33092,0.10595 -4.3669,1.17988 -5.77083,2.86458 -1.40392,1.6847 -2.22917,3.88542 -2.22917,6.13542 v 10 c 0,1.27778 -0.4428,2.57972 -1.16667,3.51042 -0.72388,0.9307 -1.66666,1.48958 -2.83333,1.48958 h -15 c -1.23766,0 -2.16113,-0.45346 -2.85417,-1.28125 -0.69305,-0.8278 -1.14583,-2.08247 -1.14583,-3.71875 v -14 c 0,-1.16667 -0.28327,-2.40034 -1.10417,-3.38542 -0.8209,-0.98509 -2.17361,-1.61458 -3.89583,-1.61458 -1.72215,0 -3.07488,0.62954 -3.89583,1.61458 -0.82095,0.98503 -1.10417,2.2185 -1.10417,3.38542 v 14 c 0,1.69482 -0.32789,2.97283 -0.92708,3.76042 -0.59919,0.78758 -1.4697,1.23958 -3.07292,1.23958 h -15 c -1.60322,0 -2.47373,-0.45199 -3.07292,-1.23958 -0.59919,-0.78759 -0.92708,-2.06561 -0.92708,-3.76042 v -14 c 0,-1.19375 -0.27857,-2.43662 -1.10417,-3.41667 -0.8256,-0.98005 -2.18079,-1.58333 -3.89583,-1.58333 -1.69259,0 -3.03396,0.52519 -3.875,1.48958 -0.84104,0.96439 -1.125,2.23002 -1.125,3.51042 v 5 h -15 v -5 c 0,-2.73391 -2.26609,-5 -5,-5 h -5 c -1.44804,0 -2.74405,0.4524 -3.64583,1.35417 -0.90178,0.90178 -1.35417,2.19779 -1.35417,3.64583 v 5 h -22 v -103 c 0,-2.30001 0.70025,-4.60825 1.92708,-6.28125 1.22684,-1.67301 2.9062,-2.71875 5.07292,-2.71875 z" + id="path2382" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#4c724c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 275.33333,86.333333 c -2.83337,0 -5.154,1.45426 -6.67708,3.53125 -1.52309,2.077 -2.32292,4.76876 -2.32292,7.46875 V 201.33333 c 5e-5,0.55226 0.44774,0.99994 1,1 h 24 c 0.55226,-6e-5 0.99995,-0.44774 1,-1 v -6 c 0,-1.0451 0.2959,-1.75423 0.77083,-2.22917 0.47494,-0.47493 1.18407,-0.77083 2.22917,-0.77083 h 5 c 1.61393,0 3,1.38607 3,3 v 6 c 5e-5,0.55226 0.44774,0.99994 1,1 h 17 c 0.55226,-6e-5 0.99995,-0.44774 1,-1 v -6 c 0,-0.98629 0.21605,-1.72899 0.625,-2.19792 0.40895,-0.46893 1.06759,-0.80208 2.375,-0.80208 1.28495,0 1.92976,0.36078 2.35417,0.86458 0.4244,0.5038 0.64583,1.26458 0.64583,2.13542 v 14 c 0,1.94415 0.35269,3.66608 1.34375,4.96875 0.99106,1.30267 2.62049,2.03125 4.65625,2.03125 h 15 c 2.03576,0 3.66519,-0.72858 4.65625,-2.03125 0.99105,-1.30267 1.34375,-3.0246 1.34375,-4.96875 v -14 c 0,-0.83368 0.21677,-1.59976 0.64583,-2.11458 0.42905,-0.51481 1.07632,-0.88542 2.35417,-0.88542 1.27777,0 1.92508,0.37051 2.35417,0.88542 0.4291,0.51492 0.64583,1.28125 0.64583,2.11458 v 14 c 0,2.00269 0.54722,3.74796 1.60417,5.01042 1.05696,1.26246 2.63349,1.98958 4.39583,1.98958 h 15 c 1.83333,0 3.39055,-0.94112 4.41667,-2.26042 1.02613,-1.3193 1.58333,-3.01736 1.58333,-4.73958 v -10 c 0,-1.74999 0.67475,-3.54929 1.77083,-4.86458 1.09607,-1.31528 2.56422,-2.05974 4.22917,-2.13542 L 401.66666,192 c 3.5862,-0.16301 7,-3.19431 7,-8 v -61 c 0,-1.72222 -0.58963,-3.25631 -1.66666,-4.33334 -1.07703,-1.07703 -2.61116,-1.67905 -4.33334,-1.66666 l -46.33333,0.33333 c -4.05702,0.0292 -8.19565,-1.49353 -11.27083,-4.125 L 317.34375,89.489583 c -2.15493,-1.844 -4.75055,-3.15625 -8.01042,-3.15625 z" + id="path4601-3" /> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-64.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-64.svg new file mode 100644 index 0000000000..1a4410bb91 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb-64.svg @@ -0,0 +1,467 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 64 64" + version="1.1" + sodipodi:docname="application-x-kicad-pcb-64.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="64" + height="64" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="2508" + inkscape:window-height="1591" + id="namedview30" + showgrid="true" + inkscape:zoom="10.722876" + inkscape:cx="44.484334" + inkscape:cy="54.323112" + inkscape:window-x="4201" + inkscape:window-y="537" + inkscape:window-maximized="0" + inkscape:document-rotation="0" + inkscape:current-layer="g4648" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <marker + style="overflow:visible" + id="marker3403" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3401" /> + </marker> + <marker + style="overflow:visible" + id="marker3269" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3267" /> + </marker> + <marker + style="overflow:visible" + id="marker3125" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3123" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g4648" + transform="matrix(0.25,0,0,0.25,2.75,0)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 46.969,1.9423073 157,2 219,66 v 172 c 0,8.73506 -6.26521,15.99596 -15,16 l -157.073938,0.0727 c -8.734785,0.004 -16.001704,-7.26494 -16,-16 L 30.969,17.942307 c 0.0017,-8.7350433 7.265215,-16.0045797 16,-15.9999997 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 217,172 32.857269,219 v 19 c 0,7.73556 6.264682,14 14,14 H 204 c 7.73527,0 12.88281,-6.26533 13,-14 z" + sodipodi:nodetypes="ccssssc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke" + d="M 130,48 H 77 L 61,63 v 55" + id="path880" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 155,2 v 46 c 0,8.735013 9.26681,18.185813 18,18 h 46 z" + sodipodi:nodetypes="csscc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#498d49;fill-opacity:1;fill-rule:nonzero;stroke:#4c724c;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 20,113 c -2.833374,0 -5.158552,1.45621 -6.681641,3.5332 C 11.795271,118.6102 11,121.30001 11,124 v 104.98916 c 5.5e-5,0.55226 0.447738,0.99994 1,1 h 25 c 0.552262,-6e-5 0.999945,-0.44774 1,-1 V 222 c 0,-1.0451 0.296546,-1.75358 0.771484,-2.22852 C 39.246422,219.29655 39.954894,219 41,219 h 5 c 1.61393,0 3,1.38607 3,3 v 6.98916 c 5.5e-5,0.55226 0.447738,0.99994 1,1 h 17 c 0.552262,-6e-5 0.999945,-0.44774 1,-1 V 222 c 0,-0.98629 0.219953,-1.72443 0.628906,-2.19336 C 69.03786,219.33771 69.692589,219 71,219 c 1.284955,0 1.934971,0.36534 2.359375,0.86914 C 73.783779,220.37294 74,221.12916 74,222 v 13.01084 c 0,1.94415 0.348786,3.66803 1.339844,4.9707 0.991057,1.30267 2.62439,2.0293 4.660156,2.0293 h 15 c 2.035765,0 3.669098,-0.72663 4.660156,-2.0293 C 100.65121,238.67887 101,236.95499 101,235.01084 V 222 c 0,-0.83368 0.21352,-1.59456 0.64258,-2.10938 C 102.07163,219.37581 102.72215,219 104,219 c 1.27777,0 1.92833,0.37571 2.35742,0.89062 C 106.78652,220.40554 107,221.16667 107,222 v 13.01084 c 0,2.00269 0.55047,3.7434 1.60742,5.00586 1.05696,1.26246 2.63024,1.99414 4.39258,1.99414 h 16 c 1.83333,0 3.38794,-0.94242 4.41406,-2.26172 C 134.44019,238.42982 135,236.73306 135,235.01084 V 225 c 0,-1.74999 0.6715,-3.54409 1.76758,-4.85938 C 137.86365,218.82534 139.33333,218 141,218 h 19 c 3.5899,0 7,-3.1943 7,-8 v -62 c 0,-1.72222 -0.59094,-3.255 -1.66797,-4.33203 C 164.255,142.59094 162.72222,142 161,142 h -60 c -4.057126,0 -8.19239,-1.49548 -11.267578,-4.12695 L 63.013672,116.15234 C 60.858746,114.30834 58.259877,113 55,113 Z" + id="path4601" + sodipodi:nodetypes="sssccccsssssccccsssssssssssssssssssssssssssssssccss" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3222" + width="14" + height="14" + x="21.000008" + y="122.00002" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke" + d="M 185,80 H 117 L 89,51" + id="path3265" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke" + d="M 185,104 H 97" + id="path3399" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3727);paint-order:fill markers stroke" + d="M 185,128 H 97" + id="path3517" + sodipodi:nodetypes="cc" /> + <path + id="path4465" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1" + d="m 57,115.2055 v 0.56641 29.79254 L 29,168 h -12.941406 -3 L 13,176 h 3 13 c 2,0 5.466605,-1.5702 6,-2 L 63.882812,152.02344 C 64.589332,151.45383 65.00006,150.59504 65,149.6875 v -29.3611 l -2.636719,-2.1553 C 61.061158,117.05685 58.893081,115.43386 57,115.2055 Z" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + id="path4494" + style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 60,166 -32,24 v 38.19589 h 9 V 222 c 0,-2.49314 1.506856,-4 4,-4 h 5 c 2.173922,0 4,1.82608 4,4 v 6 h 17 v -6 c 0,-2.26669 1,-4 4,-4 2.999999,0 4,1.93541 4,4 v 12.15357 c 0,3.63896 1.361013,6 5,6 h 15 c 3.638987,0 5,-2.36103 5,-6 V 222 c 0,-2.0006 1,-4 4,-4 2.99999,0 4,2 4,4 v 12.15357 c 0,3.63897 2,6 5,6 h 15 c 3,0 5,-3 5,-6 V 226 c 0,-10 4,-10 20,-10 h 6 c 3,0 6,-1.65455 6,-6 v -45 z" + sodipodi:nodetypes="ccccssssccsssssssssssssssssscc" /> + <path + id="rect880" + clip-path="url(#clipPath1720)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-5.1063835,-5,0,203,318.70214)" + d="m 17,14.815357 h 1.154165 V 18 H 17 c -0.554,0 -1,-0.446 -1,-1 v -1.184643 c 0,-0.554 0.446,-1 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <path + id="path3057" + clip-path="url(#clipPath1720)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-5.1063835,-5.0000001,0,170,318.70214)" + d="m 17,15.369285 h 1.154165 v 2.432884 H 17 c -0.554,0 -1,-0.446 -1,-1 v -0.432884 c 0,-0.554 0.446,-1 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.31766;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3143" + width="22" + height="22" + x="84.000008" + y="177.99998" /> + <path + id="rect3206" + style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + d="m 82,176 h 26 v 26 H 82 Z" + sodipodi:nodetypes="ccccc" /> + <circle + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3214" + cx="36" + cy="208" + r="3.9999998" /> + <circle + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3216" + cx="63.999992" + cy="208" + r="3.9999998" /> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb.svg index c0d39dce8a..80116dabea 100755 --- a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb.svg +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb.svg @@ -1,23 +1,21 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Слой_1" data-name="Слой 1" - viewBox="0 0 48 48" + viewBox="0 0 256 256" version="1.1" - sodipodi:docname="icon_pcbnew.svg" - inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)" - inkscape:export-filename="/Users/jeff/kicad_dev/kicad/bitmaps_png/png_48/icon_pcbnew.png" - inkscape:export-xdpi="96" - inkscape:export-ydpi="96" - width="48" - height="48"> + sodipodi:docname="application-x-kicad-pcb.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="256" + height="256" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" @@ -27,25 +25,35 @@ guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" - inkscape:window-width="3002" - inkscape:window-height="1747" + inkscape:window-width="1514" + inkscape:window-height="1247" id="namedview30" showgrid="true" - inkscape:zoom="32" - inkscape:cx="19.392205" - inkscape:cy="25.62247" - inkscape:window-x="41" - inkscape:window-y="37" + inkscape:zoom="1.8955546" + inkscape:cx="112.36817" + inkscape:cy="108.93909" + inkscape:window-x="4368" + inkscape:window-y="301" inkscape:window-maximized="0" - inkscape:current-layer="g895" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:current-layer="Слой_1" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> <inkscape:grid type="xygrid" - id="grid2239" + id="grid_kicad" spacingx="0.5" spacingy="0.5" - color="#8383ff" - opacity="0.1254902" + color="#9999ff" + opacity="0.13" empspacing="2" /> </sodipodi:namedview> <metadata @@ -58,7 +66,7 @@ <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>add_arc</dc:title> + <dc:title>ps_diff_pair_tune_phase</dc:title> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> @@ -78,33 +86,154 @@ </rdf:RDF> </metadata> <defs - id="defs5"> + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <marker + style="overflow:visible" + id="marker3403" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3401" /> + </marker> + <marker + style="overflow:visible" + id="marker3269" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3267" /> + </marker> + <marker + style="overflow:visible" + id="marker3125" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3123" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> <style - id="style3">.cls-1{fill:#b9b9b9;}.cls-2{fill:#545454;}.cls-3{fill:#1a81c4;}</style> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath897"> - <rect - style="fill:#f2f2f2;stroke:none;stroke-linejoin:round" - id="rect899" - width="48" - height="48" - x="0" - y="0" - rx="7.8340001" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath1736"> - <rect - style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect1738" - width="24" - height="16" - x="0" - y="8.5" - ry="2.6555922" /> - </clipPath> + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3066" + id="linearGradient3068" + x1="-436.03336" + y1="-160.86667" + x2="-309.03336" + y2="-220.13333" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.5628208,0,0,2.5628208,1152.1189,608.92097)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3066"> + <stop + style="stop-color:#489648;stop-opacity:1;" + offset="0" + id="stop3062" /> + <stop + style="stop-color:#489648;stop-opacity:0;" + offset="1" + id="stop3064" /> + </linearGradient> <clipPath clipPathUnits="userSpaceOnUse" id="clipPath1720"> @@ -119,223 +248,240 @@ </clipPath> <clipPath clipPathUnits="userSpaceOnUse" - id="clipPath1732"> + id="clipPath2395"> <rect - style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:1.99999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect1734" - width="24" - height="24" - x="0" - y="1.5000001" - ry="3.9833882" /> + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> </clipPath> <clipPath clipPathUnits="userSpaceOnUse" - id="clipPath1724"> + id="clipPath2473"> <rect - style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:1.99999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect1726" - width="24" - height="24" - x="0" - y="1.5000001" - ry="3.9833882" /> + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> </clipPath> <clipPath clipPathUnits="userSpaceOnUse" - id="clipPath906"> + id="clipPath2624"> <rect - style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:1.99999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect904" - width="24" - height="24" - x="0" - y="1.5000001" - ry="3.9833882" /> - </clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath910"> - <rect - style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:1.99999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect908" - width="24" - height="24" - x="0" - y="1.5000001" - ry="3.9833882" /> + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> </clipPath> </defs> <title - id="title7">icon_pcbnew</title> + id="title159431">ps_diff_pair_tune_phase</title> <g - id="g1563" - clip-path="url(#clipPath1565)"> - <g - id="g895" - clip-path="url(#clipPath897)"> - <rect - class="cls-1" - x="0" - y="0" - width="48" - height="48" - rx="0" - id="rect9" - style="fill:#489648;fill-opacity:1;stroke:none;stroke-width:0.99999899;stroke-opacity:1" /> - <path - class="cls-2" - d="m 19,48 v -4 l 8,-5.970568 V 25 l 1,-1 h 6 c 0,0 1.128958,1.639203 2,2 2.771639,1.14805 6.228361,1.14805 9,0 1.306563,-0.541196 2.458804,-1.693437 3,-3 -0.26761,-2.960808 0.962324,-7.38699 0,-10 -0.541196,-1.306563 -1.693437,-2.458804 -3,-3 -2.771639,-1.1480503 -6.228361,-1.1480503 -9,0 -0.435521,0.180399 -1,1 -1,1 H 32 L 29,8 V 0 C 19.989874,-0.00320694 4.05901,0.00249473 -0.00413753,0.00257361 0,6.5 -1e-8,48 -1e-8,48 3,47.944449 7.618659,48 19,48 Z" - id="path11" - sodipodi:nodetypes="ccccccaaccaaccccccc" - style="fill:#006400;fill-opacity:1;stroke-width:0.999999" - inkscape:connector-curvature="0" /> - <path - style="fill:none;stroke:#489648;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 40.5,18 H 29 L 22,11 V -0.5" - id="path2253" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <g - id="g2245" - transform="matrix(2.1007353,0,0,2.0007002,-5.8158181,-1.3489937)" - style="stroke-width:0.48777926"> - <path - id="path25" - style="fill:#f29100;fill-opacity:1;stroke-width:0.48777926" - d="m 24.0464,9.6716 c 0.01666,0.92263 -0.689803,1.788674 -1.596971,1.9577 -0.900331,0.202302 -1.891005,-0.315085 -2.239427,-1.169559 -0.379637,-0.8410705 -0.07257,-1.9157025 0.694131,-2.4292153 0.755018,-0.5479002 1.884301,-0.4542902 2.539321,0.2096171 0.38285,0.3706695 0.605209,0.8985716 0.602946,1.4314572 z" - inkscape:connector-curvature="0" /> - <path - id="path27" - style="fill:#f2f2f2;fill-opacity:1;stroke-width:0.48777926" - d="m 23.0471,9.671111 c 0.01721,0.575481 -0.54098,1.074706 -1.110978,0.993612 -0.573846,-0.04664 -1.008169,-0.656695 -0.864436,-1.214203 0.109783,-0.5668907 0.767417,-0.92955 1.30554,-0.7235365 0.39433,0.1323668 0.675168,0.5281566 0.669874,0.9441275 z" - inkscape:connector-curvature="0" /> - </g> - <path - style="fill:none;stroke:#489648;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 7,29 h -18.000001 -1.5" - id="path2255" - sodipodi:nodetypes="ccc" - inkscape:transform-center-x="9.6390115" - inkscape:transform-center-y="-0.0417481" - inkscape:connector-curvature="0" /> - <g - id="g2251" - transform="matrix(2.1007353,0,0,2.0007002,-39.467859,9.5821874)" - style="stroke-width:0.48777926"> - <path - class="cls-3" - d="m 24.0464,9.6716 a 1.9993,1.9993 0 1 1 -1.9992,-2 1.9995,1.9995 0 0 1 1.9992,2 z" - id="path2247" - style="fill:#f29100;fill-opacity:1;stroke-width:0.48777926" - inkscape:connector-curvature="0" /> - <path - class="cls-1" - d="M 23.0471,9.671111 A 1,1 0 1 1 22.04717,8.6709 1.0000702,1.0000702 0 0 1 23.0471,9.671111 Z" - id="path2249" - style="fill:#ffffff;fill-opacity:1;stroke-width:0.48777926" - inkscape:connector-curvature="0" /> - </g> - <path - style="fill:none;stroke:#489648;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 7,48 v -9 l 8,-6 V 26 L 7,18 V -0.5" - id="path2263" - sodipodi:nodetypes="cccccc" - inkscape:connector-curvature="0" /> - <path - style="fill:none;stroke:#489648;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 11,48 v -7 l 8,-6 V 24 L 11,16 V -0.5" - id="path2265" - sodipodi:nodetypes="cccccc" - inkscape:connector-curvature="0" /> - <path - style="fill:none;stroke:#489648;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 15,48 v -5 l 8,-6 V 22 L 15,14 V -0.5" - id="path2267" - sodipodi:nodetypes="cccccc" - inkscape:connector-curvature="0" /> - <g - id="g913" - transform="matrix(2,0,0,2,-12,-13)" - clip-path="none"> - <rect - style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:1.81332;stroke-linecap:round;stroke-linejoin:round" - id="rect878" - width="8.1934328" - height="3.9016349" - x="13.136076" - y="17.057377" - rx="1.5000001" - ry="1" - clip-path="url(#clipPath1736)" - transform="matrix(-0.85434278,0,0,1.2815141,40.222712,-0.85926913)" /> - <rect - style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" - id="rect880" - width="5" - height="3" - x="17" - y="15" - rx="0" - ry="1" - clip-path="url(#clipPath1720)" - transform="matrix(-1,0,0,0.99999997,45,7.0000004)" /> - <path - style="fill:none;stroke:#489648;stroke-width:2.99999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 18,21 v 3" - id="path886" - sodipodi:nodetypes="cc" - clip-path="url(#clipPath1732)" - transform="matrix(-0.66666667,0,0,0.66666667,37.5,11)" /> - <path - style="fill:none;stroke:#489648;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 23.25,18.75 H 19.5" - id="path1080" - sodipodi:nodetypes="cc" - clip-path="url(#clipPath1724)" - transform="matrix(-0.66666667,0,0,0.66666667,36,11)" /> - <path - style="fill:none;stroke:#489648;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 23.25,18.75 H 19.5" - id="path903" - sodipodi:nodetypes="cc" - clip-path="url(#clipPath1724)" - transform="matrix(-0.66666667,0,0,0.66666667,43.5,11)" /> - <path - style="fill:none;stroke:#489648;stroke-width:2.99999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 18,21 v 3" - id="path905" - sodipodi:nodetypes="cc" - clip-path="url(#clipPath1732)" - transform="matrix(-0.66666667,0,0,0.66666667,37.5,5.9999999)" /> - </g> - <g - id="g927" - transform="matrix(2,0,0,2,-12,-4.0000001)" - clip-path="none"> - <rect - style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:1.81332;stroke-linecap:round;stroke-linejoin:round" - id="rect915" - width="8.1934328" - height="3.9016349" - x="13.136076" - y="17.057377" - rx="1.5000001" - ry="1" - clip-path="url(#clipPath935)" - transform="matrix(-0.85434278,0,0,1.2815141,40.222712,1.140731)" /> - <rect - style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" - id="rect917" - width="5" - height="3" - x="17" - y="15" - rx="0" - ry="1" - clip-path="url(#clipPath931)" - transform="matrix(-1,0,0,0.99999997,45,9.0000005)" /> - </g> - </g> + id="g4648"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 46,2 h 111 l 63,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 46 c -8.734786,0 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#c9ddc9;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3125);paint-order:fill markers stroke" + d="M 130,51 H 77 L 61,66 v 52" + id="path880" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 156,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3068);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 12.999998,228 h 23.999995 v -6 c 0,-2.49314 1.506866,-3.99999 4.00001,-3.99999 h 5.000004 c 2.173922,0 3.999994,1.82607 3.999994,3.99999 v 6 h 17.000002 v -6 c 0,-2.26669 0.999994,-3.99999 3.999994,-3.99999 2.999999,0 4.000009,1.9354 4.000009,3.99999 v 14 c 0,3.63896 1.361002,6 4.999989,6 h 15.000012 c 3.638987,0 4.999989,-2.36103 4.999989,-6 v -14 c 0,-2.0006 1.000014,-3.99999 4.000014,-3.99999 C 107,218.00001 108,220 108,222 v 14 c 0,3.63897 2,6 5,6 h 15 c 3,0 5,-3 5,-6 v -10.00001 c 0,-3.99999 3,-7.99998 7,-7.99998 h 5.99995 c 3,0 6,-2.65456 6,-7.00001 v -61 c 0,-3 -1.99999,-5 -4.99999,-5 h -45 c -4.300699,0 -8.650242,-1.5713 -11.917886,-4.36746 L 62.362536,116.91268 c -2.037152,-1.74322 -4.362638,-2.91267 -7.362637,-2.91267 H 20.999896 c -5.000095,0 -7.999898,4.99999 -7.999898,9.99999 z" + id="path4599" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.11125;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3222" + width="14" + height="14" + x="21.000008" + y="122.00002" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);paint-order:fill markers stroke" + d="M 186,79 H 116 L 89,51" + id="path3265" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke" + d="M 186,102 H 84" + id="path3399" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#c9ddc9;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3727);paint-order:fill markers stroke" + d="M 186,125 H 84" + id="path3517" + sodipodi:nodetypes="cc" /> + <path + id="path4465" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#325232;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1;opacity:1" + d="M 58 114.43359 L 58 115 L 58 146.56445 L 28.941406 170 L 16 170 L 13 170 L 13 176 L 16 176 L 30 176 A 3.0003 3.0003 0 0 0 31.882812 175.33594 L 62.882812 150.33594 A 3.0003 3.0003 0 0 0 64 148 L 64 118.3125 L 62.363281 116.91211 C 61.061158 115.79786 59.638576 114.92344 58 114.43359 z " /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#4c724c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 21,113 c -2.833374,0 -5.158552,1.45621 -6.681641,3.5332 C 12.795271,118.6102 12,121.30001 12,124 v 104 a 1.0001,1.0001 0 0 0 1,1 h 24 a 1.0001,1.0001 0 0 0 1,-1 v -6 c 0,-1.0451 0.296546,-1.75358 0.771484,-2.22852 C 39.246422,219.29655 39.954894,219 41,219 h 5 c 1.61393,0 3,1.38607 3,3 v 6 a 1.0001,1.0001 0 0 0 1,1 h 17 a 1.0001,1.0001 0 0 0 1,-1 v -6 c 0,-0.98629 0.219953,-1.72443 0.628906,-2.19336 C 69.03786,219.33771 69.692589,219 71,219 c 1.284955,0 1.934971,0.36534 2.359375,0.86914 C 73.783779,220.37294 74,221.12916 74,222 v 14 c 0,1.94415 0.348786,3.66803 1.339844,4.9707 C 76.330901,242.27337 77.964234,243 80,243 h 15 c 2.035765,0 3.669098,-0.72663 4.660156,-2.0293 C 100.65121,239.66803 101,237.94415 101,236 v -14 c 0,-0.83368 0.21352,-1.59456 0.64258,-2.10938 C 102.07163,219.37581 102.72215,219 104,219 c 1.27777,0 1.92833,0.37571 2.35742,0.89062 C 106.78652,220.40554 107,221.16667 107,222 v 14 c 0,2.00269 0.55047,3.7434 1.60742,5.00586 C 109.66438,242.26832 111.23766,243 113,243 h 15 c 1.83333,0 3.38794,-0.94242 4.41406,-2.26172 C 133.44019,239.41898 134,237.72222 134,236 v -10 c 0,-1.74999 0.6715,-3.54409 1.76758,-4.85938 C 136.86365,219.82534 138.33333,219 140,219 h 6 c 3.5899,0 7,-3.1943 7,-8 v -61 c 0,-1.72222 -0.59094,-3.255 -1.66797,-4.33203 C 150.255,144.59094 148.72222,144 147,144 h -45 c -4.057126,0 -8.19239,-1.49548 -11.267578,-4.12695 L 63.013672,116.15234 C 60.858746,114.30834 58.259877,113 55,113 Z m 0,2 h 34 c 2.740121,0 4.793513,1.02944 6.712891,2.67188 l 27.71875,23.7207 C 92.891741,144.35342 97.455728,146 102,146 h 45 c 1.27778,0 2.245,0.40906 2.91797,1.08203 C 150.59094,147.755 151,148.72222 151,150 v 61 c 0,3.8852 -2.5899,6 -5,6 h -6 c -2.33333,0 -4.36365,1.17467 -5.76758,2.85938 C 132.8285,221.54408 132,223.75 132,226 v 10 c 0,1.27778 -0.44019,2.58102 -1.16406,3.51172 C 130.11206,240.44242 129.16667,241 128,241 h -15 c -1.23766,0 -2.16438,-0.44955 -2.85742,-1.27734 C 109.44953,238.89486 109,237.63628 109,236 v -14 c 0,-1.16667 -0.28652,-2.40554 -1.10742,-3.39062 C 107.07168,217.62429 105.72222,217 104,217 c -1.72215,0 -3.07163,0.62434 -3.89258,1.60938 C 99.286471,219.59441 99,220.83308 99,222 v 14 c 0,1.69482 -0.332451,2.97218 -0.931641,3.75977 C 97.469169,240.54735 96.603222,241 95,241 H 80 c -1.603221,0 -2.469169,-0.45264 -3.068359,-1.24023 C 76.33245,238.97218 76,237.69481 76,236 v -14 c 0,-1.19375 -0.283774,-2.43792 -1.109375,-3.41797 C 74.065024,217.60198 72.715044,217 71,217 c -1.692589,0 -3.037863,0.5278 -3.878906,1.49219 C 66.28005,219.45658 66,220.7196 66,222 v 5 H 51 v -5 c 0,-2.73391 -2.266086,-5 -5,-5 h -5 c -1.448038,0 -2.740797,0.45565 -3.642578,1.35742 C 36.455641,219.2592 36,220.55196 36,222 v 5 H 14 V 124 c 0,-2.30001 0.704804,-4.6102 1.931641,-6.2832 C 17.158477,116.04379 18.833279,115 21,115 Z" + id="path4601" /> + <path + id="path4494" + style="opacity:1;fill:#325232;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 60 166 L 28 190 L 28 228 L 37 228 L 37 222 C 37 219.50686 38.506856 218 41 218 L 46 218 C 48.173922 218 50 219.82608 50 222 L 50 228 L 67 228 L 67 222 C 67 219.73331 68 218 71 218 C 73.999999 218 75 219.93541 75 222 L 75 236 C 75 239.63896 76.361013 242 80 242 L 95 242 C 98.638987 242 100 239.63897 100 236 L 100 222 C 100 219.9994 101 218 104 218 C 106.99999 218 108 220 108 222 L 108 236 C 108 239.63897 110 242 113 242 L 128 242 C 131 242 133 239 133 236 L 133 226 C 133 222.00001 136 218 140 218 L 146 218 C 149 218 152 215.34545 152 211 L 152 166 L 60 166 z " /> + <path + id="rect880" + clip-path="url(#clipPath1720)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-5.1063835,-5,0,203,318.70214)" + d="m 17,15 h 1.154165 v 3 H 17 c -0.554,0 -1,-0.446 -1,-1 v -1 c 0,-0.554 0.446,-1 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <path + id="path3057" + clip-path="url(#clipPath1720)" + style="fill:#dd8d15;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(0,-5.1063835,-5.0000001,0,170,318.70214)" + d="m 17,15 h 1.154165 v 3 H 17 c -0.554,0 -1,-0.446 -1,-1 v -1 c 0,-0.554 0.446,-1 1,-1 z" + sodipodi:nodetypes="sccssss" /> + <rect + style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.31766;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="rect3143" + width="22" + height="22" + x="84.000008" + y="177.99998" /> + <path + id="rect3206" + style="fill:none;fill-opacity:1;stroke:#4c724c;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + d="m 82,176 h 26 v 26 H 82 Z" + sodipodi:nodetypes="ccccc" /> + <circle + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3214" + cx="36" + cy="208" + r="3.9999998" /> + <circle + style="opacity:0.5;fill:#182918;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" + id="circle3216" + cx="63.999992" + cy="208" + r="3.9999998" /> </g> </svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-16.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-16.svg new file mode 100644 index 0000000000..806230f0e0 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-16.svg @@ -0,0 +1,364 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 16 16" + version="1.1" + sodipodi:docname="application-x-kicad-project-16.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="16" + height="16" + inkscape:export-filename="../../16x16/mimetypes/application-x-kicad-project.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="32" + inkscape:cx="24.515625" + inkscape:cy="19.515625" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g19868" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker1936" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1934" /> + </marker> + <marker + style="overflow:visible" + id="marker1926" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1924" /> + </marker> + <marker + style="overflow:visible" + id="marker3403" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always" + viewBox="0 0 2.2666667 2.2666667" + markerWidth="2.2666667" + markerHeight="2.2666667" + preserveAspectRatio="xMidYMid"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3401" /> + </marker> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8860144,0,0,1.8013732,194.13936,137.54459)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + id="Безымянный_градиент_10" + x1="50.0093" + x2="50.0093" + y2="100" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)"> + <stop + offset="0" + stop-color="#2b4bb7" + id="stop5398" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop5400" /> + </linearGradient> + <radialGradient + id="Безымянный_градиент_28" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.345644)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop5403" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop5405" /> + </radialGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" + id="radialGradient6102" + gradientUnits="userSpaceOnUse" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" /> + <radialGradient + id="Безымянный_градиент_114" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientUnits="userSpaceOnUse"> + <stop + offset="0.0007" + stop-color="#fff" + stop-opacity="0" + id="stop5411" /> + <stop + offset="0.1476" + stop-color="#fbfbfb" + stop-opacity="0.039" + id="stop5413" /> + <stop + offset="0.3723" + stop-color="#f1f1f1" + stop-opacity="0.1465" + id="stop5415" /> + <stop + offset="0.6466" + stop-color="#e0e0e0" + stop-opacity="0.3222" + id="stop5417" /> + <stop + offset="0.9576" + stop-color="#c9c9c8" + stop-opacity="0.5641" + id="stop5419" /> + <stop + offset="1" + stop-color="#c6c6c5" + stop-opacity="0.6" + id="stop5421" /> + </radialGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" + id="radialGradient6104" + gradientUnits="userSpaceOnUse" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g122" + transform="matrix(0.1239317,0,0,0.12301587,0.87606596,0.25396825)" + style="stroke-width:2.02474"> + <g + id="g19868" + transform="translate(-1.6057103)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.09893;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 32.501213,1.9077674 H 88.708856 L 119.60566,32.377712 V 116.5328 c 0,4.22471 -3.67892,7.25475 -8.10201,7.25475 H 32.501213 c -4.42308,0 -8.102004,-3.51369 -8.102004,-7.7384 V 9.6461662 c 0,-4.2247032 3.678928,-7.7331313 8.102004,-7.7383988 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#909dd7;fill-opacity:1;stroke:none;stroke-width:1.50824;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 115.57118,79.225808 25.377248,105.1271 v 8.48889 c 0,3.45613 3.068766,6.25498 6.857924,6.25498 h 76.478098 c 6.85791,0 6.85791,0 6.85791,-5.80819 z m -91.9458,34.555732 v 0.16575 c 0,1.01264 0.241014,1.96878 0.659234,2.83737 -0.420102,-0.92629 -0.659234,-1.93854 -0.659234,-3.00312 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:10.5577;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 62.208137,22.016536 h 29.025911 c 0.536017,0 0.96754,0.425123 0.96754,0.953215 v 13.345183 c 0,0.528092 -0.431523,0.953215 -0.96754,0.953215 H 62.208137 c -0.536017,0 -0.96752,-0.425123 -0.96752,-0.953215 V 22.969751 c 0,-0.528092 0.431503,-0.953215 0.96752,-0.953215 z" + id="path6035" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8.09893;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3403);paint-order:fill markers stroke" + d="M 103.80623,26.387097 H 79.260855 L 63.122933,42.645162 h -24.05447" + id="path3265" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8.09893;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke" + d="m 59.088453,18.258065 -19.605288,0" + id="path3399" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8.09893;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1926);paint-order:fill markers stroke" + d="M 98.866141,50.774195 H 75.793489" + id="path1922" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8.09893;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 95.398776,75.161292 -32.185454,0" + id="path2280" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.09893;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 87.329815,2.8578234 V 26.387097 c 0,4.372946 3.529644,8.016302 7.773647,8.009965 h 23.320958 z" + sodipodi:nodetypes="csscc" /> + </g> + <g + id="g1338" + transform="matrix(1.7582357,0,0,1.7645596,-132.92077,241.38336)" + style="stroke-width:3.25375"> + <rect + class="cls-8" + x="76.167709" + width="45.892372" + height="45.961853" + rx="10.198295" + id="rect5459" + y="-114.92042" + style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:3.25375" /> + <rect + class="cls-9" + x="76.167709" + width="45.892372" + height="45.961853" + rx="10.198295" + id="rect5461" + y="-115.0269" + style="mix-blend-mode:saturation;fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:3.25375" /> + <path + class="cls-11" + d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38376 -2.61518,2.32533 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644875 0.9134,0.879774 h -9.178473 c 0.06599,-0.237597 0.110531,-0.597852 0.115049,-0.844429 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934763 v 7.071054 c 0,1.647917 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445402 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23867 -0.776122,-1.66845 h 8.472438 c -0.662961,0.66397 -1.238395,1.73738 -1.235568,3.37323 z" + id="path5475" + style="fill:#ffffff;stroke-width:3.25375" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-11" + d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38433,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z" + id="path5477" + style="fill:#ffffff;stroke-width:3.25375" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + class="cls-12" + d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38381 -2.61518,2.32538 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644825 0.9134,0.879724 h -9.178473 c 0.06599,-0.237597 0.110531,-0.5978 0.115049,-0.844377 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934813 v 7.071054 c 0,1.647916 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445404 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23862 -0.776122,-1.6684 h 8.472438 c -0.662961,0.66397 -1.235569,1.73738 -1.235568,3.37323 z" + id="path5479" + style="fill:url(#radialGradient6102);stroke-width:3.25375" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-12" + d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38434,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z" + id="path5481" + style="fill:url(#radialGradient6104);stroke-width:3.25375" + sodipodi:nodetypes="ccccccccccccccc" /> + <ellipse + style="fill:#ff6d00;fill-opacity:1;stroke-width:6.50753;stroke-linecap:round;stroke-linejoin:round" + id="path6063" + cx="111.0855" + cy="-103.00631" + rx="3.7129955" + ry="3.7186167" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-24.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-24.svg new file mode 100644 index 0000000000..2df33da0b7 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-24.svg @@ -0,0 +1,429 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 24 24" + version="1.1" + sodipodi:docname="application-x-kicad-project-24.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="24" + height="24" + inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-project.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="64" + inkscape:cx="16.875" + inkscape:cy="12.414063" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g30744" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker1956" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1954" /> + </marker> + <marker + style="overflow:visible" + id="marker1936" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1934" /> + </marker> + <marker + style="overflow:visible" + id="marker1926" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1924" /> + </marker> + <marker + style="overflow:visible" + id="marker1676" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1674" /> + </marker> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <marker + style="overflow:visible" + id="marker3403" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3401" /> + </marker> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,382.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + id="Безымянный_градиент_10" + x1="50.0093" + x2="50.0093" + y2="100" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.62436744,0,0,0.62952265,76.161905,-128.84484)"> + <stop + offset="0" + stop-color="#2b4bb7" + id="stop5398" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop5400" /> + </linearGradient> + <radialGradient + id="Безымянный_градиент_28" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.62952265,1.1132471,0,81.478768,-82.712857)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop5403" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop5405" /> + </radialGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" + id="radialGradient6102" + gradientUnits="userSpaceOnUse" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientTransform="matrix(0.62436744,0,0,0.6538606,76.161905,-130.78767)" /> + <radialGradient + id="Безымянный_градиент_114" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientUnits="userSpaceOnUse"> + <stop + offset="0.0007" + stop-color="#fff" + stop-opacity="0" + id="stop5411" /> + <stop + offset="0.1476" + stop-color="#fbfbfb" + stop-opacity="0.039" + id="stop5413" /> + <stop + offset="0.3723" + stop-color="#f1f1f1" + stop-opacity="0.1465" + id="stop5415" /> + <stop + offset="0.6466" + stop-color="#e0e0e0" + stop-opacity="0.3222" + id="stop5417" /> + <stop + offset="0.9576" + stop-color="#c9c9c8" + stop-opacity="0.5641" + id="stop5419" /> + <stop + offset="1" + stop-color="#c6c6c5" + stop-opacity="0.6" + id="stop5421" /> + </radialGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" + id="radialGradient6104" + gradientUnits="userSpaceOnUse" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientTransform="matrix(0.62436744,0,0,0.62952265,76.161905,-128.76554)" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g122" + transform="matrix(0.25,0,0,0.25,0.74999817,0)"> + <g + id="g21945" + transform="matrix(0.74354146,0,0,0.74599266,0.25646888,0.50833633)" + style="stroke-width:1.3427"> + <g + id="g1338" + transform="matrix(2.7891345,0,0,2.7849181,-211.44199,432.04395)" + style="stroke-width:1.36368"> + <g + id="g30744" + transform="matrix(0.49427092,0,0,0.48935228,38.520226,-78.853651)" + style="stroke-width:2.7728"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:10.9206;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 63.000002,2 H 174 l 61.01562,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 63.000002 c -8.734786,0 -16,-7.26494 -16,-16 V 18 c 0,-8.7350437 7.265221,-15.9891089 16,-16 z" + sodipodi:nodetypes="sccssssss" + transform="matrix(0.35853417,0,0,0.35907698,75.809177,-155.13704)" /> + <path + id="path5956" + style="fill:#909dd7;fill-opacity:1;stroke:none;stroke-width:2.03371;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 233.125,172 49.000002,219 v 19 c 0,7.73556 6.264682,14 14,14 H 219.125 c 7.73527,0 14,-5.26444 14,-13 z M 45.423678,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" + transform="matrix(0.35853417,0,0,0.35907698,75.809177,-155.13704)" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:14.236;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 124.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" + transform="matrix(0.35853417,0,0,0.35907698,75.809177,-155.13704)" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3727);paint-order:fill markers stroke" + d="m 148.71057,-142.40949 -14.14254,0.0452 -11.57276,11.55219 -16.25019,0.0452" + id="path3265" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke" + d="m 121.66508,-142.61565 h -16.8511" + id="path3399" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1676);paint-order:fill markers stroke" + d="M 146.40905,-130.8121 H 132.75101" + id="path1672" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1956);paint-order:fill markers stroke" + d="m 148.3602,-119.00855 -13.65804,0 -11.70689,11.80355 h -19.31028" + id="path1918" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1936);paint-order:fill markers stroke" + d="m 121.04412,-119.00855 -16.23015,0" + id="path1920" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1926);paint-order:fill markers stroke" + d="m 146.40905,-107.205 -13.65804,0" + id="path1922" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:3.91837;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 148.3602,-95.401454 -28.12398,0" + id="path2280" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:10.9206;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 171.00001,2.0184637 V 49.018464 c 0,8.735013 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" + transform="matrix(0.35853417,0,0,0.35907698,75.809177,-155.13704)" /> + <rect + class="cls-8" + x="76.167709" + width="62.436749" + height="62.952267" + rx="13.874819" + id="rect5459" + y="-128.84485" + style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.7728" /> + <rect + class="cls-9" + x="76.167709" + width="62.436749" + height="62.952267" + rx="13.874819" + id="rect5461" + y="-128.84485" + style="mix-blend-mode:saturation;fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.7728" /> + <path + class="cls-11" + d="m 95.379016,-101.6154 7.157984,-9.18374 c 1.41677,-1.87214 2.1253,-3.27196 2.12559,-4.19951 0.01,-0.27545 -0.0686,-0.44072 -0.1582,-0.69991 h 12.2472 c -1.33019,0.92181 -2.60497,1.96856 -3.55796,3.30805 -0.43472,0.53999 -1.08644,1.37543 -1.95514,2.5063 l -9.08823,11.834905 10.84676,15.634264 c 0.5148,0.742349 1.3521,1.804894 2.51189,3.187637 0.37072,0.390088 0.82512,0.917409 1.24268,1.251579 h -12.48734 c 0.0898,-0.338008 0.15037,-0.850513 0.15652,-1.201297 0,-0.927043 -0.61188,-2.267807 -1.83564,-4.02229 l -7.206114,-9.865503 v 10.059394 c 0,2.344353 0.538887,4.08526 1.440848,5.029696 H 85.533222 c 0.603392,-0.611357 0.871042,-1.515932 1.055917,-2.373584 0.121343,-0.879339 0.169788,-1.768025 0.14479,-2.656112 v -27.663369 c 0.02497,-0.88808 -0.02348,-1.77676 -0.14479,-2.6561 -0.184954,-0.85764 -0.452593,-1.76215 -1.055917,-2.37357 h 11.526783 c -0.901961,0.94457 -1.684841,2.47162 -1.680995,4.7988 z" + id="path5475" + style="fill:#ffffff;stroke-width:2.7728" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-11" + d="m 128.03824,-104.55315 4.3e-4,22.275415 c -0.0231,0.764517 0.01,1.529717 0.0963,2.289512 0.13886,0.750867 0.58118,1.516346 1.10438,2.068721 H 118.433 c 0.52288,-0.552607 0.72456,-1.317983 0.86379,-2.068721 0.0857,-0.75992 0.11796,-1.525006 0.0963,-2.289512 v -18.159305 c 0.0224,-0.75633 -0.01,-1.51329 -0.0963,-2.2649 -0.14084,-0.73808 -0.35763,-1.29982 -0.86423,-1.85121 z m -4.19527,-14.33943 c 2.66504,0.008 4.82349,2.18434 4.83148,4.87138 -0.004,6.49052 -9.66691,6.49052 -9.66258,0 -0.0264,-2.70119 2.15204,-4.89777 4.8311,-4.87138 z" + id="path5477" + style="fill:#ffffff;stroke-width:2.7728" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + class="cls-12" + d="m 95.379016,-101.6154 7.157984,-9.18374 c 1.41677,-1.87214 2.1253,-3.27196 2.12559,-4.19951 0.01,-0.27545 -0.0686,-0.44072 -0.1582,-0.69991 h 12.2472 c -1.33019,0.92181 -2.60497,1.96863 -3.55796,3.30812 -0.43472,0.53999 -1.08644,1.37543 -1.95514,2.5063 l -9.08823,11.834905 10.84676,15.634267 c 0.5148,0.742349 1.3521,1.804893 2.51189,3.187635 0.37072,0.390087 0.82512,0.917338 1.24268,1.251508 h -12.48734 c 0.0898,-0.338008 0.15037,-0.850439 0.15652,-1.201224 0,-0.927043 -0.61188,-2.267806 -1.83564,-4.022289 l -7.206114,-9.865574 v 10.059394 c 0,2.344352 0.538887,4.085259 1.440848,5.029696 H 85.533222 c 0.603392,-0.611358 0.871042,-1.515933 1.055917,-2.373584 0.121343,-0.879339 0.169788,-1.768025 0.14479,-2.656112 v -27.663372 c 0.02497,-0.88808 -0.02348,-1.77676 -0.14479,-2.6561 -0.184954,-0.85764 -0.452593,-1.76209 -1.055917,-2.3735 h 11.526783 c -0.901961,0.94457 -1.680996,2.47162 -1.680995,4.79882 z" + id="path5479" + style="fill:url(#radialGradient6102);stroke-width:2.7728" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-12" + d="m 128.03824,-104.63735 4.3e-4,22.359615 c -0.0231,0.764517 0.01,1.529717 0.0963,2.289512 0.13886,0.750867 0.58118,1.516346 1.10438,2.068721 H 118.433 c 0.52289,-0.552607 0.72456,-1.317983 0.86379,-2.068721 0.0857,-0.75992 0.11796,-1.525006 0.0963,-2.289512 v -18.243515 c 0.0224,-0.75632 -0.01,-1.51328 -0.0963,-2.26489 -0.14084,-0.73809 -0.35763,-1.29982 -0.86423,-1.85121 z m -4.19527,-14.00262 c 2.66504,0.008 4.82349,2.18434 4.83148,4.87137 -0.004,6.49052 -9.66691,6.49052 -9.66258,0 -0.0264,-2.70118 2.15204,-4.89777 4.8311,-4.87137 z" + id="path5481" + style="fill:url(#radialGradient6104);stroke-width:2.7728" + sodipodi:nodetypes="ccccccccccccccc" /> + <ellipse + style="fill:#ff6d00;fill-opacity:1;stroke-width:5.54563;stroke-linecap:round;stroke-linejoin:round" + id="path6063" + cx="123.6735" + cy="-114.04723" + rx="5.0515447" + ry="5.0932531" /> + </g> + </g> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-32.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-32.svg new file mode 100644 index 0000000000..c15b0d8714 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-32.svg @@ -0,0 +1,432 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 32 32" + version="1.1" + sodipodi:docname="application-x-kicad-project-32.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="32" + height="32" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2136" + id="namedview30" + showgrid="true" + inkscape:zoom="32" + inkscape:cx="24.375" + inkscape:cy="6.21875" + inkscape:window-x="3840" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g19868" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker1956" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1954" /> + </marker> + <marker + style="overflow:visible" + id="marker1936" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1934" /> + </marker> + <marker + style="overflow:visible" + id="marker1926" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1924" /> + </marker> + <marker + style="overflow:visible" + id="marker1676" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1674" /> + </marker> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <marker + style="overflow:visible" + id="marker3403" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3401" /> + </marker> + <marker + style="overflow:visible" + id="marker3269" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3267" /> + </marker> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6758174,0,0,3.7245395,377.82134,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + id="Безымянный_градиент_10" + x1="50.0093" + x2="50.0093" + y2="100" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)"> + <stop + offset="0" + stop-color="#2b4bb7" + id="stop5398" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop5400" /> + </linearGradient> + <radialGradient + id="Безымянный_градиент_28" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop5403" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop5405" /> + </radialGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" + id="radialGradient6102" + gradientUnits="userSpaceOnUse" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" /> + <radialGradient + id="Безымянный_градиент_114" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientUnits="userSpaceOnUse"> + <stop + offset="0.0007" + stop-color="#fff" + stop-opacity="0" + id="stop5411" /> + <stop + offset="0.1476" + stop-color="#fbfbfb" + stop-opacity="0.039" + id="stop5413" /> + <stop + offset="0.3723" + stop-color="#f1f1f1" + stop-opacity="0.1465" + id="stop5415" /> + <stop + offset="0.6466" + stop-color="#e0e0e0" + stop-opacity="0.3222" + id="stop5417" /> + <stop + offset="0.9576" + stop-color="#c9c9c8" + stop-opacity="0.5641" + id="stop5419" /> + <stop + offset="1" + stop-color="#c6c6c5" + stop-opacity="0.6" + id="stop5421" /> + </radialGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" + id="radialGradient6104" + gradientUnits="userSpaceOnUse" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g122" + transform="matrix(0.1239317,0,0,0.12301587,0.87606596,0.25396825)" + style="stroke-width:2.02474"> + <g + id="g19868" + transform="translate(-1.6057103)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.09894;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 62.7907,2 h 109.54796 l 60.21746,63 v 174 c 0,8.73506 -7.17017,15 -15.7907,15 H 62.7907 c -8.620523,0 -15.790698,-7.26494 -15.790698,-16 V 18 c 0,-8.7350437 7.170182,-15.9891089 15.790698,-16 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#909dd7;fill-opacity:1;stroke:none;stroke-width:1.50824;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 228.53662,172 48.912578,219 v 19 c 0,7.73556 6.111542,14 13.657769,14 H 214.87886 c 7.54618,0 13.65776,-5.26444 13.65776,-13 z M 45.423678,238.37052 v 0.371 c 0,2.2665 0.479986,4.40655 1.312884,6.35064 -0.836646,-2.07323 -1.312884,-4.33886 -1.312884,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:10.5577;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 124.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);marker-end:url(#marker3727);paint-order:fill markers stroke" + d="m 197.65515,51.223265 h -50 l -17,24 H 81.655144" + id="path3265" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke" + d="M 124.65515,50.774195 H 77.655144" + id="path3399" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1676);paint-order:fill markers stroke" + d="m 197.65515,75.133451 h -47" + id="path1672" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1956);paint-order:fill markers stroke" + d="m 201.48267,99.54839 h -54 l -17,23.99999 H 81.482665" + id="path1918" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1936);paint-order:fill markers stroke" + d="M 125.36203,99.54839 H 78.362023" + id="path1920" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1926);paint-order:fill markers stroke" + d="m 197.98267,123.93549 h -47" + id="path1922" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8.09894;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 201.48721,148.32258 h -82" + id="path2280" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.09894;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 169.23006,1.8213759 V 50.470766 c 0,9.041554 7.19004,16.574597 15.83526,16.561494 h 47.50579 z" + sodipodi:nodetypes="csscc" /> + </g> + <g + id="g1338" + transform="matrix(2.8131771,0,0,2.8298363,-213.27324,436.94791)" + style="stroke-width:2.03124"> + <rect + class="cls-8" + x="76.167709" + width="45.892372" + height="45.961853" + rx="10.198295" + id="rect5459" + y="-114.92042" + style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.03124" /> + <rect + class="cls-9" + x="76.167709" + width="45.892372" + height="45.961853" + rx="10.198295" + id="rect5461" + y="-114.92042" + style="mix-blend-mode:saturation;fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.03124" /> + <path + class="cls-11" + d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38376 -2.61518,2.32533 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644875 0.9134,0.879774 h -9.178473 c 0.06599,-0.237597 0.110531,-0.597852 0.115049,-0.844429 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934763 v 7.071054 c 0,1.647917 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445402 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23867 -0.776122,-1.66845 h 8.472438 c -0.662961,0.66397 -1.238395,1.73738 -1.235568,3.37323 z" + id="path5475" + style="fill:#ffffff;stroke-width:2.03124" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-11" + d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38433,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z" + id="path5477" + style="fill:#ffffff;stroke-width:2.03124" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + class="cls-12" + d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38381 -2.61518,2.32538 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644825 0.9134,0.879724 h -9.178473 c 0.06599,-0.237597 0.110531,-0.5978 0.115049,-0.844377 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934813 v 7.071054 c 0,1.647916 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445404 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23862 -0.776122,-1.6684 h 8.472438 c -0.662961,0.66397 -1.235569,1.73738 -1.235568,3.37323 z" + id="path5479" + style="fill:url(#radialGradient6102);stroke-width:2.03124" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-12" + d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38434,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z" + id="path5481" + style="fill:url(#radialGradient6104);stroke-width:2.03124" + sodipodi:nodetypes="ccccccccccccccc" /> + <ellipse + style="fill:#ff6d00;fill-opacity:1;stroke-width:4.0625;stroke-linecap:round;stroke-linejoin:round" + id="path6063" + cx="111.0855" + cy="-103.00631" + rx="3.7129955" + ry="3.7186167" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-48.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-48.svg new file mode 100644 index 0000000000..05b5d2dfbf --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-48.svg @@ -0,0 +1,435 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 48 48" + version="1.1" + sodipodi:docname="application-x-kicad-project-48.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="48" + height="48" + inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-project.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="16" + inkscape:cx="38.125" + inkscape:cy="43.65625" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g1338" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker1956" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1954" /> + </marker> + <marker + style="overflow:visible" + id="marker1936" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1934" /> + </marker> + <marker + style="overflow:visible" + id="marker1926" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1924" /> + </marker> + <marker + style="overflow:visible" + id="marker1676" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1674" /> + </marker> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <marker + style="overflow:visible" + id="marker3403" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3401" /> + </marker> + <marker + style="overflow:visible" + id="marker3269" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3267" /> + </marker> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,382.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + id="Безымянный_градиент_10" + x1="50.0093" + x2="50.0093" + y2="100" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)"> + <stop + offset="0" + stop-color="#2b4bb7" + id="stop5398" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop5400" /> + </linearGradient> + <radialGradient + id="Безымянный_градиент_28" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop5403" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop5405" /> + </radialGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" + id="radialGradient6102" + gradientUnits="userSpaceOnUse" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientTransform="matrix(0.45892372,0,0,0.46722157,76.163443,-116.10429)" /> + <radialGradient + id="Безымянный_градиент_114" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientUnits="userSpaceOnUse"> + <stop + offset="0.0007" + stop-color="#fff" + stop-opacity="0" + id="stop5411" /> + <stop + offset="0.1476" + stop-color="#fbfbfb" + stop-opacity="0.039" + id="stop5413" /> + <stop + offset="0.3723" + stop-color="#f1f1f1" + stop-opacity="0.1465" + id="stop5415" /> + <stop + offset="0.6466" + stop-color="#e0e0e0" + stop-opacity="0.3222" + id="stop5417" /> + <stop + offset="0.9576" + stop-color="#c9c9c8" + stop-opacity="0.5641" + id="stop5419" /> + <stop + offset="1" + stop-color="#c6c6c5" + stop-opacity="0.6" + id="stop5421" /> + </radialGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" + id="radialGradient6104" + gradientUnits="userSpaceOnUse" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-115.46195)" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g122" + transform="matrix(0.25,0,0,0.25,0.74999817,0)"> + <g + id="g21945" + transform="matrix(0.74354146,0,0,0.74599266,0.25646888,0.50833633)" + style="stroke-width:1.3427"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.37082;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 63.000002,2 H 174 l 61.01562,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 63.000002 c -8.734786,0 -16,-7.26494 -16,-16 V 18 c 0,-8.7350437 7.265221,-15.9891089 16,-16 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#909dd7;fill-opacity:1;stroke:none;stroke-width:1.00019;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 233.125,172 49.000002,219 v 19 c 0,7.73556 6.264682,14 14,14 H 219.125 c 7.73527,0 14,-5.26444 14,-13 z M 45.423678,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:7.00132;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 124.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);marker-end:url(#marker3727);paint-order:fill markers stroke" + d="M 200.0474,47.576425 H 162.38979 L 130.11183,79.748323 83.000007,80" + id="path3265" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke" + d="M 126.00506,47.576425 H 79.005061" + id="path3399" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1676);paint-order:fill markers stroke" + d="m 197.35757,79.748323 -40.34744,0" + id="path1672" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1956);paint-order:fill markers stroke" + d="m 202.83893,106.55824 -40.44914,0 -32.27796,26.80991 H 81.694891" + id="path1918" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1936);paint-order:fill markers stroke" + d="M 126.00506,106.55824 H 79.005061" + id="path1920" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1926);paint-order:fill markers stroke" + d="m 197.35757,133.36815 -40.34744,0" + id="path1922" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:10.7416;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 202.73723,160.17807 H 122.04234" + id="path2280" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.37082;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 171.00001,2.0184637 V 49.018464 c 0,8.735013 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" /> + <g + id="g1338" + transform="matrix(2.7891345,0,0,2.7849181,-211.44199,432.04395)" + style="stroke-width:1.36368"> + <rect + class="cls-8" + x="76.167709" + width="45.892372" + height="45.961853" + rx="10.198295" + id="rect5459" + y="-114.92042" + style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:1.36368" /> + <rect + class="cls-9" + x="76.167709" + width="45.892372" + height="45.961853" + rx="10.198295" + id="rect5461" + y="-114.92042" + style="mix-blend-mode:saturation;fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:1.36368" /> + <path + class="cls-11" + d="m 90.28844,-95.258996 5.261271,-6.562324 c 1.041359,-1.33775 1.562146,-2.33801 1.56236,-3.00079 0.0072,-0.19683 -0.05043,-0.31492 -0.116284,-0.50013 h 9.001963 c -0.97772,0.65869 -1.91471,1.40665 -2.61518,2.36379 -0.31953,0.38586 -0.79856,0.98283 -1.43707,1.79091 l -6.68005,8.456727 7.97261,11.171595 c 0.37839,0.530452 0.99382,1.289702 1.84629,2.277752 0.27249,0.278741 0.60648,0.655542 0.9134,0.894327 h -9.178473 c 0.06599,-0.241527 0.110531,-0.607742 0.115049,-0.858398 0,-0.662426 -0.449745,-1.62048 -1.349236,-2.87416 l -5.29665,-7.049478 v 7.188024 c 0,1.675177 0.396094,2.919157 1.059055,3.594012 h -8.295929 c 0.443506,-0.436851 0.640235,-1.083223 0.776122,-1.696065 0.08919,-0.628339 0.124798,-1.263357 0.106424,-1.897947 v -19.767089 c 0.01835,-0.6346 -0.01726,-1.26961 -0.106424,-1.89795 -0.135945,-0.61283 -0.332666,-1.25916 -0.776122,-1.69605 h 8.472438 c -0.662961,0.67495 -1.238395,1.76612 -1.235568,3.42903 z" + id="path5475" + style="fill:#ffffff;stroke-width:1.36368" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-11" + d="m 114.29368,-97.784292 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38433,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.424238 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738807 -7.10539,4.738807 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z" + id="path5477" + style="fill:#ffffff;stroke-width:1.36368" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + class="cls-12" + d="m 90.28844,-95.258996 5.261271,-6.562324 c 1.041359,-1.33775 1.562146,-2.33801 1.56236,-3.00079 0.0072,-0.19683 -0.05043,-0.31492 -0.116284,-0.50013 h 9.001963 c -0.97772,0.65869 -1.91471,1.4067 -2.61518,2.36384 -0.31953,0.38586 -0.79856,0.98283 -1.43707,1.79091 l -6.68005,8.456727 7.97261,11.171596 c 0.37839,0.530452 0.99382,1.289702 1.84629,2.277752 0.27249,0.27874 0.60648,0.655491 0.9134,0.894276 h -9.178473 c 0.06599,-0.241527 0.110531,-0.607689 0.115049,-0.858345 0,-0.662426 -0.449745,-1.62048 -1.349236,-2.87416 l -5.29665,-7.049529 v 7.188024 c 0,1.675176 0.396094,2.919157 1.059055,3.594012 h -8.295929 c 0.443506,-0.436851 0.640235,-1.083223 0.776122,-1.696065 0.08919,-0.628339 0.124798,-1.263357 0.106424,-1.897947 v -19.767091 c 0.01835,-0.6346 -0.01726,-1.26961 -0.106424,-1.89795 -0.135945,-0.61283 -0.332666,-1.25911 -0.776122,-1.696 h 8.472438 c -0.662961,0.67495 -1.235569,1.76612 -1.235568,3.42903 z" + id="path5479" + style="fill:url(#radialGradient6102);stroke-width:1.36368" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-12" + d="m 114.29368,-97.784292 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38434,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.424238 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738807 -7.10539,4.738807 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z" + id="path5481" + style="fill:url(#radialGradient6104);stroke-width:1.36368" + sodipodi:nodetypes="ccccccccccccccc" /> + <ellipse + style="fill:#ff6d00;fill-opacity:1;stroke-width:2.72737;stroke-linecap:round;stroke-linejoin:round" + id="path6063" + cx="111.0855" + cy="-103.54778" + rx="3.7129955" + ry="3.7186167" /> + </g> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-64.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-64.svg new file mode 100644 index 0000000000..bc7369ba95 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project-64.svg @@ -0,0 +1,427 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 64 64" + version="1.1" + sodipodi:docname="application-x-kicad-project-64.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="64" + height="64" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2136" + id="namedview30" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="44.326756" + inkscape:cy="42.338018" + inkscape:window-x="3840" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g122" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker1956" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1954" /> + </marker> + <marker + style="overflow:visible" + id="marker1936" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1934" /> + </marker> + <marker + style="overflow:visible" + id="marker1926" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1924" /> + </marker> + <marker + style="overflow:visible" + id="marker1676" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1674" /> + </marker> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <marker + style="overflow:visible" + id="marker3403" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3401" /> + </marker> + <marker + style="overflow:visible" + id="marker3269" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3267" /> + </marker> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,382.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + id="Безымянный_градиент_10" + x1="50.0093" + x2="50.0093" + y2="100" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)"> + <stop + offset="0" + stop-color="#2b4bb7" + id="stop5398" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop5400" /> + </linearGradient> + <radialGradient + id="Безымянный_градиент_28" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop5403" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop5405" /> + </radialGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" + id="radialGradient6102" + gradientUnits="userSpaceOnUse" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" /> + <radialGradient + id="Безымянный_градиент_114" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientUnits="userSpaceOnUse"> + <stop + offset="0.0007" + stop-color="#fff" + stop-opacity="0" + id="stop5411" /> + <stop + offset="0.1476" + stop-color="#fbfbfb" + stop-opacity="0.039" + id="stop5413" /> + <stop + offset="0.3723" + stop-color="#f1f1f1" + stop-opacity="0.1465" + id="stop5415" /> + <stop + offset="0.6466" + stop-color="#e0e0e0" + stop-opacity="0.3222" + id="stop5417" /> + <stop + offset="0.9576" + stop-color="#c9c9c8" + stop-opacity="0.5641" + id="stop5419" /> + <stop + offset="1" + stop-color="#c6c6c5" + stop-opacity="0.6" + id="stop5421" /> + </radialGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" + id="radialGradient6104" + gradientUnits="userSpaceOnUse" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g122" + transform="matrix(0.25,0,0,0.25,0.74999817,0)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 63.000002,2 H 174 l 61.01562,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 63.000002 c -8.734786,0 -16,-7.26494 -16,-16 V 18 c 0,-8.7350437 7.265221,-15.9891089 16,-16 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#909dd7;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 233.125,172 49.000002,219 v 19 c 0,7.73556 6.264682,14 14,14 H 219.125 c 7.73527,0 14,-5.26444 14,-13 z M 45.423678,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 124.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);marker-end:url(#marker3727);paint-order:fill markers stroke" + d="m 199.00001,56 h -50 l -17,24 H 83.000007" + id="path3265" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke" + d="M 126.00001,56 H 79.000007" + id="path3399" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1676);paint-order:fill markers stroke" + d="m 199.00001,80 h -47" + id="path1672" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1956);paint-order:fill markers stroke" + d="m 203.00001,104 h -54 l -17,24 H 83.000007" + id="path1918" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1936);paint-order:fill markers stroke" + d="M 126.00001,104 H 79.000007" + id="path1920" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1926);paint-order:fill markers stroke" + d="m 199.00001,128 h -47" + id="path1922" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 203.00001,154 h -82" + id="path2280" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 171.00001,2.0184637 V 49.018464 c 0,8.735013 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" /> + <g + id="g1338" + transform="matrix(2.7891345,0,0,2.7849181,-211.44199,432.04395)" + style="stroke-width:1.01562"> + <rect + class="cls-8" + x="76.167709" + width="45.892372" + height="45.961853" + rx="10.198295" + id="rect5459" + y="-114.92042" + style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:1.01562" /> + <rect + class="cls-9" + x="76.167709" + width="45.892372" + height="45.961853" + rx="10.198295" + id="rect5461" + y="-114.92042" + style="mix-blend-mode:saturation;fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:1.01562" /> + <path + class="cls-11" + d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38376 -2.61518,2.32533 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644875 0.9134,0.879774 h -9.178473 c 0.06599,-0.237597 0.110531,-0.597852 0.115049,-0.844429 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934763 v 7.071054 c 0,1.647917 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445402 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23867 -0.776122,-1.66845 h 8.472438 c -0.662961,0.66397 -1.238395,1.73738 -1.235568,3.37323 z" + id="path5475" + style="fill:#ffffff;stroke-width:1.01562" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-11" + d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38433,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z" + id="path5477" + style="fill:#ffffff;stroke-width:1.01562" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + class="cls-12" + d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38381 -2.61518,2.32538 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644825 0.9134,0.879724 h -9.178473 c 0.06599,-0.237597 0.110531,-0.5978 0.115049,-0.844377 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934813 v 7.071054 c 0,1.647916 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445404 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23862 -0.776122,-1.6684 h 8.472438 c -0.662961,0.66397 -1.235569,1.73738 -1.235568,3.37323 z" + id="path5479" + style="fill:url(#radialGradient6102);stroke-width:1.01562" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-12" + d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38434,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z" + id="path5481" + style="fill:url(#radialGradient6104);stroke-width:1.01562" + sodipodi:nodetypes="ccccccccccccccc" /> + <ellipse + style="fill:#ff6d00;fill-opacity:1;stroke-width:2.03125;stroke-linecap:round;stroke-linejoin:round" + id="path6063" + cx="111.0855" + cy="-103.00631" + rx="3.7129955" + ry="3.7186167" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project.svg index 7cb7e5e544..6e635a648f 100755 --- a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project.svg +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project.svg @@ -1,31 +1,72 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - viewBox="0 0 48 48" + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 256 256" version="1.1" - id="svg5496" - sodipodi:docname="icon_kicad.svg" - width="48" - height="48" - inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"> + sodipodi:docname="application-x-kicad-project.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="256" + height="256" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2136" + id="namedview30" + showgrid="true" + inkscape:zoom="1.4142136" + inkscape:cx="-20.506096" + inkscape:cy="180.31222" + inkscape:window-x="3840" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="Слой_1" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" /> + </sodipodi:namedview> <metadata - id="metadata5500"> + id="metadata43"> <rdf:RDF> <cc:Work rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>app_icon</dc:title> - <cc:license - rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> @@ -44,66 +85,374 @@ </cc:License> </rdf:RDF> </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1718" - inkscape:window-height="1100" - id="namedview5498" - showgrid="true" - inkscape:zoom="16" - inkscape:cx="21.65412" - inkscape:cy="20.498278" - inkscape:window-x="4301" - inkscape:window-y="97" - inkscape:window-maximized="0" - inkscape:current-layer="g5494"> - <inkscape:grid - type="xygrid" - id="grid6065" - spacingx="0.5" - spacingy="0.5" - empspacing="2" /> - </sodipodi:namedview> <defs - id="defs5435"> + id="defs159429"> + <marker + style="overflow:visible" + id="marker2284" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2282" /> + </marker> + <marker + style="overflow:visible" + id="marker1956" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1954" /> + </marker> + <marker + style="overflow:visible" + id="marker1946" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1944" /> + </marker> + <marker + style="overflow:visible" + id="marker1936" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1934" /> + </marker> + <marker + style="overflow:visible" + id="marker1926" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1924" /> + </marker> + <marker + style="overflow:visible" + id="marker1676" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1674" /> + </marker> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <marker + style="overflow:visible" + id="marker3403" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3401" /> + </marker> + <marker + style="overflow:visible" + id="marker3269" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true" + inkscape:collect="always"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#909dd7;fill-opacity:1;fill-rule:evenodd;stroke:#909dd7;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3267" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> <style - id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style> + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,382.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> <clipPath - id="clip-path"> + clipPathUnits="userSpaceOnUse" + id="clipPath1720"> <rect - class="cls-1" - y="123.3231" - width="94" - height="94" - rx="20.888901" - id="rect5392" - x="0" /> + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> </clipPath> <clipPath - id="clip-path-2"> + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> <rect - class="cls-1" - x="119.6252" - width="100" - height="100" - rx="22.2222" - id="rect5395" - y="0" /> + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-53" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> <linearGradient id="Безымянный_градиент_10" x1="50.0093" x2="50.0093" y2="100" gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.44546096,2.6506114)"> + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)"> <stop offset="0" stop-color="#2b4bb7" @@ -118,7 +467,7 @@ cx="50.0093" cy="23.271601" r="28.023199" - gradientTransform="matrix(0,-1.0083645,1.795196,0,8.128387,76.544472)" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" gradientUnits="userSpaceOnUse"> <stop offset="0" @@ -129,17 +478,15 @@ stop-color="#2b2fb7" id="stop5405" /> </radialGradient> - <clipPath - id="clip-path-3"> - <rect - class="cls-1" - x="0.0093" - width="100" - height="100" - rx="22.2222" - id="rect5408" - y="0" /> - </clipPath> + <radialGradient + inkscape:collect="always" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" + id="radialGradient6102" + gradientUnits="userSpaceOnUse" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" /> <radialGradient id="Безымянный_градиент_114" cx="47.3605" @@ -177,151 +524,163 @@ stop-opacity="0.6" id="stop5421" /> </radialGradient> - <linearGradient - id="Безымянный_градиент_104" - x1="76.367302" - y1="17.9571" - x2="76.367302" - y2="33.4328" - gradientUnits="userSpaceOnUse"> - <stop - offset="0" - stop-color="#ff6d00" - id="stop5424" /> - <stop - offset="0.3523" - stop-color="#ff8a33" - id="stop5426" /> - <stop - offset="0.8443" - stop-color="#ff5c00" - id="stop5428" /> - <stop - offset="0.9688" - stop-color="#ff4800" - id="stop5430" /> - <stop - offset="1" - stop-color="#ff5c00" - id="stop5432" /> - </linearGradient> <radialGradient inkscape:collect="always" - xlink:href="#Безымянный_градиент_114" - id="radialGradient6102" - gradientUnits="userSpaceOnUse" - cx="47.3605" - cy="53.197102" - r="38.302299" - gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.44546096,2.6506114)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#Безымянный_градиент_114" + xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114" id="radialGradient6104" gradientUnits="userSpaceOnUse" cx="47.3605" cy="53.197102" r="38.302299" - gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.44546096,2.6506114)" /> + gradientTransform="matrix(0.45892372,0,0,0.45961851,76.163443,-114.92042)" /> + <radialGradient + id="radialGradient3241" + cx="47.3605" + cy="53.197102" + r="38.302299" + gradientUnits="userSpaceOnUse"> + <stop + offset="0.0007" + stop-color="#fff" + stop-opacity="0" + id="stop3229" /> + <stop + offset="0.1476" + stop-color="#fbfbfb" + stop-opacity="0.039" + id="stop3231" /> + <stop + offset="0.3723" + stop-color="#f1f1f1" + stop-opacity="0.1465" + id="stop3233" /> + <stop + offset="0.6466" + stop-color="#e0e0e0" + stop-opacity="0.3222" + id="stop3235" /> + <stop + offset="0.9576" + stop-color="#c9c9c8" + stop-opacity="0.5641" + id="stop3237" /> + <stop + offset="1" + stop-color="#c6c6c5" + stop-opacity="0.6" + id="stop3239" /> + </radialGradient> </defs> <title - id="title5437">app_icon</title> + id="title159431">ps_diff_pair_tune_phase</title> <g - class="cls-2" - id="g5494" - transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)" - style="stroke-width:2.19392"> - <rect - class="cls-8" - x="-0.43609735" - width="100.68402" - height="100.83646" - rx="22.374205" - id="rect5459" - y="2.6506116" - style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.19392" /> - <rect - class="cls-9" - x="-0.43609735" - width="100.68402" - height="100.83646" - rx="22.374205" - id="rect5461" - y="2.6506116" - style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.19392" /> + id="g122"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 63.000002,2 H 174 l 63,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 63.000002 c -8.734786,0 -16,-7.26494 -16,-16 V 18 c 0,-8.7350437 7.265221,-15.9891089 16,-16 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#909dd7;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 235,172 49.000002,219 v 19 c 0,7.73556 6.264682,14 14,14 H 221 c 7.73527,0 14.04264,-5.26456 14,-13 z M 45.423678,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 124.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3269);marker-end:url(#marker3727);paint-order:fill markers stroke" + d="M 199,59 H 149 L 132,83 H 83.000002" + id="path3265" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3403);paint-order:fill markers stroke" + d="M 126,59 H 79.000002" + id="path3399" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1676);paint-order:fill markers stroke" + d="M 199,83 H 152" + id="path1672" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1956);paint-order:fill markers stroke" + d="m 203,107 h -54 l -17,24 H 83.000002" + id="path1918" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1936);paint-order:fill markers stroke" + d="M 126,107 H 79.000002" + id="path1920" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1926);paint-order:fill markers stroke" + d="M 199,131 H 152" + id="path1922" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#909dd7;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 203,157 H 121" + id="path2280" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 173,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" /> <g - class="cls-3" - id="g5469" - style="stroke-width:2.17737" - transform="matrix(1.0068401,0,0,1.0083645,-0.44546094,2.6506114)"> - <g - class="cls-10" - clip-path="url(#clip-path-3)" - id="g5467" - style="stroke-width:2.17737"> - <g - class="cls-5" - id="g5465" - style="stroke-width:2.17737"> - <image - width="718" - height="718" - transform="matrix(0.24,0,0,0.24,-36.1507,-36.0812)" - xlink:href="data:image/png;base64,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" - id="image5463" - style="stroke-width:2.17737" /> - </g> - </g> + id="g1338" + transform="matrix(2.8327148,0,0,2.8284325,-214.7614,437.04464)"> + <rect + class="cls-8" + x="76.167709" + width="45.892372" + height="45.961853" + rx="10.198295" + id="rect5459" + y="-114.92042" + style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:1" /> + <rect + class="cls-9" + x="76.167709" + width="45.892372" + height="45.961853" + rx="10.198295" + id="rect5461" + y="-114.92042" + style="mix-blend-mode:saturation;fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:1" /> + <path + class="cls-11" + d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38376 -2.61518,2.32533 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644875 0.9134,0.879774 h -9.178473 c 0.06599,-0.237597 0.110531,-0.597852 0.115049,-0.844429 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934763 v 7.071054 c 0,1.647917 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445402 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23867 -0.776122,-1.66845 h 8.472438 c -0.662961,0.66397 -1.238395,1.73738 -1.235568,3.37323 z" + id="path5475" + style="fill:#ffffff;stroke-width:1" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-11" + d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38433,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z" + id="path5477" + style="fill:#ffffff;stroke-width:1" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + class="cls-12" + d="m 90.28844,-94.414358 5.261271,-6.455522 c 1.041359,-1.31598 1.562146,-2.29996 1.56236,-2.95195 0.0072,-0.19363 -0.05043,-0.3098 -0.116284,-0.492 h 9.001963 c -0.97772,0.64798 -1.91471,1.38381 -2.61518,2.32538 -0.31953,0.37958 -0.79856,0.96683 -1.43707,1.76176 l -6.68005,8.319098 7.97261,10.989801 c 0.37839,0.52182 0.99382,1.268715 1.84629,2.240686 0.27249,0.274205 0.60648,0.644825 0.9134,0.879724 h -9.178473 c 0.06599,-0.237597 0.110531,-0.5978 0.115049,-0.844377 0,-0.651647 -0.449745,-1.59411 -1.349236,-2.827389 l -5.29665,-6.934813 v 7.071054 c 0,1.647916 0.396094,2.871654 1.059055,3.535527 h -8.295929 c 0.443506,-0.429742 0.640235,-1.065596 0.776122,-1.668465 0.08919,-0.618114 0.124798,-1.242799 0.106424,-1.867062 v -19.445404 c 0.01835,-0.62427 -0.01726,-1.24895 -0.106424,-1.86707 -0.135945,-0.60285 -0.332666,-1.23862 -0.776122,-1.6684 h 8.472438 c -0.662961,0.66397 -1.235569,1.73738 -1.235568,3.37323 z" + id="path5479" + style="fill:url(#radialGradient6102);stroke-width:1" + sodipodi:nodetypes="cccccccccccccccsccccccccsc" /> + <path + class="cls-12" + d="m 114.29368,-97.24278 3.2e-4,16.263425 c -0.017,0.558179 0.007,1.116856 0.0708,1.671587 0.10207,0.548213 0.42718,1.107094 0.81175,1.510387 h -7.94291 c 0.38434,-0.403462 0.53257,-0.962268 0.63491,-1.510387 0.063,-0.554822 0.0867,-1.113416 0.0708,-1.671587 v -13.258227 c 0.0165,-0.552196 -0.007,-1.10486 -0.0708,-1.653616 -0.10352,-0.538879 -0.26287,-0.949007 -0.63523,-1.351582 z m -3.08361,-9.42422 c 1.95886,0.006 3.54537,1.5948 3.55124,3.55662 -0.003,4.738789 -7.10539,4.738789 -7.10221,0 -0.0194,-1.97215 1.5818,-3.57589 3.55097,-3.55662 z" + id="path5481" + style="fill:url(#radialGradient6104);stroke-width:1" + sodipodi:nodetypes="ccccccccccccccc" /> + <ellipse + style="fill:#ff6d00;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round" + id="path6063" + cx="111.0855" + cy="-103.00631" + rx="3.7129955" + ry="3.7186167" /> </g> - <g - class="cls-7" - id="g5473" - style="stroke-width:2.18767" - transform="matrix(1.0057237,0,0,1,-0.48582001,2.6345743)"> - <image - width="597" - height="566" - transform="matrix(0.24,0,0,0.24,-21.6548,-17.6012)" - xlink:href="data:image/png;base64,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" - id="image5471" - style="stroke-width:2.18767" /> - </g> - <path - class="cls-11" - d="M 30.906233,47.638291 42.086387,33.476316 q 3.426981,-4.330725 3.427686,-6.476323 A 3.300422,3.305419 0 0 0 45.31935,25.751537 h 19.516187 a 22.254188,22.287881 0 0 0 -5.564503,5.270621 Q 58.21949,32.27132 56.118215,34.88732 L 41.46275,53.138718 58.95398,77.249421 q 1.24526,1.717244 4.050619,4.915877 a 18.788845,18.817293 0 0 0 1.908969,1.677314 H 44.891141 a 6.3982678,6.4079551 0 0 0 0.232984,-1.59977 q 0,-2.144489 -2.960111,-6.203056 L 30.906233,60.669084 v 15.565821 q 0,5.423085 2.181721,7.607808 H 14.77907 a 6.9549497,6.9654798 0 0 0 1.948235,-3.472203 23.711085,23.746985 0 0 0 0.233486,-4.096178 V 33.320321 A 23.722061,23.757976 0 0 0 16.727305,29.224143 6.9572655,6.967799 0 0 0 14.77907,25.75194 h 18.308884 q -2.181721,2.185026 -2.181721,7.568381 z" - id="path5475" - style="stroke-width:2.19392" /> - <path - class="cls-11" - d="m 83.222955,41.16207 v 35.814285 a 25.157009,25.195098 0 0 0 0.155357,3.667322 6.2958722,6.3054043 0 0 0 1.636115,3.199036 H 67.874383 a 6.3068468,6.3163955 0 0 0 1.636115,-3.199036 25.895022,25.934228 0 0 0 0.155355,-3.667322 V 47.950279 A 24.950506,24.988281 0 0 0 69.510498,44.322385 6.4313929,6.4411302 0 0 0 67.913045,41.16207 Z M 76.443901,20.757914 a 7.8145899,7.8264215 0 0 1 7.791131,7.802927 7.7908285,7.8026241 0 0 1 -15.581657,0 7.7155168,7.7271984 0 0 1 7.790526,-7.802927 z" - id="path5477" - style="stroke-width:2.19392" /> - <path - class="cls-12" - d="M 30.906233,47.638291 42.086387,33.476316 q 3.426981,-4.330725 3.427686,-6.476323 A 3.300422,3.305419 0 0 0 45.31935,25.751537 h 19.516187 a 22.254188,22.287881 0 0 0 -5.564503,5.270621 Q 58.21949,32.27132 56.118215,34.88732 L 41.46275,53.138718 58.95398,77.249421 q 1.24526,1.717244 4.050619,4.915877 a 18.788845,18.817293 0 0 0 1.908969,1.677314 H 44.891141 a 6.3982678,6.4079551 0 0 0 0.232984,-1.59977 q 0,-2.144489 -2.960111,-6.203056 L 30.906233,60.669084 v 15.565821 q 0,5.423085 2.181721,7.607808 H 14.77907 a 6.9549497,6.9654798 0 0 0 1.948235,-3.472203 23.711085,23.746985 0 0 0 0.233486,-4.096178 V 33.320321 A 23.722061,23.757976 0 0 0 16.727305,29.224143 6.9572655,6.967799 0 0 0 14.77907,25.75194 h 18.308884 q -2.181721,2.185026 -2.181721,7.568381 z" - id="path5479" - style="fill:url(#radialGradient6102);stroke-width:2.19392" /> - <path - class="cls-12" - d="m 83.222955,41.16207 v 35.814285 a 25.157009,25.195098 0 0 0 0.155357,3.667322 6.2958722,6.3054043 0 0 0 1.636115,3.199036 H 67.874383 a 6.3068468,6.3163955 0 0 0 1.636115,-3.199036 25.895022,25.934228 0 0 0 0.155355,-3.667322 V 47.950279 A 24.950506,24.988281 0 0 0 69.510498,44.322385 6.4313929,6.4411302 0 0 0 67.913045,41.16207 Z M 76.443901,20.757914 a 7.8145899,7.8264215 0 0 1 7.791131,7.802927 7.7908285,7.8026241 0 0 1 -15.581657,0 7.7155168,7.7271984 0 0 1 7.790526,-7.802927 z" - id="path5481" - style="fill:url(#radialGradient6104);stroke-width:2.19392" /> - <g - class="cls-15" - id="g5489" - style="stroke-width:2.18767" - transform="matrix(1.0057237,0,0,1,-0.48582001,2.6345743)" /> - <path - class="cls-16" - d="m 16.962,33.455544 c -0.08487,-1.300791 -0.211437,-2.599766 -0.329941,-3.890675 a 4.3343462,4.3409085 0 0 0 -0.443514,-1.815056 15.481476,15.504916 0 0 0 -1.0157,-1.625786 l -0.243052,-0.342844 0.421766,-0.01009 q 4.432614,-0.110921 8.866738,-0.119492 c 1.47774,-0.02016 2.956183,0.009 4.434325,0.01431 1.478142,0.002 2.956989,0.0598 4.435332,0.08702 -1.477135,0.06746 -2.953867,0.165472 -4.431305,0.207824 -1.477437,0.04567 -2.954572,0.114751 -4.432311,0.135121 Q 19.791623,26.205697 15.3576,26.2181 l 0.178614,-0.352928 a 12.165851,12.18427 0 0 1 1.010867,1.708977 3.0507257,3.0553446 0 0 1 0.306684,0.980534 c 0.0447,0.333566 0.06393,0.65947 0.08296,0.986987 0.07874,1.305429 0.04189,2.610454 0.02527,3.913867 z" - id="path5491" - style="stroke-width:2.19392" /> - <ellipse - style="fill:#ff6d00;fill-opacity:1;stroke-width:4.38784;stroke-linecap:round;stroke-linejoin:round" - id="path6063" - cx="76.170616" - cy="28.789175" - rx="8.1460009" - ry="8.1583338" /> </g> </svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-16.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-16.svg new file mode 100644 index 0000000000..ae3cc6c1b1 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-16.svg @@ -0,0 +1,460 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 16 16" + version="1.1" + sodipodi:docname="application-x-kicad-schematic-16.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="16" + height="16" + inkscape:export-filename="../../16x16/mimetypes/application-x-kicad-schematic.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="90.509668" + inkscape:cx="11.67831" + inkscape:cy="9.8387279" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g37121" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8441679,0,0,1.8323475,186.88651,139.96907)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-53" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5976"> + <stop + style="stop-color:#d0c5ac;stop-opacity:1;" + offset="0" + id="stop5972" /> + <stop + style="stop-color:#d0c5ac;stop-opacity:0;" + offset="1" + id="stop5974" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5976" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6262182,0,0,3.7464582,361.10388,599.69522)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g937" + transform="scale(0.25)"> + <g + id="g37121" + transform="matrix(0.49021142,0,0,0.48387096,-0.8148316,1.2234877)" + style="stroke-width:2.05326"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.21303;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 29.983804,2 80.709731,1.6047921 111.90354,32.598662 v 85.602118 c 0,4.29735 -3.59736,7.35639 -7.92224,7.37949 l -73.997496,0.39523 c -4.324881,0.0231 -7.922238,-3.5741 -7.922238,-7.87146 V 9.871459 c 0,-4.2973461 3.597297,-7.873394 7.922238,-7.871459 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:1.52948;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 107.59432,85.634252 21.902797,108.75666 v 6.24198 c 0,3.80563 3.101893,6.88753 6.931958,6.88753 h 71.827605 c 3.83004,0 6.93196,-2.58993 6.93196,-6.39556 z M 20.132016,115.18092 v 0.18252 c 0,1.11504 0.243616,2.16788 0.666351,3.1243 -0.424637,-1.01996 -0.666351,-2.13457 -0.666351,-3.30682 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:8.21303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 38,60 V 18.25528 h 50.296273 l 7.202995,8.149513 0,41.333334 -20.039865,-0.237172" + id="path880" + sodipodi:nodetypes="cccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:10.7064;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 59.047415,22.454535 h 29.276158 c 0.540638,0 0.975881,0.432433 0.975881,0.969605 v 13.574652 c 0,0.537172 -0.435243,0.969604 -0.975881,0.969604 H 59.047415 c -0.540638,0 -0.975861,-0.432432 -0.975861,-0.969604 V 23.42414 c 0,-0.537172 0.435223,-0.969605 0.975861,-0.969605 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.21303;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 79.179778,1.6047921 0,24.8000009 c 0,4.365542 3.83462,8.266666 8.159745,8.266666 l 24.479237,0 z" + sodipodi:nodetypes="csscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:8.21303;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 95.499266,42.938126 62.890642,42.922546 62.829932,63.00575" + id="path3265" + sodipodi:nodetypes="ccc" /> + <g + id="g34146" + transform="matrix(0.49513984,0,0,0.49196619,6.1570773,-1.6642963)" + style="stroke-width:4.16019"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.37797;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 35.625008,111.64067 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.625008 C 22.536754,238 12,227.71071 12,214.5944 v -79.27809 c 0,-11.67564 11.848079,-23.67564 23.625008,-23.67564 z" + id="path1600" + sodipodi:nodetypes="sssssssss" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 114.27975,174.67818 H 98.279754" + id="path1205" + sodipodi:nodetypes="cc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 114.27975,208.28482 H 98.279753" + id="path1207" + sodipodi:nodetypes="cc" /> + <path + id="path1608" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.16019;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 106.27975,112.50588 v 25.20498 h 16.47968 v -20.69128 c -4.95653,-2.16325 -10.5184,-3.71639 -16.47968,-4.5137 z" + sodipodi:nodetypes="ccccc" /> + <path + id="path1614" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 59.745248,132.66987 v 16.80333 h 3.889188 68.324774 1.94459 c -0.1709,-5.95509 -0.82533,-11.61446 -1.88194,-16.80333 H 63.634436 Z" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:16.6406;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 106.27974,141.07153 -32.959342,0" + id="path1209" + sodipodi:nodetypes="cc" /> + <circle + style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path1587" + cx="64.588943" + cy="132.09024" + r="7.9999995" /> + <path + style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 65.08056,115.86654 v 28 l -16.479677,22.40997 v 25.20499 l 16.479677,25.20498 v 16.80333" + id="path1589" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 20.121206,174.67818 h 24" + id="path1593" + sodipodi:nodetypes="cc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:49.9221;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 89.800079,183.07985 H 40.361047 v 50.40996 z" + id="path1211" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:16.6407;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 38.087425,107.69832 h 70.804745 c 12.24732,0 22.1071,10.39172 22.1071,23.29983 v 87.84068 c 0,12.90811 -9.85978,23.03408 -22.1071,23.03408 H 38.087425 c -12.247329,0 -22.107092,-10.12597 -22.107092,-23.03408 v -87.84068 c 0,-12.90811 9.859763,-23.29983 22.107092,-23.29983 z" + id="path1630" + sodipodi:nodetypes="sssssssss" /> + </g> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-24.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-24.svg new file mode 100644 index 0000000000..46f24d1f0c --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-24.svg @@ -0,0 +1,466 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 24 24" + version="1.1" + sodipodi:docname="application-x-kicad-schematic-24.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="24" + height="24" + inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-schematic.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2136" + id="namedview30" + showgrid="true" + inkscape:zoom="90.509668" + inkscape:cx="14.915534" + inkscape:cy="19.633262" + inkscape:window-x="3840" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g34146" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3967023,0,0,1.3594857,139.70236,104.36431)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-53" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5976"> + <stop + style="stop-color:#d0c5ac;stop-opacity:1;" + offset="0" + id="stop5972" /> + <stop + style="stop-color:#d0c5ac;stop-opacity:0;" + offset="1" + id="stop5974" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5976" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6262182,0,0,3.7464582,356.53575,599.69522)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g937" + transform="scale(0.25)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 19.999999,2 42.374998,0.018191 23.624999,22.995487 v 63.511347 c 0,3.188368 -2.724454,5.476113 -6.000004,5.475119 l -59.999993,-0.0182 c -3.275544,-9.79e-4 -6,-2.651757 -6,-5.84012 V 7.8401242 c 0,-3.1883588 2.724458,-5.8361488 6,-5.8401242 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:0.744907;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 83.985197,64.051174 15.937411,81.206539 v 6.935147 c 0,2.823538 2.302885,5.110104 5.146374,5.110104 H 78.83882 c 2.843473,0 5.146377,-1.92156 5.146377,-4.745099 z M 14.622761,88.276926 v 0.135416 c 0,0.827292 0.180863,1.608427 0.494707,2.318037 -0.315256,-0.756745 -0.494707,-1.583719 -0.494707,-2.453453 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:4;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 30.000007,44.273226 -3.54e-4,-26.293771 44.000348,0.04109 V 57.7853 H 57.976208" + id="path880" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21436;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 43.514047,17.175825 h 21.734994 c 0.401373,0 0.724503,0.320838 0.724503,0.719386 v 10.071531 c 0,0.398548 -0.32313,0.719385 -0.724503,0.719385 H 43.514047 c -0.401376,0 -0.724491,-0.320837 -0.724491,-0.719385 V 17.895211 c 0,-0.398548 0.323115,-0.719386 0.724491,-0.719386 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 62.000004,1.9997192 V 19.904686 c 0,3.327663 2.724351,6.100131 6.000069,6.095309 h 18.000216 z" + sodipodi:nodetypes="csscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:3.99999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 71.999998,38.212679 H 47.640625 v 7.300166" + id="path3265" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 71.81232,50.025198 H 49.008786" + id="path1203" + sodipodi:nodetypes="cc" /> + <g + id="g34146" + transform="matrix(0.36759811,0,0,0.36500774,5.8535092,1.2698405)" + style="stroke-width:2.73001"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.4978;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 31.056874,112 h 78.749996 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 v 78.91876 c 0,13.11631 -10.53677,23.4056 -23.62501,23.4056 H 31.056874 C 17.96862,238 7.4318655,227.71071 7.4318655,214.5944 V 135.67564 C 7.4318655,124 19.279945,112 31.056874,112 Z" + id="path1600" + sodipodi:nodetypes="sssssssss" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 109.213,177.33914 H 87.450098" + id="path1205" + sodipodi:nodetypes="cc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 109.213,199.25649 H 87.450098" + id="path1207" + sodipodi:nodetypes="cc" /> + <path + id="path1608" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.73003;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 108.32472,112.42969 v 16.08829 h 10.70275 v -13.20721 c -3.21902,-1.38079 -6.83119,-2.37217 -10.70275,-2.88108 z" + sodipodi:nodetypes="ccccc" /> + <path + id="path1614" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.73003;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 56.160382,128.23161 v 10.72552 h 4 70.271488 2 c -0.17577,-3.80112 -0.84884,-7.41348 -1.93555,-10.72552 H 60.160382 Z" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:10.92;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 102.97335,133.59437 -20.963976,2e-4" + id="path1209" + sodipodi:nodetypes="cc" /> + <ellipse + style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path1587" + cx="65.11673" + cy="133.97975" + rx="16.322172" + ry="16.438007" /> + <path + style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 65.687201,114.61821 v 26.81381 l -32.281708,24.11974 v 28 l 32.281708,24.1325 v 12" + id="path1589" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 33.042854,155.4218 v 49.31402" + id="path1591" + sodipodi:nodetypes="cc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 11.279957,177.33914 H 33.042854" + id="path1593" + sodipodi:nodetypes="cc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:32.76;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 76.56865,193.6404 H 38.366901 v 38.49211 z" + id="path1211" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:10.92;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 33.734998,111.56778 h 74.785852 c 12.42941,0 22.43577,10.10545 22.43577,22.65797 v 75.52656 c 0,12.55252 -10.00636,22.39953 -22.43577,22.39953 H 33.734998 c -12.429414,0 -22.435766,-9.84701 -22.435766,-22.39953 v -75.52656 c 0,-12.55252 10.006352,-22.65797 22.435766,-22.65797 z" + id="path1630" + sodipodi:nodetypes="sssssssss" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-32.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-32.svg new file mode 100644 index 0000000000..5938bdb2db --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-32.svg @@ -0,0 +1,465 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 32 32" + version="1.1" + sodipodi:docname="application-x-kicad-schematic-32.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="32" + height="32" + inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-schematic.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="32" + inkscape:cx="32.90625" + inkscape:cy="16.671875" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g937" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8441679,0,0,1.8323475,186.88651,139.96907)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-53" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5976"> + <stop + style="stop-color:#d0c5ac;stop-opacity:1;" + offset="0" + id="stop5972" /> + <stop + style="stop-color:#d0c5ac;stop-opacity:0;" + offset="1" + id="stop5974" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5976" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6262182,0,0,3.7464582,361.10388,599.69522)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g937" + transform="scale(0.25)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 29.983804,2 54.801752,0.024518 31.193814,30.99387 v 85.602122 c 0,4.29735 -3.5973,7.38085 -7.92224,7.37949 l -78.073326,-0.0245 c -4.324941,-0.001 -7.922238,-3.5741 -7.922238,-7.87146 V 9.871459 c 0,-4.2973461 3.597297,-7.873394 7.922238,-7.871459 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:0.744906;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 114.98909,85.634252 21.902797,108.75666 v 9.34736 c 0,3.80563 3.101893,6.88753 6.931958,6.88753 h 79.222375 c 3.83004,0 6.93196,-2.58993 6.93196,-6.39556 z M 20.132016,118.2863 v 0.18252 c 0,1.11504 0.243616,2.16788 0.666351,3.1243 -0.424637,-1.01996 -0.666351,-2.13457 -0.666351,-3.30682 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:4;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 38,60 V 22 H 98 V 78 L 75.525996,77.762828" + id="path880" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21436;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 59.047415,22.454535 h 29.276158 c 0.540638,0 0.975881,0.432433 0.975881,0.969605 v 13.574652 c 0,0.537172 -0.435243,0.969604 -0.975881,0.969604 H 59.047415 c -0.540638,0 -0.975861,-0.432432 -0.975861,-0.969604 V 23.42414 c 0,-0.537172 0.435223,-0.969605 0.975861,-0.969605 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 84.290417,2 v 23.489433 c 0,4.365543 3.597111,8.002729 7.922232,7.996403 h 23.766711 z" + sodipodi:nodetypes="csscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 96,54 H 66 l -0.05492,9.005751" + id="path3265" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 97.35772,66 H 66.642279" + id="path1203" + sodipodi:nodetypes="cc" /> + <g + id="g34146" + transform="matrix(0.49513984,0,0,0.49196619,6.0583219,1.0160676)" + style="stroke-width:2.02614"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.08033;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 35.625008,111.64067 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.625008 C 22.536754,238 12,227.71071 12,214.5944 v -79.27809 c 0,-11.67564 11.848079,-23.67564 23.625008,-23.67564 z" + id="path1600" + sodipodi:nodetypes="sssssssss" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 104.82452,180.87408 H 88.824524" + id="path1205" + sodipodi:nodetypes="cc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 104.82452,197.13536 H 88.824522" + id="path1207" + sodipodi:nodetypes="cc" /> + <path + id="path1608" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.02614;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 117,112.42969 V 130 h 8 v -14.42383 c -2.40613,-1.50799 -5.10612,-2.59069 -8,-3.14648 z" + sodipodi:nodetypes="ccccc" /> + <path + id="path1614" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.02614;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 58.906404,128.15556 v 8 h 4 70.271486 2 c -0.17577,-2.8352 -0.84884,-5.5296 -1.93555,-8 H 62.906404 Z" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:24.3136;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 108.94231,132.09024 H 84.706733" + id="path1209" + sodipodi:nodetypes="cc" /> + <circle + style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path1587" + cx="64.588943" + cy="132.09024" + r="7.9999995" /> + <path + style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 64,116 v 28 l -23.747546,24 v 28 L 64,220 v 12" + id="path1589" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 40.274841,148.35152 v 65.04512" + id="path1591" + sodipodi:nodetypes="cc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 16.157052,180.87408 h 24" + id="path1593" + sodipodi:nodetypes="cc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:24.3136;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 68.549681,201.20067 H 44.314103 v 24.39192 z" + id="path1211" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:8.10454;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 39.230339,107.69832 h 74.465281 c 12.88049,0 23.25001,10.39172 23.25001,23.29983 v 83.75633 c 0,12.90811 -10.36952,23.03408 -23.25001,23.03408 H 39.230339 c -12.880503,0 -23.250006,-10.12597 -23.250006,-23.03408 v -83.75633 c 0,-12.90811 10.369503,-23.29983 23.250006,-23.29983 z" + id="path1630" + sodipodi:nodetypes="sssssssss" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-48.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-48.svg new file mode 100644 index 0000000000..22419d39cd --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-48.svg @@ -0,0 +1,466 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 48 48" + version="1.1" + sodipodi:docname="application-x-kicad-schematic-48.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="48" + height="48" + inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-schematic.png" + inkscape:export-xdpi="48" + inkscape:export-ydpi="48" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2136" + id="namedview30" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="56.612737" + inkscape:cy="32.438524" + inkscape:window-x="3840" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g937" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.7934046,0,0,2.7780752,273.40472,211.17892)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-53" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5976"> + <stop + style="stop-color:#d0c5ac;stop-opacity:1;" + offset="0" + id="stop5972" /> + <stop + style="stop-color:#d0c5ac;stop-opacity:0;" + offset="1" + id="stop5974" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5976" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6262182,0,0,3.7464582,356.53575,599.69522)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g937" + transform="scale(0.25)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 34,2 118.75,2.037173 166,49.027878 V 178.81173 c 0,6.51535 -5.44891,11.1903 -12.00001,11.18827 L 34,189.9628 C 27.44891,189.9608 22,184.544 22,178.02866 V 13.934148 C 22,7.4188163 27.448916,2.0081235 34,2 Z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 164.05956,128.80032 23.534882,163.85688 v 14.1718 c 0,5.76983 4.682673,10.44237 10.464604,10.44237 H 153.59495 c 5.7819,0 10.46461,-3.92666 10.46461,-9.69649 z M 20.861682,178.30504 v 0.27672 c 0,1.69055 0.367765,3.28678 1.005933,4.73685 -0.641039,-1.54639 -1.005933,-3.23629 -1.005933,-5.01357 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:7.99998;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 48.000738,87.483708 48.000001,32 139.99997,32.08671 v 83.90946 h -33.50402" + id="path880" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 79.609041,33.011715 h 44.195799 c 0.81615,0 1.4732,0.655624 1.4732,1.470046 v 20.580923 c 0,0.814422 -0.65705,1.470046 -1.4732,1.470046 H 79.609041 c -0.816157,0 -1.473177,-0.655624 -1.473177,-1.470046 V 34.481761 c 0,-0.814422 0.65702,-1.470046 1.473177,-1.470046 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 118,1.9997179 V 37.809441 c 0,6.655285 5.44867,12.200189 12.00007,12.190544 h 36.00022 z" + sodipodi:nodetypes="csscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:7.99998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 135.12869,76 H 88 v 14.917707" + id="path3265" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:7.99998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 137.15057,95.984358 H 90.782008" + id="path1203" + sodipodi:nodetypes="cc" /> + <g + id="g34146" + transform="matrix(0.74747167,0,0,0.74588422,3.03034,0.50823155)" + style="stroke-width:1.33927"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.69708;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 31.056874,112 h 78.749996 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 v 78.91876 c 0,13.11631 -10.53677,23.4056 -23.62501,23.4056 H 31.056874 C 17.96862,238 7.4318655,227.71071 7.4318655,214.5944 V 135.67564 C 7.4318655,124 19.279945,112 31.056874,112 Z" + id="path1600" + sodipodi:nodetypes="sssssssss" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:10.7141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 102.92487,181.64683 H 86.924894" + id="path1205" + sodipodi:nodetypes="cc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:10.7141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 102.9591,197.74083 H 86.93348" + id="path1207" + sodipodi:nodetypes="cc" /> + <path + id="path1608" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33928;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 108.32472,112.42969 v 16.08829 h 10.70275 v -13.20721 c -3.21902,-1.38079 -6.83119,-2.37217 -10.70275,-2.88108 z" + sodipodi:nodetypes="ccccc" /> + <path + id="path1614" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33928;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 56.160382,122.66216 v 10.72552 h 4 70.271488 2 c -0.17577,-3.80112 -0.84884,-7.41348 -1.93555,-10.72552 H 60.160382 Z" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:21.4283;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 102.97335,128.02492 H 76.216481" + id="path1209" + sodipodi:nodetypes="cc" /> + <ellipse + style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path1587" + cx="60.162361" + cy="128.02492" + rx="10.702745" + ry="10.725525" /> + <path + style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:10.7141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 60.162359,117.2994 v 26.81381 L 33.405493,168 v 28 l 25.966517,24 v 12" + id="path1589" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:10.7141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 33.378133,154.83873 0.02736,53.62763" + id="path1591" + sodipodi:nodetypes="cc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:10.7141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 14.675687,181.65255 h 16.05412" + id="path1593" + sodipodi:nodetypes="cc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:16.0712;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 70.86511,203.10359 H 44.108242 v 26.81381 z" + id="path1211" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:5.35706;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 32.403894,114.61516 h 76.922426 c 12.7845,0 23.07674,10.33718 23.07674,23.17755 v 77.2585 c 0,12.84037 -10.29224,22.91319 -23.07674,22.91319 H 32.403894 c -12.784512,0 -23.0767375,-10.07282 -23.0767375,-22.91319 v -77.2585 c 0,-12.84037 10.2922255,-23.17755 23.0767375,-23.17755 z" + id="path1630" + sodipodi:nodetypes="sssssssss" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-64.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-64.svg new file mode 100644 index 0000000000..78b987aea7 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic-64.svg @@ -0,0 +1,463 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 64 64" + version="1.1" + sodipodi:docname="application-x-kicad-schematic-64.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="64" + height="64" + inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-schematic.png" + inkscape:export-xdpi="48" + inkscape:export-ydpi="48" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="16" + inkscape:cx="-8" + inkscape:cy="31.53125" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g937" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-53" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5976"> + <stop + style="stop-color:#d0c5ac;stop-opacity:1;" + offset="0" + id="stop5972" /> + <stop + style="stop-color:#d0c5ac;stop-opacity:0;" + offset="1" + id="stop5974" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5976" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6262182,0,0,3.7464582,361.10388,599.69522)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g937" + transform="scale(0.25)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 46,2 113,0.049837 63,62.9999999 V 239.04984 c 0,8.73506 -7.26521,15.00272 -16,15 L 46,254 c -8.734786,-0.003 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 220,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 160 c 7.73527,0 14,-5.26444 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:8;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 64.001009,117.98299 64.000048,44.003817 183.99999,44.119422 V 156.00007 H 140.2991" + id="path880" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 158,2 v 47.746031 c 0,8.873664 7.26484,16.266828 15.99999,16.253968 h 48 z" + sodipodi:nodetypes="csscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 183.99999,106.00392 h -63.05081 v 20.00003" + id="path3265" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 183.99999,128.00395 H 121.96612" + id="path1203" + sodipodi:nodetypes="cc" /> + <g + id="g34146"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.01385;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 35.625008,112 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.625008 C 22.536754,238 12,227.71071 12,214.5944 V 135.67564 C 12,124 23.848079,112 35.625008,112 Z" + id="path1600" + sodipodi:nodetypes="sssssssss" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 108,188 H 92" + id="path1205" + sodipodi:nodetypes="cc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 108,200 H 92" + id="path1207" + sodipodi:nodetypes="cc" /> + <path + id="path1608" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 117,112.42969 V 130 h 8 v -14.42383 c -2.40613,-1.50799 -5.10612,-2.59069 -8,-3.14648 z" + sodipodi:nodetypes="ccccc" /> + <path + id="path1614" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 60.728516,124 v 8 h 4 H 135 h 2 c -0.17577,-2.8352 -0.84884,-5.5296 -1.93555,-8 H 64.728516 Z" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:16;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 103.87935,128 H 84.021606" + id="path1209" + sodipodi:nodetypes="cc" /> + <circle + style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path1587" + cx="64.012535" + cy="128" + r="7.9999995" /> + <path + style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 64,116 v 28 l -24,24 v 28 l 24,24 v 12" + id="path1589" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 40,152 0.02736,60" + id="path1591" + sodipodi:nodetypes="cc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 16,182 H 40" + id="path1593" + sodipodi:nodetypes="cc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 68,204 H 48 v 20 z" + id="path1211" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 37.250006,114 H 114.74999 C 127.63048,114 138,124.39172 138,137.29983 v 77.66609 C 138,227.87403 127.63048,238 114.74999,238 H 37.250006 C 24.369503,238 14,227.87403 14,214.96592 V 137.29983 C 14,124.39172 24.369503,114 37.250006,114 Z" + id="path1630" + sodipodi:nodetypes="sssssssss" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic.svg index 232e737511..d4c48aa76b 100755 --- a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic.svg +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic.svg @@ -1,23 +1,21 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Слой_1" data-name="Слой 1" - viewBox="0 0 48 48" + viewBox="0 0 256 256" version="1.1" - sodipodi:docname="icon_eeschema.svg" - inkscape:version="0.92.2 5c3e80d, 2017-08-06" - inkscape:export-filename="/Users/jeff/kicad_dev/kicad/bitmaps_png/png_48/icon_eeschema.png" - inkscape:export-xdpi="96" - inkscape:export-ydpi="96" - width="48" - height="48"> + sodipodi:docname="application-x-kicad-schematic.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="256" + height="256" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" @@ -27,28 +25,36 @@ guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" - inkscape:window-width="2921" - inkscape:window-height="1681" - id="namedview44" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" showgrid="true" - inkscape:zoom="11.313709" - inkscape:cx="5.5407053" - inkscape:cy="19.836494" - inkscape:window-x="299" - inkscape:window-y="334" - inkscape:window-maximized="0" - inkscape:current-layer="g904" - inkscape:snap-global="true" + inkscape:zoom="1.8955546" + inkscape:cx="78.604963" + inkscape:cy="165.38695" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" inkscape:document-rotation="0" - inkscape:snap-nodes="false"> + inkscape:current-layer="Слой_1" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="false" + inkscape:snap-bbox-edge-midpoints="false" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> <inkscape:grid type="xygrid" - id="grid869" - color="#9696ff" - opacity="0.1254902" - empspacing="2" + id="grid_kicad" spacingx="0.5" - spacingy="0.5" /> + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" /> </sodipodi:namedview> <metadata id="metadata43"> @@ -60,7 +66,7 @@ <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>add_arc</dc:title> + <dc:title>ps_diff_pair_tune_phase</dc:title> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> @@ -80,157 +86,368 @@ </rdf:RDF> </metadata> <defs - id="defs5"> + id="defs159429"> + <marker + style="overflow:visible" + id="marker3727" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS" + inkscape:isstock="true"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#c9ddc9;fill-opacity:1;fill-rule:evenodd;stroke:#c9ddc9;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3725" /> + </marker> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> <style - id="style3">.cls-1{fill:#b9b9b9;}.cls-2,.cls-3,.cls-4,.cls-5{fill:none;stroke-linejoin:round;}.cls-2,.cls-5{stroke:#333;}.cls-2,.cls-3{stroke-linecap:round;}.cls-2,.cls-4,.cls-5{stroke-width:1.9097px;}.cls-3,.cls-4{stroke:#545454;}.cls-3{stroke-width:0.9549px;}.cls-5{stroke-linecap:square;}.cls-6{fill:#333;}.cls-7{fill:#1a81c4;}</style> + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> <clipPath clipPathUnits="userSpaceOnUse" - id="clipPath934"> + id="clipPath1720"> <rect - style="fill:#e5d7c7;fill-opacity:1;stroke-width:2;stroke-linejoin:round" - id="rect936" - width="48" - height="48" - x="0" - y="0" - rx="7.8340001" /> + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2395"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2393" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-5" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-3" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2461" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2457" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2459" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-0"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-9" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2473"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2471" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-7" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-36" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient2612" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop2608" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop2610" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1720-7"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1722-8" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2624"> + <rect + style="fill:none;fill-opacity:1;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2622" + width="16" + height="16" + x="8" + y="4.9999995" + ry="2.6555922" /> + </clipPath> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-53" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5976"> + <stop + style="stop-color:#d0c5ac;stop-opacity:1;" + offset="0" + id="stop5972" /> + <stop + style="stop-color:#d0c5ac;stop-opacity:0;" + offset="1" + id="stop5974" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5976" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6262182,0,0,3.7464582,361.10388,599.69522)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> </defs> <title - id="title7">icon_eeschema</title> + id="title159431">ps_diff_pair_tune_phase</title> <g - id="g903" - clip-path="url(#clipPath909)"> - <g - id="g881"> - <g - id="g904" - clip-path="url(#clipPath934)"> - <rect - style="fill:#d0c5ac;fill-opacity:1;stroke-width:2;stroke-linejoin:round" - id="rect853" - width="48" - height="48" - x="0" - y="0" - rx="7.8340001" /> - <line - class="cls-2" - x1="23" - y1="9.6126261" - x2="23" - y2="26.352333" - id="line11" - style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="line15" - style="fill:none;stroke:#5a5a5a;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 15.915665,5.5392616 c -1.857484,0 -3.714968,0 -5.572451,0" - inkscape:connector-curvature="0" /> - <line - class="cls-3" - x1="36.838913" - y1="36.472931" - x2="27.438713" - y2="36.472931" - id="line17" - style="fill:none;stroke:#5a5a5a;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <line - class="cls-3" - x1="33.034874" - y1="31.582617" - x2="27.394508" - y2="31.582617" - id="line19" - style="fill:none;stroke:#5a5a5a;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="line21" - style="fill:none;stroke:#545454;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" - d="M -1.2427636,34 H 11.960479" - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" /> - <line - class="cls-2" - x1="15.539998" - y1="27.666437" - x2="15.539998" - y2="40.375622" - id="line23" - style="fill:none;stroke:#333333;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <line - class="cls-5" - x1="22" - y1="21" - x2="32.408836" - y2="21" - id="line25" - style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - id="line27" - style="fill:none;stroke:#545454;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" - d="M 23,48.6 V 42.127671" - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" /> - <path - class="cls-6" - d="m 25.300296,20.999988 a 2.3202959,2.3701527 0 1 1 -2.320047,-2.370025 2.3202959,2.3701527 0 0 1 2.320047,2.370025 z" - id="path29" - style="fill:#333333;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <rect - class="cls-7" - x="20" - y="-2.0935922" - width="6" - height="14.093592" - id="rect31" - style="fill:#db295b;fill-opacity:1;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" - ry="0.55945843" /> - <path - id="line35" - style="fill:none;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 23,26.6 -7.460001,4.519998" - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" /> - <path - id="line37" - style="fill:none;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 22.191062,40.699911 15.539999,36.759998" - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" /> - <line - class="cls-2" - x1="10.070891" - y1="34.000008" - x2="14.900987" - y2="34.000008" - id="line41" - style="fill:none;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - style="fill:#db295b;fill-opacity:1;stroke:#e10b4f;stroke-width:0.19999938;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:transform-center-x="0.34991295" - inkscape:transform-center-y="-0.73247214" - d="m 24.000001,42.356932 c -0.330205,0.01846 -5.237723,0.455024 -5.259989,0.305536 -0.02227,-0.149486 3.172685,-5.524944 3.304179,-5.526509 0.131491,-0.0016 2.065038,5.069921 1.955806,5.220971 z" - id="path873" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - id="line879" - style="fill:none;stroke:#545454;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" - d="M 49,21 H 37.16" - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" /> - <rect - class="cls-7" - x="18" - y="-42" - width="6" - height="12" - transform="rotate(90)" - id="rect33" - style="fill:#db295b;fill-opacity:1;stroke-width:1" - ry="0.5" /> - </g> - </g> + id="g937"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 46,2 h 111 l 63,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 46 c -8.734786,0 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#dbd3c2;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:6;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 65.000945,118 65,46 182.95684,46.112513 V 155 H 140" + id="path880" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 156,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 183,108 h -62 v 20" + id="path3265" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#dbd3c2;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 183,130 H 122" + id="path1203" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.01385;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 35.625008,112 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.625008 C 22.536754,238 12,227.71071 12,214.5944 V 135.67564 C 12,122.55933 22.536754,112 35.625008,112 Z" + id="path1600" + sodipodi:nodetypes="sssssssss" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 110,190 H 94" + id="path1205" + sodipodi:nodetypes="cc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 110,202 H 94" + id="path1207" + sodipodi:nodetypes="cc" /> + <path + id="path1608" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 117,112.42969 V 130 v 4 h 8 v -4 -14.42383 c -2.40613,-1.50799 -5.10612,-2.59069 -8,-3.14648 z" /> + <path + id="path1614" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#606060;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 60.728516,126 v 8 h 4 H 135 h 2 c -0.17577,-2.8352 -0.84884,-5.5296 -1.93555,-8 H 64.728516 Z" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:#dbd3c2;fill-opacity:1;stroke:#f2647e;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 104,130 H 83" + id="path1209" + sodipodi:nodetypes="cc" /> + <circle + style="fill:#606060;fill-opacity:1;stroke:#bebebe;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="path1587" + cx="65" + cy="130" + r="7.9999995" /> + <path + style="fill:none;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 65,117 v 27 l -22,22 v 31 l 22,22 v 13" + id="path1589" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 43,152 v 60" + id="path1591" + sodipodi:nodetypes="cc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:#606060;stroke-width:8;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 16,182 H 42" + id="path1593" + sodipodi:nodetypes="cc" /> + <path + style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 72,206 H 52 v 20 z" + id="path1211" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bebebe;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 35.625008,112 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.625008 C 22.536754,238 12,227.71071 12,214.5944 V 135.67564 C 12,122.55933 22.536754,112 35.625008,112 Z" + id="path1630" + sodipodi:nodetypes="sssssssss" /> </g> </svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-16.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-16.svg new file mode 100644 index 0000000000..7b4d6ebdd8 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-16.svg @@ -0,0 +1,194 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 16 16" + version="1.1" + sodipodi:docname="application-x-kicad-symbol-16.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="16" + height="16" + inkscape:export-filename="../../32x32/mimetypes/application-x-kicad-symbol.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="64" + inkscape:cx="2.6875" + inkscape:cy="5.6328125" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g868" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.86252495,0,0,0.88679508,79.626726,68.772428)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g881" + transform="matrix(0.25,0,0,0.25,2,0)"> + <g + id="g868"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 8,2 23.410526,-1e-7 L 46,17.000001 46.015089,56.60584 C 46.015881,58.685614 42.022795,62 40,62 H 8 C 4,62 2,60 2,56 V 8 C 2,4 4,2 8,2 Z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 17.881141,14.021127 h -6.526485 c -1.3563281,0 -1.3563281,1.154081 -1.3563281,1.154081 v 13.952454 c 0,0 0,0.923264 1.3563281,0.923264 H 36.643672 C 38,30.050926 38,28.896845 38,28.896845 V 14.944393 c 0,0 -0.0016,-1.223246 -1.356328,-1.154081 l -4.521091,0.230815" + id="path880" + sodipodi:nodetypes="csccssccsc" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 18.280969,14 v 0.0082 a 4,4 45 0 0 4,4 h 8.222911 a 4,4 135 0 0 4,-4 V 14 a 4,4 45 0 0 -4,-4.0000004 h -8.222911 a 4,4 135 0 0 -4,4.0000004 z" + id="path882" + sodipodi:nodetypes="ccccc" + inkscape:path-effect="#path-effect884" + inkscape:original-d="M 18.280969,9.9999996 V 18.00823 H 34.50388 V 9.9999996 Z" /> + <path + id="path5956" + style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.369634;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 44.000001,43.109806 4,53.657586 v 4.263997 c 0,1.736022 1.3472444,3.141893 3.0107525,3.141893 H 40.989246 c 1.663506,0 3.019931,-1.18148 3.010755,-2.917473 z M 3.2308986,58.004732 v 0.08326 c 0,0.508651 0.1058086,0.988918 0.2894154,1.425216 -0.1844322,-0.465277 -0.2894154,-0.97373 -0.2894154,-1.508481 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 38,38 H 15.587817" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:2.63433;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 20.624336,11.716031 h 14.581221 c 0.269269,0 0.486045,0.214875 0.486045,0.481794 v 6.745195 c 0,0.266919 -0.216776,0.481793 -0.486045,0.481793 H 20.624336 c -0.269269,0 -0.486036,-0.214874 -0.486036,-0.481793 v -6.745195 c 0,-0.266919 0.216767,-0.481794 0.486036,-0.481794 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 30.031809,2.0309416 V 13.944366 c 0,2.214127 1.81262,4.058843 3.992096,4.055635 h 11.976291 z" + sodipodi:nodetypes="csscc" /> + <path + id="path852" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:1.01042;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 8.5276506,20.504355 v 1.132398 6.845538 H -2.9408988 c -1.5211472,0 -4.3726354,2.689285 -4.3726354,3.517709 l -0.033891,4.031614 v 1.132399 h 2.8079079 v -1.132399 l 0.066291,-3.191925 c 0.020245,-0.974787 1.6267183,-0.943566 2.0436605,-0.943566 H 8.8176556 L -2.7009341,49.135962 c -0.4658215,0.754801 0.086022,1.720867 0.9829044,1.720703 H 8.6160389 v 11.50573 1.132394 H 11.313462 V 62.362396 50.856667 h 10.731816 c 0.896878,1.63e-4 1.448721,-0.965903 0.9829,-1.720703 L 11.509593,31.896136 h 12.83536 1.149838 V 28.482291 H 24.344953 11.490239 v -6.845538 -1.132398 z m 1.6359734,13.594629 9.8365,14.492896 H 0.32712381 Z" + sodipodi:nodetypes="cccccccccsscccccccccccccccccccccccc" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-24.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-24.svg new file mode 100644 index 0000000000..b93772b915 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-24.svg @@ -0,0 +1,184 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 24 24" + version="1.1" + sodipodi:docname="application-x-kicad-symbol-24.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="24" + height="24" + inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-symbol.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="45.254834" + inkscape:cx="4.4194174" + inkscape:cy="13.821728" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g868" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3335968,0,0,1.3602087,126.00227,104.40851)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g881" + transform="matrix(0.25,0,0,0.25,2,0)"> + <g + id="g868"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:3.95876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 11.708288,1.9897617 h 39.744305 l 22.55758,23.0077163 v 63.545117 c 0,3.190066 -2.601352,5.478028 -5.728907,5.478028 H 11.708288 c -3.1275498,0 -5.728908,-2.653168 -5.728908,-5.843222 V 7.8329914 c 0,-3.1900541 2.6013612,-5.839252 5.728908,-5.8432297 z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 33.367157,21.919592 H 16.329114 c -2.27174,0 -2.27174,1.650721 -2.27174,1.650721 v 25.109113 c 0,0 0,1.320574 2.27174,1.320574 H 63.728258 C 66,50 66,48.349282 66,48.349282 V 23.240168 c 0,0 -0.0035,-1.765788 -2.271742,-1.65072 l -6.507838,0.330144" + id="path880" + sodipodi:nodetypes="csccssccsc" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 33.998944,21 v 2 a 3,3 45 0 0 3,3 h 15.989645 a 3,3 135 0 0 3,-3 v -2 a 3,3 45 0 0 -3,-3 H 36.998944 a 3,3 135 0 0 -3,3 z" + id="path882" + sodipodi:nodetypes="ccccc" + inkscape:path-effect="#path-effect884" + inkscape:original-d="m 33.998944,18 v 8 h 21.989645 v -8 z" /> + <path + id="path5956" + style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.731648;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 72.056302,64.728393 7.9922295,81.638095 v 5.51001 c 0,2.783107 2.2252295,5.036934 4.9728285,5.036934 h 54.118419 c 2.74758,0 4.972825,-1.894047 4.972825,-4.677151 z M 6.7219112,87.281413 v 0.13348 c 0,0.815443 0.1747642,1.585391 0.4780253,2.284839 -0.3046259,-0.745906 -0.4780253,-1.56104 -0.4780253,-2.418319 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 54.126441,61.96329 H 30.31745" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21434;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 35.105184,17.339578 h 21.669712 c 0.40017,0 0.722331,0.324352 0.722331,0.727265 v 10.181853 c 0,0.402915 -0.322161,0.727266 -0.722331,0.727266 H 35.105184 c -0.400169,0 -0.722315,-0.324351 -0.722315,-0.727266 V 18.066843 c 0,-0.402913 0.322146,-0.727265 0.722315,-0.727265 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 50.000001,1.9997146 V 19.904677 c 0,3.327662 2.724349,6.100129 6.000074,6.095306 h 18.000206 z" + sodipodi:nodetypes="csscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 54,42 H 26" + id="path876" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 54,34.068474 H 26" + id="path878" + sodipodi:nodetypes="cc" /> + <path + id="path852" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:2.00001;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 21.013101,37.066274 v 1.117888 10.766001 H 7.1033847 c -0.936681,0 -1.6537993,0.250327 -2.1060689,0.700137 -0.2261348,0.224897 -0.3646006,0.481587 -0.4354104,0.69285 -0.07081,0.211273 -0.081228,0.470155 -0.081228,0.470155 v 5.589438 1.117886 h 2.2480349 v -1.117886 -5.184057 c 0.010469,-0.0059 -0.032907,-0.0328 0.3746723,-0.0328 H 20.821374 L 9.5614412,69.457699 c -0.4553595,0.745125 0.084091,1.698826 0.9608298,1.69866 h 10.49083 v 11.43933 1.11789 h 2.248035 v -1.11789 -11.43933 h 10.490828 c 0.876741,1.66e-4 1.41619,-0.953535 0.960831,-1.69866 L 23.452862,51.185938 h 12.547137 1.124018 V 48.950163 H 36 23.261136 V 38.184162 37.066274 Z m 1.124017,16.272465 9.615617,15.581887 H 12.521501 Z" + sodipodi:nodetypes="cccsssccccccscccccccccccccccccccccccc" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-32.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-32.svg new file mode 100644 index 0000000000..a94aeb4b54 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-32.svg @@ -0,0 +1,204 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 32 32" + version="1.1" + sodipodi:docname="application-x-kicad-symbol-32.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="32" + height="32" + inkscape:export-filename="../../32x32/mimetypes/application-x-kicad-symbol.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="45.254834" + inkscape:cx="15.733126" + inkscape:cy="27.124174" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g868" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8034613,0,0,1.83271,180.31043,139.99636)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g881" + transform="matrix(0.25,0,0,0.25,2,0)"> + <g + id="g868"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 25.747369,2 H 79.494737 L 110,33.000001 V 118.61905 C 110,122.91725 106.48211,126 102.25263,126 H 25.747369 C 21.517893,126 18,122.42519 18,118.12698 V 9.8730161 C 18,5.5748199 21.517897,2.0053592 25.747369,2 Z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 51.832465,29.930414 H 29.09809 c -3.03125,0 -3.03125,2.385095 -3.03125,2.385095 v 35.776416 c 0,0 0,1.908075 3.03125,1.908075 h 64.666668 c 3.03125,0 3.03125,-2.385094 3.03125,-2.385094 V 31.838491 c 0,0 -0.0035,-2.528022 -3.03125,-2.385095 l -10.104167,0.477018" + id="path880" + sodipodi:nodetypes="csccssccsc" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 54.105434,26.14078 v 8.166667 a 4,4 45 0 0 4,4 h 22.3125 a 4,4 135 0 0 4,-4 V 26.14078 a 4,4 45 0 0 -4,-4 h -22.3125 a 4,4 135 0 0 -4,4 z" + id="path882" + sodipodi:nodetypes="ccccc" + inkscape:path-effect="#path-effect884" + inkscape:original-d="m 54.105434,22.14078 v 16.166667 h 30.3125 V 22.14078 Z" /> + <path + id="path5956" + style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.369634;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 108,86.895836 19.942607,108.69453 v 8.81224 c 0,3.58777 2.96587,6.49323 6.627976,6.49323 h 74.801437 c 3.6621,0 6.64818,-2.44172 6.62798,-6.02943 z M 18.24948,117.67861 v 0.17208 c 0,1.05121 0.232932,2.04376 0.637129,2.94544 -0.406015,-0.96157 -0.637129,-2.01237 -0.637129,-3.11752 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 90.01823,82 H 37.98177" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:2.63433;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 55.983927,22.015523 h 29.871479 c 0.551632,0 0.995725,0.444073 0.995725,0.995704 v 13.940037 c 0,0.551631 -0.444093,0.995704 -0.995725,0.995704 H 55.983927 c -0.551632,0 -0.995705,-0.444073 -0.995705,-0.995704 V 23.011227 c 0,-0.551631 0.444073,-0.995704 0.995705,-0.995704 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 78,1.9997225 V 25.872941 c 0,4.436869 3.632452,8.133483 8.00007,8.127053 h 24.00022 z" + sodipodi:nodetypes="csscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 89.79845,57.973362 H 37.761991" + id="path876" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:4.04167;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 89.886838,46.113526 H 37.850379" + id="path878" + sodipodi:nodetypes="cc" /> + <path + id="path852" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:1.01042;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 24.374439,49.890029 v 1.515625 17.177083 H 8.0050564 C 6,68.582737 4.4685979,70.891221 4.4685979,72 v 6.686904 1.515625 H 7.499848 V 78.686904 71.65839 c 0,0 0.658753,-0.04441 1.2083334,-0.04441 H 24.115914 L 8.9330181,97.261163 c -0.6140091,1.01024 0.1133876,2.303244 1.2955869,2.303024 h 14.145834 v 17.055713 1.51562 h 3.03125 V 116.6199 99.564187 h 14.145833 c 1.182196,2.2e-4 1.90959,-1.292784 1.295583,-2.303024 L 27.664213,71.613987 h 16.918559 1.515625 v -3.03125 H 44.582772 27.405689 V 51.405654 49.890029 Z M 25.890064,74.532748 38.855762,96.53295 H 12.924365 Z" + sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccc" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-48.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-48.svg new file mode 100644 index 0000000000..e21a498348 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-48.svg @@ -0,0 +1,177 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 48 48" + version="1.1" + sodipodi:docname="application-x-kicad-symbol-48.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="48" + height="48" + inkscape:export-filename="../../48x48/mimetypes/application-x-kicad-symbol.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="45.254834" + inkscape:cx="21.831922" + inkscape:cy="26.903203" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g868" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF /> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.745206,0,0,2.7792344,269.04626,211.24558)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g881" + transform="matrix(0.25,0,0,0.25,2,0)"> + <g + id="g868"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:3.95876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 33.772327,1.97938 h 81.813563 l 46.43473,47.010312 V 178.82769 c 0,6.51807 -5.35488,11.19293 -11.79294,11.19293 H 33.772327 c -6.438055,0 -11.792946,-5.42106 -11.792946,-11.93911 V 13.918507 c 0,-6.5180498 5.354896,-11.931 11.792946,-11.939127 z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 78.903168,44.045715 H 44.953945 c -4.526564,0 -4.526564,3.769842 -4.526564,3.769842 v 57.343083 c 0,0 0,3.01587 4.526564,3.01587 H 139.3993 c 4.52657,0 4.52657,-3.76984 4.52657,-3.76984 V 47.061589 c 0,0 -0.007,-4.032629 -4.52657,-3.769842 l -12.96722,0.753968" + id="path880" + sodipodi:nodetypes="csccssccsc" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 79.657595,35.070611 0,18.126985 a 3,3 45 0 0 3,3 l 39.265635,0 a 3,3 135 0 0 3,-3 V 35.070611 a 3,3 45 0 0 -3,-3 H 82.657595 a 3,3 135 0 0 -3,3 z" + id="path882" + sodipodi:nodetypes="ccccc" + inkscape:path-effect="#path-effect884" + inkscape:original-d="M 79.657595,32.070611 V 56.197596 H 124.92323 V 32.070611 Z" /> + <path + id="path5956" + style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.731647;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 160,130.16953 -135.999999,34.5506 v 13.96726 c 0,5.68656 4.580629,10.29167 10.23656,10.29167 H 149.76345 c 5.65589,0 10.26774,-3.87008 10.23655,-9.55655 z M 21.385055,178.95977 v 0.27273 c 0,1.66615 0.359751,3.23934 0.984012,4.66848 -0.627069,-1.52407 -0.984012,-3.18958 -0.984012,-4.94121 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 133.59914,127.86078 H 55.893139" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 81.934788,33.342754 h 44.607052 c 0.82375,0 1.48692,0.66273 1.48692,1.485979 v 20.803983 c 0,0.823249 -0.66317,1.485979 -1.48692,1.485979 H 81.934788 c -0.823751,0 -1.486885,-0.66273 -1.486885,-1.485979 V 34.828733 c 0,-0.823249 0.663134,-1.485979 1.486885,-1.485979 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 114,1.9997228 V 37.809446 c 0,6.655285 5.44867,12.200189 12.00008,12.190544 h 36.00021 z" + sodipodi:nodetypes="csscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 133.22193,91.935452 H 55.515925" + id="path876" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 133.22193,72.072454 H 55.515925" + id="path878" + sodipodi:nodetypes="cc" /> + <path + id="path852" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 38.153489,80.88909 v 2.284114 21.997536 H 9.7947249 c -1.9096806,0 -3.3717224,0.51148 -4.2937979,1.43055 -0.4610377,0.45952 -0.7433381,0.984 -0.8877033,1.41566 -0.1443651,0.43168 -0.1656051,0.96064 -0.1656051,0.96064 v 11.42057 2.28411 h 4.5832343 v -2.28411 -10.59228 c 0.021343,-0.0121 -0.06709,-0.067 0.763872,-0.067 H 37.7626 l -22.956454,36.12053 c -0.928375,1.52247 0.171441,3.47111 1.958915,3.47077 h 21.388428 v 23.37331 2.28412 h 4.583234 v -2.28412 -23.37331 h 21.388426 c 1.787475,3.4e-4 2.88729,-1.9483 1.958915,-3.47077 L 43.127611,109.73897 H 68.708383 71 v -4.56823 H 68.708384 42.736723 V 83.173204 80.88909 Z m 2.291616,33.24857 19.604068,30.62438 H 20.841037 Z" + sodipodi:nodetypes="cccsssccccccscccccccccccccccccccccccc" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-64.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-64.svg new file mode 100644 index 0000000000..05fd620a9c --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol-64.svg @@ -0,0 +1,204 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 64 64" + version="1.1" + sodipodi:docname="application-x-kicad-symbol-64.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="64" + height="64" + inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-symbol.png" + inkscape:export-xdpi="48" + inkscape:export-ydpi="48" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="32" + inkscape:cx="39.65625" + inkscape:cy="32.828125" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g868" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6861422,0,0,3.6861422,361.72995,279.53242)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g881" + transform="matrix(0.25,0,0,0.25,2,0)"> + <g + id="g868"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:3.95876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 45.814433,1.9793814 H 155.6701 L 218.02062,64.329897 V 236.53608 c 0,8.64501 -7.19031,14.84536 -15.83505,14.84536 H 45.814433 c -8.644737,0 -15.835052,-7.19004 -15.835052,-15.83505 V 17.814433 c 0,-8.6449917 7.190322,-15.8242727 15.835052,-15.8350516 z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 103,60 H 58 c -6,0 -6,5 -6,5 v 75 c 0,0 0,4 6,4 h 128 c 6,0 6,-5 6,-5 V 64 c 0,0 -0.007,-5.299626 -6,-5 l -20,1" + id="path880" + sodipodi:nodetypes="csccssccsc" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 104,48 v 24 a 4,4 45 0 0 4,4 h 52 a 4,4 135 0 0 4,-4 V 48 a 4,4 45 0 0 -4,-4 h -52 a 4,4 135 0 0 -4,4 z" + id="path882" + sodipodi:nodetypes="ccccc" + inkscape:path-effect="#path-effect884" + inkscape:original-d="m 104,44 v 32 h 60 V 44 Z" /> + <path + id="path5956" + style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.731647;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 216,172 31.96227,217.825 v 18.525 c 0,7.54217 6.198591,13.65 13.852303,13.65 H 202.1477 c 7.65366,0 13.89449,-5.13295 13.8523,-12.675 z M 28.423676,236.71126 v 0.36172 c 0,2.20984 0.486822,4.29639 1.331584,6.19188 -0.848562,-2.0214 -1.331584,-4.23039 -1.331584,-6.5536 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175.5,168 H 72.5" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 154,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,120 H 72" + id="path876" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 175,96 H 72" + id="path878" + sodipodi:nodetypes="cc" /> + <path + id="path852" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 49,104 v 3 34 H 11.875 c -2.5,0 -4.413987,0.6718 -5.6210938,1.87891 -0.6035533,0.60355 -0.9731182,1.2924 -1.1621093,1.85937 C 4.9028058,145.30525 4.875,146 4.875,146 v 15 3 h 6 v -3 -13.91211 c 0.02794,-0.0159 -0.08783,-0.0879 1,-0.0879 H 48.488281 L 18.435547,194.44141 C 17.220193,196.44106 18.659983,199.00044 21,199 h 28 v 37.08398 3 h 6 v -3 V 199 h 28 c 2.340017,4.4e-4 3.779807,-2.55894 2.564453,-4.55859 L 55.511719,147 H 89 92 v -6 H 89 55 v -34 -3 z M 52,152.77734 77.664062,193 H 26.335938 Z" + sodipodi:nodetypes="cccsssccccccscccccccccccccccccccccccc" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol.svg new file mode 100644 index 0000000000..34c13c5c98 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-symbol.svg @@ -0,0 +1,200 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 256 256" + version="1.1" + sodipodi:docname="application-x-kicad-symbol.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="256" + height="256" + inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-symbol.png" + inkscape:export-xdpi="48" + inkscape:export-ydpi="48" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="4" + inkscape:cx="178.75" + inkscape:cy="196.875" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="Слой_1" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g881"> + <g + id="g868"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 46,2 h 111 l 63,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 46 c -8.734786,0 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z" + sodipodi:nodetypes="sccssssss" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 105,59 H 60 c -6,0 -6,5 -6,5 v 75 c 0,0 0,5 6,5 43,0 129,0 129,0 6,0 6,-5 6,-5 V 64 c 0,0 0,-5 -6,-5 h -21" + id="path880" + sodipodi:nodetypes="csccssccsc" /> + <path + style="fill:none;stroke:#f4cad2;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="m 105,46 v 26 a 3,3 45 0 0 3,3 h 57 a 3,3 135 0 0 3,-3 V 46 a 3,3 45 0 0 -3,-3 h -57 a 3,3 135 0 0 -3,3 z" + id="path882" + sodipodi:nodetypes="ccccc" + inkscape:path-effect="#path-effect884" + inkscape:original-d="m 105,43 v 32 h 63 V 43 Z" /> + <path + id="path5956" + style="opacity:1;fill:#f4cad2;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 176,170 H 73" + id="path5251-4" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:5.21435;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 107.01844,43.577116 h 59.12705 c 1.09189,0 1.97092,0.878989 1.97092,1.970877 v 27.592651 c 0,1.091888 -0.87903,1.970877 -1.97092,1.970877 h -59.12705 c -1.09189,0 -1.97088,-0.878989 -1.97088,-1.970877 V 45.547993 c 0,-1.091888 0.87899,-1.970877 1.97088,-1.970877 z" + id="path6035" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 156,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 176,119 H 73" + id="path876" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#f4cad2;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 176,95 H 73" + id="path878" + sodipodi:nodetypes="cc" /> + <path + id="path852" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 51,104 v 3 34 H 11 c -2.5,0 -4.413987,0.6718 -5.6210938,1.87891 -0.6035533,0.60355 -0.9731182,1.2924 -1.1621093,1.85937 C 4.0278058,145.30525 4,146 4,146 v 15 3 h 6 v -3 -13.91211 C 10.027938,147.07196 9.9121745,147 11,147 H 50.488281 L 20.435547,196.44141 A 3.0003,3.0003 0 0 0 23,201 h 28 v 35.08398 3 h 6 v -3 V 201 h 28 a 3.0003,3.0003 0 0 0 2.564453,-4.55859 L 57.511719,147 H 91 94 v -6 H 91 57 v -34 -3 z M 54,152.77734 79.664062,195 H 28.335938 Z" /> + </g> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-16.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-16.svg new file mode 100644 index 0000000000..9646047753 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-16.svg @@ -0,0 +1,296 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 16 16" + version="1.1" + sodipodi:docname="application-x-kicad-worksheet-16.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="16" + height="16" + inkscape:export-filename="../../16x16/mimetypes/application-x-kicad-worksheet.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="90.509668" + inkscape:cx="5.2922523" + inkscape:cy="9.7392911" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g1031" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.7860925,0,0,1.8012061,174.26535,137.63725)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5992"> + <stop + style="stop-color:#f3f3f3;stop-opacity:1;" + offset="0" + id="stop5988" /> + <stop + style="stop-color:#f3f3f3;stop-opacity:0;" + offset="1" + id="stop5990" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5992" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0417211,0,0,1.0708924,95.014278,164.92471)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g1031" + transform="matrix(0.25,0,0,0.25,2.46875,0.125)"> + <g + id="g1135" + transform="matrix(0.48435227,0,0,0.49207345,-6.4225245,0.50945114)" + style="stroke-width:2.03777"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.1934;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 21.19086,2.0130102 H 74.420601 L 104.63208,32.480128 V 116.6274 c 0,4.22432 -3.48402,7.25408 -7.67276,7.25408 H 21.19086 c -4.188742,0 -7.672756,-3.51336 -7.672756,-7.73768 V 9.7506902 c 0,-4.224311 3.484017,-7.732413 7.672756,-7.73768 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:1.51795;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 100.23185,84.222574 13.500229,105.17224 v 8.46902 c 0,3.44803 2.921216,6.24033 6.528187,6.24033 h 73.675246 c 3.606953,0 6.548078,-2.34662 6.528188,-5.79459 z M 11.832592,113.80641 v 0.16538 c 0,1.01025 0.229426,1.96416 0.627537,2.83071 -0.399902,-0.92411 -0.627537,-1.93399 -0.627537,-2.99609 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.1934;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 89.085786,18.270746 H 28.793396" + id="path878" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.1934;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 87.844173,34.528481 H 27.551783" + id="path961" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.19341;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 97.344238,58.915084 H 71.327269" + id="path961-8" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.19337;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 96.102625,79.237253 H 71.327269" + id="path961-4" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.1934;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 71.327265,2.0246102 V 25.465608 c 0,4.356541 3.781945,7.986227 8.329301,7.979914 h 24.987894 z" + sodipodi:nodetypes="csscc" /> + <g + id="path1105" + style="opacity:1;stroke-width:2.03777" /> + </g> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 1.5124071,25.521656 H 24.135294 c 3.759924,0 6.786871,3.018293 6.786871,6.767476 v 22.558235 c 0,3.749186 -3.026947,6.69029 -6.786871,6.69029 H 1.5124071 c -3.759927,0 -6.7868701,-2.941104 -6.7868701,-6.69029 V 32.289132 c 0,-3.749183 3.0269431,-6.767476 6.7868701,-6.767476 z" + id="path971" /> + <path + id="path969" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 4.6971748,23.577959 c -1.9565498,0.0081 -4.01478763,-0.0557 -5.7664765,0.975285 -3.0807499,1.57631 -5.0880926,5.046003 -4.8004438,8.530448 0.011143,7.604475 -0.084494,15.214885 0.088365,22.815452 0.565475,4.384689 4.85494032,7.817056 9.2229674,7.476636 7.6922661,-0.0054 15.3895451,0.08727 23.0784841,-0.08117 4.333735,-0.508219 7.907213,-4.697721 7.584674,-9.107717 -0.0096,-7.682681 0.08973,-15.371227 -0.08774,-23.050033 -0.553567,-4.412738 -4.864054,-7.901104 -9.263143,-7.570717 -6.685569,0.0039 -13.371182,-0.002 -20.0566861,0.01187 z m -1.6559522,4.330755 c 7.6858614,0.09104 15.3764284,-0.06202 23.0625114,0.107256 2.326958,0.377347 3.99132,2.804886 3.643981,5.127785 -0.005,7.423888 0.078,14.853111 -0.06433,22.273495 -0.358957,2.357959 -2.845105,3.904708 -5.120942,3.602526 -7.508704,-0.03844 -15.0244564,0.08897 -22.5285453,-0.0999 -2.30827882,-0.385764 -3.9041544,-2.814812 -3.5533663,-5.106713 0.013987,-7.410164 -0.069029,-14.82594 0.076622,-22.232398 0.3462392,-2.106334 2.39537769,-3.683913 4.4840702,-3.67205 z" /> + <g + id="g987" + style="stroke:#1a81c4;stroke-width:19.3838;stroke-opacity:1" + transform="matrix(0.05703514,0,0,-0.04666324,12.759526,62.749958)"> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:232.607;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,200 h 20" + id="path975" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:232.607;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,200 h 4" + id="path977" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:232.607;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,216 h 20" + id="path979" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:232.607;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,216 h 4" + id="path981" + sodipodi:nodetypes="cc" /> + </g> + <path + style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 20.139954,28.000455 11.314101,43.860858 H 28.965808 Z" + id="path989" + sodipodi:nodetypes="cccc" /> + <ellipse + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path991" + cx="4.1328773" + cy="37.571522" + rx="5.9921231" + ry="5.873498" /> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-24.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-24.svg new file mode 100644 index 0000000000..fc12712b1f --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-24.svg @@ -0,0 +1,306 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 24 24" + version="1.1" + sodipodi:docname="application-x-kicad-worksheet-24.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="24" + height="24" + inkscape:export-filename="../../24x24/mimetypes/application-x-kicad-worksheet.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="45.254834" + inkscape:cx="7.4025241" + inkscape:cy="18.462116" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g1031" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7241286,0,0,3.7242346,365.17751,282.44199)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5992"> + <stop + style="stop-color:#f3f3f3;stop-opacity:1;" + offset="0" + id="stop5988" /> + <stop + style="stop-color:#f3f3f3;stop-opacity:0;" + offset="1" + id="stop5990" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5992" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3181368,0,0,1.3675354,124.8354,220.00933)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g1031" + transform="matrix(0.25,0,0,0.25,2.46875,0.125)"> + <g + id="g1135" + transform="matrix(0.35813523,0,0,0.36495751,-6.63433,0.76589948)" + style="stroke-width:2.75171"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:11.064;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 46.006424,2.0207245 H 156.99418 L 219.98723,65.015568 V 239.00132 c 0,8.73435 -7.26441,14.99878 -15.99824,14.99878 H 46.006424 c -8.733823,0 -15.998235,-7.26435 -15.998235,-15.99869 V 18.019415 c 0,-8.7343289 7.264419,-15.9878003 15.998235,-15.9986905 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:2.04978;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 214.33058,172 31.930777,217.01162 v 18.19618 c 0,7.4083 6.143423,13.40772 13.729017,13.40772 H 200.60156 c 7.58555,0 13.77083,-5.04184 13.72902,-12.45002 z M 28.423676,235.56265 v 0.3553 c 0,2.17062 0.48249,4.22013 1.319733,6.08197 -0.84101,-1.98552 -1.319733,-4.1553 -1.319733,-6.43727 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,46.160125 H 63" + id="path878" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,67.581927 H 63" + id="path953" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,89.240696 H 63" + id="path955" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,111.39952 H 63" + id="path957" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,133.55313 H 63" + id="path959" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:11.0641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,155.22236 H 63" + id="path961" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:11.064;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 152.84878,2.0626088 V 51.045549 c 0,9.103545 7.61897,16.688236 16.77989,16.675044 h 50.33967 z" + sodipodi:nodetypes="csscc" /> + <g + id="path1105" + style="opacity:1;stroke-width:2.75171" /> + </g> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 6.5232535,41.990397 H 35.149014 c 4.757601,0 8.587737,3.854376 8.587737,8.642101 v 28.806993 c 0,4.78773 -3.830136,8.543533 -8.587737,8.543533 H 6.5232535 c -4.757606,0 -8.5877335,-3.755803 -8.5877335,-8.543533 V 50.632498 c 0,-4.787725 3.8301275,-8.642101 8.5877335,-8.642101 z" + id="path971" /> + <path + id="path969" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 24.566501,39.499692 c -6.680127,0.01147 -13.361696,-0.03928 -20.0407697,0.05738 -5.52110116,0.110041 -10.4497209,4.867669 -10.3694224,10.111546 -0.074322,4.36325 -0.00215,8.728339 -0.031309,13.092448 0.012058,5.441986 -0.035153,10.88854 0.1007118,16.327358 0.6185202,4.893531 5.46512791,8.905628 10.6720602,8.863255 3.6385013,0.08177 7.2795601,-0.0085 10.9192451,0.03135 6.924108,-0.01919 13.853657,0.05573 20.774102,-0.09925 5.106692,-0.566268 9.537893,-4.948697 9.500161,-9.88257 0.09256,-3.764381 -0.0032,-7.531051 0.03342,-11.296468 -0.01618,-6.071012 0.05152,-12.146444 -0.09802,-18.214412 -0.630924,-5.09459 -5.804152,-9.273011 -11.238061,-8.96816 -3.407139,-0.04871 -6.814734,-0.02617 -10.222114,-0.02247 z m -19.1816557,4.02605 c 10.2067207,0.01406 20.4170607,-0.03151 30.6214547,0.05828 3.342264,0.397729 6.124881,3.43271 5.813925,6.653669 0.02139,9.434519 0.05227,18.869885 -0.0446,28.304239 -0.373308,3.180922 -3.710559,5.647119 -7.053681,5.380843 -8.546065,0.0506 -17.092982,0.02515 -25.6393497,0.01043 -1.8288439,-0.07614 -3.6815346,0.08408 -5.4943357,-0.155396 -3.07716159,-0.629229 -5.4729849,-3.533056 -5.1559472,-6.533025 -0.00356,-9.210652 -0.057228,-18.422733 0.038206,-27.632438 -0.061384,-3.396344 3.4109083,-6.238966 6.9143315,-6.086601 z" /> + <g + id="g987" + style="stroke:#1a81c4;stroke-width:5.78837;stroke-opacity:1" + transform="matrix(0.20311696,0,0,0.146941,6.9555344,46.508587)"> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:69.4603;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,200 h 20" + id="path975" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:69.4603;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,200 h 4" + id="path977" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:69.4603;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,216 h 20" + id="path979" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:69.4603;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,216 h 4" + id="path981" + sodipodi:nodetypes="cc" /> + </g> + <path + style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 26.089421,47.395407 14.160579,67.604593 h 23.857683 z" + id="path989" + sodipodi:nodetypes="cccc" /> + <ellipse + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path991" + cx="10.278316" + cy="54.421188" + rx="7.8466845" + ry="8.0103722" /> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-32.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-32.svg new file mode 100644 index 0000000000..ff90bd6341 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-32.svg @@ -0,0 +1,296 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 32 32" + version="1.1" + sodipodi:docname="application-x-kicad-worksheet-32.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="32" + height="32" + inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-worksheet.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="32" + inkscape:cx="8.625" + inkscape:cy="20.703125" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g1135" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7241286,0,0,3.7242346,365.17751,282.44199)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5992"> + <stop + style="stop-color:#f3f3f3;stop-opacity:1;" + offset="0" + id="stop5988" /> + <stop + style="stop-color:#f3f3f3;stop-opacity:0;" + offset="1" + id="stop5990" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5992" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.7692133,0,0,1.8433405,169.40921,295.28644)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g1031" + transform="matrix(0.25,0,0,0.25,2.46875,0.125)"> + <g + id="g1135" + transform="matrix(0.48435227,0,0,0.49207345,-6.4225245,0.50945114)" + style="stroke-width:2.03777"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:8.19341;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 46.006424,2.0207245 H 156.99418 L 219.98723,65.015568 V 239.00132 c 0,8.73435 -7.26441,14.99878 -15.99824,14.99878 H 46.006424 c -8.733823,0 -15.998235,-7.26435 -15.998235,-15.99869 V 18.019415 c 0,-8.7343289 7.264419,-15.9878003 15.998235,-15.9986905 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:1.51795;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 215.85018,172 34.164235,217.79179 v 18.51158 c 0,7.5367 6.11938,13.64011 13.675286,13.64011 H 202.17489 c 7.55586,0 13.71695,-5.12923 13.67529,-12.66582 z M 30.670859,236.66436 v 0.36147 c 0,2.20823 0.480602,4.29327 1.314569,6.18738 -0.837719,-2.01993 -1.314569,-4.22732 -1.314569,-6.54885 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:16.3868;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,47.057367 H 63" + id="path878" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:16.3868;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,79.690584 H 63" + id="path955" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:16.3868;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,112.32359 H 63" + id="path959" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:16.3868;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,144.77106 H 63" + id="path961" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:8.19341;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 153.87928,2.0447098 V 50.512109 c 0,9.007731 7.507,16.512594 16.53331,16.499541 h 49.59993 z" + sodipodi:nodetypes="csscc" /> + <g + id="path1105" + style="opacity:1;stroke-width:2.03777" /> + </g> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 10.609744,55.329575 H 49.03146 c 6.385689,0 11.526524,5.195425 11.526524,11.64894 v 38.829775 c 0,6.45352 -5.140835,11.51608 -11.526524,11.51608 H 10.609744 c -6.3856948,0 -11.52652182,-5.06256 -11.52652182,-11.51608 V 66.978515 c 0,-6.453515 5.14082702,-11.64894 11.52652182,-11.64894 z" + id="path971" /> + <path + id="path969" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 47.15074,55.329562 c -12.263354,0.03997 -24.528437,-0.02521 -36.790732,0.04988 -5.9566449,0.365382 -11.4380926,5.357614 -12.0995358,11.513814 -0.3144339,2.916405 -0.035217,5.854516 -0.135592,8.780583 0.013818,10.652743 -0.050034,21.308068 0.069881,31.959091 0.5120275,6.02789 5.6259596,11.18203 11.4806977,11.7344 2.9183001,0.31362 5.8566101,0.0308 8.7837661,0.13267 10.574317,-0.0117 21.150888,0.0463 31.723702,-0.0706 5.88119,-0.45557 11.274472,-5.44719 11.825501,-11.55896 0.280365,-2.93208 0.0214,-5.88124 0.116572,-8.820952 C 62.1097,88.478982 62.17266,77.905899 62.05336,67.337109 61.539252,61.255166 56.403021,56.025551 50.48947,55.456767 49.382542,55.321993 48.263912,55.322343 47.15074,55.329595 Z m -35.759096,4.099586 c 12.878421,0.03508 25.760149,-0.05295 38.636457,0.07109 2.330585,0.251409 4.497436,1.556429 5.941105,3.313391 1.410314,1.665327 2.163285,3.823324 2.076154,6.056406 0.04307,9.809186 0.02058,19.619493 0.01448,29.429136 -0.02969,3.101509 0.01349,6.209909 -0.08861,9.306939 -0.485519,3.88575 -3.73587,7.09039 -7.48268,7.65304 -2.357898,0.31861 -4.744448,0.0618 -7.114785,0.147 -11.039625,-0.0143 -22.081788,0.0451 -33.119746,-0.0684 -4.18214,-0.39721 -7.9513923,-4.13203 -8.0365605,-8.5241 -0.1119466,-2.62803 0.025321,-5.25982 -0.035224,-7.889641 0.013234,-10.457498 -0.047957,-20.91804 0.068514,-31.373542 0.4440741,-4.28908 4.2035386,-7.860493 8.3901255,-8.079646 0.260131,-0.02278 0.473485,-0.03054 0.750771,-0.04165 z" /> + <g + id="g987" + style="stroke:#1a81c4;stroke-width:2.31436;stroke-opacity:1" + transform="matrix(0.43372299,0,0,0.43045105,-7.247299,11.40979)"> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:27.7724;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,200 h 20" + id="path975" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:27.7724;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,200 h 4" + id="path977" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:27.7724;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,216 h 20" + id="path979" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:27.7724;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,216 h 4" + id="path981" + sodipodi:nodetypes="cc" /> + </g> + <path + style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 24.836999,65.170019 12.950641,86.818994 h 23.772717 z" + id="path989" + sodipodi:nodetypes="cccc" /> + <ellipse + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path991" + cx="14.931701" + cy="75.010468" + rx="7.9242392" + ry="7.8723545" /> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-48.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-48.svg new file mode 100644 index 0000000000..08bafb7dc7 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-48.svg @@ -0,0 +1,306 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 48 48" + version="1.1" + sodipodi:docname="application-x-kicad-worksheet-48.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="48" + height="48" + inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-worksheet.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="16" + inkscape:cx="28.1875" + inkscape:cy="35.03125" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g1031" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7241286,0,0,3.7242346,365.17751,282.44199)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5992"> + <stop + style="stop-color:#f3f3f3;stop-opacity:1;" + offset="0" + id="stop5988" /> + <stop + style="stop-color:#f3f3f3;stop-opacity:0;" + offset="1" + id="stop5990" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5992" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.6707348,0,0,2.7948994,264.68892,447.76284)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g1031" + transform="matrix(0.25,0,0,0.25,2.46875,0.125)"> + <g + id="g1135" + transform="matrix(0.73705032,0,0,0.74599659,-2.0052731,0.00464846)" + style="stroke-width:1.34162"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:5.3944;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 46.006424,2.0207245 H 156.99418 L 219.98723,65.015568 V 239.00132 c 0,8.73435 -7.26441,14.99878 -15.99824,14.99878 H 46.006424 c -8.733823,0 -15.998235,-7.26435 -15.998235,-15.99869 V 18.019415 c 0,-8.7343289 7.264419,-15.9878003 15.998235,-15.9986905 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:0.999391;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,47.855441 H 63" + id="path878" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,69.277243 H 63" + id="path953" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,90.936012 H 63" + id="path955" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,111.8839 H 63" + id="path957" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,133.06875 H 63" + id="path959" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:10.7888;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,154.2536 H 63" + id="path961" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:5.3944;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 154.83101,2.0203483 V 49.99867 c 0,8.916835 7.39624,16.345968 16.28937,16.333046 h 48.86811 z" + sodipodi:nodetypes="csscc" /> + <g + id="path1105" + style="opacity:1;stroke-width:1.34162" /> + </g> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 24.971479,83.936793 h 57.99991 c 9.639584,0 17.399991,7.877378 17.399991,17.662287 v 58.87427 c 0,9.78492 -7.760407,17.46084 -17.399991,17.46084 h -57.99991 c -9.639594,0 -17.3999843,-7.67592 -17.3999843,-17.46084 v -58.87427 c 0,-9.784909 7.7603903,-17.662287 17.3999843,-17.662287 z" + id="path971" /> + <path + id="path969" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 82.230756,83.936811 c -19.386621,0.0049 -38.774259,-0.01941 -58.160235,0.03056 -7.102801,0.331053 -13.794173,5.0112 -16.4648826,11.584559 -1.2708397,2.959804 -1.6249115,6.21758 -1.4806384,9.41002 0.00444,18.85579 -0.019132,37.71268 0.03533,56.56777 0.3484982,6.82733 4.832039,13.2391 11.144126,15.9306 3.099883,1.39199 6.544818,1.80997 9.917606,1.65327 18.947217,-0.0102 37.895478,0.0307 56.842031,-0.0346 7.020628,-0.34254 13.687324,-4.88742 16.372177,-11.38712 1.27723,-2.9469 1.63607,-6.19719 1.49158,-9.38027 -0.007,-18.86432 0.0175,-37.72975 -0.0355,-56.59334 C 101.52705,94.645287 96.794425,88.003955 90.180184,85.378428 87.669913,84.352234 84.943209,83.85885 82.230716,83.936793 Z M 25.45448,87.346774 c 19.473237,0.0295 38.947067,-0.01014 58.420132,0.02907 3.367428,0.120224 6.840536,1.635121 9.400135,3.929208 3.152267,2.765558 5.149144,6.828058 5.187918,11.033268 0.06435,3.48879 0.0023,6.97975 0.02768,10.46966 -0.0071,16.19194 0.01733,32.38525 -0.037,48.57634 -0.231884,4.18952 -2.402198,8.40544 -5.806246,11.00439 -2.592379,2.00529 -5.681622,3.13538 -8.955353,3.27611 -3.164797,0.0759 -6.434725,0.003 -9.639419,0.0312 -16.591113,-0.004 -33.183158,0.0155 -49.77368,-0.0321 -5.820221,-0.23157 -11.401434,-3.98425 -13.541794,-9.42203 -1.0284603,-2.38628 -1.2842843,-5.01152 -1.1742829,-7.58391 0.012992,-18.93193 -0.030262,-37.86524 0.037001,-56.7963 0.2196641,-3.899536 2.0852989,-7.839036 5.0661809,-10.484838 2.905231,-2.670154 6.849308,-4.080903 10.788729,-4.0301 z" /> + <g + id="g987" + style="stroke:#1a81c4;stroke-width:1.33901;stroke-opacity:1" + transform="matrix(0.74763247,0,0,0.74601109,-1.4000945,0.38355116)"> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:16.0681;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,200 h 20" + id="path975" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:16.0681;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,200 h 4" + id="path977" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:16.0681;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,216 h 20" + id="path979" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:16.0681;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,216 h 4" + id="path981" + sodipodi:nodetypes="cc" /> + </g> + <path + style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 48.315103,98.857016 28.505205,135.0964 H 68.125 Z" + id="path989" + sodipodi:nodetypes="cccc" /> + <ellipse + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path991" + cx="30.069557" + cy="112.35415" + rx="13.388295" + ry="13.359261" /> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-64.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-64.svg new file mode 100644 index 0000000000..0f566e02ae --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet-64.svg @@ -0,0 +1,303 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 64 64" + version="1.1" + sodipodi:docname="application-x-kicad-worksheet-64.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="64" + height="64" + inkscape:export-filename="../../64x64/mimetypes/application-x-kicad-worksheet.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="32" + inkscape:cx="43.875" + inkscape:cy="34.953125" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="g1031" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" + originx="0" + originy="0" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7241286,0,0,3.7242346,365.17751,282.44199)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5992"> + <stop + style="stop-color:#f3f3f3;stop-opacity:1;" + offset="0" + id="stop5988" /> + <stop + style="stop-color:#f3f3f3;stop-opacity:0;" + offset="1" + id="stop5990" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5992" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.5722563,0,0,3.7464582,355.90885,599.69522)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g1031" + transform="matrix(0.25,0,0,0.25,2.46875,0.125)"> + <g + id="g1135" + transform="matrix(0.98969165,0,0,0.99999939,2.415812,-0.5103345)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4.02078;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 46.006424,2.0207245 H 156.99418 L 219.98723,65.015568 V 239.00132 c 0,8.73435 -7.26441,14.99878 -15.99824,14.99878 H 46.006424 c -8.733823,0 -15.998235,-7.26435 -15.998235,-15.99869 V 18.019415 c 0,-8.7343289 7.264419,-15.9878003 15.998235,-15.9986905 z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,51.88388 H 63" + id="path878" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,71.88388 H 63" + id="path953" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,91.88388 H 63" + id="path955" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,111.8839 H 63" + id="path957" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,131.8839 H 63" + id="path959" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:8.04156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,151.8839 H 63" + id="path961" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4.02078;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 155.29973,2.0204456 V 49.751197 c 0,8.870824 7.34292,16.261622 16.17195,16.248767 h 48.51583 z" + sodipodi:nodetypes="csscc" /> + <g + id="path1105" + style="opacity:1" /> + </g> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 35.273446,112 h 77.578104 c 12.89348,0 23.27345,10.55933 23.27345,23.67564 V 214.5944 C 136.125,227.71071 125.74503,238 112.85155,238 H 35.273446 C 22.379952,238 12,227.71071 12,214.5944 V 135.67564 C 12,122.55933 22.379952,112 35.273446,112 Z" + id="path971" /> + <path + id="path969" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="m 111.75511,111.50607 c -25.891247,0.005 -51.783078,-0.0181 -77.673959,0.0208 -8.255559,0.27258 -16.193372,4.98387 -20.397703,12.09066 -2.638168,4.34012 -3.8142692,9.48287 -3.59168,14.53977 0.0053,25.74386 -0.01912,51.48843 0.02606,77.23184 0.288944,7.92202 4.70878,15.54291 11.435914,19.7402 4.502742,2.88362 9.926547,4.15542 15.245804,3.91489 25.663566,-0.006 51.32788,0.0196 76.990974,-0.0264 8.19572,-0.29287 16.12116,-4.89691 20.3249,-11.95629 2.65073,-4.32094 3.77959,-9.46362 3.55495,-14.50327 -0.005,-25.70991 0.0187,-51.4205 -0.0258,-77.12999 -0.30827,-8.37787 -5.17588,-16.41571 -12.46575,-20.56481 -4.04893,-2.33896 -8.75181,-3.50064 -13.42374,-3.35739 z m 1.36891,3.55575 c 9.09139,-0.0282 17.5604,6.62374 20.12618,15.26667 1.30629,4.34 0.75411,8.8722 0.8748,13.34657 -0.005,23.84904 0.0187,47.69862 -0.0257,71.54731 -0.17292,5.14491 -2.43309,10.32207 -6.1001,13.9923 -2.7146,2.71188 -6.08523,4.61874 -9.81481,5.58761 -3.83292,1.03674 -8.01037,0.60303 -12.05455,0.69772 -23.932065,-0.004 -47.864783,0.016 -71.79643,-0.0236 -5.463405,-0.13895 -10.869611,-2.48882 -14.653499,-6.35327 -4.158378,-4.15987 -6.300048,-10.12821 -6.042818,-15.97671 0.0054,-25.85101 -0.01949,-51.70261 0.02638,-77.55325 0.08439,-2.57227 0.710071,-5.21813 1.721324,-7.55571 2.471095,-5.86278 7.688415,-10.4821 13.833352,-12.16241 2.317673,-0.68676 4.776493,-0.88684 7.197613,-0.8248 25.569418,-0.004 51.138829,1.1e-4 76.708238,0.0116 z" /> + <g + id="g987" + style="stroke:#1a81c4;stroke-opacity:1"> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,200 h 20" + id="path975" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,200 h 4" + id="path977" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,216 h 20" + id="path979" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,216 h 4" + id="path981" + sodipodi:nodetypes="cc" /> + </g> + <path + style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 64,132 40,176 H 88 Z" + id="path989" + sodipodi:nodetypes="cccc" /> + <circle + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path991" + cx="44" + cy="152" + r="16" /> + </g> +</svg> diff --git a/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet.svg b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet.svg new file mode 100644 index 0000000000..32afadd0d8 --- /dev/null +++ b/resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-worksheet.svg @@ -0,0 +1,300 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + id="Слой_1" + data-name="Слой 1" + viewBox="0 0 256 256" + version="1.1" + sodipodi:docname="application-x-kicad-worksheet.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + width="256" + height="256" + inkscape:export-filename="../../128x128/mimetypes/application-x-kicad-worksheet.png" + inkscape:export-xdpi="48" + inkscape:export-ydpi="48" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="3840" + inkscape:window-height="2109" + id="namedview30" + showgrid="true" + inkscape:zoom="1" + inkscape:cx="-37" + inkscape:cy="31.5" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:document-rotation="0" + inkscape:current-layer="Слой_1" + inkscape:snap-bbox="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:snap-smooth-nodes="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + <inkscape:grid + type="xygrid" + id="grid_kicad" + spacingx="0.5" + spacingy="0.5" + color="#9999ff" + opacity="0.13" + empspacing="2" /> + </sodipodi:namedview> + <metadata + id="metadata43"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>ps_diff_pair_tune_phase</dc:title> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs159429"> + <inkscape:path-effect + effect="fillet_chamfer" + id="path-effect884" + is_visible="true" + lpeversion="1" + satellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" + unit="px" + method="auto" + mode="F" + radius="0" + chamfer_steps="1" + flexible="false" + use_knot_distance="true" + apply_no_radius="true" + apply_with_radius="true" + only_selected="false" + hide_knots="false" + nodesatellites_param="F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1 @ F,0,0,1,0,3,0,1" /> + <style + id="style159427">.cls-1{fill:#1a81c4;}</style> + <linearGradient + inkscape:collect="always" + xlink:href="#radialGradient1350" + id="linearGradient5941" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7245395,0,0,3.7245395,365.2063,282.44422)" + x1="-160.86667" + y1="118.53333" + x2="-67.733337" + y2="-76.200005" /> + <radialGradient + id="radialGradient1350" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-3" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-6" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-7" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <radialGradient + id="radialGradient1350-36" + cx="50.0093" + cy="23.271601" + r="28.023199" + gradientTransform="matrix(0,-0.45961851,0.81826096,0,80.071454,-81.239161)" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + stop-color="#2b4bed" + id="stop1346-7" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + offset="1" + stop-color="#2b2fb7" + id="stop1348-5" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </radialGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5992"> + <stop + style="stop-color:#f3f3f3;stop-opacity:1;" + offset="0" + id="stop5988" /> + <stop + style="stop-color:#f3f3f3;stop-opacity:0;" + offset="1" + id="stop5990" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5992" + id="linearGradient1260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.6262182,0,0,3.7464582,361.10388,599.69522)" + x1="-93.133339" + y1="-105.83334" + x2="-42.333336" + y2="-152.40001" /> + </defs> + <title + id="title159431">ps_diff_pair_tune_phase</title> + <g + id="g1031"> + <g + id="g1135" + transform="translate(2)"> + <path + id="path5939" + style="fill:url(#linearGradient5941);fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 46,2 h 111 l 63,63 v 174 c 0,8.73506 -7.26521,15 -16,15 H 46 c -8.734786,0 -16,-7.26494 -16,-16 V 18 C 30,9.2649563 37.265221,2.0108911 46,2 Z" + sodipodi:nodetypes="sccssssss" /> + <path + id="path5956" + style="fill:#96d4ef;fill-opacity:1;stroke:none;stroke-width:0.744908;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="M 218,172 32,219 v 19 c 0,7.73556 6.264682,14 14,14 h 158 c 7.73527,0 14.04264,-5.26456 14,-13 z M 28.423676,238.37052 v 0.371 c 0,2.2665 0.492013,4.40655 1.345782,6.35064 -0.85761,-2.07323 -1.345782,-4.33886 -1.345782,-6.72164 z" + sodipodi:nodetypes="ccssssccscc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,51 H 63" + id="path878" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,71 H 63" + id="path953" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,91 H 63" + id="path955" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,111 H 63" + id="path957" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,131 H 63" + id="path959" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;stroke:#96d4ef;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + d="M 186,151 H 63" + id="path961" + sodipodi:nodetypes="cc" /> + <path + id="path5943" + style="fill:#ffffff;fill-opacity:1;stroke:#bebebe;stroke-width:4;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" + d="m 156,2 v 47 c 0,8.735013 7.26484,16.012659 16,16 h 48 z" + sodipodi:nodetypes="csscc" /> + <g + id="path1105" + style="opacity:1" /> + </g> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1260);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 35.62501,112 H 114.375 c 13.08824,0 23.62501,10.55933 23.62501,23.67564 V 214.5944 C 138.00001,227.71071 127.46324,238 114.375,238 H 35.62501 C 22.53675,238 12,227.71071 12,214.5944 V 135.67564 C 12,122.55933 22.53675,112 35.62501,112 Z" + id="path971" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000" + d="M 35.625,111 C 21.998888,111 11,122.02392 11,135.67578 v 78.91797 C 11,228.24561 22.012642,239 35.625,239 h 78.75 C 127.98734,239 139,228.24562 139,214.59375 V 135.67578 C 139,122.02392 128.00109,111 114.375,111 Z m 0,2 h 78.75 C 126.92539,113 137,123.09503 137,135.67578 v 78.91797 C 137,227.1745 126.93914,237 114.375,237 H 35.625 C 23.060838,237 13,227.17451 13,214.59375 V 135.67578 C 13,123.09503 23.074592,113 35.625,113 Z" + id="path969" /> + <g + id="g987" + style="stroke:#1a81c4;stroke-opacity:1"> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,200 h 20" + id="path975" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,200 h 4" + id="path977" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 100,216 h 20" + id="path979" + sodipodi:nodetypes="cc" /> + <path + style="fill:#96d4ef;fill-opacity:1;stroke:#1a81c4;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 80,216 h 4" + id="path981" + sodipodi:nodetypes="cc" /> + </g> + <path + style="fill:#39b4ea;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 64,132 40,176 H 88 Z" + id="path989" + sodipodi:nodetypes="cccc" /> + <circle + style="fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path991" + cx="44" + cy="152" + r="16" /> + </g> +</svg> diff --git a/resources/linux/mime/kicad-kicad.xml.in b/resources/linux/mime/kicad-kicad.xml.in index f5b768e57c..206018a769 100644 --- a/resources/linux/mime/kicad-kicad.xml.in +++ b/resources/linux/mime/kicad-kicad.xml.in @@ -36,4 +36,46 @@ <match type="string" offset="0" value="PCBNEW-BOARD"/> </magic> </mime-type> + <mime-type type="application/x-kicad-footprint"> + <sub-class-of type="text/plain"/> + <comment>KiCad Footprint</comment> + <generic-icon name="@KICAD_MIME_ICON_PREFIX@application-x-kicad-footprint"/> + <glob pattern="*.kicad_mod" weight="50"/> + <magic priority="50"> + <!--The new fp file (.kicad_mod) header--> + <match type="string" offset="0" value="(footprint"/> + </magic> + <magic priority="40"> + <!--The old board file (.mod) header--> + <match type="string" offset="0" value="PCBNEW-LibModule"/> + </magic> + </mime-type> + <mime-type type="application/x-kicad-symbol"> + <sub-class-of type="text/plain"/> + <comment>KiCad Schematic Symbol</comment> + <generic-icon name="@KICAD_MIME_ICON_PREFIX@application-x-kicad-symbol"/> + <glob pattern="*.kicad_sym" weight="50"/> + <magic priority="50"> + <!--The new sym file (.kicad_sym) header--> + <match type="string" offset="0" value="(kicad_symbol_lib"/> + </magic> + <magic priority="40"> + <!--The old sym lib file (.lib) header--> + <match type="string" offset="0" value="EESchema-LIBRARY"/> + </magic> + </mime-type> + <mime-type type="application/x-kicad-worksheet"> + <sub-class-of type="text/plain"/> + <comment>KiCad Drawing Sheet</comment> + <generic-icon name="@KICAD_MIME_ICON_PREFIX@application-x-kicad-worksheet"/> + <glob pattern="*.kicad_wks" weight="50"/> + <magic priority="50"> + <!--The new wks file (.kicad_wks) header--> + <match type="string" offset="0" value="(kicad_wks"/> + </magic> + <magic priority="40"> + <!--The old style worksheet file header--> + <match type="string" offset="0" value="(page_layout"/> + </magic> + </mime-type> </mime-info>