{"id":7117,"date":"2022-12-20T19:35:32","date_gmt":"2022-12-20T22:35:32","guid":{"rendered":"http:\/\/lode.uno\/linux-man\/index.php\/2022\/12\/20\/ctime-man3\/"},"modified":"2022-12-20T19:35:32","modified_gmt":"2022-12-20T22:35:32","slug":"ctime-man3","status":"publish","type":"post","link":"https:\/\/lode.uno\/linux-man\/2022\/12\/20\/ctime-man3\/","title":{"rendered":"CTIME (man3)"},"content":{"rendered":"<h1 align=\"center\">CTIME<\/h1>\n<p> <a href=\"#NAME\">NAME<\/a><br \/> <a href=\"#SYNOPSIS\">SYNOPSIS<\/a><br \/> <a href=\"#DESCRIPTION\">DESCRIPTION<\/a><br \/> <a href=\"#RETURN VALUE\">RETURN VALUE<\/a><br \/> <a href=\"#ERRORS\">ERRORS<\/a><br \/> <a href=\"#ATTRIBUTES\">ATTRIBUTES<\/a><br \/> <a href=\"#CONFORMING TO\">CONFORMING TO<\/a><br \/> <a href=\"#NOTES\">NOTES<\/a><br \/> <a href=\"#SEE ALSO\">SEE ALSO<\/a><br \/> <a href=\"#COLOPHON\">COLOPHON<\/a> <\/p>\n<hr>\n<h2>NAME <a name=\"NAME\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">asctime, ctime, gmtime, localtime, mktime, asctime_r, ctime_r, gmtime_r, localtime_r \u2212 transform date and time to broken-down time or ASCII<\/p>\n<h2>SYNOPSIS <a name=\"SYNOPSIS\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>#include <time.h><\/b><\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>char *asctime(const struct tm *<\/b><i>tm<\/i><b>); <br \/> char *asctime_r(const struct tm *<\/b><i>tm<\/i><b>, char *<\/b><i>buf<\/i><b>);<\/b><\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>char *ctime(const time_t *<\/b><i>timep<\/i><b>); <br \/> char *ctime_r(const time_t *<\/b><i>timep<\/i><b>, char *<\/b><i>buf<\/i><b>);<\/b><\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>struct tm *gmtime(const time_t *<\/b><i>timep<\/i><b>); <br \/> struct tm *gmtime_r(const time_t *<\/b><i>timep<\/i><b>, struct tm *<\/b><i>result<\/i><b>);<\/b><\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>struct tm *localtime(const time_t *<\/b><i>timep<\/i><b>); <br \/> struct tm *localtime_r(const time_t *<\/b><i>timep<\/i><b>, struct tm *<\/b><i>result<\/i><b>);<\/b><\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>time_t mktime(struct tm *<\/b><i>tm<\/i><b>);<\/b><\/p>\n<p style=\"margin-left:5%; margin-top: 1em\">Feature Test Macro Requirements for glibc (see <b>feature_test_macros<\/b>(7)):<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>asctime_r<\/b>(), <b>ctime_r<\/b>(), <b>gmtime_r<\/b>(), <b>localtime_r<\/b>():<\/p>\n<p style=\"margin-left:22%;\">_POSIX_C_SOURCE <br \/> || \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Glibc versions <= 2.19: bodies\/ usr\/ _BSD_SOURCE || _SVID_SOURCE<\/p>\n<h2>DESCRIPTION <a name=\"DESCRIPTION\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">The <b>ctime<\/b>(), <b>gmtime<\/b>(), and <b>localtime<\/b>() functions all take an argument of data type <i>time_t<\/i>, which represents calendar time. When interpreted as an absolute time value, it represents the number of seconds elapsed since the Epoch, 1970-01-01 00:00:00 +0000 (UTC).<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <b>asctime<\/b>() and <b>mktime<\/b>() functions both take an argument representing broken-down time, which is a representation separated into year, month, day, and so on.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">Broken-down time is stored in the structure <i>tm<\/i>, which is defined in <i><time.h><\/i> as follows:<\/p>\n<p style=\"margin-left:17%; margin-top: 1em\">struct tm { <br \/> int tm_sec; \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Seconds (0\u221260) bodies\/ usr\/ <br \/> int tm_min; \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Minutes (0\u221259) bodies\/ usr\/ <br \/> int tm_hour; \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Hours (0\u221223) bodies\/ usr\/ <br \/> int tm_mday; \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Day of the month (1\u221231) bodies\/ usr\/ <br \/> int tm_mon; \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Month (0\u221211) bodies\/ usr\/ <br \/> int tm_year; \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Year \u2212 1900 bodies\/ usr\/ <br \/> int tm_wday; \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Day of the week (0\u22126, Sunday = 0) bodies\/ usr\/ <br \/> int tm_yday; \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Day in the year (0\u2212365, 1 Jan = 0) bodies\/ usr\/ <br \/> int tm_isdst; \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Daylight saving time bodies\/ usr\/ <br \/> };<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The members of the <i>tm<\/i> structure are:<\/p>\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\" cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"12%\">\n<p><i>tm_sec<\/i><\/p>\n<\/td>\n<td width=\"3%\"><\/td>\n<td width=\"74%\">\n<p>The number of seconds after the minute, normally in the range 0 to 59, but can be up to 60 to allow for leap seconds.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"12%\">\n<p><i>tm_min<\/i><\/p>\n<\/td>\n<td width=\"3%\"><\/td>\n<td width=\"74%\">\n<p>The number of minutes after the hour, in the range 0 to 59.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"12%\">\n<p><i>tm_hour<\/i><\/p>\n<\/td>\n<td width=\"3%\"><\/td>\n<td width=\"74%\">\n<p>The number of hours past midnight, in the range 0 to 23.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"12%\">\n<p><i>tm_mday<\/i><\/p>\n<\/td>\n<td width=\"3%\"><\/td>\n<td width=\"74%\">\n<p>The day of the month, in the range 1 to 31.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"12%\">\n<p><i>tm_mon<\/i><\/p>\n<\/td>\n<td width=\"3%\"><\/td>\n<td width=\"74%\">\n<p>The number of months since January, in the range 0 to 11.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"12%\">\n<p><i>tm_year<\/i><\/p>\n<\/td>\n<td width=\"3%\"><\/td>\n<td width=\"74%\">\n<p>The number of years since 1900.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"12%\">\n<p><i>tm_wday<\/i><\/p>\n<\/td>\n<td width=\"3%\"><\/td>\n<td width=\"74%\">\n<p>The number of days since Sunday, in the range 0 to 6.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"12%\">\n<p><i>tm_yday<\/i><\/p>\n<\/td>\n<td width=\"3%\"><\/td>\n<td width=\"74%\">\n<p>The number of days since January 1, in the range 0 to 365.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"12%\">\n<p><i>tm_isdst<\/i><\/p>\n<\/td>\n<td width=\"3%\"><\/td>\n<td width=\"74%\">\n<p>A flag that indicates whether daylight saving time is in effect at the time described. The value is positive if daylight saving time is in effect, zero if it is not, and negative if the information is not available.<\/p>\n<\/td>\n<\/tr>\n<\/table>\n<p style=\"margin-left:11%; margin-top: 1em\">The call <b>ctime(<\/b><i>t<\/i><b>)<\/b> is equivalent to <b>asctime(localtime(<\/b><i>t<\/i><b>))<\/b>. It converts the calendar time <i>t<\/i> into a null-terminated string of the form<\/p>\n<p style=\"margin-left:17%; margin-top: 1em\">&#8220;Wed Jun 30 21:49:08 1993n&#8221;<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The abbreviations for the days of the week are &#8220;Sun&#8221;, &#8220;Mon&#8221;, &#8220;Tue&#8221;, &#8220;Wed&#8221;, &#8220;Thu&#8221;, &#8220;Fri&#8221;, and &#8220;Sat&#8221;. The abbreviations for the months are &#8220;Jan&#8221;, &#8220;Feb&#8221;, &#8220;Mar&#8221;, &#8220;Apr&#8221;, &#8220;May&#8221;, &#8220;Jun&#8221;, &#8220;Jul&#8221;, &#8220;Aug&#8221;, &#8220;Sep&#8221;, &#8220;Oct&#8221;, &#8220;Nov&#8221;, and &#8220;Dec&#8221;. The return value points to a statically allocated string which might be overwritten by subsequent calls to any of the date and time functions. The function also sets the external variables <i>tzname<\/i>, <i>timezone<\/i>, and <i>daylight<\/i> (see <b>tzset<\/b>(3)) with information about the current timezone. The reentrant version <b>ctime_r<\/b>() does the same, but stores the string in a user-supplied buffer which should have room for at least 26 bytes. It need not set <i>tzname<\/i>, <i>timezone<\/i>, and <i>daylight<\/i>.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <b>gmtime<\/b>() function converts the calendar time <i>timep<\/i> to broken-down time representation, expressed in Coordinated Universal Time (UTC). It may return NULL when the year does not fit into an integer. The return value points to a statically allocated struct which might be overwritten by subsequent calls to any of the date and time functions. The <b>gmtime_r<\/b>() function does the same, but stores the data in a user-supplied struct.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <b>localtime<\/b>() function converts the calendar time <i>timep<\/i> to broken-down time representation, expressed relative to the user\u2019s specified timezone. The function acts as if it called <b>tzset<\/b>(3) and sets the external variables <i>tzname<\/i> with information about the current timezone, <i>timezone<\/i> with the difference between Coordinated Universal Time (UTC) and local standard time in seconds, and <i>daylight<\/i> to a nonzero value if daylight savings time rules apply during some part of the year. The return value points to a statically allocated struct which might be overwritten by subsequent calls to any of the date and time functions. The <b>localtime_r<\/b>() function does the same, but stores the data in a user-supplied struct. It need not set <i>tzname<\/i>, <i>timezone<\/i>, and <i>daylight<\/i>.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <b>asctime<\/b>() function converts the broken-down time value <i>tm<\/i> into a null-terminated string with the same format as <b>ctime<\/b>(). The return value points to a statically allocated string which might be overwritten by subsequent calls to any of the date and time functions. The <b>asctime_r<\/b>() function does the same, but stores the string in a user-supplied buffer which should have room for at least 26 bytes.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <b>mktime<\/b>() function converts a broken-down time structure, expressed as local time, to calendar time representation. The function ignores the values supplied by the caller in the <i>tm_wday<\/i> and <i>tm_yday<\/i> fields. The value specified in the <i>tm_isdst<\/i> field informs <b>mktime<\/b>() whether or not daylight saving time (DST) is in effect for the time supplied in the <i>tm<\/i> structure: a positive value means DST is in effect; zero means that DST is not in effect; and a negative value means that <b>mktime<\/b>() should (use timezone information and system databases to) attempt to determine whether DST is in effect at the specified time.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <b>mktime<\/b>() function modifies the fields of the <i>tm<\/i> structure as follows: <i>tm_wday<\/i> and <i>tm_yday<\/i> are set to values determined from the contents of the other fields; if structure members are outside their valid interval, they will be normalized (so that, for example, 40 October is changed into 9 November); <i>tm_isdst<\/i> is set (regardless of its initial value) to a positive value or to 0, respectively, to indicate whether DST is or is not in effect at the specified time. Calling <b>mktime<\/b>() also sets the external variable <i>tzname<\/i> with information about the current timezone.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">If the specified broken-down time cannot be represented as calendar time (seconds since the Epoch), <b>mktime<\/b>() returns <i>(time_t)\u00a0\u22121<\/i> and does not alter the members of the broken-down time structure.<\/p>\n<h2>RETURN VALUE <a name=\"RETURN VALUE\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">On success, <b>gmtime<\/b>() and <b>localtime<\/b>() return a pointer to a <i>struct\u00a0tm<\/i>.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">On success, <b>gmtime_r<\/b>() and <b>localtime_r<\/b>() return the address of the structure pointed to by <i>result<\/i>.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">On success, <b>asctime<\/b>() and <b>ctime<\/b>() return a pointer to a string.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">On success, <b>asctime_r<\/b>() and <b>ctime_r<\/b>() return a pointer to the string pointed to by <i>buf<\/i>.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">On success, <b>mktime<\/b>() returns the calendar time (seconds since the Epoch), expressed as a value of type <i>time_t<\/i>.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">On error, <b>mktime<\/b>() returns the value <i>(time_t)\u00a0-1<\/i>. The remaining functions return NULL on error. On error, <i>errno<\/i> is set to indicate the cause of the error.<\/p>\n<h2>ERRORS <a name=\"ERRORS\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>EOVERFLOW<\/b><\/p>\n<p style=\"margin-left:22%;\">The result cannot be represented.<\/p>\n<h2>ATTRIBUTES <a name=\"ATTRIBUTES\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">For an explanation of the terms used in this section, see <b>attributes<\/b>(7).<\/p>\n<p align=\"center\" style=\"margin-top: 1em\"><img decoding=\"async\" src=\"grohtml-1606811.png\" alt=\"Image grohtml-1606811.png\"><\/p>\n<h2>CONFORMING TO <a name=\"CONFORMING TO\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">POSIX.1-2001. C89 and C99 specify <b>asctime<\/b>(), <b>ctime<\/b>(), <b>gmtime<\/b>(), <b>localtime<\/b>(), and <b>mktime<\/b>(). POSIX.1-2008 marks <b>asctime<\/b>(), <b>asctime_r<\/b>(), <b>ctime<\/b>(), and <b>ctime_r<\/b>() as obsolete, recommending the use of <b>strftime<\/b>(3) instead.<\/p>\n<h2>NOTES <a name=\"NOTES\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">The four functions <b>asctime<\/b>(), <b>ctime<\/b>(), <b>gmtime<\/b>(), and <b>localtime<\/b>() return a pointer to static data and hence are not thread-safe. The thread-safe versions, <b>asctime_r<\/b>(), <b>ctime_r<\/b>(), <b>gmtime_r<\/b>(), and <b>localtime_r<\/b>(), are specified by SUSv2.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">POSIX.1-2001 says: &#8220;The <b>asctime<\/b>(), <b>ctime<\/b>(), <b>gmtime<\/b>(), and <b>localtime<\/b>() functions shall return values in one of two static objects: a broken-down time structure and an array of type <i>char<\/i>. Execution of any of the functions may overwrite the information returned in either of these objects by any of the other functions.&#8221; This can occur in the glibc implementation.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">In many implementations, including glibc, a 0 in <i>tm_mday<\/i> is interpreted as meaning the last day of the preceding month.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The glibc version of <i>struct tm<\/i> has additional fields<\/p>\n<p style=\"margin-left:17%; margin-top: 1em\">const char *tm_zone; \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Timezone abbreviation *\/<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">defined when <b>_BSD_SOURCE<\/b> was set before including <i><time.h><\/i>. This is a BSD extension, present in 4.3BSD-Reno.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">According to POSIX.1-2001, <b>localtime<\/b>() is required to behave as though <b>tzset<\/b>(3) was called, while <b>localtime_r<\/b>() does not have this requirement. For portable code, <b>tzset<\/b>(3) should be called before <b>localtime_r<\/b>().<\/p>\n<h2>SEE ALSO <a name=\"SEE ALSO\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>date<\/b>(1), <b>gettimeofday<\/b>(2), <b>time<\/b>(2), <b>utime<\/b>(2), <b>clock<\/b>(3), <b>difftime<\/b>(3), <b>strftime<\/b>(3), <b>strptime<\/b>(3), <b>timegm<\/b>(3), <b>tzset<\/b>(3), <b>time<\/b>(7)<\/p>\n<h2>COLOPHON <a name=\"COLOPHON\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">This page is part of release 5.10 of the Linux <i>man-pages<\/i> project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https:\/\/www.kernel.org\/doc\/man\u2212pages\/.<\/p>\n<hr>\n","protected":false},"excerpt":{"rendered":"<p>  asctime, ctime, gmtime, localtime, mktime, asctime_r, ctime_r, gmtime_r, localtime_r \u2212 transform date and time to broken-down time or ASCII <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2536],"tags":[2538,1759,3007],"class_list":["post-7117","post","type-post","status-publish","format-standard","hentry","category-3-llamadas-de-bibliotecas","tag-2538","tag-ctime","tag-man3"],"gutentor_comment":0,"_links":{"self":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts\/7117","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/comments?post=7117"}],"version-history":[{"count":0,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts\/7117\/revisions"}],"wp:attachment":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/media?parent=7117"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/categories?post=7117"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/tags?post=7117"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}