{"id":1759,"date":"2026-08-12T01:22:49","date_gmt":"2026-08-11T16:22:49","guid":{"rendered":"https:\/\/blog.kifuyu.net\/?p=1759"},"modified":"2026-08-12T01:22:50","modified_gmt":"2026-08-11T16:22:50","slug":"tang-nano-20k%e3%81%a7l%e3%83%81%e3%82%ab%e3%82%92%e3%82%84%e3%81%a3%e3%81%a6%e3%81%bf%e3%82%8b","status":"publish","type":"post","link":"https:\/\/blog.kifuyu.net\/?p=1759","title":{"rendered":"Tang Nano 20K\u3067L\u30c1\u30ab\u3092\u3084\u3063\u3066\u307f\u308b"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">\u3068\u308a\u3042\u3048\u305a\u59cb\u3081\u3066\u307f\u308b<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000FPGA\u3063\u3066\u306a\u306b\u304c\u3067\u304d\u308b\u306e\uff1f\u305d\u3082\u305d\u3082\u4f55\u304b\u3089\u59cb\u3081\u308c\u3070\u3044\u3044\u306e\uff1f\uff1f\u3068\u77e2\u7d99\u304e\u65e9\u306b\u751f\u307e\u308c\u308b\u7591\u554f\u306f\u305d\u306e\u307e\u307e\u306b\u3001\u3068\u308a\u3042\u3048\u305aLED\u3092\u70b9\u6ec5\u3055\u305b\u308b\u3068\u3053\u308d\u304b\u3089\u59cb\u3081\u3066\u307f\u308b\u3002<br>Tang Nano20k\u306f\u5143\u3005\u66f8\u304d\u8fbc\u307e\u308c\u305f\u547d\u4ee4\u306b\u5f93\u3063\u3066\u304b\u3001MacBook\u3068\u63a5\u7d9a\u3059\u308b\u3068\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30a6\u30a3\u30f3\u30ab\u30fc\u306e\u3088\u3046\u306bLED\u3092\u5149\u3089\u305b\u3066\u3044\u308b\u3002<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">[tang nano 9k \u305d\u306e1] \u516c\u5f0f\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306bL\u30c1\u30ab\u3055\u305b\u3066\u3082\u3089\u3063\u305f<br><a href=\"https:\/\/qiita.com\/haihuiliyuyuan\/items\/b6c89b5295411b5ed70d\">https:\/\/qiita.com\/haihuiliyuyuan\/items\/b6c89b5295411b5ed70d<\/a><\/p>\n<\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Tang nano 9K\u3092\u4f7f\u3044\u305f\u3044(1)<br><a href=\"https:\/\/zenn.dev\/nihinihikun\/articles\/87066301959b48\">https:\/\/zenn.dev\/nihinihikun\/articles\/87066301959b48<\/a><\/p>\n<\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Tang Nano 20K Blink led<br><a href=\"https:\/\/wiki.sipeed.com\/hardware\/en\/tang\/tang-nano-20k\/example\/led.html\">https:\/\/wiki.sipeed.com\/hardware\/en\/tang\/tang-nano-20k\/example\/led.html<\/a><\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">\u7fd2\u3046\u3088\u308a\u6163\u308c\u308d\u306e\u7cbe\u795e\u3067\u3001\u3068\u308a\u3042\u3048\u305a\u53c2\u8003\u30da\u30fc\u30b8\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u30b3\u30d4\u30da\u3057\u3066\u307f\u308b\u3002\uff08<a href=\"https:\/\/qiita.com\/haihuiliyuyuan\">haihuiliyuyuan<\/a>\u3055\u3093\u3001\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\uff01\uff09<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nmodule led(\n    input sys_clk,          \/\/ clk input\n    input sys_rst_n,        \/\/ reset input\n    output reg &#x5B;5:0] led    \/\/6 LEDs Pin\n);\n\nreg &#x5B;23:0] counter;\n\nalways @(posedge sys_clk or negedge sys_rst_n) begin\n    if (!sys_rst_n)\n        counter &amp;lt;= 24&#039;d0;\n    else if (counter &amp;lt; 24&#039;d1349_9999)\n        counter &amp;lt;= counter + 1&#039;b1;\n    else\n        counter &amp;lt;= 24&#039;d0;\nend\nalways @(posedge sys_clk or negedge sys_rst_n) begin \/\/ Toggle LED\n    if (!sys_rst_n)\n        led &amp;lt;= 6&#039;b111110;\n    else if (counter == 24&#039;d1349_9999)       \/\/ 0.5s delay\n        led&#x5B;5:0] &amp;lt;= {led&#x5B;4:0], led&#x5B;5]};                         \/\/ ToggleLED\n    else\n        led &amp;lt;= led;\nend\n\nendmodule\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">Gowin\u306e\u5b9f\u884c\u7d50\u679c\u30a6\u30a3\u30f3\u30c9\u30a6\uff08\u30b3\u30f3\u30bd\u30fc\u30eb\u753b\u9762\uff09\u306b\u306f\u8d64\u6587\u5b57\u8868\u8a18\u304c\u305a\u3089\u305a\u3089\u73fe\u308c\u308b\u2026\u3002\u4f55\u3053\u308c\uff1f\uff1f<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nERROR  (CT1136) : Bank 6 vccio(3.3) is locked by other constraint or embedded port, conflicting BANK_VCCIO set by &#039;led_5_obuf&#039; : IO_TYPE = LVCMOS18 in the same bank\nERROR  (CT1136) : Bank 6 vccio(3.3) is locked by other constraint or embedded port, conflicting BANK_VCCIO set by &#039;led_4_obuf&#039; : IO_TYPE = LVCMOS18 in the same bank\nERROR  (CT1136) : Bank 6 vccio(3.3) is locked by other constraint or embedded port, conflicting BANK_VCCIO set by &#039;led_3_obuf&#039; : IO_TYPE = LVCMOS18 in the same bank\nERROR  (CT1136) : Bank 6 vccio(3.3) is locked by other constraint or embedded port, conflicting BANK_VCCIO set by &#039;led_2_obuf&#039; : IO_TYPE = LVCMOS18 in the same bank\nERROR  (CT1136) : Bank 6 vccio(3.3) is locked by other constraint or embedded port, conflicting BANK_VCCIO set by &#039;led_1_obuf&#039; : IO_TYPE = LVCMOS18 in the same bank\nERROR  (CT1136) : Bank 6 vccio(3.3) is locked by other constraint or embedded port, conflicting BANK_VCCIO set by &#039;led_0_obuf&#039; : IO_TYPE = LVCMOS18 in the same bank\nERROR  (CT1136) : Bank 3 vccio(3.3) is locked by other constraint or embedded port, conflicting BANK_VCCIO set by &#039;sys_rst_n_ibuf&#039; : IO_TYPE = LVCMOS18 in the same bank\nERROR  (CT1136) : Bank 7 vccio(3.3) is locked by other constraint or embedded port, conflicting BANK_VCCIO set by &#039;sys_clk_ibuf&#039; : IO_TYPE = LVCMOS18 in the same bank\nPhysical Constraint parsed completed with errors\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">\u5143\u3005\u57fa\u677f\u4e0a\u306b\u4e57\u3063\u3066\u308bLED\u306e\u96fb\u5727\u306f3.3V\u306e\u3068\u3053\u308d\u3001\u81ea\u5206\u3067\u5b9a\u7fa9\u3057\u305f\u96fb\u5727\u304c1.8V\u3060\u3063\u305f\u305f\u3081\u306b\u751f\u3058\u305f\u3089\u3057\u3044\u3002<br>\u8981\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u307e\u307e\u3060\u3063\u305f\u306e\u3067\u4fee\u6b63\u304c\u5fc5\u8981\u3002<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"168\" src=\"https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/IO-type-1024x168.png\" alt=\"\" class=\"wp-image-1764\" srcset=\"https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/IO-type-1024x168.png 1024w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/IO-type-300x49.png 300w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/IO-type-768x126.png 768w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/IO-type-1536x252.png 1536w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/IO-type.png 1920w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">LED\u306eIO Type\u3092LVCMOS<mark style=\"background-color:#ff6900\" class=\"has-inline-color\">18<\/mark>\u304b\u3089LVCMOS<mark style=\"background-color:#ff6900\" class=\"has-inline-color\">33<\/mark>\u3078\u5909\u66f4\u3057\u3066\u307f\u308b\u3002\u4eca\u5ea6\u306fLED\u7d61\u307f\u306e\u30a8\u30e9\u30fc\u8868\u793a\u304c\u6d88\u3048\u3066\u304f\u308c\u305f\u3002<br>\u4eca\u5ea6\u306f\u3046\u307e\u304f\u3044\u304d\u305d\u3046\u3002<br>\u6b8b\u3059\u306fsys_rst_n\u3068sys_clk\u306e\u307f\u3067\u3042\u308b\u3002\u3053\u308c\u3089\u3082\u540c\u3058\u3088\u3046\u306b3.3V\u3078\u5909\u66f4\u3057\u3066\u307f\u308b\u3002<br>\u4eca\u5ea6\u306f\u4eca\u307e\u3067\u3068\u9055\u3046\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u8868\u793a\u3055\u308c\u305f\u3002\u30d4\u30f3\u9593\u9055\u3048\u3092\u3057\u3066\u3044\u308b\u307f\u305f\u3044\u3067\u3042\u308b\u3002<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nERROR  (PR2028) : The constrained location is useless in current package\nERROR  (PR2017) : &#039;sys_rst_n&#039; cannot be placed according to constraint, for the location is a dedicated pin (SSPI)\n<\/pre><\/div>\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"947\" src=\"https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/tangnano20k_sch_3923-1024x947.jpg\" alt=\"\" class=\"wp-image-1767\" srcset=\"https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/tangnano20k_sch_3923-1024x947.jpg 1024w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/tangnano20k_sch_3923-300x277.jpg 300w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/tangnano20k_sch_3923-768x710.jpg 768w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/tangnano20k_sch_3923-1536x1420.jpg 1536w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/tangnano20k_sch_3923.jpg 1612w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Screenshot<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">\u306a\u308b\u307b\u3069\u3002\u53c2\u7167\u3057\u3066\u3044\u305f\u30da\u30fc\u30b8\u3067\u306fTang Nano 9K\u3092\u30c6\u30fc\u30de\u3068\u3059\u308b\u8a18\u4e8b\u3060\u3063\u305f\u306e\u3067\u3001\u305d\u306e\u307e\u307e\u8e0f\u8972\u3057\u305f\u305b\u3044\u3067\u30a8\u30e9\u30fc\u304c\u751f\u3058\u3066\u3044\u305f\u307f\u305f\u3044\u3002<br>\u56de\u8def\u56f3\u4e2d\u306e\u5272\u308a\u5f53\u3066\u30d4\u30f3\u3092\u78ba\u8a8d\u3059\u308b\u3068\u30af\u30ed\u30c3\u30af\u306e\u5165\u529b\uff08sys_clk\uff09\u306f4\u756a\u3067\u3042\u3063\u305f\u3002<br>\u307e\u305f\u57fa\u677f\u4e0a\u306e\u30bf\u30af\u30c8\u30b9\u30a4\u30c3\u30c1\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046\u3068\u601d\u3044\u3001\u30ea\u30bb\u30c3\u30c8\u306e\u5165\u529b\uff08sys_rst_n\uff09\u306f87\u756a\u3068\u3057\u305f\u3002<br>\u6539\u3081\u3066Place\uff06Route\u3092\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u3001\u4eca\u5ea6\u306f\u8d64\u3044\u30a8\u30e9\u30fc\u304c\u6d88\u3048\u3066\u304f\u308c\u305f\u3002<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"182\" src=\"https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/io-constrains-1024x182.png\" alt=\"\" class=\"wp-image-1768\" srcset=\"https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/io-constrains-1024x182.png 1024w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/io-constrains-300x53.png 300w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/io-constrains-768x137.png 768w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/io-constrains-1536x274.png 1536w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/io-constrains.png 1920w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3093\u3067\u307f\u308b<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Double click\u00a0<mark style=\"background-color:#abb8c3\" class=\"has-inline-color\">Program Device<\/mark>\u00a0to run the Programmer program\u3001\u3068\u3042\u308b\u306e\u3067\u6cbf\u3063\u3066\u9032\u3081\u3066\u307f\u308b\u3002<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"727\" src=\"https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/cable-setting-1024x727.jpg\" alt=\"\" class=\"wp-image-1769\" srcset=\"https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/cable-setting-1024x727.jpg 1024w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/cable-setting-300x213.jpg 300w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/cable-setting-768x546.jpg 768w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/cable-setting-1536x1091.jpg 1536w, https:\/\/blog.kifuyu.net\/wp-content\/uploads\/2026\/08\/cable-setting.jpg 1906w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Screenshot<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">\u3068\u308a\u3042\u3048\u305aPC\u5074\u3068TangNano\u306f\u7e4b\u304c\u3063\u3066\u3044\u308b\u307f\u305f\u3044\u3060\u3002\u4f55\u3082\u89e6\u3089\u305a\u3001Save\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u3066\u5148\u306b\u9032\u3081\u3066\u307f\u308b\u3002<br>\u306a\u304a\u3001Operation\u306e\u9805\u76ee\u306b\u3064\u3044\u3066\u306f\u516c\u5f0fWiki\u3067\u4e0b\u8a18\u306e\u3088\u3046\u306b\u66f8\u3044\u3066\u3042\u308b\u3002<br>\u3088\u304f\u308f\u304b\u3089\u306a\u3044\u3060\u3051\u306b\u3001\u5909\u306b\u4fdd\u5b58\u3055\u308c\u3066\u518d\u8d77\u4e0d\u80fd\u306b\u306a\u308b\u306e\u3060\u3051\u306f\u907f\u3051\u305f\u3044\u306e\u3067\u3001\u30c7\u30d5\u30a9\u30eb\u30c8\u306eSRAM Program\uff08\u96fb\u6e90\u5207\u3063\u305f\u3089\u66f8\u304d\u8fbc\u3093\u3060\u30c7\u30fc\u30bf\u6d88\u3048\u308b\uff09\u3092\u9078\u3093\u3067\u304a\u304f\u3002<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">5.2. Burn to SRAM#<br>Normally this mode is used to verify biststream.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Because of its fast burning characteristics so the use of more, but of course the power will lose data, so if you want to power on the running program you can&#8217;t choose this mode.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Click the function box below Operation to open the device configuration interface, then select the SRAM Mode option in Access Mode to set to download to SRAM, and finally click the three dots box below to select our generated .fs bitstream file . Generally speaking, bitstream firmware file is in the impl -> pnr directory.<br><a href=\"https:\/\/wiki.sipeed.com\/hardware\/en\/tang\/tang-nano-20k\/example\/led.html\">https:\/\/wiki.sipeed.com\/hardware\/en\/tang\/tang-nano-20k\/example\/led.html<\/a><\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">\u66f8\u304d\u8fbc\u307f\u5b9f\u884c\u3059\u308b\u3068\u3001LED\u306e\u4e00\u3064\u304c\u70b9\u706f\u3059\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3002<br>S2\u3092\u9577\u62bc\u3057\u3057\u3066\u307f\u308b\u3068\uff11\u3064\u3060\u3051\u3057\u304b\u70b9\u706f\u3057\u3066\u3044\u306a\u304b\u3063\u305fLED\u304c\u7d9a\u3005\u3068\u70b9\u706f\u3059\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3002\u30b9\u30a4\u30c3\u30c1\u304b\u3089\u6307\u3092\u96e2\u3059\u3068\u521d\u671f\u4f4d\u7f6e\u304b\u3089\u70b9\u706f\u3057\u59cb\u3081\u308b\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u304a\u304a\u2026\u591a\u5206\u53c2\u8003\u306b\u3057\u305f\u30d7\u30ed\u30b0\u30e9\u30e0\u306f\u8d70\u3063\u3066\u307d\u3044\u305e\uff1f<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u3068\u308a\u3042\u3048\u305a\u59cb\u3081\u3066\u307f\u308b \u3000FPGA\u3063\u3066\u306a\u306b\u304c\u3067\u304d\u308b\u306e\uff1f\u305d\u3082\u305d\u3082\u4f55\u304b\u3089\u59cb\u3081\u308c\u3070\u3044\u3044\u306e\uff1f\uff1f\u3068\u77e2\u7d99\u304e\u65e9\u306b\u751f\u307e\u308c\u308b\u7591\u554f\u306f\u305d\u306e\u307e\u307e\u306b\u3001\u3068\u308a\u3042\u3048\u305aLED\u3092\u70b9\u6ec5\u3055\u305b\u308b\u3068\u3053\u308d\u304b\u3089\u59cb\u3081\u3066\u307f\u308b\u3002Tang Nano20k\u306f\u5143\u3005\u66f8\u304d\u8fbc\u307e\u308c\u305f\u547d\u4ee4\u306b [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_locale":"ja","_original_post":"https:\/\/blog.kifuyu.net\/?p=1759","footnotes":""},"categories":[15],"tags":[],"class_list":["post-1759","post","type-post","status-publish","format-standard","hentry","category-15","ja"],"_links":{"self":[{"href":"https:\/\/blog.kifuyu.net\/index.php?rest_route=\/wp\/v2\/posts\/1759","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.kifuyu.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.kifuyu.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.kifuyu.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.kifuyu.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1759"}],"version-history":[{"count":10,"href":"https:\/\/blog.kifuyu.net\/index.php?rest_route=\/wp\/v2\/posts\/1759\/revisions"}],"predecessor-version":[{"id":1774,"href":"https:\/\/blog.kifuyu.net\/index.php?rest_route=\/wp\/v2\/posts\/1759\/revisions\/1774"}],"wp:attachment":[{"href":"https:\/\/blog.kifuyu.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1759"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.kifuyu.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1759"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.kifuyu.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1759"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}