diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..d87f5613ec4234f82f8eaeebc563711f587fdf88 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.xz filter=lfs diff=lfs merge=lfs -text diff --git a/.lfsconfig b/.lfsconfig new file mode 100644 index 0000000000000000000000000000000000000000..3a6e0ec7a9f3b0b60220c0628ac54491bc3a2512 --- /dev/null +++ b/.lfsconfig @@ -0,0 +1,2 @@ +[lfs] + url = https://artlfs.openeuler.openatom.cn/src-openEuler/texlive-base diff --git a/CVE-2023-32700.patch b/CVE-2023-32700.patch deleted file mode 100644 index e194ee7df7f36335547b1c47306fd2068d0296b8..0000000000000000000000000000000000000000 --- a/CVE-2023-32700.patch +++ /dev/null @@ -1,1316 +0,0 @@ -Description: Fix improperly secured shell-escape in LuaTeX -Origin: upstream, https://tug.org/~mseven/luatex.html -Bug-Debian-Security: https://security-tracker.debian.org/tracker/CVE-2023-32700 -Forwarded: no -Last-Update: 2023-05-18 - ---- a/texlive-20210325-source/texk/web2c/luatexdir/lua/loslibext.c -+++ b/texlive-20210325-source/texk/web2c/luatexdir/lua/loslibext.c -@@ -1047,6 +1047,111 @@ static int os_execute(lua_State * L) - } - - -+/* -+** ====================================================== -+** l_kpse_popen spawns a new process connected to the current -+** one through the file streams with some checks by kpse. -+** Almost verbatim from Lua liolib.c . -+** ======================================================= -+*/ -+#if !defined(l_kpse_popen) /* { */ -+ -+#if defined(LUA_USE_POSIX) /* { */ -+ -+#define l_kpse_popen(L,c,m) (fflush(NULL), popen(c,m)) -+#define l_kpse_pclose(L,file) (pclose(file)) -+ -+#elif defined(LUA_USE_WINDOWS) /* }{ */ -+ -+#define l_kpse_popen(L,c,m) (_popen(c,m)) -+#define l_kpse_pclose(L,file) (_pclose(file)) -+ -+#else /* }{ */ -+ -+/* ISO C definitions */ -+#define l_kpse_popen(L,c,m) \ -+ ((void)((void)c, m), \ -+ luaL_error(L, "'popen' not supported"), \ -+ (FILE*)0) -+#define l_kpse_pclose(L,file) ((void)L, (void)file, -1) -+ -+#endif /* } */ -+ -+#endif /* } */ -+typedef luaL_Stream LStream; -+#define tolstream(L) ((LStream *)luaL_checkudata(L, 1, LUA_FILEHANDLE)) -+static LStream *newprefile (lua_State *L) { -+ LStream *p = (LStream *)lua_newuserdata(L, sizeof(LStream)); -+ p->closef = NULL; /* mark file handle as 'closed' */ -+ luaL_setmetatable(L, LUA_FILEHANDLE); -+ return p; -+} -+static int io_kpse_pclose (lua_State *L) { -+ LStream *p = tolstream(L); -+ return luaL_execresult(L, l_kpse_pclose(L, p->f)); -+} -+static int io_kpse_check_permissions(lua_State *L) { -+ const char *filename = luaL_checkstring(L, 1); -+ if (filename == NULL) { -+ lua_pushboolean(L,0); -+ lua_pushliteral(L,"no command name given"); -+ } else if (shellenabledp <= 0) { -+ lua_pushboolean(L,0); -+ lua_pushliteral(L,"all command execution is disabled"); -+ } else if (restrictedshell == 0) { -+ lua_pushboolean(L,1); -+ lua_pushstring(L,filename); -+ } else { -+ char *safecmd = NULL; -+ char *cmdname = NULL; -+ switch (shell_cmd_is_allowed(filename, &safecmd, &cmdname)) { -+ case 0: -+ lua_pushboolean(L,0); -+ lua_pushliteral(L, "specific command execution disabled"); -+ break; -+ case 1: -+ /* doesn't happen */ -+ lua_pushboolean(L,1); -+ lua_pushstring(L,filename); -+ break; -+ case 2: -+ lua_pushboolean(L,1); -+ lua_pushstring(L,safecmd); -+ break; -+ default: -+ /* -1 */ -+ lua_pushboolean(L,0); -+ lua_pushliteral(L, "bad command line quoting"); -+ break; -+ } -+ } -+ return 2; -+} -+static int io_kpse_popen (lua_State *L) { -+ const char *filename = NULL; -+ const char *mode = NULL; -+ LStream *p = NULL; -+ int okay; -+ filename = luaL_checkstring(L, 1); -+ mode = luaL_optstring(L, 2, "r"); -+ lua_pushstring(L,filename); -+ io_kpse_check_permissions(L); -+ filename = luaL_checkstring(L, -1); -+ okay = lua_toboolean(L,-2); -+ if (okay && filename) { -+ p = newprefile(L); -+ luaL_argcheck(L, ((mode[0] == 'r' || mode[0] == 'w') && mode[1] == '\0'), -+ 2, "invalid mode"); -+ p->f = l_kpse_popen(L, filename, mode); -+ p->closef = &io_kpse_pclose; -+ return (p->f == NULL) ? luaL_fileresult(L, 0, filename) : 1; -+ } else { -+ lua_pushnil(L); -+ lua_pushvalue(L,-2); -+ return 2; -+ } -+} -+ - void open_oslibext(lua_State * L) - { - -@@ -1080,6 +1185,8 @@ void open_oslibext(lua_State * L) - lua_setfield(L, -2, "execute"); - lua_pushcfunction(L, os_tmpdir); - lua_setfield(L, -2, "tmpdir"); -+ lua_pushcfunction(L, io_kpse_popen); -+ lua_setfield(L, -2, "kpsepopen"); - - lua_pop(L, 1); /* pop the table */ - } ---- a/texlive-20210325-source/texk/web2c/luatexdir/lua/luatex-core.lua -+++ b/texlive-20210325-source/texk/web2c/luatexdir/lua/luatex-core.lua -@@ -34,7 +34,6 @@ if kpseused == 1 then - local kpse_recordoutputfile = kpse.record_output_file - - local io_open = io.open -- local io_popen = io.popen - local io_lines = io.lines - - local fio_readline = fio.readline -@@ -75,12 +74,6 @@ if kpseused == 1 then - return f - end - -- local function luatex_io_popen(name,...) -- local okay, found = kpse_checkpermission(name) -- if okay and found then -- return io_popen(found,...) -- end -- end - - -- local function luatex_io_lines(name,how) - -- if name then -@@ -130,7 +123,7 @@ if kpseused == 1 then - mt.lines = luatex_io_readline - - io.open = luatex_io_open -- io.popen = luatex_io_popen -+ io.popen = os.kpsepopen - - else - -@@ -169,6 +162,8 @@ if saferoption == 1 then - os.setenv = installdummy("os.setenv") - os.tempdir = installdummy("os.tempdir") - -+ os.kpsepopen = installdummy("os.kpsepopen") -+ - io.popen = installdummy("io.popen") - io.open = installdummy("io.open",luatex_io_open_readonly) - ---- a/texlive-20210325-source/texk/web2c/luatexdir/lua/luatex-core.c -+++ b/texlive-20210325-source/texk/web2c/luatexdir/lua/luatex-core.c -@@ -91,590 +91,579 @@ int load_luatex_core_lua (lua_State * L) - 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, - 0x6e, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x3d, 0x20, 0x69, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, -- 0x63, 0x61, 0x6c, 0x20, 0x69, 0x6f, 0x5f, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x2e, 0x70, -- 0x6f, 0x70, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x69, -- 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x2e, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x0a, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, -- 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x3d, 0x20, 0x66, 0x69, 0x6f, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x0a, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, -- 0x5f, 0x6e, 0x6c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x3d, 0x20, 0x74, 0x65, 0x78, 0x69, 0x6f, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x6e, -- 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x76, 0x65, 0x64, 0x5f, -- 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x2d, 0x2d, -- 0x20, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x74, 0x2e, 0x73, 0x61, 0x76, 0x65, 0x64, 0x5f, 0x6c, 0x69, -- 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x3d, 0x20, 0x6d, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x2d, 0x2d, 0x20, 0x61, -- 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x0a, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -- 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, -- 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x74, -- 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x27, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, -- 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, -- 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x74, 0x79, 0x70, 0x65, 0x28, -- 0x68, 0x6f, 0x77, 0x29, 0x20, 0x3d, 0x3d, 0x20, 0x27, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x27, -- 0x20, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x69, 0x6e, 0x64, 0x28, 0x68, 0x6f, 0x77, 0x2c, 0x27, 0x77, -- 0x27, 0x29, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x5f, 0x72, 0x65, 0x63, -- 0x6f, 0x72, 0x64, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x66, 0x69, 0x6c, 0x65, 0x28, 0x6e, 0x61, -- 0x6d, 0x65, 0x2c, 0x27, 0x77, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x5f, 0x72, 0x65, -- 0x63, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x66, 0x69, 0x6c, 0x65, 0x28, 0x6e, 0x61, -- 0x6d, 0x65, 0x2c, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -- 0x72, 0x6e, 0x20, 0x66, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, -- 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x5f, -- 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, -- 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, -- 0x74, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x27, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, -- 0x67, 0x73, 0x75, 0x62, 0x28, 0x68, 0x6f, 0x77, 0x2c, 0x27, 0x5b, 0x5e, 0x72, 0x62, 0x5d, 0x27, -- 0x2c, 0x27, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x69, 0x66, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x3d, 0x20, 0x27, 0x27, 0x20, 0x74, 0x68, -- 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x27, 0x0a, 0x20, 0x20, 0x20, -+ 0x63, 0x61, 0x6c, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x2e, 0x6c, -+ 0x69, 0x6e, 0x65, 0x73, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, -+ 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x66, 0x69, 0x6f, 0x2e, 0x72, 0x65, 0x61, 0x64, -+ 0x6c, 0x69, 0x6e, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, -+ 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x74, 0x65, 0x78, 0x69, 0x6f, 0x2e, 0x77, 0x72, -+ 0x69, 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x73, -+ 0x61, 0x76, 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, -+ 0x65, 0x73, 0x20, 0x2d, 0x2d, 0x20, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x61, -+ 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x74, 0x2e, 0x73, 0x61, 0x76, -+ 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6d, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, -+ 0x20, 0x2d, 0x2d, 0x20, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, -+ 0x6e, 0x6c, 0x79, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, -+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, -+ 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, -+ 0x68, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x27, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, -+ 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, -+ 0x74, 0x79, 0x70, 0x65, 0x28, 0x68, 0x6f, 0x77, 0x29, 0x20, 0x3d, 0x3d, 0x20, 0x27, 0x73, 0x74, -+ 0x72, 0x69, 0x6e, 0x67, 0x27, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x69, 0x6e, 0x64, 0x28, 0x68, -+ 0x6f, 0x77, 0x2c, 0x27, 0x77, 0x27, 0x29, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x70, 0x73, -+ 0x65, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x66, 0x69, -+ 0x6c, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x27, 0x77, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x70, -+ 0x73, 0x65, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x66, 0x69, -+ 0x6c, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6f, 0x70, -- 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, -- 0x65, 0x63, 0x6f, 0x72, 0x64, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x28, 0x6e, 0x61, -- 0x6d, 0x65, 0x2c, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -- 0x72, 0x6e, 0x20, 0x66, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, -- 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x70, 0x6f, 0x70, 0x65, 0x6e, -- 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6f, 0x6b, 0x61, 0x79, 0x2c, 0x20, 0x66, -- 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x3d, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, -- 0x6b, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, -- 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6f, 0x6b, 0x61, -- 0x79, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x74, 0x68, 0x65, 0x6e, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, -- 0x75, 0x72, 0x6e, 0x20, 0x69, 0x6f, 0x5f, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x66, 0x6f, 0x75, -- 0x6e, 0x64, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -- 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, -- 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x20, -- 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, -- 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x20, 0x6f, -- 0x72, 0x20, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -- 0x6f, 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -- 0x72, 0x6e, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, -- 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -- 0x72, 0x6e, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x28, 0x29, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x2d, 0x2d, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, -- 0x46, 0x6f, 0x72, 0x20, 0x73, 0x6f, 0x6d, 0x65, 0x20, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x20, -- 0x74, 0x68, 0x65, 0x20, 0x67, 0x63, 0x20, 0x64, 0x6f, 0x65, 0x73, 0x6e, 0x27, 0x74, 0x20, 0x6b, -- 0x69, 0x63, 0x6b, 0x20, 0x69, 0x6e, 0x20, 0x73, 0x6f, 0x20, 0x77, 0x65, 0x20, 0x6e, 0x65, 0x65, -- 0x64, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x65, 0x78, 0x70, 0x6c, 0x69, -- 0x63, 0x69, 0x74, 0x6c, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x73, 0x6f, 0x20, -- 0x74, 0x68, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, -- 0x69, 0x73, 0x20, 0x66, 0x6c, 0x75, 0x73, 0x68, 0x65, 0x64, 0x2e, 0x0a, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2c, 0x20, 0x74, 0x79, -- 0x70, 0x65, 0x20, 0x3d, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2c, 0x20, 0x74, 0x79, 0x70, 0x65, -- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, -- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6c, -- 0x69, 0x6e, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x74, 0x79, 0x70, 0x65, 0x28, 0x6e, -- 0x61, 0x6d, 0x65, 0x29, 0x20, 0x3d, 0x3d, 0x20, 0x22, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, -- 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6f, -- 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x20, 0x6f, 0x72, 0x20, -- 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, -- 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -+ 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, -+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, -+ 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x28, 0x6e, 0x61, -+ 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, -+ 0x3d, 0x20, 0x27, 0x72, 0x27, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, -+ 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, -+ 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x67, 0x73, 0x75, 0x62, 0x28, 0x68, 0x6f, 0x77, 0x2c, 0x27, 0x5b, -+ 0x5e, 0x72, 0x62, 0x5d, 0x27, 0x2c, 0x27, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x3d, 0x20, -+ 0x27, 0x27, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x27, 0x72, -+ 0x27, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -+ 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, -+ 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, -+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, -+ 0x6d, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -+ 0x64, 0x0a, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, -+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, -+ 0x5f, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, -+ 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, -+ 0x66, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, -+ 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, -+ 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x20, 0x6f, 0x72, 0x20, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, -+ 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, -+ 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, -+ 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, -+ 0x65, 0x73, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x73, 0x6f, 0x6d, 0x65, 0x20, -+ 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x67, 0x63, 0x20, 0x64, 0x6f, -+ 0x65, 0x73, 0x6e, 0x27, 0x74, 0x20, 0x6b, 0x69, 0x63, 0x6b, 0x20, 0x69, 0x6e, 0x20, 0x73, 0x6f, -+ 0x20, 0x77, 0x65, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x6c, 0x6f, 0x73, -+ 0x65, 0x20, 0x65, 0x78, 0x70, 0x6c, 0x69, 0x63, 0x69, 0x74, 0x6c, 0x79, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x2d, 0x2d, 0x20, 0x73, 0x6f, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, -+ 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x69, 0x73, 0x20, 0x66, 0x6c, 0x75, 0x73, 0x68, 0x65, -+ 0x64, 0x2e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x65, 0x72, -+ 0x72, 0x6f, 0x72, 0x2c, 0x20, 0x74, 0x79, 0x70, 0x65, 0x20, 0x3d, 0x20, 0x65, 0x72, 0x72, 0x6f, -+ 0x72, 0x2c, 0x20, 0x74, 0x79, 0x70, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, -+ 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, -+ 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, -+ 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, -+ 0x20, 0x74, 0x79, 0x70, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x3d, 0x3d, 0x20, 0x22, -+ 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, -+ 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, -+ 0x68, 0x6f, 0x77, 0x20, 0x6f, 0x72, 0x20, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, -+ 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, -+ 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6c, 0x20, -+ 0x3d, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, -+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x3a, 0x63, 0x6c, -+ 0x6f, 0x73, 0x65, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6c, 0x20, 0x3d, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, -- 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, -- 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x3a, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x28, 0x29, 0x0a, 0x20, -+ 0x2d, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x6f, 0x73, 0x65, 0x20, 0x77, 0x68, 0x6f, -+ 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x20, 0x69, 0x74, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x77, 0x61, -+ 0x79, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x22, 0x70, 0x61, 0x74, 0x63, 0x68, 0x65, -+ 0x64, 0x20, 0x27, 0x69, 0x6f, 0x2e, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x27, 0x20, 0x63, 0x61, 0x6e, -+ 0x27, 0x74, 0x20, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x27, 0x22, 0x20, 0x2e, 0x2e, 0x20, 0x6e, 0x61, -+ 0x6d, 0x65, 0x20, 0x2e, 0x2e, 0x20, 0x22, 0x27, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, -+ 0x6e, 0x65, 0x73, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -+ 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -+ 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, -+ 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, -+ 0x28, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -+ 0x72, 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -+ 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6c, 0x69, 0x6e, -+ 0x65, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6c, -+ 0x69, 0x6e, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x74, 0x2e, 0x6c, 0x69, 0x6e, 0x65, -+ 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x72, 0x65, -+ 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6f, -+ 0x70, 0x65, 0x6e, 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, -+ 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x70, 0x6f, 0x70, -+ 0x65, 0x6e, 0x20, 0x3d, 0x20, 0x6f, 0x73, 0x2e, 0x6b, 0x70, 0x73, 0x65, 0x70, 0x6f, 0x70, 0x65, -+ 0x6e, 0x0a, 0x0a, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, -+ 0x77, 0x65, 0x20, 0x61, 0x73, 0x73, 0x75, 0x6d, 0x65, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, -+ 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x77, 0x68, 0x65, 0x72, 0x65, 0x0a, 0x0a, -+ 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, 0x6d, 0x61, 0x79, 0x62, 0x65, 0x20, 0x61, 0x6c, -+ 0x73, 0x6f, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x69, 0x6e, 0x20, -+ 0x6b, 0x70, 0x73, 0x65, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x73, 0x61, -+ 0x66, 0x65, 0x72, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x3d, 0x20, 0x31, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x77, -+ 0x72, 0x69, 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x20, 0x3d, 0x20, 0x74, 0x65, 0x78, 0x69, 0x6f, 0x2e, -+ 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, -+ 0x61, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x73, 0x74, -+ 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x0a, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, -+ 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x73, 0x74, 0x72, -+ 0x2c, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, -+ 0x6c, 0x20, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, -+ 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, -+ 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, -+ 0x6f, 0x74, 0x20, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x74, 0x68, 0x65, 0x6e, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x28, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, -+ 0x28, 0x22, 0x73, 0x61, 0x66, 0x65, 0x72, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, -+ 0x65, 0x74, 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x25, 0x71, 0x20, -+ 0x69, 0x73, 0x20, 0x25, 0x73, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x72, 0x2c, -+ 0x66, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x22, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x22, 0x20, -+ 0x6f, 0x72, 0x20, 0x22, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x29, 0x29, 0x0a, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, -- 0x6e, 0x20, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, -- 0x74, 0x68, 0x6f, 0x73, 0x65, 0x20, 0x77, 0x68, 0x6f, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x20, 0x69, -- 0x74, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x77, 0x61, 0x79, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x72, 0x72, 0x6f, -- 0x72, 0x28, 0x22, 0x70, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x20, 0x27, 0x69, 0x6f, 0x2e, 0x6c, -- 0x69, 0x6e, 0x65, 0x73, 0x27, 0x20, 0x63, 0x61, 0x6e, 0x27, 0x74, 0x20, 0x6f, 0x70, 0x65, 0x6e, -- 0x20, 0x27, 0x22, 0x20, 0x2e, 0x2e, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x2e, 0x2e, 0x20, 0x22, -- 0x27, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, -- 0x75, 0x72, 0x6e, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x28, 0x29, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, -- 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, -- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, -- 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, -- 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, -- 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x75, -- 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x6d, 0x74, 0x2e, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x75, 0x61, -- 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x0a, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x20, 0x3d, 0x20, -- 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x3d, 0x20, 0x6c, 0x75, -- 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x0a, 0x0a, 0x65, -- 0x6c, 0x73, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x77, 0x65, 0x20, 0x61, -- 0x73, 0x73, 0x75, 0x6d, 0x65, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, -- 0x20, 0x65, 0x6c, 0x73, 0x65, 0x77, 0x68, 0x65, 0x72, 0x65, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, -- 0x0a, 0x2d, 0x2d, 0x20, 0x6d, 0x61, 0x79, 0x62, 0x65, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x6f, -- 0x6e, 0x6c, 0x79, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x69, 0x6e, 0x20, 0x6b, 0x70, 0x73, 0x65, -- 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x73, 0x61, 0x66, 0x65, 0x72, 0x6f, -- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x3d, 0x20, 0x31, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, -- 0x5f, 0x6e, 0x6c, 0x20, 0x3d, 0x20, 0x74, 0x65, 0x78, 0x69, 0x6f, 0x2e, 0x77, 0x72, 0x69, 0x74, -- 0x65, 0x5f, 0x6e, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, -- 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, -- 0x2e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, -+ 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, -+ 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x28, 0x2e, -+ 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, - 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x73, 0x74, -- 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x73, 0x74, 0x72, 0x2c, 0x66, 0x29, 0x0a, -+ 0x61, 0x6c, 0x6c, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x28, 0x73, 0x74, 0x72, 0x2c, 0x66, 0x29, 0x0a, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, - 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x75, -- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x72, -- 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x77, 0x72, 0x69, -- 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x28, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x28, 0x22, 0x73, 0x61, -- 0x66, 0x65, 0x72, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, -- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x25, 0x71, 0x20, 0x69, 0x73, 0x20, 0x25, -- 0x73, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x72, 0x2c, 0x66, 0x20, 0x61, 0x6e, -- 0x64, 0x20, 0x22, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x22, 0x20, 0x6f, 0x72, 0x20, 0x22, -- 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x70, 0x6f, -- 0x72, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, -- 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, -- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x6c, -- 0x69, 0x6d, 0x69, 0x74, 0x28, 0x73, 0x74, 0x72, 0x2c, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, -- 0x65, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, -- 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, -- 0x74, 0x65, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, -- 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x22, 0x29, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x20, 0x20, 0x20, 0x3d, -- 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, -- 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, -- 0x2e, 0x65, 0x78, 0x65, 0x63, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, -- 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, -- 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, 0x76, -- 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, -- 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x22, 0x29, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x64, 0x69, 0x72, 0x20, 0x3d, 0x20, 0x69, -+ 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x65, -+ 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, -+ 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, -+ 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, -+ 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, -+ 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x22, 0x29, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, - 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, -- 0x74, 0x65, 0x6d, 0x70, 0x64, 0x69, 0x72, 0x22, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, -- 0x6f, 0x2e, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, -- 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, 0x2e, 0x70, 0x6f, 0x70, -- 0x65, 0x6e, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x6e, -- 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, -- 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x6e, 0x22, 0x2c, 0x6c, 0x75, 0x61, -- 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x64, -- 0x6f, 0x6e, 0x6c, 0x79, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x72, 0x65, -- 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, -- 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x22, -- 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x20, -+ 0x65, 0x78, 0x65, 0x63, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x65, -+ 0x74, 0x65, 0x6e, 0x76, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, -+ 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x22, -+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x64, 0x69, 0x72, - 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, -- 0x22, 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x22, 0x29, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x74, 0x6d, 0x70, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x3d, 0x20, 0x69, -- 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, 0x2e, -- 0x74, 0x6d, 0x70, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, -- 0x2e, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, -- 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, 0x2e, 0x6f, 0x75, 0x74, 0x70, -- 0x75, 0x74, 0x22, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x63, 0x68, -- 0x64, 0x69, 0x72, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, -- 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x63, 0x68, 0x64, 0x69, 0x72, 0x22, 0x29, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x6c, 0x6f, 0x63, 0x6b, 0x20, 0x20, 0x20, -+ 0x22, 0x6f, 0x73, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x64, 0x69, 0x72, 0x22, 0x29, 0x0a, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x6b, 0x70, 0x73, 0x65, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x20, - 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, -- 0x6c, 0x66, 0x73, 0x2e, 0x6c, 0x6f, 0x63, 0x6b, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -- 0x66, 0x73, 0x2e, 0x74, 0x6f, 0x75, 0x63, 0x68, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, -- 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x74, 0x6f, -- 0x75, 0x63, 0x68, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x6d, -+ 0x6f, 0x73, 0x2e, 0x6b, 0x70, 0x73, 0x65, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x22, 0x29, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x20, 0x20, 0x3d, -+ 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, -+ 0x6f, 0x2e, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, -+ 0x2e, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, -+ 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x6e, -+ 0x22, 0x2c, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, -+ 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, -+ 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x72, 0x65, -+ 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x72, 0x65, -+ 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, -+ 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x22, -+ 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x74, 0x6d, 0x70, 0x66, 0x69, 0x6c, -+ 0x65, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, -+ 0x28, 0x22, 0x69, 0x6f, 0x2e, 0x74, 0x6d, 0x70, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x29, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x20, 0x20, 0x3d, 0x20, -+ 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, -+ 0x2e, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x22, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -+ 0x66, 0x73, 0x2e, 0x63, 0x68, 0x64, 0x69, 0x72, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, -+ 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x63, 0x68, -+ 0x64, 0x69, 0x72, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x6c, 0x6f, -+ 0x63, 0x6b, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, -+ 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x6c, 0x6f, 0x63, 0x6b, 0x22, 0x29, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x74, 0x6f, 0x75, 0x63, 0x68, 0x20, 0x20, 0x3d, -+ 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, -+ 0x66, 0x73, 0x2e, 0x74, 0x6f, 0x75, 0x63, 0x68, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -+ 0x66, 0x73, 0x2e, 0x72, 0x6d, 0x64, 0x69, 0x72, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, -+ 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x6d, -+ 0x64, 0x69, 0x72, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x6d, 0x6b, - 0x64, 0x69, 0x72, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, -- 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x6d, 0x64, 0x69, 0x72, 0x22, 0x29, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x6d, 0x6b, 0x64, 0x69, 0x72, 0x20, 0x20, -- 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, -- 0x6c, 0x66, 0x73, 0x2e, 0x6d, 0x6b, 0x64, 0x69, 0x72, 0x22, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x64, 0x65, 0x62, 0x75, 0x67, 0x20, 0x3d, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6f, 0x73, 0x2e, 0x5b, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, -- 0x7c, 0x6f, 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x7c, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, -- 0x63, 0x5d, 0x20, 0x61, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x20, 0x61, 0x72, 0x65, 0x20, 0x73, -- 0x68, 0x65, 0x6c, 0x6c, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x20, 0x61, 0x77, 0x61, 0x72, 0x65, -- 0x29, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, 0x6d, 0x61, 0x79, 0x62, 0x65, -- 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, -- 0x69, 0x6e, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x0a, 0x0a, 0x69, 0x66, -- 0x20, 0x73, 0x61, 0x66, 0x65, 0x72, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x3d, 0x20, -- 0x31, 0x20, 0x6f, 0x72, 0x20, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, -- 0x20, 0x7e, 0x3d, 0x20, 0x31, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x6c, 0x69, 0x62, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, -- 0x29, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, -- 0x65, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, 0x5b, 0x34, 0x5d, 0x20, 0x3d, -- 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, -- 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, 0x5b, 0x33, 0x5d, 0x20, 0x3d, 0x20, -- 0x6e, 0x69, 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6f, 0x73, 0x2e, 0x73, -- 0x65, 0x74, 0x65, 0x6e, 0x76, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x20, 0x3d, 0x20, 0x66, -- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x65, 0x6e, 0x64, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x66, 0x66, 0x69, -- 0x20, 0x3d, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x28, 0x27, 0x66, 0x66, 0x69, 0x27, -- 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x66, 0x69, 0x20, 0x74, 0x68, -- 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x6b, -- 0x2c, 0x20, 0x76, 0x20, 0x69, 0x6e, 0x20, 0x6e, 0x65, 0x78, 0x74, 0x2c, 0x20, 0x66, 0x66, 0x69, -- 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x69, 0x66, 0x20, 0x6b, 0x20, 0x7e, 0x3d, 0x20, 0x27, 0x67, 0x63, 0x27, 0x20, 0x74, 0x68, 0x65, -- 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x66, 0x66, 0x69, 0x5b, 0x6b, 0x5d, 0x20, 0x3d, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, -- 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x66, 0x66, 0x69, 0x20, 0x3d, 0x20, 0x6e, 0x69, -- 0x6c, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x6d, 0x64, 0x35, 0x20, 0x74, -- 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x73, -- 0x75, 0x6d, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x67, 0x73, 0x75, 0x62, 0x20, 0x20, -- 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x67, 0x73, 0x75, 0x62, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, -- 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x62, 0x79, 0x74, 0x65, 0x20, 0x20, -- 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x62, 0x79, 0x74, 0x65, 0x0a, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6d, 0x64, 0x35, 0x2e, 0x73, -- 0x75, 0x6d, 0x68, 0x65, 0x78, 0x61, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6d, 0x64, 0x35, -- 0x2e, 0x73, 0x75, 0x6d, 0x68, 0x65, 0x78, 0x61, 0x28, 0x6b, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, -- 0x67, 0x73, 0x75, 0x62, 0x28, 0x73, 0x75, 0x6d, 0x28, 0x6b, 0x29, 0x2c, 0x20, 0x22, 0x2e, 0x22, -- 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x63, 0x29, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -- 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x28, 0x22, 0x25, 0x30, 0x32, -- 0x78, 0x22, 0x2c, 0x62, 0x79, 0x74, 0x65, 0x28, 0x63, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x29, 0x29, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -- 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6d, 0x64, -- 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x48, 0x45, 0x58, 0x41, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, -- 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x48, 0x45, 0x58, 0x41, 0x28, 0x6b, 0x29, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, -- 0x6e, 0x20, 0x28, 0x67, 0x73, 0x75, 0x62, 0x28, 0x73, 0x75, 0x6d, 0x28, 0x6b, 0x29, 0x2c, 0x20, -- 0x22, 0x2e, 0x22, 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x63, 0x29, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x28, 0x22, -- 0x25, 0x30, 0x32, 0x58, 0x22, 0x2c, 0x62, 0x79, 0x74, 0x65, 0x28, 0x63, 0x29, 0x29, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x29, 0x29, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, 0x63, 0x6f, -- 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x20, 0x74, 0x68, 0x69, -- 0x73, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, 0x67, 0x6f, 0x20, 0x61, 0x77, 0x61, 0x79, 0x0a, -- 0x0a, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x20, 0x74, -- 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x20, 0x3d, -- 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x0a, 0x65, 0x6e, -- 0x64, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, -- 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x65, -- 0x72, 0x73, 0x20, 0x3d, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x73, 0x65, 0x61, -- 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x6e, -- 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, -- 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x73, 0x74, 0x72, 0x69, 0x6e, -- 0x67, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, -- 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x20, -- 0x74, 0x68, 0x69, 0x73, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, 0x73, 0x74, 0x61, 0x79, 0x0a, -- 0x0a, 0x69, 0x66, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x75, 0x61, 0x20, 0x35, 0x2e, 0x32, 0x3a, 0x20, -- 0x77, 0x65, 0x27, 0x72, 0x65, 0x20, 0x6f, 0x6b, 0x61, 0x79, 0x0a, 0x0a, 0x65, 0x6c, 0x73, 0x65, -- 0x69, 0x66, 0x20, 0x75, 0x74, 0x66, 0x38, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x75, 0x61, 0x20, 0x35, 0x2e, 0x33, 0x3a, 0x20, 0x20, 0x62, -- 0x69, 0x74, 0x77, 0x69, 0x73, 0x65, 0x2e, 0x6c, 0x75, 0x61, 0x2c, 0x20, 0x76, 0x20, 0x31, 0x2e, -- 0x32, 0x34, 0x20, 0x32, 0x30, 0x31, 0x34, 0x2f, 0x31, 0x32, 0x2f, 0x32, 0x36, 0x20, 0x31, 0x37, -- 0x3a, 0x32, 0x30, 0x3a, 0x35, 0x33, 0x20, 0x72, 0x6f, 0x62, 0x65, 0x72, 0x74, 0x6f, 0x0a, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, -- 0x20, 0x28, 0x20, 0x5b, 0x5b, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x73, 0x65, 0x6c, 0x65, -- 0x63, 0x74, 0x20, 0x3d, 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x20, 0x2d, 0x2d, 0x20, 0x69, -- 0x6e, 0x73, 0x74, 0x65, 0x61, 0x64, 0x20, 0x6f, 0x66, 0x3a, 0x20, 0x61, 0x72, 0x67, 0x20, 0x3d, -- 0x20, 0x7b, 0x20, 0x2e, 0x2e, 0x2e, 0x20, 0x7d, 0x0a, 0x0a, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, -- 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, -- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -- 0x74, 0x75, 0x72, 0x6e, 0x20, 0x7e, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x61, -- 0x6e, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x78, -- 0x2c, 0x20, 0x79, 0x2c, 0x20, 0x7a, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x7a, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x78, 0x20, -- 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, 0x20, 0x26, 0x20, 0x28, 0x79, 0x20, 0x6f, 0x72, 0x20, 0x2d, -- 0x31, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x78, 0x20, 0x26, 0x20, -- 0x79, 0x20, 0x26, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, -- 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x22, 0x23, 0x22, 0x2c, 0x2e, -- 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, -- 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, -- 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, -- 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -- 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, -- 0x20, 0x20, 0x62, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, -- 0x20, 0x28, 0x78, 0x2c, 0x20, 0x79, 0x2c, 0x20, 0x7a, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x7a, 0x20, 0x74, 0x68, 0x65, -- 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, -- 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x20, 0x7c, 0x20, 0x28, 0x79, 0x20, 0x6f, 0x72, -- 0x20, 0x30, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x78, 0x20, 0x7c, -- 0x20, 0x79, 0x20, 0x7c, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, -- 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x22, 0x23, 0x22, 0x2c, -- 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x7c, 0x20, 0x73, 0x65, 0x6c, 0x65, -- 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -- 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, -- 0x0a, 0x20, 0x20, 0x62, 0x78, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -+ 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x6d, 0x6b, 0x64, 0x69, 0x72, 0x22, 0x29, -+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x62, 0x75, 0x67, 0x20, 0x3d, 0x20, 0x6e, 0x69, -+ 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6f, 0x73, 0x2e, 0x5b, 0x65, 0x78, -+ 0x65, 0x63, 0x75, 0x74, 0x65, 0x7c, 0x6f, 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x7c, 0x6f, -+ 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x5d, 0x20, 0x61, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x20, -+ 0x61, 0x72, 0x65, 0x20, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x20, -+ 0x61, 0x77, 0x61, 0x72, 0x65, 0x29, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, -+ 0x6d, 0x61, 0x79, 0x62, 0x65, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, -+ 0x77, 0x68, 0x65, 0x6e, 0x20, 0x69, 0x6e, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x20, 0x6d, 0x6f, 0x64, -+ 0x65, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x73, 0x61, 0x66, 0x65, 0x72, 0x6f, 0x70, 0x74, 0x69, 0x6f, -+ 0x6e, 0x20, 0x3d, 0x3d, 0x20, 0x31, 0x20, 0x6f, 0x72, 0x20, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x65, -+ 0x73, 0x63, 0x61, 0x70, 0x65, 0x20, 0x7e, 0x3d, 0x20, 0x31, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, -+ 0x64, 0x6c, 0x69, 0x62, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, -+ 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, -+ 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, -+ 0x5b, 0x34, 0x5d, 0x20, 0x3d, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, -+ 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, 0x5b, -+ 0x33, 0x5d, 0x20, 0x3d, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, -+ 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, -+ 0x76, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x2e, 0x2e, 0x2e, -+ 0x29, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x66, 0x66, 0x69, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x28, -+ 0x27, 0x66, 0x66, 0x69, 0x27, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, -+ 0x66, 0x69, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x66, 0x6f, 0x72, 0x20, 0x6b, 0x2c, 0x20, 0x76, 0x20, 0x69, 0x6e, 0x20, 0x6e, 0x65, 0x78, 0x74, -+ 0x2c, 0x20, 0x66, 0x66, 0x69, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6b, 0x20, 0x7e, 0x3d, 0x20, 0x27, 0x67, 0x63, -+ 0x27, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x66, 0x69, 0x5b, 0x6b, 0x5d, 0x20, 0x3d, 0x20, -+ 0x6e, 0x69, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x66, 0x66, 0x69, -+ 0x20, 0x3d, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x69, 0x66, 0x20, -+ 0x6d, 0x64, 0x35, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, -+ 0x63, 0x61, 0x6c, 0x20, 0x73, 0x75, 0x6d, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6d, 0x64, 0x35, -+ 0x2e, 0x73, 0x75, 0x6d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x67, -+ 0x73, 0x75, 0x62, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x67, -+ 0x73, 0x75, 0x62, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x6f, -+ 0x72, 0x6d, 0x61, 0x74, 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x66, 0x6f, -+ 0x72, 0x6d, 0x61, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x62, -+ 0x79, 0x74, 0x65, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x62, -+ 0x79, 0x74, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, -+ 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x68, 0x65, 0x78, 0x61, 0x20, 0x74, 0x68, 0x65, 0x6e, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, -+ 0x6e, 0x20, 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x68, 0x65, 0x78, 0x61, 0x28, 0x6b, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, -+ 0x75, 0x72, 0x6e, 0x20, 0x28, 0x67, 0x73, 0x75, 0x62, 0x28, 0x73, 0x75, 0x6d, 0x28, 0x6b, 0x29, -+ 0x2c, 0x20, 0x22, 0x2e, 0x22, 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, -+ 0x63, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, -+ 0x28, 0x22, 0x25, 0x30, 0x32, 0x78, 0x22, 0x2c, 0x62, 0x79, 0x74, 0x65, 0x28, 0x63, 0x29, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, -+ 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, -+ 0x6f, 0x74, 0x20, 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x48, 0x45, 0x58, 0x41, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, -+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x48, 0x45, 0x58, 0x41, -+ 0x28, 0x6b, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x67, 0x73, 0x75, 0x62, 0x28, 0x73, 0x75, 0x6d, -+ 0x28, 0x6b, 0x29, 0x2c, 0x20, 0x22, 0x2e, 0x22, 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -+ 0x6f, 0x6e, 0x28, 0x63, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x6f, 0x72, -+ 0x6d, 0x61, 0x74, 0x28, 0x22, 0x25, 0x30, 0x32, 0x58, 0x22, 0x2c, 0x62, 0x79, 0x74, 0x65, 0x28, -+ 0x63, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -+ 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -+ 0x2d, 0x2d, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, -+ 0x3a, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, 0x67, 0x6f, 0x20, -+ 0x61, 0x77, 0x61, 0x79, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x75, 0x6e, 0x70, -+ 0x61, 0x63, 0x6b, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x6e, 0x70, -+ 0x61, 0x63, 0x6b, 0x20, 0x3d, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x75, 0x6e, 0x70, 0x61, -+ 0x63, 0x6b, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x70, -+ 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, -+ 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x20, 0x3d, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, -+ 0x65, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, 0x0a, 0x65, 0x6e, 0x64, 0x0a, -+ 0x0a, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x73, 0x74, 0x72, 0x69, -+ 0x6e, 0x67, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x61, 0x64, -+ 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x0a, 0x65, 0x6e, -+ 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, -+ 0x69, 0x74, 0x79, 0x3a, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, -+ 0x73, 0x74, 0x61, 0x79, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x75, 0x61, 0x20, -+ 0x35, 0x2e, 0x32, 0x3a, 0x20, 0x77, 0x65, 0x27, 0x72, 0x65, 0x20, 0x6f, 0x6b, 0x61, 0x79, 0x0a, -+ 0x0a, 0x65, 0x6c, 0x73, 0x65, 0x69, 0x66, 0x20, 0x75, 0x74, 0x66, 0x38, 0x20, 0x74, 0x68, 0x65, -+ 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x75, 0x61, 0x20, 0x35, 0x2e, -+ 0x33, 0x3a, 0x20, 0x20, 0x62, 0x69, 0x74, 0x77, 0x69, 0x73, 0x65, 0x2e, 0x6c, 0x75, 0x61, 0x2c, -+ 0x20, 0x76, 0x20, 0x31, 0x2e, 0x32, 0x34, 0x20, 0x32, 0x30, 0x31, 0x34, 0x2f, 0x31, 0x32, 0x2f, -+ 0x32, 0x36, 0x20, 0x31, 0x37, 0x3a, 0x32, 0x30, 0x3a, 0x35, 0x33, 0x20, 0x72, 0x6f, 0x62, 0x65, -+ 0x72, 0x74, 0x6f, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, -+ 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x20, 0x28, 0x20, 0x5b, 0x5b, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, -+ 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x20, 0x3d, 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, -+ 0x20, 0x2d, 0x2d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x65, 0x61, 0x64, 0x20, 0x6f, 0x66, 0x3a, 0x20, -+ 0x61, 0x72, 0x67, 0x20, 0x3d, 0x20, 0x7b, 0x20, 0x2e, 0x2e, 0x2e, 0x20, 0x7d, 0x0a, 0x0a, 0x62, -+ 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x20, -+ 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x29, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x7e, 0x61, 0x20, 0x26, 0x20, 0x30, -+ 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, -+ 0x0a, 0x20, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x20, 0x28, 0x78, 0x2c, 0x20, 0x79, 0x2c, 0x20, 0x7a, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, - 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x7a, 0x20, 0x74, - 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -- 0x20, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x20, 0x7e, 0x20, 0x28, 0x79, 0x20, -- 0x6f, 0x72, 0x20, 0x30, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x78, -- 0x20, 0x7e, 0x20, 0x79, 0x20, 0x7e, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, -- 0x6f, 0x72, 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x22, 0x23, -- 0x22, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x7e, 0x20, 0x73, 0x65, -- 0x6c, 0x65, 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -- 0x72, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x65, 0x6e, -- 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x74, 0x65, 0x73, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, -+ 0x20, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, 0x20, 0x26, 0x20, 0x28, 0x79, -+ 0x20, 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, -+ 0x20, 0x78, 0x20, 0x26, 0x20, 0x79, 0x20, 0x26, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, -+ 0x22, 0x23, 0x22, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, -+ 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -+ 0x74, 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x78, 0x2c, 0x20, 0x79, 0x2c, 0x20, 0x7a, 0x2c, 0x20, - 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, - 0x7a, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, -- 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, 0x20, -- 0x26, 0x20, 0x28, 0x79, 0x20, 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, -- 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x29, 0x20, 0x7e, 0x3d, 0x20, 0x30, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, -- 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x78, 0x20, 0x26, 0x20, 0x79, -- 0x20, 0x26, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, -- 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x22, 0x23, 0x22, 0x2c, 0x2e, 0x2e, -- 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x73, 0x65, 0x6c, 0x65, -- 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -- 0x20, 0x28, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x29, 0x20, 0x7e, 0x3d, 0x20, 0x30, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, -- 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, -- 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, -- 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, -- 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x29, 0x20, -- 0x3c, 0x3c, 0x20, 0x62, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x73, 0x68, 0x69, -- 0x66, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, -- 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -- 0x28, 0x28, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x29, 0x20, 0x3e, 0x3e, 0x20, 0x62, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x61, 0x72, -+ 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x20, 0x7c, 0x20, -+ 0x28, 0x79, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, -+ 0x3d, 0x20, 0x78, 0x20, 0x7c, 0x20, 0x79, 0x20, 0x7c, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, -+ 0x28, 0x22, 0x23, 0x22, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x7c, -+ 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, -+ 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, -+ 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x78, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x66, -+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x78, 0x2c, 0x20, 0x79, 0x2c, 0x20, 0x7a, -+ 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, -+ 0x74, 0x20, 0x7a, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, -+ 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x20, -+ 0x7e, 0x20, 0x28, 0x79, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, -+ 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, -+ 0x73, 0x20, 0x3d, 0x20, 0x78, 0x20, 0x7e, 0x20, 0x79, 0x20, 0x7e, 0x20, 0x7a, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, -+ 0x63, 0x74, 0x28, 0x22, 0x23, 0x22, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, -+ 0x20, 0x7e, 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, -+ 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x74, 0x65, 0x73, 0x74, 0x20, -+ 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x78, 0x2c, 0x20, 0x79, -+ 0x2c, 0x20, 0x7a, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, -+ 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x7a, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, -+ 0x20, 0x2d, 0x31, 0x29, 0x20, 0x26, 0x20, 0x28, 0x79, 0x20, 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, -+ 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x29, 0x20, -+ 0x7e, 0x3d, 0x20, 0x30, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, -+ 0x78, 0x20, 0x26, 0x20, 0x79, 0x20, 0x26, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x66, 0x6f, 0x72, 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x22, -+ 0x23, 0x22, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, -+ 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, -+ 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x29, 0x20, 0x7e, 0x3d, 0x20, 0x30, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x6c, - 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, -- 0x20, 0x28, 0x61, 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, -- 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x62, 0x20, 0x3c, 0x3d, 0x20, 0x30, 0x20, 0x6f, 0x72, 0x20, -- 0x28, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x29, -- 0x20, 0x3d, 0x3d, 0x20, 0x30, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, 0x62, 0x29, -+ 0x20, 0x28, 0x61, 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -+ 0x72, 0x6e, 0x20, 0x28, 0x28, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x29, 0x20, 0x3c, 0x3c, 0x20, 0x62, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, -+ 0x20, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -+ 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -+ 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x29, 0x20, 0x3e, 0x3e, 0x20, 0x62, 0x29, 0x20, 0x26, 0x20, 0x30, -+ 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, -+ 0x0a, 0x20, 0x20, 0x61, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, -+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x61, 0x20, 0x3d, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x62, 0x20, 0x3c, 0x3d, 0x20, -+ 0x30, 0x20, 0x6f, 0x72, 0x20, 0x28, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x38, 0x30, 0x30, 0x30, -+ 0x30, 0x30, 0x30, 0x30, 0x29, 0x20, 0x3d, 0x3d, 0x20, 0x30, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x61, 0x20, -+ 0x3e, 0x3e, 0x20, 0x62, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, -+ 0x62, 0x29, 0x20, 0x7c, 0x20, 0x7e, 0x28, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -+ 0x46, 0x20, 0x3e, 0x3e, 0x20, 0x62, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x6c, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, -+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x20, 0x2c, 0x62, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x20, 0x3d, 0x20, 0x62, 0x20, 0x26, 0x20, 0x33, 0x31, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x28, -+ 0x61, 0x20, 0x3c, 0x3c, 0x20, 0x62, 0x29, 0x20, 0x7c, 0x20, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, -+ 0x28, 0x33, 0x32, 0x20, 0x2d, 0x20, 0x62, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -+ 0x74, 0x75, 0x72, 0x6e, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x72, 0x6f, -+ 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, -+ 0x28, 0x61, 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x20, 0x3d, 0x20, 0x2d, -+ 0x62, 0x20, 0x26, 0x20, 0x33, 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x61, - 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, -- 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, 0x62, 0x29, 0x20, 0x7c, 0x20, -- 0x7e, 0x28, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x20, 0x3e, 0x3e, 0x20, -- 0x62, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, -- 0x20, 0x20, 0x6c, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, -- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x20, 0x2c, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x62, 0x20, 0x3d, 0x20, 0x62, 0x20, 0x26, 0x20, 0x33, 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, -- 0x20, 0x3d, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x28, 0x61, 0x20, 0x3c, 0x3c, 0x20, -- 0x62, 0x29, 0x20, 0x7c, 0x20, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, 0x28, 0x33, 0x32, 0x20, 0x2d, -- 0x20, 0x62, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -- 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, -- 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, -- 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x62, -- 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x20, 0x3d, 0x20, 0x2d, 0x62, 0x20, 0x26, 0x20, 0x33, -- 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, -- 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, -- 0x20, 0x28, 0x61, 0x20, 0x3c, 0x3c, 0x20, 0x62, 0x29, 0x20, 0x7c, 0x20, 0x28, 0x61, 0x20, 0x3e, -- 0x3e, 0x20, 0x28, 0x33, 0x32, 0x20, 0x2d, 0x20, 0x62, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x65, -- 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, -- 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x66, 0x2c, 0x20, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, 0x66, 0x29, 0x20, -- 0x26, 0x20, 0x7e, 0x28, 0x2d, 0x31, 0x20, 0x3c, 0x3c, 0x20, 0x28, 0x77, 0x20, 0x6f, 0x72, 0x20, -- 0x31, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x65, 0x70, -- 0x6c, 0x61, 0x63, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, -- 0x28, 0x61, 0x2c, 0x20, 0x76, 0x2c, 0x20, 0x66, 0x2c, 0x20, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x61, 0x73, 0x6b, 0x20, 0x3d, 0x20, 0x7e, 0x28, -- 0x2d, 0x31, 0x20, 0x3c, 0x3c, 0x20, 0x28, 0x77, 0x20, 0x6f, 0x72, 0x20, 0x31, 0x29, 0x29, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x61, 0x20, 0x26, -- 0x20, 0x7e, 0x28, 0x6d, 0x61, 0x73, 0x6b, 0x20, 0x3c, 0x3c, 0x20, 0x66, 0x29, 0x29, 0x20, 0x7c, -- 0x20, 0x28, 0x28, 0x76, 0x20, 0x26, 0x20, 0x6d, 0x61, 0x73, 0x6b, 0x29, 0x20, 0x3c, 0x3c, 0x20, -- 0x66, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x5d, 0x5d, 0x20, 0x29, 0x0a, 0x0a, 0x65, 0x6c, 0x73, 0x65, 0x69, 0x66, 0x20, 0x62, -- 0x69, 0x74, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, -- 0x6c, 0x75, 0x61, 0x6a, 0x69, 0x74, 0x20, 0x28, 0x66, 0x6f, 0x72, 0x20, 0x6e, 0x6f, 0x77, 0x29, -- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x6c, 0x6f, -- 0x61, 0x64, 0x20, 0x28, 0x20, 0x5b, 0x5b, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x62, 0x61, -- 0x6e, 0x64, 0x2c, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x2c, 0x20, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, -- 0x2c, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x62, -- 0x61, 0x6e, 0x64, 0x2c, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x62, 0x6e, 0x6f, 0x74, 0x2c, 0x20, 0x62, -- 0x69, 0x74, 0x2e, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x6c, -- 0x73, 0x68, 0x69, 0x66, 0x74, 0x0a, 0x0a, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x7b, -- 0x0a, 0x20, 0x20, 0x61, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, -- 0x2e, 0x61, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x61, 0x6e, 0x64, -- 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x6e, -- 0x6f, 0x74, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x2c, 0x0a, 0x20, 0x20, -- 0x62, 0x6f, 0x72, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x62, 0x6f, -- 0x72, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x78, 0x6f, 0x72, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, -- 0x69, 0x74, 0x2e, 0x62, 0x78, 0x6f, 0x72, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x74, 0x65, 0x73, 0x74, -- 0x20, 0x20, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x2e, 0x2e, -- 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x62, 0x61, -- 0x6e, 0x64, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x7e, 0x3d, 0x20, 0x30, 0x0a, 0x20, 0x20, 0x65, -- 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x3d, 0x20, -- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x61, 0x2c, 0x66, 0x2c, 0x77, 0x29, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x28, -- 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x28, 0x61, 0x2c, 0x66, 0x29, 0x2c, 0x32, 0x5e, 0x28, 0x77, -- 0x20, 0x6f, 0x72, 0x20, 0x31, 0x29, 0x2d, 0x31, 0x29, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, -- 0x0a, 0x20, 0x20, 0x6c, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, -- 0x2e, 0x72, 0x6f, 0x6c, 0x2c, 0x0a, 0x20, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x20, -- 0x3d, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x65, 0x70, 0x6c, -- 0x61, 0x63, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x61, -- 0x2c, 0x76, 0x2c, 0x66, 0x2c, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, -- 0x6c, 0x20, 0x6d, 0x61, 0x73, 0x6b, 0x20, 0x3d, 0x20, 0x32, 0x5e, 0x28, 0x77, 0x20, 0x6f, 0x72, -- 0x20, 0x31, 0x29, 0x2d, 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -- 0x20, 0x62, 0x61, 0x6e, 0x64, 0x28, 0x61, 0x2c, 0x62, 0x6e, 0x6f, 0x74, 0x28, 0x6c, 0x73, 0x68, -- 0x69, 0x66, 0x74, 0x28, 0x6d, 0x61, 0x73, 0x6b, 0x2c, 0x66, 0x29, 0x29, 0x29, 0x2b, 0x6c, 0x73, -- 0x68, 0x69, 0x66, 0x74, 0x28, 0x62, 0x61, 0x6e, 0x64, 0x28, 0x76, 0x2c, 0x6d, 0x61, 0x73, 0x6b, -- 0x29, 0x2c, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x72, -- 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x72, 0x6f, 0x72, 0x2c, -- 0x0a, 0x20, 0x20, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x20, 0x3d, 0x20, 0x72, 0x73, 0x68, -- 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x5d, -- 0x5d, 0x20, 0x29, 0x0a, 0x0a, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, -- 0x2d, 0x20, 0x68, 0x6f, 0x70, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x62, -- 0x65, 0x73, 0x74, 0x20, 0x6f, 0x72, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, -- 0x28, 0x22, 0x62, 0x69, 0x74, 0x33, 0x32, 0x22, 0x29, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -- 0x2d, 0x2d, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x65, -- 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x67, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, -- 0x71, 0x75, 0x69, 0x72, 0x65, 0x28, 0x22, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x22, 0x29, 0x20, -- 0x72, 0x69, 0x67, 0x68, 0x74, 0x0a, 0x0a, 0x64, 0x6f, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -- 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x70, 0x61, -- 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, -- 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x6c, 0x6f, 0x61, 0x64, -- 0x65, 0x64, 0x2e, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, -- 0x65, 0x64, 0x5b, 0x22, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x22, -- 0x5d, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, -- 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x6d, 0x69, 0x6d, 0x65, 0x20, 0x20, 0x20, 0x74, -- 0x68, 0x65, 0x6e, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x6d, 0x69, 0x6d, 0x65, 0x20, -- 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x5b, 0x22, 0x6d, 0x69, 0x6d, 0x65, -- 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x22, 0x5d, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, -- 0x2e, 0x6c, 0x66, 0x73, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, -- 0x2e, 0x6c, 0x66, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -- 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x64, 0x6f, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, -- 0x61, 0x6c, 0x20, 0x6c, 0x66, 0x73, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x61, 0x74, 0x74, 0x72, 0x69, -- 0x62, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, -- 0x73, 0x79, 0x6d, 0x6c, 0x69, 0x6e, 0x6b, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, -- 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x73, 0x79, 0x6d, 0x6c, 0x69, 0x6e, 0x6b, 0x61, -- 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, -- 0x2d, 0x20, 0x74, 0x68, 0x65, 0x73, 0x65, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x6e, 0x6f, 0x77, 0x20, -- 0x62, 0x65, 0x20, 0x64, 0x6f, 0x6e, 0x65, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x6c, 0x66, -- 0x73, 0x20, 0x28, 0x77, 0x61, 0x73, 0x20, 0x64, 0x65, 0x61, 0x64, 0x20, 0x73, 0x6c, 0x6f, 0x77, -- 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, -- 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, 0x73, 0x66, 0x69, 0x6c, 0x65, 0x20, -- 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, -- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, 0x73, 0x66, 0x69, 0x6c, 0x65, -- 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, -- 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, -- 0x22, 0x6d, 0x6f, 0x64, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x6d, 0x20, 0x3d, 0x3d, 0x20, -- 0x22, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x20, 0x6f, 0x72, 0x20, 0x6d, 0x20, 0x3d, 0x3d, 0x20, 0x22, -- 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -- 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, -- 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, 0x73, 0x64, 0x69, 0x72, 0x20, -- 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, -- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, 0x73, 0x64, 0x69, 0x72, 0x28, -- 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x61, -- 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x22, -- 0x6d, 0x6f, 0x64, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x6d, 0x20, 0x3d, 0x3d, 0x20, 0x22, -- 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x6e, 0x61, 0x6d, 0x65, -- 0x73, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x73, -- 0x6f, 0x72, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x70, 0x65, 0x64, 0x20, 0x66, -- 0x72, 0x6f, 0x6d, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, -- 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x6e, 0x61, -- 0x6d, 0x65, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x73, 0x68, 0x6f, -- 0x72, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x28, 0x61, 0x20, 0x3c, 0x3c, 0x20, 0x62, 0x29, 0x20, 0x7c, -+ 0x20, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, 0x28, 0x33, 0x32, 0x20, 0x2d, 0x20, 0x62, 0x29, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x61, 0x20, 0x26, 0x20, -+ 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, -+ 0x2c, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, -+ 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x66, 0x2c, 0x20, 0x77, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x61, 0x20, 0x3e, -+ 0x3e, 0x20, 0x66, 0x29, 0x20, 0x26, 0x20, 0x7e, 0x28, 0x2d, 0x31, 0x20, 0x3c, 0x3c, 0x20, 0x28, -+ 0x77, 0x20, 0x6f, 0x72, 0x20, 0x31, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, -+ 0x20, 0x20, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, -+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x76, 0x2c, 0x20, 0x66, 0x2c, 0x20, 0x77, -+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x61, 0x73, 0x6b, -+ 0x20, 0x3d, 0x20, 0x7e, 0x28, 0x2d, 0x31, 0x20, 0x3c, 0x3c, 0x20, 0x28, 0x77, 0x20, 0x6f, 0x72, -+ 0x20, 0x31, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -+ 0x28, 0x28, 0x61, 0x20, 0x26, 0x20, 0x7e, 0x28, 0x6d, 0x61, 0x73, 0x6b, 0x20, 0x3c, 0x3c, 0x20, -+ 0x66, 0x29, 0x29, 0x20, 0x7c, 0x20, 0x28, 0x28, 0x76, 0x20, 0x26, 0x20, 0x6d, 0x61, 0x73, 0x6b, -+ 0x29, 0x20, 0x3c, 0x3c, 0x20, 0x66, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x7d, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x5d, 0x20, 0x29, 0x0a, 0x0a, 0x65, 0x6c, 0x73, -+ 0x65, 0x69, 0x66, 0x20, 0x62, 0x69, 0x74, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x75, 0x61, 0x6a, 0x69, 0x74, 0x20, 0x28, 0x66, 0x6f, 0x72, -+ 0x20, 0x6e, 0x6f, 0x77, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, -+ 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x20, 0x28, 0x20, 0x5b, 0x5b, 0x0a, 0x6c, 0x6f, 0x63, -+ 0x61, 0x6c, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x2c, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x2c, 0x20, 0x72, -+ 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, -+ 0x62, 0x69, 0x74, 0x2e, 0x62, 0x61, 0x6e, 0x64, 0x2c, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x62, 0x6e, -+ 0x6f, 0x74, 0x2c, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x20, -+ 0x62, 0x69, 0x74, 0x2e, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x0a, 0x0a, 0x62, 0x69, 0x74, 0x33, -+ 0x32, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x61, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, -+ 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x61, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x20, -+ 0x20, 0x62, 0x61, 0x6e, 0x64, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x2c, -+ 0x0a, 0x20, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, 0x6e, 0x6f, -+ 0x74, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x6f, 0x72, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, -+ 0x69, 0x74, 0x2e, 0x62, 0x6f, 0x72, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x78, 0x6f, 0x72, 0x20, 0x20, -+ 0x20, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x62, 0x78, 0x6f, 0x72, 0x2c, 0x0a, 0x20, 0x20, -+ 0x62, 0x74, 0x65, 0x73, 0x74, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -+ 0x6f, 0x6e, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -+ 0x72, 0x6e, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x7e, 0x3d, 0x20, -+ 0x30, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x74, 0x72, 0x61, -+ 0x63, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x61, 0x2c, -+ 0x66, 0x2c, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -+ 0x62, 0x61, 0x6e, 0x64, 0x28, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x28, 0x61, 0x2c, 0x66, 0x29, -+ 0x2c, 0x32, 0x5e, 0x28, 0x77, 0x20, 0x6f, 0x72, 0x20, 0x31, 0x29, 0x2d, 0x31, 0x29, 0x0a, 0x20, -+ 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x6c, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, -+ 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x72, 0x6f, 0x6c, 0x2c, 0x0a, 0x20, 0x20, 0x6c, 0x73, 0x68, -+ 0x69, 0x66, 0x74, 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x20, -+ 0x20, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, -+ 0x69, 0x6f, 0x6e, 0x28, 0x61, 0x2c, 0x76, 0x2c, 0x66, 0x2c, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x61, 0x73, 0x6b, 0x20, 0x3d, 0x20, 0x32, 0x5e, -+ 0x28, 0x77, 0x20, 0x6f, 0x72, 0x20, 0x31, 0x29, 0x2d, 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, -+ 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x28, 0x61, 0x2c, 0x62, 0x6e, 0x6f, -+ 0x74, 0x28, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x28, 0x6d, 0x61, 0x73, 0x6b, 0x2c, 0x66, 0x29, -+ 0x29, 0x29, 0x2b, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x28, 0x62, 0x61, 0x6e, 0x64, 0x28, 0x76, -+ 0x2c, 0x6d, 0x61, 0x73, 0x6b, 0x29, 0x2c, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, -+ 0x0a, 0x20, 0x20, 0x72, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, -+ 0x2e, 0x72, 0x6f, 0x72, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x20, -+ 0x3d, 0x20, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x5d, 0x5d, 0x20, 0x29, 0x0a, 0x0a, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x68, 0x6f, 0x70, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, -+ 0x74, 0x68, 0x65, 0x20, 0x62, 0x65, 0x73, 0x74, 0x20, 0x6f, 0x72, 0x20, 0x66, 0x61, 0x69, 0x6c, -+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x72, 0x65, -+ 0x71, 0x75, 0x69, 0x72, 0x65, 0x28, 0x22, 0x62, 0x69, 0x74, 0x33, 0x32, 0x22, 0x29, 0x0a, 0x0a, -+ 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, -+ 0x6e, 0x65, 0x65, 0x64, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x67, 0x65, 0x74, 0x74, 0x69, -+ 0x6e, 0x67, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x28, 0x22, 0x73, 0x6f, 0x63, 0x6b, -+ 0x65, 0x74, 0x22, 0x29, 0x20, 0x72, 0x69, 0x67, 0x68, 0x74, 0x0a, 0x0a, 0x64, 0x6f, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, -+ 0x20, 0x3d, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x65, -+ 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, -+ 0x61, 0x64, 0x65, 0x64, 0x2e, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x74, 0x68, 0x65, 0x6e, -+ 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x3d, -+ 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x5b, 0x22, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x2e, -+ 0x63, 0x6f, 0x72, 0x65, 0x22, 0x5d, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, -+ 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x6d, 0x69, 0x6d, -+ 0x65, 0x20, 0x20, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, -+ 0x6d, 0x69, 0x6d, 0x65, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x5b, -+ 0x22, 0x6d, 0x69, 0x6d, 0x65, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x22, 0x5d, 0x20, 0x20, 0x20, 0x65, -+ 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, -+ 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x6c, 0x66, 0x73, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x6c, -+ 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x6c, 0x66, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x64, 0x6f, 0x0a, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6c, 0x66, 0x73, 0x61, 0x74, 0x74, 0x72, 0x69, -+ 0x62, 0x75, 0x74, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x2e, -+ 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -+ 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x73, 0x79, 0x6d, 0x6c, 0x69, 0x6e, 0x6b, 0x61, 0x74, 0x74, 0x72, -+ 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x73, 0x79, 0x6d, -+ 0x6c, 0x69, 0x6e, 0x6b, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x74, 0x68, 0x65, 0x73, 0x65, 0x20, 0x63, 0x61, 0x6e, -+ 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x62, 0x65, 0x20, 0x64, 0x6f, 0x6e, 0x65, 0x20, 0x75, 0x73, 0x69, -+ 0x6e, 0x67, 0x20, 0x6c, 0x66, 0x73, 0x20, 0x28, 0x77, 0x61, 0x73, 0x20, 0x64, 0x65, 0x61, 0x64, -+ 0x20, 0x73, 0x6c, 0x6f, 0x77, 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x29, 0x0a, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, 0x73, -+ 0x66, 0x69, 0x6c, 0x65, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, -+ 0x73, 0x66, 0x69, 0x6c, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x20, -+ 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x28, -+ 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x22, 0x6d, 0x6f, 0x64, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -- 0x6e, 0x61, 0x6d, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, -- 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x72, 0x65, 0x20, 0x69, 0x73, 0x20, 0x61, 0x20, -- 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2c, 0x20, 0x73, 0x6f, -- 0x20, 0x2e, 0x2e, 0x2e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, -- 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x6b, 0x20, 0x74, 0x68, -- 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, -- 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x6b, -- 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, 0x79, 0x6d, 0x6c, 0x69, 0x6e, -- 0x6b, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, -- 0x2c, 0x22, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x22, 0x29, 0x20, 0x6f, 0x72, 0x20, 0x6e, 0x69, -- 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x00 -+ 0x6d, 0x20, 0x3d, 0x3d, 0x20, 0x22, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x20, 0x6f, 0x72, 0x20, 0x6d, -+ 0x20, 0x3d, 0x3d, 0x20, 0x22, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, -+ 0x73, 0x64, 0x69, 0x72, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, -+ 0x73, 0x64, 0x69, 0x72, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x20, 0x3d, -+ 0x20, 0x6c, 0x66, 0x73, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x28, 0x6e, -+ 0x61, 0x6d, 0x65, 0x2c, 0x22, 0x6d, 0x6f, 0x64, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x6d, -+ 0x20, 0x3d, 0x3d, 0x20, 0x22, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x22, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x73, 0x68, 0x6f, 0x72, -+ 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x61, 0x6c, 0x73, 0x6f, -+ 0x20, 0x62, 0x65, 0x20, 0x73, 0x6f, 0x72, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x64, 0x72, 0x6f, 0x70, -+ 0x70, 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x0a, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x73, 0x68, -+ 0x6f, 0x72, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, -+ 0x73, 0x2e, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, -+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -+ 0x74, 0x75, 0x72, 0x6e, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x72, 0x65, 0x20, -+ 0x69, 0x73, 0x20, 0x61, 0x20, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x20, 0x66, 0x69, 0x65, 0x6c, -+ 0x64, 0x2c, 0x20, 0x73, 0x6f, 0x20, 0x2e, 0x2e, 0x2e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, -+ 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, -+ 0x6e, 0x6b, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x65, 0x61, -+ 0x64, 0x6c, 0x69, 0x6e, 0x6b, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, -+ 0x79, 0x6d, 0x6c, 0x69, 0x6e, 0x6b, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, -+ 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x22, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x22, 0x29, 0x20, -+ 0x6f, 0x72, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, -+ 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, -+ 0x0a, 0x00 - }; - return luaL_dostring(L, (const char*) luatex_core_lua); - } -\ No newline at end of file diff --git a/CVE-2023-46048.patch b/CVE-2023-46048.patch deleted file mode 100644 index f7d710b9a1dce4004c165bddc2ea9bf27660e543..0000000000000000000000000000000000000000 --- a/CVE-2023-46048.patch +++ /dev/null @@ -1,54 +0,0 @@ -Origin: -https://github.com/TeX-Live/texlive-source/commit/33b330bc48ed2df69daf80a81be3cde8bf794816 -https://tug.org/pipermail/tex-live/2023-August/049402.html - -From 33b330bc48ed2df69daf80a81be3cde8bf794816 Mon Sep 17 00:00:00 2001 -From: Karl Berry -Date: Sat, 26 Aug 2023 17:50:10 +0000 -Subject: [PATCH] guard against corrupt pfb in dup tests, pdftex r910 - -git-svn-id: svn://tug.org/texlive/trunk/Build/source@68069 c570f23f-e606-0410-a88d-b1316a301751 ---- - texlive-20210325-source/texk/web2c/pdftexdir/writet1.c | 15 ++++++++++++--- - 1 files changed, 12 insertions(+), 3 deletions(-) - -diff --git a/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c b/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c -index 0444d46be0..f2a8386cab 100644 ---- a/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c -+++ b/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c -@@ -841,7 +841,10 @@ static char **t1_builtin_enc(void) - *t1_buf_array == '/' && valid_code(i)) { - if (strcmp(t1_buf_array + 1, notdef) != 0) - glyph_names[i] = xstrdup(t1_buf_array + 1); -- p = strstr(p, " put") + strlen(" put"); -+ p = strstr(p, " put"); -+ if (!p) -+ pdftex_fail("invalid pfb, no put found in dup"); -+ p += strlen(" put"); - skip(p, ' '); - } - /* -@@ -850,7 +853,10 @@ static char **t1_builtin_enc(void) - else if (sscanf(p, "dup dup %i exch %i get put", &b, &a) == 2 - && valid_code(a) && valid_code(b)) { - copy_glyph_names(glyph_names, a, b); -- p = strstr(p, " get put") + strlen(" get put"); -+ p = strstr(p, " get put"); -+ if (!p) -+ pdftex_fail("invalid pfb, no get put found in dup dup"); -+ p += strlen(" get put"); - skip(p, ' '); - } - /* -@@ -861,7 +867,10 @@ static char **t1_builtin_enc(void) - && valid_code(a) && valid_code(b) && valid_code(c)) { - for (i = 0; i < c; i++) - copy_glyph_names(glyph_names, a + i, b + i); -- p = strstr(p, " putinterval") + strlen(" putinterval"); -+ p = strstr(p, " putinterval"); -+ if (!p) -+ pdftex_fail("invalid pfb, no putinterval found in dup dup"); -+ p += strlen(" putinterval"); - skip(p, ' '); - } - /* diff --git a/CVE-2023-46051.patch b/CVE-2023-46051.patch deleted file mode 100644 index bbe2cdca67056745826e94885904ae14b5d7fbec..0000000000000000000000000000000000000000 --- a/CVE-2023-46051.patch +++ /dev/null @@ -1,37 +0,0 @@ -Origin: -https://github.com/TeX-Live/texlive-source/commit/8215ee325f74405f795a02d247fbd99302810261 -https://tug.org/pipermail/tex-live/2023-August/049415.html - -From 8215ee325f74405f795a02d247fbd99302810261 Mon Sep 17 00:00:00 2001 -From: Karl Berry -Date: Mon, 28 Aug 2023 22:32:09 +0000 -Subject: [PATCH] guard against undump of corrupt .fmt - -git-svn-id: svn://tug.org/texlive/trunk/Build/source@68100 c570f23f-e606-0410-a88d-b1316a301751 ---- - texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c | 9 ++++++++- - 1 files changed, 8 insertions(+), 1 deletion(-) - -diff --git a/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c b/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c -index e658064abb..e57c36f6be 100644 ---- a/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c -+++ b/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c -@@ -535,10 +535,17 @@ void undumptounicode(void) - void **result; - glyph_unicode_entry *gu = new_glyph_unicode_entry(); - undumpcharptr(gu->name); -+ if (gu->name == NULL) { -+ pdftex_fail("undumpcharptr(gu->name) got NULL"); -+ } - generic_undump(gu->code); - -- if (gu->code == UNI_STRING) -+ if (gu->code == UNI_STRING) { - undumpcharptr(gu->unicode_seq); -+ if (gu->unicode_seq == NULL) { -+ pdftex_fail("undumpcharptr(gu->unicode_seq) got NULL"); -+ } -+ } - - result = avl_probe(glyph_unicode_tree, gu); - assert(*result == gu); diff --git a/a2ping.doc.tar.xz b/a2ping.doc.tar.xz index e22dd00ddd5e7f30005d2669ffec604e104581f8..fb656680362f3359d77031ad94e0a4c2c68624d6 100644 Binary files a/a2ping.doc.tar.xz and b/a2ping.doc.tar.xz differ diff --git a/a2ping.tar.xz b/a2ping.tar.xz index b13e5bc2a751867915607bfdfd22699daad28526..52bcbd663b045fce8caefd0274f52b8243e8d5e7 100644 Binary files a/a2ping.tar.xz and b/a2ping.tar.xz differ diff --git a/accfonts.doc.tar.xz b/accfonts.doc.tar.xz index 9ee73abbbb7a02341d086c583ff1147b92a55bfa..0bd55d9bdc5a6c99c529a6837b77496425656cd5 100644 Binary files a/accfonts.doc.tar.xz and b/accfonts.doc.tar.xz differ diff --git a/accfonts.tar.xz b/accfonts.tar.xz index fbbbfee85eecc477130af7b1c5ae727eb8d172c2..ea77a05783fbf73ef7a7161d404d78ebe1abc8e7 100644 Binary files a/accfonts.tar.xz and b/accfonts.tar.xz differ diff --git a/adhocfilelist.doc.tar.xz b/adhocfilelist.doc.tar.xz index f4c90a2fcda8269814c94f25d4cfa67bf8e65d6a..b963bad7c701ae3e71041173aa37bdadac531209 100644 Binary files a/adhocfilelist.doc.tar.xz and b/adhocfilelist.doc.tar.xz differ diff --git a/adhocfilelist.tar.xz b/adhocfilelist.tar.xz index aeba868f4439490bb4b7392c1b2c5c06eecf51df..4220fcdcc0dae4292399aa86800acec3a3a07005 100644 Binary files a/adhocfilelist.tar.xz and b/adhocfilelist.tar.xz differ diff --git a/afm2pl.tar.xz b/afm2pl.tar.xz index eb2a142f64fcf88f98be863e47888af6e4e516bd..9548559086574cc0b9ac7913f4702ecb367e9b19 100644 Binary files a/afm2pl.tar.xz and b/afm2pl.tar.xz differ diff --git a/albatross.doc.tar.xz b/albatross.doc.tar.xz index ec5b6d630dd5b21640a2501bfaf6bb6ab29217ac..4f863f37cb4b4719b1e3d834560d332087e8cde1 100644 Binary files a/albatross.doc.tar.xz and b/albatross.doc.tar.xz differ diff --git a/albatross.tar.xz b/albatross.tar.xz index 3e8cb3056f8b64153264313de58dd61410723038..bb097fb63ea2e60a847486449bf398a948b96261 100644 Binary files a/albatross.tar.xz and b/albatross.tar.xz differ diff --git a/aleph.doc.tar.xz b/aleph.doc.tar.xz index 54b8490d0750e83fa5c9c70703f2d3f6b30da892..9e9baaa709fd6235bc68e2a1c09503a91bfa08fe 100644 Binary files a/aleph.doc.tar.xz and b/aleph.doc.tar.xz differ diff --git a/aleph.tar.xz b/aleph.tar.xz index dd39ab8fd8020860393aa03014162df4ca7fe2de..9a4d2edb5349e3892c981573db5a80e4141080b0 100644 Binary files a/aleph.tar.xz and b/aleph.tar.xz differ diff --git a/amstex.doc.tar.xz b/amstex.doc.tar.xz index 95d8e818c3ebef4f6629ad9f304b4af0b032021d..1e248a6c246e4da26f7e3e815930cdcc1f9e35c6 100644 Binary files a/amstex.doc.tar.xz and b/amstex.doc.tar.xz differ diff --git a/amstex.tar.xz b/amstex.tar.xz index 78262da40f82f7577011b4257a168d317a581399..7d1f0ba0889b29d957c94f76af1a22c8b9d0322a 100644 Binary files a/amstex.tar.xz and b/amstex.tar.xz differ diff --git a/aomart.doc.tar.xz b/aomart.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..6cda70bd53a3358a81cecc7b148e6ba8aab83083 --- /dev/null +++ b/aomart.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40f2e6510d46d73399c6247439fae9bdb724728e3a5808491831b3ccd46c248 +size 1260276 diff --git a/aomart.tar.xz b/aomart.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..9c96d7b177a2975d08d36ba82e81a29e4e4b63e1 --- /dev/null +++ b/aomart.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a34feb174a84e70e1c63724e46d35b218d109b45c43385e40537de597d11d4 +size 21468 diff --git a/arara.doc.tar.xz b/arara.doc.tar.xz index 3d25778f1d80c4975021ffb8b94301dfe28383e4..3d6d33bd58c65cd14fa409013710be617bf429d4 100644 Binary files a/arara.doc.tar.xz and b/arara.doc.tar.xz differ diff --git a/arara.tar.xz b/arara.tar.xz index a0ac557d6e8926b90eb5669175bded50285ac55a..699d321674a5f61f92022db85cdaf170ebc1b3ab 100644 Binary files a/arara.tar.xz and b/arara.tar.xz differ diff --git a/attachfile2.doc.tar.xz b/attachfile2.doc.tar.xz index 37912281fa9e92888c1d0c1fdc8a31c2038dbecd..b387feb667df9d62e69dbc79d557459abe23f81a 100644 Binary files a/attachfile2.doc.tar.xz and b/attachfile2.doc.tar.xz differ diff --git a/attachfile2.tar.xz b/attachfile2.tar.xz index 4fa1461433ac67a4a2ce4150422d0c8a68046963..cfad7a9207b05d70b870b85a3dea30cad34b0cf5 100644 Binary files a/attachfile2.tar.xz and b/attachfile2.tar.xz differ diff --git a/authorindex.doc.tar.xz b/authorindex.doc.tar.xz index f665f7753d74d72e535f22fa566ba666d5bff306..9ee33ab1ba259f228117b21ba84a767d20724552 100644 Binary files a/authorindex.doc.tar.xz and b/authorindex.doc.tar.xz differ diff --git a/authorindex.tar.xz b/authorindex.tar.xz index 2080592aa3b7e318e4f32435fd32ab4ec19fe6a5..7dc4e6e056ffe4aa1c6e29fc357e10dad633d76b 100644 Binary files a/authorindex.tar.xz and b/authorindex.tar.xz differ diff --git a/autosp.doc.tar.xz b/autosp.doc.tar.xz index d9ca81308efa31b4911fb1febecf1f4274ed5860..49967d0560a37ef7762cd89a8195ff3c9e128f0f 100644 Binary files a/autosp.doc.tar.xz and b/autosp.doc.tar.xz differ diff --git a/axodraw2.doc.tar.xz b/axodraw2.doc.tar.xz index 1c0b916982f9eb6e7f631ac808e041a575a57ea3..17cd3778e8cfa2bde11d1b2a69268f7d56fd9e1e 100644 Binary files a/axodraw2.doc.tar.xz and b/axodraw2.doc.tar.xz differ diff --git a/axodraw2.tar.xz b/axodraw2.tar.xz index ef8703c6290192744ec7b5a77b31ef7984dc944d..7f43aa7d07ee84c676ba6bdf7e9d302ec661c9bb 100644 Binary files a/axodraw2.tar.xz and b/axodraw2.tar.xz differ diff --git a/bib2gls.doc.tar.xz b/bib2gls.doc.tar.xz index 2e8a07871fef7719caee7c72f910f0dacd1b8910..320a1019a0c79d61551106aca01632ef170b6a81 100644 Binary files a/bib2gls.doc.tar.xz and b/bib2gls.doc.tar.xz differ diff --git a/bib2gls.tar.xz b/bib2gls.tar.xz index 9269189b6ee7f1c04608fea20e2a4e8cc41a59bd..0fe41cc66102ace79a84162e3314bce2de364bf7 100644 Binary files a/bib2gls.tar.xz and b/bib2gls.tar.xz differ diff --git a/bibcop.doc.tar.xz b/bibcop.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..64076db604c7364a2adeacb1ab44c62372a8e5e8 --- /dev/null +++ b/bibcop.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79d03a82bc315ea87845783abe0c94045100d541d037c0beef24a4ffb69d85df +size 266252 diff --git a/bibcop.tar.xz b/bibcop.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..0a4105fd08b86a808ee1dec72a9e817ed94ac581 --- /dev/null +++ b/bibcop.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b7d132fe7ed0cb5745c45069aeb3d367c267d7ab427aa903a311f4ceeb66ce2 +size 9520 diff --git a/bibexport.doc.tar.xz b/bibexport.doc.tar.xz index 97b80e0c255a4f482e1713bc1939ae3d580c48bd..2fc4f054f71039b00f7eaab103826c84dc34c94f 100644 Binary files a/bibexport.doc.tar.xz and b/bibexport.doc.tar.xz differ diff --git a/bibexport.tar.xz b/bibexport.tar.xz index f1c7f12737ad4b331389715b240aad61457c66cb..3b9b348fab7ee26de343e4f130d0b2868c73a191 100644 Binary files a/bibexport.tar.xz and b/bibexport.tar.xz differ diff --git a/bibtex.doc.tar.xz b/bibtex.doc.tar.xz index 27ba2d6e448acce2f9afa0a8b2df268306a35454..2150170998591c5a29868c96627891adf908d64b 100644 Binary files a/bibtex.doc.tar.xz and b/bibtex.doc.tar.xz differ diff --git a/bibtex.tar.xz b/bibtex.tar.xz index 0e9f19866d05eb767fb3354f1ad7f4b4d5247439..08f44c4d18d90809e62217515cb47c3b8ba4e1d7 100644 Binary files a/bibtex.tar.xz and b/bibtex.tar.xz differ diff --git a/bibtex8.doc.tar.xz b/bibtex8.doc.tar.xz index f641aeb9d7150ab80bc62c27783b0875d14718c6..9293aab1140571cfb8092d0d8b885c53e89b0fb1 100644 Binary files a/bibtex8.doc.tar.xz and b/bibtex8.doc.tar.xz differ diff --git a/bibtex8.tar.xz b/bibtex8.tar.xz index b5288df45eb0d08a07d5122ca929800643ea3f66..49c5ccf3dcad48feeab43c37d463987f40a3423d 100644 Binary files a/bibtex8.tar.xz and b/bibtex8.tar.xz differ diff --git a/bibtexu.doc.tar.xz b/bibtexu.doc.tar.xz index d3e19bc5794ab186e70620dd36118c7f4ad6d789..edaeb88fc4770e1ef2aee399fb23712e819b20be 100644 Binary files a/bibtexu.doc.tar.xz and b/bibtexu.doc.tar.xz differ diff --git a/bookshelf.doc.tar.xz b/bookshelf.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..ced9790276c6c488273ee9bcf3a7c2cb149978b7 --- /dev/null +++ b/bookshelf.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984c7a03cf326ea1254a4a3e862221e57bed7f87683a86206cd0da5f024d0523 +size 8705812 diff --git a/bookshelf.tar.xz b/bookshelf.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..b7d6c5658ba6bd963ab24e5a1b6ed0149fa15231 --- /dev/null +++ b/bookshelf.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:583d5708689039000609592b20b011b63a702c92b8b4da65a1b7eda9e6c55263 +size 8036 diff --git a/bundledoc.doc.tar.xz b/bundledoc.doc.tar.xz index ae6454f978fb5527d0b7a408bf352e51dfc83dc9..c7b0c5c5124bccfa0d8b4067f69937adefaac507 100644 Binary files a/bundledoc.doc.tar.xz and b/bundledoc.doc.tar.xz differ diff --git a/bundledoc.tar.xz b/bundledoc.tar.xz index a677a8cb08a64b376fbbbdc2b22485e2a678fe8a..06e1e358ea2c7e270c89d6a0fa8f2f070b029acb 100644 Binary files a/bundledoc.tar.xz and b/bundledoc.tar.xz differ diff --git a/cachepic.doc.tar.xz b/cachepic.doc.tar.xz index 6140a6248649ef5ef06ca2d63dbdd877e0953fd5..c9b575df02adb9077bae7214c842dfdeba42d492 100644 Binary files a/cachepic.doc.tar.xz and b/cachepic.doc.tar.xz differ diff --git a/cachepic.tar.xz b/cachepic.tar.xz index 0973d09920898f8114e737fa4d59b1ee663cbbbe..b689ba9fa87572d19b73099254185d4f5cd29eb2 100644 Binary files a/cachepic.tar.xz and b/cachepic.tar.xz differ diff --git a/checkcites.doc.tar.xz b/checkcites.doc.tar.xz index 9190edf5fab681121832a989b8b227e55ed6c18f..b5a7e4e02d18f1c6e8ce3d1cfac266e32535dea9 100644 Binary files a/checkcites.doc.tar.xz and b/checkcites.doc.tar.xz differ diff --git a/checkcites.tar.xz b/checkcites.tar.xz index eeb6d23ff2edbc441f36843b46f6eee3af629af0..0dedd72980bc1fcbc762665625d6579a322835e2 100644 Binary files a/checkcites.tar.xz and b/checkcites.tar.xz differ diff --git a/checklistings.doc.tar.xz b/checklistings.doc.tar.xz index 16fdfe0768fe8b1df40506229f6e24c81d5eb90c..b96981e05c84ec69f3d3682637e1b68866543e90 100644 Binary files a/checklistings.doc.tar.xz and b/checklistings.doc.tar.xz differ diff --git a/checklistings.tar.xz b/checklistings.tar.xz index d8b325e44c6e20449de67e080c64912df4359f0d..c3a03d953dc96750f3a2ae52b9b896e28b02caed 100644 Binary files a/checklistings.tar.xz and b/checklistings.tar.xz differ diff --git a/chklref.doc.tar.xz b/chklref.doc.tar.xz index 00ecfaa33ba6cd53d2cb5181ef300ab4929a6544..447327c6ef0b06a075dd3a9236fb8f34c116cf9c 100644 Binary files a/chklref.doc.tar.xz and b/chklref.doc.tar.xz differ diff --git a/chklref.tar.xz b/chklref.tar.xz index 969de1d1a7c1038be48fef5fa9cf39eb4212f9ed..d7390df4fc3e9f20db7996f7d748ee52604f34e2 100644 Binary files a/chklref.tar.xz and b/chklref.tar.xz differ diff --git a/chktex.doc.tar.xz b/chktex.doc.tar.xz index 303ef49e9e06d75a940f8ba0a2bf2716a9114879..faf4eac780bf6e79f657857fbea7e861c14d40a6 100644 Binary files a/chktex.doc.tar.xz and b/chktex.doc.tar.xz differ diff --git a/chktex.tar.xz b/chktex.tar.xz index 1878ae248c655cde9939ca26d9d0d78d5b89aa21..fb3e6cddda6c08969e0e9c10d042da2943d70779 100644 Binary files a/chktex.tar.xz and b/chktex.tar.xz differ diff --git a/citation-style-language.doc.tar.xz b/citation-style-language.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..b304e888beffb36daefbcf527dc40fb9586dba7d --- /dev/null +++ b/citation-style-language.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cbe6f2b5c8e273504572a5748040860de032afc564ff3f227f8ab1b2d51ac88 +size 265064 diff --git a/citation-style-language.tar.xz b/citation-style-language.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..a1636296545fcc7917533ea282b242b50ad397df --- /dev/null +++ b/citation-style-language.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a5478e3d5ebe8a4c9e851430ee65c082adcc49b29ff03a5fcefb9948e4821b +size 1578136 diff --git a/cjk-gs-integrate.doc.tar.xz b/cjk-gs-integrate.doc.tar.xz index 6531255d4017d46a24192de1d1308f4d1e8834b3..23fa2d8bcf3bd5e5ba60363213a2bffcb6700c8f 100644 Binary files a/cjk-gs-integrate.doc.tar.xz and b/cjk-gs-integrate.doc.tar.xz differ diff --git a/cjk-gs-integrate.tar.xz b/cjk-gs-integrate.tar.xz index 73d0a497e0bb97157a973e7b002ec8158a23bc62..410fb72012eab1a28e7359a3eefb5f0382fb1c83 100644 Binary files a/cjk-gs-integrate.tar.xz and b/cjk-gs-integrate.tar.xz differ diff --git a/cjkutils.tar.xz b/cjkutils.tar.xz index 329613dc4dc769e4f611dffd2d007999b548e792..dc91905e7e4ffdaaca168e16a90caf07245c6ebb 100644 Binary files a/cjkutils.tar.xz and b/cjkutils.tar.xz differ diff --git a/clojure-pamphlet.doc.tar.xz b/clojure-pamphlet.doc.tar.xz index 2948e7eb6c0b652e7935a8e9e71e6975b0bbae11..c8dec6894a15736ec4738929143df9159648b863 100644 Binary files a/clojure-pamphlet.doc.tar.xz and b/clojure-pamphlet.doc.tar.xz differ diff --git a/clojure-pamphlet.tar.xz b/clojure-pamphlet.tar.xz index c9f74d1063ff742d3a507197f0db80d7ff66b991..43958c3430bc3d77296003001f557b203a18aa0f 100644 Binary files a/clojure-pamphlet.tar.xz and b/clojure-pamphlet.tar.xz differ diff --git a/cluttex.doc.tar.xz b/cluttex.doc.tar.xz index daaab87fc0aa441992a4eddcb5b547bcf55625b6..b7eb07237c2e629bbe17c64526554dec70165844 100644 Binary files a/cluttex.doc.tar.xz and b/cluttex.doc.tar.xz differ diff --git a/cluttex.tar.xz b/cluttex.tar.xz index f9d1a6ec3fa094cce3689abbe11a580f0373e942..d281b4333e405478a26e849dde211a79ca346e13 100644 Binary files a/cluttex.tar.xz and b/cluttex.tar.xz differ diff --git a/context.doc.tar.xz b/context.doc.tar.xz index f1e6c715a633dff0a2450455b5f4e2a566fceba3..bafa924ea3a7945bba76e303adb3d1a5aec04b0b 100644 Binary files a/context.doc.tar.xz and b/context.doc.tar.xz differ diff --git a/context.tar.xz b/context.tar.xz index ae551c05a88118e17f77edd6b02923c940b9bd9b..a14f0661e5e43b6c9e15cdd0e1d5f5c8a2e44ece 100644 Binary files a/context.tar.xz and b/context.tar.xz differ diff --git a/convbkmk.doc.tar.xz b/convbkmk.doc.tar.xz index 66372d9219b6c73411ac2c082cd75e7a7dedc11b..2a37824a26fc6c9b193aa9e8b016fb3cd1852bd8 100644 Binary files a/convbkmk.doc.tar.xz and b/convbkmk.doc.tar.xz differ diff --git a/convbkmk.tar.xz b/convbkmk.tar.xz index 21539cb463f3cc3756a3f558c1156a004b05635d..50884e1cbd39e71a047ca2604cc3f9ef47aa7d76 100644 Binary files a/convbkmk.tar.xz and b/convbkmk.tar.xz differ diff --git a/crossrefware.doc.tar.xz b/crossrefware.doc.tar.xz index c93d906aefaf5aaea3ef993203a5f1f763858867..ead5e2a79bc1d710dbe501aadef3cd42b716ae67 100644 Binary files a/crossrefware.doc.tar.xz and b/crossrefware.doc.tar.xz differ diff --git a/crossrefware.tar.xz b/crossrefware.tar.xz index 4d70abb43ea14c8cbd4bfa8209812eb3349df5dc..c702d2d6d383b60526d3d798cf3726bd4bb0d5ab 100644 Binary files a/crossrefware.tar.xz and b/crossrefware.tar.xz differ diff --git a/cslatex.tar.xz b/cslatex.tar.xz index e9714f42f9404c14b9bcc9f689bc028db3d50e57..1b6d540f2c16af6120d13fd7f68650efe10ad187 100644 Binary files a/cslatex.tar.xz and b/cslatex.tar.xz differ diff --git a/csplain.tar.xz b/csplain.tar.xz index 7c4c1e10795954e6e659cd8455667986d3b71578..58a4d713a255d81ca179cb10a9c63458f149e8a4 100644 Binary files a/csplain.tar.xz and b/csplain.tar.xz differ diff --git a/ctan-o-mat.doc.tar.xz b/ctan-o-mat.doc.tar.xz index 5d402321708aa4dce59665f8ab415f2743de198c..671de1800bd99c70bb5acaf1f7f9351fe77cc5a6 100644 Binary files a/ctan-o-mat.doc.tar.xz and b/ctan-o-mat.doc.tar.xz differ diff --git a/ctan-o-mat.tar.xz b/ctan-o-mat.tar.xz index 4c9372d907028994b68a76204aa42ca9163fd0c0..8cf14a37c9d47b6b496df9317a9522ca13cdba14 100644 Binary files a/ctan-o-mat.tar.xz and b/ctan-o-mat.tar.xz differ diff --git a/ctanbib.doc.tar.xz b/ctanbib.doc.tar.xz index e99187c4e6624b9cb79aeefcdae43fafde9258b9..5c15449e868c34a81216b8d62bad7682bb57f3b4 100644 Binary files a/ctanbib.doc.tar.xz and b/ctanbib.doc.tar.xz differ diff --git a/ctanbib.tar.xz b/ctanbib.tar.xz index 8b6a233706ca4df01c08e9141078402519c9b2d7..ab698820f08a38c5d0ebdefb1bf4d5b8f1c5b92e 100644 Binary files a/ctanbib.tar.xz and b/ctanbib.tar.xz differ diff --git a/ctanify.doc.tar.xz b/ctanify.doc.tar.xz index e66afc6fa37e249f07850d2ed8b098e018214141..bc7025c18854368fdf4a3cc1407be93f41ea5ef2 100644 Binary files a/ctanify.doc.tar.xz and b/ctanify.doc.tar.xz differ diff --git a/ctanify.tar.xz b/ctanify.tar.xz index 5174b829687d5d49651bddb34b6df35ce761e585..545cdc43c7ad6185c67d27cf31211ebc6d043a59 100644 Binary files a/ctanify.tar.xz and b/ctanify.tar.xz differ diff --git a/ctanupload.doc.tar.xz b/ctanupload.doc.tar.xz index 65920871aca617e87e2b80215d76bbc9d032ee56..4dc8742cef2af1122b9510506ff40a092f8e6738 100644 Binary files a/ctanupload.doc.tar.xz and b/ctanupload.doc.tar.xz differ diff --git a/ctanupload.tar.xz b/ctanupload.tar.xz index ba4497591ebb7cfe42f58286da505d935eb3abe1..673475aeeeaec8f6473110439626ab3c77845661 100644 Binary files a/ctanupload.tar.xz and b/ctanupload.tar.xz differ diff --git a/ctie.doc.tar.xz b/ctie.doc.tar.xz index 153a28d1270c7aa0e64307d83ed407532e05227d..3bf82107ed7920c2ac146409e0d53a1e130a45d0 100644 Binary files a/ctie.doc.tar.xz and b/ctie.doc.tar.xz differ diff --git a/cweb.doc.tar.xz b/cweb.doc.tar.xz index c052461ecfe13edbe357d33502efa7a5a7b493c8..de208108620249980fabf772922f5798db65069c 100644 Binary files a/cweb.doc.tar.xz and b/cweb.doc.tar.xz differ diff --git a/cweb.tar.xz b/cweb.tar.xz index 72291fd40a329e09ac0739838c352be0de42f648..53a2a6e68845c6753d05e3d0954ca63e7d677a1d 100644 Binary files a/cweb.tar.xz and b/cweb.tar.xz differ diff --git a/cyrillic-bin.doc.tar.xz b/cyrillic-bin.doc.tar.xz index 667c7e70378d61242f2090e3c358df1668729d9c..7e71e5ec5469d8d37cd14e4bc411e283454ec830 100644 Binary files a/cyrillic-bin.doc.tar.xz and b/cyrillic-bin.doc.tar.xz differ diff --git a/cyrillic-bin.tar.xz b/cyrillic-bin.tar.xz index d79fd103ec99f5264feb3e63e12551112bae99a4..5d9dbfca81c550db058d560ae8390504f16f7683 100644 Binary files a/cyrillic-bin.tar.xz and b/cyrillic-bin.tar.xz differ diff --git a/cyrillic.doc.tar.xz b/cyrillic.doc.tar.xz index 953e0b4b86b8e607b03a444f02d32e2b48a8418f..f72a6f4f6372c32e2a5d65776cde227fdf6511bf 100644 Binary files a/cyrillic.doc.tar.xz and b/cyrillic.doc.tar.xz differ diff --git a/cyrillic.tar.xz b/cyrillic.tar.xz index bec25e413cede129dcd6d7686b7ae9c64615aa16..86b5fcdbd7c3a5d4c3f3f5e24a0c64739c2f573c 100644 Binary files a/cyrillic.tar.xz and b/cyrillic.tar.xz differ diff --git a/de-macro.doc.tar.xz b/de-macro.doc.tar.xz index 62b1febf8cf89b4e8efed14768bf1e73208f2ab9..889768b5c55096eee158e6784346234d8beb058a 100644 Binary files a/de-macro.doc.tar.xz and b/de-macro.doc.tar.xz differ diff --git a/de-macro.tar.xz b/de-macro.tar.xz index c64b66136e37f117fdd2bf2b9dc6a10894daba66..f38f9e7f4cbaefc0cb446956b835d1b4d0efcbdc 100644 Binary files a/de-macro.tar.xz and b/de-macro.tar.xz differ diff --git a/detex.doc.tar.xz b/detex.doc.tar.xz index cf05d5907f0e28881375e51314a3720a9228e90a..9ac7057325b2b95df4e3b386e69e16bb00b9de86 100644 Binary files a/detex.doc.tar.xz and b/detex.doc.tar.xz differ diff --git a/detex.tar.xz b/detex.tar.xz index dc31ea310561550b5d34f22b818aaadbb4081355..c3f06498c7618d146ad0006d0ade1fba78b1c3ee 100644 Binary files a/detex.tar.xz and b/detex.tar.xz differ diff --git a/diadia.doc.tar.xz b/diadia.doc.tar.xz index 253b43aa22005295ec07f65f6ab99b917816dec9..55ca4c5b1826bd2f61c4e451ff0b7c4695ac282e 100644 Binary files a/diadia.doc.tar.xz and b/diadia.doc.tar.xz differ diff --git a/diadia.tar.xz b/diadia.tar.xz index 42cd31ae4c9a29344b98686afb731133718843cc..a5b7bd63e146befa93d2ef373ead4a16aac827bd 100644 Binary files a/diadia.tar.xz and b/diadia.tar.xz differ diff --git a/digestif.doc.tar.xz b/digestif.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..6bdb75c1f609f0fb64e5e33ab2f7dc70ddc180c5 --- /dev/null +++ b/digestif.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6360a2dd277351f4bcba9f11912364cd03ab35d2d0d357779b18ffd5f2b848 +size 5692 diff --git a/digestif.tar.xz b/digestif.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..6c50f3c7f2380b6102393d644c5f885c57f69420 --- /dev/null +++ b/digestif.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942d21f54ffd52ddc09e69c6d9c50070277da3d5ad02fb505e5133ed23b6f3a5 +size 641484 diff --git a/dosepsbin.doc.tar.xz b/dosepsbin.doc.tar.xz index eae3479db7f80da7a03a23d1e345a2e3e5b37e73..d4436f0b161c8b5ddad290232d6cbd6ff61a908f 100644 Binary files a/dosepsbin.doc.tar.xz and b/dosepsbin.doc.tar.xz differ diff --git a/dosepsbin.tar.xz b/dosepsbin.tar.xz index 923853977095cce6e3f29e4dac3ae213b6d96d7e..6ea6a673d6d6766be4ea1bb9518449e0c6a22b69 100644 Binary files a/dosepsbin.tar.xz and b/dosepsbin.tar.xz differ diff --git a/dtl.doc.tar.xz b/dtl.doc.tar.xz index 724124be2dda6d9887701ea4a72ae5b8c65d6b63..38eee1c25e2ddf93a1a8d6942d9e6452f32042d8 100644 Binary files a/dtl.doc.tar.xz and b/dtl.doc.tar.xz differ diff --git a/dtl.tar.xz b/dtl.tar.xz index 1149ed68b4342eab21bba66325e368ff16235c6b..b75bbe933f7c6325655ff7c5e3a0660c0ffbc5f5 100644 Binary files a/dtl.tar.xz and b/dtl.tar.xz differ diff --git a/dtxgen.doc.tar.xz b/dtxgen.doc.tar.xz index 0128a2be2dd2e5f171339d38da6e211b4218daac..e4d65499d91bf175b74d1f4899c80fc958d21bcc 100644 Binary files a/dtxgen.doc.tar.xz and b/dtxgen.doc.tar.xz differ diff --git a/dtxgen.tar.xz b/dtxgen.tar.xz index 06330f8b9fcc6fb0a3ae56c88584c9a0c4a96719..9b2fdf6d6433acf5ebe92c6deede532412d3c706 100644 Binary files a/dtxgen.tar.xz and b/dtxgen.tar.xz differ diff --git a/dvi2tty.doc.tar.xz b/dvi2tty.doc.tar.xz index 0b9156612f3f7eaf1c66167dd5d29ff6c7fa4315..4fe92bad3eaaf2739cb6198e7907b8731a1680d4 100644 Binary files a/dvi2tty.doc.tar.xz and b/dvi2tty.doc.tar.xz differ diff --git a/dvi2tty.tar.xz b/dvi2tty.tar.xz index 14c961618a46e55ae90ae85bf5464af6101dd440..ba1b0d02c39dcb367e0c3e26abb8e4f7ab05a542 100644 Binary files a/dvi2tty.tar.xz and b/dvi2tty.tar.xz differ diff --git a/dviasm.doc.tar.xz b/dviasm.doc.tar.xz index e6ad692301e7a5275af6cc57e96f9a2c3980fb5a..1dc5db98f47f80da422d02f49e1e2ce34393ddb2 100644 Binary files a/dviasm.doc.tar.xz and b/dviasm.doc.tar.xz differ diff --git a/dviasm.tar.xz b/dviasm.tar.xz index bfbc25aa2e3e43ff157b25c04ddd06df8c0cd67d..2bf6188f1cabea1331176e8a8aa12c7f35e9397f 100644 Binary files a/dviasm.tar.xz and b/dviasm.tar.xz differ diff --git a/dvicopy.doc.tar.xz b/dvicopy.doc.tar.xz index cfb1b2bd56af56f2f0e80bfc1e7421edce5535aa..efc3216f82dbeefa4abb11a5584dba8e2923d00f 100644 Binary files a/dvicopy.doc.tar.xz and b/dvicopy.doc.tar.xz differ diff --git a/dvicopy.tar.xz b/dvicopy.tar.xz index bcb42caaa8acf9a691029a65acd531b82ae3ad60..7ebe28e3573d16326b84daa4ae4836eac20c31ce 100644 Binary files a/dvicopy.tar.xz and b/dvicopy.tar.xz differ diff --git a/dvidvi.doc.tar.xz b/dvidvi.doc.tar.xz index cedbe92bdffbb43f0170fcdb820f15306026f905..18a42ee7dbe0b5f12a4a7d7175c7c881d60abaa8 100644 Binary files a/dvidvi.doc.tar.xz and b/dvidvi.doc.tar.xz differ diff --git a/dvidvi.tar.xz b/dvidvi.tar.xz index b060b0542bed3ad97311ec2aa0baa09b992311dc..f47b17344b101ba33cac030cda4450cd87b09150 100644 Binary files a/dvidvi.tar.xz and b/dvidvi.tar.xz differ diff --git a/dviinfox.doc.tar.xz b/dviinfox.doc.tar.xz index 8d29c01d68202d782e6ec632d5156588a220cca5..a19f737bed3773ce6b7023a7d0e5aae5f2dce294 100644 Binary files a/dviinfox.doc.tar.xz and b/dviinfox.doc.tar.xz differ diff --git a/dviinfox.tar.xz b/dviinfox.tar.xz index f79536e8e3b45941227401e9903896782184ba1d..5aab8a4fdce63752cdf9013fc9f018d9e077dff8 100644 Binary files a/dviinfox.tar.xz and b/dviinfox.tar.xz differ diff --git a/dviljk.doc.tar.xz b/dviljk.doc.tar.xz index be2e4ce6d793d00e86e75ccfe511b5eaea92ced9..d609f6825ccfd107f220793e5966c0c947ccfbab 100644 Binary files a/dviljk.doc.tar.xz and b/dviljk.doc.tar.xz differ diff --git a/dviljk.tar.xz b/dviljk.tar.xz index 79cfef108a0cf2eb377bbca090c64307c3cfb249..e59378b0a46dc606958f352d03e56f743c1984c1 100644 Binary files a/dviljk.tar.xz and b/dviljk.tar.xz differ diff --git a/dviout-util.doc.tar.xz b/dviout-util.doc.tar.xz index 6d18cc6e055db1020ac34c548713f57e05d5e942..09931855afbb3e5854c771d7a95e41b5f900d3be 100644 Binary files a/dviout-util.doc.tar.xz and b/dviout-util.doc.tar.xz differ diff --git a/dvipdfmx.doc.tar.xz b/dvipdfmx.doc.tar.xz index c00465dd0b695166236da05c65425ce07ee109ee..e3f67d33cacae90064b9626cde8d4d108b41829d 100644 Binary files a/dvipdfmx.doc.tar.xz and b/dvipdfmx.doc.tar.xz differ diff --git a/dvipdfmx.tar.xz b/dvipdfmx.tar.xz index 0b1eef2dd35b56e04dba95b5bdd31a875a4934e0..e0931df8c38372e5e027b939accb2e9a65678130 100644 Binary files a/dvipdfmx.tar.xz and b/dvipdfmx.tar.xz differ diff --git a/dvipng.doc.tar.xz b/dvipng.doc.tar.xz index cc4cfc29467125ae792ad55550def2c540c433e1..c7aa170e831a9bafa134e1f55b8a92b561e5d4d3 100644 Binary files a/dvipng.doc.tar.xz and b/dvipng.doc.tar.xz differ diff --git a/dvipng.tar.xz b/dvipng.tar.xz index 6ec4e73acd997b6ce4551b7a012c4dc27fb1edbe..c67cc07f74581c79bd882ecc8af19e5343804b59 100644 Binary files a/dvipng.tar.xz and b/dvipng.tar.xz differ diff --git a/dvipos.doc.tar.xz b/dvipos.doc.tar.xz index 8a2f6e972be3dfa41fd76c568e3c9d4bdd7f0bd0..eaa7ebca80247151597b63e9f9baade5d3ceaab6 100644 Binary files a/dvipos.doc.tar.xz and b/dvipos.doc.tar.xz differ diff --git a/dvipos.tar.xz b/dvipos.tar.xz index e6261e12743afc8e598aa89ccb21d6c8bd575ab4..53771d54e2fb77831372c9809c036b93ad50b94b 100644 Binary files a/dvipos.tar.xz and b/dvipos.tar.xz differ diff --git a/dvips.doc.tar.xz b/dvips.doc.tar.xz index 3a26d566e80bb215c3e2d5278aba5081f1a799e5..929bdb0c9d71b54bd25caa51bd361a3ebb155d91 100644 Binary files a/dvips.doc.tar.xz and b/dvips.doc.tar.xz differ diff --git a/dvips.tar.xz b/dvips.tar.xz index e381c4a10af7f29a4e52dc1d2e047737afa13876..f0510adf652514e86a659e8a0e9dc6261bdf6615 100644 Binary files a/dvips.tar.xz and b/dvips.tar.xz differ diff --git a/dvisvgm.doc.tar.xz b/dvisvgm.doc.tar.xz index d3e09eebecb2c2f5f976b9b8562eef370fb84cfb..50bc35df813efdf010dadeef5bd678de1aa39aa7 100644 Binary files a/dvisvgm.doc.tar.xz and b/dvisvgm.doc.tar.xz differ diff --git a/dvisvgm.tar.xz b/dvisvgm.tar.xz index 69fc384c145fa003199df0b0afdf611efbb7089c..4dfeb8b709ca997d9aa377c8c9d4c534929c3fbd 100644 Binary files a/dvisvgm.tar.xz and b/dvisvgm.tar.xz differ diff --git a/easydtx.doc.tar.xz b/easydtx.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..db4acf325662fead159cedc0291527030ad7f606 --- /dev/null +++ b/easydtx.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd704b5479054bef8f816d7ad735c188e809af998924f6f6c4482fdb0cdb26b1 +size 38172 diff --git a/easydtx.tar.xz b/easydtx.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..55e346e1e9dbe8a220b8cde1e62bf048d801ffc0 --- /dev/null +++ b/easydtx.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dc7afa8173f306e16095cdfdb2e7d3e02b0587f74e5cdbb0315185f18814f94 +size 2220 diff --git a/ebong.doc.tar.xz b/ebong.doc.tar.xz index 71de1790185a797e843e118cde2cbed0c7737bb1..c9bfb5ce84eb987f067adc00d2c651474887984d 100644 Binary files a/ebong.doc.tar.xz and b/ebong.doc.tar.xz differ diff --git a/ebong.tar.xz b/ebong.tar.xz index c99eb0131612075a90c8a27e1ace7784b105b098..ac58dfc1b2ab73113abeb9992aa7388df0fbc81b 100644 Binary files a/ebong.tar.xz and b/ebong.tar.xz differ diff --git a/eolang.doc.tar.xz b/eolang.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..f078f80cec5df5669239fb84819fc71bc4df353a --- /dev/null +++ b/eolang.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909cca1c280b3b130fdfa18d78c79f444f2cfb32af3c455a659f274940e51a54 +size 1308296 diff --git a/eolang.tar.xz b/eolang.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..1947240d0aea80f3c609bbdc6ffdec1e699e05d8 --- /dev/null +++ b/eolang.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6beefb23217622fbfdd5a970422f954ff8ea18b25353a24809e89074ac123969 +size 9096 diff --git a/eplain.doc.tar.xz b/eplain.doc.tar.xz index 982c9a44b09a89c7b68b5be5b3f71561bfb71064..7a04d7fd88763c5951ab82852a8230fa007db747 100644 Binary files a/eplain.doc.tar.xz and b/eplain.doc.tar.xz differ diff --git a/eplain.tar.xz b/eplain.tar.xz index e8654f0e3581fc6df55498b50ea413f1b315c23f..5712ac26304dba932339ae9ac645146591e65206 100644 Binary files a/eplain.tar.xz and b/eplain.tar.xz differ diff --git a/epspdf.doc.tar.xz b/epspdf.doc.tar.xz index 6522a8a282be8199cbf24db7cf799ede0864ef66..a44ae0a30476291f905f351f7f681b898628bda9 100644 Binary files a/epspdf.doc.tar.xz and b/epspdf.doc.tar.xz differ diff --git a/epspdf.tar.xz b/epspdf.tar.xz index 4a5f5182583b714edf0afb913a8f98b783ea7359..221d834cc14f9ac99e7a0403cd6cdb0d737a820e 100644 Binary files a/epspdf.tar.xz and b/epspdf.tar.xz differ diff --git a/epstopdf.doc.tar.xz b/epstopdf.doc.tar.xz index fa9b69054660126c4c981d229d6dbb7e36ff989e..4cb00aa3f85e92c4b4299322b68662838e46d978 100644 Binary files a/epstopdf.doc.tar.xz and b/epstopdf.doc.tar.xz differ diff --git a/epstopdf.tar.xz b/epstopdf.tar.xz index 95708aedac2edf102863706b30104d030e1fe27a..293bcaaf000999e783bc8d06e0fdfd9dc742916a 100644 Binary files a/epstopdf.tar.xz and b/epstopdf.tar.xz differ diff --git a/exceltex.doc.tar.xz b/exceltex.doc.tar.xz index 446a9c992ba418db4f7e518346f325f0314a7a5f..27764b7c075b9c16bc8dc8310a6e16fbe7ff8d4a 100644 Binary files a/exceltex.doc.tar.xz and b/exceltex.doc.tar.xz differ diff --git a/exceltex.tar.xz b/exceltex.tar.xz index c574f19d802a3b63ced32cd521a184b923c40a14..3d8925271b6c30b8e47ff12f6838aa6899a5709e 100644 Binary files a/exceltex.tar.xz and b/exceltex.tar.xz differ diff --git a/expltools.doc.tar.xz b/expltools.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..a8cde24366ffea4bb873d26781d7ac091dd6ba86 --- /dev/null +++ b/expltools.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a9727185b87ec799135899e21bd290121a4977c29cc88261fc8623c6649698 +size 2855424 diff --git a/expltools.tar.xz b/expltools.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..f6df1d38a1377785a74de55d6f715e83ecfdda3e --- /dev/null +++ b/expltools.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f00506bb7d3fbc1d580ca400bbc3ac2933b72f6e64dc5a785b21a4d39fa807 +size 44568 diff --git a/extractbb.doc.tar.xz b/extractbb.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..e9d2577536dc5c773f6bbd8a5fd04f8dcad1b6cf --- /dev/null +++ b/extractbb.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9caeea8d1f8ff039716e315da28bdbbb95db88b3552ccde6ca16d87133cfbe +size 24336 diff --git a/extractbb.tar.xz b/extractbb.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..bece43dbd86322c66967a1dc8dcd5f1ccdad499c --- /dev/null +++ b/extractbb.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a6d4e9619ce262403127cb3d15c0ff7c01eb3b7127250f8238bc096f5cb798 +size 5964 diff --git a/fig4latex.doc.tar.xz b/fig4latex.doc.tar.xz index 831d8cd88586054796fca5021af28a2f1235a5f9..d54a34194320293400646fd48250a873150e63ed 100644 Binary files a/fig4latex.doc.tar.xz and b/fig4latex.doc.tar.xz differ diff --git a/fig4latex.tar.xz b/fig4latex.tar.xz index bb2a626fee93ebb1d1d72f68d35b913c21f11347..414cdf0b82d173adf218eac18200131f337cdbed 100644 Binary files a/fig4latex.tar.xz and b/fig4latex.tar.xz differ diff --git a/filelist-20250930 b/filelist-20250930 new file mode 100644 index 0000000000000000000000000000000000000000..687f96d3e21e27648b2d7d8cfb8fad61ee018417 --- /dev/null +++ b/filelist-20250930 @@ -0,0 +1,29521 @@ +Index of /systems/texlive/tlnet/archive/ +../ +12many.doc.r15878.tar.xz 28-Feb-2019 02:13 375412 +12many.doc.tar.xz 28-Feb-2019 02:13 375412 +12many.r15878.tar.xz 28-Feb-2019 02:13 2104 +12many.source.r15878.tar.xz 28-Feb-2019 02:13 6592 +12many.source.tar.xz 28-Feb-2019 02:13 6592 +12many.tar.xz 28-Feb-2019 02:13 2104 +2up.doc.r55076.tar.xz 09-May-2020 23:53 52456 +2up.doc.tar.xz 09-May-2020 23:53 52456 +2up.r55076.tar.xz 09-May-2020 23:53 4200 +2up.tar.xz 09-May-2020 23:53 4200 +a0poster.doc.r54071.tar.xz 04-Mar-2020 22:48 118128 +a0poster.doc.tar.xz 04-Mar-2020 22:48 118128 +a0poster.r54071.tar.xz 04-Mar-2020 22:48 3308 +a0poster.tar.xz 04-Mar-2020 22:48 3308 +a2ping.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:13 340 +a2ping.aarch64-linux.tar.xz 28-Feb-2019 02:13 340 +a2ping.amd64-freebsd.r27321.tar.xz 28-Feb-2019 02:13 344 +a2ping.amd64-freebsd.tar.xz 28-Feb-2019 02:13 344 +a2ping.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:13 340 +a2ping.amd64-netbsd.tar.xz 28-Feb-2019 02:13 340 +a2ping.armhf-linux.r30015.tar.xz 28-Feb-2019 02:13 340 +a2ping.armhf-linux.tar.xz 28-Feb-2019 02:13 340 +a2ping.doc.r52964.tar.xz 29-Nov-2019 00:53 39744 +a2ping.doc.tar.xz 29-Nov-2019 00:53 39744 +a2ping.i386-freebsd.r27321.tar.xz 28-Feb-2019 02:13 344 +a2ping.i386-freebsd.tar.xz 28-Feb-2019 02:13 344 +a2ping.i386-linux.r27321.tar.xz 28-Feb-2019 02:13 340 +a2ping.i386-linux.tar.xz 28-Feb-2019 02:13 340 +a2ping.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:13 344 +a2ping.i386-netbsd.tar.xz 28-Feb-2019 02:13 344 +a2ping.i386-solaris.r27321.tar.xz 28-Feb-2019 02:13 340 +a2ping.i386-solaris.tar.xz 28-Feb-2019 02:13 340 +a2ping.r52964.tar.xz 29-Nov-2019 00:53 30652 +a2ping.tar.xz 29-Nov-2019 00:53 30652 +a2ping.universal-darwin.r57908.tar.xz 25-Feb-2021 18:15 340 +a2ping.universal-darwin.tar.xz 25-Feb-2021 18:15 340 +a2ping.windows.r65891.tar.xz 20-Feb-2023 22:07 2308 +a2ping.windows.tar.xz 20-Feb-2023 22:07 2308 +a2ping.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:13 344 +a2ping.x86_64-cygwin.tar.xz 28-Feb-2019 02:13 344 +a2ping.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:13 352 +a2ping.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:13 352 +a2ping.x86_64-linux.r27321.tar.xz 28-Feb-2019 02:13 340 +a2ping.x86_64-linux.tar.xz 28-Feb-2019 02:13 340 +a2ping.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:13 348 +a2ping.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:13 348 +a2ping.x86_64-solaris.r27321.tar.xz 28-Feb-2019 02:13 344 +a2ping.x86_64-solaris.tar.xz 28-Feb-2019 02:13 344 +a4wide.doc.r20943.tar.xz 28-Feb-2019 02:13 134740 +a4wide.doc.tar.xz 28-Feb-2019 02:13 134740 +a4wide.r20943.tar.xz 28-Feb-2019 02:13 1012 +a4wide.tar.xz 28-Feb-2019 02:13 1012 +a5comb.doc.r17020.tar.xz 28-Feb-2019 02:13 91652 +a5comb.doc.tar.xz 28-Feb-2019 02:13 91652 +a5comb.r17020.tar.xz 28-Feb-2019 02:13 968 +a5comb.tar.xz 28-Feb-2019 02:13 968 +aaai-named.r52470.tar.xz 22-Oct-2019 14:40 5172 +aaai-named.tar.xz 22-Oct-2019 14:40 5172 +aalok.doc.r61719.tar.xz 24-Jan-2022 00:53 165976 +aalok.doc.tar.xz 24-Jan-2022 00:53 165976 +aalok.r61719.tar.xz 24-Jan-2022 00:53 6092 +aalok.source.r61719.tar.xz 24-Jan-2022 00:53 18636 +aalok.source.tar.xz 24-Jan-2022 00:53 18636 +aalok.tar.xz 24-Jan-2022 00:53 6092 +aastex.doc.r75970.tar.xz 04-Aug-2025 23:45 1259596 +aastex.doc.tar.xz 04-Aug-2025 23:45 1259596 +aastex.r75970.tar.xz 04-Aug-2025 23:45 78376 +aastex.tar.xz 04-Aug-2025 23:45 78376 +abbr.doc.r15878.tar.xz 28-Feb-2019 02:13 852 +abbr.doc.tar.xz 28-Feb-2019 02:13 852 +abbr.r15878.tar.xz 28-Feb-2019 02:13 2628 +abbr.tar.xz 28-Feb-2019 02:13 2628 +abc.doc.r41157.tar.xz 28-Feb-2019 02:13 281848 +abc.doc.tar.xz 28-Feb-2019 02:13 281848 +abc.r41157.tar.xz 28-Feb-2019 02:13 2608 +abc.source.r41157.tar.xz 28-Feb-2019 02:13 9616 +abc.source.tar.xz 28-Feb-2019 02:13 9616 +abc.tar.xz 28-Feb-2019 02:13 2608 +abnt.doc.r55471.tar.xz 07-Jun-2020 23:57 120320 +abnt.doc.tar.xz 07-Jun-2020 23:57 120320 +abnt.r55471.tar.xz 07-Jun-2020 23:57 2800 +abnt.tar.xz 07-Jun-2020 23:57 2800 +abntex2.doc.r49248.tar.xz 28-Feb-2019 02:13 4585444 +abntex2.doc.tar.xz 28-Feb-2019 02:13 4585444 +abntex2.r49248.tar.xz 28-Feb-2019 02:13 29920 +abntex2.tar.xz 28-Feb-2019 02:13 29920 +abntexto-uece.doc.r76157.tar.xz 27-Aug-2025 23:49 117496 +abntexto-uece.doc.tar.xz 27-Aug-2025 23:49 117496 +abntexto-uece.r76157.tar.xz 27-Aug-2025 23:49 4140 +abntexto-uece.tar.xz 27-Aug-2025 23:49 4140 +abntexto.doc.r76255.tar.xz 08-Sep-2025 00:07 707332 +abntexto.doc.tar.xz 08-Sep-2025 00:07 707332 +abntexto.r76255.tar.xz 08-Sep-2025 00:07 30276 +abntexto.tar.xz 08-Sep-2025 00:07 30276 +aboensis.doc.r62977.tar.xz 07-Apr-2022 23:53 35013704 +aboensis.doc.tar.xz 07-Apr-2022 23:53 35013704 +aboensis.r62977.tar.xz 07-Apr-2022 23:53 96600 +aboensis.tar.xz 07-Apr-2022 23:53 96600 +abraces.doc.r71955.tar.xz 02-Aug-2024 23:47 246088 +abraces.doc.tar.xz 02-Aug-2024 23:47 246088 +abraces.r71955.tar.xz 02-Aug-2024 23:47 3940 +abraces.tar.xz 02-Aug-2024 23:47 3940 +abspos.doc.r64465.tar.xz 22-Sep-2022 23:53 443576 +abspos.doc.tar.xz 22-Sep-2022 23:53 443576 +abspos.r64465.tar.xz 22-Sep-2022 23:53 2452 +abspos.source.r64465.tar.xz 22-Sep-2022 23:53 7180 +abspos.source.tar.xz 22-Sep-2022 23:53 7180 +abspos.tar.xz 22-Sep-2022 23:53 2452 +abstract.doc.r15878.tar.xz 28-Feb-2019 02:13 146720 +abstract.doc.tar.xz 28-Feb-2019 02:13 146720 +abstract.r15878.tar.xz 28-Feb-2019 02:13 1976 +abstract.source.r15878.tar.xz 28-Feb-2019 02:13 8320 +abstract.source.tar.xz 28-Feb-2019 02:13 8320 +abstract.tar.xz 28-Feb-2019 02:13 1976 +abstyles.doc.r15878.tar.xz 28-Feb-2019 02:13 145936 +abstyles.doc.tar.xz 28-Feb-2019 02:13 145936 +abstyles.r15878.tar.xz 28-Feb-2019 02:13 7996 +abstyles.tar.xz 28-Feb-2019 02:13 7996 +academicons.doc.r76366.tar.xz 21-Sep-2025 00:01 104764 +academicons.doc.tar.xz 21-Sep-2025 00:01 104764 +academicons.r76366.tar.xz 21-Sep-2025 00:01 260376 +academicons.tar.xz 21-Sep-2025 00:01 260376 +accanthis.doc.r64844.tar.xz 29-Oct-2022 23:53 300388 +accanthis.doc.tar.xz 29-Oct-2022 23:53 300388 +accanthis.r64844.tar.xz 29-Oct-2022 23:53 368064 +accanthis.tar.xz 29-Oct-2022 23:53 368064 +accents.doc.r51497.tar.xz 27-Jun-2019 23:53 239048 +accents.doc.tar.xz 27-Jun-2019 23:53 239048 +accents.r51497.tar.xz 27-Jun-2019 23:53 2956 +accents.tar.xz 27-Jun-2019 23:53 2956 +accessibility.doc.r55777.tar.xz 07-Jul-2020 23:57 496876 +accessibility.doc.tar.xz 07-Jul-2020 23:57 496876 +accessibility.r55777.tar.xz 07-Jul-2020 23:57 13628 +accessibility.source.r55777.tar.xz 07-Jul-2020 23:57 31060 +accessibility.source.tar.xz 07-Jul-2020 23:57 31060 +accessibility.tar.xz 07-Jul-2020 23:57 13628 +accfonts.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:13 380 +accfonts.aarch64-linux.tar.xz 28-Feb-2019 02:13 380 +accfonts.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:13 380 +accfonts.amd64-freebsd.tar.xz 28-Feb-2019 02:13 380 +accfonts.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:13 380 +accfonts.amd64-netbsd.tar.xz 28-Feb-2019 02:13 380 +accfonts.armhf-linux.r30015.tar.xz 28-Feb-2019 02:13 384 +accfonts.armhf-linux.tar.xz 28-Feb-2019 02:13 384 +accfonts.doc.r18835.tar.xz 28-Feb-2019 02:13 15612 +accfonts.doc.tar.xz 28-Feb-2019 02:13 15612 +accfonts.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:13 384 +accfonts.i386-freebsd.tar.xz 28-Feb-2019 02:13 384 +accfonts.i386-linux.r12688.tar.xz 28-Feb-2019 02:13 380 +accfonts.i386-linux.tar.xz 28-Feb-2019 02:13 380 +accfonts.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:13 384 +accfonts.i386-netbsd.tar.xz 28-Feb-2019 02:13 384 +accfonts.i386-solaris.r12688.tar.xz 28-Feb-2019 02:13 380 +accfonts.i386-solaris.tar.xz 28-Feb-2019 02:13 380 +accfonts.r18835.tar.xz 28-Feb-2019 02:13 22268 +accfonts.tar.xz 28-Feb-2019 02:13 22268 +accfonts.universal-darwin.r57908.tar.xz 25-Feb-2021 18:15 380 +accfonts.universal-darwin.tar.xz 25-Feb-2021 18:15 380 +accfonts.windows.r65891.tar.xz 20-Feb-2023 22:07 2388 +accfonts.windows.tar.xz 20-Feb-2023 22:07 2388 +accfonts.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:13 380 +accfonts.x86_64-cygwin.tar.xz 28-Feb-2019 02:13 380 +accfonts.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:13 392 +accfonts.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:13 392 +accfonts.x86_64-linux.r12688.tar.xz 28-Feb-2019 02:13 380 +accfonts.x86_64-linux.tar.xz 28-Feb-2019 02:13 380 +accfonts.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:13 388 +accfonts.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:13 388 +accfonts.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:13 380 +accfonts.x86_64-solaris.tar.xz 28-Feb-2019 02:13 380 +accsupp.doc.r53052.tar.xz 07-Dec-2019 00:54 327132 +accsupp.doc.tar.xz 07-Dec-2019 00:54 327132 +accsupp.r53052.tar.xz 07-Dec-2019 00:54 3304 +accsupp.source.r53052.tar.xz 07-Dec-2019 00:54 8184 +accsupp.source.tar.xz 07-Dec-2019 00:54 8184 +accsupp.tar.xz 07-Dec-2019 00:54 3304 +achemso.doc.r76382.tar.xz 22-Sep-2025 23:50 808492 +achemso.doc.tar.xz 22-Sep-2025 23:50 808492 +achemso.r76382.tar.xz 22-Sep-2025 23:50 19500 +achemso.source.r76382.tar.xz 22-Sep-2025 23:50 25892 +achemso.source.tar.xz 22-Sep-2025 23:50 25892 +achemso.tar.xz 22-Sep-2025 23:50 19500 +acmart.doc.r76177.tar.xz 29-Aug-2025 23:49 4846320 +acmart.doc.tar.xz 29-Aug-2025 23:49 4846320 +acmart.r76177.tar.xz 29-Aug-2025 23:49 44364 +acmart.source.r76177.tar.xz 29-Aug-2025 23:49 65212 +acmart.source.tar.xz 29-Aug-2025 23:49 65212 +acmart.tar.xz 29-Aug-2025 23:49 44364 +acmconf.doc.r15878.tar.xz 28-Feb-2019 02:13 89944 +acmconf.doc.tar.xz 28-Feb-2019 02:13 89944 +acmconf.r15878.tar.xz 28-Feb-2019 02:13 4192 +acmconf.source.r15878.tar.xz 28-Feb-2019 02:13 18700 +acmconf.source.tar.xz 28-Feb-2019 02:13 18700 +acmconf.tar.xz 28-Feb-2019 02:13 4192 +acro.doc.r62925.tar.xz 05-Apr-2022 23:52 1246936 +acro.doc.tar.xz 05-Apr-2022 23:52 1246936 +acro.r62925.tar.xz 05-Apr-2022 23:52 44440 +acro.tar.xz 05-Apr-2022 23:52 44440 +acronym.doc.r73491.tar.xz 18-Jan-2025 00:46 318052 +acronym.doc.tar.xz 18-Jan-2025 00:46 318052 +acronym.r73491.tar.xz 18-Jan-2025 00:46 5208 +acronym.source.r73491.tar.xz 18-Jan-2025 00:46 18040 +acronym.source.tar.xz 18-Jan-2025 00:46 18040 +acronym.tar.xz 18-Jan-2025 00:46 5208 +acroterm.doc.r61719.tar.xz 24-Jan-2022 00:53 157936 +acroterm.doc.tar.xz 24-Jan-2022 00:53 157936 +acroterm.r61719.tar.xz 24-Jan-2022 00:53 1408 +acroterm.source.r61719.tar.xz 24-Jan-2022 00:53 3828 +acroterm.source.tar.xz 24-Jan-2022 00:53 3828 +acroterm.tar.xz 24-Jan-2022 00:53 1408 +active-conf.doc.r15878.tar.xz 28-Feb-2019 02:13 314788 +active-conf.doc.tar.xz 28-Feb-2019 02:13 314788 +active-conf.r15878.tar.xz 28-Feb-2019 02:13 4548 +active-conf.source.r15878.tar.xz 28-Feb-2019 02:13 14728 +active-conf.source.tar.xz 28-Feb-2019 02:13 14728 +active-conf.tar.xz 28-Feb-2019 02:13 4548 +actuarialangle.doc.r67201.tar.xz 23-May-2023 23:44 121200 +actuarialangle.doc.tar.xz 23-May-2023 23:44 121200 +actuarialangle.r67201.tar.xz 23-May-2023 23:44 2012 +actuarialangle.source.r67201.tar.xz 23-May-2023 23:44 7604 +actuarialangle.source.tar.xz 23-May-2023 23:44 7604 +actuarialangle.tar.xz 23-May-2023 23:44 2012 +actuarialsymbol.doc.r67201.tar.xz 23-May-2023 23:44 282880 +actuarialsymbol.doc.tar.xz 23-May-2023 23:44 282880 +actuarialsymbol.r67201.tar.xz 23-May-2023 23:44 2728 +actuarialsymbol.source.r67201.tar.xz 23-May-2023 23:44 16196 +actuarialsymbol.source.tar.xz 23-May-2023 23:44 16196 +actuarialsymbol.tar.xz 23-May-2023 23:44 2728 +addfont.doc.r58559.tar.xz 21-Mar-2021 00:31 50864 +addfont.doc.tar.xz 21-Mar-2021 00:31 50864 +addfont.r58559.tar.xz 21-Mar-2021 00:31 1488 +addfont.tar.xz 21-Mar-2021 00:31 1488 +addliga.doc.r50912.tar.xz 30-Apr-2019 23:39 18528 +addliga.doc.tar.xz 30-Apr-2019 23:39 18528 +addliga.r50912.tar.xz 30-Apr-2019 23:39 792 +addliga.tar.xz 30-Apr-2019 23:39 792 +addlines.doc.r49326.tar.xz 28-Feb-2019 02:13 135972 +addlines.doc.tar.xz 28-Feb-2019 02:13 135972 +addlines.r49326.tar.xz 28-Feb-2019 02:13 1532 +addlines.source.r49326.tar.xz 28-Feb-2019 02:13 4116 +addlines.source.tar.xz 28-Feb-2019 02:13 4116 +addlines.tar.xz 28-Feb-2019 02:13 1532 +addtoluatexpath.doc.r73424.tar.xz 12-Jan-2025 00:45 2072 +addtoluatexpath.doc.tar.xz 12-Jan-2025 00:45 2072 +addtoluatexpath.r73424.tar.xz 12-Jan-2025 00:45 2320 +addtoluatexpath.tar.xz 12-Jan-2025 00:45 2320 +adfathesis.doc.r26048.tar.xz 28-Feb-2019 02:13 134660 +adfathesis.doc.tar.xz 28-Feb-2019 02:13 134660 +adfathesis.r26048.tar.xz 28-Feb-2019 02:13 9772 +adfathesis.source.r26048.tar.xz 28-Feb-2019 02:13 9964 +adfathesis.source.tar.xz 28-Feb-2019 02:13 9964 +adfathesis.tar.xz 28-Feb-2019 02:13 9772 +adforn.doc.r74834.tar.xz 02-Apr-2025 23:49 536156 +adforn.doc.tar.xz 02-Apr-2025 23:49 536156 +adforn.r74834.tar.xz 02-Apr-2025 23:49 38600 +adforn.source.r74834.tar.xz 02-Apr-2025 23:49 11076 +adforn.source.tar.xz 02-Apr-2025 23:49 11076 +adforn.tar.xz 02-Apr-2025 23:49 38600 +adfsymbols.doc.r74819.tar.xz 01-Apr-2025 23:52 614772 +adfsymbols.doc.tar.xz 01-Apr-2025 23:52 614772 +adfsymbols.r74819.tar.xz 01-Apr-2025 23:52 29152 +adfsymbols.source.r74819.tar.xz 01-Apr-2025 23:52 13436 +adfsymbols.source.tar.xz 01-Apr-2025 23:52 13436 +adfsymbols.tar.xz 01-Apr-2025 23:52 29152 +adhocfilelist.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:13 348 +adhocfilelist.aarch64-linux.tar.xz 28-Feb-2019 02:13 348 +adhocfilelist.amd64-freebsd.r28038.tar.xz 28-Feb-2019 02:13 348 +adhocfilelist.amd64-freebsd.tar.xz 28-Feb-2019 02:13 348 +adhocfilelist.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.amd64-netbsd.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.armhf-linux.r30015.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.armhf-linux.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.doc.r29349.tar.xz 28-Feb-2019 02:13 9876 +adhocfilelist.doc.tar.xz 28-Feb-2019 02:13 9876 +adhocfilelist.i386-freebsd.r28038.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.i386-freebsd.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.i386-linux.r28038.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.i386-linux.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.i386-netbsd.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.i386-solaris.r28038.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.i386-solaris.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.r29349.tar.xz 28-Feb-2019 02:13 3600 +adhocfilelist.source.r29349.tar.xz 28-Feb-2019 02:13 16408 +adhocfilelist.source.tar.xz 28-Feb-2019 02:13 16408 +adhocfilelist.tar.xz 28-Feb-2019 02:13 3600 +adhocfilelist.universal-darwin.r57908.tar.xz 25-Feb-2021 18:15 340 +adhocfilelist.universal-darwin.tar.xz 25-Feb-2021 18:15 340 +adhocfilelist.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.x86_64-cygwin.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:13 352 +adhocfilelist.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:13 352 +adhocfilelist.x86_64-linux.r28038.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.x86_64-linux.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:13 348 +adhocfilelist.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:13 348 +adhocfilelist.x86_64-solaris.r28038.tar.xz 28-Feb-2019 02:13 344 +adhocfilelist.x86_64-solaris.tar.xz 28-Feb-2019 02:13 344 +adigraph.doc.r70422.tar.xz 06-Mar-2024 00:47 586676 +adigraph.doc.tar.xz 06-Mar-2024 00:47 586676 +adigraph.r70422.tar.xz 06-Mar-2024 00:47 5624 +adigraph.tar.xz 06-Mar-2024 00:47 5624 +adjmulticol.doc.r63320.tar.xz 17-May-2022 23:51 312532 +adjmulticol.doc.tar.xz 17-May-2022 23:51 312532 +adjmulticol.r63320.tar.xz 17-May-2022 23:51 3080 +adjmulticol.source.r63320.tar.xz 17-May-2022 23:51 7400 +adjmulticol.source.tar.xz 17-May-2022 23:51 7400 +adjmulticol.tar.xz 17-May-2022 23:51 3080 +adjustbox.doc.r74309.tar.xz 27-Feb-2025 00:49 739516 +adjustbox.doc.tar.xz 27-Feb-2025 00:49 739516 +adjustbox.r74309.tar.xz 27-Feb-2025 00:49 13764 +adjustbox.source.r74309.tar.xz 27-Feb-2025 00:49 49716 +adjustbox.source.tar.xz 27-Feb-2025 00:49 49716 +adjustbox.tar.xz 27-Feb-2025 00:49 13764 +adobemapping.r66552.tar.xz 11-Mar-2023 22:04 2178116 +adobemapping.tar.xz 11-Mar-2023 22:04 2178116 +adrconv.doc.r46817.tar.xz 28-Feb-2019 02:14 690600 +adrconv.doc.tar.xz 28-Feb-2019 02:14 690600 +adrconv.r46817.tar.xz 28-Feb-2019 02:14 2812 +adrconv.source.r46817.tar.xz 28-Feb-2019 02:14 8868 +adrconv.source.tar.xz 28-Feb-2019 02:14 8868 +adrconv.tar.xz 28-Feb-2019 02:14 2812 +adtrees.doc.r51618.tar.xz 11-Jul-2019 23:55 356112 +adtrees.doc.tar.xz 11-Jul-2019 23:55 356112 +adtrees.r51618.tar.xz 11-Jul-2019 23:55 7876 +adtrees.tar.xz 11-Jul-2019 23:55 7876 +advdate.doc.r20538.tar.xz 28-Feb-2019 02:14 146672 +advdate.doc.tar.xz 28-Feb-2019 02:14 146672 +advdate.r20538.tar.xz 28-Feb-2019 02:14 2228 +advdate.tar.xz 28-Feb-2019 02:14 2228 +advice.doc.r70688.tar.xz 19-Mar-2024 00:45 8256 +advice.doc.tar.xz 19-Mar-2024 00:45 8256 +advice.r70688.tar.xz 19-Mar-2024 00:45 5128 +advice.source.r70688.tar.xz 19-Mar-2024 00:45 13792 +advice.source.tar.xz 19-Mar-2024 00:45 13792 +advice.tar.xz 19-Mar-2024 00:45 5128 +ae.doc.r15878.tar.xz 28-Feb-2019 02:14 7732 +ae.doc.tar.xz 28-Feb-2019 02:14 7732 +ae.r15878.tar.xz 28-Feb-2019 02:14 57348 +ae.source.r15878.tar.xz 28-Feb-2019 02:14 19988 +ae.source.tar.xz 28-Feb-2019 02:14 19988 +ae.tar.xz 28-Feb-2019 02:14 57348 +aeguill.doc.r15878.tar.xz 28-Feb-2019 02:14 26984 +aeguill.doc.tar.xz 28-Feb-2019 02:14 26984 +aeguill.r15878.tar.xz 28-Feb-2019 02:14 2388 +aeguill.tar.xz 28-Feb-2019 02:14 2388 +aeskwadraat.doc.r75506.tar.xz 15-Jun-2025 00:00 517504 +aeskwadraat.doc.tar.xz 15-Jun-2025 00:00 517504 +aeskwadraat.r75506.tar.xz 15-Jun-2025 00:00 61332 +aeskwadraat.source.r75506.tar.xz 15-Jun-2025 00:00 32920 +aeskwadraat.source.tar.xz 15-Jun-2025 00:00 32920 +aeskwadraat.tar.xz 15-Jun-2025 00:00 61332 +aesupp.doc.r58253.tar.xz 11-Mar-2021 00:32 155400 +aesupp.doc.tar.xz 11-Mar-2021 00:32 155400 +aesupp.r58253.tar.xz 11-Mar-2021 00:32 2826252 +aesupp.source.r58253.tar.xz 11-Mar-2021 00:32 1517148 +aesupp.source.tar.xz 11-Mar-2021 00:32 1517148 +aesupp.tar.xz 11-Mar-2021 00:32 2826252 +affilauthor.doc.r68996.tar.xz 30-Nov-2023 00:44 252240 +affilauthor.doc.tar.xz 30-Nov-2023 00:44 252240 +affilauthor.r68996.tar.xz 30-Nov-2023 00:44 2824 +affilauthor.tar.xz 30-Nov-2023 00:44 2824 +afm2pl.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 40856 +afm2pl.aarch64-linux.tar.xz 13-Feb-2025 00:47 40856 +afm2pl.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:51 39500 +afm2pl.amd64-freebsd.tar.xz 09-Feb-2025 00:51 39500 +afm2pl.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 38848 +afm2pl.amd64-netbsd.tar.xz 09-Feb-2025 18:14 38848 +afm2pl.armhf-linux.r73793.tar.xz 09-Feb-2025 00:51 38192 +afm2pl.armhf-linux.tar.xz 09-Feb-2025 00:51 38192 +afm2pl.doc.r71515.tar.xz 13-Jun-2024 23:46 41300 +afm2pl.doc.tar.xz 13-Jun-2024 23:46 41300 +afm2pl.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:51 39512 +afm2pl.i386-freebsd.tar.xz 09-Feb-2025 00:51 39512 +afm2pl.i386-linux.r73792.tar.xz 09-Feb-2025 00:51 47660 +afm2pl.i386-linux.tar.xz 09-Feb-2025 00:51 47660 +afm2pl.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 35372 +afm2pl.i386-netbsd.tar.xz 09-Feb-2025 18:14 35372 +afm2pl.i386-solaris.r73792.tar.xz 09-Feb-2025 00:51 42096 +afm2pl.i386-solaris.tar.xz 09-Feb-2025 00:51 42096 +afm2pl.r71515.tar.xz 13-Jun-2024 23:46 9620 +afm2pl.tar.xz 13-Jun-2024 23:46 9620 +afm2pl.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 84588 +afm2pl.universal-darwin.tar.xz 09-Feb-2025 18:14 84588 +afm2pl.windows.r73796.tar.xz 09-Feb-2025 18:14 17208 +afm2pl.windows.tar.xz 09-Feb-2025 18:14 17208 +afm2pl.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 14456 +afm2pl.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 14456 +afm2pl.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 41016 +afm2pl.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 41016 +afm2pl.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 43608 +afm2pl.x86_64-linux.tar.xz 19-Feb-2025 00:46 43608 +afm2pl.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:51 44056 +afm2pl.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:51 44056 +afm2pl.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:51 46716 +afm2pl.x86_64-solaris.tar.xz 09-Feb-2025 00:51 46716 +afperpack.doc.r75055.tar.xz 29-Apr-2025 23:48 316064 +afperpack.doc.tar.xz 29-Apr-2025 23:48 316064 +afperpack.r75055.tar.xz 29-Apr-2025 23:48 4180 +afperpack.tar.xz 29-Apr-2025 23:48 4180 +afthesis.doc.r15878.tar.xz 28-Feb-2019 02:14 33016 +afthesis.doc.tar.xz 28-Feb-2019 02:14 33016 +afthesis.r15878.tar.xz 28-Feb-2019 02:14 12892 +afthesis.tar.xz 28-Feb-2019 02:14 12892 +aguplus.doc.r17156.tar.xz 28-Feb-2019 02:14 330372 +aguplus.doc.tar.xz 28-Feb-2019 02:14 330372 +aguplus.r17156.tar.xz 28-Feb-2019 02:14 28708 +aguplus.tar.xz 28-Feb-2019 02:14 28708 +aiaa.doc.r15878.tar.xz 28-Feb-2019 02:14 928712 +aiaa.doc.tar.xz 28-Feb-2019 02:14 928712 +aiaa.r15878.tar.xz 28-Feb-2019 02:14 8780 +aiaa.source.r15878.tar.xz 28-Feb-2019 02:14 16568 +aiaa.source.tar.xz 28-Feb-2019 02:14 16568 +aiaa.tar.xz 28-Feb-2019 02:14 8780 +aichej.r15878.tar.xz 28-Feb-2019 02:14 6172 +aichej.tar.xz 28-Feb-2019 02:14 6172 +aiplans.doc.r74462.tar.xz 06-Mar-2025 00:50 666016 +aiplans.doc.tar.xz 06-Mar-2025 00:50 666016 +aiplans.r74462.tar.xz 06-Mar-2025 00:50 2224 +aiplans.tar.xz 06-Mar-2025 00:50 2224 +ajl.r34016.tar.xz 28-Feb-2019 02:14 6252 +ajl.tar.xz 28-Feb-2019 02:14 6252 +akktex.doc.r26055.tar.xz 28-Feb-2019 02:14 1600 +akktex.doc.tar.xz 28-Feb-2019 02:14 1600 +akktex.r26055.tar.xz 28-Feb-2019 02:14 14272 +akktex.tar.xz 28-Feb-2019 02:14 14272 +akletter.doc.r15878.tar.xz 28-Feb-2019 02:14 202824 +akletter.doc.tar.xz 28-Feb-2019 02:14 202824 +akletter.r15878.tar.xz 28-Feb-2019 02:14 9720 +akletter.tar.xz 28-Feb-2019 02:14 9720 +akshar.doc.r56277.tar.xz 06-Sep-2020 23:56 145756 +akshar.doc.tar.xz 06-Sep-2020 23:56 145756 +akshar.r56277.tar.xz 06-Sep-2020 23:56 2988 +akshar.source.r56277.tar.xz 06-Sep-2020 23:56 1526912 +akshar.source.tar.xz 06-Sep-2020 23:56 1526912 +akshar.tar.xz 06-Sep-2020 23:56 2988 +albatross.aarch64-linux.r57089.tar.xz 08-Dec-2020 00:58 340 +albatross.aarch64-linux.tar.xz 08-Dec-2020 00:58 340 +albatross.amd64-freebsd.r57089.tar.xz 08-Dec-2020 00:58 340 +albatross.amd64-freebsd.tar.xz 08-Dec-2020 00:58 340 +albatross.amd64-netbsd.r57089.tar.xz 08-Dec-2020 00:58 340 +albatross.amd64-netbsd.tar.xz 08-Dec-2020 00:58 340 +albatross.armhf-linux.r57089.tar.xz 08-Dec-2020 00:58 340 +albatross.armhf-linux.tar.xz 08-Dec-2020 00:58 340 +albatross.doc.r73436.tar.xz 13-Jan-2025 00:48 109164 +albatross.doc.tar.xz 13-Jan-2025 00:48 109164 +albatross.i386-freebsd.r57089.tar.xz 08-Dec-2020 00:58 340 +albatross.i386-freebsd.tar.xz 08-Dec-2020 00:58 340 +albatross.i386-linux.r57089.tar.xz 08-Dec-2020 00:58 340 +albatross.i386-linux.tar.xz 08-Dec-2020 00:58 340 +albatross.i386-netbsd.r57089.tar.xz 08-Dec-2020 00:58 340 +albatross.i386-netbsd.tar.xz 08-Dec-2020 00:58 340 +albatross.i386-solaris.r57089.tar.xz 08-Dec-2020 00:58 340 +albatross.i386-solaris.tar.xz 08-Dec-2020 00:58 340 +albatross.r73436.tar.xz 13-Jan-2025 00:48 5010736 +albatross.source.r73436.tar.xz 13-Jan-2025 00:48 11296 +albatross.source.tar.xz 13-Jan-2025 00:48 11296 +albatross.tar.xz 13-Jan-2025 00:48 5010736 +albatross.universal-darwin.r57908.tar.xz 25-Feb-2021 18:15 344 +albatross.universal-darwin.tar.xz 25-Feb-2021 18:15 344 +albatross.windows.r65891.tar.xz 20-Feb-2023 22:07 2308 +albatross.windows.tar.xz 20-Feb-2023 22:07 2308 +albatross.x86_64-cygwin.r57089.tar.xz 08-Dec-2020 00:58 340 +albatross.x86_64-cygwin.tar.xz 08-Dec-2020 00:58 340 +albatross.x86_64-darwinlegacy.r57089.tar.xz 08-Dec-2020 00:58 348 +albatross.x86_64-darwinlegacy.tar.xz 08-Dec-2020 00:58 348 +albatross.x86_64-linux.r57089.tar.xz 08-Dec-2020 00:58 344 +albatross.x86_64-linux.tar.xz 08-Dec-2020 00:58 344 +albatross.x86_64-linuxmusl.r57089.tar.xz 08-Dec-2020 00:58 344 +albatross.x86_64-linuxmusl.tar.xz 08-Dec-2020 00:58 344 +albatross.x86_64-solaris.r57089.tar.xz 08-Dec-2020 00:58 340 +albatross.x86_64-solaris.tar.xz 08-Dec-2020 00:58 340 +alchemist.doc.r66924.tar.xz 23-Apr-2023 23:54 144288 +alchemist.doc.tar.xz 23-Apr-2023 23:54 144288 +alchemist.r66924.tar.xz 23-Apr-2023 23:54 3172 +alchemist.tar.xz 23-Apr-2023 23:54 3172 +alegreya.doc.r75301.tar.xz 23-May-2025 23:46 1107120 +alegreya.doc.tar.xz 23-May-2025 23:46 1107120 +alegreya.r75301.tar.xz 23-May-2025 23:46 23621540 +alegreya.tar.xz 23-May-2025 23:46 23621540 +aleph.aarch64-linux.r74368.tar.xz 02-Mar-2025 01:09 245112 +aleph.aarch64-linux.tar.xz 02-Mar-2025 01:09 245112 +aleph.amd64-freebsd.r74368.tar.xz 02-Mar-2025 01:09 220056 +aleph.amd64-freebsd.tar.xz 02-Mar-2025 01:09 220056 +aleph.amd64-netbsd.r74367.tar.xz 02-Mar-2025 01:09 216864 +aleph.amd64-netbsd.tar.xz 02-Mar-2025 01:09 216864 +aleph.armhf-linux.r74368.tar.xz 02-Mar-2025 01:09 225428 +aleph.armhf-linux.tar.xz 02-Mar-2025 01:09 225428 +aleph.doc.r73850.tar.xz 11-Feb-2025 00:47 35508 +aleph.doc.tar.xz 11-Feb-2025 00:47 35508 +aleph.i386-freebsd.r74368.tar.xz 02-Mar-2025 01:09 220000 +aleph.i386-freebsd.tar.xz 02-Mar-2025 01:09 220000 +aleph.i386-linux.r74368.tar.xz 02-Mar-2025 01:09 260296 +aleph.i386-linux.tar.xz 02-Mar-2025 01:09 260296 +aleph.i386-netbsd.r74367.tar.xz 02-Mar-2025 01:09 164628 +aleph.i386-netbsd.tar.xz 02-Mar-2025 01:09 164628 +aleph.i386-solaris.r74368.tar.xz 02-Mar-2025 01:09 226732 +aleph.i386-solaris.tar.xz 02-Mar-2025 01:09 226732 +aleph.r73850.tar.xz 11-Feb-2025 00:47 544 +aleph.tar.xz 11-Feb-2025 00:47 544 +aleph.universal-darwin.r74380.tar.xz 02-Mar-2025 01:09 565356 +aleph.universal-darwin.tar.xz 02-Mar-2025 01:09 565356 +aleph.windows.r74338.tar.xz 01-Mar-2025 00:55 221896 +aleph.windows.tar.xz 01-Mar-2025 00:55 221896 +aleph.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 228512 +aleph.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 228512 +aleph.x86_64-darwinlegacy.r74380.tar.xz 02-Mar-2025 01:09 230892 +aleph.x86_64-darwinlegacy.tar.xz 02-Mar-2025 01:09 230892 +aleph.x86_64-linux.r74368.tar.xz 02-Mar-2025 01:09 259564 +aleph.x86_64-linux.tar.xz 02-Mar-2025 01:09 259564 +aleph.x86_64-linuxmusl.r74368.tar.xz 02-Mar-2025 01:09 260372 +aleph.x86_64-linuxmusl.tar.xz 02-Mar-2025 01:09 260372 +aleph.x86_64-solaris.r74368.tar.xz 02-Mar-2025 01:09 269344 +aleph.x86_64-solaris.tar.xz 02-Mar-2025 01:09 269344 +alertmessage.doc.r38055.tar.xz 28-Feb-2019 02:14 106744 +alertmessage.doc.tar.xz 28-Feb-2019 02:14 106744 +alertmessage.r38055.tar.xz 28-Feb-2019 02:14 6872 +alertmessage.source.r38055.tar.xz 28-Feb-2019 02:14 2460 +alertmessage.source.tar.xz 28-Feb-2019 02:14 2460 +alertmessage.tar.xz 28-Feb-2019 02:14 6872 +alfaslabone.doc.r57452.tar.xz 18-Jan-2021 00:57 28028 +alfaslabone.doc.tar.xz 18-Jan-2021 00:57 28028 +alfaslabone.r57452.tar.xz 18-Jan-2021 00:57 177988 +alfaslabone.tar.xz 18-Jan-2021 00:57 177988 +alg.doc.r15878.tar.xz 28-Feb-2019 02:14 1116 +alg.doc.tar.xz 28-Feb-2019 02:14 1116 +alg.r15878.tar.xz 28-Feb-2019 02:14 2568 +alg.source.r15878.tar.xz 28-Feb-2019 02:14 5768 +alg.source.tar.xz 28-Feb-2019 02:14 5768 +alg.tar.xz 28-Feb-2019 02:14 2568 +algobox.doc.r67201.tar.xz 23-May-2023 23:44 123652 +algobox.doc.tar.xz 23-May-2023 23:44 123652 +algobox.r67201.tar.xz 23-May-2023 23:44 3620 +algobox.source.r67201.tar.xz 23-May-2023 23:44 5512 +algobox.source.tar.xz 23-May-2023 23:44 5512 +algobox.tar.xz 23-May-2023 23:44 3620 +algolrevived.doc.r71368.tar.xz 27-May-2024 23:45 153428 +algolrevived.doc.tar.xz 27-May-2024 23:45 153428 +algolrevived.r71368.tar.xz 27-May-2024 23:45 384544 +algolrevived.tar.xz 27-May-2024 23:45 384544 +algorithm2e.doc.r44846.tar.xz 28-Feb-2019 02:14 559228 +algorithm2e.doc.tar.xz 28-Feb-2019 02:14 559228 +algorithm2e.r44846.tar.xz 28-Feb-2019 02:14 32880 +algorithm2e.tar.xz 28-Feb-2019 02:14 32880 +algorithmicx.doc.r15878.tar.xz 28-Feb-2019 02:14 170008 +algorithmicx.doc.tar.xz 28-Feb-2019 02:14 170008 +algorithmicx.r15878.tar.xz 28-Feb-2019 02:14 7716 +algorithmicx.tar.xz 28-Feb-2019 02:14 7716 +algorithms.doc.r76389.tar.xz 23-Sep-2025 23:49 293440 +algorithms.doc.tar.xz 23-Sep-2025 23:49 293440 +algorithms.r76389.tar.xz 23-Sep-2025 23:49 3452 +algorithms.source.r76389.tar.xz 23-Sep-2025 23:49 11940 +algorithms.source.tar.xz 23-Sep-2025 23:49 11940 +algorithms.tar.xz 23-Sep-2025 23:49 3452 +algpseudocodex.doc.r74973.tar.xz 17-Apr-2025 23:50 356136 +algpseudocodex.doc.tar.xz 17-Apr-2025 23:50 356136 +algpseudocodex.r74973.tar.xz 17-Apr-2025 23:50 9504 +algpseudocodex.tar.xz 17-Apr-2025 23:50 9504 +algxpar.doc.r75953.tar.xz 02-Aug-2025 23:57 806272 +algxpar.doc.tar.xz 02-Aug-2025 23:57 806272 +algxpar.r75953.tar.xz 02-Aug-2025 23:57 7396 +algxpar.tar.xz 02-Aug-2025 23:57 7396 +aligned-overset.doc.r47290.tar.xz 28-Feb-2019 02:14 378812 +aligned-overset.doc.tar.xz 28-Feb-2019 02:14 378812 +aligned-overset.r47290.tar.xz 28-Feb-2019 02:14 1256 +aligned-overset.source.r47290.tar.xz 28-Feb-2019 02:14 1900 +aligned-overset.source.tar.xz 28-Feb-2019 02:14 1900 +aligned-overset.tar.xz 28-Feb-2019 02:14 1256 +alkalami.doc.r44497.tar.xz 28-Feb-2019 02:14 29400 +alkalami.doc.tar.xz 28-Feb-2019 02:14 29400 +alkalami.r44497.tar.xz 28-Feb-2019 02:14 98212 +alkalami.tar.xz 28-Feb-2019 02:14 98212 +allrunes.doc.r42221.tar.xz 28-Feb-2019 02:14 193488 +allrunes.doc.tar.xz 28-Feb-2019 02:14 193488 +allrunes.r42221.tar.xz 28-Feb-2019 02:14 8035784 +allrunes.source.r42221.tar.xz 28-Feb-2019 02:14 42048 +allrunes.source.tar.xz 28-Feb-2019 02:14 42048 +allrunes.tar.xz 28-Feb-2019 02:14 8035784 +almendra.doc.r64539.tar.xz 28-Sep-2022 23:53 28496 +almendra.doc.tar.xz 28-Sep-2022 23:53 28496 +almendra.r64539.tar.xz 28-Sep-2022 23:53 314788 +almendra.tar.xz 28-Sep-2022 23:53 314788 +almfixed.doc.r35065.tar.xz 28-Feb-2019 02:14 565628 +almfixed.doc.tar.xz 28-Feb-2019 02:14 565628 +almfixed.r35065.tar.xz 28-Feb-2019 02:14 246256 +almfixed.tar.xz 28-Feb-2019 02:14 246256 +alnumsec.doc.r15878.tar.xz 28-Feb-2019 02:14 121668 +alnumsec.doc.tar.xz 28-Feb-2019 02:14 121668 +alnumsec.r15878.tar.xz 28-Feb-2019 02:14 2636 +alnumsec.source.r15878.tar.xz 28-Feb-2019 02:14 7532 +alnumsec.source.tar.xz 28-Feb-2019 02:14 7532 +alnumsec.tar.xz 28-Feb-2019 02:14 2636 +alpha-persian.doc.r66115.tar.xz 24-Feb-2023 00:57 4484928 +alpha-persian.doc.tar.xz 24-Feb-2023 00:57 4484928 +alpha-persian.r66115.tar.xz 24-Feb-2023 00:57 7420 +alpha-persian.tar.xz 24-Feb-2023 00:57 7420 +alphalph.doc.r53087.tar.xz 11-Dec-2019 00:54 351716 +alphalph.doc.tar.xz 11-Dec-2019 00:54 351716 +alphalph.r53087.tar.xz 11-Dec-2019 00:54 3436 +alphalph.source.r53087.tar.xz 11-Dec-2019 00:54 11292 +alphalph.source.tar.xz 11-Dec-2019 00:54 11292 +alphalph.tar.xz 11-Dec-2019 00:54 3436 +alterqcm.doc.r59265.tar.xz 20-May-2021 21:46 1078332 +alterqcm.doc.tar.xz 20-May-2021 21:46 1078332 +alterqcm.r59265.tar.xz 20-May-2021 21:46 6916 +alterqcm.tar.xz 20-May-2021 21:46 6916 +altfont.doc.r15878.tar.xz 28-Feb-2019 02:14 160688 +altfont.doc.tar.xz 28-Feb-2019 02:14 160688 +altfont.r15878.tar.xz 28-Feb-2019 02:14 3528 +altfont.source.r15878.tar.xz 28-Feb-2019 02:14 9172 +altfont.source.tar.xz 28-Feb-2019 02:14 9172 +altfont.tar.xz 28-Feb-2019 02:14 3528 +altsubsup.doc.r62738.tar.xz 17-Mar-2022 21:44 351632 +altsubsup.doc.tar.xz 17-Mar-2022 21:44 351632 +altsubsup.r62738.tar.xz 17-Mar-2022 21:44 1572 +altsubsup.source.r62738.tar.xz 17-Mar-2022 21:44 4952 +altsubsup.source.tar.xz 17-Mar-2022 21:44 4952 +altsubsup.tar.xz 17-Mar-2022 21:44 1572 +amiri.doc.r65191.tar.xz 04-Dec-2022 22:09 24708 +amiri.doc.tar.xz 04-Dec-2022 22:09 24708 +amiri.r65191.tar.xz 04-Dec-2022 22:09 467744 +amiri.tar.xz 04-Dec-2022 22:09 467744 +amiweb2c-guide.doc.r56878.tar.xz 08-Nov-2020 00:58 169360 +amiweb2c-guide.doc.tar.xz 08-Nov-2020 00:58 169360 +amiweb2c-guide.r56878.tar.xz 08-Nov-2020 00:58 536 +amiweb2c-guide.tar.xz 08-Nov-2020 00:58 536 +amnestyreport.doc.r69439.tar.xz 17-Jan-2024 00:46 1544912 +amnestyreport.doc.tar.xz 17-Jan-2024 00:46 1544912 +amnestyreport.r69439.tar.xz 17-Jan-2024 00:46 5240 +amnestyreport.source.r69439.tar.xz 17-Jan-2024 00:46 11396 +amnestyreport.source.tar.xz 17-Jan-2024 00:46 11396 +amnestyreport.tar.xz 17-Jan-2024 00:46 5240 +amsaddr.doc.r64357.tar.xz 12-Sep-2022 23:53 209324 +amsaddr.doc.tar.xz 12-Sep-2022 23:53 209324 +amsaddr.r64357.tar.xz 12-Sep-2022 23:53 1932 +amsaddr.source.r64357.tar.xz 12-Sep-2022 23:53 4056 +amsaddr.source.tar.xz 12-Sep-2022 23:53 4056 +amsaddr.tar.xz 12-Sep-2022 23:53 1932 +amscdx.doc.r51532.tar.xz 02-Jul-2019 23:54 217524 +amscdx.doc.tar.xz 02-Jul-2019 23:54 217524 +amscdx.r51532.tar.xz 02-Jul-2019 23:54 3208 +amscdx.source.r51532.tar.xz 02-Jul-2019 23:54 6136 +amscdx.source.tar.xz 02-Jul-2019 23:54 6136 +amscdx.tar.xz 02-Jul-2019 23:54 3208 +amscls-doc.doc.r46110.tar.xz 28-Feb-2019 02:14 1743776 +amscls-doc.doc.tar.xz 28-Feb-2019 02:14 1743776 +amscls-doc.r46110.tar.xz 28-Feb-2019 02:14 796 +amscls-doc.tar.xz 28-Feb-2019 02:14 796 +amscls.doc.r55378.tar.xz 01-Jun-2020 23:25 1072480 +amscls.doc.tar.xz 01-Jun-2020 23:25 1072480 +amscls.r55378.tar.xz 01-Jun-2020 23:25 32224 +amscls.source.r55378.tar.xz 01-Jun-2020 23:25 365984 +amscls.source.tar.xz 01-Jun-2020 23:25 365984 +amscls.tar.xz 01-Jun-2020 23:25 32224 +amsfonts.doc.r61937.tar.xz 08-Feb-2022 00:53 1162540 +amsfonts.doc.tar.xz 08-Feb-2022 00:53 1162540 +amsfonts.r61937.tar.xz 08-Feb-2022 00:53 3626268 +amsfonts.source.r61937.tar.xz 08-Feb-2022 00:52 49156 +amsfonts.source.tar.xz 08-Feb-2022 00:52 49156 +amsfonts.tar.xz 08-Feb-2022 00:53 3626268 +amslatex-primer.doc.r28980.tar.xz 28-Feb-2019 02:14 566748 +amslatex-primer.doc.tar.xz 28-Feb-2019 02:14 566748 +amslatex-primer.r28980.tar.xz 28-Feb-2019 02:14 664 +amslatex-primer.tar.xz 28-Feb-2019 02:14 664 +amsldoc-it.doc.r45662.tar.xz 28-Feb-2019 02:14 320476 +amsldoc-it.doc.tar.xz 28-Feb-2019 02:14 320476 +amsldoc-it.r45662.tar.xz 28-Feb-2019 02:14 272 +amsldoc-it.tar.xz 28-Feb-2019 02:14 272 +amsldoc-vn.doc.r21855.tar.xz 28-Feb-2019 02:14 1169692 +amsldoc-vn.doc.tar.xz 28-Feb-2019 02:14 1169692 +amsldoc-vn.r21855.tar.xz 28-Feb-2019 02:14 428 +amsldoc-vn.tar.xz 28-Feb-2019 02:14 428 +amsmath-it.doc.r22930.tar.xz 28-Feb-2019 02:14 13716 +amsmath-it.doc.tar.xz 28-Feb-2019 02:14 13716 +amsmath-it.r22930.tar.xz 28-Feb-2019 02:14 428 +amsmath-it.tar.xz 28-Feb-2019 02:14 428 +amsmath.doc.r75534.tar.xz 17-Jun-2025 23:48 2386740 +amsmath.doc.tar.xz 17-Jun-2025 23:48 2386740 +amsmath.r75534.tar.xz 17-Jun-2025 23:48 31600 +amsmath.source.r75534.tar.xz 17-Jun-2025 23:48 66888 +amsmath.source.tar.xz 17-Jun-2025 23:48 66888 +amsmath.tar.xz 17-Jun-2025 23:48 31600 +amsrefs.doc.r61937.tar.xz 08-Feb-2022 00:53 1938804 +amsrefs.doc.tar.xz 08-Feb-2022 00:53 1938804 +amsrefs.r61937.tar.xz 08-Feb-2022 00:53 27428 +amsrefs.source.r61937.tar.xz 08-Feb-2022 00:53 102000 +amsrefs.source.tar.xz 08-Feb-2022 00:53 102000 +amsrefs.tar.xz 08-Feb-2022 00:53 27428 +amstex.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:14 320 +amstex.aarch64-linux.tar.xz 28-Feb-2019 02:14 320 +amstex.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:14 320 +amstex.amd64-freebsd.tar.xz 28-Feb-2019 02:14 320 +amstex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:14 320 +amstex.amd64-netbsd.tar.xz 28-Feb-2019 02:14 320 +amstex.armhf-linux.r30015.tar.xz 28-Feb-2019 02:14 320 +amstex.armhf-linux.tar.xz 28-Feb-2019 02:14 320 +amstex.doc.r73848.tar.xz 11-Feb-2025 00:47 411936 +amstex.doc.tar.xz 11-Feb-2025 00:47 411936 +amstex.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:14 324 +amstex.i386-freebsd.tar.xz 28-Feb-2019 02:14 324 +amstex.i386-linux.r3006.tar.xz 28-Feb-2019 02:14 320 +amstex.i386-linux.tar.xz 28-Feb-2019 02:14 320 +amstex.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:14 320 +amstex.i386-netbsd.tar.xz 28-Feb-2019 02:14 320 +amstex.i386-solaris.r8102.tar.xz 28-Feb-2019 02:14 320 +amstex.i386-solaris.tar.xz 28-Feb-2019 02:14 320 +amstex.r73848.tar.xz 11-Feb-2025 00:47 38380 +amstex.tar.xz 11-Feb-2025 00:47 38380 +amstex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:15 320 +amstex.universal-darwin.tar.xz 25-Feb-2021 18:15 320 +amstex.windows.r65891.tar.xz 20-Feb-2023 22:07 2332 +amstex.windows.tar.xz 20-Feb-2023 22:07 2332 +amstex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:14 328 +amstex.x86_64-cygwin.tar.xz 28-Feb-2019 02:14 328 +amstex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:14 328 +amstex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:14 328 +amstex.x86_64-linux.r3185.tar.xz 28-Feb-2019 02:14 320 +amstex.x86_64-linux.tar.xz 28-Feb-2019 02:14 320 +amstex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:14 324 +amstex.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:14 324 +amstex.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:14 324 +amstex.x86_64-solaris.tar.xz 28-Feb-2019 02:14 324 +amsthdoc-it.doc.r45662.tar.xz 28-Feb-2019 02:14 100012 +amsthdoc-it.doc.tar.xz 28-Feb-2019 02:14 100012 +amsthdoc-it.r45662.tar.xz 28-Feb-2019 02:14 288 +amsthdoc-it.tar.xz 28-Feb-2019 02:14 288 +andika.doc.r64540.tar.xz 28-Sep-2022 23:53 469112 +andika.doc.tar.xz 28-Sep-2022 23:53 469112 +andika.r64540.tar.xz 28-Sep-2022 23:53 2853924 +andika.tar.xz 28-Sep-2022 23:53 2853924 +anima.doc.r73126.tar.xz 15-Dec-2024 01:10 436304 +anima.doc.tar.xz 15-Dec-2024 01:10 436304 +anima.r73126.tar.xz 15-Dec-2024 01:10 3760 +anima.source.r73126.tar.xz 15-Dec-2024 01:10 10016 +anima.source.tar.xz 15-Dec-2024 01:10 10016 +anima.tar.xz 15-Dec-2024 01:10 3760 +animate.doc.r72548.tar.xz 14-Oct-2024 23:48 3166808 +animate.doc.tar.xz 14-Oct-2024 23:48 3166808 +animate.r72548.tar.xz 14-Oct-2024 23:48 23936 +animate.source.r72548.tar.xz 14-Oct-2024 23:48 31088 +animate.source.tar.xz 14-Oct-2024 23:48 31088 +animate.tar.xz 14-Oct-2024 23:48 23936 +annee-scolaire.doc.r55988.tar.xz 29-Jul-2020 23:57 1134124 +annee-scolaire.doc.tar.xz 29-Jul-2020 23:57 1134124 +annee-scolaire.r55988.tar.xz 29-Jul-2020 23:57 1404 +annee-scolaire.source.r55988.tar.xz 29-Jul-2020 23:57 5896 +annee-scolaire.source.tar.xz 29-Jul-2020 23:57 5896 +annee-scolaire.tar.xz 29-Jul-2020 23:57 1404 +annotate-equations.doc.r67044.tar.xz 07-May-2023 23:52 153300 +annotate-equations.doc.tar.xz 07-May-2023 23:52 153300 +annotate-equations.r67044.tar.xz 07-May-2023 23:52 3048 +annotate-equations.tar.xz 07-May-2023 23:52 3048 +annotate.r52824.tar.xz 17-Nov-2019 00:55 4644 +annotate.tar.xz 17-Nov-2019 00:55 4644 +anonchap.doc.r17049.tar.xz 28-Feb-2019 02:14 187292 +anonchap.doc.tar.xz 28-Feb-2019 02:14 187292 +anonchap.r17049.tar.xz 28-Feb-2019 02:14 1464 +anonchap.tar.xz 28-Feb-2019 02:14 1464 +anonymous-acm.doc.r55121.tar.xz 14-May-2020 14:33 381532 +anonymous-acm.doc.tar.xz 14-May-2020 14:33 381532 +anonymous-acm.r55121.tar.xz 14-May-2020 14:33 1528 +anonymous-acm.tar.xz 14-May-2020 14:33 1528 +anonymouspro.doc.r51631.tar.xz 13-Jul-2019 23:53 371076 +anonymouspro.doc.tar.xz 13-Jul-2019 23:53 371076 +anonymouspro.r51631.tar.xz 13-Jul-2019 23:53 415352 +anonymouspro.source.r51631.tar.xz 13-Jul-2019 23:53 12236 +anonymouspro.source.tar.xz 13-Jul-2019 23:53 12236 +anonymouspro.tar.xz 13-Jul-2019 23:53 415352 +answers.doc.r35032.tar.xz 28-Feb-2019 02:14 211316 +answers.doc.tar.xz 28-Feb-2019 02:14 211316 +answers.r35032.tar.xz 28-Feb-2019 02:14 2164 +answers.source.r35032.tar.xz 28-Feb-2019 02:14 7844 +answers.source.tar.xz 28-Feb-2019 02:14 7844 +answers.tar.xz 28-Feb-2019 02:14 2164 +antanilipsum.doc.r55250.tar.xz 23-May-2020 21:11 458768 +antanilipsum.doc.tar.xz 23-May-2020 21:11 458768 +antanilipsum.r55250.tar.xz 23-May-2020 21:11 10388 +antanilipsum.source.r55250.tar.xz 23-May-2020 21:11 14520 +antanilipsum.source.tar.xz 23-May-2020 21:11 14520 +antanilipsum.tar.xz 23-May-2020 21:11 10388 +antiqua.doc.r24266.tar.xz 28-Feb-2019 02:14 5356 +antiqua.doc.tar.xz 28-Feb-2019 02:14 5356 +antiqua.r24266.tar.xz 28-Feb-2019 02:14 62624 +antiqua.tar.xz 28-Feb-2019 02:14 62624 +antique-spanish-units.doc.r69568.tar.xz 24-Jan-2024 00:46 229836 +antique-spanish-units.doc.tar.xz 24-Jan-2024 00:46 229836 +antique-spanish-units.r69568.tar.xz 24-Jan-2024 00:46 560 +antique-spanish-units.tar.xz 24-Jan-2024 00:46 560 +antomega.doc.r21933.tar.xz 28-Feb-2019 02:14 166780 +antomega.doc.tar.xz 28-Feb-2019 02:14 166780 +antomega.r21933.tar.xz 28-Feb-2019 02:14 65576 +antomega.source.r21933.tar.xz 28-Feb-2019 02:14 24500 +antomega.source.tar.xz 28-Feb-2019 02:14 24500 +antomega.tar.xz 28-Feb-2019 02:14 65576 +antt.doc.r18651.tar.xz 28-Feb-2019 02:14 2473796 +antt.doc.tar.xz 28-Feb-2019 02:14 2473796 +antt.r18651.tar.xz 28-Feb-2019 02:14 4706312 +antt.tar.xz 28-Feb-2019 02:14 4706312 +anufinalexam.doc.r26053.tar.xz 28-Feb-2019 02:14 1968 +anufinalexam.doc.tar.xz 28-Feb-2019 02:14 1968 +anufinalexam.r26053.tar.xz 28-Feb-2019 02:14 432 +anufinalexam.tar.xz 28-Feb-2019 02:14 432 +anyfontsize.doc.r17050.tar.xz 28-Feb-2019 02:14 183472 +anyfontsize.doc.tar.xz 28-Feb-2019 02:14 183472 +anyfontsize.r17050.tar.xz 28-Feb-2019 02:14 2112 +anyfontsize.tar.xz 28-Feb-2019 02:14 2112 +anysize.doc.r15878.tar.xz 28-Feb-2019 02:14 34460 +anysize.doc.tar.xz 28-Feb-2019 02:14 34460 +anysize.r15878.tar.xz 28-Feb-2019 02:14 1384 +anysize.tar.xz 28-Feb-2019 02:14 1384 +aobs-tikz.doc.r70952.tar.xz 15-Apr-2024 23:47 94668 +aobs-tikz.doc.tar.xz 15-Apr-2024 23:47 94668 +aobs-tikz.r70952.tar.xz 15-Apr-2024 23:47 1656 +aobs-tikz.source.r70952.tar.xz 15-Apr-2024 23:47 5936 +aobs-tikz.source.tar.xz 15-Apr-2024 23:47 5936 +aobs-tikz.tar.xz 15-Apr-2024 23:47 1656 +aomart.aarch64-linux.r73378.tar.xz 09-Jan-2025 00:49 344 +aomart.aarch64-linux.tar.xz 09-Jan-2025 00:49 344 +aomart.amd64-freebsd.r73378.tar.xz 09-Jan-2025 00:49 348 +aomart.amd64-freebsd.tar.xz 09-Jan-2025 00:49 348 +aomart.amd64-netbsd.r73378.tar.xz 09-Jan-2025 00:49 344 +aomart.amd64-netbsd.tar.xz 09-Jan-2025 00:49 344 +aomart.armhf-linux.r73378.tar.xz 09-Jan-2025 00:49 344 +aomart.armhf-linux.tar.xz 09-Jan-2025 00:49 344 +aomart.doc.r76110.tar.xz 21-Aug-2025 23:46 1260276 +aomart.doc.tar.xz 21-Aug-2025 23:46 1260276 +aomart.i386-freebsd.r73378.tar.xz 09-Jan-2025 00:49 344 +aomart.i386-freebsd.tar.xz 09-Jan-2025 00:49 344 +aomart.i386-linux.r73378.tar.xz 09-Jan-2025 00:49 344 +aomart.i386-linux.tar.xz 09-Jan-2025 00:49 344 +aomart.i386-netbsd.r73378.tar.xz 09-Jan-2025 00:49 348 +aomart.i386-netbsd.tar.xz 09-Jan-2025 00:49 348 +aomart.i386-solaris.r73378.tar.xz 09-Jan-2025 00:49 344 +aomart.i386-solaris.tar.xz 09-Jan-2025 00:49 344 +aomart.r76110.tar.xz 21-Aug-2025 23:46 21468 +aomart.source.r76110.tar.xz 21-Aug-2025 23:46 25112 +aomart.source.tar.xz 21-Aug-2025 23:46 25112 +aomart.tar.xz 21-Aug-2025 23:46 21468 +aomart.universal-darwin.r73378.tar.xz 09-Jan-2025 00:49 348 +aomart.universal-darwin.tar.xz 09-Jan-2025 00:49 348 +aomart.windows.r73378.tar.xz 09-Jan-2025 00:49 2312 +aomart.windows.tar.xz 09-Jan-2025 00:49 2312 +aomart.x86_64-cygwin.r73378.tar.xz 09-Jan-2025 00:49 348 +aomart.x86_64-cygwin.tar.xz 09-Jan-2025 00:49 348 +aomart.x86_64-darwinlegacy.r73378.tar.xz 09-Jan-2025 00:49 356 +aomart.x86_64-darwinlegacy.tar.xz 09-Jan-2025 00:49 356 +aomart.x86_64-linux.r73378.tar.xz 09-Jan-2025 00:49 348 +aomart.x86_64-linux.tar.xz 09-Jan-2025 00:49 348 +aomart.x86_64-linuxmusl.r73378.tar.xz 09-Jan-2025 00:49 348 +aomart.x86_64-linuxmusl.tar.xz 09-Jan-2025 00:49 348 +aomart.x86_64-solaris.r73378.tar.xz 09-Jan-2025 00:49 344 +aomart.x86_64-solaris.tar.xz 09-Jan-2025 00:49 344 +apa.doc.r54080.tar.xz 04-Mar-2020 22:48 26960 +apa.doc.tar.xz 04-Mar-2020 22:48 26960 +apa.r54080.tar.xz 04-Mar-2020 22:48 12892 +apa.tar.xz 04-Mar-2020 22:48 12892 +apa6.doc.r67848.tar.xz 08-Aug-2023 23:44 556524 +apa6.doc.tar.xz 08-Aug-2023 23:44 556524 +apa6.r67848.tar.xz 08-Aug-2023 23:44 13788 +apa6.source.r67848.tar.xz 08-Aug-2023 23:44 37432 +apa6.source.tar.xz 08-Aug-2023 23:44 37432 +apa6.tar.xz 08-Aug-2023 23:44 13788 +apa6e.doc.r23350.tar.xz 28-Feb-2019 02:14 245600 +apa6e.doc.tar.xz 28-Feb-2019 02:14 245600 +apa6e.r23350.tar.xz 28-Feb-2019 02:14 2896 +apa6e.source.r23350.tar.xz 28-Feb-2019 02:14 8492 +apa6e.source.tar.xz 28-Feb-2019 02:14 8492 +apa6e.tar.xz 28-Feb-2019 02:14 2896 +apa7.doc.r63974.tar.xz 25-Jul-2022 23:53 745272 +apa7.doc.tar.xz 25-Jul-2022 23:53 745272 +apa7.r63974.tar.xz 25-Jul-2022 23:53 14252 +apa7.source.r63974.tar.xz 25-Jul-2022 23:53 32888 +apa7.source.tar.xz 25-Jul-2022 23:53 32888 +apa7.tar.xz 25-Jul-2022 23:53 14252 +apacite.doc.r54080.tar.xz 04-Mar-2020 22:49 641176 +apacite.doc.tar.xz 04-Mar-2020 22:49 641176 +apacite.r54080.tar.xz 04-Mar-2020 22:49 42736 +apacite.source.r54080.tar.xz 04-Mar-2020 22:48 162688 +apacite.source.tar.xz 04-Mar-2020 22:48 162688 +apacite.tar.xz 04-Mar-2020 22:49 42736 +apalike-ejor.doc.r59667.tar.xz 21-Jun-2021 23:52 137380 +apalike-ejor.doc.tar.xz 21-Jun-2021 23:52 137380 +apalike-ejor.r59667.tar.xz 21-Jun-2021 23:52 7016 +apalike-ejor.tar.xz 21-Jun-2021 23:52 7016 +apalike-german.doc.r65403.tar.xz 31-Dec-2022 00:53 13368 +apalike-german.doc.tar.xz 31-Dec-2022 00:53 13368 +apalike-german.r65403.tar.xz 31-Dec-2022 00:53 5828 +apalike-german.tar.xz 31-Dec-2022 00:53 5828 +apalike2.r54080.tar.xz 04-Mar-2020 22:49 6308 +apalike2.tar.xz 04-Mar-2020 22:49 6308 +apnum.doc.r47510.tar.xz 28-Feb-2019 02:14 739572 +apnum.doc.tar.xz 28-Feb-2019 02:14 739572 +apnum.r47510.tar.xz 28-Feb-2019 02:14 13364 +apnum.tar.xz 28-Feb-2019 02:14 13364 +appendix.doc.r53718.tar.xz 09-Feb-2020 00:54 316980 +appendix.doc.tar.xz 09-Feb-2020 00:54 316980 +appendix.r53718.tar.xz 09-Feb-2020 00:54 2880 +appendix.source.r53718.tar.xz 09-Feb-2020 00:54 10596 +appendix.source.tar.xz 09-Feb-2020 00:54 10596 +appendix.tar.xz 09-Feb-2020 00:54 2880 +appendixnumberbeamer.doc.r46317.tar.xz 28-Feb-2019 02:14 676 +appendixnumberbeamer.doc.tar.xz 28-Feb-2019 02:14 676 +appendixnumberbeamer.r46317.tar.xz 28-Feb-2019 02:14 1596 +appendixnumberbeamer.tar.xz 28-Feb-2019 02:14 1596 +apprendre-a-programmer-en-tex.doc.r57179.tar.xz 21-Dec-2020 00:58 28485780 +apprendre-a-programmer-en-tex.doc.tar.xz 21-Dec-2020 00:58 28485780 +apprendre-a-programmer-en-tex.r57179.tar.xz 21-Dec-2020 00:58 680 +apprendre-a-programmer-en-tex.tar.xz 21-Dec-2020 00:58 680 +apprends-latex.doc.r19306.tar.xz 28-Feb-2019 02:14 2489056 +apprends-latex.doc.tar.xz 28-Feb-2019 02:14 2489056 +apprends-latex.r19306.tar.xz 28-Feb-2019 02:15 444 +apprends-latex.tar.xz 28-Feb-2019 02:15 444 +apptools.doc.r28400.tar.xz 28-Feb-2019 02:15 82148 +apptools.doc.tar.xz 28-Feb-2019 02:15 82148 +apptools.r28400.tar.xz 28-Feb-2019 02:15 1208 +apptools.source.r28400.tar.xz 28-Feb-2019 02:15 5300 +apptools.source.tar.xz 28-Feb-2019 02:15 5300 +apptools.tar.xz 28-Feb-2019 02:15 1208 +apxproof.doc.r75921.tar.xz 29-Jul-2025 23:49 552696 +apxproof.doc.tar.xz 29-Jul-2025 23:49 552696 +apxproof.r75921.tar.xz 29-Jul-2025 23:49 4716 +apxproof.source.r75921.tar.xz 29-Jul-2025 23:49 16600 +apxproof.source.tar.xz 29-Jul-2025 23:49 16600 +apxproof.tar.xz 29-Jul-2025 23:49 4716 +arabi-add.doc.r67573.tar.xz 07-Jul-2023 23:45 168780 +arabi-add.doc.tar.xz 07-Jul-2023 23:45 168780 +arabi-add.r67573.tar.xz 07-Jul-2023 23:45 2576 +arabi-add.tar.xz 07-Jul-2023 23:45 2576 +arabi.doc.r44662.tar.xz 28-Feb-2019 02:15 1967352 +arabi.doc.tar.xz 28-Feb-2019 02:15 1967352 +arabi.r44662.tar.xz 28-Feb-2019 02:15 1934444 +arabi.tar.xz 28-Feb-2019 02:15 1934444 +arabic-book.doc.r59594.tar.xz 14-Jun-2021 23:52 542416 +arabic-book.doc.tar.xz 14-Jun-2021 23:52 542416 +arabic-book.r59594.tar.xz 14-Jun-2021 23:52 2868 +arabic-book.tar.xz 14-Jun-2021 23:52 2868 +arabicfront.doc.r51474.tar.xz 26-Jun-2019 23:54 612 +arabicfront.doc.tar.xz 26-Jun-2019 23:54 612 +arabicfront.r51474.tar.xz 26-Jun-2019 23:54 1644 +arabicfront.tar.xz 26-Jun-2019 23:54 1644 +arabluatex.doc.r67201.tar.xz 23-May-2023 23:44 758848 +arabluatex.doc.tar.xz 23-May-2023 23:44 758848 +arabluatex.r67201.tar.xz 23-May-2023 23:44 19824 +arabluatex.source.r67201.tar.xz 23-May-2023 23:44 55668 +arabluatex.source.tar.xz 23-May-2023 23:44 55668 +arabluatex.tar.xz 23-May-2023 23:44 19824 +arabtex.doc.r64260.tar.xz 01-Sep-2022 23:59 930808 +arabtex.doc.tar.xz 01-Sep-2022 23:59 930808 +arabtex.r64260.tar.xz 01-Sep-2022 23:59 221836 +arabtex.tar.xz 01-Sep-2022 23:59 221836 +arabxetex.doc.r38299.tar.xz 28-Feb-2019 02:15 345168 +arabxetex.doc.tar.xz 28-Feb-2019 02:15 345168 +arabxetex.r38299.tar.xz 28-Feb-2019 02:15 147680 +arabxetex.source.r38299.tar.xz 28-Feb-2019 02:15 29584 +arabxetex.source.tar.xz 28-Feb-2019 02:15 29584 +arabxetex.tar.xz 28-Feb-2019 02:15 147680 +aramaic-serto.doc.r74548.tar.xz 10-Mar-2025 00:50 184680 +aramaic-serto.doc.tar.xz 10-Mar-2025 00:50 184680 +aramaic-serto.r74548.tar.xz 10-Mar-2025 00:50 98020 +aramaic-serto.tar.xz 10-Mar-2025 00:50 98020 +arara.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:15 340 +arara.aarch64-linux.tar.xz 28-Feb-2019 02:15 340 +arara.amd64-freebsd.r29036.tar.xz 28-Feb-2019 02:15 340 +arara.amd64-freebsd.tar.xz 28-Feb-2019 02:15 340 +arara.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:15 340 +arara.amd64-netbsd.tar.xz 28-Feb-2019 02:15 340 +arara.armhf-linux.r30015.tar.xz 28-Feb-2019 02:15 336 +arara.armhf-linux.tar.xz 28-Feb-2019 02:15 336 +arara.doc.r75653.tar.xz 30-Jun-2025 23:52 5007520 +arara.doc.tar.xz 30-Jun-2025 23:52 5007520 +arara.i386-freebsd.r29036.tar.xz 28-Feb-2019 02:15 340 +arara.i386-freebsd.tar.xz 28-Feb-2019 02:15 340 +arara.i386-linux.r29036.tar.xz 28-Feb-2019 02:15 340 +arara.i386-linux.tar.xz 28-Feb-2019 02:15 340 +arara.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:15 340 +arara.i386-netbsd.tar.xz 28-Feb-2019 02:15 340 +arara.i386-solaris.r29036.tar.xz 28-Feb-2019 02:15 336 +arara.i386-solaris.tar.xz 28-Feb-2019 02:15 336 +arara.r75653.tar.xz 30-Jun-2025 23:52 17539872 +arara.source.r75653.tar.xz 30-Jun-2025 23:52 117580 +arara.source.tar.xz 30-Jun-2025 23:52 117580 +arara.tar.xz 30-Jun-2025 23:52 17539872 +arara.universal-darwin.r57908.tar.xz 25-Feb-2021 18:15 340 +arara.universal-darwin.tar.xz 25-Feb-2021 18:15 340 +arara.windows.r65891.tar.xz 20-Feb-2023 22:07 2304 +arara.windows.tar.xz 20-Feb-2023 22:07 2304 +arara.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:15 340 +arara.x86_64-cygwin.tar.xz 28-Feb-2019 02:15 340 +arara.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:15 348 +arara.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:15 348 +arara.x86_64-linux.r29036.tar.xz 28-Feb-2019 02:15 336 +arara.x86_64-linux.tar.xz 28-Feb-2019 02:15 336 +arara.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:15 344 +arara.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:15 344 +arara.x86_64-solaris.r29036.tar.xz 28-Feb-2019 02:15 340 +arara.x86_64-solaris.tar.xz 28-Feb-2019 02:15 340 +archaeologie.doc.r68476.tar.xz 07-Oct-2023 23:44 1072584 +archaeologie.doc.tar.xz 07-Oct-2023 23:44 1072584 +archaeologie.r68476.tar.xz 07-Oct-2023 23:44 72660 +archaeologie.source.r68476.tar.xz 07-Oct-2023 23:44 135936 +archaeologie.source.tar.xz 07-Oct-2023 23:44 135936 +archaeologie.tar.xz 07-Oct-2023 23:44 72660 +archaic.doc.r38005.tar.xz 28-Feb-2019 02:15 2944788 +archaic.doc.tar.xz 28-Feb-2019 02:15 2944788 +archaic.r38005.tar.xz 28-Feb-2019 02:15 372708 +archaic.source.r38005.tar.xz 28-Feb-2019 02:15 134456 +archaic.source.tar.xz 28-Feb-2019 02:15 134456 +archaic.tar.xz 28-Feb-2019 02:15 372708 +archivo.doc.r57283.tar.xz 02-Jan-2021 01:02 78956 +archivo.doc.tar.xz 02-Jan-2021 01:02 78956 +archivo.r57283.tar.xz 02-Jan-2021 01:02 1483132 +archivo.tar.xz 02-Jan-2021 01:02 1483132 +arcs.doc.r15878.tar.xz 28-Feb-2019 02:15 52132 +arcs.doc.tar.xz 28-Feb-2019 02:15 52132 +arcs.r15878.tar.xz 28-Feb-2019 02:15 1516 +arcs.source.r15878.tar.xz 28-Feb-2019 02:15 2476 +arcs.source.tar.xz 28-Feb-2019 02:15 2476 +arcs.tar.xz 28-Feb-2019 02:15 1516 +arev.doc.r15878.tar.xz 28-Feb-2019 02:15 524172 +arev.doc.tar.xz 28-Feb-2019 02:15 524172 +arev.r15878.tar.xz 28-Feb-2019 02:15 964648 +arev.source.r15878.tar.xz 28-Feb-2019 02:15 10100 +arev.source.tar.xz 28-Feb-2019 02:15 10100 +arev.tar.xz 28-Feb-2019 02:15 964648 +argumentation.doc.r75931.tar.xz 31-Jul-2025 23:46 554048 +argumentation.doc.tar.xz 31-Jul-2025 23:46 554048 +argumentation.r75931.tar.xz 31-Jul-2025 23:46 4156 +argumentation.tar.xz 31-Jul-2025 23:46 4156 +arimo.doc.r68950.tar.xz 24-Nov-2023 00:43 29504 +arimo.doc.tar.xz 24-Nov-2023 00:43 29504 +arimo.r68950.tar.xz 24-Nov-2023 00:43 2905304 +arimo.tar.xz 24-Nov-2023 00:43 2905304 +armtex.doc.r69418.tar.xz 15-Jan-2024 00:45 431636 +armtex.doc.tar.xz 15-Jan-2024 00:45 431636 +armtex.r69418.tar.xz 15-Jan-2024 00:45 527968 +armtex.tar.xz 15-Jan-2024 00:45 527968 +around-the-bend.doc.r15878.tar.xz 28-Feb-2019 02:15 450496 +around-the-bend.doc.tar.xz 28-Feb-2019 02:15 450496 +around-the-bend.r15878.tar.xz 28-Feb-2019 02:15 472 +around-the-bend.tar.xz 28-Feb-2019 02:15 472 +arphic-ttf.doc.r42675.tar.xz 28-Feb-2019 02:15 13072 +arphic-ttf.doc.tar.xz 28-Feb-2019 02:15 13072 +arphic-ttf.r42675.tar.xz 28-Feb-2019 02:15 12663696 +arphic-ttf.tar.xz 28-Feb-2019 02:15 12663696 +arphic.doc.r15878.tar.xz 28-Feb-2019 02:15 170068 +arphic.doc.tar.xz 28-Feb-2019 02:15 170068 +arphic.r15878.tar.xz 28-Feb-2019 02:15 27383316 +arphic.tar.xz 28-Feb-2019 02:15 27383316 +arraycols.doc.r71168.tar.xz 04-May-2024 23:57 108476 +arraycols.doc.tar.xz 04-May-2024 23:57 108476 +arraycols.r71168.tar.xz 04-May-2024 23:57 1292 +arraycols.source.r71168.tar.xz 04-May-2024 23:57 7372 +arraycols.source.tar.xz 04-May-2024 23:57 7372 +arraycols.tar.xz 04-May-2024 23:57 1292 +arrayjobx.doc.r18125.tar.xz 28-Feb-2019 02:15 436304 +arrayjobx.doc.tar.xz 28-Feb-2019 02:15 436304 +arrayjobx.r18125.tar.xz 28-Feb-2019 02:15 2976 +arrayjobx.tar.xz 28-Feb-2019 02:15 2976 +arraysort.doc.r31576.tar.xz 28-Feb-2019 02:15 302944 +arraysort.doc.tar.xz 28-Feb-2019 02:15 302944 +arraysort.r31576.tar.xz 28-Feb-2019 02:15 2056 +arraysort.source.r31576.tar.xz 28-Feb-2019 02:15 10728 +arraysort.source.tar.xz 28-Feb-2019 02:15 10728 +arraysort.tar.xz 28-Feb-2019 02:15 2056 +arsclassica.doc.r45656.tar.xz 28-Feb-2019 02:15 330092 +arsclassica.doc.tar.xz 28-Feb-2019 02:15 330092 +arsclassica.r45656.tar.xz 28-Feb-2019 02:15 2240 +arsclassica.tar.xz 28-Feb-2019 02:15 2240 +arsenal.doc.r68191.tar.xz 06-Sep-2023 23:44 336760 +arsenal.doc.tar.xz 06-Sep-2023 23:44 336760 +arsenal.r68191.tar.xz 06-Sep-2023 23:44 202344 +arsenal.source.r68191.tar.xz 06-Sep-2023 23:44 7476 +arsenal.source.tar.xz 06-Sep-2023 23:44 7476 +arsenal.tar.xz 06-Sep-2023 23:44 202344 +articleingud.doc.r38741.tar.xz 28-Feb-2019 02:15 401792 +articleingud.doc.tar.xz 28-Feb-2019 02:15 401792 +articleingud.r38741.tar.xz 28-Feb-2019 02:15 4568 +articleingud.source.r38741.tar.xz 28-Feb-2019 02:15 26596 +articleingud.source.tar.xz 28-Feb-2019 02:15 26596 +articleingud.tar.xz 28-Feb-2019 02:15 4568 +arvo.doc.r57213.tar.xz 24-Dec-2020 00:57 56576 +arvo.doc.tar.xz 24-Dec-2020 00:57 56576 +arvo.r57213.tar.xz 24-Dec-2020 00:57 105664 +arvo.tar.xz 24-Dec-2020 00:57 105664 +arydshln.doc.r50084.tar.xz 28-Feb-2019 02:15 834260 +arydshln.doc.tar.xz 28-Feb-2019 02:15 834260 +arydshln.r50084.tar.xz 28-Feb-2019 02:15 9340 +arydshln.source.r50084.tar.xz 28-Feb-2019 02:15 53928 +arydshln.source.tar.xz 28-Feb-2019 02:15 53928 +arydshln.tar.xz 28-Feb-2019 02:15 9340 +asaetr.doc.r15878.tar.xz 28-Feb-2019 02:15 70016 +asaetr.doc.tar.xz 28-Feb-2019 02:15 70016 +asaetr.r15878.tar.xz 28-Feb-2019 02:15 13132 +asaetr.tar.xz 28-Feb-2019 02:15 13132 +asana-math.doc.r59629.tar.xz 18-Jun-2021 23:53 3752 +asana-math.doc.tar.xz 18-Jun-2021 23:53 3752 +asana-math.r59629.tar.xz 18-Jun-2021 23:53 673612 +asana-math.tar.xz 18-Jun-2021 23:53 673612 +asapsym.doc.r40201.tar.xz 28-Feb-2019 02:15 120516 +asapsym.doc.tar.xz 28-Feb-2019 02:15 120516 +asapsym.r40201.tar.xz 28-Feb-2019 02:15 47244 +asapsym.source.r40201.tar.xz 28-Feb-2019 02:15 5968 +asapsym.source.tar.xz 28-Feb-2019 02:15 5968 +asapsym.tar.xz 28-Feb-2019 02:15 47244 +ascelike.doc.r75662.tar.xz 01-Jul-2025 23:51 212992 +ascelike.doc.tar.xz 01-Jul-2025 23:51 212992 +ascelike.r75662.tar.xz 01-Jul-2025 23:51 15840 +ascelike.tar.xz 01-Jul-2025 23:51 15840 +ascii-chart.doc.r20536.tar.xz 28-Feb-2019 02:15 26064 +ascii-chart.doc.tar.xz 28-Feb-2019 02:15 26064 +ascii-chart.r20536.tar.xz 28-Feb-2019 02:15 412 +ascii-chart.tar.xz 28-Feb-2019 02:15 412 +ascii-font.doc.r29989.tar.xz 28-Feb-2019 02:15 556 +ascii-font.doc.tar.xz 28-Feb-2019 02:15 556 +ascii-font.r29989.tar.xz 28-Feb-2019 02:15 49000 +ascii-font.source.r29989.tar.xz 28-Feb-2019 02:15 4448 +ascii-font.source.tar.xz 28-Feb-2019 02:15 4448 +ascii-font.tar.xz 28-Feb-2019 02:15 49000 +asciilist.doc.r49060.tar.xz 28-Feb-2019 02:15 383824 +asciilist.doc.tar.xz 28-Feb-2019 02:15 383824 +asciilist.r49060.tar.xz 28-Feb-2019 02:15 3104 +asciilist.source.r49060.tar.xz 28-Feb-2019 02:15 14092 +asciilist.source.tar.xz 28-Feb-2019 02:15 14092 +asciilist.tar.xz 28-Feb-2019 02:15 3104 +ascmac.doc.r53411.tar.xz 16-Jan-2020 00:55 159960 +ascmac.doc.tar.xz 16-Jan-2020 00:55 159960 +ascmac.r53411.tar.xz 16-Jan-2020 00:55 16656 +ascmac.source.r53411.tar.xz 16-Jan-2020 00:55 9012 +ascmac.source.tar.xz 16-Jan-2020 00:55 9012 +ascmac.tar.xz 16-Jan-2020 00:55 16656 +askinclude.doc.r54725.tar.xz 14-Apr-2020 23:54 591304 +askinclude.doc.tar.xz 14-Apr-2020 23:54 591304 +askinclude.r54725.tar.xz 14-Apr-2020 23:54 4364 +askinclude.source.r54725.tar.xz 14-Apr-2020 23:54 12216 +askinclude.source.tar.xz 14-Apr-2020 23:54 12216 +askinclude.tar.xz 14-Apr-2020 23:54 4364 +askmaps.doc.r56730.tar.xz 22-Oct-2020 23:56 384640 +askmaps.doc.tar.xz 22-Oct-2020 23:56 384640 +askmaps.r56730.tar.xz 22-Oct-2020 23:56 3312 +askmaps.tar.xz 22-Oct-2020 23:56 3312 +asmeconf.doc.r75002.tar.xz 22-Apr-2025 23:49 24383700 +asmeconf.doc.tar.xz 22-Apr-2025 23:49 24383700 +asmeconf.r75002.tar.xz 22-Apr-2025 23:49 32952 +asmeconf.tar.xz 22-Apr-2025 23:49 32952 +asmejour.doc.r74977.tar.xz 18-Apr-2025 23:49 2108616 +asmejour.doc.tar.xz 18-Apr-2025 23:49 2108616 +asmejour.r74977.tar.xz 18-Apr-2025 23:49 26500 +asmejour.tar.xz 18-Apr-2025 23:49 26500 +aspectratio.doc.r25243.tar.xz 28-Feb-2019 02:15 337268 +aspectratio.doc.tar.xz 28-Feb-2019 02:15 337268 +aspectratio.r25243.tar.xz 28-Feb-2019 02:15 65600 +aspectratio.tar.xz 28-Feb-2019 02:15 65600 +assignment.doc.r20431.tar.xz 28-Feb-2019 02:15 81860 +assignment.doc.tar.xz 28-Feb-2019 02:15 81860 +assignment.r20431.tar.xz 28-Feb-2019 02:15 1924 +assignment.tar.xz 28-Feb-2019 02:15 1924 +assoccnt.doc.r38497.tar.xz 28-Feb-2019 02:15 353364 +assoccnt.doc.tar.xz 28-Feb-2019 02:15 353364 +assoccnt.r38497.tar.xz 28-Feb-2019 02:15 4036 +assoccnt.tar.xz 28-Feb-2019 02:15 4036 +association-matrix.doc.r64845.tar.xz 29-Oct-2022 23:53 268584 +association-matrix.doc.tar.xz 29-Oct-2022 23:53 268584 +association-matrix.r64845.tar.xz 29-Oct-2022 23:53 4188 +association-matrix.tar.xz 29-Oct-2022 23:53 4188 +asternote.doc.r63838.tar.xz 08-Jul-2022 23:53 117844 +asternote.doc.tar.xz 08-Jul-2022 23:53 117844 +asternote.r63838.tar.xz 08-Jul-2022 23:53 1400 +asternote.tar.xz 08-Jul-2022 23:53 1400 +astro.doc.r15878.tar.xz 28-Feb-2019 02:15 4220 +astro.doc.tar.xz 28-Feb-2019 02:15 4220 +astro.r15878.tar.xz 28-Feb-2019 02:15 12824 +astro.tar.xz 28-Feb-2019 02:15 12824 +asy-overview.doc.r72484.tar.xz 07-Oct-2024 23:49 1833600 +asy-overview.doc.tar.xz 07-Oct-2024 23:49 1833600 +asy-overview.r72484.tar.xz 07-Oct-2024 23:49 624 +asy-overview.tar.xz 07-Oct-2024 23:49 624 +asyfig.doc.r17512.tar.xz 28-Feb-2019 02:15 214116 +asyfig.doc.tar.xz 28-Feb-2019 02:15 214116 +asyfig.r17512.tar.xz 28-Feb-2019 02:15 3228 +asyfig.source.r17512.tar.xz 28-Feb-2019 02:15 6596 +asyfig.source.tar.xz 28-Feb-2019 02:15 6596 +asyfig.tar.xz 28-Feb-2019 02:15 3228 +asymptote-by-example-zh-cn.doc.r15878.tar.xz 28-Feb-2019 02:15 526632 +asymptote-by-example-zh-cn.doc.tar.xz 28-Feb-2019 02:15 526632 +asymptote-by-example-zh-cn.r15878.tar.xz 28-Feb-2019 02:15 388 +asymptote-by-example-zh-cn.tar.xz 28-Feb-2019 02:15 388 +asymptote-faq-zh-cn.doc.r15878.tar.xz 28-Feb-2019 02:15 373604 +asymptote-faq-zh-cn.doc.tar.xz 28-Feb-2019 02:15 373604 +asymptote-faq-zh-cn.r15878.tar.xz 28-Feb-2019 02:15 380 +asymptote-faq-zh-cn.tar.xz 28-Feb-2019 02:15 380 +asymptote-manual-zh-cn.doc.r15878.tar.xz 28-Feb-2019 02:15 898452 +asymptote-manual-zh-cn.doc.tar.xz 28-Feb-2019 02:15 898452 +asymptote-manual-zh-cn.r15878.tar.xz 28-Feb-2019 02:15 400 +asymptote-manual-zh-cn.tar.xz 28-Feb-2019 02:15 400 +asymptote.aarch64-linux.r75893.tar.xz 25-Jul-2025 23:46 1301224 +asymptote.aarch64-linux.tar.xz 25-Jul-2025 23:46 1301224 +asymptote.amd64-freebsd.r75325.tar.xz 26-May-2025 23:47 1424036 +asymptote.amd64-freebsd.tar.xz 26-May-2025 23:47 1424036 +asymptote.amd64-netbsd.r59140.tar.xz 08-May-2021 23:53 344 +asymptote.amd64-netbsd.tar.xz 08-May-2021 23:53 344 +asymptote.doc.r75712.tar.xz 07-Jul-2025 23:48 2326964 +asymptote.doc.tar.xz 07-Jul-2025 23:48 2326964 +asymptote.i386-freebsd.r75325.tar.xz 26-May-2025 23:47 1424876 +asymptote.i386-freebsd.tar.xz 26-May-2025 23:47 1424876 +asymptote.i386-linux.r75325.tar.xz 26-May-2025 23:47 1602624 +asymptote.i386-linux.tar.xz 26-May-2025 23:47 1602624 +asymptote.r75712.tar.xz 07-Jul-2025 23:48 385064 +asymptote.tar.xz 07-Jul-2025 23:48 385064 +asymptote.universal-darwin.r75337.tar.xz 27-May-2025 23:50 2785432 +asymptote.universal-darwin.tar.xz 27-May-2025 23:50 2785432 +asymptote.windows.r75344.tar.xz 28-May-2025 23:52 3266624 +asymptote.windows.tar.xz 28-May-2025 23:52 3266624 +asymptote.x86_64-cygwin.r75326.tar.xz 26-May-2025 23:47 1472600 +asymptote.x86_64-cygwin.tar.xz 26-May-2025 23:47 1472600 +asymptote.x86_64-linux.r75325.tar.xz 26-May-2025 23:47 1573948 +asymptote.x86_64-linux.tar.xz 26-May-2025 23:47 1573948 +asypictureb.doc.r73611.tar.xz 28-Jan-2025 00:47 763724 +asypictureb.doc.tar.xz 28-Jan-2025 00:47 763724 +asypictureb.r73611.tar.xz 28-Jan-2025 00:47 3568 +asypictureb.source.r73611.tar.xz 28-Jan-2025 00:47 15812 +asypictureb.source.tar.xz 28-Jan-2025 00:47 15812 +asypictureb.tar.xz 28-Jan-2025 00:47 3568 +atableau.doc.r73576.tar.xz 25-Jan-2025 00:44 871424 +atableau.doc.tar.xz 25-Jan-2025 00:44 871424 +atableau.r73576.tar.xz 25-Jan-2025 00:44 23768 +atableau.tar.xz 25-Jan-2025 00:44 23768 +atbegshi.doc.r53051.tar.xz 07-Dec-2019 00:54 400452 +atbegshi.doc.tar.xz 07-Dec-2019 00:54 400452 +atbegshi.r53051.tar.xz 07-Dec-2019 00:54 4748 +atbegshi.source.r53051.tar.xz 07-Dec-2019 00:54 13348 +atbegshi.source.tar.xz 07-Dec-2019 00:54 13348 +atbegshi.tar.xz 07-Dec-2019 00:54 4748 +atenddvi.doc.r56922.tar.xz 13-Nov-2020 00:55 280328 +atenddvi.doc.tar.xz 13-Nov-2020 00:55 280328 +atenddvi.r56922.tar.xz 13-Nov-2020 00:55 1932 +atenddvi.source.r56922.tar.xz 13-Nov-2020 00:55 5256 +atenddvi.source.tar.xz 13-Nov-2020 00:55 5256 +atenddvi.tar.xz 13-Nov-2020 00:55 1932 +atendofenv.doc.r62164.tar.xz 25-Feb-2022 00:52 91728 +atendofenv.doc.tar.xz 25-Feb-2022 00:52 91728 +atendofenv.r62164.tar.xz 25-Feb-2022 00:52 1584 +atendofenv.source.r62164.tar.xz 25-Feb-2022 00:52 3104 +atendofenv.source.tar.xz 25-Feb-2022 00:52 3104 +atendofenv.tar.xz 25-Feb-2022 00:52 1584 +atkinson.doc.r74692.tar.xz 19-Mar-2025 00:52 651320 +atkinson.doc.tar.xz 19-Mar-2025 00:52 651320 +atkinson.r74692.tar.xz 19-Mar-2025 00:52 2115212 +atkinson.tar.xz 19-Mar-2025 00:52 2115212 +attachfile.doc.r42099.tar.xz 28-Feb-2019 02:16 346824 +attachfile.doc.tar.xz 28-Feb-2019 02:16 346824 +attachfile.r42099.tar.xz 28-Feb-2019 02:16 4744 +attachfile.source.r42099.tar.xz 28-Feb-2019 02:16 19996 +attachfile.source.tar.xz 28-Feb-2019 02:16 19996 +attachfile.tar.xz 28-Feb-2019 02:16 4744 +attachfile2.aarch64-linux.r52909.tar.xz 25-Nov-2019 00:55 348 +attachfile2.aarch64-linux.tar.xz 25-Nov-2019 00:55 348 +attachfile2.amd64-freebsd.r52909.tar.xz 25-Nov-2019 00:55 348 +attachfile2.amd64-freebsd.tar.xz 25-Nov-2019 00:55 348 +attachfile2.amd64-netbsd.r52909.tar.xz 25-Nov-2019 00:55 348 +attachfile2.amd64-netbsd.tar.xz 25-Nov-2019 00:55 348 +attachfile2.armhf-linux.r52909.tar.xz 25-Nov-2019 00:55 348 +attachfile2.armhf-linux.tar.xz 25-Nov-2019 00:55 348 +attachfile2.doc.r69505.tar.xz 21-Jan-2024 00:51 466344 +attachfile2.doc.tar.xz 21-Jan-2024 00:51 466344 +attachfile2.i386-freebsd.r52909.tar.xz 25-Nov-2019 00:55 348 +attachfile2.i386-freebsd.tar.xz 25-Nov-2019 00:55 348 +attachfile2.i386-linux.r52909.tar.xz 25-Nov-2019 00:55 348 +attachfile2.i386-linux.tar.xz 25-Nov-2019 00:55 348 +attachfile2.i386-netbsd.r52909.tar.xz 25-Nov-2019 00:55 348 +attachfile2.i386-netbsd.tar.xz 25-Nov-2019 00:55 348 +attachfile2.i386-solaris.r52909.tar.xz 25-Nov-2019 00:55 348 +attachfile2.i386-solaris.tar.xz 25-Nov-2019 00:55 348 +attachfile2.r69505.tar.xz 21-Jan-2024 00:51 11080 +attachfile2.source.r69505.tar.xz 21-Jan-2024 00:51 19220 +attachfile2.source.tar.xz 21-Jan-2024 00:51 19220 +attachfile2.tar.xz 21-Jan-2024 00:51 11080 +attachfile2.universal-darwin.r57908.tar.xz 25-Feb-2021 18:15 348 +attachfile2.universal-darwin.tar.xz 25-Feb-2021 18:15 348 +attachfile2.windows.r65891.tar.xz 20-Feb-2023 22:08 2312 +attachfile2.windows.tar.xz 20-Feb-2023 22:08 2312 +attachfile2.x86_64-cygwin.r52909.tar.xz 25-Nov-2019 00:55 348 +attachfile2.x86_64-cygwin.tar.xz 25-Nov-2019 00:55 348 +attachfile2.x86_64-darwinlegacy.r52909.tar.xz 25-Nov-2019 00:55 356 +attachfile2.x86_64-darwinlegacy.tar.xz 25-Nov-2019 00:55 356 +attachfile2.x86_64-linux.r52909.tar.xz 25-Nov-2019 00:55 348 +attachfile2.x86_64-linux.tar.xz 25-Nov-2019 00:55 348 +attachfile2.x86_64-linuxmusl.r52909.tar.xz 25-Nov-2019 00:55 352 +attachfile2.x86_64-linuxmusl.tar.xz 25-Nov-2019 00:55 352 +attachfile2.x86_64-solaris.r52909.tar.xz 25-Nov-2019 00:55 348 +attachfile2.x86_64-solaris.tar.xz 25-Nov-2019 00:55 348 +atveryend.doc.r72507.tar.xz 10-Oct-2024 00:33 281796 +atveryend.doc.tar.xz 10-Oct-2024 00:33 281796 +atveryend.r72507.tar.xz 10-Oct-2024 00:33 1160 +atveryend.source.r72507.tar.xz 10-Oct-2024 00:33 4272 +atveryend.source.tar.xz 10-Oct-2024 00:33 4272 +atveryend.tar.xz 10-Oct-2024 00:33 1160 +aucklandthesis.doc.r51323.tar.xz 05-Jun-2019 23:38 2992 +aucklandthesis.doc.tar.xz 05-Jun-2019 23:38 2992 +aucklandthesis.r51323.tar.xz 05-Jun-2019 23:38 3176 +aucklandthesis.tar.xz 05-Jun-2019 23:38 3176 +augie.doc.r61719.tar.xz 24-Jan-2022 00:53 3324 +augie.doc.tar.xz 24-Jan-2022 00:53 3324 +augie.r61719.tar.xz 24-Jan-2022 00:53 62124 +augie.tar.xz 24-Jan-2022 00:53 62124 +auncial-new.doc.r62977.tar.xz 07-Apr-2022 23:53 318124 +auncial-new.doc.tar.xz 07-Apr-2022 23:53 318124 +auncial-new.r62977.tar.xz 07-Apr-2022 23:53 201344 +auncial-new.source.r62977.tar.xz 07-Apr-2022 23:53 33688 +auncial-new.source.tar.xz 07-Apr-2022 23:53 33688 +auncial-new.tar.xz 07-Apr-2022 23:53 201344 +aurical.doc.r15878.tar.xz 28-Feb-2019 02:16 69056 +aurical.doc.tar.xz 28-Feb-2019 02:16 69056 +aurical.r15878.tar.xz 28-Feb-2019 02:16 2446888 +aurical.tar.xz 28-Feb-2019 02:16 2446888 +aurl.doc.r75878.tar.xz 23-Jul-2025 23:50 1052 +aurl.doc.tar.xz 23-Jul-2025 23:50 1052 +aurl.r75878.tar.xz 23-Jul-2025 23:50 13744 +aurl.tar.xz 23-Jul-2025 23:50 13744 +authoraftertitle.doc.r55889.tar.xz 20-Jul-2020 23:57 114940 +authoraftertitle.doc.tar.xz 20-Jul-2020 23:57 114940 +authoraftertitle.r55889.tar.xz 20-Jul-2020 23:57 820 +authoraftertitle.tar.xz 20-Jul-2020 23:57 820 +authorarchive.doc.r65777.tar.xz 11-Feb-2023 00:53 790136 +authorarchive.doc.tar.xz 11-Feb-2023 00:53 790136 +authorarchive.r65777.tar.xz 11-Feb-2023 00:53 3704 +authorarchive.tar.xz 11-Feb-2023 00:53 3704 +authordate.doc.r52564.tar.xz 30-Oct-2019 00:55 2508 +authordate.doc.tar.xz 30-Oct-2019 00:55 2508 +authordate.r52564.tar.xz 30-Oct-2019 00:55 8276 +authordate.tar.xz 30-Oct-2019 00:55 8276 +authorindex.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:16 344 +authorindex.aarch64-linux.tar.xz 28-Feb-2019 02:16 344 +authorindex.amd64-freebsd.r18790.tar.xz 28-Feb-2019 02:16 344 +authorindex.amd64-freebsd.tar.xz 28-Feb-2019 02:16 344 +authorindex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:16 344 +authorindex.amd64-netbsd.tar.xz 28-Feb-2019 02:16 344 +authorindex.armhf-linux.r30015.tar.xz 28-Feb-2019 02:16 340 +authorindex.armhf-linux.tar.xz 28-Feb-2019 02:16 340 +authorindex.doc.r51757.tar.xz 27-Jul-2019 23:54 65956 +authorindex.doc.tar.xz 27-Jul-2019 23:54 65956 +authorindex.i386-freebsd.r18790.tar.xz 28-Feb-2019 02:16 344 +authorindex.i386-freebsd.tar.xz 28-Feb-2019 02:16 344 +authorindex.i386-linux.r18790.tar.xz 28-Feb-2019 02:16 340 +authorindex.i386-linux.tar.xz 28-Feb-2019 02:16 340 +authorindex.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:16 340 +authorindex.i386-netbsd.tar.xz 28-Feb-2019 02:16 340 +authorindex.i386-solaris.r18790.tar.xz 28-Feb-2019 02:16 340 +authorindex.i386-solaris.tar.xz 28-Feb-2019 02:16 340 +authorindex.r51757.tar.xz 27-Jul-2019 23:54 9060 +authorindex.tar.xz 27-Jul-2019 23:54 9060 +authorindex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:15 340 +authorindex.universal-darwin.tar.xz 25-Feb-2021 18:15 340 +authorindex.windows.r65891.tar.xz 20-Feb-2023 22:08 2304 +authorindex.windows.tar.xz 20-Feb-2023 22:08 2304 +authorindex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:16 344 +authorindex.x86_64-cygwin.tar.xz 28-Feb-2019 02:16 344 +authorindex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:16 352 +authorindex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:16 352 +authorindex.x86_64-linux.r18790.tar.xz 28-Feb-2019 02:16 340 +authorindex.x86_64-linux.tar.xz 28-Feb-2019 02:16 340 +authorindex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:16 344 +authorindex.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:16 344 +authorindex.x86_64-solaris.r18790.tar.xz 28-Feb-2019 02:16 344 +authorindex.x86_64-solaris.tar.xz 28-Feb-2019 02:16 344 +auto-pst-pdf-lua.doc.r66637.tar.xz 22-Mar-2023 00:52 79892 +auto-pst-pdf-lua.doc.tar.xz 22-Mar-2023 00:52 79892 +auto-pst-pdf-lua.r66637.tar.xz 22-Mar-2023 00:52 2500 +auto-pst-pdf-lua.tar.xz 22-Mar-2023 00:52 2500 +auto-pst-pdf.doc.r56596.tar.xz 08-Oct-2020 23:57 211044 +auto-pst-pdf.doc.tar.xz 08-Oct-2020 23:57 211044 +auto-pst-pdf.r56596.tar.xz 08-Oct-2020 23:57 2636 +auto-pst-pdf.source.r56596.tar.xz 08-Oct-2020 23:57 7256 +auto-pst-pdf.source.tar.xz 08-Oct-2020 23:57 7256 +auto-pst-pdf.tar.xz 08-Oct-2020 23:57 2636 +autoaligne.doc.r66655.tar.xz 24-Mar-2023 00:56 356128 +autoaligne.doc.tar.xz 24-Mar-2023 00:56 356128 +autoaligne.r66655.tar.xz 24-Mar-2023 00:56 9444 +autoaligne.tar.xz 24-Mar-2023 00:56 9444 +autoarea.doc.r59552.tar.xz 11-Jun-2021 23:52 35392 +autoarea.doc.tar.xz 11-Jun-2021 23:52 35392 +autoarea.r59552.tar.xz 11-Jun-2021 23:52 4148 +autoarea.tar.xz 11-Jun-2021 23:52 4148 +autobreak.doc.r43337.tar.xz 28-Feb-2019 02:16 545668 +autobreak.doc.tar.xz 28-Feb-2019 02:16 545668 +autobreak.r43337.tar.xz 28-Feb-2019 02:16 2624 +autobreak.source.r43337.tar.xz 28-Feb-2019 02:16 9432 +autobreak.source.tar.xz 28-Feb-2019 02:16 9432 +autobreak.tar.xz 28-Feb-2019 02:16 2624 +autofancyhdr.doc.r54049.tar.xz 04-Mar-2020 22:49 6596 +autofancyhdr.doc.tar.xz 04-Mar-2020 22:49 6596 +autofancyhdr.r54049.tar.xz 04-Mar-2020 22:49 1200 +autofancyhdr.tar.xz 04-Mar-2020 22:49 1200 +automata.doc.r19717.tar.xz 28-Feb-2019 02:16 88216 +automata.doc.tar.xz 28-Feb-2019 02:16 88216 +automata.r19717.tar.xz 28-Feb-2019 02:16 5320 +automata.tar.xz 28-Feb-2019 02:16 5320 +autonum.doc.r36084.tar.xz 28-Feb-2019 02:16 400788 +autonum.doc.tar.xz 28-Feb-2019 02:16 400788 +autonum.r36084.tar.xz 28-Feb-2019 02:16 3460 +autonum.source.r36084.tar.xz 28-Feb-2019 02:16 17168 +autonum.source.tar.xz 28-Feb-2019 02:16 17168 +autonum.tar.xz 28-Feb-2019 02:16 3460 +autopdf.doc.r32377.tar.xz 28-Feb-2019 02:16 229084 +autopdf.doc.tar.xz 28-Feb-2019 02:16 229084 +autopdf.r32377.tar.xz 28-Feb-2019 02:16 4936 +autopdf.source.r32377.tar.xz 28-Feb-2019 02:16 8256 +autopdf.source.tar.xz 28-Feb-2019 02:16 8256 +autopdf.tar.xz 28-Feb-2019 02:16 4936 +autopuncitems.doc.r63045.tar.xz 16-Apr-2022 23:53 37720 +autopuncitems.doc.tar.xz 16-Apr-2022 23:53 37720 +autopuncitems.r63045.tar.xz 16-Apr-2022 23:53 3072 +autopuncitems.tar.xz 16-Apr-2022 23:53 3072 +autosp.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 21084 +autosp.aarch64-linux.tar.xz 13-Feb-2025 00:47 21084 +autosp.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:51 18592 +autosp.amd64-freebsd.tar.xz 09-Feb-2025 00:51 18592 +autosp.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 18576 +autosp.amd64-netbsd.tar.xz 09-Feb-2025 18:14 18576 +autosp.armhf-linux.r73793.tar.xz 09-Feb-2025 00:51 20788 +autosp.armhf-linux.tar.xz 09-Feb-2025 00:51 20788 +autosp.doc.r69814.tar.xz 12-Feb-2024 00:44 288724 +autosp.doc.tar.xz 12-Feb-2024 00:44 288724 +autosp.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:51 18580 +autosp.i386-freebsd.tar.xz 09-Feb-2025 00:51 18580 +autosp.i386-linux.r73792.tar.xz 09-Feb-2025 00:51 22848 +autosp.i386-linux.tar.xz 09-Feb-2025 00:51 22848 +autosp.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 17096 +autosp.i386-netbsd.tar.xz 09-Feb-2025 18:14 17096 +autosp.i386-solaris.r73792.tar.xz 09-Feb-2025 00:51 20692 +autosp.i386-solaris.tar.xz 09-Feb-2025 00:51 20692 +autosp.r69814.tar.xz 12-Feb-2024 00:44 692 +autosp.tar.xz 12-Feb-2024 00:44 692 +autosp.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 47260 +autosp.universal-darwin.tar.xz 09-Feb-2025 18:14 47260 +autosp.windows.r73796.tar.xz 09-Feb-2025 18:14 20916 +autosp.windows.tar.xz 09-Feb-2025 18:14 20916 +autosp.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 21488 +autosp.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 21488 +autosp.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 20028 +autosp.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 20028 +autosp.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 19832 +autosp.x86_64-linux.tar.xz 19-Feb-2025 00:46 19832 +autosp.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:51 20824 +autosp.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:51 20824 +autosp.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:51 22548 +autosp.x86_64-solaris.tar.xz 09-Feb-2025 00:51 22548 +autotype.doc.r69309.tar.xz 06-Jan-2024 00:45 413220 +autotype.doc.tar.xz 06-Jan-2024 00:45 413220 +autotype.r69309.tar.xz 06-Jan-2024 00:45 456844 +autotype.tar.xz 06-Jan-2024 00:45 456844 +auxhook.doc.r53173.tar.xz 18-Dec-2019 00:54 285640 +auxhook.doc.tar.xz 18-Dec-2019 00:54 285640 +auxhook.r53173.tar.xz 18-Dec-2019 00:54 1660 +auxhook.source.r53173.tar.xz 18-Dec-2019 00:54 5240 +auxhook.source.tar.xz 18-Dec-2019 00:54 5240 +auxhook.tar.xz 18-Dec-2019 00:54 1660 +avantgar.r61983.tar.xz 12-Feb-2022 00:52 241568 +avantgar.tar.xz 12-Feb-2022 00:52 241568 +avremu.doc.r71991.tar.xz 07-Aug-2024 23:47 147960 +avremu.doc.tar.xz 07-Aug-2024 23:47 147960 +avremu.r71991.tar.xz 07-Aug-2024 23:47 12936 +avremu.source.r71991.tar.xz 07-Aug-2024 23:47 22324 +avremu.source.tar.xz 07-Aug-2024 23:47 22324 +avremu.tar.xz 07-Aug-2024 23:47 12936 +awesomebox.doc.r57349.tar.xz 08-Jan-2021 00:58 56416 +awesomebox.doc.tar.xz 08-Jan-2021 00:58 56416 +awesomebox.r57349.tar.xz 08-Jan-2021 00:58 2252 +awesomebox.tar.xz 08-Jan-2021 00:58 2252 +axessibility.doc.r57105.tar.xz 10-Dec-2020 00:58 222888 +axessibility.doc.tar.xz 10-Dec-2020 00:58 222888 +axessibility.r57105.tar.xz 10-Dec-2020 00:58 3828 +axessibility.source.r57105.tar.xz 10-Dec-2020 00:58 8468 +axessibility.source.tar.xz 10-Dec-2020 00:58 8468 +axessibility.tar.xz 10-Dec-2020 00:58 3828 +axodraw2.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 21128 +axodraw2.aarch64-linux.tar.xz 13-Feb-2025 00:47 21128 +axodraw2.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:51 20124 +axodraw2.amd64-freebsd.tar.xz 09-Feb-2025 00:51 20124 +axodraw2.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 20132 +axodraw2.amd64-netbsd.tar.xz 09-Feb-2025 18:14 20132 +axodraw2.armhf-linux.r73793.tar.xz 09-Feb-2025 00:51 19696 +axodraw2.armhf-linux.tar.xz 09-Feb-2025 00:51 19696 +axodraw2.doc.r74430.tar.xz 04-Mar-2025 00:50 489836 +axodraw2.doc.tar.xz 04-Mar-2025 00:50 489836 +axodraw2.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:51 20148 +axodraw2.i386-freebsd.tar.xz 09-Feb-2025 00:51 20148 +axodraw2.i386-linux.r73792.tar.xz 09-Feb-2025 00:51 25688 +axodraw2.i386-linux.tar.xz 09-Feb-2025 00:51 25688 +axodraw2.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 17424 +axodraw2.i386-netbsd.tar.xz 09-Feb-2025 18:14 17424 +axodraw2.i386-solaris.r73792.tar.xz 09-Feb-2025 00:51 21048 +axodraw2.i386-solaris.tar.xz 09-Feb-2025 00:51 21048 +axodraw2.r74430.tar.xz 04-Mar-2025 00:50 25592 +axodraw2.tar.xz 04-Mar-2025 00:50 25592 +axodraw2.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 57220 +axodraw2.universal-darwin.tar.xz 09-Feb-2025 18:14 57220 +axodraw2.windows.r73796.tar.xz 09-Feb-2025 18:14 103548 +axodraw2.windows.tar.xz 09-Feb-2025 18:14 103548 +axodraw2.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 28300 +axodraw2.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 28300 +axodraw2.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 21584 +axodraw2.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 21584 +axodraw2.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 26980 +axodraw2.x86_64-linux.tar.xz 19-Feb-2025 00:46 26980 +axodraw2.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:51 25208 +axodraw2.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:51 25208 +axodraw2.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:51 26292 +axodraw2.x86_64-solaris.tar.xz 09-Feb-2025 00:51 26292 +b1encoding.doc.r21271.tar.xz 28-Feb-2019 02:16 142812 +b1encoding.doc.tar.xz 28-Feb-2019 02:16 142812 +b1encoding.r21271.tar.xz 28-Feb-2019 02:16 4520 +b1encoding.source.r21271.tar.xz 28-Feb-2019 02:16 8164 +b1encoding.source.tar.xz 28-Feb-2019 02:16 8164 +b1encoding.tar.xz 28-Feb-2019 02:16 4520 +babel-albanian.doc.r57005.tar.xz 26-Nov-2020 00:56 133444 +babel-albanian.doc.tar.xz 26-Nov-2020 00:56 133444 +babel-albanian.r57005.tar.xz 26-Nov-2020 00:56 2264 +babel-albanian.source.r57005.tar.xz 26-Nov-2020 00:56 4748 +babel-albanian.source.tar.xz 26-Nov-2020 00:56 4748 +babel-albanian.tar.xz 26-Nov-2020 00:56 2264 +babel-azerbaijani.doc.r44197.tar.xz 28-Feb-2019 02:17 232940 +babel-azerbaijani.doc.tar.xz 28-Feb-2019 02:17 232940 +babel-azerbaijani.r44197.tar.xz 28-Feb-2019 02:17 3076 +babel-azerbaijani.source.r44197.tar.xz 28-Feb-2019 02:17 5156 +babel-azerbaijani.source.tar.xz 28-Feb-2019 02:17 5156 +babel-azerbaijani.tar.xz 28-Feb-2019 02:17 3076 +babel-basque.doc.r30256.tar.xz 28-Feb-2019 02:17 155352 +babel-basque.doc.tar.xz 28-Feb-2019 02:17 155352 +babel-basque.r30256.tar.xz 28-Feb-2019 02:17 2664 +babel-basque.source.r30256.tar.xz 28-Feb-2019 02:17 6464 +babel-basque.source.tar.xz 28-Feb-2019 02:17 6464 +babel-basque.tar.xz 28-Feb-2019 02:17 2664 +babel-belarusian.doc.r49022.tar.xz 28-Feb-2019 02:17 152780 +babel-belarusian.doc.tar.xz 28-Feb-2019 02:17 152780 +babel-belarusian.r49022.tar.xz 28-Feb-2019 02:17 5112 +babel-belarusian.source.r49022.tar.xz 28-Feb-2019 02:17 21492 +babel-belarusian.source.tar.xz 28-Feb-2019 02:17 21492 +babel-belarusian.tar.xz 28-Feb-2019 02:17 5112 +babel-bosnian.doc.r38174.tar.xz 28-Feb-2019 02:17 103208 +babel-bosnian.doc.tar.xz 28-Feb-2019 02:17 103208 +babel-bosnian.r38174.tar.xz 28-Feb-2019 02:17 2080 +babel-bosnian.source.r38174.tar.xz 28-Feb-2019 02:17 4344 +babel-bosnian.source.tar.xz 28-Feb-2019 02:17 4344 +babel-bosnian.tar.xz 28-Feb-2019 02:17 2080 +babel-breton.doc.r30257.tar.xz 28-Feb-2019 02:17 118232 +babel-breton.doc.tar.xz 28-Feb-2019 02:17 118232 +babel-breton.r30257.tar.xz 28-Feb-2019 02:17 2756 +babel-breton.source.r30257.tar.xz 28-Feb-2019 02:17 5384 +babel-breton.source.tar.xz 28-Feb-2019 02:17 5384 +babel-breton.tar.xz 28-Feb-2019 02:17 2756 +babel-bulgarian.doc.r31902.tar.xz 28-Feb-2019 02:17 176396 +babel-bulgarian.doc.tar.xz 28-Feb-2019 02:17 176396 +babel-bulgarian.r31902.tar.xz 28-Feb-2019 02:17 5808 +babel-bulgarian.source.r31902.tar.xz 28-Feb-2019 02:17 20716 +babel-bulgarian.source.tar.xz 28-Feb-2019 02:17 20716 +babel-bulgarian.tar.xz 28-Feb-2019 02:17 5808 +babel-catalan.doc.r30259.tar.xz 28-Feb-2019 02:17 209232 +babel-catalan.doc.tar.xz 28-Feb-2019 02:17 209232 +babel-catalan.r30259.tar.xz 28-Feb-2019 02:17 3444 +babel-catalan.source.r30259.tar.xz 28-Feb-2019 02:17 9708 +babel-catalan.source.tar.xz 28-Feb-2019 02:17 9708 +babel-catalan.tar.xz 28-Feb-2019 02:17 3444 +babel-croatian.doc.r35198.tar.xz 28-Feb-2019 02:17 114148 +babel-croatian.doc.tar.xz 28-Feb-2019 02:17 114148 +babel-croatian.r35198.tar.xz 28-Feb-2019 02:17 2176 +babel-croatian.source.r35198.tar.xz 28-Feb-2019 02:17 4428 +babel-croatian.source.tar.xz 28-Feb-2019 02:17 4428 +babel-croatian.tar.xz 28-Feb-2019 02:17 2176 +babel-czech.doc.r30261.tar.xz 28-Feb-2019 02:17 188640 +babel-czech.doc.tar.xz 28-Feb-2019 02:17 188640 +babel-czech.r30261.tar.xz 28-Feb-2019 02:17 4880 +babel-czech.source.r30261.tar.xz 28-Feb-2019 02:17 12536 +babel-czech.source.tar.xz 28-Feb-2019 02:17 12536 +babel-czech.tar.xz 28-Feb-2019 02:17 4880 +babel-danish.doc.r57642.tar.xz 07-Feb-2021 00:58 136588 +babel-danish.doc.tar.xz 07-Feb-2021 00:58 136588 +babel-danish.r57642.tar.xz 07-Feb-2021 00:58 2488 +babel-danish.source.r57642.tar.xz 07-Feb-2021 00:58 5792 +babel-danish.source.tar.xz 07-Feb-2021 00:58 5792 +babel-danish.tar.xz 07-Feb-2021 00:58 2488 +babel-dutch.doc.r60362.tar.xz 29-Aug-2021 23:52 157392 +babel-dutch.doc.tar.xz 29-Aug-2021 23:52 157392 +babel-dutch.r60362.tar.xz 29-Aug-2021 23:52 2920 +babel-dutch.source.r60362.tar.xz 29-Aug-2021 23:52 7968 +babel-dutch.source.tar.xz 29-Aug-2021 23:52 7968 +babel-dutch.tar.xz 29-Aug-2021 23:52 2920 +babel-english.doc.r70799.tar.xz 29-Mar-2024 00:45 130664 +babel-english.doc.tar.xz 29-Mar-2024 00:45 130664 +babel-english.r70799.tar.xz 29-Mar-2024 00:45 3036 +babel-english.source.r70799.tar.xz 29-Mar-2024 00:45 6264 +babel-english.source.tar.xz 29-Mar-2024 00:45 6264 +babel-english.tar.xz 29-Mar-2024 00:45 3036 +babel-esperanto.doc.r75781.tar.xz 14-Jul-2025 23:48 158608 +babel-esperanto.doc.tar.xz 14-Jul-2025 23:48 158608 +babel-esperanto.r75781.tar.xz 14-Jul-2025 23:48 2448 +babel-esperanto.source.r75781.tar.xz 14-Jul-2025 23:48 5976 +babel-esperanto.source.tar.xz 14-Jul-2025 23:48 5976 +babel-esperanto.tar.xz 14-Jul-2025 23:48 2448 +babel-estonian.doc.r38064.tar.xz 28-Feb-2019 02:17 91472 +babel-estonian.doc.tar.xz 28-Feb-2019 02:17 91472 +babel-estonian.r38064.tar.xz 28-Feb-2019 02:17 3040 +babel-estonian.source.r38064.tar.xz 28-Feb-2019 02:17 9136 +babel-estonian.source.tar.xz 28-Feb-2019 02:17 9136 +babel-estonian.tar.xz 28-Feb-2019 02:17 3040 +babel-finnish.doc.r57643.tar.xz 07-Feb-2021 00:58 147984 +babel-finnish.doc.tar.xz 07-Feb-2021 00:58 147984 +babel-finnish.r57643.tar.xz 07-Feb-2021 00:58 2416 +babel-finnish.source.r57643.tar.xz 07-Feb-2021 00:58 6224 +babel-finnish.source.tar.xz 07-Feb-2021 00:58 6224 +babel-finnish.tar.xz 07-Feb-2021 00:58 2416 +babel-french.doc.r76067.tar.xz 15-Aug-2025 23:50 828860 +babel-french.doc.tar.xz 15-Aug-2025 23:50 828860 +babel-french.r76067.tar.xz 15-Aug-2025 23:50 16900 +babel-french.source.r76067.tar.xz 15-Aug-2025 23:50 58668 +babel-french.source.tar.xz 15-Aug-2025 23:50 58668 +babel-french.tar.xz 15-Aug-2025 23:50 16900 +babel-friulan.doc.r39861.tar.xz 28-Feb-2019 02:17 138624 +babel-friulan.doc.tar.xz 28-Feb-2019 02:17 138624 +babel-friulan.r39861.tar.xz 28-Feb-2019 02:17 1576 +babel-friulan.source.r39861.tar.xz 28-Feb-2019 02:17 3456 +babel-friulan.source.tar.xz 28-Feb-2019 02:17 3456 +babel-friulan.tar.xz 28-Feb-2019 02:17 1576 +babel-galician.doc.r30270.tar.xz 28-Feb-2019 02:17 444432 +babel-galician.doc.tar.xz 28-Feb-2019 02:17 444432 +babel-galician.r30270.tar.xz 28-Feb-2019 02:17 7192 +babel-galician.source.r30270.tar.xz 28-Feb-2019 02:17 26212 +babel-galician.source.tar.xz 28-Feb-2019 02:17 26212 +babel-galician.tar.xz 28-Feb-2019 02:17 7192 +babel-georgian.doc.r45864.tar.xz 28-Feb-2019 02:17 424 +babel-georgian.doc.tar.xz 28-Feb-2019 02:17 424 +babel-georgian.r45864.tar.xz 28-Feb-2019 02:17 5028 +babel-georgian.tar.xz 28-Feb-2019 02:17 5028 +babel-german.doc.r73094.tar.xz 11-Dec-2024 00:49 571388 +babel-german.doc.tar.xz 11-Dec-2024 00:49 571388 +babel-german.r73094.tar.xz 11-Dec-2024 00:49 4280 +babel-german.source.r73094.tar.xz 11-Dec-2024 00:49 16112 +babel-german.source.tar.xz 11-Dec-2024 00:49 16112 +babel-german.tar.xz 11-Dec-2024 00:49 4280 +babel-greek.doc.r68532.tar.xz 13-Oct-2023 23:44 1827288 +babel-greek.doc.tar.xz 13-Oct-2023 23:44 1827288 +babel-greek.r68532.tar.xz 13-Oct-2023 23:44 6976 +babel-greek.source.r68532.tar.xz 13-Oct-2023 23:44 25304 +babel-greek.source.tar.xz 13-Oct-2023 23:44 25304 +babel-greek.tar.xz 13-Oct-2023 23:44 6976 +babel-hebrew.doc.r68016.tar.xz 22-Aug-2023 23:44 400176 +babel-hebrew.doc.tar.xz 22-Aug-2023 23:44 400176 +babel-hebrew.r68016.tar.xz 22-Aug-2023 23:44 12044 +babel-hebrew.source.r68016.tar.xz 22-Aug-2023 23:44 31404 +babel-hebrew.source.tar.xz 22-Aug-2023 23:44 31404 +babel-hebrew.tar.xz 22-Aug-2023 23:44 12044 +babel-hungarian.doc.r75084.tar.xz 02-May-2025 23:48 604 +babel-hungarian.doc.tar.xz 02-May-2025 23:48 604 +babel-hungarian.r75084.tar.xz 02-May-2025 23:48 54336 +babel-hungarian.tar.xz 02-May-2025 23:48 54336 +babel-icelandic.doc.r51551.tar.xz 04-Jul-2019 23:53 228724 +babel-icelandic.doc.tar.xz 04-Jul-2019 23:53 228724 +babel-icelandic.r51551.tar.xz 04-Jul-2019 23:53 4120 +babel-icelandic.source.r51551.tar.xz 04-Jul-2019 23:53 10920 +babel-icelandic.source.tar.xz 04-Jul-2019 23:53 10920 +babel-icelandic.tar.xz 04-Jul-2019 23:53 4120 +babel-indonesian.doc.r75372.tar.xz 01-Jun-2025 23:52 120964 +babel-indonesian.doc.tar.xz 01-Jun-2025 23:52 120964 +babel-indonesian.r75372.tar.xz 01-Jun-2025 23:52 2476 +babel-indonesian.source.r75372.tar.xz 01-Jun-2025 23:52 4980 +babel-indonesian.source.tar.xz 01-Jun-2025 23:52 4980 +babel-indonesian.tar.xz 01-Jun-2025 23:52 2476 +babel-interlingua.doc.r30276.tar.xz 28-Feb-2019 02:17 109964 +babel-interlingua.doc.tar.xz 28-Feb-2019 02:17 109964 +babel-interlingua.r30276.tar.xz 28-Feb-2019 02:17 2256 +babel-interlingua.source.r30276.tar.xz 28-Feb-2019 02:17 3992 +babel-interlingua.source.tar.xz 28-Feb-2019 02:17 3992 +babel-interlingua.tar.xz 28-Feb-2019 02:17 2256 +babel-irish.doc.r30277.tar.xz 28-Feb-2019 02:17 110184 +babel-irish.doc.tar.xz 28-Feb-2019 02:17 110184 +babel-irish.r30277.tar.xz 28-Feb-2019 02:17 2276 +babel-irish.source.r30277.tar.xz 28-Feb-2019 02:17 4252 +babel-irish.source.tar.xz 28-Feb-2019 02:17 4252 +babel-irish.tar.xz 28-Feb-2019 02:17 2276 +babel-italian.doc.r72520.tar.xz 10-Oct-2024 23:46 495800 +babel-italian.doc.tar.xz 10-Oct-2024 23:46 495800 +babel-italian.r72520.tar.xz 10-Oct-2024 23:46 3896 +babel-italian.source.r72520.tar.xz 10-Oct-2024 23:46 25312 +babel-italian.source.tar.xz 10-Oct-2024 23:46 25312 +babel-italian.tar.xz 10-Oct-2024 23:46 3896 +babel-japanese.doc.r57733.tar.xz 14-Feb-2021 00:58 518004 +babel-japanese.doc.tar.xz 14-Feb-2021 00:58 518004 +babel-japanese.r57733.tar.xz 14-Feb-2021 00:58 2428 +babel-japanese.source.r57733.tar.xz 14-Feb-2021 00:58 8192 +babel-japanese.source.tar.xz 14-Feb-2021 00:58 8192 +babel-japanese.tar.xz 14-Feb-2021 00:58 2428 +babel-kurmanji.doc.r30279.tar.xz 28-Feb-2019 02:17 124800 +babel-kurmanji.doc.tar.xz 28-Feb-2019 02:17 124800 +babel-kurmanji.r30279.tar.xz 28-Feb-2019 02:17 2928 +babel-kurmanji.source.r30279.tar.xz 28-Feb-2019 02:17 6140 +babel-kurmanji.source.tar.xz 28-Feb-2019 02:17 6140 +babel-kurmanji.tar.xz 28-Feb-2019 02:17 2928 +babel-latin.doc.r76176.tar.xz 29-Aug-2025 23:49 187756 +babel-latin.doc.tar.xz 29-Aug-2025 23:49 187756 +babel-latin.r76176.tar.xz 29-Aug-2025 23:49 7420 +babel-latin.source.r76176.tar.xz 29-Aug-2025 23:49 21292 +babel-latin.source.tar.xz 29-Aug-2025 23:49 21292 +babel-latin.tar.xz 29-Aug-2025 23:49 7420 +babel-latvian.doc.r71108.tar.xz 28-Apr-2024 23:47 277076 +babel-latvian.doc.tar.xz 28-Apr-2024 23:47 277076 +babel-latvian.r71108.tar.xz 28-Apr-2024 23:47 4112 +babel-latvian.source.r71108.tar.xz 28-Apr-2024 23:47 6232 +babel-latvian.source.tar.xz 28-Apr-2024 23:47 6232 +babel-latvian.tar.xz 28-Apr-2024 23:47 4112 +babel-lithuanian.doc.r66513.tar.xz 10-Mar-2023 00:54 209484 +babel-lithuanian.doc.tar.xz 10-Mar-2023 00:54 209484 +babel-lithuanian.r66513.tar.xz 10-Mar-2023 00:54 2560 +babel-lithuanian.source.r66513.tar.xz 10-Mar-2023 00:54 4048 +babel-lithuanian.source.tar.xz 10-Mar-2023 00:54 4048 +babel-lithuanian.tar.xz 10-Mar-2023 00:54 2560 +babel-macedonian.doc.r39587.tar.xz 28-Feb-2019 02:17 207284 +babel-macedonian.doc.tar.xz 28-Feb-2019 02:17 207284 +babel-macedonian.r39587.tar.xz 28-Feb-2019 02:17 4832 +babel-macedonian.source.r39587.tar.xz 28-Feb-2019 02:17 11544 +babel-macedonian.source.tar.xz 28-Feb-2019 02:17 11544 +babel-macedonian.tar.xz 28-Feb-2019 02:17 4832 +babel-malay.doc.r43234.tar.xz 28-Feb-2019 02:17 114256 +babel-malay.doc.tar.xz 28-Feb-2019 02:17 114256 +babel-malay.r43234.tar.xz 28-Feb-2019 02:17 2516 +babel-malay.source.r43234.tar.xz 28-Feb-2019 02:17 5056 +babel-malay.source.tar.xz 28-Feb-2019 02:17 5056 +babel-malay.tar.xz 28-Feb-2019 02:17 2516 +babel-norsk.doc.r70691.tar.xz 19-Mar-2024 00:45 152244 +babel-norsk.doc.tar.xz 19-Mar-2024 00:45 152244 +babel-norsk.r70691.tar.xz 19-Mar-2024 00:45 2516 +babel-norsk.source.r70691.tar.xz 19-Mar-2024 00:45 6408 +babel-norsk.source.tar.xz 19-Mar-2024 00:45 6408 +babel-norsk.tar.xz 19-Mar-2024 00:45 2516 +babel-occitan.doc.r39608.tar.xz 28-Feb-2019 02:17 411824 +babel-occitan.doc.tar.xz 28-Feb-2019 02:17 411824 +babel-occitan.r39608.tar.xz 28-Feb-2019 02:17 2384 +babel-occitan.source.r39608.tar.xz 28-Feb-2019 02:17 10520 +babel-occitan.source.tar.xz 28-Feb-2019 02:17 10520 +babel-occitan.tar.xz 28-Feb-2019 02:17 2384 +babel-piedmontese.doc.r30282.tar.xz 28-Feb-2019 02:17 106224 +babel-piedmontese.doc.tar.xz 28-Feb-2019 02:17 106224 +babel-piedmontese.r30282.tar.xz 28-Feb-2019 02:17 1804 +babel-piedmontese.source.r30282.tar.xz 28-Feb-2019 02:17 4044 +babel-piedmontese.source.tar.xz 28-Feb-2019 02:17 4044 +babel-piedmontese.tar.xz 28-Feb-2019 02:17 1804 +babel-polish.doc.r62680.tar.xz 14-Mar-2022 00:50 398860 +babel-polish.doc.tar.xz 14-Mar-2022 00:50 398860 +babel-polish.r62680.tar.xz 14-Mar-2022 00:50 3904 +babel-polish.source.r62680.tar.xz 14-Mar-2022 00:50 11584 +babel-polish.source.tar.xz 14-Mar-2022 00:50 11584 +babel-polish.tar.xz 14-Mar-2022 00:50 3904 +babel-portuges.doc.r59883.tar.xz 09-Jul-2021 23:53 146580 +babel-portuges.doc.tar.xz 09-Jul-2021 23:53 146580 +babel-portuges.r59883.tar.xz 09-Jul-2021 23:53 2828 +babel-portuges.source.r59883.tar.xz 09-Jul-2021 23:53 6692 +babel-portuges.source.tar.xz 09-Jul-2021 23:53 6692 +babel-portuges.tar.xz 09-Jul-2021 23:53 2828 +babel-romanian.doc.r58776.tar.xz 06-Apr-2021 23:50 113056 +babel-romanian.doc.tar.xz 06-Apr-2021 23:50 113056 +babel-romanian.r58776.tar.xz 06-Apr-2021 23:50 2124 +babel-romanian.source.r58776.tar.xz 06-Apr-2021 23:50 4308 +babel-romanian.source.tar.xz 06-Apr-2021 23:50 4308 +babel-romanian.tar.xz 06-Apr-2021 23:50 2124 +babel-romansh.doc.r30286.tar.xz 28-Feb-2019 02:17 111840 +babel-romansh.doc.tar.xz 28-Feb-2019 02:17 111840 +babel-romansh.r30286.tar.xz 28-Feb-2019 02:17 1132 +babel-romansh.source.r30286.tar.xz 28-Feb-2019 02:17 3200 +babel-romansh.source.tar.xz 28-Feb-2019 02:17 3200 +babel-romansh.tar.xz 28-Feb-2019 02:17 1132 +babel-russian.doc.r57376.tar.xz 11-Jan-2021 00:57 137608 +babel-russian.doc.tar.xz 11-Jan-2021 00:57 137608 +babel-russian.r57376.tar.xz 11-Jan-2021 00:57 6352 +babel-russian.source.r57376.tar.xz 11-Jan-2021 00:57 26068 +babel-russian.source.tar.xz 11-Jan-2021 00:57 26068 +babel-russian.tar.xz 11-Jan-2021 00:57 6352 +babel-samin.doc.r69604.tar.xz 27-Jan-2024 00:44 134292 +babel-samin.doc.tar.xz 27-Jan-2024 00:44 134292 +babel-samin.r69604.tar.xz 27-Jan-2024 00:44 1900 +babel-samin.source.r69604.tar.xz 27-Jan-2024 00:44 3944 +babel-samin.source.tar.xz 27-Jan-2024 00:44 3944 +babel-samin.tar.xz 27-Jan-2024 00:44 1900 +babel-scottish.doc.r69610.tar.xz 28-Jan-2024 00:54 122168 +babel-scottish.doc.tar.xz 28-Jan-2024 00:54 122168 +babel-scottish.r69610.tar.xz 28-Jan-2024 00:54 1828 +babel-scottish.source.r69610.tar.xz 28-Jan-2024 00:54 3668 +babel-scottish.source.tar.xz 28-Jan-2024 00:54 3668 +babel-scottish.tar.xz 28-Jan-2024 00:54 1828 +babel-serbian.doc.r64571.tar.xz 01-Oct-2022 23:56 256632 +babel-serbian.doc.tar.xz 01-Oct-2022 23:56 256632 +babel-serbian.r64571.tar.xz 01-Oct-2022 23:56 3360 +babel-serbian.source.r64571.tar.xz 01-Oct-2022 23:56 7436 +babel-serbian.source.tar.xz 01-Oct-2022 23:56 7436 +babel-serbian.tar.xz 01-Oct-2022 23:56 3360 +babel-serbianc.doc.r64588.tar.xz 02-Oct-2022 23:56 293708 +babel-serbianc.doc.tar.xz 02-Oct-2022 23:56 293708 +babel-serbianc.r64588.tar.xz 02-Oct-2022 23:56 4336 +babel-serbianc.source.r64588.tar.xz 02-Oct-2022 23:56 9872 +babel-serbianc.source.tar.xz 02-Oct-2022 23:56 9872 +babel-serbianc.tar.xz 02-Oct-2022 23:56 4336 +babel-slovak.doc.r30292.tar.xz 28-Feb-2019 02:17 195272 +babel-slovak.doc.tar.xz 28-Feb-2019 02:17 195272 +babel-slovak.r30292.tar.xz 28-Feb-2019 02:17 5432 +babel-slovak.source.r30292.tar.xz 28-Feb-2019 02:17 13924 +babel-slovak.source.tar.xz 28-Feb-2019 02:17 13924 +babel-slovak.tar.xz 28-Feb-2019 02:17 5432 +babel-slovenian.doc.r75181.tar.xz 12-May-2025 23:49 137304 +babel-slovenian.doc.tar.xz 12-May-2025 23:49 137304 +babel-slovenian.r75181.tar.xz 12-May-2025 23:49 1984 +babel-slovenian.source.r75181.tar.xz 12-May-2025 23:49 4968 +babel-slovenian.source.tar.xz 12-May-2025 23:49 4968 +babel-slovenian.tar.xz 12-May-2025 23:49 1984 +babel-sorbian.doc.r60975.tar.xz 07-Nov-2021 00:55 209804 +babel-sorbian.doc.tar.xz 07-Nov-2021 00:55 209804 +babel-sorbian.r60975.tar.xz 07-Nov-2021 00:55 3156 +babel-sorbian.source.r60975.tar.xz 07-Nov-2021 00:55 6328 +babel-sorbian.source.tar.xz 07-Nov-2021 00:55 6328 +babel-sorbian.tar.xz 07-Nov-2021 00:55 3156 +babel-spanish.doc.r59367.tar.xz 27-May-2021 23:52 183140 +babel-spanish.doc.tar.xz 27-May-2021 23:52 183140 +babel-spanish.r59367.tar.xz 27-May-2021 23:52 8876 +babel-spanish.source.r59367.tar.xz 27-May-2021 23:52 29800 +babel-spanish.source.tar.xz 27-May-2021 23:52 29800 +babel-spanish.tar.xz 27-May-2021 23:52 8876 +babel-swedish.doc.r57647.tar.xz 07-Feb-2021 00:58 138828 +babel-swedish.doc.tar.xz 07-Feb-2021 00:58 138828 +babel-swedish.r57647.tar.xz 07-Feb-2021 00:58 2700 +babel-swedish.source.r57647.tar.xz 07-Feb-2021 00:58 6860 +babel-swedish.source.tar.xz 07-Feb-2021 00:58 6860 +babel-swedish.tar.xz 07-Feb-2021 00:58 2700 +babel-thai.doc.r30564.tar.xz 28-Feb-2019 02:17 215648 +babel-thai.doc.tar.xz 28-Feb-2019 02:17 215648 +babel-thai.r30564.tar.xz 28-Feb-2019 02:17 6376 +babel-thai.source.r30564.tar.xz 28-Feb-2019 02:17 11116 +babel-thai.source.tar.xz 28-Feb-2019 02:17 11116 +babel-thai.tar.xz 28-Feb-2019 02:17 6376 +babel-turkish.doc.r51560.tar.xz 05-Jul-2019 23:54 298588 +babel-turkish.doc.tar.xz 05-Jul-2019 23:54 298588 +babel-turkish.r51560.tar.xz 05-Jul-2019 23:54 2932 +babel-turkish.source.r51560.tar.xz 05-Jul-2019 23:54 6272 +babel-turkish.source.tar.xz 05-Jul-2019 23:54 6272 +babel-turkish.tar.xz 05-Jul-2019 23:54 2932 +babel-ukrainian.doc.r56674.tar.xz 15-Oct-2020 23:57 135428 +babel-ukrainian.doc.tar.xz 15-Oct-2020 23:57 135428 +babel-ukrainian.r56674.tar.xz 15-Oct-2020 23:57 5076 +babel-ukrainian.source.r56674.tar.xz 15-Oct-2020 23:57 19380 +babel-ukrainian.source.tar.xz 15-Oct-2020 23:57 19380 +babel-ukrainian.tar.xz 15-Oct-2020 23:57 5076 +babel-vietnamese.doc.r39246.tar.xz 28-Feb-2019 02:17 49604 +babel-vietnamese.doc.tar.xz 28-Feb-2019 02:17 49604 +babel-vietnamese.r39246.tar.xz 28-Feb-2019 02:17 2480 +babel-vietnamese.source.r39246.tar.xz 28-Feb-2019 02:17 6908 +babel-vietnamese.source.tar.xz 28-Feb-2019 02:17 6908 +babel-vietnamese.tar.xz 28-Feb-2019 02:17 2480 +babel-welsh.doc.r73855.tar.xz 11-Feb-2025 00:48 118632 +babel-welsh.doc.tar.xz 11-Feb-2025 00:48 118632 +babel-welsh.r73855.tar.xz 11-Feb-2025 00:48 1804 +babel-welsh.source.r73855.tar.xz 11-Feb-2025 00:48 4092 +babel-welsh.source.tar.xz 11-Feb-2025 00:48 4092 +babel-welsh.tar.xz 11-Feb-2025 00:48 1804 +babel.doc.r75958.tar.xz 03-Aug-2025 23:46 1166292 +babel.doc.tar.xz 03-Aug-2025 23:46 1166292 +babel.r75958.tar.xz 03-Aug-2025 23:46 240124 +babel.source.r75958.tar.xz 03-Aug-2025 23:46 937076 +babel.source.tar.xz 03-Aug-2025 23:46 937076 +babel.tar.xz 03-Aug-2025 23:46 240124 +babelbib.doc.r57349.tar.xz 08-Jan-2021 00:58 1253016 +babelbib.doc.tar.xz 08-Jan-2021 00:58 1253016 +babelbib.r57349.tar.xz 08-Jan-2021 00:58 27240 +babelbib.tar.xz 08-Jan-2021 00:58 27240 +background.doc.r42428.tar.xz 28-Feb-2019 02:17 115784 +background.doc.tar.xz 28-Feb-2019 02:17 115784 +background.r42428.tar.xz 28-Feb-2019 02:17 2080 +background.source.r42428.tar.xz 28-Feb-2019 02:17 8408 +background.source.tar.xz 28-Feb-2019 02:17 8408 +background.tar.xz 28-Feb-2019 02:17 2080 +backnaur.doc.r54080.tar.xz 04-Mar-2020 22:49 245228 +backnaur.doc.tar.xz 04-Mar-2020 22:49 245228 +backnaur.r54080.tar.xz 04-Mar-2020 22:49 1312 +backnaur.source.r54080.tar.xz 04-Mar-2020 22:49 6904 +backnaur.source.tar.xz 04-Mar-2020 22:49 6904 +backnaur.tar.xz 04-Mar-2020 22:49 1312 +baekmuk.doc.r56915.tar.xz 13-Nov-2020 00:55 1576 +baekmuk.doc.tar.xz 13-Nov-2020 00:55 1576 +baekmuk.r56915.tar.xz 13-Nov-2020 00:55 8688788 +baekmuk.tar.xz 13-Nov-2020 00:55 8688788 +bagpipe.doc.r34393.tar.xz 28-Feb-2019 02:17 201344 +bagpipe.doc.tar.xz 28-Feb-2019 02:17 201344 +bagpipe.r34393.tar.xz 28-Feb-2019 02:17 11240 +bagpipe.tar.xz 28-Feb-2019 02:17 11240 +bahaistar.doc.r76351.tar.xz 18-Sep-2025 23:44 71956 +bahaistar.doc.tar.xz 18-Sep-2025 23:44 71956 +bahaistar.r76351.tar.xz 18-Sep-2025 23:44 1736 +bahaistar.tar.xz 18-Sep-2025 23:44 1736 +bangla.doc.r65786.tar.xz 12-Feb-2023 00:53 61192 +bangla.doc.tar.xz 12-Feb-2023 00:53 61192 +bangla.r65786.tar.xz 12-Feb-2023 00:53 208900 +bangla.tar.xz 12-Feb-2023 00:53 208900 +bangorcsthesis.doc.r75154.tar.xz 08-May-2025 23:46 294984 +bangorcsthesis.doc.tar.xz 08-May-2025 23:46 294984 +bangorcsthesis.r75154.tar.xz 08-May-2025 23:46 52192 +bangorcsthesis.source.r75154.tar.xz 08-May-2025 23:46 55636 +bangorcsthesis.source.tar.xz 08-May-2025 23:46 55636 +bangorcsthesis.tar.xz 08-May-2025 23:46 52192 +bangorexam.doc.r65140.tar.xz 30-Nov-2022 00:53 292956 +bangorexam.doc.tar.xz 30-Nov-2022 00:53 292956 +bangorexam.r65140.tar.xz 30-Nov-2022 00:53 46816 +bangorexam.source.r65140.tar.xz 30-Nov-2022 00:53 51340 +bangorexam.source.tar.xz 30-Nov-2022 00:53 51340 +bangorexam.tar.xz 30-Nov-2022 00:53 46816 +bangtex.doc.r55475.tar.xz 07-Jun-2020 23:57 15640 +bangtex.doc.tar.xz 07-Jun-2020 23:57 15640 +bangtex.r55475.tar.xz 07-Jun-2020 23:57 35304 +bangtex.tar.xz 07-Jun-2020 23:57 35304 +bankstatement.doc.r75301.tar.xz 23-May-2025 23:46 128036 +bankstatement.doc.tar.xz 23-May-2025 23:46 128036 +bankstatement.r75301.tar.xz 23-May-2025 23:46 3416 +bankstatement.tar.xz 23-May-2025 23:46 3416 +barcodes.doc.r15878.tar.xz 28-Feb-2019 02:17 129364 +barcodes.doc.tar.xz 28-Feb-2019 02:17 129364 +barcodes.r15878.tar.xz 28-Feb-2019 02:17 6452 +barcodes.source.r15878.tar.xz 28-Feb-2019 02:17 21948 +barcodes.source.tar.xz 28-Feb-2019 02:17 21948 +barcodes.tar.xz 28-Feb-2019 02:17 6452 +bardiag.doc.r22013.tar.xz 28-Feb-2019 02:17 588832 +bardiag.doc.tar.xz 28-Feb-2019 02:17 588832 +bardiag.r22013.tar.xz 28-Feb-2019 02:17 12260 +bardiag.tar.xz 28-Feb-2019 02:17 12260 +barr.doc.r38479.tar.xz 28-Feb-2019 02:17 414908 +barr.doc.tar.xz 28-Feb-2019 02:17 414908 +barr.r38479.tar.xz 28-Feb-2019 02:17 8104 +barr.tar.xz 28-Feb-2019 02:17 8104 +barracuda.doc.r63708.tar.xz 23-Jun-2022 23:54 485324 +barracuda.doc.tar.xz 23-Jun-2022 23:54 485324 +barracuda.r63708.tar.xz 23-Jun-2022 23:54 35844 +barracuda.tar.xz 23-Jun-2022 23:54 35844 +bartel-chess-fonts.doc.r20619.tar.xz 28-Feb-2019 02:17 5492 +bartel-chess-fonts.doc.tar.xz 28-Feb-2019 02:17 5492 +bartel-chess-fonts.r20619.tar.xz 28-Feb-2019 02:17 17456 +bartel-chess-fonts.tar.xz 28-Feb-2019 02:17 17456 +bashful.doc.r25597.tar.xz 28-Feb-2019 02:17 570412 +bashful.doc.tar.xz 28-Feb-2019 02:17 570412 +bashful.r25597.tar.xz 28-Feb-2019 02:17 5292 +bashful.tar.xz 28-Feb-2019 02:17 5292 +basicarith.doc.r35460.tar.xz 28-Feb-2019 02:17 219292 +basicarith.doc.tar.xz 28-Feb-2019 02:17 219292 +basicarith.r35460.tar.xz 28-Feb-2019 02:17 2628 +basicarith.source.r35460.tar.xz 28-Feb-2019 02:17 10016 +basicarith.source.tar.xz 28-Feb-2019 02:17 10016 +basicarith.tar.xz 28-Feb-2019 02:17 2628 +baskervaldadf.doc.r72484.tar.xz 07-Oct-2024 23:49 1359224 +baskervaldadf.doc.tar.xz 07-Oct-2024 23:49 1359224 +baskervaldadf.r72484.tar.xz 07-Oct-2024 23:49 421520 +baskervaldadf.source.r72484.tar.xz 07-Oct-2024 23:49 20572 +baskervaldadf.source.tar.xz 07-Oct-2024 23:49 20572 +baskervaldadf.tar.xz 07-Oct-2024 23:49 421520 +baskervaldx.doc.r73362.tar.xz 08-Jan-2025 15:16 209748 +baskervaldx.doc.tar.xz 08-Jan-2025 15:16 209748 +baskervaldx.r73362.tar.xz 08-Jan-2025 15:16 680400 +baskervaldx.tar.xz 08-Jan-2025 15:16 680400 +baskervillef.doc.r73381.tar.xz 09-Jan-2025 00:49 205500 +baskervillef.doc.tar.xz 09-Jan-2025 00:49 205500 +baskervillef.r73381.tar.xz 09-Jan-2025 00:49 1060628 +baskervillef.tar.xz 09-Jan-2025 00:49 1060628 +basque-book.doc.r32924.tar.xz 28-Feb-2019 02:17 391648 +basque-book.doc.tar.xz 28-Feb-2019 02:17 391648 +basque-book.r32924.tar.xz 28-Feb-2019 02:17 6032 +basque-book.source.r32924.tar.xz 28-Feb-2019 02:17 10280 +basque-book.source.tar.xz 28-Feb-2019 02:17 10280 +basque-book.tar.xz 28-Feb-2019 02:17 6032 +basque-date.doc.r26477.tar.xz 28-Feb-2019 02:17 194976 +basque-date.doc.tar.xz 28-Feb-2019 02:17 194976 +basque-date.r26477.tar.xz 28-Feb-2019 02:17 1696 +basque-date.source.r26477.tar.xz 28-Feb-2019 02:17 3180 +basque-date.source.tar.xz 28-Feb-2019 02:17 3180 +basque-date.tar.xz 28-Feb-2019 02:17 1696 +bath-bst.doc.r74820.tar.xz 01-Apr-2025 23:52 952712 +bath-bst.doc.tar.xz 01-Apr-2025 23:52 952712 +bath-bst.r74820.tar.xz 01-Apr-2025 23:52 8696 +bath-bst.source.r74820.tar.xz 01-Apr-2025 23:52 39016 +bath-bst.source.tar.xz 01-Apr-2025 23:52 39016 +bath-bst.tar.xz 01-Apr-2025 23:52 8696 +bbcard.doc.r19440.tar.xz 28-Feb-2019 02:17 2200 +bbcard.doc.tar.xz 28-Feb-2019 02:17 2200 +bbcard.r19440.tar.xz 28-Feb-2019 02:17 6828 +bbcard.tar.xz 28-Feb-2019 02:17 6828 +bbding.doc.r17186.tar.xz 28-Feb-2019 02:17 437588 +bbding.doc.tar.xz 28-Feb-2019 02:17 437588 +bbding.r17186.tar.xz 28-Feb-2019 02:17 11688 +bbding.source.r17186.tar.xz 28-Feb-2019 02:17 10152 +bbding.source.tar.xz 28-Feb-2019 02:17 10152 +bbding.tar.xz 28-Feb-2019 02:17 11688 +bbm-macros.doc.r17224.tar.xz 28-Feb-2019 02:17 301276 +bbm-macros.doc.tar.xz 28-Feb-2019 02:17 301276 +bbm-macros.r17224.tar.xz 28-Feb-2019 02:17 1708 +bbm-macros.source.r17224.tar.xz 28-Feb-2019 02:17 3916 +bbm-macros.source.tar.xz 28-Feb-2019 02:17 3916 +bbm-macros.tar.xz 28-Feb-2019 02:17 1708 +bbm.doc.r15878.tar.xz 28-Feb-2019 02:17 2288 +bbm.doc.tar.xz 28-Feb-2019 02:17 2288 +bbm.r15878.tar.xz 28-Feb-2019 02:17 32616 +bbm.tar.xz 28-Feb-2019 02:17 32616 +bbold-type1.doc.r33143.tar.xz 28-Feb-2019 02:17 39920 +bbold-type1.doc.tar.xz 28-Feb-2019 02:17 39920 +bbold-type1.r33143.tar.xz 28-Feb-2019 02:17 70004 +bbold-type1.tar.xz 28-Feb-2019 02:17 70004 +bbold.doc.r17187.tar.xz 28-Feb-2019 02:17 153072 +bbold.doc.tar.xz 28-Feb-2019 02:17 153072 +bbold.r17187.tar.xz 28-Feb-2019 02:17 15768 +bbold.source.r17187.tar.xz 28-Feb-2019 02:17 4596 +bbold.source.tar.xz 28-Feb-2019 02:17 4596 +bbold.tar.xz 28-Feb-2019 02:17 15768 +bboldx.doc.r65424.tar.xz 02-Jan-2023 00:56 180492 +bboldx.doc.tar.xz 02-Jan-2023 00:56 180492 +bboldx.r65424.tar.xz 02-Jan-2023 00:56 71048 +bboldx.tar.xz 02-Jan-2023 00:56 71048 +bchart.doc.r43928.tar.xz 28-Feb-2019 02:17 148224 +bchart.doc.tar.xz 28-Feb-2019 02:17 148224 +bchart.r43928.tar.xz 28-Feb-2019 02:17 1868 +bchart.tar.xz 28-Feb-2019 02:17 1868 +bclogo.doc.r69578.tar.xz 25-Jan-2024 00:45 675812 +bclogo.doc.tar.xz 25-Jan-2024 00:45 675812 +bclogo.r69578.tar.xz 25-Jan-2024 00:45 239432 +bclogo.tar.xz 25-Jan-2024 00:45 239432 +beamer-fuberlin.doc.r63161.tar.xz 27-Apr-2022 23:51 367212 +beamer-fuberlin.doc.tar.xz 27-Apr-2022 23:51 367212 +beamer-fuberlin.r63161.tar.xz 27-Apr-2022 23:51 3168 +beamer-fuberlin.tar.xz 27-Apr-2022 23:51 3168 +beamer-rl.doc.r69254.tar.xz 01-Jan-2024 00:46 233384 +beamer-rl.doc.tar.xz 01-Jan-2024 00:46 233384 +beamer-rl.r69254.tar.xz 01-Jan-2024 00:46 8796 +beamer-rl.tar.xz 01-Jan-2024 00:46 8796 +beamer-theme-albi.doc.r74899.tar.xz 09-Apr-2025 23:49 384112 +beamer-theme-albi.doc.tar.xz 09-Apr-2025 23:49 384112 +beamer-theme-albi.r74899.tar.xz 09-Apr-2025 23:49 6692 +beamer-theme-albi.tar.xz 09-Apr-2025 23:49 6692 +beamer-tut-pt.doc.r15878.tar.xz 28-Feb-2019 02:17 919784 +beamer-tut-pt.doc.tar.xz 28-Feb-2019 02:17 919784 +beamer-tut-pt.r15878.tar.xz 28-Feb-2019 02:17 372 +beamer-tut-pt.tar.xz 28-Feb-2019 02:17 372 +beamer-varbox.doc.r76296.tar.xz 12-Sep-2025 23:45 186352 +beamer-varbox.doc.tar.xz 12-Sep-2025 23:45 186352 +beamer-varbox.r76296.tar.xz 12-Sep-2025 23:45 3084 +beamer-varbox.source.r76296.tar.xz 12-Sep-2025 23:45 3960 +beamer-varbox.source.tar.xz 12-Sep-2025 23:45 3960 +beamer-varbox.tar.xz 12-Sep-2025 23:45 3084 +beamer-verona.doc.r39180.tar.xz 28-Feb-2019 02:17 618140 +beamer-verona.doc.tar.xz 28-Feb-2019 02:17 618140 +beamer-verona.r39180.tar.xz 28-Feb-2019 02:17 3988 +beamer-verona.tar.xz 28-Feb-2019 02:17 3988 +beamer.doc.r76057.tar.xz 14-Aug-2025 23:50 2490988 +beamer.doc.tar.xz 14-Aug-2025 23:50 2490988 +beamer.r76057.tar.xz 14-Aug-2025 23:50 168216 +beamer.tar.xz 14-Aug-2025 23:50 168216 +beamer2thesis.doc.r72949.tar.xz 24-Nov-2024 01:03 296660 +beamer2thesis.doc.tar.xz 24-Nov-2024 01:03 296660 +beamer2thesis.r72949.tar.xz 24-Nov-2024 01:03 292020 +beamer2thesis.tar.xz 24-Nov-2024 01:03 292020 +beamerappendixnote.doc.r55732.tar.xz 02-Jul-2020 23:55 70428 +beamerappendixnote.doc.tar.xz 02-Jul-2020 23:55 70428 +beamerappendixnote.r55732.tar.xz 02-Jul-2020 23:55 1556 +beamerappendixnote.source.r55732.tar.xz 02-Jul-2020 23:55 3336 +beamerappendixnote.source.tar.xz 02-Jul-2020 23:55 3336 +beamerappendixnote.tar.xz 02-Jul-2020 23:55 1556 +beameraudience.doc.r23427.tar.xz 28-Feb-2019 02:17 1144 +beameraudience.doc.tar.xz 28-Feb-2019 02:17 1144 +beameraudience.r23427.tar.xz 28-Feb-2019 02:17 1364 +beameraudience.tar.xz 28-Feb-2019 02:17 1364 +beamerauxtheme.doc.r56087.tar.xz 10-Aug-2020 23:56 187988 +beamerauxtheme.doc.tar.xz 10-Aug-2020 23:56 187988 +beamerauxtheme.r56087.tar.xz 10-Aug-2020 23:56 3312 +beamerauxtheme.tar.xz 10-Aug-2020 23:56 3312 +beamercolorthemeowl.doc.r40105.tar.xz 28-Feb-2019 02:17 558476 +beamercolorthemeowl.doc.tar.xz 28-Feb-2019 02:17 558476 +beamercolorthemeowl.r40105.tar.xz 28-Feb-2019 02:17 1904 +beamercolorthemeowl.source.r40105.tar.xz 28-Feb-2019 02:17 5756 +beamercolorthemeowl.source.tar.xz 28-Feb-2019 02:17 5756 +beamercolorthemeowl.tar.xz 28-Feb-2019 02:17 1904 +beamerdarkthemes.doc.r55117.tar.xz 12-May-2020 01:57 1885368 +beamerdarkthemes.doc.tar.xz 12-May-2020 01:57 1885368 +beamerdarkthemes.r55117.tar.xz 12-May-2020 01:57 1828 +beamerdarkthemes.tar.xz 12-May-2020 01:57 1828 +beamerposter.doc.r54512.tar.xz 24-Mar-2020 00:56 77044 +beamerposter.doc.tar.xz 24-Mar-2020 00:56 77044 +beamerposter.r54512.tar.xz 24-Mar-2020 00:56 7456 +beamerposter.tar.xz 24-Mar-2020 00:56 7456 +beamersubframe.doc.r23510.tar.xz 28-Feb-2019 02:17 375856 +beamersubframe.doc.tar.xz 28-Feb-2019 02:17 375856 +beamersubframe.r23510.tar.xz 28-Feb-2019 02:17 3864 +beamersubframe.source.r23510.tar.xz 28-Feb-2019 02:17 19496 +beamersubframe.source.tar.xz 28-Feb-2019 02:17 19496 +beamersubframe.tar.xz 28-Feb-2019 02:17 3864 +beamerswitch.doc.r64182.tar.xz 23-Aug-2022 23:54 264708 +beamerswitch.doc.tar.xz 23-Aug-2022 23:54 264708 +beamerswitch.r64182.tar.xz 23-Aug-2022 23:54 4936 +beamerswitch.source.r64182.tar.xz 23-Aug-2022 23:54 20600 +beamerswitch.source.tar.xz 23-Aug-2022 23:54 20600 +beamerswitch.tar.xz 23-Aug-2022 23:54 4936 +beamertheme-arguelles.doc.r76359.tar.xz 19-Sep-2025 23:47 2206732 +beamertheme-arguelles.doc.tar.xz 19-Sep-2025 23:47 2206732 +beamertheme-arguelles.r76359.tar.xz 19-Sep-2025 23:47 3312 +beamertheme-arguelles.tar.xz 19-Sep-2025 23:47 3312 +beamertheme-cleaneasy.doc.r74971.tar.xz 17-Apr-2025 23:50 370240 +beamertheme-cleaneasy.doc.tar.xz 17-Apr-2025 23:50 370240 +beamertheme-cleaneasy.r74971.tar.xz 17-Apr-2025 23:50 22288 +beamertheme-cleaneasy.tar.xz 17-Apr-2025 23:50 22288 +beamertheme-cuerna.doc.r42161.tar.xz 28-Feb-2019 02:17 332524 +beamertheme-cuerna.doc.tar.xz 28-Feb-2019 02:17 332524 +beamertheme-cuerna.r42161.tar.xz 28-Feb-2019 02:17 2492 +beamertheme-cuerna.source.r42161.tar.xz 28-Feb-2019 02:17 4008 +beamertheme-cuerna.source.tar.xz 28-Feb-2019 02:17 4008 +beamertheme-cuerna.tar.xz 28-Feb-2019 02:17 2492 +beamertheme-detlevcm.doc.r39048.tar.xz 28-Feb-2019 02:17 1517564 +beamertheme-detlevcm.doc.tar.xz 28-Feb-2019 02:17 1517564 +beamertheme-detlevcm.r39048.tar.xz 28-Feb-2019 02:17 3064 +beamertheme-detlevcm.tar.xz 28-Feb-2019 02:17 3064 +beamertheme-epyt.doc.r41404.tar.xz 28-Feb-2019 02:17 164664 +beamertheme-epyt.doc.tar.xz 28-Feb-2019 02:17 164664 +beamertheme-epyt.r41404.tar.xz 28-Feb-2019 02:17 3560 +beamertheme-epyt.tar.xz 28-Feb-2019 02:17 3560 +beamertheme-focus.doc.r69742.tar.xz 08-Feb-2024 00:46 247256 +beamertheme-focus.doc.tar.xz 08-Feb-2024 00:46 247256 +beamertheme-focus.r69742.tar.xz 08-Feb-2024 00:46 4652 +beamertheme-focus.tar.xz 08-Feb-2024 00:46 4652 +beamertheme-gotham.doc.r73931.tar.xz 13-Feb-2025 00:47 2378396 +beamertheme-gotham.doc.tar.xz 13-Feb-2025 00:47 2378396 +beamertheme-gotham.r73931.tar.xz 13-Feb-2025 00:47 20328 +beamertheme-gotham.source.r73931.tar.xz 13-Feb-2025 00:47 41204 +beamertheme-gotham.source.tar.xz 13-Feb-2025 00:47 41204 +beamertheme-gotham.tar.xz 13-Feb-2025 00:47 20328 +beamertheme-light.doc.r73158.tar.xz 19-Dec-2024 00:50 51800 +beamertheme-light.doc.tar.xz 19-Dec-2024 00:50 51800 +beamertheme-light.r73158.tar.xz 19-Dec-2024 00:50 2080 +beamertheme-light.tar.xz 19-Dec-2024 00:50 2080 +beamertheme-metropolis.doc.r43031.tar.xz 28-Feb-2019 02:17 178716 +beamertheme-metropolis.doc.tar.xz 28-Feb-2019 02:17 178716 +beamertheme-metropolis.r43031.tar.xz 28-Feb-2019 02:17 6572 +beamertheme-metropolis.source.r43031.tar.xz 28-Feb-2019 02:17 18424 +beamertheme-metropolis.source.tar.xz 28-Feb-2019 02:17 18424 +beamertheme-metropolis.tar.xz 28-Feb-2019 02:17 6572 +beamertheme-mirage.doc.r73516.tar.xz 20-Jan-2025 00:47 793656 +beamertheme-mirage.doc.tar.xz 20-Jan-2025 00:47 793656 +beamertheme-mirage.r73516.tar.xz 20-Jan-2025 00:47 2428 +beamertheme-mirage.tar.xz 20-Jan-2025 00:47 2428 +beamertheme-npbt.doc.r54512.tar.xz 24-Mar-2020 00:56 418012 +beamertheme-npbt.doc.tar.xz 24-Mar-2020 00:56 418012 +beamertheme-npbt.r54512.tar.xz 24-Mar-2020 00:56 1457176 +beamertheme-npbt.tar.xz 24-Mar-2020 00:56 1457176 +beamertheme-phnompenh.doc.r39100.tar.xz 28-Feb-2019 02:17 57496 +beamertheme-phnompenh.doc.tar.xz 28-Feb-2019 02:17 57496 +beamertheme-phnompenh.r39100.tar.xz 28-Feb-2019 02:17 784 +beamertheme-phnompenh.tar.xz 28-Feb-2019 02:17 784 +beamertheme-pure-minimalistic.doc.r56934.tar.xz 15-Nov-2020 00:56 365176 +beamertheme-pure-minimalistic.doc.tar.xz 15-Nov-2020 00:56 365176 +beamertheme-pure-minimalistic.r56934.tar.xz 15-Nov-2020 00:56 4256 +beamertheme-pure-minimalistic.tar.xz 15-Nov-2020 00:56 4256 +beamertheme-rainbow.doc.r72864.tar.xz 16-Nov-2024 00:46 164276 +beamertheme-rainbow.doc.tar.xz 16-Nov-2024 00:46 164276 +beamertheme-rainbow.r72864.tar.xz 16-Nov-2024 00:46 1328 +beamertheme-rainbow.tar.xz 16-Nov-2024 00:46 1328 +beamertheme-saintpetersburg.doc.r45877.tar.xz 28-Feb-2019 02:17 243188 +beamertheme-saintpetersburg.doc.tar.xz 28-Feb-2019 02:17 243188 +beamertheme-saintpetersburg.r45877.tar.xz 28-Feb-2019 02:17 3552 +beamertheme-saintpetersburg.source.r45877.tar.xz 28-Feb-2019 02:17 6008 +beamertheme-saintpetersburg.source.tar.xz 28-Feb-2019 02:17 6008 +beamertheme-saintpetersburg.tar.xz 28-Feb-2019 02:17 3552 +beamertheme-simpledarkblue.doc.r73454.tar.xz 15-Jan-2025 00:45 119204 +beamertheme-simpledarkblue.doc.tar.xz 15-Jan-2025 00:45 119204 +beamertheme-simpledarkblue.r73454.tar.xz 15-Jan-2025 00:45 2000 +beamertheme-simpledarkblue.tar.xz 15-Jan-2025 00:45 2000 +beamertheme-simpleplus.doc.r73362.tar.xz 08-Jan-2025 15:16 108844 +beamertheme-simpleplus.doc.tar.xz 08-Jan-2025 15:16 108844 +beamertheme-simpleplus.r73362.tar.xz 08-Jan-2025 15:16 1940 +beamertheme-simpleplus.tar.xz 08-Jan-2025 15:16 1940 +beamertheme-spectrum.doc.r75761.tar.xz 12-Jul-2025 23:59 309632 +beamertheme-spectrum.doc.tar.xz 12-Jul-2025 23:59 309632 +beamertheme-spectrum.r75761.tar.xz 12-Jul-2025 23:59 4824 +beamertheme-spectrum.tar.xz 12-Jul-2025 23:59 4824 +beamertheme-tcolorbox.doc.r75760.tar.xz 12-Jul-2025 23:59 224756 +beamertheme-tcolorbox.doc.tar.xz 12-Jul-2025 23:59 224756 +beamertheme-tcolorbox.r75760.tar.xz 12-Jul-2025 23:59 3824 +beamertheme-tcolorbox.tar.xz 12-Jul-2025 23:59 3824 +beamertheme-trigon.doc.r65985.tar.xz 20-Feb-2023 22:08 585252 +beamertheme-trigon.doc.tar.xz 20-Feb-2023 22:08 585252 +beamertheme-trigon.r65985.tar.xz 20-Feb-2023 22:08 6096 +beamertheme-trigon.source.r65985.tar.xz 20-Feb-2023 22:08 15168 +beamertheme-trigon.source.tar.xz 20-Feb-2023 22:08 15168 +beamertheme-trigon.tar.xz 20-Feb-2023 22:08 6096 +beamertheme-upenn-bc.doc.r29937.tar.xz 28-Feb-2019 02:17 340140 +beamertheme-upenn-bc.doc.tar.xz 28-Feb-2019 02:17 340140 +beamertheme-upenn-bc.r29937.tar.xz 28-Feb-2019 02:17 1660 +beamertheme-upenn-bc.tar.xz 28-Feb-2019 02:17 1660 +beamerthemeamurmaple.doc.r69742.tar.xz 08-Feb-2024 00:46 866624 +beamerthemeamurmaple.doc.tar.xz 08-Feb-2024 00:46 866624 +beamerthemeamurmaple.r69742.tar.xz 08-Feb-2024 00:46 6344 +beamerthemeamurmaple.tar.xz 08-Feb-2024 00:46 6344 +beamerthemecelestia.doc.r76306.tar.xz 13-Sep-2025 23:54 566276 +beamerthemecelestia.doc.tar.xz 13-Sep-2025 23:54 566276 +beamerthemecelestia.r76306.tar.xz 13-Sep-2025 23:54 10272 +beamerthemecelestia.tar.xz 13-Sep-2025 23:54 10272 +beamerthemeconcrete.doc.r69528.tar.xz 22-Jan-2024 00:45 687864 +beamerthemeconcrete.doc.tar.xz 22-Jan-2024 00:45 687864 +beamerthemeconcrete.r69528.tar.xz 22-Jan-2024 00:45 14884 +beamerthemeconcrete.tar.xz 22-Jan-2024 00:45 14884 +beamerthemejltree.r21977.tar.xz 28-Feb-2019 02:17 1500 +beamerthemejltree.tar.xz 28-Feb-2019 02:17 1500 +beamerthemelalic.doc.r58777.tar.xz 06-Apr-2021 23:50 224372 +beamerthemelalic.doc.tar.xz 06-Apr-2021 23:50 224372 +beamerthemelalic.r58777.tar.xz 06-Apr-2021 23:50 2924 +beamerthemelalic.tar.xz 06-Apr-2021 23:50 2924 +beamerthemenirma.doc.r20765.tar.xz 28-Feb-2019 02:17 404 +beamerthemenirma.doc.tar.xz 28-Feb-2019 02:17 404 +beamerthemenirma.r20765.tar.xz 28-Feb-2019 02:17 2704 +beamerthemenirma.tar.xz 28-Feb-2019 02:17 2704 +beamerthemenord.doc.r56180.tar.xz 26-Aug-2020 00:01 2209744 +beamerthemenord.doc.tar.xz 26-Aug-2020 00:01 2209744 +beamerthemenord.r56180.tar.xz 26-Aug-2020 00:01 2792 +beamerthemenord.tar.xz 26-Aug-2020 00:01 2792 +beamertools.doc.r73371.tar.xz 09-Jan-2025 00:49 186492 +beamertools.doc.tar.xz 09-Jan-2025 00:49 186492 +beamertools.r73371.tar.xz 09-Jan-2025 00:49 1808 +beamertools.source.r73371.tar.xz 09-Jan-2025 00:49 3860 +beamertools.source.tar.xz 09-Jan-2025 00:49 3860 +beamertools.tar.xz 09-Jan-2025 00:49 1808 +bearwear.doc.r54826.tar.xz 21-Apr-2020 23:53 787504 +bearwear.doc.tar.xz 21-Apr-2020 23:53 787504 +bearwear.r54826.tar.xz 21-Apr-2020 23:53 2376 +bearwear.source.r54826.tar.xz 21-Apr-2020 23:53 5992 +bearwear.source.tar.xz 21-Apr-2020 23:53 5992 +bearwear.tar.xz 21-Apr-2020 23:53 2376 +beaulivre.doc.r70049.tar.xz 22-Feb-2024 00:45 8564 +beaulivre.doc.tar.xz 22-Feb-2024 00:45 8564 +beaulivre.r70049.tar.xz 22-Feb-2024 00:45 5236 +beaulivre.tar.xz 22-Feb-2024 00:45 5236 +beautybook.doc.r71693.tar.xz 03-Jul-2024 23:47 52185048 +beautybook.doc.tar.xz 03-Jul-2024 23:47 52185048 +beautybook.r71693.tar.xz 03-Jul-2024 23:48 15256 +beautybook.tar.xz 03-Jul-2024 23:48 15256 +beautynote.doc.r70155.tar.xz 26-Feb-2024 00:46 858696 +beautynote.doc.tar.xz 26-Feb-2024 00:46 858696 +beautynote.r70155.tar.xz 26-Feb-2024 00:46 5132 +beautynote.tar.xz 26-Feb-2024 00:46 5132 +beebe.r76415.tar.xz 26-Sep-2025 23:46 939700 +beebe.tar.xz 26-Sep-2025 23:46 939700 +begingreek.doc.r63255.tar.xz 07-May-2022 23:54 785552 +begingreek.doc.tar.xz 07-May-2022 23:54 785552 +begingreek.r63255.tar.xz 07-May-2022 23:54 1808 +begingreek.source.r63255.tar.xz 07-May-2022 23:54 7856 +begingreek.source.tar.xz 07-May-2022 23:54 7856 +begingreek.tar.xz 07-May-2022 23:54 1808 +begriff.doc.r15878.tar.xz 28-Feb-2019 02:17 40204 +begriff.doc.tar.xz 28-Feb-2019 02:17 40204 +begriff.r15878.tar.xz 28-Feb-2019 02:17 2468 +begriff.tar.xz 28-Feb-2019 02:17 2468 +beilstein.doc.r56193.tar.xz 27-Aug-2020 23:56 666912 +beilstein.doc.tar.xz 27-Aug-2020 23:56 666912 +beilstein.r56193.tar.xz 27-Aug-2020 23:56 13304 +beilstein.source.r56193.tar.xz 27-Aug-2020 23:56 76016 +beilstein.source.tar.xz 27-Aug-2020 23:56 76016 +beilstein.tar.xz 27-Aug-2020 23:56 13304 +belleek.doc.r66115.tar.xz 24-Feb-2023 00:57 720 +belleek.doc.tar.xz 24-Feb-2023 00:57 720 +belleek.r66115.tar.xz 24-Feb-2023 00:57 83256 +belleek.source.r66115.tar.xz 24-Feb-2023 00:57 596 +belleek.source.tar.xz 24-Feb-2023 00:57 596 +belleek.tar.xz 24-Feb-2023 00:57 83256 +bengali.doc.r55475.tar.xz 07-Jun-2020 23:57 76020 +bengali.doc.tar.xz 07-Jun-2020 23:57 76020 +bengali.r55475.tar.xz 07-Jun-2020 23:57 17056 +bengali.source.r55475.tar.xz 07-Jun-2020 23:57 8944 +bengali.source.tar.xz 07-Jun-2020 23:57 8944 +bengali.tar.xz 07-Jun-2020 23:57 17056 +bera.doc.r20031.tar.xz 28-Feb-2019 02:17 18556 +bera.doc.tar.xz 28-Feb-2019 02:17 18556 +bera.r20031.tar.xz 28-Feb-2019 02:17 312612 +bera.tar.xz 28-Feb-2019 02:17 312612 +berenisadf.doc.r72484.tar.xz 07-Oct-2024 23:49 2296956 +berenisadf.doc.tar.xz 07-Oct-2024 23:49 2296956 +berenisadf.r72484.tar.xz 07-Oct-2024 23:49 1770448 +berenisadf.source.r72484.tar.xz 07-Oct-2024 23:49 37164 +berenisadf.source.tar.xz 07-Oct-2024 23:49 37164 +berenisadf.tar.xz 07-Oct-2024 23:49 1770448 +besjournals.doc.r45662.tar.xz 28-Feb-2019 02:18 8264 +besjournals.doc.tar.xz 28-Feb-2019 02:18 8264 +besjournals.r45662.tar.xz 28-Feb-2019 02:18 8920 +besjournals.tar.xz 28-Feb-2019 02:18 8920 +bestpapers.doc.r38708.tar.xz 28-Feb-2019 02:18 176932 +bestpapers.doc.tar.xz 28-Feb-2019 02:18 176932 +bestpapers.r38708.tar.xz 28-Feb-2019 02:18 7456 +bestpapers.tar.xz 28-Feb-2019 02:18 7456 +betababel.doc.r15878.tar.xz 28-Feb-2019 02:18 151916 +betababel.doc.tar.xz 28-Feb-2019 02:18 151916 +betababel.r15878.tar.xz 28-Feb-2019 02:18 3344 +betababel.tar.xz 28-Feb-2019 02:18 3344 +beton.doc.r15878.tar.xz 28-Feb-2019 02:18 59196 +beton.doc.tar.xz 28-Feb-2019 02:18 59196 +beton.r15878.tar.xz 28-Feb-2019 02:18 1772 +beton.source.r15878.tar.xz 28-Feb-2019 02:18 5796 +beton.source.tar.xz 28-Feb-2019 02:18 5796 +beton.tar.xz 28-Feb-2019 02:18 1772 +beuron.doc.r46374.tar.xz 28-Feb-2019 02:18 216700 +beuron.doc.tar.xz 28-Feb-2019 02:18 216700 +beuron.r46374.tar.xz 28-Feb-2019 02:18 50972 +beuron.tar.xz 28-Feb-2019 02:18 50972 +bewerbung.doc.r61632.tar.xz 18-Jan-2022 01:05 818960 +bewerbung.doc.tar.xz 18-Jan-2022 01:05 818960 +bewerbung.r61632.tar.xz 18-Jan-2022 01:05 9908 +bewerbung.source.r61632.tar.xz 18-Jan-2022 01:05 25552 +bewerbung.source.tar.xz 18-Jan-2022 01:05 25552 +bewerbung.tar.xz 18-Jan-2022 01:05 9908 +bez123.doc.r15878.tar.xz 28-Feb-2019 02:18 256740 +bez123.doc.tar.xz 28-Feb-2019 02:18 256740 +bez123.r15878.tar.xz 28-Feb-2019 02:18 2644 +bez123.source.r15878.tar.xz 28-Feb-2019 02:18 14300 +bez123.source.tar.xz 28-Feb-2019 02:18 14300 +bez123.tar.xz 28-Feb-2019 02:18 2644 +bezierplot.doc.r72750.tar.xz 03-Nov-2024 01:00 270972 +bezierplot.doc.tar.xz 03-Nov-2024 01:00 270972 +bezierplot.r72750.tar.xz 03-Nov-2024 01:00 8104 +bezierplot.tar.xz 03-Nov-2024 01:00 8104 +bfh-ci.doc.r74814.tar.xz 01-Apr-2025 23:52 239016 +bfh-ci.doc.tar.xz 01-Apr-2025 23:52 239016 +bfh-ci.r74814.tar.xz 01-Apr-2025 23:52 25800 +bfh-ci.tar.xz 01-Apr-2025 23:52 25800 +bgteubner.doc.r54080.tar.xz 04-Mar-2020 22:49 2484192 +bgteubner.doc.tar.xz 04-Mar-2020 22:49 2484192 +bgteubner.r54080.tar.xz 04-Mar-2020 22:49 28948 +bgteubner.source.r54080.tar.xz 04-Mar-2020 22:49 74256 +bgteubner.source.tar.xz 04-Mar-2020 22:49 74256 +bgteubner.tar.xz 04-Mar-2020 22:49 28948 +bguq.doc.r27401.tar.xz 28-Feb-2019 02:18 118616 +bguq.doc.tar.xz 28-Feb-2019 02:18 118616 +bguq.r27401.tar.xz 28-Feb-2019 02:18 14868 +bguq.source.r27401.tar.xz 28-Feb-2019 02:18 2968 +bguq.source.tar.xz 28-Feb-2019 02:18 2968 +bguq.tar.xz 28-Feb-2019 02:18 14868 +bhcexam.doc.r72638.tar.xz 23-Oct-2024 23:48 334616 +bhcexam.doc.tar.xz 23-Oct-2024 23:48 334616 +bhcexam.r72638.tar.xz 23-Oct-2024 23:48 3556 +bhcexam.tar.xz 23-Oct-2024 23:48 3556 +bib-fr.doc.r15878.tar.xz 28-Feb-2019 02:18 952 +bib-fr.doc.tar.xz 28-Feb-2019 02:18 952 +bib-fr.r15878.tar.xz 28-Feb-2019 02:18 13440 +bib-fr.tar.xz 28-Feb-2019 02:18 13440 +bib2gls.aarch64-linux.r73132.tar.xz 16-Dec-2024 00:49 404 +bib2gls.aarch64-linux.tar.xz 16-Dec-2024 00:49 404 +bib2gls.amd64-freebsd.r73132.tar.xz 16-Dec-2024 00:49 404 +bib2gls.amd64-freebsd.tar.xz 16-Dec-2024 00:49 404 +bib2gls.amd64-netbsd.r73132.tar.xz 16-Dec-2024 00:49 404 +bib2gls.amd64-netbsd.tar.xz 16-Dec-2024 00:49 404 +bib2gls.armhf-linux.r73132.tar.xz 16-Dec-2024 00:49 400 +bib2gls.armhf-linux.tar.xz 16-Dec-2024 00:49 400 +bib2gls.doc.r75903.tar.xz 27-Jul-2025 23:51 5866920 +bib2gls.doc.tar.xz 27-Jul-2025 23:51 5866920 +bib2gls.i386-freebsd.r73132.tar.xz 16-Dec-2024 00:49 404 +bib2gls.i386-freebsd.tar.xz 16-Dec-2024 00:49 404 +bib2gls.i386-linux.r73132.tar.xz 16-Dec-2024 00:49 400 +bib2gls.i386-linux.tar.xz 16-Dec-2024 00:49 400 +bib2gls.i386-netbsd.r73132.tar.xz 16-Dec-2024 00:49 400 +bib2gls.i386-netbsd.tar.xz 16-Dec-2024 00:49 400 +bib2gls.i386-solaris.r73132.tar.xz 16-Dec-2024 00:49 400 +bib2gls.i386-solaris.tar.xz 16-Dec-2024 00:49 400 +bib2gls.r75903.tar.xz 27-Jul-2025 23:51 2284300 +bib2gls.source.r75903.tar.xz 27-Jul-2025 23:51 2067780 +bib2gls.source.tar.xz 27-Jul-2025 23:51 2067780 +bib2gls.tar.xz 27-Jul-2025 23:51 2284300 +bib2gls.universal-darwin.r73132.tar.xz 16-Dec-2024 00:49 408 +bib2gls.universal-darwin.tar.xz 16-Dec-2024 00:49 408 +bib2gls.windows.r73151.tar.xz 18-Dec-2024 00:48 2408 +bib2gls.windows.tar.xz 18-Dec-2024 00:48 2408 +bib2gls.x86_64-cygwin.r73132.tar.xz 16-Dec-2024 00:49 404 +bib2gls.x86_64-cygwin.tar.xz 16-Dec-2024 00:49 404 +bib2gls.x86_64-darwinlegacy.r73132.tar.xz 16-Dec-2024 00:49 412 +bib2gls.x86_64-darwinlegacy.tar.xz 16-Dec-2024 00:49 412 +bib2gls.x86_64-linux.r73132.tar.xz 16-Dec-2024 00:49 404 +bib2gls.x86_64-linux.tar.xz 16-Dec-2024 00:49 404 +bib2gls.x86_64-linuxmusl.r73132.tar.xz 16-Dec-2024 00:49 412 +bib2gls.x86_64-linuxmusl.tar.xz 16-Dec-2024 00:49 412 +bib2gls.x86_64-solaris.r73132.tar.xz 16-Dec-2024 00:49 404 +bib2gls.x86_64-solaris.tar.xz 16-Dec-2024 00:49 404 +bib2qr.doc.r71940.tar.xz 31-Jul-2024 23:46 494044 +bib2qr.doc.tar.xz 31-Jul-2024 23:46 494044 +bib2qr.r71940.tar.xz 31-Jul-2024 23:46 1692 +bib2qr.source.r71940.tar.xz 31-Jul-2024 23:46 6856 +bib2qr.source.tar.xz 31-Jul-2024 23:46 6856 +bib2qr.tar.xz 31-Jul-2024 23:46 1692 +bibarts.doc.r74384.tar.xz 02-Mar-2025 01:09 1174640 +bibarts.doc.tar.xz 02-Mar-2025 01:09 1174640 +bibarts.r74384.tar.xz 02-Mar-2025 01:09 31740 +bibarts.source.r74384.tar.xz 02-Mar-2025 01:09 49464 +bibarts.source.tar.xz 02-Mar-2025 01:09 49464 +bibarts.tar.xz 02-Mar-2025 01:09 31740 +bibbreeze.doc.r74800.tar.xz 31-Mar-2025 23:52 3172 +bibbreeze.doc.tar.xz 31-Mar-2025 23:52 3172 +bibbreeze.r74800.tar.xz 31-Mar-2025 23:52 6356 +bibbreeze.tar.xz 31-Mar-2025 23:52 6356 +bibcop.aarch64-linux.r65257.tar.xz 13-Dec-2022 00:54 340 +bibcop.aarch64-linux.tar.xz 13-Dec-2022 00:54 340 +bibcop.amd64-freebsd.r65257.tar.xz 13-Dec-2022 00:54 340 +bibcop.amd64-freebsd.tar.xz 13-Dec-2022 00:54 340 +bibcop.amd64-netbsd.r65257.tar.xz 13-Dec-2022 00:54 340 +bibcop.amd64-netbsd.tar.xz 13-Dec-2022 00:54 340 +bibcop.armhf-linux.r65257.tar.xz 13-Dec-2022 00:54 340 +bibcop.armhf-linux.tar.xz 13-Dec-2022 00:54 340 +bibcop.doc.r75042.tar.xz 28-Apr-2025 23:49 266252 +bibcop.doc.tar.xz 28-Apr-2025 23:49 266252 +bibcop.i386-freebsd.r65257.tar.xz 13-Dec-2022 00:54 340 +bibcop.i386-freebsd.tar.xz 13-Dec-2022 00:54 340 +bibcop.i386-linux.r65257.tar.xz 13-Dec-2022 00:54 340 +bibcop.i386-linux.tar.xz 13-Dec-2022 00:54 340 +bibcop.i386-netbsd.r65257.tar.xz 13-Dec-2022 00:54 340 +bibcop.i386-netbsd.tar.xz 13-Dec-2022 00:54 340 +bibcop.i386-solaris.r65257.tar.xz 13-Dec-2022 00:54 340 +bibcop.i386-solaris.tar.xz 13-Dec-2022 00:54 340 +bibcop.r75042.tar.xz 28-Apr-2025 23:49 9520 +bibcop.source.r75042.tar.xz 28-Apr-2025 23:49 6132 +bibcop.source.tar.xz 28-Apr-2025 23:49 6132 +bibcop.tar.xz 28-Apr-2025 23:49 9520 +bibcop.universal-darwin.r65257.tar.xz 13-Dec-2022 00:54 340 +bibcop.universal-darwin.tar.xz 13-Dec-2022 00:54 340 +bibcop.windows.r65891.tar.xz 20-Feb-2023 22:08 2304 +bibcop.windows.tar.xz 20-Feb-2023 22:08 2304 +bibcop.x86_64-cygwin.r65257.tar.xz 13-Dec-2022 00:54 340 +bibcop.x86_64-cygwin.tar.xz 13-Dec-2022 00:54 340 +bibcop.x86_64-darwinlegacy.r65257.tar.xz 13-Dec-2022 00:54 348 +bibcop.x86_64-darwinlegacy.tar.xz 13-Dec-2022 00:54 348 +bibcop.x86_64-linux.r65257.tar.xz 13-Dec-2022 00:54 340 +bibcop.x86_64-linux.tar.xz 13-Dec-2022 00:54 340 +bibcop.x86_64-linuxmusl.r65257.tar.xz 13-Dec-2022 00:54 344 +bibcop.x86_64-linuxmusl.tar.xz 13-Dec-2022 00:54 344 +bibcop.x86_64-solaris.r65257.tar.xz 13-Dec-2022 00:54 336 +bibcop.x86_64-solaris.tar.xz 13-Dec-2022 00:54 336 +biber-ms.doc.r66478.tar.xz 09-Mar-2023 00:52 261024 +biber-ms.doc.tar.xz 09-Mar-2023 00:52 261024 +biber-ms.i386-linux.r66478.tar.xz 09-Mar-2023 00:52 21092632 +biber-ms.i386-linux.tar.xz 09-Mar-2023 00:52 21092632 +biber-ms.r66478.tar.xz 09-Mar-2023 00:52 504 +biber-ms.source.r66478.tar.xz 09-Mar-2023 00:52 957432 +biber-ms.source.tar.xz 09-Mar-2023 00:52 957432 +biber-ms.tar.xz 09-Mar-2023 00:52 504 +biber-ms.universal-darwin.r66478.tar.xz 09-Mar-2023 00:52 87344272 +biber-ms.universal-darwin.tar.xz 09-Mar-2023 00:52 87344272 +biber-ms.windows.r66478.tar.xz 09-Mar-2023 00:53 24391288 +biber-ms.windows.tar.xz 09-Mar-2023 00:53 24391288 +biber-ms.x86_64-darwinlegacy.r66478.tar.xz 09-Mar-2023 00:53 35440820 +biber-ms.x86_64-darwinlegacy.tar.xz 09-Mar-2023 00:53 35440820 +biber-ms.x86_64-linux.r66478.tar.xz 09-Mar-2023 00:54 23549792 +biber-ms.x86_64-linux.tar.xz 09-Mar-2023 00:54 23549792 +biber.aarch64-linux.r75744.tar.xz 11-Jul-2025 23:48 30178584 +biber.aarch64-linux.tar.xz 11-Jul-2025 23:48 30178584 +biber.amd64-freebsd.r75770.tar.xz 13-Jul-2025 23:48 23400972 +biber.amd64-freebsd.tar.xz 13-Jul-2025 23:48 23400972 +biber.doc.r75738.tar.xz 10-Jul-2025 23:49 268548 +biber.doc.tar.xz 10-Jul-2025 23:49 268548 +biber.i386-freebsd.r75770.tar.xz 13-Jul-2025 23:48 21474172 +biber.i386-freebsd.tar.xz 13-Jul-2025 23:48 21474172 +biber.i386-linux.r75738.tar.xz 10-Jul-2025 23:49 21098044 +biber.i386-linux.tar.xz 10-Jul-2025 23:49 21098044 +biber.r75738.tar.xz 10-Jul-2025 23:49 736 +biber.source.r75738.tar.xz 10-Jul-2025 23:49 988388 +biber.source.tar.xz 10-Jul-2025 23:49 988388 +biber.tar.xz 10-Jul-2025 23:49 736 +biber.universal-darwin.r75738.tar.xz 10-Jul-2025 23:49 69739628 +biber.universal-darwin.tar.xz 10-Jul-2025 23:49 69739628 +biber.windows.r75738.tar.xz 10-Jul-2025 23:50 24396452 +biber.windows.tar.xz 10-Jul-2025 23:50 24396452 +biber.x86_64-cygwin.r75791.tar.xz 15-Jul-2025 23:47 17876332 +biber.x86_64-cygwin.tar.xz 15-Jul-2025 23:47 17876332 +biber.x86_64-darwinlegacy.r75738.tar.xz 10-Jul-2025 23:50 35444796 +biber.x86_64-darwinlegacy.tar.xz 10-Jul-2025 23:50 35444796 +biber.x86_64-linux.r75738.tar.xz 10-Jul-2025 23:50 25903448 +biber.x86_64-linux.tar.xz 10-Jul-2025 23:50 25903448 +biber.x86_64-linuxmusl.r75744.tar.xz 11-Jul-2025 23:48 19712612 +biber.x86_64-linuxmusl.tar.xz 11-Jul-2025 23:48 19712612 +biber.x86_64-solaris.r63707.tar.xz 23-Jun-2022 23:56 21943332 +biber.x86_64-solaris.tar.xz 23-Jun-2022 23:56 21943332 +bibexport.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:19 344 +bibexport.aarch64-linux.tar.xz 28-Feb-2019 02:19 344 +bibexport.amd64-freebsd.r16484.tar.xz 28-Feb-2019 02:19 344 +bibexport.amd64-freebsd.tar.xz 28-Feb-2019 02:19 344 +bibexport.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:19 344 +bibexport.amd64-netbsd.tar.xz 28-Feb-2019 02:19 344 +bibexport.armhf-linux.r30015.tar.xz 28-Feb-2019 02:19 340 +bibexport.armhf-linux.tar.xz 28-Feb-2019 02:19 340 +bibexport.doc.r50677.tar.xz 01-Apr-2019 00:24 256176 +bibexport.doc.tar.xz 01-Apr-2019 00:24 256176 +bibexport.i386-freebsd.r16484.tar.xz 28-Feb-2019 02:19 344 +bibexport.i386-freebsd.tar.xz 28-Feb-2019 02:19 344 +bibexport.i386-linux.r16219.tar.xz 28-Feb-2019 02:19 344 +bibexport.i386-linux.tar.xz 28-Feb-2019 02:19 344 +bibexport.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:19 344 +bibexport.i386-netbsd.tar.xz 28-Feb-2019 02:19 344 +bibexport.i386-solaris.r16219.tar.xz 28-Feb-2019 02:19 340 +bibexport.i386-solaris.tar.xz 28-Feb-2019 02:19 340 +bibexport.r50677.tar.xz 01-Apr-2019 00:24 6512 +bibexport.source.r50677.tar.xz 01-Apr-2019 00:24 11296 +bibexport.source.tar.xz 01-Apr-2019 00:24 11296 +bibexport.tar.xz 01-Apr-2019 00:24 6512 +bibexport.universal-darwin.r57908.tar.xz 25-Feb-2021 18:15 344 +bibexport.universal-darwin.tar.xz 25-Feb-2021 18:15 344 +bibexport.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:19 344 +bibexport.x86_64-cygwin.tar.xz 28-Feb-2019 02:19 344 +bibexport.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:19 348 +bibexport.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:19 348 +bibexport.x86_64-linux.r16219.tar.xz 28-Feb-2019 02:19 340 +bibexport.x86_64-linux.tar.xz 28-Feb-2019 02:19 340 +bibexport.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:19 348 +bibexport.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:19 348 +bibexport.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:19 344 +bibexport.x86_64-solaris.tar.xz 28-Feb-2019 02:19 344 +bibhtml.doc.r31607.tar.xz 28-Feb-2019 02:19 23716 +bibhtml.doc.tar.xz 28-Feb-2019 02:19 23716 +bibhtml.r31607.tar.xz 28-Feb-2019 02:19 11448 +bibhtml.tar.xz 28-Feb-2019 02:19 11448 +biblatex-abnt.doc.r72565.tar.xz 16-Oct-2024 23:46 977652 +biblatex-abnt.doc.tar.xz 16-Oct-2024 23:46 977652 +biblatex-abnt.r72565.tar.xz 16-Oct-2024 23:46 19748 +biblatex-abnt.tar.xz 16-Oct-2024 23:46 19748 +biblatex-accursius.doc.r72942.tar.xz 24-Nov-2024 01:03 386760 +biblatex-accursius.doc.tar.xz 24-Nov-2024 01:03 386760 +biblatex-accursius.r72942.tar.xz 24-Nov-2024 01:03 10776 +biblatex-accursius.source.r72942.tar.xz 24-Nov-2024 01:03 51156 +biblatex-accursius.source.tar.xz 24-Nov-2024 01:03 51156 +biblatex-accursius.tar.xz 24-Nov-2024 01:03 10776 +biblatex-ajc2020unofficial.doc.r54401.tar.xz 20-Mar-2020 17:32 1176 +biblatex-ajc2020unofficial.doc.tar.xz 20-Mar-2020 17:32 1176 +biblatex-ajc2020unofficial.r54401.tar.xz 20-Mar-2020 17:32 1440 +biblatex-ajc2020unofficial.tar.xz 20-Mar-2020 17:32 1440 +biblatex-anonymous.doc.r48548.tar.xz 28-Feb-2019 02:20 62380 +biblatex-anonymous.doc.tar.xz 28-Feb-2019 02:20 62380 +biblatex-anonymous.r48548.tar.xz 28-Feb-2019 02:20 1608 +biblatex-anonymous.tar.xz 28-Feb-2019 02:20 1608 +biblatex-apa.doc.r76158.tar.xz 27-Aug-2025 23:49 326908 +biblatex-apa.doc.tar.xz 27-Aug-2025 23:49 326908 +biblatex-apa.r76158.tar.xz 27-Aug-2025 23:49 36384 +biblatex-apa.tar.xz 27-Aug-2025 23:49 36384 +biblatex-apa6.doc.r56209.tar.xz 29-Aug-2020 23:56 226684 +biblatex-apa6.doc.tar.xz 29-Aug-2020 23:56 226684 +biblatex-apa6.r56209.tar.xz 29-Aug-2020 23:56 21184 +biblatex-apa6.tar.xz 29-Aug-2020 23:56 21184 +biblatex-archaeology.doc.r53281.tar.xz 02-Jan-2020 00:59 4828952 +biblatex-archaeology.doc.tar.xz 02-Jan-2020 00:59 4828952 +biblatex-archaeology.r53281.tar.xz 02-Jan-2020 00:59 39412 +biblatex-archaeology.source.r53281.tar.xz 02-Jan-2020 00:59 193792 +biblatex-archaeology.source.tar.xz 02-Jan-2020 00:59 193792 +biblatex-archaeology.tar.xz 02-Jan-2020 00:59 39412 +biblatex-arthistory-bonn.doc.r46637.tar.xz 28-Feb-2019 02:20 182764 +biblatex-arthistory-bonn.doc.tar.xz 28-Feb-2019 02:20 182764 +biblatex-arthistory-bonn.r46637.tar.xz 28-Feb-2019 02:20 7784 +biblatex-arthistory-bonn.tar.xz 28-Feb-2019 02:20 7784 +biblatex-bath.doc.r74864.tar.xz 06-Apr-2025 23:48 462404 +biblatex-bath.doc.tar.xz 06-Apr-2025 23:48 462404 +biblatex-bath.r74864.tar.xz 06-Apr-2025 23:48 10232 +biblatex-bath.source.r74864.tar.xz 06-Apr-2025 23:48 35916 +biblatex-bath.source.tar.xz 06-Apr-2025 23:48 35916 +biblatex-bath.tar.xz 06-Apr-2025 23:48 10232 +biblatex-bookinarticle.doc.r40323.tar.xz 28-Feb-2019 02:20 104796 +biblatex-bookinarticle.doc.tar.xz 28-Feb-2019 02:20 104796 +biblatex-bookinarticle.r40323.tar.xz 28-Feb-2019 02:20 1968 +biblatex-bookinarticle.tar.xz 28-Feb-2019 02:20 1968 +biblatex-bookinother.doc.r54015.tar.xz 02-Mar-2020 22:08 282448 +biblatex-bookinother.doc.tar.xz 02-Mar-2020 22:08 282448 +biblatex-bookinother.r54015.tar.xz 02-Mar-2020 22:08 3172 +biblatex-bookinother.tar.xz 02-Mar-2020 22:08 3172 +biblatex-bwl.doc.r26556.tar.xz 28-Feb-2019 02:20 114332 +biblatex-bwl.doc.tar.xz 28-Feb-2019 02:20 114332 +biblatex-bwl.r26556.tar.xz 28-Feb-2019 02:20 1308 +biblatex-bwl.tar.xz 28-Feb-2019 02:20 1308 +biblatex-caspervector.doc.r70491.tar.xz 08-Mar-2024 00:46 612860 +biblatex-caspervector.doc.tar.xz 08-Mar-2024 00:46 612860 +biblatex-caspervector.r70491.tar.xz 08-Mar-2024 00:46 4504 +biblatex-caspervector.tar.xz 08-Mar-2024 00:46 4504 +biblatex-cheatsheet.doc.r44685.tar.xz 28-Feb-2019 02:20 322392 +biblatex-cheatsheet.doc.tar.xz 28-Feb-2019 02:20 322392 +biblatex-cheatsheet.r44685.tar.xz 28-Feb-2019 02:20 436 +biblatex-cheatsheet.tar.xz 28-Feb-2019 02:20 436 +biblatex-chem.doc.r76236.tar.xz 05-Sep-2025 23:49 934600 +biblatex-chem.doc.tar.xz 05-Sep-2025 23:49 934600 +biblatex-chem.r76236.tar.xz 05-Sep-2025 23:49 5588 +biblatex-chem.tar.xz 05-Sep-2025 23:49 5588 +biblatex-chicago.doc.r70955.tar.xz 15-Apr-2024 23:47 2709972 +biblatex-chicago.doc.tar.xz 15-Apr-2024 23:47 2709972 +biblatex-chicago.r70955.tar.xz 15-Apr-2024 23:47 109564 +biblatex-chicago.tar.xz 15-Apr-2024 23:47 109564 +biblatex-claves.doc.r43723.tar.xz 28-Feb-2019 02:20 90108 +biblatex-claves.doc.tar.xz 28-Feb-2019 02:20 90108 +biblatex-claves.r43723.tar.xz 28-Feb-2019 02:20 2184 +biblatex-claves.tar.xz 28-Feb-2019 02:20 2184 +biblatex-cse.doc.r73262.tar.xz 02-Jan-2025 00:49 147296 +biblatex-cse.doc.tar.xz 02-Jan-2025 00:49 147296 +biblatex-cse.r73262.tar.xz 02-Jan-2025 00:49 2168 +biblatex-cse.tar.xz 02-Jan-2025 00:49 2168 +biblatex-cv.doc.r59433.tar.xz 02-Jun-2021 23:53 167160 +biblatex-cv.doc.tar.xz 02-Jun-2021 23:53 167160 +biblatex-cv.r59433.tar.xz 02-Jun-2021 23:53 10060 +biblatex-cv.tar.xz 02-Jun-2021 23:53 10060 +biblatex-dw.doc.r66579.tar.xz 12-Mar-2023 22:21 1145720 +biblatex-dw.doc.tar.xz 12-Mar-2023 22:21 1145720 +biblatex-dw.r66579.tar.xz 12-Mar-2023 22:21 16520 +biblatex-dw.tar.xz 12-Mar-2023 22:21 16520 +biblatex-enc.doc.r73019.tar.xz 03-Dec-2024 00:48 2448 +biblatex-enc.doc.tar.xz 03-Dec-2024 00:48 2448 +biblatex-enc.r73019.tar.xz 03-Dec-2024 00:48 8512 +biblatex-enc.tar.xz 03-Dec-2024 00:48 8512 +biblatex-ext.doc.r75609.tar.xz 25-Jun-2025 23:49 843080 +biblatex-ext.doc.tar.xz 25-Jun-2025 23:49 843080 +biblatex-ext.r75609.tar.xz 25-Jun-2025 23:49 29412 +biblatex-ext.tar.xz 25-Jun-2025 23:49 29412 +biblatex-fiwi.doc.r45876.tar.xz 28-Feb-2019 02:20 595408 +biblatex-fiwi.doc.tar.xz 28-Feb-2019 02:20 595408 +biblatex-fiwi.r45876.tar.xz 28-Feb-2019 02:20 16768 +biblatex-fiwi.tar.xz 28-Feb-2019 02:20 16768 +biblatex-gb7714-2015.doc.r75481.tar.xz 11-Jun-2025 23:47 1652880 +biblatex-gb7714-2015.doc.tar.xz 11-Jun-2025 23:47 1652880 +biblatex-gb7714-2015.r75481.tar.xz 11-Jun-2025 23:47 63432 +biblatex-gb7714-2015.tar.xz 11-Jun-2025 23:47 63432 +biblatex-german-legal.doc.r66461.tar.xz 08-Mar-2023 00:54 173876 +biblatex-german-legal.doc.tar.xz 08-Mar-2023 00:54 173876 +biblatex-german-legal.r66461.tar.xz 08-Mar-2023 00:54 6148 +biblatex-german-legal.tar.xz 08-Mar-2023 00:54 6148 +biblatex-gost.doc.r66935.tar.xz 25-Apr-2023 23:53 1005352 +biblatex-gost.doc.tar.xz 25-Apr-2023 23:53 1005352 +biblatex-gost.r66935.tar.xz 25-Apr-2023 23:53 21248 +biblatex-gost.tar.xz 25-Apr-2023 23:53 21248 +biblatex-historian.doc.r19787.tar.xz 28-Feb-2019 02:20 578372 +biblatex-historian.doc.tar.xz 28-Feb-2019 02:20 578372 +biblatex-historian.r19787.tar.xz 28-Feb-2019 02:20 24464 +biblatex-historian.tar.xz 28-Feb-2019 02:20 24464 +biblatex-ieee.doc.r75952.tar.xz 02-Aug-2025 23:57 574240 +biblatex-ieee.doc.tar.xz 02-Aug-2025 23:57 574240 +biblatex-ieee.r75952.tar.xz 02-Aug-2025 23:57 5752 +biblatex-ieee.tar.xz 02-Aug-2025 23:57 5752 +biblatex-ijsra.doc.r41634.tar.xz 28-Feb-2019 02:20 49096 +biblatex-ijsra.doc.tar.xz 28-Feb-2019 02:20 49096 +biblatex-ijsra.r41634.tar.xz 28-Feb-2019 02:20 1332 +biblatex-ijsra.tar.xz 28-Feb-2019 02:20 1332 +biblatex-iso690.doc.r62866.tar.xz 21-Mar-2022 22:03 289680 +biblatex-iso690.doc.tar.xz 21-Mar-2022 22:03 289680 +biblatex-iso690.r62866.tar.xz 21-Mar-2022 22:03 13132 +biblatex-iso690.tar.xz 21-Mar-2022 22:03 13132 +biblatex-jura2.doc.r64762.tar.xz 20-Oct-2022 23:52 380108 +biblatex-jura2.doc.tar.xz 20-Oct-2022 23:52 380108 +biblatex-jura2.r64762.tar.xz 20-Oct-2022 23:52 4540 +biblatex-jura2.tar.xz 20-Oct-2022 23:52 4540 +biblatex-juradiss.doc.r56502.tar.xz 01-Oct-2020 22:33 130900 +biblatex-juradiss.doc.tar.xz 01-Oct-2020 22:33 130900 +biblatex-juradiss.r56502.tar.xz 01-Oct-2020 22:33 6200 +biblatex-juradiss.tar.xz 01-Oct-2020 22:33 6200 +biblatex-license.doc.r58437.tar.xz 17-Mar-2021 00:30 231140 +biblatex-license.doc.tar.xz 17-Mar-2021 00:30 231140 +biblatex-license.r58437.tar.xz 17-Mar-2021 00:30 1776 +biblatex-license.tar.xz 17-Mar-2021 00:30 1776 +biblatex-lncs.doc.r67053.tar.xz 08-May-2023 23:53 8848 +biblatex-lncs.doc.tar.xz 08-May-2023 23:53 8848 +biblatex-lncs.r67053.tar.xz 08-May-2023 23:53 3016 +biblatex-lncs.tar.xz 08-May-2023 23:53 3016 +biblatex-lni.doc.r73625.tar.xz 29-Jan-2025 00:46 10308 +biblatex-lni.doc.tar.xz 29-Jan-2025 00:46 10308 +biblatex-lni.r73625.tar.xz 29-Jan-2025 00:46 3120 +biblatex-lni.tar.xz 29-Jan-2025 00:46 3120 +biblatex-luh-ipw.doc.r32180.tar.xz 28-Feb-2019 02:20 358604 +biblatex-luh-ipw.doc.tar.xz 28-Feb-2019 02:20 358604 +biblatex-luh-ipw.r32180.tar.xz 28-Feb-2019 02:20 5372 +biblatex-luh-ipw.tar.xz 28-Feb-2019 02:20 5372 +biblatex-manuscripts-philology.doc.r66977.tar.xz 01-May-2023 23:54 145508 +biblatex-manuscripts-philology.doc.tar.xz 01-May-2023 23:54 145508 +biblatex-manuscripts-philology.r66977.tar.xz 01-May-2023 23:54 4852 +biblatex-manuscripts-philology.tar.xz 01-May-2023 23:54 4852 +biblatex-mla.doc.r62138.tar.xz 23-Feb-2022 00:51 687188 +biblatex-mla.doc.tar.xz 23-Feb-2022 00:51 687188 +biblatex-mla.r62138.tar.xz 23-Feb-2022 00:51 24920 +biblatex-mla.tar.xz 23-Feb-2022 00:51 24920 +biblatex-morenames.doc.r43049.tar.xz 28-Feb-2019 02:20 134744 +biblatex-morenames.doc.tar.xz 28-Feb-2019 02:20 134744 +biblatex-morenames.r43049.tar.xz 28-Feb-2019 02:20 2448 +biblatex-morenames.tar.xz 28-Feb-2019 02:20 2448 +biblatex-ms.doc.r66480.tar.xz 09-Mar-2023 00:54 7467680 +biblatex-ms.doc.tar.xz 09-Mar-2023 00:54 7467680 +biblatex-ms.r66480.tar.xz 09-Mar-2023 00:54 262228 +biblatex-ms.tar.xz 09-Mar-2023 00:54 262228 +biblatex-multiple-dm.doc.r37081.tar.xz 28-Feb-2019 02:20 54860 +biblatex-multiple-dm.doc.tar.xz 28-Feb-2019 02:20 54860 +biblatex-multiple-dm.r37081.tar.xz 28-Feb-2019 02:20 1088 +biblatex-multiple-dm.tar.xz 28-Feb-2019 02:20 1088 +biblatex-musuos.doc.r24097.tar.xz 28-Feb-2019 02:20 424364 +biblatex-musuos.doc.tar.xz 28-Feb-2019 02:20 424364 +biblatex-musuos.r24097.tar.xz 28-Feb-2019 02:20 3796 +biblatex-musuos.tar.xz 28-Feb-2019 02:20 3796 +biblatex-nature.doc.r57262.tar.xz 31-Dec-2020 00:57 385524 +biblatex-nature.doc.tar.xz 31-Dec-2020 00:57 385524 +biblatex-nature.r57262.tar.xz 31-Dec-2020 00:57 3256 +biblatex-nature.tar.xz 31-Dec-2020 00:57 3256 +biblatex-nejm.doc.r49839.tar.xz 28-Feb-2019 02:20 156060 +biblatex-nejm.doc.tar.xz 28-Feb-2019 02:20 156060 +biblatex-nejm.r49839.tar.xz 28-Feb-2019 02:20 2036 +biblatex-nejm.source.r49839.tar.xz 28-Feb-2019 02:20 508 +biblatex-nejm.source.tar.xz 28-Feb-2019 02:20 508 +biblatex-nejm.tar.xz 28-Feb-2019 02:20 2036 +biblatex-nottsclassic.doc.r41596.tar.xz 28-Feb-2019 02:20 110820 +biblatex-nottsclassic.doc.tar.xz 28-Feb-2019 02:20 110820 +biblatex-nottsclassic.r41596.tar.xz 28-Feb-2019 02:20 3056 +biblatex-nottsclassic.tar.xz 28-Feb-2019 02:20 3056 +biblatex-opcit-booktitle.doc.r48983.tar.xz 28-Feb-2019 02:20 109536 +biblatex-opcit-booktitle.doc.tar.xz 28-Feb-2019 02:20 109536 +biblatex-opcit-booktitle.r48983.tar.xz 28-Feb-2019 02:20 2788 +biblatex-opcit-booktitle.tar.xz 28-Feb-2019 02:20 2788 +biblatex-oxref.doc.r72164.tar.xz 01-Sep-2024 23:48 2161812 +biblatex-oxref.doc.tar.xz 01-Sep-2024 23:48 2161812 +biblatex-oxref.r72164.tar.xz 01-Sep-2024 23:48 27256 +biblatex-oxref.source.r72164.tar.xz 01-Sep-2024 23:48 96396 +biblatex-oxref.source.tar.xz 01-Sep-2024 23:48 96396 +biblatex-oxref.tar.xz 01-Sep-2024 23:48 27256 +biblatex-philosophy.doc.r64414.tar.xz 16-Sep-2022 23:53 542616 +biblatex-philosophy.doc.tar.xz 16-Sep-2022 23:53 542616 +biblatex-philosophy.r64414.tar.xz 16-Sep-2022 23:53 12840 +biblatex-philosophy.source.r64414.tar.xz 16-Sep-2022 23:53 40200 +biblatex-philosophy.source.tar.xz 16-Sep-2022 23:53 40200 +biblatex-philosophy.tar.xz 16-Sep-2022 23:53 12840 +biblatex-phys.doc.r74898.tar.xz 09-Apr-2025 23:49 479064 +biblatex-phys.doc.tar.xz 09-Apr-2025 23:49 479064 +biblatex-phys.r74898.tar.xz 09-Apr-2025 23:49 3428 +biblatex-phys.tar.xz 09-Apr-2025 23:49 3428 +biblatex-publist.doc.r76276.tar.xz 10-Sep-2025 23:49 455440 +biblatex-publist.doc.tar.xz 10-Sep-2025 23:49 455440 +biblatex-publist.r76276.tar.xz 10-Sep-2025 23:49 16272 +biblatex-publist.tar.xz 10-Sep-2025 23:49 16272 +biblatex-readbbl.doc.r61549.tar.xz 10-Jan-2022 00:52 27192 +biblatex-readbbl.doc.tar.xz 10-Jan-2022 00:52 27192 +biblatex-readbbl.r61549.tar.xz 10-Jan-2022 00:52 1444 +biblatex-readbbl.tar.xz 10-Jan-2022 00:52 1444 +biblatex-realauthor.doc.r45865.tar.xz 28-Feb-2019 02:20 93700 +biblatex-realauthor.doc.tar.xz 28-Feb-2019 02:20 93700 +biblatex-realauthor.r45865.tar.xz 28-Feb-2019 02:20 2484 +biblatex-realauthor.tar.xz 28-Feb-2019 02:20 2484 +biblatex-sbl.doc.r71470.tar.xz 10-Jun-2024 23:48 663764 +biblatex-sbl.doc.tar.xz 10-Jun-2024 23:48 663764 +biblatex-sbl.r71470.tar.xz 10-Jun-2024 23:48 21232 +biblatex-sbl.tar.xz 10-Jun-2024 23:48 21232 +biblatex-science.doc.r48945.tar.xz 28-Feb-2019 02:20 356968 +biblatex-science.doc.tar.xz 28-Feb-2019 02:20 356968 +biblatex-science.r48945.tar.xz 28-Feb-2019 02:20 2916 +biblatex-science.tar.xz 28-Feb-2019 02:20 2916 +biblatex-shortfields.doc.r45858.tar.xz 28-Feb-2019 02:20 81992 +biblatex-shortfields.doc.tar.xz 28-Feb-2019 02:20 81992 +biblatex-shortfields.r45858.tar.xz 28-Feb-2019 02:20 2080 +biblatex-shortfields.tar.xz 28-Feb-2019 02:20 2080 +biblatex-socialscienceshuberlin.doc.r47839.tar.xz 28-Feb-2019 02:20 112244 +biblatex-socialscienceshuberlin.doc.tar.xz 28-Feb-2019 02:20 112244 +biblatex-socialscienceshuberlin.r47839.tar.xz 28-Feb-2019 02:20 2112 +biblatex-socialscienceshuberlin.tar.xz 28-Feb-2019 02:20 2112 +biblatex-software.doc.r73321.tar.xz 06-Jan-2025 00:48 326352 +biblatex-software.doc.tar.xz 06-Jan-2025 00:48 326352 +biblatex-software.r73321.tar.xz 06-Jan-2025 00:48 3572 +biblatex-software.source.r73321.tar.xz 06-Jan-2025 00:48 1524 +biblatex-software.source.tar.xz 06-Jan-2025 00:48 1524 +biblatex-software.tar.xz 06-Jan-2025 00:48 3572 +biblatex-source-division.doc.r45379.tar.xz 28-Feb-2019 02:20 65448 +biblatex-source-division.doc.tar.xz 28-Feb-2019 02:20 65448 +biblatex-source-division.r45379.tar.xz 28-Feb-2019 02:20 1980 +biblatex-source-division.tar.xz 28-Feb-2019 02:20 1980 +biblatex-spbasic.doc.r61439.tar.xz 30-Dec-2021 00:54 77108 +biblatex-spbasic.doc.tar.xz 30-Dec-2021 00:54 77108 +biblatex-spbasic.r61439.tar.xz 30-Dec-2021 00:54 6024 +biblatex-spbasic.tar.xz 30-Dec-2021 00:54 6024 +biblatex-subseries.doc.r43330.tar.xz 28-Feb-2019 02:20 70196 +biblatex-subseries.doc.tar.xz 28-Feb-2019 02:20 70196 +biblatex-subseries.r43330.tar.xz 28-Feb-2019 02:20 1384 +biblatex-subseries.tar.xz 28-Feb-2019 02:20 1384 +biblatex-swiss-legal.doc.r76389.tar.xz 23-Sep-2025 23:49 513436 +biblatex-swiss-legal.doc.tar.xz 23-Sep-2025 23:49 513436 +biblatex-swiss-legal.r76389.tar.xz 23-Sep-2025 23:49 18148 +biblatex-swiss-legal.tar.xz 23-Sep-2025 23:49 18148 +biblatex-trad.doc.r58169.tar.xz 07-Mar-2021 00:32 469432 +biblatex-trad.doc.tar.xz 07-Mar-2021 00:32 469432 +biblatex-trad.r58169.tar.xz 07-Mar-2021 00:32 4192 +biblatex-trad.tar.xz 07-Mar-2021 00:32 4192 +biblatex-true-citepages-omit.doc.r44653.tar.xz 28-Feb-2019 02:20 70876 +biblatex-true-citepages-omit.doc.tar.xz 28-Feb-2019 02:20 70876 +biblatex-true-citepages-omit.r44653.tar.xz 28-Feb-2019 02:20 1308 +biblatex-true-citepages-omit.tar.xz 28-Feb-2019 02:20 1308 +biblatex-unified.doc.r64975.tar.xz 10-Nov-2022 00:53 624820 +biblatex-unified.doc.tar.xz 10-Nov-2022 00:53 624820 +biblatex-unified.r64975.tar.xz 10-Nov-2022 00:53 8324 +biblatex-unified.tar.xz 10-Nov-2022 00:53 8324 +biblatex-vancouver.doc.r75301.tar.xz 23-May-2025 23:46 12124 +biblatex-vancouver.doc.tar.xz 23-May-2025 23:46 12124 +biblatex-vancouver.r75301.tar.xz 23-May-2025 23:46 1816 +biblatex-vancouver.tar.xz 23-May-2025 23:46 1816 +biblatex.doc.r75739.tar.xz 10-Jul-2025 23:50 7347156 +biblatex.doc.tar.xz 10-Jul-2025 23:50 7347156 +biblatex.r75739.tar.xz 10-Jul-2025 23:50 258364 +biblatex.tar.xz 10-Jul-2025 23:50 258364 +biblatex2bibitem.doc.r67201.tar.xz 23-May-2023 23:44 224856 +biblatex2bibitem.doc.tar.xz 23-May-2023 23:44 224856 +biblatex2bibitem.r67201.tar.xz 23-May-2023 23:44 1732 +biblatex2bibitem.tar.xz 23-May-2023 23:44 1732 +bibleref-french.doc.r75246.tar.xz 18-May-2025 00:11 655748 +bibleref-french.doc.tar.xz 18-May-2025 00:11 655748 +bibleref-french.r75246.tar.xz 18-May-2025 00:11 5520 +bibleref-french.source.r75246.tar.xz 18-May-2025 00:11 9012 +bibleref-french.source.tar.xz 18-May-2025 00:11 9012 +bibleref-french.tar.xz 18-May-2025 00:11 5520 +bibleref-german.doc.r21923.tar.xz 28-Feb-2019 02:20 659488 +bibleref-german.doc.tar.xz 28-Feb-2019 02:20 659488 +bibleref-german.r21923.tar.xz 28-Feb-2019 02:20 7488 +bibleref-german.tar.xz 28-Feb-2019 02:20 7488 +bibleref-lds.doc.r25526.tar.xz 28-Feb-2019 02:20 269992 +bibleref-lds.doc.tar.xz 28-Feb-2019 02:20 269992 +bibleref-lds.r25526.tar.xz 28-Feb-2019 02:20 3636 +bibleref-lds.source.r25526.tar.xz 28-Feb-2019 02:20 8524 +bibleref-lds.source.tar.xz 28-Feb-2019 02:20 8524 +bibleref-lds.tar.xz 28-Feb-2019 02:20 3636 +bibleref-mouth.doc.r25527.tar.xz 28-Feb-2019 02:20 366172 +bibleref-mouth.doc.tar.xz 28-Feb-2019 02:20 366172 +bibleref-mouth.r25527.tar.xz 28-Feb-2019 02:20 5476 +bibleref-mouth.source.r25527.tar.xz 28-Feb-2019 02:20 18324 +bibleref-mouth.source.tar.xz 28-Feb-2019 02:20 18324 +bibleref-mouth.tar.xz 28-Feb-2019 02:20 5476 +bibleref-parse.doc.r22054.tar.xz 28-Feb-2019 02:20 101648 +bibleref-parse.doc.tar.xz 28-Feb-2019 02:20 101648 +bibleref-parse.r22054.tar.xz 28-Feb-2019 02:20 7204 +bibleref-parse.tar.xz 28-Feb-2019 02:20 7204 +bibleref.doc.r75257.tar.xz 18-May-2025 23:48 518952 +bibleref.doc.tar.xz 18-May-2025 23:48 518952 +bibleref.r75257.tar.xz 18-May-2025 23:48 7224 +bibleref.source.r75257.tar.xz 18-May-2025 23:48 17532 +bibleref.source.tar.xz 18-May-2025 23:48 17532 +bibleref.tar.xz 18-May-2025 23:48 7224 +bibletext.doc.r45196.tar.xz 28-Feb-2019 02:20 142004 +bibletext.doc.tar.xz 28-Feb-2019 02:20 142004 +bibletext.r45196.tar.xz 28-Feb-2019 02:20 1156 +bibletext.tar.xz 28-Feb-2019 02:20 1156 +biblist.doc.r17116.tar.xz 28-Feb-2019 02:20 207180 +biblist.doc.tar.xz 28-Feb-2019 02:20 207180 +biblist.r17116.tar.xz 28-Feb-2019 02:20 8332 +biblist.tar.xz 28-Feb-2019 02:20 8332 +bibtex.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 76220 +bibtex.aarch64-linux.tar.xz 13-Feb-2025 00:47 76220 +bibtex.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:51 71076 +bibtex.amd64-freebsd.tar.xz 09-Feb-2025 00:51 71076 +bibtex.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 69576 +bibtex.amd64-netbsd.tar.xz 09-Feb-2025 18:14 69576 +bibtex.armhf-linux.r73793.tar.xz 09-Feb-2025 00:51 70280 +bibtex.armhf-linux.tar.xz 09-Feb-2025 00:51 70280 +bibtex.doc.r73848.tar.xz 11-Feb-2025 00:48 399560 +bibtex.doc.tar.xz 11-Feb-2025 00:48 399560 +bibtex.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:51 71052 +bibtex.i386-freebsd.tar.xz 09-Feb-2025 00:51 71052 +bibtex.i386-linux.r73792.tar.xz 09-Feb-2025 00:51 83936 +bibtex.i386-linux.tar.xz 09-Feb-2025 00:51 83936 +bibtex.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 56196 +bibtex.i386-netbsd.tar.xz 09-Feb-2025 18:14 56196 +bibtex.i386-solaris.r73792.tar.xz 09-Feb-2025 00:51 74336 +bibtex.i386-solaris.tar.xz 09-Feb-2025 00:51 74336 +bibtex.r73848.tar.xz 11-Feb-2025 00:48 14880 +bibtex.tar.xz 11-Feb-2025 00:48 14880 +bibtex.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 179180 +bibtex.universal-darwin.tar.xz 09-Feb-2025 18:14 179180 +bibtex.windows.r73796.tar.xz 09-Feb-2025 18:14 49684 +bibtex.windows.tar.xz 09-Feb-2025 18:14 49684 +bibtex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 48736 +bibtex.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 48736 +bibtex.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 76492 +bibtex.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 76492 +bibtex.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 78452 +bibtex.x86_64-linux.tar.xz 19-Feb-2025 00:46 78452 +bibtex.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:51 80572 +bibtex.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:51 80572 +bibtex.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:51 88280 +bibtex.x86_64-solaris.tar.xz 09-Feb-2025 00:51 88280 +bibtex8.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 82124 +bibtex8.aarch64-linux.tar.xz 13-Feb-2025 00:47 82124 +bibtex8.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:51 80472 +bibtex8.amd64-freebsd.tar.xz 09-Feb-2025 00:51 80472 +bibtex8.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 78524 +bibtex8.amd64-netbsd.tar.xz 09-Feb-2025 18:14 78524 +bibtex8.armhf-linux.r73793.tar.xz 09-Feb-2025 00:51 78804 +bibtex8.armhf-linux.tar.xz 09-Feb-2025 00:51 78804 +bibtex8.doc.r75712.tar.xz 07-Jul-2025 23:49 34424 +bibtex8.doc.tar.xz 07-Jul-2025 23:49 34424 +bibtex8.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:51 80516 +bibtex8.i386-freebsd.tar.xz 09-Feb-2025 00:51 80516 +bibtex8.i386-linux.r73792.tar.xz 09-Feb-2025 00:51 92296 +bibtex8.i386-linux.tar.xz 09-Feb-2025 00:51 92296 +bibtex8.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 62700 +bibtex8.i386-netbsd.tar.xz 09-Feb-2025 18:14 62700 +bibtex8.i386-solaris.r73792.tar.xz 09-Feb-2025 00:51 80068 +bibtex8.i386-solaris.tar.xz 09-Feb-2025 00:51 80068 +bibtex8.r75712.tar.xz 07-Jul-2025 23:49 9324 +bibtex8.tar.xz 07-Jul-2025 23:49 9324 +bibtex8.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 166528 +bibtex8.universal-darwin.tar.xz 09-Feb-2025 18:14 166528 +bibtex8.windows.r73796.tar.xz 09-Feb-2025 18:14 180488 +bibtex8.windows.tar.xz 09-Feb-2025 18:14 180488 +bibtex8.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 53972 +bibtex8.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 53972 +bibtex8.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 83736 +bibtex8.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 83736 +bibtex8.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 82940 +bibtex8.x86_64-linux.tar.xz 19-Feb-2025 00:46 82940 +bibtex8.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:51 87460 +bibtex8.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:51 87460 +bibtex8.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:51 93972 +bibtex8.x86_64-solaris.tar.xz 09-Feb-2025 00:51 93972 +bibtexperllibs.aarch64-linux.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.aarch64-linux.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.amd64-freebsd.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.amd64-freebsd.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.amd64-netbsd.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.amd64-netbsd.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.armhf-linux.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.armhf-linux.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.doc.r76255.tar.xz 08-Sep-2025 00:07 20488 +bibtexperllibs.doc.tar.xz 08-Sep-2025 00:07 20488 +bibtexperllibs.i386-freebsd.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.i386-freebsd.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.i386-linux.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.i386-linux.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.i386-netbsd.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.i386-netbsd.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.i386-solaris.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.i386-solaris.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.r76255.tar.xz 08-Sep-2025 00:07 24644 +bibtexperllibs.source.r76255.tar.xz 08-Sep-2025 00:07 224376 +bibtexperllibs.source.tar.xz 08-Sep-2025 00:07 224376 +bibtexperllibs.tar.xz 08-Sep-2025 00:07 24644 +bibtexperllibs.universal-darwin.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.universal-darwin.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.windows.r68869.tar.xz 17-Nov-2023 00:45 2320 +bibtexperllibs.windows.tar.xz 17-Nov-2023 00:45 2320 +bibtexperllibs.x86_64-cygwin.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.x86_64-cygwin.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.x86_64-darwinlegacy.r68869.tar.xz 17-Nov-2023 00:45 356 +bibtexperllibs.x86_64-darwinlegacy.tar.xz 17-Nov-2023 00:45 356 +bibtexperllibs.x86_64-linux.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.x86_64-linux.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.x86_64-linuxmusl.r68869.tar.xz 17-Nov-2023 00:45 352 +bibtexperllibs.x86_64-linuxmusl.tar.xz 17-Nov-2023 00:45 352 +bibtexperllibs.x86_64-solaris.r68869.tar.xz 17-Nov-2023 00:45 348 +bibtexperllibs.x86_64-solaris.tar.xz 17-Nov-2023 00:45 348 +bibtexu.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 5971816 +bibtexu.aarch64-linux.tar.xz 13-Feb-2025 00:47 5971816 +bibtexu.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:51 6212888 +bibtexu.amd64-freebsd.tar.xz 09-Feb-2025 00:51 6212888 +bibtexu.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 5997296 +bibtexu.amd64-netbsd.tar.xz 09-Feb-2025 18:14 5997296 +bibtexu.armhf-linux.r73793.tar.xz 09-Feb-2025 00:51 5927688 +bibtexu.armhf-linux.tar.xz 09-Feb-2025 00:51 5927688 +bibtexu.doc.r66186.tar.xz 26-Feb-2023 23:47 72312 +bibtexu.doc.tar.xz 26-Feb-2023 23:47 72312 +bibtexu.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:51 6211996 +bibtexu.i386-freebsd.tar.xz 09-Feb-2025 00:51 6211996 +bibtexu.i386-linux.r73792.tar.xz 09-Feb-2025 00:51 6033856 +bibtexu.i386-linux.tar.xz 09-Feb-2025 00:51 6033856 +bibtexu.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 5958628 +bibtexu.i386-netbsd.tar.xz 09-Feb-2025 18:14 5958628 +bibtexu.i386-solaris.r73792.tar.xz 09-Feb-2025 00:51 6095808 +bibtexu.i386-solaris.tar.xz 09-Feb-2025 00:51 6095808 +bibtexu.r66186.tar.xz 26-Feb-2023 23:47 620 +bibtexu.tar.xz 26-Feb-2023 23:47 620 +bibtexu.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 12343100 +bibtexu.universal-darwin.tar.xz 09-Feb-2025 18:14 12343100 +bibtexu.windows.r73796.tar.xz 09-Feb-2025 18:14 562900 +bibtexu.windows.tar.xz 09-Feb-2025 18:14 562900 +bibtexu.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 6150424 +bibtexu.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 6150424 +bibtexu.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 5972936 +bibtexu.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 5972936 +bibtexu.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 6003256 +bibtexu.x86_64-linux.tar.xz 19-Feb-2025 00:46 6003256 +bibtexu.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:51 6152392 +bibtexu.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:51 6152392 +bibtexu.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:51 6120604 +bibtexu.x86_64-solaris.tar.xz 09-Feb-2025 00:51 6120604 +bibtools.r75712.tar.xz 07-Jul-2025 23:49 5696 +bibtools.source.r75712.tar.xz 07-Jul-2025 23:49 20756 +bibtools.source.tar.xz 07-Jul-2025 23:49 20756 +bibtools.tar.xz 07-Jul-2025 23:49 5696 +bibtopic.doc.r15878.tar.xz 28-Feb-2019 02:23 222060 +bibtopic.doc.tar.xz 28-Feb-2019 02:23 222060 +bibtopic.r15878.tar.xz 28-Feb-2019 02:23 8592 +bibtopic.source.r15878.tar.xz 28-Feb-2019 02:23 40496 +bibtopic.source.tar.xz 28-Feb-2019 02:23 40496 +bibtopic.tar.xz 28-Feb-2019 02:23 8592 +bibtopicprefix.doc.r15878.tar.xz 28-Feb-2019 02:23 374820 +bibtopicprefix.doc.tar.xz 28-Feb-2019 02:23 374820 +bibtopicprefix.r15878.tar.xz 28-Feb-2019 02:23 1844 +bibtopicprefix.source.r15878.tar.xz 28-Feb-2019 02:23 4620 +bibtopicprefix.source.tar.xz 28-Feb-2019 02:23 4620 +bibtopicprefix.tar.xz 28-Feb-2019 02:23 1844 +bibunits.doc.r15878.tar.xz 28-Feb-2019 02:23 193792 +bibunits.doc.tar.xz 28-Feb-2019 02:23 193792 +bibunits.r15878.tar.xz 28-Feb-2019 02:23 3036 +bibunits.source.r15878.tar.xz 28-Feb-2019 02:23 16152 +bibunits.source.tar.xz 28-Feb-2019 02:23 16152 +bibunits.tar.xz 28-Feb-2019 02:23 3036 +bidi-atbegshi.doc.r62009.tar.xz 14-Feb-2022 00:52 160664 +bidi-atbegshi.doc.tar.xz 14-Feb-2022 00:52 160664 +bidi-atbegshi.r62009.tar.xz 14-Feb-2022 00:52 1388 +bidi-atbegshi.tar.xz 14-Feb-2022 00:52 1388 +bidi.doc.r76418.tar.xz 27-Sep-2025 23:53 4073244 +bidi.doc.tar.xz 27-Sep-2025 23:53 4073244 +bidi.r76418.tar.xz 27-Sep-2025 23:53 131144 +bidi.source.r76418.tar.xz 27-Sep-2025 23:53 146860 +bidi.source.tar.xz 27-Sep-2025 23:53 146860 +bidi.tar.xz 27-Sep-2025 23:53 131144 +bidicontour.doc.r34631.tar.xz 28-Feb-2019 02:23 30508 +bidicontour.doc.tar.xz 28-Feb-2019 02:23 30508 +bidicontour.r34631.tar.xz 28-Feb-2019 02:23 1848 +bidicontour.tar.xz 28-Feb-2019 02:23 1848 +bidihl.doc.r37795.tar.xz 28-Feb-2019 02:23 43416 +bidihl.doc.tar.xz 28-Feb-2019 02:23 43416 +bidihl.r37795.tar.xz 28-Feb-2019 02:23 2356 +bidihl.tar.xz 28-Feb-2019 02:23 2356 +bidipagegrid.doc.r34632.tar.xz 28-Feb-2019 02:23 25800 +bidipagegrid.doc.tar.xz 28-Feb-2019 02:23 25800 +bidipagegrid.r34632.tar.xz 28-Feb-2019 02:23 3264 +bidipagegrid.tar.xz 28-Feb-2019 02:23 3264 +bidipresentation.doc.r35267.tar.xz 28-Feb-2019 02:23 75456 +bidipresentation.doc.tar.xz 28-Feb-2019 02:23 75456 +bidipresentation.r35267.tar.xz 28-Feb-2019 02:23 28048 +bidipresentation.tar.xz 28-Feb-2019 02:23 28048 +bidishadowtext.doc.r34633.tar.xz 28-Feb-2019 02:23 120564 +bidishadowtext.doc.tar.xz 28-Feb-2019 02:23 120564 +bidishadowtext.r34633.tar.xz 28-Feb-2019 02:23 1312 +bidishadowtext.tar.xz 28-Feb-2019 02:23 1312 +bigfoot.doc.r38248.tar.xz 28-Feb-2019 02:23 736348 +bigfoot.doc.tar.xz 28-Feb-2019 02:23 736348 +bigfoot.r38248.tar.xz 28-Feb-2019 02:23 11372 +bigfoot.source.r38248.tar.xz 28-Feb-2019 02:23 43760 +bigfoot.source.tar.xz 28-Feb-2019 02:23 43760 +bigfoot.tar.xz 28-Feb-2019 02:23 11372 +bigintcalc.doc.r53172.tar.xz 18-Dec-2019 00:54 456956 +bigintcalc.doc.tar.xz 18-Dec-2019 00:54 456956 +bigintcalc.r53172.tar.xz 18-Dec-2019 00:54 6504 +bigintcalc.source.r53172.tar.xz 18-Dec-2019 00:54 14244 +bigintcalc.source.tar.xz 18-Dec-2019 00:54 14244 +bigintcalc.tar.xz 18-Dec-2019 00:54 6504 +bigints.doc.r29803.tar.xz 28-Feb-2019 02:23 107716 +bigints.doc.tar.xz 28-Feb-2019 02:23 107716 +bigints.r29803.tar.xz 28-Feb-2019 02:23 1228 +bigints.tar.xz 28-Feb-2019 02:23 1228 +bilingualpages.doc.r59643.tar.xz 19-Jun-2021 23:52 700 +bilingualpages.doc.tar.xz 19-Jun-2021 23:52 700 +bilingualpages.r59643.tar.xz 19-Jun-2021 23:52 664 +bilingualpages.tar.xz 19-Jun-2021 23:52 664 +binarytree.doc.r41777.tar.xz 28-Feb-2019 02:23 447560 +binarytree.doc.tar.xz 28-Feb-2019 02:23 447560 +binarytree.r41777.tar.xz 28-Feb-2019 02:23 5976 +binarytree.source.r41777.tar.xz 28-Feb-2019 02:23 18836 +binarytree.source.tar.xz 28-Feb-2019 02:23 18836 +binarytree.tar.xz 28-Feb-2019 02:23 5976 +binomexp.doc.r15878.tar.xz 28-Feb-2019 02:23 66976 +binomexp.doc.tar.xz 28-Feb-2019 02:23 66976 +binomexp.r15878.tar.xz 28-Feb-2019 02:23 2328 +binomexp.source.r15878.tar.xz 28-Feb-2019 02:23 4600 +binomexp.source.tar.xz 28-Feb-2019 02:23 4600 +binomexp.tar.xz 28-Feb-2019 02:23 2328 +biochemistry-colors.doc.r54512.tar.xz 24-Mar-2020 00:56 67040 +biochemistry-colors.doc.tar.xz 24-Mar-2020 00:56 67040 +biochemistry-colors.r54512.tar.xz 24-Mar-2020 00:56 2848 +biochemistry-colors.tar.xz 24-Mar-2020 00:56 2848 +biocon.doc.r15878.tar.xz 28-Feb-2019 02:23 225784 +biocon.doc.tar.xz 28-Feb-2019 02:23 225784 +biocon.r15878.tar.xz 28-Feb-2019 02:23 3376 +biocon.tar.xz 28-Feb-2019 02:23 3376 +biolett-bst.doc.r66115.tar.xz 24-Feb-2023 00:57 960 +biolett-bst.doc.tar.xz 24-Feb-2023 00:57 960 +biolett-bst.r66115.tar.xz 24-Feb-2023 00:57 5648 +biolett-bst.tar.xz 24-Feb-2023 00:57 5648 +bitelist.doc.r25779.tar.xz 28-Feb-2019 02:23 362388 +bitelist.doc.tar.xz 28-Feb-2019 02:23 362388 +bitelist.r25779.tar.xz 28-Feb-2019 02:23 5352 +bitelist.source.r25779.tar.xz 28-Feb-2019 02:23 6228 +bitelist.source.tar.xz 28-Feb-2019 02:23 6228 +bitelist.tar.xz 28-Feb-2019 02:23 5352 +bithesis.doc.r75220.tar.xz 15-May-2025 23:50 4770932 +bithesis.doc.tar.xz 15-May-2025 23:50 4770932 +bithesis.r75220.tar.xz 15-May-2025 23:50 24444 +bithesis.source.r75220.tar.xz 15-May-2025 23:50 33276 +bithesis.source.tar.xz 15-May-2025 23:50 33276 +bithesis.tar.xz 15-May-2025 23:50 24444 +bitpattern.doc.r39073.tar.xz 28-Feb-2019 02:23 175700 +bitpattern.doc.tar.xz 28-Feb-2019 02:23 175700 +bitpattern.r39073.tar.xz 28-Feb-2019 02:23 2156 +bitpattern.source.r39073.tar.xz 28-Feb-2019 02:23 6764 +bitpattern.source.tar.xz 28-Feb-2019 02:23 6764 +bitpattern.tar.xz 28-Feb-2019 02:23 2156 +bitset.doc.r53837.tar.xz 19-Feb-2020 00:55 616520 +bitset.doc.tar.xz 19-Feb-2020 00:55 616520 +bitset.r53837.tar.xz 19-Feb-2020 00:55 5712 +bitset.source.r53837.tar.xz 19-Feb-2020 00:55 14628 +bitset.source.tar.xz 19-Feb-2020 00:55 14628 +bitset.tar.xz 19-Feb-2020 00:55 5712 +bitter.doc.r67598.tar.xz 10-Jul-2023 23:45 46636 +bitter.doc.tar.xz 10-Jul-2023 23:45 46636 +bitter.r67598.tar.xz 10-Jul-2023 23:45 191596 +bitter.tar.xz 10-Jul-2023 23:45 191596 +bizcard.doc.r15878.tar.xz 28-Feb-2019 02:23 74552 +bizcard.doc.tar.xz 28-Feb-2019 02:23 74552 +bizcard.r15878.tar.xz 28-Feb-2019 02:23 2032 +bizcard.source.r15878.tar.xz 28-Feb-2019 02:23 4376 +bizcard.source.tar.xz 28-Feb-2019 02:23 4376 +bizcard.tar.xz 28-Feb-2019 02:23 2032 +bjfuthesis.doc.r59809.tar.xz 02-Jul-2021 23:52 9920760 +bjfuthesis.doc.tar.xz 02-Jul-2021 23:52 9920760 +bjfuthesis.r59809.tar.xz 02-Jul-2021 23:52 2928 +bjfuthesis.tar.xz 02-Jul-2021 23:52 2928 +blacklettert1.doc.r15878.tar.xz 28-Feb-2019 02:23 88892 +blacklettert1.doc.tar.xz 28-Feb-2019 02:23 88892 +blacklettert1.r15878.tar.xz 28-Feb-2019 02:23 12436 +blacklettert1.source.r15878.tar.xz 28-Feb-2019 02:23 42424 +blacklettert1.source.tar.xz 28-Feb-2019 02:23 42424 +blacklettert1.tar.xz 28-Feb-2019 02:23 12436 +blindtext.doc.r25039.tar.xz 28-Feb-2019 02:23 341172 +blindtext.doc.tar.xz 28-Feb-2019 02:23 341172 +blindtext.r25039.tar.xz 28-Feb-2019 02:23 10516 +blindtext.source.r25039.tar.xz 28-Feb-2019 02:23 17668 +blindtext.source.tar.xz 28-Feb-2019 02:23 17668 +blindtext.tar.xz 28-Feb-2019 02:23 10516 +blkarray.doc.r36406.tar.xz 28-Feb-2019 02:23 294168 +blkarray.doc.tar.xz 28-Feb-2019 02:23 294168 +blkarray.r36406.tar.xz 28-Feb-2019 02:23 18876 +blkarray.tar.xz 28-Feb-2019 02:23 18876 +blochsphere.doc.r38388.tar.xz 28-Feb-2019 02:23 99736 +blochsphere.doc.tar.xz 28-Feb-2019 02:23 99736 +blochsphere.r38388.tar.xz 28-Feb-2019 02:23 3816 +blochsphere.source.r38388.tar.xz 28-Feb-2019 02:23 7340 +blochsphere.source.tar.xz 28-Feb-2019 02:23 7340 +blochsphere.tar.xz 28-Feb-2019 02:23 3816 +block.doc.r17209.tar.xz 28-Feb-2019 02:23 60880 +block.doc.tar.xz 28-Feb-2019 02:23 60880 +block.r17209.tar.xz 28-Feb-2019 02:23 924 +block.tar.xz 28-Feb-2019 02:23 924 +blockdraw_mp.doc.r15878.tar.xz 28-Feb-2019 02:23 276436 +blockdraw_mp.doc.tar.xz 28-Feb-2019 02:23 276436 +blockdraw_mp.r15878.tar.xz 28-Feb-2019 02:23 4856 +blockdraw_mp.tar.xz 28-Feb-2019 02:23 4856 +blopentype.doc.r69080.tar.xz 10-Dec-2023 00:53 149464 +blopentype.doc.tar.xz 10-Dec-2023 00:53 149464 +blopentype.r69080.tar.xz 10-Dec-2023 00:53 16308 +blopentype.tar.xz 10-Dec-2023 00:53 16308 +bloques.doc.r22490.tar.xz 28-Feb-2019 02:23 124652 +bloques.doc.tar.xz 28-Feb-2019 02:23 124652 +bloques.r22490.tar.xz 28-Feb-2019 02:23 1748 +bloques.tar.xz 28-Feb-2019 02:23 1748 +blowup.doc.r67640.tar.xz 15-Jul-2023 23:51 304236 +blowup.doc.tar.xz 15-Jul-2023 23:51 304236 +blowup.r67640.tar.xz 15-Jul-2023 23:51 2684 +blowup.source.r67640.tar.xz 15-Jul-2023 23:51 5356 +blowup.source.tar.xz 15-Jul-2023 23:51 5356 +blowup.tar.xz 15-Jul-2023 23:51 2684 +blox.doc.r57949.tar.xz 27-Feb-2021 00:28 378432 +blox.doc.tar.xz 27-Feb-2021 00:28 378432 +blox.r57949.tar.xz 27-Feb-2021 00:28 2328 +blox.source.r57949.tar.xz 27-Feb-2021 00:28 13840 +blox.source.tar.xz 27-Feb-2021 00:28 13840 +blox.tar.xz 27-Feb-2021 00:28 2328 +bmstu-iu8.doc.r76373.tar.xz 21-Sep-2025 23:50 171492 +bmstu-iu8.doc.tar.xz 21-Sep-2025 23:50 171492 +bmstu-iu8.r76373.tar.xz 21-Sep-2025 23:50 13760 +bmstu-iu8.tar.xz 21-Sep-2025 23:50 13760 +bmstu.doc.r65897.tar.xz 20-Feb-2023 22:10 1289736 +bmstu.doc.tar.xz 20-Feb-2023 22:10 1289736 +bmstu.r65897.tar.xz 20-Feb-2023 22:10 135664 +bmstu.tar.xz 20-Feb-2023 22:10 135664 +bnumexpr.doc.r76420.tar.xz 27-Sep-2025 23:53 198184 +bnumexpr.doc.tar.xz 27-Sep-2025 23:53 198184 +bnumexpr.r76420.tar.xz 27-Sep-2025 23:53 4952 +bnumexpr.source.r76420.tar.xz 27-Sep-2025 23:53 38440 +bnumexpr.source.tar.xz 27-Sep-2025 23:53 38440 +bnumexpr.tar.xz 27-Sep-2025 23:53 4952 +bodegraph.doc.r72949.tar.xz 24-Nov-2024 01:04 471024 +bodegraph.doc.tar.xz 24-Nov-2024 01:04 471024 +bodegraph.r72949.tar.xz 24-Nov-2024 01:04 16216 +bodegraph.tar.xz 24-Nov-2024 01:04 16216 +bodeplot.doc.r76422.tar.xz 27-Sep-2025 23:53 797712 +bodeplot.doc.tar.xz 27-Sep-2025 23:53 797712 +bodeplot.r76422.tar.xz 27-Sep-2025 23:53 8364 +bodeplot.source.r76422.tar.xz 27-Sep-2025 23:53 20792 +bodeplot.source.tar.xz 27-Sep-2025 23:53 20792 +bodeplot.tar.xz 27-Sep-2025 23:53 8364 +bohr.doc.r62977.tar.xz 07-Apr-2022 23:53 424416 +bohr.doc.tar.xz 07-Apr-2022 23:53 424416 +bohr.r62977.tar.xz 07-Apr-2022 23:53 3652 +bohr.tar.xz 07-Apr-2022 23:53 3652 +boisik.doc.r15878.tar.xz 28-Feb-2019 02:23 939068 +boisik.doc.tar.xz 28-Feb-2019 02:23 939068 +boisik.r15878.tar.xz 28-Feb-2019 02:23 215572 +boisik.tar.xz 28-Feb-2019 02:23 215572 +boites.doc.r32235.tar.xz 28-Feb-2019 02:23 273004 +boites.doc.tar.xz 28-Feb-2019 02:23 273004 +boites.r32235.tar.xz 28-Feb-2019 02:23 4276 +boites.source.r32235.tar.xz 28-Feb-2019 02:23 6424 +boites.source.tar.xz 28-Feb-2019 02:23 6424 +boites.tar.xz 28-Feb-2019 02:23 4276 +bold-extra.doc.r17076.tar.xz 28-Feb-2019 02:23 217976 +bold-extra.doc.tar.xz 28-Feb-2019 02:23 217976 +bold-extra.r17076.tar.xz 28-Feb-2019 02:23 1452 +bold-extra.tar.xz 28-Feb-2019 02:23 1452 +boldtensors.doc.r15878.tar.xz 28-Feb-2019 02:23 53640 +boldtensors.doc.tar.xz 28-Feb-2019 02:23 53640 +boldtensors.r15878.tar.xz 28-Feb-2019 02:23 2616 +boldtensors.tar.xz 28-Feb-2019 02:23 2616 +bondgraph.doc.r21670.tar.xz 28-Feb-2019 02:23 48760 +bondgraph.doc.tar.xz 28-Feb-2019 02:23 48760 +bondgraph.r21670.tar.xz 28-Feb-2019 02:23 1812 +bondgraph.tar.xz 28-Feb-2019 02:23 1812 +bondgraphs.doc.r36605.tar.xz 28-Feb-2019 02:23 363692 +bondgraphs.doc.tar.xz 28-Feb-2019 02:23 363692 +bondgraphs.r36605.tar.xz 28-Feb-2019 02:23 2376 +bondgraphs.source.r36605.tar.xz 28-Feb-2019 02:23 10308 +bondgraphs.source.tar.xz 28-Feb-2019 02:23 10308 +bondgraphs.tar.xz 28-Feb-2019 02:23 2376 +bonum-otf.doc.r76342.tar.xz 17-Sep-2025 23:50 459224 +bonum-otf.doc.tar.xz 17-Sep-2025 23:50 459224 +bonum-otf.r76342.tar.xz 17-Sep-2025 23:50 2232 +bonum-otf.tar.xz 17-Sep-2025 23:50 2232 +book-of-common-prayer.doc.r62240.tar.xz 28-Feb-2022 00:32 129520 +book-of-common-prayer.doc.tar.xz 28-Feb-2022 00:32 129520 +book-of-common-prayer.r62240.tar.xz 28-Feb-2022 00:32 2780 +book-of-common-prayer.tar.xz 28-Feb-2022 00:32 2780 +bookcover.doc.r74795.tar.xz 30-Mar-2025 23:49 1804336 +bookcover.doc.tar.xz 30-Mar-2025 23:49 1804336 +bookcover.r74795.tar.xz 30-Mar-2025 23:49 6824 +bookcover.source.r74795.tar.xz 30-Mar-2025 23:49 15576 +bookcover.source.tar.xz 30-Mar-2025 23:49 15576 +bookcover.tar.xz 30-Mar-2025 23:49 6824 +bookdb.doc.r37536.tar.xz 28-Feb-2019 02:23 209744 +bookdb.doc.tar.xz 28-Feb-2019 02:23 209744 +bookdb.r37536.tar.xz 28-Feb-2019 02:23 7052 +bookdb.tar.xz 28-Feb-2019 02:23 7052 +bookest.doc.r15878.tar.xz 28-Feb-2019 02:23 209440 +bookest.doc.tar.xz 28-Feb-2019 02:23 209440 +bookest.r15878.tar.xz 28-Feb-2019 02:23 4204 +bookest.tar.xz 28-Feb-2019 02:23 4204 +bookhands.doc.r46480.tar.xz 28-Feb-2019 02:23 1610264 +bookhands.doc.tar.xz 28-Feb-2019 02:23 1610264 +bookhands.r46480.tar.xz 28-Feb-2019 02:23 139768 +bookhands.source.r46480.tar.xz 28-Feb-2019 02:23 84212 +bookhands.source.tar.xz 28-Feb-2019 02:23 84212 +bookhands.tar.xz 28-Feb-2019 02:23 139768 +booklet.doc.r15878.tar.xz 28-Feb-2019 02:23 207680 +booklet.doc.tar.xz 28-Feb-2019 02:23 207680 +booklet.r15878.tar.xz 28-Feb-2019 02:23 3184 +booklet.source.r15878.tar.xz 28-Feb-2019 02:23 23512 +booklet.source.tar.xz 28-Feb-2019 02:23 23512 +booklet.tar.xz 28-Feb-2019 02:23 3184 +bookman.r61719.tar.xz 24-Jan-2022 00:53 278744 +bookman.tar.xz 24-Jan-2022 00:53 278744 +bookmark.doc.r69084.tar.xz 11-Dec-2023 00:44 475876 +bookmark.doc.tar.xz 11-Dec-2023 00:44 475876 +bookmark.r69084.tar.xz 11-Dec-2023 00:44 8024 +bookmark.source.r69084.tar.xz 11-Dec-2023 00:44 18648 +bookmark.source.tar.xz 11-Dec-2023 00:44 18648 +bookmark.tar.xz 11-Dec-2023 00:44 8024 +bookshelf.aarch64-linux.r72501.tar.xz 08-Oct-2024 23:47 368 +bookshelf.aarch64-linux.tar.xz 08-Oct-2024 23:47 368 +bookshelf.amd64-freebsd.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.amd64-freebsd.tar.xz 08-Oct-2024 23:47 372 +bookshelf.amd64-netbsd.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.amd64-netbsd.tar.xz 08-Oct-2024 23:47 372 +bookshelf.armhf-linux.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.armhf-linux.tar.xz 08-Oct-2024 23:47 372 +bookshelf.doc.r72521.tar.xz 10-Oct-2024 23:46 8705812 +bookshelf.doc.tar.xz 10-Oct-2024 23:46 8705812 +bookshelf.i386-freebsd.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.i386-freebsd.tar.xz 08-Oct-2024 23:47 372 +bookshelf.i386-linux.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.i386-linux.tar.xz 08-Oct-2024 23:47 372 +bookshelf.i386-netbsd.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.i386-netbsd.tar.xz 08-Oct-2024 23:47 372 +bookshelf.i386-solaris.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.i386-solaris.tar.xz 08-Oct-2024 23:47 372 +bookshelf.r72521.tar.xz 10-Oct-2024 23:46 8036 +bookshelf.tar.xz 10-Oct-2024 23:46 8036 +bookshelf.universal-darwin.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.universal-darwin.tar.xz 08-Oct-2024 23:47 372 +bookshelf.windows.r72501.tar.xz 08-Oct-2024 23:47 2372 +bookshelf.windows.tar.xz 08-Oct-2024 23:47 2372 +bookshelf.x86_64-cygwin.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.x86_64-cygwin.tar.xz 08-Oct-2024 23:47 372 +bookshelf.x86_64-darwinlegacy.r72501.tar.xz 08-Oct-2024 23:47 376 +bookshelf.x86_64-darwinlegacy.tar.xz 08-Oct-2024 23:47 376 +bookshelf.x86_64-linux.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.x86_64-linux.tar.xz 08-Oct-2024 23:47 372 +bookshelf.x86_64-linuxmusl.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.x86_64-linuxmusl.tar.xz 08-Oct-2024 23:47 372 +bookshelf.x86_64-solaris.r72501.tar.xz 08-Oct-2024 23:47 372 +bookshelf.x86_64-solaris.tar.xz 08-Oct-2024 23:47 372 +booktabs-de.doc.r21907.tar.xz 28-Feb-2019 02:23 273312 +booktabs-de.doc.tar.xz 28-Feb-2019 02:23 273312 +booktabs-de.r21907.tar.xz 28-Feb-2019 02:23 392 +booktabs-de.tar.xz 28-Feb-2019 02:23 392 +booktabs-fr.doc.r21948.tar.xz 28-Feb-2019 02:23 221368 +booktabs-fr.doc.tar.xz 28-Feb-2019 02:23 221368 +booktabs-fr.r21948.tar.xz 28-Feb-2019 02:23 420 +booktabs-fr.tar.xz 28-Feb-2019 02:23 420 +booktabs.doc.r53402.tar.xz 15-Jan-2020 00:54 295880 +booktabs.doc.tar.xz 15-Jan-2020 00:54 295880 +booktabs.r53402.tar.xz 15-Jan-2020 00:54 2196 +booktabs.source.r53402.tar.xz 15-Jan-2020 00:54 14644 +booktabs.source.tar.xz 15-Jan-2020 00:54 14644 +booktabs.tar.xz 15-Jan-2020 00:54 2196 +boolexpr.doc.r17830.tar.xz 28-Feb-2019 02:23 142296 +boolexpr.doc.tar.xz 28-Feb-2019 02:23 142296 +boolexpr.r17830.tar.xz 28-Feb-2019 02:23 2772 +boolexpr.source.r17830.tar.xz 28-Feb-2019 02:23 11884 +boolexpr.source.tar.xz 28-Feb-2019 02:23 11884 +boolexpr.tar.xz 28-Feb-2019 02:23 2772 +boondox.doc.r54512.tar.xz 24-Mar-2020 00:56 102680 +boondox.doc.tar.xz 24-Mar-2020 00:56 102680 +boondox.r54512.tar.xz 24-Mar-2020 00:56 204696 +boondox.tar.xz 24-Mar-2020 00:56 204696 +bootstrapicons.doc.r76216.tar.xz 02-Sep-2025 23:49 1211536 +bootstrapicons.doc.tar.xz 02-Sep-2025 23:49 1211536 +bootstrapicons.r76216.tar.xz 02-Sep-2025 23:49 949544 +bootstrapicons.tar.xz 02-Sep-2025 23:49 949544 +bophook.doc.r17062.tar.xz 28-Feb-2019 02:23 44772 +bophook.doc.tar.xz 28-Feb-2019 02:23 44772 +bophook.r17062.tar.xz 28-Feb-2019 02:23 1764 +bophook.source.r17062.tar.xz 28-Feb-2019 02:23 4104 +bophook.source.tar.xz 28-Feb-2019 02:23 4104 +bophook.tar.xz 28-Feb-2019 02:23 1764 +borceux.doc.r21047.tar.xz 28-Feb-2019 02:23 15640 +borceux.doc.tar.xz 28-Feb-2019 02:23 15640 +borceux.r21047.tar.xz 28-Feb-2019 02:23 26844 +borceux.tar.xz 28-Feb-2019 02:23 26844 +bosisio.doc.r16989.tar.xz 28-Feb-2019 02:23 462336 +bosisio.doc.tar.xz 28-Feb-2019 02:23 462336 +bosisio.r16989.tar.xz 28-Feb-2019 02:23 6992 +bosisio.source.r16989.tar.xz 28-Feb-2019 02:23 23060 +bosisio.source.tar.xz 28-Feb-2019 02:23 23060 +bosisio.tar.xz 28-Feb-2019 02:23 6992 +boxedminipage.doc.r54827.tar.xz 21-Apr-2020 23:53 336440 +boxedminipage.doc.tar.xz 21-Apr-2020 23:53 336440 +boxedminipage.r54827.tar.xz 21-Apr-2020 23:53 1460 +boxedminipage.source.r54827.tar.xz 21-Apr-2020 23:53 4744 +boxedminipage.source.tar.xz 21-Apr-2020 23:53 4744 +boxedminipage.tar.xz 21-Apr-2020 23:53 1460 +boxhandler.doc.r28031.tar.xz 28-Feb-2019 02:23 325432 +boxhandler.doc.tar.xz 28-Feb-2019 02:23 325432 +boxhandler.r28031.tar.xz 28-Feb-2019 02:23 5484 +boxhandler.source.r28031.tar.xz 28-Feb-2019 02:23 22640 +boxhandler.source.tar.xz 28-Feb-2019 02:23 22640 +boxhandler.tar.xz 28-Feb-2019 02:23 5484 +bpchem.doc.r75878.tar.xz 23-Jul-2025 23:50 356700 +bpchem.doc.tar.xz 23-Jul-2025 23:50 356700 +bpchem.r75878.tar.xz 23-Jul-2025 23:50 3144 +bpchem.source.r75878.tar.xz 23-Jul-2025 23:50 5364 +bpchem.source.tar.xz 23-Jul-2025 23:50 5364 +bpchem.tar.xz 23-Jul-2025 23:50 3144 +bpolynomial.doc.r15878.tar.xz 28-Feb-2019 02:23 198608 +bpolynomial.doc.tar.xz 28-Feb-2019 02:23 198608 +bpolynomial.r15878.tar.xz 28-Feb-2019 02:23 2580 +bpolynomial.tar.xz 28-Feb-2019 02:23 2580 +br-lex.doc.r44939.tar.xz 28-Feb-2019 02:23 60588 +br-lex.doc.tar.xz 28-Feb-2019 02:23 60588 +br-lex.r44939.tar.xz 28-Feb-2019 02:23 2296 +br-lex.tar.xz 28-Feb-2019 02:23 2296 +bracealign.doc.r75001.tar.xz 22-Apr-2025 23:49 234332 +bracealign.doc.tar.xz 22-Apr-2025 23:49 234332 +bracealign.r75001.tar.xz 22-Apr-2025 23:49 1968 +bracealign.source.r75001.tar.xz 22-Apr-2025 23:49 8352 +bracealign.source.tar.xz 22-Apr-2025 23:49 8352 +bracealign.tar.xz 22-Apr-2025 23:49 1968 +bracketkey.doc.r17129.tar.xz 28-Feb-2019 02:23 292852 +bracketkey.doc.tar.xz 28-Feb-2019 02:23 292852 +bracketkey.r17129.tar.xz 28-Feb-2019 02:23 1792 +bracketkey.tar.xz 28-Feb-2019 02:23 1792 +braids.doc.r69398.tar.xz 13-Jan-2024 00:46 783420 +braids.doc.tar.xz 13-Jan-2024 00:46 783420 +braids.r69398.tar.xz 13-Jan-2024 00:46 8248 +braids.source.r69398.tar.xz 13-Jan-2024 00:46 16400 +braids.source.tar.xz 13-Jan-2024 00:46 16400 +braids.tar.xz 13-Jan-2024 00:46 8248 +braille.doc.r20655.tar.xz 28-Feb-2019 02:23 61288 +braille.doc.tar.xz 28-Feb-2019 02:23 61288 +braille.r20655.tar.xz 28-Feb-2019 02:23 5980 +braille.tar.xz 28-Feb-2019 02:23 5980 +braket.doc.r17127.tar.xz 28-Feb-2019 02:23 215656 +braket.doc.tar.xz 28-Feb-2019 02:23 215656 +braket.r17127.tar.xz 28-Feb-2019 02:23 2028 +braket.tar.xz 28-Feb-2019 02:23 2028 +brandeis-dissertation.doc.r67935.tar.xz 15-Aug-2023 23:47 173272 +brandeis-dissertation.doc.tar.xz 15-Aug-2023 23:47 173272 +brandeis-dissertation.r67935.tar.xz 15-Aug-2023 23:47 2024 +brandeis-dissertation.source.r67935.tar.xz 15-Aug-2023 23:47 4532 +brandeis-dissertation.source.tar.xz 15-Aug-2023 23:47 4532 +brandeis-dissertation.tar.xz 15-Aug-2023 23:47 2024 +brandeis-problemset.doc.r50991.tar.xz 04-May-2019 23:38 148788 +brandeis-problemset.doc.tar.xz 04-May-2019 23:38 148788 +brandeis-problemset.r50991.tar.xz 04-May-2019 23:38 6860 +brandeis-problemset.tar.xz 04-May-2019 23:38 6860 +brandeis-thesis.doc.r68092.tar.xz 27-Aug-2023 23:45 151072 +brandeis-thesis.doc.tar.xz 27-Aug-2023 23:45 151072 +brandeis-thesis.r68092.tar.xz 27-Aug-2023 23:45 1892 +brandeis-thesis.source.r68092.tar.xz 27-Aug-2023 23:45 3844 +brandeis-thesis.source.tar.xz 27-Aug-2023 23:45 3844 +brandeis-thesis.tar.xz 27-Aug-2023 23:45 1892 +breakcites.doc.r21014.tar.xz 28-Feb-2019 02:23 148116 +breakcites.doc.tar.xz 28-Feb-2019 02:23 148116 +breakcites.r21014.tar.xz 28-Feb-2019 02:23 956 +breakcites.tar.xz 28-Feb-2019 02:23 956 +breakurl.doc.r29901.tar.xz 28-Feb-2019 02:23 107520 +breakurl.doc.tar.xz 28-Feb-2019 02:23 107520 +breakurl.r29901.tar.xz 28-Feb-2019 02:23 3100 +breakurl.source.r29901.tar.xz 28-Feb-2019 02:23 10328 +breakurl.source.tar.xz 28-Feb-2019 02:23 10328 +breakurl.tar.xz 28-Feb-2019 02:23 3100 +bredzenie.doc.r44371.tar.xz 28-Feb-2019 02:23 169444 +bredzenie.doc.tar.xz 28-Feb-2019 02:23 169444 +bredzenie.r44371.tar.xz 28-Feb-2019 02:23 49840 +bredzenie.tar.xz 28-Feb-2019 02:23 49840 +breqn.doc.r60881.tar.xz 28-Oct-2021 23:53 1063132 +breqn.doc.tar.xz 28-Oct-2021 23:53 1063132 +breqn.r60881.tar.xz 28-Oct-2021 23:53 24524 +breqn.source.r60881.tar.xz 28-Oct-2021 23:53 80324 +breqn.source.tar.xz 28-Oct-2021 23:53 80324 +breqn.tar.xz 28-Oct-2021 23:53 24524 +bropd.doc.r35383.tar.xz 28-Feb-2019 02:23 61592 +bropd.doc.tar.xz 28-Feb-2019 02:23 61592 +bropd.r35383.tar.xz 28-Feb-2019 02:23 1720 +bropd.source.r35383.tar.xz 28-Feb-2019 02:23 4136 +bropd.source.tar.xz 28-Feb-2019 02:23 4136 +bropd.tar.xz 28-Feb-2019 02:23 1720 +broydensolve.doc.r75883.tar.xz 24-Jul-2025 23:48 176936 +broydensolve.doc.tar.xz 24-Jul-2025 23:48 176936 +broydensolve.r75883.tar.xz 24-Jul-2025 23:48 3228 +broydensolve.tar.xz 24-Jul-2025 23:48 3228 +brushscr.doc.r28363.tar.xz 28-Feb-2019 02:23 5120 +brushscr.doc.tar.xz 28-Feb-2019 02:23 5120 +brushscr.r28363.tar.xz 28-Feb-2019 02:23 48600 +brushscr.tar.xz 28-Feb-2019 02:23 48600 +bubblesort.doc.r56070.tar.xz 07-Aug-2020 23:57 222896 +bubblesort.doc.tar.xz 07-Aug-2020 23:57 222896 +bubblesort.r56070.tar.xz 07-Aug-2020 23:57 1908 +bubblesort.source.r56070.tar.xz 07-Aug-2020 23:57 7916 +bubblesort.source.tar.xz 07-Aug-2020 23:57 7916 +bubblesort.tar.xz 07-Aug-2020 23:57 1908 +buctthesis.doc.r67818.tar.xz 04-Aug-2023 23:44 467908 +buctthesis.doc.tar.xz 04-Aug-2023 23:44 467908 +buctthesis.r67818.tar.xz 04-Aug-2023 23:44 9528 +buctthesis.source.r67818.tar.xz 04-Aug-2023 23:44 27588 +buctthesis.source.tar.xz 04-Aug-2023 23:44 27588 +buctthesis.tar.xz 04-Aug-2023 23:44 9528 +bullcntr.doc.r15878.tar.xz 28-Feb-2019 02:23 726416 +bullcntr.doc.tar.xz 28-Feb-2019 02:23 726416 +bullcntr.r15878.tar.xz 28-Feb-2019 02:23 2536 +bullcntr.source.r15878.tar.xz 28-Feb-2019 02:23 17072 +bullcntr.source.tar.xz 28-Feb-2019 02:23 17072 +bullcntr.tar.xz 28-Feb-2019 02:23 2536 +bundledoc.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:23 364 +bundledoc.aarch64-linux.tar.xz 28-Feb-2019 02:23 364 +bundledoc.amd64-freebsd.r17794.tar.xz 28-Feb-2019 02:23 364 +bundledoc.amd64-freebsd.tar.xz 28-Feb-2019 02:23 364 +bundledoc.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:23 360 +bundledoc.amd64-netbsd.tar.xz 28-Feb-2019 02:23 360 +bundledoc.armhf-linux.r30015.tar.xz 28-Feb-2019 02:23 360 +bundledoc.armhf-linux.tar.xz 28-Feb-2019 02:23 360 +bundledoc.doc.r74306.tar.xz 27-Feb-2025 00:49 80968 +bundledoc.doc.tar.xz 27-Feb-2025 00:49 80968 +bundledoc.i386-freebsd.r17794.tar.xz 28-Feb-2019 02:23 364 +bundledoc.i386-freebsd.tar.xz 28-Feb-2019 02:23 364 +bundledoc.i386-linux.r17794.tar.xz 28-Feb-2019 02:23 360 +bundledoc.i386-linux.tar.xz 28-Feb-2019 02:23 360 +bundledoc.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:23 364 +bundledoc.i386-netbsd.tar.xz 28-Feb-2019 02:23 364 +bundledoc.i386-solaris.r17794.tar.xz 28-Feb-2019 02:23 364 +bundledoc.i386-solaris.tar.xz 28-Feb-2019 02:23 364 +bundledoc.r74306.tar.xz 27-Feb-2025 00:49 12764 +bundledoc.tar.xz 27-Feb-2025 00:49 12764 +bundledoc.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 364 +bundledoc.universal-darwin.tar.xz 25-Feb-2021 18:16 364 +bundledoc.windows.r65891.tar.xz 20-Feb-2023 22:10 2360 +bundledoc.windows.tar.xz 20-Feb-2023 22:10 2360 +bundledoc.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:23 364 +bundledoc.x86_64-cygwin.tar.xz 28-Feb-2019 02:23 364 +bundledoc.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:23 368 +bundledoc.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:23 368 +bundledoc.x86_64-linux.r17794.tar.xz 28-Feb-2019 02:23 360 +bundledoc.x86_64-linux.tar.xz 28-Feb-2019 02:23 360 +bundledoc.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:23 368 +bundledoc.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:23 368 +bundledoc.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:23 364 +bundledoc.x86_64-solaris.tar.xz 28-Feb-2019 02:23 364 +burmese.doc.r25185.tar.xz 28-Feb-2019 02:23 133020 +burmese.doc.tar.xz 28-Feb-2019 02:23 133020 +burmese.r25185.tar.xz 28-Feb-2019 02:23 54644 +burmese.source.r25185.tar.xz 28-Feb-2019 02:23 3436 +burmese.source.tar.xz 28-Feb-2019 02:23 3436 +burmese.tar.xz 28-Feb-2019 02:23 54644 +businesscard-qrcode.doc.r61719.tar.xz 24-Jan-2022 00:53 540992 +businesscard-qrcode.doc.tar.xz 24-Jan-2022 00:53 540992 +businesscard-qrcode.r61719.tar.xz 24-Jan-2022 00:53 3724 +businesscard-qrcode.tar.xz 24-Jan-2022 00:53 3724 +bussproofs-extra.doc.r51299.tar.xz 02-Jun-2019 23:38 231432 +bussproofs-extra.doc.tar.xz 02-Jun-2019 23:38 231432 +bussproofs-extra.r51299.tar.xz 02-Jun-2019 23:38 2548 +bussproofs-extra.source.r51299.tar.xz 02-Jun-2019 23:38 6260 +bussproofs-extra.source.tar.xz 02-Jun-2019 23:38 6260 +bussproofs-extra.tar.xz 02-Jun-2019 23:38 2548 +bussproofs.doc.r54080.tar.xz 04-Mar-2020 22:49 104936 +bussproofs.doc.tar.xz 04-Mar-2020 22:49 104936 +bussproofs.r54080.tar.xz 04-Mar-2020 22:49 8804 +bussproofs.tar.xz 04-Mar-2020 22:49 8804 +bxbase.doc.r66115.tar.xz 24-Feb-2023 00:57 76368 +bxbase.doc.tar.xz 24-Feb-2023 00:57 76368 +bxbase.r66115.tar.xz 24-Feb-2023 00:57 22836 +bxbase.tar.xz 24-Feb-2023 00:57 22836 +bxcalc.doc.r56431.tar.xz 25-Sep-2020 23:56 292944 +bxcalc.doc.tar.xz 25-Sep-2020 23:56 292944 +bxcalc.r56431.tar.xz 25-Sep-2020 23:56 3400 +bxcalc.tar.xz 25-Sep-2020 23:56 3400 +bxcjkjatype.doc.r67705.tar.xz 22-Jul-2023 23:55 1189172 +bxcjkjatype.doc.tar.xz 22-Jul-2023 23:55 1189172 +bxcjkjatype.r67705.tar.xz 22-Jul-2023 23:55 8556 +bxcjkjatype.tar.xz 22-Jul-2023 23:55 8556 +bxcoloremoji.doc.r74806.tar.xz 01-Apr-2025 23:52 2697312 +bxcoloremoji.doc.tar.xz 01-Apr-2025 23:52 2697312 +bxcoloremoji.r74806.tar.xz 01-Apr-2025 23:52 33700 +bxcoloremoji.tar.xz 01-Apr-2025 23:52 33700 +bxdpx-beamer.doc.r41813.tar.xz 28-Feb-2019 02:23 1960 +bxdpx-beamer.doc.tar.xz 28-Feb-2019 02:23 1960 +bxdpx-beamer.r41813.tar.xz 28-Feb-2019 02:23 1380 +bxdpx-beamer.tar.xz 28-Feb-2019 02:23 1380 +bxdvidriver.doc.r43219.tar.xz 28-Feb-2019 02:23 2232 +bxdvidriver.doc.tar.xz 28-Feb-2019 02:23 2232 +bxdvidriver.r43219.tar.xz 28-Feb-2019 02:23 2660 +bxdvidriver.tar.xz 28-Feb-2019 02:23 2660 +bxeepic.doc.r30559.tar.xz 28-Feb-2019 02:23 10552 +bxeepic.doc.tar.xz 28-Feb-2019 02:23 10552 +bxeepic.r30559.tar.xz 28-Feb-2019 02:23 7136 +bxeepic.tar.xz 28-Feb-2019 02:23 7136 +bxenclose.doc.r40213.tar.xz 28-Feb-2019 02:23 1856 +bxenclose.doc.tar.xz 28-Feb-2019 02:23 1856 +bxenclose.r40213.tar.xz 28-Feb-2019 02:23 1764 +bxenclose.tar.xz 28-Feb-2019 02:23 1764 +bxghost.doc.r66147.tar.xz 26-Feb-2023 00:54 2012 +bxghost.doc.tar.xz 26-Feb-2023 00:54 2012 +bxghost.r66147.tar.xz 26-Feb-2023 00:54 2016 +bxghost.tar.xz 26-Feb-2023 00:54 2016 +bxjaholiday.doc.r60636.tar.xz 28-Sep-2021 23:51 210340 +bxjaholiday.doc.tar.xz 28-Sep-2021 23:51 210340 +bxjaholiday.r60636.tar.xz 28-Sep-2021 23:51 5600 +bxjaholiday.tar.xz 28-Sep-2021 23:51 5600 +bxjalipsum.doc.r67620.tar.xz 13-Jul-2023 23:45 3028 +bxjalipsum.doc.tar.xz 13-Jul-2023 23:45 3028 +bxjalipsum.r67620.tar.xz 13-Jul-2023 23:45 26344 +bxjalipsum.tar.xz 13-Jul-2023 23:45 26344 +bxjaprnind.doc.r59641.tar.xz 19-Jun-2021 23:52 163424 +bxjaprnind.doc.tar.xz 19-Jun-2021 23:52 163424 +bxjaprnind.r59641.tar.xz 19-Jun-2021 23:52 3180 +bxjaprnind.tar.xz 19-Jun-2021 23:52 3180 +bxjatoucs.doc.r71870.tar.xz 22-Jul-2024 23:48 2252 +bxjatoucs.doc.tar.xz 22-Jul-2024 23:48 2252 +bxjatoucs.r71870.tar.xz 22-Jul-2024 23:48 41344 +bxjatoucs.tar.xz 22-Jul-2024 23:48 41344 +bxjscls.doc.r75447.tar.xz 07-Jun-2025 23:48 1301172 +bxjscls.doc.tar.xz 07-Jun-2025 23:48 1301172 +bxjscls.r75447.tar.xz 07-Jun-2025 23:48 35232 +bxjscls.source.r75447.tar.xz 07-Jun-2025 23:48 94428 +bxjscls.source.tar.xz 07-Jun-2025 23:48 94428 +bxjscls.tar.xz 07-Jun-2025 23:48 35232 +bxnewfont.doc.r44173.tar.xz 28-Feb-2019 02:23 2376 +bxnewfont.doc.tar.xz 28-Feb-2019 02:23 2376 +bxnewfont.r44173.tar.xz 28-Feb-2019 02:23 4760 +bxnewfont.tar.xz 28-Feb-2019 02:23 4760 +bxorigcapt.doc.r64072.tar.xz 07-Aug-2022 23:53 254532 +bxorigcapt.doc.tar.xz 07-Aug-2022 23:53 254532 +bxorigcapt.r64072.tar.xz 07-Aug-2022 23:53 2508 +bxorigcapt.tar.xz 07-Aug-2022 23:53 2508 +bxpapersize.doc.r63174.tar.xz 29-Apr-2022 23:52 3384 +bxpapersize.doc.tar.xz 29-Apr-2022 23:52 3384 +bxpapersize.r63174.tar.xz 29-Apr-2022 23:52 4768 +bxpapersize.tar.xz 29-Apr-2022 23:52 4768 +bxpdfver.doc.r74105.tar.xz 18-Feb-2025 22:36 5804 +bxpdfver.doc.tar.xz 18-Feb-2025 22:36 5804 +bxpdfver.r74105.tar.xz 18-Feb-2025 22:36 8468 +bxpdfver.tar.xz 18-Feb-2025 22:36 8468 +bxtexlogo.doc.r63231.tar.xz 05-May-2022 23:52 529644 +bxtexlogo.doc.tar.xz 05-May-2022 23:52 529644 +bxtexlogo.r63231.tar.xz 05-May-2022 23:52 6528 +bxtexlogo.tar.xz 05-May-2022 23:52 6528 +bxwareki.doc.r67594.tar.xz 09-Jul-2023 23:44 229380 +bxwareki.doc.tar.xz 09-Jul-2023 23:44 229380 +bxwareki.r67594.tar.xz 09-Jul-2023 23:44 6516 +bxwareki.tar.xz 09-Jul-2023 23:44 6516 +byo-twemojis.doc.r58917.tar.xz 19-Apr-2021 23:53 339352 +byo-twemojis.doc.tar.xz 19-Apr-2021 23:53 339352 +byo-twemojis.r58917.tar.xz 19-Apr-2021 23:53 41616 +byo-twemojis.source.r58917.tar.xz 19-Apr-2021 23:53 48520 +byo-twemojis.source.tar.xz 19-Apr-2021 23:53 48520 +byo-twemojis.tar.xz 19-Apr-2021 23:53 41616 +byrne.doc.r61943.tar.xz 09-Feb-2022 00:52 164212 +byrne.doc.tar.xz 09-Feb-2022 00:52 164212 +byrne.r61943.tar.xz 09-Feb-2022 00:52 24932 +byrne.tar.xz 09-Feb-2022 00:52 24932 +bytefield.doc.r74416.tar.xz 04-Mar-2025 00:50 763144 +bytefield.doc.tar.xz 04-Mar-2025 00:50 763144 +bytefield.r74416.tar.xz 04-Mar-2025 00:50 4968 +bytefield.source.r74416.tar.xz 04-Mar-2025 00:50 30032 +bytefield.source.tar.xz 04-Mar-2025 00:50 30032 +bytefield.tar.xz 04-Mar-2025 00:50 4968 +c-pascal.doc.r18337.tar.xz 28-Feb-2019 02:23 5548 +c-pascal.doc.tar.xz 28-Feb-2019 02:23 5548 +c-pascal.r18337.tar.xz 28-Feb-2019 02:23 4988 +c-pascal.tar.xz 28-Feb-2019 02:23 4988 +c90.doc.r60830.tar.xz 21-Oct-2021 23:52 94164 +c90.doc.tar.xz 21-Oct-2021 23:52 94164 +c90.r60830.tar.xz 21-Oct-2021 23:52 1924 +c90.source.r60830.tar.xz 21-Oct-2021 23:52 9824 +c90.source.tar.xz 21-Oct-2021 23:52 9824 +c90.tar.xz 21-Oct-2021 23:52 1924 +cabin.doc.r68373.tar.xz 26-Sep-2023 23:45 229840 +cabin.doc.tar.xz 26-Sep-2023 23:45 229840 +cabin.r68373.tar.xz 26-Sep-2023 23:45 2896412 +cabin.tar.xz 26-Sep-2023 23:45 2896412 +cachepic.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:23 344 +cachepic.aarch64-linux.tar.xz 28-Feb-2019 02:23 344 +cachepic.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:23 344 +cachepic.amd64-freebsd.tar.xz 28-Feb-2019 02:23 344 +cachepic.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:23 344 +cachepic.amd64-netbsd.tar.xz 28-Feb-2019 02:23 344 +cachepic.armhf-linux.r30015.tar.xz 28-Feb-2019 02:23 340 +cachepic.armhf-linux.tar.xz 28-Feb-2019 02:23 340 +cachepic.doc.r26313.tar.xz 28-Feb-2019 02:23 160372 +cachepic.doc.tar.xz 28-Feb-2019 02:23 160372 +cachepic.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:23 344 +cachepic.i386-freebsd.tar.xz 28-Feb-2019 02:23 344 +cachepic.i386-linux.r15543.tar.xz 28-Feb-2019 02:23 344 +cachepic.i386-linux.tar.xz 28-Feb-2019 02:23 344 +cachepic.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:23 340 +cachepic.i386-netbsd.tar.xz 28-Feb-2019 02:23 340 +cachepic.i386-solaris.r15543.tar.xz 28-Feb-2019 02:23 340 +cachepic.i386-solaris.tar.xz 28-Feb-2019 02:23 340 +cachepic.r26313.tar.xz 28-Feb-2019 02:23 4428 +cachepic.tar.xz 28-Feb-2019 02:23 4428 +cachepic.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +cachepic.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +cachepic.windows.r65891.tar.xz 20-Feb-2023 22:10 2308 +cachepic.windows.tar.xz 20-Feb-2023 22:10 2308 +cachepic.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:23 344 +cachepic.x86_64-cygwin.tar.xz 28-Feb-2019 02:23 344 +cachepic.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:23 352 +cachepic.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:23 352 +cachepic.x86_64-linux.r15543.tar.xz 28-Feb-2019 02:23 340 +cachepic.x86_64-linux.tar.xz 28-Feb-2019 02:23 340 +cachepic.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:23 348 +cachepic.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:23 348 +cachepic.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:23 344 +cachepic.x86_64-solaris.tar.xz 28-Feb-2019 02:23 344 +cahierprof.doc.r76102.tar.xz 20-Aug-2025 23:45 667620 +cahierprof.doc.tar.xz 20-Aug-2025 23:45 667620 +cahierprof.r76102.tar.xz 20-Aug-2025 23:45 7568 +cahierprof.tar.xz 20-Aug-2025 23:45 7568 +caladea.doc.r64549.tar.xz 29-Sep-2022 23:52 93528 +caladea.doc.tar.xz 29-Sep-2022 23:52 93528 +caladea.r64549.tar.xz 29-Sep-2022 23:52 343472 +caladea.tar.xz 29-Sep-2022 23:52 343472 +calcage.doc.r27725.tar.xz 28-Feb-2019 02:23 279664 +calcage.doc.tar.xz 28-Feb-2019 02:23 279664 +calcage.r27725.tar.xz 28-Feb-2019 02:23 1464 +calcage.source.r27725.tar.xz 28-Feb-2019 02:23 5820 +calcage.source.tar.xz 28-Feb-2019 02:23 5820 +calcage.tar.xz 28-Feb-2019 02:23 1464 +calcfrac.doc.r68684.tar.xz 28-Oct-2023 23:50 68888 +calcfrac.doc.tar.xz 28-Oct-2023 23:50 68888 +calcfrac.r68684.tar.xz 28-Oct-2023 23:50 2640 +calcfrac.tar.xz 28-Oct-2023 23:50 2640 +calctab.doc.r15878.tar.xz 28-Feb-2019 02:23 407400 +calctab.doc.tar.xz 28-Feb-2019 02:23 407400 +calctab.r15878.tar.xz 28-Feb-2019 02:23 4680 +calctab.tar.xz 28-Feb-2019 02:23 4680 +calculation.doc.r35973.tar.xz 28-Feb-2019 02:23 98544 +calculation.doc.tar.xz 28-Feb-2019 02:23 98544 +calculation.r35973.tar.xz 28-Feb-2019 02:23 3316 +calculation.source.r35973.tar.xz 28-Feb-2019 02:23 9640 +calculation.source.tar.xz 28-Feb-2019 02:23 9640 +calculation.tar.xz 28-Feb-2019 02:23 3316 +calculator.doc.r64424.tar.xz 17-Sep-2022 23:53 569004 +calculator.doc.tar.xz 17-Sep-2022 23:53 569004 +calculator.r64424.tar.xz 17-Sep-2022 23:53 10164 +calculator.source.r64424.tar.xz 17-Sep-2022 23:53 29892 +calculator.source.tar.xz 17-Sep-2022 23:53 29892 +calculator.tar.xz 17-Sep-2022 23:53 10164 +calculatoritems.doc.r76037.tar.xz 12-Aug-2025 23:48 836672 +calculatoritems.doc.tar.xz 12-Aug-2025 23:48 836672 +calculatoritems.r76037.tar.xz 12-Aug-2025 23:48 6940 +calculatoritems.tar.xz 12-Aug-2025 23:48 6940 +calligra-type1.doc.r24302.tar.xz 28-Feb-2019 02:23 736 +calligra-type1.doc.tar.xz 28-Feb-2019 02:23 736 +calligra-type1.r24302.tar.xz 28-Feb-2019 02:23 59668 +calligra-type1.tar.xz 28-Feb-2019 02:23 59668 +calligra.doc.r15878.tar.xz 28-Feb-2019 02:23 77272 +calligra.doc.tar.xz 28-Feb-2019 02:23 77272 +calligra.r15878.tar.xz 28-Feb-2019 02:23 42412 +calligra.tar.xz 28-Feb-2019 02:23 42412 +callouts-box.doc.r74635.tar.xz 16-Mar-2025 01:10 164184 +callouts-box.doc.tar.xz 16-Mar-2025 01:10 164184 +callouts-box.r74635.tar.xz 16-Mar-2025 01:10 1552 +callouts-box.source.r74635.tar.xz 16-Mar-2025 01:10 2656 +callouts-box.source.tar.xz 16-Mar-2025 01:10 2656 +callouts-box.tar.xz 16-Mar-2025 01:10 1552 +callouts.doc.r44899.tar.xz 28-Feb-2019 02:23 200208 +callouts.doc.tar.xz 28-Feb-2019 02:23 200208 +callouts.r44899.tar.xz 28-Feb-2019 02:23 1488 +callouts.tar.xz 28-Feb-2019 02:23 1488 +calrsfs.doc.r17125.tar.xz 28-Feb-2019 02:23 153676 +calrsfs.doc.tar.xz 28-Feb-2019 02:23 153676 +calrsfs.r17125.tar.xz 28-Feb-2019 02:23 864 +calrsfs.tar.xz 28-Feb-2019 02:23 864 +cals.doc.r43003.tar.xz 28-Feb-2019 02:23 486132 +cals.doc.tar.xz 28-Feb-2019 02:23 486132 +cals.r43003.tar.xz 28-Feb-2019 02:23 5096 +cals.source.r43003.tar.xz 28-Feb-2019 02:23 18716 +cals.source.tar.xz 28-Feb-2019 02:23 18716 +cals.tar.xz 28-Feb-2019 02:23 5096 +calxxxx-yyyy.doc.r73249.tar.xz 01-Jan-2025 00:48 380996 +calxxxx-yyyy.doc.tar.xz 01-Jan-2025 00:48 380996 +calxxxx-yyyy.r73249.tar.xz 01-Jan-2025 00:48 6340 +calxxxx-yyyy.tar.xz 01-Jan-2025 00:48 6340 +cancel.doc.r32508.tar.xz 28-Feb-2019 02:23 261244 +cancel.doc.tar.xz 28-Feb-2019 02:23 261244 +cancel.r32508.tar.xz 28-Feb-2019 02:23 2904 +cancel.tar.xz 28-Feb-2019 02:23 2904 +canoniclayout.doc.r64889.tar.xz 02-Nov-2022 01:01 521108 +canoniclayout.doc.tar.xz 02-Nov-2022 01:01 521108 +canoniclayout.r64889.tar.xz 02-Nov-2022 01:01 2700 +canoniclayout.source.r64889.tar.xz 02-Nov-2022 01:01 11372 +canoniclayout.source.tar.xz 02-Nov-2022 01:01 11372 +canoniclayout.tar.xz 02-Nov-2022 01:01 2700 +cantarell.doc.r54512.tar.xz 24-Mar-2020 00:56 405644 +cantarell.doc.tar.xz 24-Mar-2020 00:56 405644 +cantarell.r54512.tar.xz 24-Mar-2020 00:56 1148748 +cantarell.tar.xz 24-Mar-2020 00:56 1148748 +capt-of.doc.r29803.tar.xz 28-Feb-2019 02:23 72600 +capt-of.doc.tar.xz 28-Feb-2019 02:23 72600 +capt-of.r29803.tar.xz 28-Feb-2019 02:23 1168 +capt-of.source.r29803.tar.xz 28-Feb-2019 02:23 3396 +capt-of.source.tar.xz 28-Feb-2019 02:23 3396 +capt-of.tar.xz 28-Feb-2019 02:23 1168 +captcont.doc.r15878.tar.xz 28-Feb-2019 02:23 100532 +captcont.doc.tar.xz 28-Feb-2019 02:23 100532 +captcont.r15878.tar.xz 28-Feb-2019 02:23 2232 +captcont.source.r15878.tar.xz 28-Feb-2019 02:23 9796 +captcont.source.tar.xz 28-Feb-2019 02:23 9796 +captcont.tar.xz 28-Feb-2019 02:23 2232 +captdef.doc.r17353.tar.xz 28-Feb-2019 02:23 216228 +captdef.doc.tar.xz 28-Feb-2019 02:23 216228 +captdef.r17353.tar.xz 28-Feb-2019 02:23 1140 +captdef.tar.xz 28-Feb-2019 02:23 1140 +caption.doc.r68425.tar.xz 01-Oct-2023 23:45 746648 +caption.doc.tar.xz 01-Oct-2023 23:45 746648 +caption.r68425.tar.xz 01-Oct-2023 23:45 61596 +caption.source.r68425.tar.xz 01-Oct-2023 23:45 217904 +caption.source.tar.xz 01-Oct-2023 23:45 217904 +caption.tar.xz 01-Oct-2023 23:45 61596 +carbohydrates.doc.r39000.tar.xz 28-Feb-2019 02:23 483796 +carbohydrates.doc.tar.xz 28-Feb-2019 02:23 483796 +carbohydrates.r39000.tar.xz 28-Feb-2019 02:23 5180 +carbohydrates.tar.xz 28-Feb-2019 02:23 5180 +carlisle.doc.r59577.tar.xz 13-Jun-2021 23:51 74704 +carlisle.doc.tar.xz 13-Jun-2021 23:51 74704 +carlisle.r59577.tar.xz 13-Jun-2021 23:51 8688 +carlisle.source.r59577.tar.xz 13-Jun-2021 23:51 2968 +carlisle.source.tar.xz 13-Jun-2021 23:51 2968 +carlisle.tar.xz 13-Jun-2021 23:51 8688 +carlito.doc.r64624.tar.xz 06-Oct-2022 23:54 624608 +carlito.doc.tar.xz 06-Oct-2022 23:54 624608 +carlito.r64624.tar.xz 06-Oct-2022 23:54 2574308 +carlito.tar.xz 06-Oct-2022 23:54 2574308 +carolmin-ps.doc.r15878.tar.xz 28-Feb-2019 02:23 520 +carolmin-ps.doc.tar.xz 28-Feb-2019 02:23 520 +carolmin-ps.r15878.tar.xz 28-Feb-2019 02:23 105236 +carolmin-ps.tar.xz 28-Feb-2019 02:23 105236 +cartonaugh.doc.r59938.tar.xz 15-Jul-2021 23:52 165704 +cartonaugh.doc.tar.xz 15-Jul-2021 23:52 165704 +cartonaugh.r59938.tar.xz 15-Jul-2021 23:52 6960 +cartonaugh.source.r59938.tar.xz 15-Jul-2021 23:52 10396 +cartonaugh.source.tar.xz 15-Jul-2021 23:52 10396 +cartonaugh.tar.xz 15-Jul-2021 23:52 6960 +cascade.doc.r65757.tar.xz 09-Feb-2023 00:52 160328 +cascade.doc.tar.xz 09-Feb-2023 00:52 160328 +cascade.r65757.tar.xz 09-Feb-2023 00:52 2564 +cascade.source.r65757.tar.xz 09-Feb-2023 00:52 6516 +cascade.source.tar.xz 09-Feb-2023 00:52 6516 +cascade.tar.xz 09-Feb-2023 00:52 2564 +cascadia-code.doc.r68485.tar.xz 08-Oct-2023 23:44 743832 +cascadia-code.doc.tar.xz 08-Oct-2023 23:44 743832 +cascadia-code.r68485.tar.xz 08-Oct-2023 23:44 5714508 +cascadia-code.tar.xz 08-Oct-2023 23:44 5714508 +cascadiamono-otf.doc.r76343.tar.xz 17-Sep-2025 23:50 156148 +cascadiamono-otf.doc.tar.xz 17-Sep-2025 23:50 156148 +cascadiamono-otf.r76343.tar.xz 17-Sep-2025 23:50 1364 +cascadiamono-otf.tar.xz 17-Sep-2025 23:50 1364 +cascadilla.doc.r25144.tar.xz 28-Feb-2019 02:23 88068 +cascadilla.doc.tar.xz 28-Feb-2019 02:23 88068 +cascadilla.r25144.tar.xz 28-Feb-2019 02:23 9668 +cascadilla.tar.xz 28-Feb-2019 02:23 9668 +cases.doc.r54682.tar.xz 11-Apr-2020 23:55 338912 +cases.doc.tar.xz 11-Apr-2020 23:55 338912 +cases.r54682.tar.xz 11-Apr-2020 23:55 4068 +cases.tar.xz 11-Apr-2020 23:55 4068 +casyl.doc.r15878.tar.xz 28-Feb-2019 02:23 73008 +casyl.doc.tar.xz 28-Feb-2019 02:23 73008 +casyl.r15878.tar.xz 28-Feb-2019 02:23 5796 +casyl.tar.xz 28-Feb-2019 02:23 5796 +catchfile.doc.r53084.tar.xz 11-Dec-2019 00:54 297388 +catchfile.doc.tar.xz 11-Dec-2019 00:54 297388 +catchfile.r53084.tar.xz 11-Dec-2019 00:54 2748 +catchfile.source.r53084.tar.xz 11-Dec-2019 00:54 6164 +catchfile.source.tar.xz 11-Dec-2019 00:54 6164 +catchfile.tar.xz 11-Dec-2019 00:54 2748 +catchfilebetweentags.doc.r21476.tar.xz 28-Feb-2019 02:23 140092 +catchfilebetweentags.doc.tar.xz 28-Feb-2019 02:23 140092 +catchfilebetweentags.r21476.tar.xz 28-Feb-2019 02:23 1968 +catchfilebetweentags.source.r21476.tar.xz 28-Feb-2019 02:23 9544 +catchfilebetweentags.source.tar.xz 28-Feb-2019 02:23 9544 +catchfilebetweentags.tar.xz 28-Feb-2019 02:23 1968 +catcodes.doc.r38859.tar.xz 28-Feb-2019 02:23 542996 +catcodes.doc.tar.xz 28-Feb-2019 02:23 542996 +catcodes.r38859.tar.xz 28-Feb-2019 02:24 6288 +catcodes.source.r38859.tar.xz 28-Feb-2019 02:23 6940 +catcodes.source.tar.xz 28-Feb-2019 02:23 6940 +catcodes.tar.xz 28-Feb-2019 02:24 6288 +catechis.doc.r59998.tar.xz 20-Jul-2021 23:52 395736 +catechis.doc.tar.xz 20-Jul-2021 23:52 395736 +catechis.r59998.tar.xz 20-Jul-2021 23:52 1660 +catechis.source.r59998.tar.xz 20-Jul-2021 23:52 6440 +catechis.source.tar.xz 20-Jul-2021 23:52 6440 +catechis.tar.xz 20-Jul-2021 23:52 1660 +catoptions.doc.r68982.tar.xz 28-Nov-2023 00:44 19152 +catoptions.doc.tar.xz 28-Nov-2023 00:44 19152 +catoptions.r68982.tar.xz 28-Nov-2023 00:44 38096 +catoptions.tar.xz 28-Nov-2023 00:44 38096 +catppuccinpalette.doc.r75934.tar.xz 31-Jul-2025 23:46 362468 +catppuccinpalette.doc.tar.xz 31-Jul-2025 23:46 362468 +catppuccinpalette.r75934.tar.xz 31-Jul-2025 23:46 4344 +catppuccinpalette.source.r75934.tar.xz 31-Jul-2025 23:46 7920 +catppuccinpalette.source.tar.xz 31-Jul-2025 23:46 7920 +catppuccinpalette.tar.xz 31-Jul-2025 23:46 4344 +causets.doc.r74247.tar.xz 24-Feb-2025 00:49 628216 +causets.doc.tar.xz 24-Feb-2025 00:49 628216 +causets.r74247.tar.xz 24-Feb-2025 00:49 5560 +causets.tar.xz 24-Feb-2025 00:49 5560 +cbcoptic.doc.r16666.tar.xz 28-Feb-2019 02:24 189788 +cbcoptic.doc.tar.xz 28-Feb-2019 02:24 189788 +cbcoptic.r16666.tar.xz 28-Feb-2019 02:24 100688 +cbcoptic.tar.xz 28-Feb-2019 02:24 100688 +cbfonts-fd.doc.r54080.tar.xz 04-Mar-2020 22:50 444288 +cbfonts-fd.doc.tar.xz 04-Mar-2020 22:50 444288 +cbfonts-fd.r54080.tar.xz 04-Mar-2020 22:50 3312 +cbfonts-fd.source.r54080.tar.xz 04-Mar-2020 22:50 8568 +cbfonts-fd.source.tar.xz 04-Mar-2020 22:50 8568 +cbfonts-fd.tar.xz 04-Mar-2020 22:50 3312 +cbfonts.doc.r54080.tar.xz 04-Mar-2020 22:49 428692 +cbfonts.doc.tar.xz 04-Mar-2020 22:49 428692 +cbfonts.r54080.tar.xz 04-Mar-2020 22:50 66006520 +cbfonts.tar.xz 04-Mar-2020 22:50 66006520 +cc-pl.doc.r58602.tar.xz 22-Mar-2021 22:01 1588 +cc-pl.doc.tar.xz 22-Mar-2021 22:01 1588 +cc-pl.r58602.tar.xz 22-Mar-2021 22:01 426652 +cc-pl.tar.xz 22-Mar-2021 22:01 426652 +ccaption.doc.r23443.tar.xz 28-Feb-2019 02:25 468272 +ccaption.doc.tar.xz 28-Feb-2019 02:25 468272 +ccaption.r23443.tar.xz 28-Feb-2019 02:25 5484 +ccaption.source.r23443.tar.xz 28-Feb-2019 02:25 34500 +ccaption.source.tar.xz 28-Feb-2019 02:25 34500 +ccaption.tar.xz 28-Feb-2019 02:25 5484 +ccfonts.doc.r61431.tar.xz 29-Dec-2021 00:52 203648 +ccfonts.doc.tar.xz 29-Dec-2021 00:52 203648 +ccfonts.r61431.tar.xz 29-Dec-2021 00:52 2164 +ccfonts.source.r61431.tar.xz 29-Dec-2021 00:52 5756 +ccfonts.source.tar.xz 29-Dec-2021 00:52 5756 +ccfonts.tar.xz 29-Dec-2021 00:52 2164 +ccicons.doc.r54512.tar.xz 24-Mar-2020 00:56 89352 +ccicons.doc.tar.xz 24-Mar-2020 00:56 89352 +ccicons.r54512.tar.xz 24-Mar-2020 00:56 15564 +ccicons.source.r54512.tar.xz 24-Mar-2020 00:56 8828 +ccicons.source.tar.xz 24-Mar-2020 00:56 8828 +ccicons.tar.xz 24-Mar-2020 00:56 15564 +cclicenses.doc.r15878.tar.xz 28-Feb-2019 02:25 81072 +cclicenses.doc.tar.xz 28-Feb-2019 02:25 81072 +cclicenses.r15878.tar.xz 28-Feb-2019 02:25 1604 +cclicenses.source.r15878.tar.xz 28-Feb-2019 02:25 4060 +cclicenses.source.tar.xz 28-Feb-2019 02:25 4060 +cclicenses.tar.xz 28-Feb-2019 02:25 1604 +ccool.doc.r60600.tar.xz 24-Sep-2021 23:53 801384 +ccool.doc.tar.xz 24-Sep-2021 23:53 801384 +ccool.r60600.tar.xz 24-Sep-2021 23:53 3992 +ccool.source.r60600.tar.xz 24-Sep-2021 23:53 13112 +ccool.source.tar.xz 24-Sep-2021 23:53 13112 +ccool.tar.xz 24-Sep-2021 23:53 3992 +cd-cover.doc.r17121.tar.xz 28-Feb-2019 02:25 303956 +cd-cover.doc.tar.xz 28-Feb-2019 02:25 303956 +cd-cover.r17121.tar.xz 28-Feb-2019 02:25 3864 +cd-cover.source.r17121.tar.xz 28-Feb-2019 02:25 12956 +cd-cover.source.tar.xz 28-Feb-2019 02:25 12956 +cd-cover.tar.xz 28-Feb-2019 02:25 3864 +cd.doc.r34452.tar.xz 28-Feb-2019 02:25 72848 +cd.doc.tar.xz 28-Feb-2019 02:25 72848 +cd.r34452.tar.xz 28-Feb-2019 02:25 4380 +cd.source.r34452.tar.xz 28-Feb-2019 02:25 9672 +cd.source.tar.xz 28-Feb-2019 02:25 9672 +cd.tar.xz 28-Feb-2019 02:25 4380 +cdcmd.doc.r60742.tar.xz 12-Oct-2021 23:52 608048 +cdcmd.doc.tar.xz 12-Oct-2021 23:52 608048 +cdcmd.r60742.tar.xz 12-Oct-2021 23:52 3588 +cdcmd.source.r60742.tar.xz 12-Oct-2021 23:52 6964 +cdcmd.source.tar.xz 12-Oct-2021 23:52 6964 +cdcmd.tar.xz 12-Oct-2021 23:52 3588 +cdpbundl.doc.r61719.tar.xz 24-Jan-2022 00:53 768180 +cdpbundl.doc.tar.xz 24-Jan-2022 00:53 768180 +cdpbundl.r61719.tar.xz 24-Jan-2022 00:53 19080 +cdpbundl.source.r61719.tar.xz 24-Jan-2022 00:53 68824 +cdpbundl.source.tar.xz 24-Jan-2022 00:53 68824 +cdpbundl.tar.xz 24-Jan-2022 00:53 19080 +cell.doc.r42428.tar.xz 28-Feb-2019 02:25 480 +cell.doc.tar.xz 28-Feb-2019 02:25 480 +cell.r42428.tar.xz 28-Feb-2019 02:25 11228 +cell.tar.xz 28-Feb-2019 02:25 11228 +cellprops.doc.r67201.tar.xz 23-May-2023 23:44 567912 +cellprops.doc.tar.xz 23-May-2023 23:44 567912 +cellprops.r67201.tar.xz 23-May-2023 23:44 6996 +cellprops.source.r67201.tar.xz 23-May-2023 23:44 13580 +cellprops.source.tar.xz 23-May-2023 23:44 13580 +cellprops.tar.xz 23-May-2023 23:44 6996 +cellspace.doc.r61501.tar.xz 06-Jan-2022 00:53 342576 +cellspace.doc.tar.xz 06-Jan-2022 00:53 342576 +cellspace.r61501.tar.xz 06-Jan-2022 00:53 2488 +cellspace.tar.xz 06-Jan-2022 00:53 2488 +celtic.doc.r39797.tar.xz 28-Feb-2019 02:25 676044 +celtic.doc.tar.xz 28-Feb-2019 02:25 676044 +celtic.r39797.tar.xz 28-Feb-2019 02:25 3780 +celtic.source.r39797.tar.xz 28-Feb-2019 02:25 8344 +celtic.source.tar.xz 28-Feb-2019 02:25 8344 +celtic.tar.xz 28-Feb-2019 02:25 3780 +censor.doc.r74794.tar.xz 30-Mar-2025 23:49 261740 +censor.doc.tar.xz 30-Mar-2025 23:49 261740 +censor.r74794.tar.xz 30-Mar-2025 23:49 3152 +censor.tar.xz 30-Mar-2025 23:49 3152 +centeredline.doc.r64672.tar.xz 10-Oct-2022 23:53 1716 +centeredline.doc.tar.xz 10-Oct-2022 23:53 1716 +centeredline.r64672.tar.xz 10-Oct-2022 23:53 1024 +centeredline.tar.xz 10-Oct-2022 23:53 1024 +centerlastline.doc.r56644.tar.xz 12-Oct-2020 23:56 227760 +centerlastline.doc.tar.xz 12-Oct-2020 23:56 227760 +centerlastline.r56644.tar.xz 12-Oct-2020 23:56 1092 +centerlastline.source.r56644.tar.xz 12-Oct-2020 23:56 2252 +centerlastline.source.tar.xz 12-Oct-2020 23:56 2252 +centerlastline.tar.xz 12-Oct-2020 23:56 1092 +cesenaexam.doc.r44960.tar.xz 28-Feb-2019 02:25 514948 +cesenaexam.doc.tar.xz 28-Feb-2019 02:25 514948 +cesenaexam.r44960.tar.xz 28-Feb-2019 02:25 3532 +cesenaexam.source.r44960.tar.xz 28-Feb-2019 02:25 6452 +cesenaexam.source.tar.xz 28-Feb-2019 02:25 6452 +cesenaexam.tar.xz 28-Feb-2019 02:25 3532 +cfr-initials.doc.r75712.tar.xz 07-Jul-2025 23:49 687228 +cfr-initials.doc.tar.xz 07-Jul-2025 23:49 687228 +cfr-initials.r75712.tar.xz 07-Jul-2025 23:49 2280 +cfr-initials.tar.xz 07-Jul-2025 23:49 2280 +cfr-lm.doc.r75576.tar.xz 22-Jun-2025 23:48 6000020 +cfr-lm.doc.tar.xz 22-Jun-2025 23:48 6000020 +cfr-lm.r75576.tar.xz 22-Jun-2025 23:48 136676 +cfr-lm.source.r75576.tar.xz 22-Jun-2025 23:48 35592 +cfr-lm.source.tar.xz 22-Jun-2025 23:48 35592 +cfr-lm.tar.xz 22-Jun-2025 23:48 136676 +changebar.doc.r71847.tar.xz 19-Jul-2024 23:47 634756 +changebar.doc.tar.xz 19-Jul-2024 23:47 634756 +changebar.r71847.tar.xz 19-Jul-2024 23:47 7136 +changebar.source.r71847.tar.xz 19-Jul-2024 23:47 27712 +changebar.source.tar.xz 19-Jul-2024 23:47 27712 +changebar.tar.xz 19-Jul-2024 23:47 7136 +changelayout.doc.r16094.tar.xz 28-Feb-2019 02:25 57396 +changelayout.doc.tar.xz 28-Feb-2019 02:25 57396 +changelayout.r16094.tar.xz 28-Feb-2019 02:25 3872 +changelayout.tar.xz 28-Feb-2019 02:25 3872 +changelog.doc.r76000.tar.xz 07-Aug-2025 23:49 176328 +changelog.doc.tar.xz 07-Aug-2025 23:49 176328 +changelog.r76000.tar.xz 07-Aug-2025 23:49 3528 +changelog.tar.xz 07-Aug-2025 23:49 3528 +changepage.doc.r15878.tar.xz 28-Feb-2019 02:25 274712 +changepage.doc.tar.xz 28-Feb-2019 02:25 274712 +changepage.r15878.tar.xz 28-Feb-2019 02:25 2612 +changepage.source.r15878.tar.xz 28-Feb-2019 02:25 5956 +changepage.source.tar.xz 28-Feb-2019 02:25 5956 +changepage.tar.xz 28-Feb-2019 02:25 2612 +changes.doc.r67201.tar.xz 23-May-2023 23:44 3407656 +changes.doc.tar.xz 23-May-2023 23:44 3407656 +changes.r67201.tar.xz 23-May-2023 23:44 8216 +changes.source.r67201.tar.xz 23-May-2023 23:44 19416 +changes.source.tar.xz 23-May-2023 23:44 19416 +changes.tar.xz 23-May-2023 23:44 8216 +chappg.doc.r15878.tar.xz 28-Feb-2019 02:25 189408 +chappg.doc.tar.xz 28-Feb-2019 02:25 189408 +chappg.r15878.tar.xz 28-Feb-2019 02:25 1896 +chappg.source.r15878.tar.xz 28-Feb-2019 02:25 6372 +chappg.source.tar.xz 28-Feb-2019 02:25 6372 +chappg.tar.xz 28-Feb-2019 02:25 1896 +chapterfolder.doc.r15878.tar.xz 28-Feb-2019 02:25 186732 +chapterfolder.doc.tar.xz 28-Feb-2019 02:25 186732 +chapterfolder.r15878.tar.xz 28-Feb-2019 02:25 1588 +chapterfolder.source.r15878.tar.xz 28-Feb-2019 02:25 2884 +chapterfolder.source.tar.xz 28-Feb-2019 02:25 2884 +chapterfolder.tar.xz 28-Feb-2019 02:25 1588 +char2path.doc.r75916.tar.xz 29-Jul-2025 23:49 647984 +char2path.doc.tar.xz 29-Jul-2025 23:49 647984 +char2path.r75916.tar.xz 29-Jul-2025 23:49 46224 +char2path.source.r75916.tar.xz 29-Jul-2025 23:49 52408 +char2path.source.tar.xz 29-Jul-2025 23:49 52408 +char2path.tar.xz 29-Jul-2025 23:49 46224 +charissil.doc.r64998.tar.xz 13-Nov-2022 00:53 465884 +charissil.doc.tar.xz 13-Nov-2022 00:53 465884 +charissil.r64998.tar.xz 13-Nov-2022 00:53 3126652 +charissil.tar.xz 13-Nov-2022 00:53 3126652 +charter.doc.r15878.tar.xz 28-Feb-2019 02:25 800 +charter.doc.tar.xz 28-Feb-2019 02:25 800 +charter.r15878.tar.xz 28-Feb-2019 02:25 175180 +charter.tar.xz 28-Feb-2019 02:25 175180 +chbibref.doc.r17120.tar.xz 28-Feb-2019 02:25 169552 +chbibref.doc.tar.xz 28-Feb-2019 02:25 169552 +chbibref.r17120.tar.xz 28-Feb-2019 02:25 1060 +chbibref.tar.xz 28-Feb-2019 02:25 1060 +cheatsheet.doc.r45069.tar.xz 28-Feb-2019 02:25 404360 +cheatsheet.doc.tar.xz 28-Feb-2019 02:25 404360 +cheatsheet.r45069.tar.xz 28-Feb-2019 02:25 2676 +cheatsheet.source.r45069.tar.xz 28-Feb-2019 02:25 5984 +cheatsheet.source.tar.xz 28-Feb-2019 02:25 5984 +cheatsheet.tar.xz 28-Feb-2019 02:25 2676 +checkcites.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:25 344 +checkcites.aarch64-linux.tar.xz 28-Feb-2019 02:25 344 +checkcites.amd64-freebsd.r25623.tar.xz 28-Feb-2019 02:25 344 +checkcites.amd64-freebsd.tar.xz 28-Feb-2019 02:25 344 +checkcites.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:25 344 +checkcites.amd64-netbsd.tar.xz 28-Feb-2019 02:25 344 +checkcites.armhf-linux.r30015.tar.xz 28-Feb-2019 02:25 344 +checkcites.armhf-linux.tar.xz 28-Feb-2019 02:25 344 +checkcites.doc.r73120.tar.xz 15-Dec-2024 01:10 301512 +checkcites.doc.tar.xz 15-Dec-2024 01:10 301512 +checkcites.i386-freebsd.r25623.tar.xz 28-Feb-2019 02:25 344 +checkcites.i386-freebsd.tar.xz 28-Feb-2019 02:25 344 +checkcites.i386-linux.r25623.tar.xz 28-Feb-2019 02:25 344 +checkcites.i386-linux.tar.xz 28-Feb-2019 02:25 344 +checkcites.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:25 344 +checkcites.i386-netbsd.tar.xz 28-Feb-2019 02:25 344 +checkcites.i386-solaris.r25623.tar.xz 28-Feb-2019 02:25 344 +checkcites.i386-solaris.tar.xz 28-Feb-2019 02:25 344 +checkcites.r73120.tar.xz 15-Dec-2024 01:10 6904 +checkcites.tar.xz 15-Dec-2024 01:10 6904 +checkcites.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +checkcites.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +checkcites.windows.r65891.tar.xz 20-Feb-2023 22:10 2308 +checkcites.windows.tar.xz 20-Feb-2023 22:10 2308 +checkcites.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:25 344 +checkcites.x86_64-cygwin.tar.xz 28-Feb-2019 02:25 344 +checkcites.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:25 356 +checkcites.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:25 356 +checkcites.x86_64-linux.r25623.tar.xz 28-Feb-2019 02:25 344 +checkcites.x86_64-linux.tar.xz 28-Feb-2019 02:25 344 +checkcites.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:25 348 +checkcites.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:25 348 +checkcites.x86_64-solaris.r25623.tar.xz 28-Feb-2019 02:25 344 +checkcites.x86_64-solaris.tar.xz 28-Feb-2019 02:25 344 +checkend.doc.r51475.tar.xz 26-Jun-2019 23:54 672 +checkend.doc.tar.xz 26-Jun-2019 23:54 672 +checkend.r51475.tar.xz 26-Jun-2019 23:54 1732 +checkend.tar.xz 26-Jun-2019 23:54 1732 +checklistings.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:25 348 +checklistings.aarch64-linux.tar.xz 28-Feb-2019 02:25 348 +checklistings.amd64-freebsd.r38300.tar.xz 28-Feb-2019 02:25 348 +checklistings.amd64-freebsd.tar.xz 28-Feb-2019 02:25 348 +checklistings.amd64-netbsd.r38300.tar.xz 28-Feb-2019 02:25 344 +checklistings.amd64-netbsd.tar.xz 28-Feb-2019 02:25 344 +checklistings.armhf-linux.r38300.tar.xz 28-Feb-2019 02:25 348 +checklistings.armhf-linux.tar.xz 28-Feb-2019 02:25 348 +checklistings.doc.r38300.tar.xz 28-Feb-2019 02:25 364456 +checklistings.doc.tar.xz 28-Feb-2019 02:25 364456 +checklistings.i386-freebsd.r38300.tar.xz 28-Feb-2019 02:25 348 +checklistings.i386-freebsd.tar.xz 28-Feb-2019 02:25 348 +checklistings.i386-linux.r38300.tar.xz 28-Feb-2019 02:25 348 +checklistings.i386-linux.tar.xz 28-Feb-2019 02:25 348 +checklistings.i386-netbsd.r38300.tar.xz 28-Feb-2019 02:25 344 +checklistings.i386-netbsd.tar.xz 28-Feb-2019 02:25 344 +checklistings.i386-solaris.r38300.tar.xz 28-Feb-2019 02:25 344 +checklistings.i386-solaris.tar.xz 28-Feb-2019 02:25 344 +checklistings.r38300.tar.xz 28-Feb-2019 02:25 6496 +checklistings.source.r38300.tar.xz 28-Feb-2019 02:25 10948 +checklistings.source.tar.xz 28-Feb-2019 02:25 10948 +checklistings.tar.xz 28-Feb-2019 02:25 6496 +checklistings.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +checklistings.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +checklistings.x86_64-cygwin.r38300.tar.xz 28-Feb-2019 02:25 348 +checklistings.x86_64-cygwin.tar.xz 28-Feb-2019 02:25 348 +checklistings.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:25 356 +checklistings.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:25 356 +checklistings.x86_64-linux.r38300.tar.xz 28-Feb-2019 02:25 344 +checklistings.x86_64-linux.tar.xz 28-Feb-2019 02:25 344 +checklistings.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:25 348 +checklistings.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:25 348 +checklistings.x86_64-solaris.r38300.tar.xz 28-Feb-2019 02:25 344 +checklistings.x86_64-solaris.tar.xz 28-Feb-2019 02:25 344 +chem-journal.r15878.tar.xz 28-Feb-2019 02:25 4992 +chem-journal.tar.xz 28-Feb-2019 02:25 4992 +chemarrow.doc.r17146.tar.xz 28-Feb-2019 02:25 343744 +chemarrow.doc.tar.xz 28-Feb-2019 02:25 343744 +chemarrow.r17146.tar.xz 28-Feb-2019 02:25 5212 +chemarrow.source.r17146.tar.xz 28-Feb-2019 02:25 3136 +chemarrow.source.tar.xz 28-Feb-2019 02:25 3136 +chemarrow.tar.xz 28-Feb-2019 02:25 5212 +chembst.doc.r15878.tar.xz 28-Feb-2019 02:25 204580 +chembst.doc.tar.xz 28-Feb-2019 02:25 204580 +chembst.r15878.tar.xz 28-Feb-2019 02:25 6916 +chembst.source.r15878.tar.xz 28-Feb-2019 02:25 16300 +chembst.source.tar.xz 28-Feb-2019 02:25 16300 +chembst.tar.xz 28-Feb-2019 02:25 6916 +chemcompounds.doc.r15878.tar.xz 28-Feb-2019 02:25 111604 +chemcompounds.doc.tar.xz 28-Feb-2019 02:25 111604 +chemcompounds.r15878.tar.xz 28-Feb-2019 02:25 1956 +chemcompounds.source.r15878.tar.xz 28-Feb-2019 02:25 7200 +chemcompounds.source.tar.xz 28-Feb-2019 02:25 7200 +chemcompounds.tar.xz 28-Feb-2019 02:25 1956 +chemcono.doc.r17119.tar.xz 28-Feb-2019 02:25 231312 +chemcono.doc.tar.xz 28-Feb-2019 02:25 231312 +chemcono.r17119.tar.xz 28-Feb-2019 02:25 8132 +chemcono.tar.xz 28-Feb-2019 02:25 8132 +chemexec.doc.r21632.tar.xz 28-Feb-2019 02:25 310880 +chemexec.doc.tar.xz 28-Feb-2019 02:25 310880 +chemexec.r21632.tar.xz 28-Feb-2019 02:25 7656 +chemexec.tar.xz 28-Feb-2019 02:25 7656 +chemfig.doc.r69227.tar.xz 29-Dec-2023 00:46 1407872 +chemfig.doc.tar.xz 29-Dec-2023 00:46 1407872 +chemfig.r69227.tar.xz 29-Dec-2023 00:46 27456 +chemfig.tar.xz 29-Dec-2023 00:46 27456 +chemformula-ru.doc.r71883.tar.xz 23-Jul-2024 23:47 157152 +chemformula-ru.doc.tar.xz 23-Jul-2024 23:47 157152 +chemformula-ru.r71883.tar.xz 23-Jul-2024 23:47 1152 +chemformula-ru.tar.xz 23-Jul-2024 23:47 1152 +chemformula.doc.r61719.tar.xz 24-Jan-2022 00:53 863468 +chemformula.doc.tar.xz 24-Jan-2022 00:53 863468 +chemformula.r61719.tar.xz 24-Jan-2022 00:53 15792 +chemformula.tar.xz 24-Jan-2022 00:53 15792 +chemgreek.doc.r53437.tar.xz 18-Jan-2020 00:54 714860 +chemgreek.doc.tar.xz 18-Jan-2020 00:54 714860 +chemgreek.r53437.tar.xz 18-Jan-2020 00:54 7120 +chemgreek.tar.xz 18-Jan-2020 00:54 7120 +chemmacros.doc.r62655.tar.xz 13-Mar-2022 00:53 1030160 +chemmacros.doc.tar.xz 13-Mar-2022 00:53 1030160 +chemmacros.r62655.tar.xz 13-Mar-2022 00:53 42852 +chemmacros.tar.xz 13-Mar-2022 00:53 42852 +chemnum.doc.r57490.tar.xz 22-Jan-2021 00:57 794728 +chemnum.doc.tar.xz 22-Jan-2021 00:57 794728 +chemnum.r57490.tar.xz 22-Jan-2021 00:57 11532 +chemnum.tar.xz 22-Jan-2021 00:57 11532 +chemobabel.doc.r64778.tar.xz 22-Oct-2022 23:56 926456 +chemobabel.doc.tar.xz 22-Oct-2022 23:56 926456 +chemobabel.r64778.tar.xz 22-Oct-2022 23:56 4496 +chemobabel.source.r64778.tar.xz 22-Oct-2022 23:56 16168 +chemobabel.source.tar.xz 22-Oct-2022 23:56 16168 +chemobabel.tar.xz 22-Oct-2022 23:56 4496 +chemplants.doc.r60606.tar.xz 25-Sep-2021 23:53 970944 +chemplants.doc.tar.xz 25-Sep-2021 23:53 970944 +chemplants.r60606.tar.xz 25-Sep-2021 23:53 7704 +chemplants.tar.xz 25-Sep-2021 23:53 7704 +chemschemex.doc.r46723.tar.xz 28-Feb-2019 02:25 291444 +chemschemex.doc.tar.xz 28-Feb-2019 02:25 291444 +chemschemex.r46723.tar.xz 28-Feb-2019 02:25 6716 +chemschemex.source.r46723.tar.xz 28-Feb-2019 02:25 14224 +chemschemex.source.tar.xz 28-Feb-2019 02:25 14224 +chemschemex.tar.xz 28-Feb-2019 02:25 6716 +chemsec.doc.r46972.tar.xz 28-Feb-2019 02:25 252160 +chemsec.doc.tar.xz 28-Feb-2019 02:25 252160 +chemsec.r46972.tar.xz 28-Feb-2019 02:25 3216 +chemsec.source.r46972.tar.xz 28-Feb-2019 02:25 11632 +chemsec.source.tar.xz 28-Feb-2019 02:25 11632 +chemsec.tar.xz 28-Feb-2019 02:25 3216 +chemstyle.doc.r31096.tar.xz 28-Feb-2019 02:25 271232 +chemstyle.doc.tar.xz 28-Feb-2019 02:25 271232 +chemstyle.r31096.tar.xz 28-Feb-2019 02:25 6272 +chemstyle.source.r31096.tar.xz 28-Feb-2019 02:25 25008 +chemstyle.source.tar.xz 28-Feb-2019 02:25 25008 +chemstyle.tar.xz 28-Feb-2019 02:25 6272 +cherokee.doc.r21046.tar.xz 28-Feb-2019 02:25 616 +cherokee.doc.tar.xz 28-Feb-2019 02:25 616 +cherokee.r21046.tar.xz 28-Feb-2019 02:25 4424 +cherokee.tar.xz 28-Feb-2019 02:25 4424 +chess-problem-diagrams.doc.r74591.tar.xz 13-Mar-2025 00:49 308740 +chess-problem-diagrams.doc.tar.xz 13-Mar-2025 00:49 308740 +chess-problem-diagrams.r74591.tar.xz 13-Mar-2025 00:49 12460 +chess-problem-diagrams.source.r74591.tar.xz 13-Mar-2025 00:49 25108 +chess-problem-diagrams.source.tar.xz 13-Mar-2025 00:49 25108 +chess-problem-diagrams.tar.xz 13-Mar-2025 00:49 12460 +chess.doc.r20582.tar.xz 28-Feb-2019 02:25 44696 +chess.doc.tar.xz 28-Feb-2019 02:25 44696 +chess.r20582.tar.xz 28-Feb-2019 02:25 10984 +chess.tar.xz 28-Feb-2019 02:25 10984 +chessboard.doc.r72795.tar.xz 08-Nov-2024 00:48 723416 +chessboard.doc.tar.xz 08-Nov-2024 00:48 723416 +chessboard.r72795.tar.xz 08-Nov-2024 00:48 22712 +chessboard.source.r72795.tar.xz 08-Nov-2024 00:48 21008 +chessboard.source.tar.xz 08-Nov-2024 00:48 21008 +chessboard.tar.xz 08-Nov-2024 00:48 22712 +chessfss.doc.r19440.tar.xz 28-Feb-2019 02:25 1376 +chessfss.doc.tar.xz 28-Feb-2019 02:25 1376 +chessfss.r19440.tar.xz 28-Feb-2019 02:25 10968 +chessfss.source.r19440.tar.xz 28-Feb-2019 02:25 10896 +chessfss.source.tar.xz 28-Feb-2019 02:25 10896 +chessfss.tar.xz 28-Feb-2019 02:25 10968 +chet.doc.r45081.tar.xz 28-Feb-2019 02:25 175744 +chet.doc.tar.xz 28-Feb-2019 02:25 175744 +chet.r45081.tar.xz 28-Feb-2019 02:25 5628 +chet.tar.xz 28-Feb-2019 02:25 5628 +chextras.doc.r27118.tar.xz 28-Feb-2019 02:25 125712 +chextras.doc.tar.xz 28-Feb-2019 02:25 125712 +chextras.r27118.tar.xz 28-Feb-2019 02:25 4820 +chextras.source.r27118.tar.xz 28-Feb-2019 02:25 11708 +chextras.source.tar.xz 28-Feb-2019 02:25 11708 +chextras.tar.xz 28-Feb-2019 02:25 4820 +chhaya.doc.r61719.tar.xz 24-Jan-2022 00:53 121504 +chhaya.doc.tar.xz 24-Jan-2022 00:53 121504 +chhaya.r61719.tar.xz 24-Jan-2022 00:53 3408 +chhaya.source.r61719.tar.xz 24-Jan-2022 00:53 6012 +chhaya.source.tar.xz 24-Jan-2022 00:53 6012 +chhaya.tar.xz 24-Jan-2022 00:53 3408 +chicago-annote.doc.r15878.tar.xz 28-Feb-2019 02:25 416 +chicago-annote.doc.tar.xz 28-Feb-2019 02:25 416 +chicago-annote.r15878.tar.xz 28-Feb-2019 02:25 8920 +chicago-annote.tar.xz 28-Feb-2019 02:25 8920 +chicago.r15878.tar.xz 28-Feb-2019 02:25 10508 +chicago.tar.xz 28-Feb-2019 02:25 10508 +chicagoa.r52567.tar.xz 30-Oct-2019 00:55 8840 +chicagoa.tar.xz 30-Oct-2019 00:55 8840 +chicagolinks.doc.r70740.tar.xz 24-Mar-2024 00:56 1132 +chicagolinks.doc.tar.xz 24-Mar-2024 00:56 1132 +chicagolinks.r70740.tar.xz 24-Mar-2024 00:56 7212 +chicagolinks.tar.xz 24-Mar-2024 00:56 7212 +chickenize.doc.r57325.tar.xz 05-Jan-2021 00:57 225844 +chickenize.doc.tar.xz 05-Jan-2021 00:57 225844 +chickenize.r57325.tar.xz 05-Jan-2021 00:57 14392 +chickenize.source.r57325.tar.xz 05-Jan-2021 00:57 34560 +chickenize.source.tar.xz 05-Jan-2021 00:57 34560 +chickenize.tar.xz 05-Jan-2021 00:57 14392 +chifoot.doc.r57312.tar.xz 04-Jan-2021 00:57 948 +chifoot.doc.tar.xz 04-Jan-2021 00:57 948 +chifoot.r57312.tar.xz 04-Jan-2021 00:57 744 +chifoot.tar.xz 04-Jan-2021 00:57 744 +childdoc.doc.r74758.tar.xz 27-Mar-2025 00:50 269756 +childdoc.doc.tar.xz 27-Mar-2025 00:50 269756 +childdoc.r74758.tar.xz 27-Mar-2025 00:50 1296 +childdoc.source.r74758.tar.xz 27-Mar-2025 00:50 11188 +childdoc.source.tar.xz 27-Mar-2025 00:50 11188 +childdoc.tar.xz 27-Mar-2025 00:50 1296 +chinese-jfm.doc.r57758.tar.xz 16-Feb-2021 00:57 116496 +chinese-jfm.doc.tar.xz 16-Feb-2021 00:57 116496 +chinese-jfm.r57758.tar.xz 16-Feb-2021 00:57 2492 +chinese-jfm.tar.xz 16-Feb-2021 00:57 2492 +chinesechess.doc.r63276.tar.xz 10-May-2022 23:53 7776072 +chinesechess.doc.tar.xz 10-May-2022 23:53 7776072 +chinesechess.r63276.tar.xz 10-May-2022 23:53 13236 +chinesechess.tar.xz 10-May-2022 23:53 13236 +chivo.doc.r65029.tar.xz 17-Nov-2022 00:54 434340 +chivo.doc.tar.xz 17-Nov-2022 00:54 434340 +chivo.r65029.tar.xz 17-Nov-2022 00:54 2262112 +chivo.source.r65029.tar.xz 17-Nov-2022 00:54 7596 +chivo.source.tar.xz 17-Nov-2022 00:54 7596 +chivo.tar.xz 17-Nov-2022 00:54 2262112 +chkfloat.doc.r27473.tar.xz 28-Feb-2019 02:25 44988 +chkfloat.doc.tar.xz 28-Feb-2019 02:25 44988 +chkfloat.r27473.tar.xz 28-Feb-2019 02:25 1144 +chkfloat.tar.xz 28-Feb-2019 02:25 1144 +chklref.aarch64-linux.r52631.tar.xz 04-Nov-2019 00:54 340 +chklref.aarch64-linux.tar.xz 04-Nov-2019 00:54 340 +chklref.amd64-freebsd.r52631.tar.xz 04-Nov-2019 00:54 340 +chklref.amd64-freebsd.tar.xz 04-Nov-2019 00:54 340 +chklref.amd64-netbsd.r52631.tar.xz 04-Nov-2019 00:54 336 +chklref.amd64-netbsd.tar.xz 04-Nov-2019 00:54 336 +chklref.armhf-linux.r52631.tar.xz 04-Nov-2019 00:54 336 +chklref.armhf-linux.tar.xz 04-Nov-2019 00:54 336 +chklref.doc.r52649.tar.xz 06-Nov-2019 00:54 320916 +chklref.doc.tar.xz 06-Nov-2019 00:54 320916 +chklref.i386-freebsd.r52631.tar.xz 04-Nov-2019 00:54 340 +chklref.i386-freebsd.tar.xz 04-Nov-2019 00:54 340 +chklref.i386-linux.r52631.tar.xz 04-Nov-2019 00:54 336 +chklref.i386-linux.tar.xz 04-Nov-2019 00:54 336 +chklref.i386-netbsd.r52631.tar.xz 04-Nov-2019 00:54 336 +chklref.i386-netbsd.tar.xz 04-Nov-2019 00:54 336 +chklref.i386-solaris.r52631.tar.xz 04-Nov-2019 00:54 336 +chklref.i386-solaris.tar.xz 04-Nov-2019 00:54 336 +chklref.r52649.tar.xz 06-Nov-2019 00:54 5084 +chklref.tar.xz 06-Nov-2019 00:54 5084 +chklref.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +chklref.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +chklref.windows.r65891.tar.xz 20-Feb-2023 22:10 2304 +chklref.windows.tar.xz 20-Feb-2023 22:10 2304 +chklref.x86_64-cygwin.r52631.tar.xz 04-Nov-2019 00:54 336 +chklref.x86_64-cygwin.tar.xz 04-Nov-2019 00:54 336 +chklref.x86_64-darwinlegacy.r52631.tar.xz 04-Nov-2019 00:54 344 +chklref.x86_64-darwinlegacy.tar.xz 04-Nov-2019 00:54 344 +chklref.x86_64-linux.r52631.tar.xz 04-Nov-2019 00:54 336 +chklref.x86_64-linux.tar.xz 04-Nov-2019 00:54 336 +chklref.x86_64-linuxmusl.r52631.tar.xz 04-Nov-2019 00:54 340 +chklref.x86_64-linuxmusl.tar.xz 04-Nov-2019 00:54 340 +chklref.x86_64-solaris.r52631.tar.xz 04-Nov-2019 00:54 336 +chklref.x86_64-solaris.tar.xz 04-Nov-2019 00:54 336 +chktex.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 53868 +chktex.aarch64-linux.tar.xz 13-Feb-2025 00:47 53868 +chktex.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:51 53716 +chktex.amd64-freebsd.tar.xz 09-Feb-2025 00:51 53716 +chktex.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 52796 +chktex.amd64-netbsd.tar.xz 09-Feb-2025 18:14 52796 +chktex.armhf-linux.r73793.tar.xz 09-Feb-2025 00:51 51780 +chktex.armhf-linux.tar.xz 09-Feb-2025 00:51 51780 +chktex.doc.r73776.tar.xz 08-Feb-2025 20:10 472468 +chktex.doc.tar.xz 08-Feb-2025 20:10 472468 +chktex.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:51 53684 +chktex.i386-freebsd.tar.xz 09-Feb-2025 00:51 53684 +chktex.i386-linux.r73792.tar.xz 09-Feb-2025 00:51 63332 +chktex.i386-linux.tar.xz 09-Feb-2025 00:51 63332 +chktex.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 47572 +chktex.i386-netbsd.tar.xz 09-Feb-2025 18:14 47572 +chktex.i386-solaris.r73792.tar.xz 09-Feb-2025 00:51 57400 +chktex.i386-solaris.tar.xz 09-Feb-2025 00:51 57400 +chktex.r73776.tar.xz 08-Feb-2025 20:10 10284 +chktex.tar.xz 08-Feb-2025 20:10 10284 +chktex.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 109180 +chktex.universal-darwin.tar.xz 09-Feb-2025 18:14 109180 +chktex.windows.r73796.tar.xz 09-Feb-2025 18:14 54296 +chktex.windows.tar.xz 09-Feb-2025 18:14 54296 +chktex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 28256 +chktex.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 28256 +chktex.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 56368 +chktex.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 56368 +chktex.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 57832 +chktex.x86_64-linux.tar.xz 19-Feb-2025 00:46 57832 +chktex.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:51 62108 +chktex.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:51 62108 +chktex.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:51 64292 +chktex.x86_64-solaris.tar.xz 09-Feb-2025 00:51 64292 +chletter.doc.r20060.tar.xz 28-Feb-2019 02:25 132172 +chletter.doc.tar.xz 28-Feb-2019 02:25 132172 +chletter.r20060.tar.xz 28-Feb-2019 02:25 3724 +chletter.source.r20060.tar.xz 28-Feb-2019 02:25 16892 +chletter.source.tar.xz 28-Feb-2019 02:25 16892 +chletter.tar.xz 28-Feb-2019 02:25 3724 +chngcntr.doc.r47577.tar.xz 28-Feb-2019 02:25 234200 +chngcntr.doc.tar.xz 28-Feb-2019 02:25 234200 +chngcntr.r47577.tar.xz 28-Feb-2019 02:25 2048 +chngcntr.tar.xz 28-Feb-2019 02:25 2048 +chordbars.doc.r70392.tar.xz 05-Mar-2024 00:46 342132 +chordbars.doc.tar.xz 05-Mar-2024 00:46 342132 +chordbars.r70392.tar.xz 05-Mar-2024 00:46 4184 +chordbars.tar.xz 05-Mar-2024 00:46 4184 +chordbox.doc.r51000.tar.xz 05-May-2019 23:38 565268 +chordbox.doc.tar.xz 05-May-2019 23:38 565268 +chordbox.r51000.tar.xz 05-May-2019 23:38 3376 +chordbox.tar.xz 05-May-2019 23:38 3376 +chronology.doc.r67973.tar.xz 18-Aug-2023 23:44 402152 +chronology.doc.tar.xz 18-Aug-2023 23:44 402152 +chronology.r67973.tar.xz 18-Aug-2023 23:44 1944 +chronology.tar.xz 18-Aug-2023 23:44 1944 +chronos.doc.r75850.tar.xz 21-Jul-2025 23:49 3086404 +chronos.doc.tar.xz 21-Jul-2025 23:49 3086404 +chronos.r75850.tar.xz 21-Jul-2025 23:49 37832 +chronos.source.r75850.tar.xz 21-Jul-2025 23:49 137544 +chronos.source.tar.xz 21-Jul-2025 23:49 137544 +chronos.tar.xz 21-Jul-2025 23:49 37832 +chronosys.doc.r26700.tar.xz 28-Feb-2019 02:25 233192 +chronosys.doc.tar.xz 28-Feb-2019 02:25 233192 +chronosys.r26700.tar.xz 28-Feb-2019 02:25 7956 +chronosys.tar.xz 28-Feb-2019 02:25 7956 +chs-physics-report.doc.r54512.tar.xz 24-Mar-2020 00:56 194616 +chs-physics-report.doc.tar.xz 24-Mar-2020 00:56 194616 +chs-physics-report.r54512.tar.xz 24-Mar-2020 00:56 2824 +chs-physics-report.tar.xz 24-Mar-2020 00:56 2824 +chscite.doc.r28552.tar.xz 28-Feb-2019 02:25 191012 +chscite.doc.tar.xz 28-Feb-2019 02:25 191012 +chscite.r28552.tar.xz 28-Feb-2019 02:25 6344 +chscite.source.r28552.tar.xz 28-Feb-2019 02:25 9476 +chscite.source.tar.xz 28-Feb-2019 02:25 9476 +chscite.tar.xz 28-Feb-2019 02:25 6344 +churchslavonic.doc.r67474.tar.xz 25-Jun-2023 23:44 239448 +churchslavonic.doc.tar.xz 25-Jun-2023 23:44 239448 +churchslavonic.r67474.tar.xz 25-Jun-2023 23:44 8668 +churchslavonic.tar.xz 25-Jun-2023 23:44 8668 +chuushaku.doc.r73263.tar.xz 02-Jan-2025 00:49 164144 +chuushaku.doc.tar.xz 02-Jan-2025 00:49 164144 +chuushaku.r73263.tar.xz 02-Jan-2025 00:49 1412 +chuushaku.tar.xz 02-Jan-2025 00:49 1412 +cidarticle.doc.r68976.tar.xz 27-Nov-2023 00:44 446252 +cidarticle.doc.tar.xz 27-Nov-2023 00:44 446252 +cidarticle.r68976.tar.xz 27-Nov-2023 00:44 9260 +cidarticle.source.r68976.tar.xz 27-Nov-2023 00:44 17664 +cidarticle.source.tar.xz 27-Nov-2023 00:44 17664 +cidarticle.tar.xz 27-Nov-2023 00:44 9260 +cinzel.doc.r64550.tar.xz 29-Sep-2022 23:52 39128 +cinzel.doc.tar.xz 29-Sep-2022 23:52 39128 +cinzel.r64550.tar.xz 29-Sep-2022 23:52 533312 +cinzel.tar.xz 29-Sep-2022 23:52 533312 +circ.doc.r62977.tar.xz 07-Apr-2022 23:53 207696 +circ.doc.tar.xz 07-Apr-2022 23:53 207696 +circ.r62977.tar.xz 07-Apr-2022 23:53 23672 +circ.source.r62977.tar.xz 07-Apr-2022 23:53 38440 +circ.source.tar.xz 07-Apr-2022 23:53 38440 +circ.tar.xz 07-Apr-2022 23:53 23672 +circledsteps.doc.r67889.tar.xz 11-Aug-2023 23:44 432076 +circledsteps.doc.tar.xz 11-Aug-2023 23:44 432076 +circledsteps.r67889.tar.xz 11-Aug-2023 23:44 1928 +circledsteps.tar.xz 11-Aug-2023 23:44 1928 +circledtext.doc.r76159.tar.xz 27-Aug-2025 23:49 216640 +circledtext.doc.tar.xz 27-Aug-2025 23:49 216640 +circledtext.r76159.tar.xz 27-Aug-2025 23:49 6680 +circledtext.tar.xz 27-Aug-2025 23:49 6680 +circuit-macros.doc.r76218.tar.xz 02-Sep-2025 23:49 4300804 +circuit-macros.doc.tar.xz 02-Sep-2025 23:49 4300804 +circuit-macros.r76218.tar.xz 02-Sep-2025 23:49 1500 +circuit-macros.tar.xz 02-Sep-2025 23:49 1500 +circuitikz.doc.r75718.tar.xz 08-Jul-2025 23:46 2643580 +circuitikz.doc.tar.xz 08-Jul-2025 23:46 2643580 +circuitikz.r75718.tar.xz 08-Jul-2025 23:47 231396 +circuitikz.tar.xz 08-Jul-2025 23:47 231396 +circularglyphs.doc.r73069.tar.xz 08-Dec-2024 01:13 182608 +circularglyphs.doc.tar.xz 08-Dec-2024 01:13 182608 +circularglyphs.r73069.tar.xz 08-Dec-2024 01:13 2832 +circularglyphs.tar.xz 08-Dec-2024 01:13 2832 +cistercian.doc.r75058.tar.xz 29-Apr-2025 23:49 148080 +cistercian.doc.tar.xz 29-Apr-2025 23:49 148080 +cistercian.r75058.tar.xz 29-Apr-2025 23:49 2160 +cistercian.tar.xz 29-Apr-2025 23:49 2160 +citation-style-language.aarch64-linux.r64151.ta..> 19-Aug-2022 23:53 364 +citation-style-language.aarch64-linux.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.amd64-freebsd.r64151.ta..> 19-Aug-2022 23:53 364 +citation-style-language.amd64-freebsd.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.amd64-netbsd.r64151.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.amd64-netbsd.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.armhf-linux.r64151.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.armhf-linux.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.doc.r76060.tar.xz 14-Aug-2025 23:50 265064 +citation-style-language.doc.tar.xz 14-Aug-2025 23:50 265064 +citation-style-language.i386-freebsd.r64151.tar.xz 19-Aug-2022 23:53 360 +citation-style-language.i386-freebsd.tar.xz 19-Aug-2022 23:53 360 +citation-style-language.i386-linux.r64151.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.i386-linux.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.i386-netbsd.r64151.tar.xz 19-Aug-2022 23:53 360 +citation-style-language.i386-netbsd.tar.xz 19-Aug-2022 23:53 360 +citation-style-language.i386-solaris.r64151.tar.xz 19-Aug-2022 23:53 360 +citation-style-language.i386-solaris.tar.xz 19-Aug-2022 23:53 360 +citation-style-language.r76060.tar.xz 14-Aug-2025 23:50 1578136 +citation-style-language.tar.xz 14-Aug-2025 23:50 1578136 +citation-style-language.universal-darwin.r64151..> 19-Aug-2022 23:53 364 +citation-style-language.universal-darwin.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.windows.r65891.tar.xz 20-Feb-2023 22:10 2328 +citation-style-language.windows.tar.xz 20-Feb-2023 22:10 2328 +citation-style-language.x86_64-cygwin.r64151.ta..> 19-Aug-2022 23:53 364 +citation-style-language.x86_64-cygwin.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.x86_64-darwinlegacy.r64..> 19-Aug-2022 23:53 372 +citation-style-language.x86_64-darwinlegacy.tar.xz 19-Aug-2022 23:53 372 +citation-style-language.x86_64-linux.r64151.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.x86_64-linux.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.x86_64-linuxmusl.r64151..> 19-Aug-2022 23:53 364 +citation-style-language.x86_64-linuxmusl.tar.xz 19-Aug-2022 23:53 364 +citation-style-language.x86_64-solaris.r64151.t..> 19-Aug-2022 23:53 360 +citation-style-language.x86_64-solaris.tar.xz 19-Aug-2022 23:53 360 +cite.doc.r36428.tar.xz 28-Feb-2019 02:25 221780 +cite.doc.tar.xz 28-Feb-2019 02:25 221780 +cite.r36428.tar.xz 28-Feb-2019 02:25 20120 +cite.tar.xz 28-Feb-2019 02:25 20120 +citeall.doc.r45975.tar.xz 28-Feb-2019 02:25 110028 +citeall.doc.tar.xz 28-Feb-2019 02:25 110028 +citeall.r45975.tar.xz 28-Feb-2019 02:25 2060 +citeall.tar.xz 28-Feb-2019 02:25 2060 +citeref.doc.r47407.tar.xz 28-Feb-2019 02:25 66208 +citeref.doc.tar.xz 28-Feb-2019 02:25 66208 +citeref.r47407.tar.xz 28-Feb-2019 02:25 2264 +citeref.tar.xz 28-Feb-2019 02:25 2264 +citeright.doc.r75480.tar.xz 11-Jun-2025 23:47 82296 +citeright.doc.tar.xz 11-Jun-2025 23:47 82296 +citeright.r75480.tar.xz 11-Jun-2025 23:47 1372 +citeright.tar.xz 11-Jun-2025 23:47 1372 +cje.doc.r68656.tar.xz 26-Oct-2023 23:45 24948 +cje.doc.tar.xz 26-Oct-2023 23:45 24948 +cje.r68656.tar.xz 26-Oct-2023 23:45 26192 +cje.tar.xz 26-Oct-2023 23:45 26192 +cjhebrew.doc.r43444.tar.xz 28-Feb-2019 02:25 112888 +cjhebrew.doc.tar.xz 28-Feb-2019 02:25 112888 +cjhebrew.r43444.tar.xz 28-Feb-2019 02:25 41616 +cjhebrew.tar.xz 28-Feb-2019 02:25 41616 +cjk-gs-integrate.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.aarch64-linux.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.amd64-freebsd.r37223.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.amd64-freebsd.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.amd64-netbsd.r37223.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.amd64-netbsd.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.armhf-linux.r37223.tar.xz 28-Feb-2019 02:25 348 +cjk-gs-integrate.armhf-linux.tar.xz 28-Feb-2019 02:25 348 +cjk-gs-integrate.doc.r59705.tar.xz 25-Jun-2021 23:52 13400 +cjk-gs-integrate.doc.tar.xz 25-Jun-2021 23:52 13400 +cjk-gs-integrate.i386-freebsd.r37223.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.i386-freebsd.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.i386-linux.r37223.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.i386-linux.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.i386-netbsd.r37223.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.i386-netbsd.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.i386-solaris.r37223.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.i386-solaris.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.r59705.tar.xz 25-Jun-2021 23:52 36912 +cjk-gs-integrate.source.r59705.tar.xz 25-Jun-2021 23:52 560 +cjk-gs-integrate.source.tar.xz 25-Jun-2021 23:52 560 +cjk-gs-integrate.tar.xz 25-Jun-2021 23:52 36912 +cjk-gs-integrate.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 348 +cjk-gs-integrate.universal-darwin.tar.xz 25-Feb-2021 18:16 348 +cjk-gs-integrate.windows.r65891.tar.xz 20-Feb-2023 22:10 2312 +cjk-gs-integrate.windows.tar.xz 20-Feb-2023 22:10 2312 +cjk-gs-integrate.x86_64-cygwin.r37223.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.x86_64-cygwin.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:25 360 +cjk-gs-integrate.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:25 360 +cjk-gs-integrate.x86_64-linux.r37223.tar.xz 28-Feb-2019 02:25 348 +cjk-gs-integrate.x86_64-linux.tar.xz 28-Feb-2019 02:25 348 +cjk-gs-integrate.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:25 356 +cjk-gs-integrate.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:25 356 +cjk-gs-integrate.x86_64-solaris.r37223.tar.xz 28-Feb-2019 02:25 352 +cjk-gs-integrate.x86_64-solaris.tar.xz 28-Feb-2019 02:25 352 +cjk-ko.doc.r70300.tar.xz 01-Mar-2024 22:54 161668 +cjk-ko.doc.tar.xz 01-Mar-2024 22:54 161668 +cjk-ko.r70300.tar.xz 01-Mar-2024 22:54 8732 +cjk-ko.tar.xz 01-Mar-2024 22:54 8732 +cjk.doc.r60865.tar.xz 24-Oct-2021 23:52 1477448 +cjk.doc.tar.xz 24-Oct-2021 23:52 1477448 +cjk.r60865.tar.xz 24-Oct-2021 23:52 58480 +cjk.source.r60865.tar.xz 24-Oct-2021 23:52 73056 +cjk.source.tar.xz 24-Oct-2021 23:52 73056 +cjk.tar.xz 24-Oct-2021 23:52 58480 +cjkpunct.doc.r41119.tar.xz 28-Feb-2019 02:25 143540 +cjkpunct.doc.tar.xz 28-Feb-2019 02:25 143540 +cjkpunct.r41119.tar.xz 28-Feb-2019 02:25 4060 +cjkpunct.source.r41119.tar.xz 28-Feb-2019 02:25 7020 +cjkpunct.source.tar.xz 28-Feb-2019 02:25 7020 +cjkpunct.tar.xz 28-Feb-2019 02:25 4060 +cjkutils.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 48296 +cjkutils.aarch64-linux.tar.xz 13-Feb-2025 00:47 48296 +cjkutils.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:51 46536 +cjkutils.amd64-freebsd.tar.xz 09-Feb-2025 00:51 46536 +cjkutils.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 45320 +cjkutils.amd64-netbsd.tar.xz 09-Feb-2025 18:14 45320 +cjkutils.armhf-linux.r73793.tar.xz 09-Feb-2025 00:51 44204 +cjkutils.armhf-linux.tar.xz 09-Feb-2025 00:51 44204 +cjkutils.doc.r60833.tar.xz 21-Oct-2021 23:52 344216 +cjkutils.doc.tar.xz 21-Oct-2021 23:52 344216 +cjkutils.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:51 46556 +cjkutils.i386-freebsd.tar.xz 09-Feb-2025 00:51 46556 +cjkutils.i386-linux.r73792.tar.xz 09-Feb-2025 00:51 55920 +cjkutils.i386-linux.tar.xz 09-Feb-2025 00:51 55920 +cjkutils.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 41804 +cjkutils.i386-netbsd.tar.xz 09-Feb-2025 18:14 41804 +cjkutils.i386-solaris.r73792.tar.xz 09-Feb-2025 00:51 50068 +cjkutils.i386-solaris.tar.xz 09-Feb-2025 00:51 50068 +cjkutils.r60833.tar.xz 21-Oct-2021 23:52 1996 +cjkutils.tar.xz 21-Oct-2021 23:52 1996 +cjkutils.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 103904 +cjkutils.universal-darwin.tar.xz 09-Feb-2025 18:14 103904 +cjkutils.windows.r73796.tar.xz 09-Feb-2025 18:14 24992 +cjkutils.windows.tar.xz 09-Feb-2025 18:14 24992 +cjkutils.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 20272 +cjkutils.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 20272 +cjkutils.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 47376 +cjkutils.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 47376 +cjkutils.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 50072 +cjkutils.x86_64-linux.tar.xz 19-Feb-2025 00:46 50072 +cjkutils.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:51 50968 +cjkutils.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:51 50968 +cjkutils.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:51 55108 +cjkutils.x86_64-solaris.tar.xz 09-Feb-2025 00:51 55108 +cjs-rcs-article.doc.r76275.tar.xz 10-Sep-2025 23:49 581608 +cjs-rcs-article.doc.tar.xz 10-Sep-2025 23:49 581608 +cjs-rcs-article.r76275.tar.xz 10-Sep-2025 23:49 15092 +cjs-rcs-article.source.r76275.tar.xz 10-Sep-2025 23:49 116992 +cjs-rcs-article.source.tar.xz 10-Sep-2025 23:49 116992 +cjs-rcs-article.tar.xz 10-Sep-2025 23:49 15092 +clara.doc.r75301.tar.xz 23-May-2025 23:46 323880 +clara.doc.tar.xz 23-May-2025 23:46 323880 +clara.r75301.tar.xz 23-May-2025 23:46 781780 +clara.tar.xz 23-May-2025 23:46 781780 +classics.doc.r53671.tar.xz 05-Feb-2020 00:54 209880 +classics.doc.tar.xz 05-Feb-2020 00:54 209880 +classics.r53671.tar.xz 05-Feb-2020 00:54 1844 +classics.tar.xz 05-Feb-2020 00:54 1844 +classicthesis.doc.r73676.tar.xz 02-Feb-2025 15:41 600420 +classicthesis.doc.tar.xz 02-Feb-2025 15:41 600420 +classicthesis.r73676.tar.xz 02-Feb-2025 15:41 9688 +classicthesis.tar.xz 02-Feb-2025 15:41 9688 +classpack.doc.r55218.tar.xz 20-May-2020 21:52 143968 +classpack.doc.tar.xz 20-May-2020 21:52 143968 +classpack.r55218.tar.xz 20-May-2020 21:52 2292 +classpack.source.r55218.tar.xz 20-May-2020 21:52 21084 +classpack.source.tar.xz 20-May-2020 21:52 21084 +classpack.tar.xz 20-May-2020 21:52 2292 +cleanthesis.doc.r51472.tar.xz 26-Jun-2019 23:54 904536 +cleanthesis.doc.tar.xz 26-Jun-2019 23:54 904536 +cleanthesis.r51472.tar.xz 26-Jun-2019 23:54 6756 +cleanthesis.tar.xz 26-Jun-2019 23:54 6756 +clearsans.doc.r74767.tar.xz 28-Mar-2025 00:50 242936 +clearsans.doc.tar.xz 28-Mar-2025 00:50 242936 +clearsans.r74767.tar.xz 28-Mar-2025 00:50 1365536 +clearsans.tar.xz 28-Mar-2025 00:50 1365536 +clefval.doc.r55985.tar.xz 29-Jul-2020 23:57 810948 +clefval.doc.tar.xz 29-Jul-2020 23:57 810948 +clefval.r55985.tar.xz 29-Jul-2020 23:57 1540 +clefval.source.r55985.tar.xz 29-Jul-2020 23:57 8076 +clefval.source.tar.xz 29-Jul-2020 23:57 8076 +clefval.tar.xz 29-Jul-2020 23:57 1540 +cleveref-forward.doc.r70649.tar.xz 16-Mar-2024 00:48 75652 +cleveref-forward.doc.tar.xz 16-Mar-2024 00:48 75652 +cleveref-forward.r70649.tar.xz 16-Mar-2024 00:48 5952 +cleveref-forward.tar.xz 16-Mar-2024 00:48 5952 +cleveref-usedon.doc.r70491.tar.xz 08-Mar-2024 00:46 619856 +cleveref-usedon.doc.tar.xz 08-Mar-2024 00:46 619856 +cleveref-usedon.r70491.tar.xz 08-Mar-2024 00:46 4004 +cleveref-usedon.source.r70491.tar.xz 08-Mar-2024 00:46 10504 +cleveref-usedon.source.tar.xz 08-Mar-2024 00:46 10504 +cleveref-usedon.tar.xz 08-Mar-2024 00:46 4004 +cleveref.doc.r61719.tar.xz 24-Jan-2022 00:53 386944 +cleveref.doc.tar.xz 24-Jan-2022 00:53 386944 +cleveref.r61719.tar.xz 24-Jan-2022 00:53 28472 +cleveref.source.r61719.tar.xz 24-Jan-2022 00:53 77476 +cleveref.source.tar.xz 24-Jan-2022 00:53 77476 +cleveref.tar.xz 24-Jan-2022 00:53 28472 +clicks.doc.r73208.tar.xz 26-Dec-2024 00:47 244736 +clicks.doc.tar.xz 26-Dec-2024 00:47 244736 +clicks.r73208.tar.xz 26-Dec-2024 00:47 1612 +clicks.source.r73208.tar.xz 26-Dec-2024 00:47 3232 +clicks.source.tar.xz 26-Dec-2024 00:47 3232 +clicks.tar.xz 26-Dec-2024 00:47 1612 +clipboard.doc.r47747.tar.xz 28-Feb-2019 02:25 161528 +clipboard.doc.tar.xz 28-Feb-2019 02:25 161528 +clipboard.r47747.tar.xz 28-Feb-2019 02:25 1028 +clipboard.tar.xz 28-Feb-2019 02:25 1028 +clistmap.doc.r61811.tar.xz 31-Jan-2022 00:52 667032 +clistmap.doc.tar.xz 31-Jan-2022 00:52 667032 +clistmap.r61811.tar.xz 31-Jan-2022 00:52 6056 +clistmap.source.r61811.tar.xz 31-Jan-2022 00:52 10656 +clistmap.source.tar.xz 31-Jan-2022 00:52 10656 +clistmap.tar.xz 31-Jan-2022 00:52 6056 +clock.doc.r15878.tar.xz 28-Feb-2019 02:25 68320 +clock.doc.tar.xz 28-Feb-2019 02:25 68320 +clock.r15878.tar.xz 28-Feb-2019 02:25 2712 +clock.tar.xz 28-Feb-2019 02:25 2712 +clojure-pamphlet.aarch64-linux.r51944.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.aarch64-linux.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.amd64-freebsd.r51944.tar.xz 23-Aug-2019 23:53 352 +clojure-pamphlet.amd64-freebsd.tar.xz 23-Aug-2019 23:53 352 +clojure-pamphlet.amd64-netbsd.r51944.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.amd64-netbsd.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.armhf-linux.r51944.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.armhf-linux.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.doc.r67201.tar.xz 23-May-2023 23:44 213696 +clojure-pamphlet.doc.tar.xz 23-May-2023 23:44 213696 +clojure-pamphlet.i386-freebsd.r51944.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.i386-freebsd.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.i386-linux.r51944.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.i386-linux.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.i386-netbsd.r51944.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.i386-netbsd.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.i386-solaris.r51944.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.i386-solaris.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.r67201.tar.xz 23-May-2023 23:44 3644 +clojure-pamphlet.source.r67201.tar.xz 23-May-2023 23:44 4980 +clojure-pamphlet.source.tar.xz 23-May-2023 23:44 4980 +clojure-pamphlet.tar.xz 23-May-2023 23:44 3644 +clojure-pamphlet.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 352 +clojure-pamphlet.universal-darwin.tar.xz 25-Feb-2021 18:16 352 +clojure-pamphlet.windows.r65891.tar.xz 20-Feb-2023 22:10 2320 +clojure-pamphlet.windows.tar.xz 20-Feb-2023 22:10 2320 +clojure-pamphlet.x86_64-cygwin.r51944.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.x86_64-cygwin.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.x86_64-darwinlegacy.r51944.tar.xz 23-Aug-2019 23:53 356 +clojure-pamphlet.x86_64-darwinlegacy.tar.xz 23-Aug-2019 23:53 356 +clojure-pamphlet.x86_64-linux.r51944.tar.xz 23-Aug-2019 23:53 352 +clojure-pamphlet.x86_64-linux.tar.xz 23-Aug-2019 23:53 352 +clojure-pamphlet.x86_64-linuxmusl.r51944.tar.xz 23-Aug-2019 23:53 352 +clojure-pamphlet.x86_64-linuxmusl.tar.xz 23-Aug-2019 23:53 352 +clojure-pamphlet.x86_64-solaris.r51944.tar.xz 23-Aug-2019 23:53 348 +clojure-pamphlet.x86_64-solaris.tar.xz 23-Aug-2019 23:53 348 +cloze.doc.r75681.tar.xz 04-Jul-2025 23:48 313008 +cloze.doc.tar.xz 04-Jul-2025 23:48 313008 +cloze.r75681.tar.xz 04-Jul-2025 23:48 29856 +cloze.tar.xz 04-Jul-2025 23:48 29856 +clrdblpg.doc.r47511.tar.xz 28-Feb-2019 02:25 289968 +clrdblpg.doc.tar.xz 28-Feb-2019 02:25 289968 +clrdblpg.r47511.tar.xz 28-Feb-2019 02:25 1256 +clrdblpg.source.r47511.tar.xz 28-Feb-2019 02:25 2740 +clrdblpg.source.tar.xz 28-Feb-2019 02:25 2740 +clrdblpg.tar.xz 28-Feb-2019 02:25 1256 +clrscode.doc.r51136.tar.xz 15-May-2019 23:38 40052 +clrscode.doc.tar.xz 15-May-2019 23:38 40052 +clrscode.r51136.tar.xz 15-May-2019 23:38 4520 +clrscode.tar.xz 15-May-2019 23:38 4520 +clrscode3e.doc.r51137.tar.xz 15-May-2019 23:38 79592 +clrscode3e.doc.tar.xz 15-May-2019 23:38 79592 +clrscode3e.r51137.tar.xz 15-May-2019 23:38 5348 +clrscode3e.tar.xz 15-May-2019 23:38 5348 +clrstrip.doc.r60363.tar.xz 29-Aug-2021 23:52 196756 +clrstrip.doc.tar.xz 29-Aug-2021 23:52 196756 +clrstrip.r60363.tar.xz 29-Aug-2021 23:52 1624 +clrstrip.source.r60363.tar.xz 29-Aug-2021 23:52 4552 +clrstrip.source.tar.xz 29-Aug-2021 23:52 4552 +clrstrip.tar.xz 29-Aug-2021 23:52 1624 +cluttex.aarch64-linux.r48871.tar.xz 28-Feb-2019 02:25 388 +cluttex.aarch64-linux.tar.xz 28-Feb-2019 02:25 388 +cluttex.amd64-freebsd.r48871.tar.xz 28-Feb-2019 02:25 388 +cluttex.amd64-freebsd.tar.xz 28-Feb-2019 02:25 388 +cluttex.amd64-netbsd.r48871.tar.xz 28-Feb-2019 02:25 388 +cluttex.amd64-netbsd.tar.xz 28-Feb-2019 02:25 388 +cluttex.armhf-linux.r48871.tar.xz 28-Feb-2019 02:25 388 +cluttex.armhf-linux.tar.xz 28-Feb-2019 02:25 388 +cluttex.doc.r74655.tar.xz 17-Mar-2025 00:50 449340 +cluttex.doc.tar.xz 17-Mar-2025 00:50 449340 +cluttex.i386-freebsd.r48871.tar.xz 28-Feb-2019 02:25 388 +cluttex.i386-freebsd.tar.xz 28-Feb-2019 02:25 388 +cluttex.i386-linux.r48871.tar.xz 28-Feb-2019 02:25 384 +cluttex.i386-linux.tar.xz 28-Feb-2019 02:25 384 +cluttex.i386-netbsd.r48871.tar.xz 28-Feb-2019 02:25 388 +cluttex.i386-netbsd.tar.xz 28-Feb-2019 02:25 388 +cluttex.i386-solaris.r48871.tar.xz 28-Feb-2019 02:25 388 +cluttex.i386-solaris.tar.xz 28-Feb-2019 02:25 388 +cluttex.r74655.tar.xz 17-Mar-2025 00:50 77324 +cluttex.tar.xz 17-Mar-2025 00:50 77324 +cluttex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 388 +cluttex.universal-darwin.tar.xz 25-Feb-2021 18:16 388 +cluttex.windows.r74706.tar.xz 21-Mar-2025 00:49 2664 +cluttex.windows.tar.xz 21-Mar-2025 00:49 2664 +cluttex.x86_64-cygwin.r48871.tar.xz 28-Feb-2019 02:25 388 +cluttex.x86_64-cygwin.tar.xz 28-Feb-2019 02:25 388 +cluttex.x86_64-darwinlegacy.r48871.tar.xz 28-Feb-2019 02:25 396 +cluttex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:25 396 +cluttex.x86_64-linux.r48871.tar.xz 28-Feb-2019 02:25 388 +cluttex.x86_64-linux.tar.xz 28-Feb-2019 02:25 388 +cluttex.x86_64-linuxmusl.r48871.tar.xz 28-Feb-2019 02:25 392 +cluttex.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:25 392 +cluttex.x86_64-solaris.r48871.tar.xz 28-Feb-2019 02:25 388 +cluttex.x86_64-solaris.tar.xz 28-Feb-2019 02:25 388 +cm-lgc.doc.r28250.tar.xz 28-Feb-2019 02:25 89820 +cm-lgc.doc.tar.xz 28-Feb-2019 02:25 89820 +cm-lgc.r28250.tar.xz 28-Feb-2019 02:26 4867236 +cm-lgc.tar.xz 28-Feb-2019 02:26 4867236 +cm-mf-extra-bold.r54512.tar.xz 24-Mar-2020 00:56 4896 +cm-mf-extra-bold.tar.xz 24-Mar-2020 00:56 4896 +cm-super.doc.r15878.tar.xz 28-Feb-2019 02:26 22564 +cm-super.doc.tar.xz 28-Feb-2019 02:26 22564 +cm-super.r15878.tar.xz 28-Feb-2019 02:26 64562404 +cm-super.tar.xz 28-Feb-2019 02:26 64562404 +cm-unicode.doc.r58661.tar.xz 23-Mar-2021 18:31 950712 +cm-unicode.doc.tar.xz 23-Mar-2021 18:31 950712 +cm-unicode.r58661.tar.xz 23-Mar-2021 18:31 14122248 +cm-unicode.tar.xz 23-Mar-2021 18:31 14122248 +cm.doc.r57963.tar.xz 27-Feb-2021 00:28 2500 +cm.doc.tar.xz 27-Feb-2021 00:28 2500 +cm.r57963.tar.xz 27-Feb-2021 00:28 238064 +cm.tar.xz 27-Feb-2021 00:28 238064 +cmap.doc.r57640.tar.xz 07-Feb-2021 00:58 2284 +cmap.doc.tar.xz 07-Feb-2021 00:58 2284 +cmap.r57640.tar.xz 07-Feb-2021 00:58 5728 +cmap.tar.xz 07-Feb-2021 00:58 5728 +cmarrows.doc.r24378.tar.xz 28-Feb-2019 02:27 47780 +cmarrows.doc.tar.xz 28-Feb-2019 02:27 47780 +cmarrows.r24378.tar.xz 28-Feb-2019 02:27 10204 +cmarrows.tar.xz 28-Feb-2019 02:27 10204 +cmathbb.doc.r56414.tar.xz 23-Sep-2020 23:57 71808 +cmathbb.doc.tar.xz 23-Sep-2020 23:57 71808 +cmathbb.r56414.tar.xz 23-Sep-2020 23:57 89308 +cmathbb.tar.xz 23-Sep-2020 23:57 89308 +cmbright.doc.r75712.tar.xz 07-Jul-2025 23:49 61060 +cmbright.doc.tar.xz 07-Jul-2025 23:49 61060 +cmbright.r75712.tar.xz 07-Jul-2025 23:49 111828 +cmbright.source.r75712.tar.xz 07-Jul-2025 23:49 6944 +cmbright.source.tar.xz 07-Jul-2025 23:49 6944 +cmbright.tar.xz 07-Jul-2025 23:49 111828 +cmcyr.doc.r68681.tar.xz 27-Oct-2023 23:44 5440 +cmcyr.doc.tar.xz 27-Oct-2023 23:44 5440 +cmcyr.r68681.tar.xz 27-Oct-2023 23:44 901468 +cmcyr.tar.xz 27-Oct-2023 23:44 901468 +cmdstring.doc.r15878.tar.xz 28-Feb-2019 02:27 346136 +cmdstring.doc.tar.xz 28-Feb-2019 02:27 346136 +cmdstring.r15878.tar.xz 28-Feb-2019 02:27 872 +cmdstring.tar.xz 28-Feb-2019 02:27 872 +cmdtrack.doc.r28910.tar.xz 28-Feb-2019 02:27 131540 +cmdtrack.doc.tar.xz 28-Feb-2019 02:27 131540 +cmdtrack.r28910.tar.xz 28-Feb-2019 02:27 2884 +cmdtrack.source.r28910.tar.xz 28-Feb-2019 02:27 5748 +cmdtrack.source.tar.xz 28-Feb-2019 02:27 5748 +cmdtrack.tar.xz 28-Feb-2019 02:27 2884 +cmexb.doc.r54074.tar.xz 04-Mar-2020 22:50 916 +cmexb.doc.tar.xz 04-Mar-2020 22:50 916 +cmexb.r54074.tar.xz 04-Mar-2020 22:50 31728 +cmexb.tar.xz 04-Mar-2020 22:50 31728 +cmextra.r57866.tar.xz 24-Feb-2021 00:58 21740 +cmextra.tar.xz 24-Feb-2021 00:58 21740 +cmll.doc.r17964.tar.xz 28-Feb-2019 02:27 96492 +cmll.doc.tar.xz 28-Feb-2019 02:27 96492 +cmll.r17964.tar.xz 28-Feb-2019 02:27 329904 +cmll.source.r17964.tar.xz 28-Feb-2019 02:27 4464 +cmll.source.tar.xz 28-Feb-2019 02:27 4464 +cmll.tar.xz 28-Feb-2019 02:27 329904 +cmpica.doc.r15878.tar.xz 28-Feb-2019 02:27 1092 +cmpica.doc.tar.xz 28-Feb-2019 02:27 1092 +cmpica.r15878.tar.xz 28-Feb-2019 02:27 6448 +cmpica.tar.xz 28-Feb-2019 02:27 6448 +cmpj.doc.r58506.tar.xz 19-Mar-2021 00:35 548252 +cmpj.doc.tar.xz 19-Mar-2021 00:35 548252 +cmpj.r58506.tar.xz 19-Mar-2021 00:35 49420 +cmpj.tar.xz 19-Mar-2021 00:35 49420 +cmsd.doc.r18787.tar.xz 28-Feb-2019 02:27 2288 +cmsd.doc.tar.xz 28-Feb-2019 02:27 2288 +cmsd.r18787.tar.xz 28-Feb-2019 02:27 1236 +cmsd.tar.xz 28-Feb-2019 02:27 1236 +cmsrb.doc.r54706.tar.xz 12-Apr-2020 23:54 711664 +cmsrb.doc.tar.xz 12-Apr-2020 23:54 711664 +cmsrb.r54706.tar.xz 12-Apr-2020 23:54 2299372 +cmsrb.tar.xz 12-Apr-2020 23:54 2299372 +cmtiup.doc.r75529.tar.xz 16-Jun-2025 23:49 596168 +cmtiup.doc.tar.xz 16-Jun-2025 23:49 596168 +cmtiup.r75529.tar.xz 16-Jun-2025 23:49 43620 +cmtiup.tar.xz 16-Jun-2025 23:49 43620 +cmupint.doc.r54735.tar.xz 14-Apr-2020 23:54 310712 +cmupint.doc.tar.xz 14-Apr-2020 23:54 310712 +cmupint.r54735.tar.xz 14-Apr-2020 23:54 44680 +cmupint.tar.xz 14-Apr-2020 23:54 44680 +cnbwp.doc.r69910.tar.xz 17-Feb-2024 00:45 686408 +cnbwp.doc.tar.xz 17-Feb-2024 00:45 686408 +cnbwp.r69910.tar.xz 17-Feb-2024 00:45 10112 +cnbwp.tar.xz 17-Feb-2024 00:45 10112 +cnltx.doc.r55265.tar.xz 24-May-2020 22:01 790520 +cnltx.doc.tar.xz 24-May-2020 22:01 790520 +cnltx.r55265.tar.xz 24-May-2020 22:01 34840 +cnltx.tar.xz 24-May-2020 22:01 34840 +cns.doc.r45677.tar.xz 28-Feb-2019 02:27 756 +cns.doc.tar.xz 28-Feb-2019 02:27 756 +cns.r45677.tar.xz 28-Feb-2019 02:27 2985692 +cns.tar.xz 28-Feb-2019 02:27 2985692 +cntformats.doc.r34668.tar.xz 28-Feb-2019 02:27 427824 +cntformats.doc.tar.xz 28-Feb-2019 02:27 427824 +cntformats.r34668.tar.xz 28-Feb-2019 02:27 2688 +cntformats.tar.xz 28-Feb-2019 02:27 2688 +cntperchap.doc.r37572.tar.xz 28-Feb-2019 02:27 271048 +cntperchap.doc.tar.xz 28-Feb-2019 02:27 271048 +cntperchap.r37572.tar.xz 28-Feb-2019 02:27 3964 +cntperchap.tar.xz 28-Feb-2019 02:27 3964 +cochineal.doc.r70528.tar.xz 10-Mar-2024 00:54 387952 +cochineal.doc.tar.xz 10-Mar-2024 00:54 387952 +cochineal.r70528.tar.xz 10-Mar-2024 00:55 2586384 +cochineal.tar.xz 10-Mar-2024 00:55 2586384 +codeanatomy.doc.r65648.tar.xz 28-Jan-2023 00:54 296484 +codeanatomy.doc.tar.xz 28-Jan-2023 00:54 296484 +codeanatomy.r65648.tar.xz 28-Jan-2023 00:54 1844 +codeanatomy.source.r65648.tar.xz 28-Jan-2023 00:54 4844 +codeanatomy.source.tar.xz 28-Jan-2023 00:54 4844 +codeanatomy.tar.xz 28-Jan-2023 00:54 1844 +codebox.doc.r61771.tar.xz 29-Jan-2022 00:52 385704 +codebox.doc.tar.xz 29-Jan-2022 00:52 385704 +codebox.r61771.tar.xz 29-Jan-2022 00:52 3640 +codebox.tar.xz 29-Jan-2022 00:52 3640 +codedescribe.doc.r76411.tar.xz 26-Sep-2025 23:46 507424 +codedescribe.doc.tar.xz 26-Sep-2025 23:46 507424 +codedescribe.r76411.tar.xz 26-Sep-2025 23:46 13684 +codedescribe.tar.xz 26-Sep-2025 23:46 13684 +codedoc.doc.r17630.tar.xz 28-Feb-2019 02:27 377460 +codedoc.doc.tar.xz 28-Feb-2019 02:27 377460 +codedoc.r17630.tar.xz 28-Feb-2019 02:27 10108 +codedoc.tar.xz 28-Feb-2019 02:27 10108 +codehigh.doc.r74188.tar.xz 22-Feb-2025 00:49 97480 +codehigh.doc.tar.xz 22-Feb-2025 00:49 97480 +codehigh.r74188.tar.xz 22-Feb-2025 00:49 6740 +codehigh.tar.xz 22-Feb-2025 00:49 6740 +codepage.doc.r51502.tar.xz 28-Jun-2019 23:53 257084 +codepage.doc.tar.xz 28-Jun-2019 23:53 257084 +codepage.r51502.tar.xz 28-Jun-2019 23:53 10952 +codepage.source.r51502.tar.xz 28-Jun-2019 23:53 24136 +codepage.source.tar.xz 28-Jun-2019 23:53 24136 +codepage.tar.xz 28-Jun-2019 23:53 10952 +codesection.doc.r34481.tar.xz 28-Feb-2019 02:27 376892 +codesection.doc.tar.xz 28-Feb-2019 02:27 376892 +codesection.r34481.tar.xz 28-Feb-2019 02:27 2144 +codesection.source.r34481.tar.xz 28-Feb-2019 02:27 4192 +codesection.source.tar.xz 28-Feb-2019 02:27 4192 +codesection.tar.xz 28-Feb-2019 02:27 2144 +codicefiscaleitaliano.doc.r29803.tar.xz 28-Feb-2019 02:27 217732 +codicefiscaleitaliano.doc.tar.xz 28-Feb-2019 02:27 217732 +codicefiscaleitaliano.r29803.tar.xz 28-Feb-2019 02:27 1836 +codicefiscaleitaliano.source.r29803.tar.xz 28-Feb-2019 02:27 8224 +codicefiscaleitaliano.source.tar.xz 28-Feb-2019 02:27 8224 +codicefiscaleitaliano.tar.xz 28-Feb-2019 02:27 1836 +coelacanth.doc.r64558.tar.xz 30-Sep-2022 23:59 67104 +coelacanth.doc.tar.xz 30-Sep-2022 23:59 67104 +coelacanth.r64558.tar.xz 30-Sep-2022 23:59 6833668 +coelacanth.tar.xz 30-Sep-2022 23:59 6833668 +coffeestains.doc.r59703.tar.xz 25-Jun-2021 23:52 358852 +coffeestains.doc.tar.xz 25-Jun-2021 23:52 358852 +coffeestains.r59703.tar.xz 25-Jun-2021 23:52 86728 +coffeestains.tar.xz 25-Jun-2021 23:52 86728 +collargs.doc.r70689.tar.xz 19-Mar-2024 00:45 8160 +collargs.doc.tar.xz 19-Mar-2024 00:45 8160 +collargs.r70689.tar.xz 19-Mar-2024 00:45 8596 +collargs.source.r70689.tar.xz 19-Mar-2024 00:45 25208 +collargs.source.tar.xz 19-Mar-2024 00:45 25208 +collargs.tar.xz 19-Mar-2024 00:45 8596 +collcell.doc.r74187.tar.xz 22-Feb-2025 00:49 196712 +collcell.doc.tar.xz 22-Feb-2025 00:49 196712 +collcell.r74187.tar.xz 22-Feb-2025 00:49 2484 +collcell.source.r74187.tar.xz 22-Feb-2025 00:49 6356 +collcell.source.tar.xz 22-Feb-2025 00:49 6356 +collcell.tar.xz 22-Feb-2025 00:49 2484 +collectbox.doc.r64967.tar.xz 08-Nov-2022 00:55 165956 +collectbox.doc.tar.xz 08-Nov-2022 00:55 165956 +collectbox.r64967.tar.xz 08-Nov-2022 00:55 2872 +collectbox.source.r64967.tar.xz 08-Nov-2022 00:55 8100 +collectbox.source.tar.xz 08-Nov-2022 00:55 8100 +collectbox.tar.xz 08-Nov-2022 00:55 2872 +collection-basic.r72890.tar.xz 19-Nov-2024 00:47 632 +collection-basic.tar.xz 19-Nov-2024 00:47 632 +collection-bibtexextra.r75480.tar.xz 11-Jun-2025 23:47 1308 +collection-bibtexextra.tar.xz 11-Jun-2025 23:47 1308 +collection-binextra.r75830.tar.xz 19-Jul-2025 23:52 1032 +collection-binextra.tar.xz 19-Jul-2025 23:52 1032 +collection-context.r75426.tar.xz 07-Jun-2025 19:00 632 +collection-context.tar.xz 07-Jun-2025 19:00 632 +collection-fontsextra.r76351.tar.xz 18-Sep-2025 23:44 2112 +collection-fontsextra.tar.xz 18-Sep-2025 23:44 2112 +collection-fontsrecommended.r54074.tar.xz 04-Mar-2020 22:50 560 +collection-fontsrecommended.tar.xz 04-Mar-2020 22:50 560 +collection-fontutils.r61207.tar.xz 03-Dec-2021 00:52 536 +collection-fontutils.tar.xz 03-Dec-2021 00:52 536 +collection-formatsextra.r72250.tar.xz 10-Sep-2024 23:47 572 +collection-formatsextra.tar.xz 10-Sep-2024 23:47 572 +collection-games.r76381.tar.xz 22-Sep-2025 23:50 676 +collection-games.tar.xz 22-Sep-2025 23:50 676 +collection-humanities.r75384.tar.xz 03-Jun-2025 23:50 632 +collection-humanities.tar.xz 03-Jun-2025 23:50 632 +collection-langarabic.r74912.tar.xz 11-Apr-2025 23:50 488 +collection-langarabic.tar.xz 11-Apr-2025 23:50 488 +collection-langchinese.r72136.tar.xz 29-Aug-2024 23:48 568 +collection-langchinese.tar.xz 29-Aug-2024 23:48 568 +collection-langcjk.r65824.tar.xz 14-Feb-2023 00:52 588 +collection-langcjk.tar.xz 14-Feb-2023 00:52 588 +collection-langcyrillic.r69727.tar.xz 07-Feb-2024 00:45 616 +collection-langcyrillic.tar.xz 07-Feb-2024 00:45 616 +collection-langczechslovak.r54074.tar.xz 04-Mar-2020 22:50 372 +collection-langczechslovak.tar.xz 04-Mar-2020 22:50 372 +collection-langenglish.r74022.tar.xz 16-Feb-2025 01:01 908 +collection-langenglish.tar.xz 16-Feb-2025 01:01 908 +collection-langeuropean.r73414.tar.xz 11-Jan-2025 17:47 728 +collection-langeuropean.tar.xz 11-Jan-2025 17:47 728 +collection-langfrench.r72499.tar.xz 08-Oct-2024 23:47 656 +collection-langfrench.tar.xz 08-Oct-2024 23:47 656 +collection-langgerman.r74675.tar.xz 18-Mar-2025 00:50 640 +collection-langgerman.tar.xz 18-Mar-2025 00:50 640 +collection-langgreek.r65038.tar.xz 18-Nov-2022 00:52 440 +collection-langgreek.tar.xz 18-Nov-2022 00:52 440 +collection-langitalian.r72943.tar.xz 24-Nov-2024 01:04 440 +collection-langitalian.tar.xz 24-Nov-2024 01:04 440 +collection-langjapanese.r74394.tar.xz 03-Mar-2025 00:50 704 +collection-langjapanese.tar.xz 03-Mar-2025 00:50 704 +collection-langkorean.r54074.tar.xz 04-Mar-2020 22:50 396 +collection-langkorean.tar.xz 04-Mar-2020 22:50 396 +collection-langother.r74620.tar.xz 15-Mar-2025 00:51 824 +collection-langother.tar.xz 15-Mar-2025 00:51 824 +collection-langpolish.r54074.tar.xz 04-Mar-2020 22:50 408 +collection-langpolish.tar.xz 04-Mar-2020 22:50 408 +collection-langportuguese.r73303.tar.xz 05-Jan-2025 01:01 428 +collection-langportuguese.tar.xz 05-Jan-2025 01:01 428 +collection-langspanish.r72203.tar.xz 05-Sep-2024 23:47 404 +collection-langspanish.tar.xz 05-Sep-2024 23:47 404 +collection-latex.r73720.tar.xz 04-Feb-2025 00:47 712 +collection-latex.tar.xz 04-Feb-2025 00:47 712 +collection-latexextra.r76331.tar.xz 17-Sep-2025 23:50 7524 +collection-latexextra.tar.xz 17-Sep-2025 23:50 7524 +collection-latexrecommended.r75762.tar.xz 12-Jul-2025 23:59 740 +collection-latexrecommended.tar.xz 12-Jul-2025 23:59 740 +collection-luatex.r75911.tar.xz 28-Jul-2025 23:49 1104 +collection-luatex.tar.xz 28-Jul-2025 23:49 1104 +collection-mathscience.r76182.tar.xz 29-Aug-2025 23:49 1900 +collection-mathscience.tar.xz 29-Aug-2025 23:49 1900 +collection-metapost.r73627.tar.xz 29-Jan-2025 00:46 584 +collection-metapost.tar.xz 29-Jan-2025 00:46 584 +collection-music.r76267.tar.xz 09-Sep-2025 23:49 520 +collection-music.tar.xz 09-Sep-2025 23:49 520 +collection-pictures.r76321.tar.xz 15-Sep-2025 23:45 1808 +collection-pictures.tar.xz 15-Sep-2025 23:45 1808 +collection-plaingeneric.r75599.tar.xz 24-Jun-2025 23:49 1048 +collection-plaingeneric.tar.xz 24-Jun-2025 23:49 1048 +collection-pstricks.r65367.tar.xz 27-Dec-2022 00:53 816 +collection-pstricks.tar.xz 27-Dec-2022 00:53 816 +collection-publishers.r76394.tar.xz 24-Sep-2025 23:48 1884 +collection-publishers.tar.xz 24-Sep-2025 23:48 1884 +collection-texworks.r71515.tar.xz 13-Jun-2024 23:46 340 +collection-texworks.tar.xz 13-Jun-2024 23:46 340 +collection-wintools.r65952.tar.xz 20-Feb-2023 22:10 388 +collection-wintools.tar.xz 20-Feb-2023 22:10 388 +collection-xetex.r71515.tar.xz 13-Jun-2024 23:46 656 +collection-xetex.tar.xz 13-Jun-2024 23:46 656 +collref.doc.r74757.tar.xz 27-Mar-2025 00:50 285020 +collref.doc.tar.xz 27-Mar-2025 00:50 285020 +collref.r74757.tar.xz 27-Mar-2025 00:50 1672 +collref.source.r74757.tar.xz 27-Mar-2025 00:50 7344 +collref.source.tar.xz 27-Mar-2025 00:50 7344 +collref.tar.xz 27-Mar-2025 00:50 1672 +colophon.doc.r47913.tar.xz 28-Feb-2019 02:27 377660 +colophon.doc.tar.xz 28-Feb-2019 02:27 377660 +colophon.r47913.tar.xz 28-Feb-2019 02:27 2028 +colophon.source.r47913.tar.xz 28-Feb-2019 02:27 7080 +colophon.source.tar.xz 28-Feb-2019 02:27 7080 +colophon.tar.xz 28-Feb-2019 02:27 2028 +color-edits.doc.r56707.tar.xz 19-Oct-2020 23:57 231020 +color-edits.doc.tar.xz 19-Oct-2020 23:57 231020 +color-edits.r56707.tar.xz 19-Oct-2020 23:57 1920 +color-edits.source.r56707.tar.xz 19-Oct-2020 23:57 7604 +color-edits.source.tar.xz 19-Oct-2020 23:57 7604 +color-edits.tar.xz 19-Oct-2020 23:57 1920 +colorblind.doc.r73199.tar.xz 24-Dec-2024 00:47 109964 +colorblind.doc.tar.xz 24-Dec-2024 00:47 109964 +colorblind.r73199.tar.xz 24-Dec-2024 00:47 4008 +colorblind.tar.xz 24-Dec-2024 00:47 4008 +colordoc.doc.r18270.tar.xz 28-Feb-2019 02:27 173692 +colordoc.doc.tar.xz 28-Feb-2019 02:27 173692 +colordoc.r18270.tar.xz 28-Feb-2019 02:27 2228 +colordoc.source.r18270.tar.xz 28-Feb-2019 02:27 11304 +colordoc.source.tar.xz 28-Feb-2019 02:27 11304 +colordoc.tar.xz 28-Feb-2019 02:27 2228 +coloredbelts.doc.r76143.tar.xz 25-Aug-2025 23:47 745920 +coloredbelts.doc.tar.xz 25-Aug-2025 23:47 745920 +coloredbelts.r76143.tar.xz 25-Aug-2025 23:47 25796 +coloredbelts.tar.xz 25-Aug-2025 23:47 25796 +coloredtheorem.doc.r74812.tar.xz 01-Apr-2025 23:52 243928 +coloredtheorem.doc.tar.xz 01-Apr-2025 23:52 243928 +coloredtheorem.r74812.tar.xz 01-Apr-2025 23:52 1540 +coloredtheorem.tar.xz 01-Apr-2025 23:52 1540 +colorframed.doc.r64551.tar.xz 29-Sep-2022 23:52 30740 +colorframed.doc.tar.xz 29-Sep-2022 23:52 30740 +colorframed.r64551.tar.xz 29-Sep-2022 23:52 3060 +colorframed.tar.xz 29-Sep-2022 23:52 3060 +colorinfo.doc.r15878.tar.xz 28-Feb-2019 02:27 784 +colorinfo.doc.tar.xz 28-Feb-2019 02:27 784 +colorinfo.r15878.tar.xz 28-Feb-2019 02:27 2020 +colorinfo.tar.xz 28-Feb-2019 02:27 2020 +coloring.doc.r41042.tar.xz 28-Feb-2019 02:27 25984 +coloring.doc.tar.xz 28-Feb-2019 02:27 25984 +coloring.r41042.tar.xz 28-Feb-2019 02:27 1480 +coloring.tar.xz 28-Feb-2019 02:27 1480 +colorist.doc.r70100.tar.xz 24-Feb-2024 00:47 7436 +colorist.doc.tar.xz 24-Feb-2024 00:47 7436 +colorist.r70100.tar.xz 24-Feb-2024 00:47 11636 +colorist.tar.xz 24-Feb-2024 00:47 11636 +colorprofiles.doc.r49086.tar.xz 28-Feb-2019 02:27 27632 +colorprofiles.doc.tar.xz 28-Feb-2019 02:27 27632 +colorprofiles.r49086.tar.xz 28-Feb-2019 02:27 87972 +colorprofiles.tar.xz 28-Feb-2019 02:27 87972 +colorsep.r13293.tar.xz 28-Feb-2019 02:27 1884 +colorsep.tar.xz 28-Feb-2019 02:27 1884 +colorspace.doc.r50585.tar.xz 27-Mar-2019 01:24 116840 +colorspace.doc.tar.xz 27-Mar-2019 01:24 116840 +colorspace.r50585.tar.xz 27-Mar-2019 01:24 6904 +colorspace.tar.xz 27-Mar-2019 01:24 6904 +colortab.doc.r22155.tar.xz 28-Feb-2019 02:27 60256 +colortab.doc.tar.xz 28-Feb-2019 02:27 60256 +colortab.r22155.tar.xz 28-Feb-2019 02:27 7960 +colortab.tar.xz 28-Feb-2019 02:27 7960 +colortbl.doc.r75287.tar.xz 22-May-2025 23:48 640740 +colortbl.doc.tar.xz 22-May-2025 23:48 640740 +colortbl.r75287.tar.xz 22-May-2025 23:48 3732 +colortbl.source.r75287.tar.xz 22-May-2025 23:48 13112 +colortbl.source.tar.xz 22-May-2025 23:48 13112 +colortbl.tar.xz 22-May-2025 23:48 3732 +colorwav.doc.r67012.tar.xz 04-May-2023 23:53 98900 +colorwav.doc.tar.xz 04-May-2023 23:53 98900 +colorwav.r67012.tar.xz 04-May-2023 23:53 1932 +colorwav.source.r67012.tar.xz 04-May-2023 23:53 4276 +colorwav.source.tar.xz 04-May-2023 23:53 4276 +colorwav.tar.xz 04-May-2023 23:53 1932 +colorweb.doc.r31490.tar.xz 28-Feb-2019 02:27 1224824 +colorweb.doc.tar.xz 28-Feb-2019 02:27 1224824 +colorweb.r31490.tar.xz 28-Feb-2019 02:27 3064 +colorweb.source.r31490.tar.xz 28-Feb-2019 02:27 11920 +colorweb.source.tar.xz 28-Feb-2019 02:27 11920 +colorweb.tar.xz 28-Feb-2019 02:27 3064 +colourchange.doc.r21741.tar.xz 28-Feb-2019 02:27 234136 +colourchange.doc.tar.xz 28-Feb-2019 02:27 234136 +colourchange.r21741.tar.xz 28-Feb-2019 02:27 2060 +colourchange.tar.xz 28-Feb-2019 02:27 2060 +combelow.doc.r18462.tar.xz 28-Feb-2019 02:27 96092 +combelow.doc.tar.xz 28-Feb-2019 02:27 96092 +combelow.r18462.tar.xz 28-Feb-2019 02:27 1040 +combelow.tar.xz 28-Feb-2019 02:27 1040 +combine.doc.r19361.tar.xz 28-Feb-2019 02:27 463152 +combine.doc.tar.xz 28-Feb-2019 02:27 463152 +combine.r19361.tar.xz 28-Feb-2019 02:27 10568 +combine.source.r19361.tar.xz 28-Feb-2019 02:27 31336 +combine.source.tar.xz 28-Feb-2019 02:27 31336 +combine.tar.xz 28-Feb-2019 02:27 10568 +combinedgraphics.doc.r27198.tar.xz 28-Feb-2019 02:27 429112 +combinedgraphics.doc.tar.xz 28-Feb-2019 02:27 429112 +combinedgraphics.r27198.tar.xz 28-Feb-2019 02:27 3532 +combinedgraphics.source.r27198.tar.xz 28-Feb-2019 02:27 9428 +combinedgraphics.source.tar.xz 28-Feb-2019 02:27 9428 +combinedgraphics.tar.xz 28-Feb-2019 02:27 3532 +combofont.doc.r51348.tar.xz 08-Jun-2019 23:38 93188 +combofont.doc.tar.xz 08-Jun-2019 23:38 93188 +combofont.r51348.tar.xz 08-Jun-2019 23:38 1816 +combofont.tar.xz 08-Jun-2019 23:38 1816 +comfortaa.doc.r54512.tar.xz 24-Mar-2020 00:57 307912 +comfortaa.doc.tar.xz 24-Mar-2020 00:57 307912 +comfortaa.r54512.tar.xz 24-Mar-2020 00:57 555724 +comfortaa.tar.xz 24-Mar-2020 00:57 555724 +comicneue.doc.r54891.tar.xz 26-Apr-2020 23:54 200176 +comicneue.doc.tar.xz 26-Apr-2020 23:54 200176 +comicneue.r54891.tar.xz 26-Apr-2020 23:54 872884 +comicneue.tar.xz 26-Apr-2020 23:54 872884 +comma.doc.r18259.tar.xz 28-Feb-2019 02:28 153428 +comma.doc.tar.xz 28-Feb-2019 02:28 153428 +comma.r18259.tar.xz 28-Feb-2019 02:28 1696 +comma.tar.xz 28-Feb-2019 02:28 1696 +commado.doc.r38875.tar.xz 28-Feb-2019 02:28 596344 +commado.doc.tar.xz 28-Feb-2019 02:28 596344 +commado.r38875.tar.xz 28-Feb-2019 02:28 2816 +commado.source.r38875.tar.xz 28-Feb-2019 02:28 4420 +commado.source.tar.xz 28-Feb-2019 02:28 4420 +commado.tar.xz 28-Feb-2019 02:28 2816 +commalists-tools.doc.r76160.tar.xz 27-Aug-2025 23:49 190380 +commalists-tools.doc.tar.xz 27-Aug-2025 23:49 190380 +commalists-tools.r76160.tar.xz 27-Aug-2025 23:49 2508 +commalists-tools.tar.xz 27-Aug-2025 23:49 2508 +commath.doc.r15878.tar.xz 28-Feb-2019 02:28 101092 +commath.doc.tar.xz 28-Feb-2019 02:28 101092 +commath.r15878.tar.xz 28-Feb-2019 02:28 2460 +commath.tar.xz 28-Feb-2019 02:28 2460 +commedit.doc.r50116.tar.xz 28-Feb-2019 02:28 600556 +commedit.doc.tar.xz 28-Feb-2019 02:28 600556 +commedit.r50116.tar.xz 28-Feb-2019 02:28 3436 +commedit.source.r50116.tar.xz 28-Feb-2019 02:28 8200 +commedit.source.tar.xz 28-Feb-2019 02:28 8200 +commedit.tar.xz 28-Feb-2019 02:28 3436 +comment.doc.r75712.tar.xz 07-Jul-2025 23:49 535060 +comment.doc.tar.xz 07-Jul-2025 23:49 535060 +comment.r75712.tar.xz 07-Jul-2025 23:49 4104 +comment.tar.xz 07-Jul-2025 23:49 4104 +commonunicode.doc.r62901.tar.xz 04-Apr-2022 23:55 324112 +commonunicode.doc.tar.xz 04-Apr-2022 23:55 324112 +commonunicode.r62901.tar.xz 04-Apr-2022 23:55 5628 +commonunicode.tar.xz 04-Apr-2022 23:55 5628 +commutative-diagrams.doc.r71053.tar.xz 23-Apr-2024 23:46 615932 +commutative-diagrams.doc.tar.xz 23-Apr-2024 23:46 615932 +commutative-diagrams.r71053.tar.xz 23-Apr-2024 23:46 12748 +commutative-diagrams.tar.xz 23-Apr-2024 23:46 12748 +compactbib.r15878.tar.xz 28-Feb-2019 02:28 1860 +compactbib.tar.xz 28-Feb-2019 02:28 1860 +compare.r54265.tar.xz 13-Mar-2020 01:04 708 +compare.tar.xz 13-Mar-2020 01:04 708 +competences.doc.r47573.tar.xz 28-Feb-2019 02:28 1304 +competences.doc.tar.xz 28-Feb-2019 02:28 1304 +competences.r47573.tar.xz 28-Feb-2019 02:28 2384 +competences.source.r47573.tar.xz 28-Feb-2019 02:28 4048 +competences.source.tar.xz 28-Feb-2019 02:28 4048 +competences.tar.xz 28-Feb-2019 02:28 2384 +complexity.doc.r45322.tar.xz 28-Feb-2019 02:28 265392 +complexity.doc.tar.xz 28-Feb-2019 02:28 265392 +complexity.r45322.tar.xz 28-Feb-2019 02:28 5604 +complexity.tar.xz 28-Feb-2019 02:28 5604 +complexpolylongdiv.doc.r73238.tar.xz 31-Dec-2024 00:48 211836 +complexpolylongdiv.doc.tar.xz 31-Dec-2024 00:48 211836 +complexpolylongdiv.r73238.tar.xz 31-Dec-2024 00:48 1640 +complexpolylongdiv.source.r73238.tar.xz 31-Dec-2024 00:48 3624 +complexpolylongdiv.source.tar.xz 31-Dec-2024 00:48 3624 +complexpolylongdiv.tar.xz 31-Dec-2024 00:48 1640 +components.doc.r63184.tar.xz 01-May-2022 00:01 11036 +components.doc.tar.xz 01-May-2022 00:01 11036 +components.r63184.tar.xz 01-May-2022 00:01 368 +components.tar.xz 01-May-2022 00:01 368 +comprehensive.doc.r69619.tar.xz 29-Jan-2024 00:45 32786992 +comprehensive.doc.tar.xz 29-Jan-2024 00:45 32786992 +comprehensive.r69619.tar.xz 29-Jan-2024 00:45 504 +comprehensive.tar.xz 29-Jan-2024 00:45 504 +computational-complexity.doc.r44847.tar.xz 28-Feb-2019 02:28 799564 +computational-complexity.doc.tar.xz 28-Feb-2019 02:28 799564 +computational-complexity.r44847.tar.xz 28-Feb-2019 02:28 32516 +computational-complexity.source.r44847.tar.xz 28-Feb-2019 02:28 87476 +computational-complexity.source.tar.xz 28-Feb-2019 02:28 87476 +computational-complexity.tar.xz 28-Feb-2019 02:28 32516 +concepts.doc.r29020.tar.xz 28-Feb-2019 02:28 317328 +concepts.doc.tar.xz 28-Feb-2019 02:28 317328 +concepts.r29020.tar.xz 28-Feb-2019 02:28 7124 +concepts.tar.xz 28-Feb-2019 02:28 7124 +concmath-fonts.doc.r17218.tar.xz 28-Feb-2019 02:28 2640 +concmath-fonts.doc.tar.xz 28-Feb-2019 02:28 2640 +concmath-fonts.r17218.tar.xz 28-Feb-2019 02:28 15176 +concmath-fonts.tar.xz 28-Feb-2019 02:28 15176 +concmath-otf.doc.r75990.tar.xz 05-Aug-2025 23:45 1902272 +concmath-otf.doc.tar.xz 05-Aug-2025 23:45 1902272 +concmath-otf.r75990.tar.xz 05-Aug-2025 23:45 256864 +concmath-otf.tar.xz 05-Aug-2025 23:45 256864 +concmath.doc.r17219.tar.xz 28-Feb-2019 02:28 266164 +concmath.doc.tar.xz 28-Feb-2019 02:28 266164 +concmath.r17219.tar.xz 28-Feb-2019 02:28 2176 +concmath.source.r17219.tar.xz 28-Feb-2019 02:28 9604 +concmath.source.tar.xz 28-Feb-2019 02:28 9604 +concmath.tar.xz 28-Feb-2019 02:28 2176 +concprog.doc.r18791.tar.xz 28-Feb-2019 02:28 1064 +concprog.doc.tar.xz 28-Feb-2019 02:28 1064 +concprog.r18791.tar.xz 28-Feb-2019 02:28 4280 +concprog.tar.xz 28-Feb-2019 02:28 4280 +concrete.doc.r57963.tar.xz 27-Feb-2021 00:28 2348 +concrete.doc.tar.xz 27-Feb-2021 00:28 2348 +concrete.r57963.tar.xz 27-Feb-2021 00:28 9556 +concrete.tar.xz 27-Feb-2021 00:28 9556 +conditext.doc.r55387.tar.xz 02-Jun-2020 21:27 528648 +conditext.doc.tar.xz 02-Jun-2020 21:27 528648 +conditext.r55387.tar.xz 02-Jun-2020 21:27 6304 +conditext.tar.xz 02-Jun-2020 21:27 6304 +confproc.doc.r29349.tar.xz 28-Feb-2019 02:28 1871032 +confproc.doc.tar.xz 28-Feb-2019 02:28 1871032 +confproc.r29349.tar.xz 28-Feb-2019 02:28 16388 +confproc.source.r29349.tar.xz 28-Feb-2019 02:28 92900 +confproc.source.tar.xz 28-Feb-2019 02:28 92900 +confproc.tar.xz 28-Feb-2019 02:28 16388 +constants.doc.r15878.tar.xz 28-Feb-2019 02:28 91104 +constants.doc.tar.xz 28-Feb-2019 02:28 91104 +constants.r15878.tar.xz 28-Feb-2019 02:28 2196 +constants.source.r15878.tar.xz 28-Feb-2019 02:28 7084 +constants.source.tar.xz 28-Feb-2019 02:28 7084 +constants.tar.xz 28-Feb-2019 02:28 2196 +conteq.doc.r37868.tar.xz 28-Feb-2019 02:28 395140 +conteq.doc.tar.xz 28-Feb-2019 02:28 395140 +conteq.r37868.tar.xz 28-Feb-2019 02:28 2268 +conteq.source.r37868.tar.xz 28-Feb-2019 02:28 4924 +conteq.source.tar.xz 28-Feb-2019 02:28 4924 +conteq.tar.xz 28-Feb-2019 02:28 2268 +context-animation.doc.r75386.tar.xz 03-Jun-2025 23:50 620 +context-animation.doc.tar.xz 03-Jun-2025 23:50 620 +context-animation.r75386.tar.xz 03-Jun-2025 23:50 4016 +context-animation.tar.xz 03-Jun-2025 23:50 4016 +context-calendar-examples.doc.r66947.tar.xz 26-Apr-2023 23:54 1904 +context-calendar-examples.doc.tar.xz 26-Apr-2023 23:54 1904 +context-calendar-examples.r66947.tar.xz 26-Apr-2023 23:54 10056 +context-calendar-examples.tar.xz 26-Apr-2023 23:54 10056 +context-chat.doc.r72010.tar.xz 11-Aug-2024 23:46 12576 +context-chat.doc.tar.xz 11-Aug-2024 23:46 12576 +context-chat.r72010.tar.xz 11-Aug-2024 23:46 2284 +context-chat.tar.xz 11-Aug-2024 23:46 2284 +context-collating-marks.doc.r68696.tar.xz 30-Oct-2023 00:45 115228 +context-collating-marks.doc.tar.xz 30-Oct-2023 00:45 115228 +context-collating-marks.r68696.tar.xz 30-Oct-2023 00:45 2652 +context-collating-marks.tar.xz 30-Oct-2023 00:45 2652 +context-cyrillicnumbers.doc.r47085.tar.xz 28-Feb-2019 02:29 180836 +context-cyrillicnumbers.doc.tar.xz 28-Feb-2019 02:29 180836 +context-cyrillicnumbers.r47085.tar.xz 28-Feb-2019 02:29 7820 +context-cyrillicnumbers.tar.xz 28-Feb-2019 02:29 7820 +context-filter.doc.r62070.tar.xz 19-Feb-2022 00:53 11080 +context-filter.doc.tar.xz 19-Feb-2022 00:53 11080 +context-filter.r62070.tar.xz 19-Feb-2022 00:53 6872 +context-filter.tar.xz 19-Feb-2022 00:53 6872 +context-gnuplot.doc.r75301.tar.xz 23-May-2025 23:46 448972 +context-gnuplot.doc.tar.xz 23-May-2025 23:46 448972 +context-gnuplot.r75301.tar.xz 23-May-2025 23:46 18532 +context-gnuplot.tar.xz 23-May-2025 23:46 18532 +context-handlecsv.doc.r70065.tar.xz 23-Feb-2024 00:47 950848 +context-handlecsv.doc.tar.xz 23-Feb-2024 00:47 950848 +context-handlecsv.r70065.tar.xz 23-Feb-2024 00:47 16028 +context-handlecsv.tar.xz 23-Feb-2024 00:47 16028 +context-legacy.aarch64-linux.r75437.tar.xz 07-Jun-2025 19:02 376 +context-legacy.aarch64-linux.tar.xz 07-Jun-2025 19:02 376 +context-legacy.amd64-freebsd.r75437.tar.xz 07-Jun-2025 19:02 380 +context-legacy.amd64-freebsd.tar.xz 07-Jun-2025 19:02 380 +context-legacy.amd64-netbsd.r75437.tar.xz 07-Jun-2025 19:02 376 +context-legacy.amd64-netbsd.tar.xz 07-Jun-2025 19:02 376 +context-legacy.armhf-linux.r75437.tar.xz 07-Jun-2025 19:02 380 +context-legacy.armhf-linux.tar.xz 07-Jun-2025 19:02 380 +context-legacy.doc.r76423.tar.xz 27-Sep-2025 23:55 39236 +context-legacy.doc.tar.xz 27-Sep-2025 23:55 39236 +context-legacy.i386-freebsd.r75437.tar.xz 07-Jun-2025 19:02 380 +context-legacy.i386-freebsd.tar.xz 07-Jun-2025 19:02 380 +context-legacy.i386-linux.r75437.tar.xz 07-Jun-2025 19:02 376 +context-legacy.i386-linux.tar.xz 07-Jun-2025 19:02 376 +context-legacy.i386-netbsd.r75437.tar.xz 07-Jun-2025 19:02 380 +context-legacy.i386-netbsd.tar.xz 07-Jun-2025 19:02 380 +context-legacy.i386-solaris.r75437.tar.xz 07-Jun-2025 19:02 376 +context-legacy.i386-solaris.tar.xz 07-Jun-2025 19:02 376 +context-legacy.r76423.tar.xz 27-Sep-2025 23:56 2500328 +context-legacy.tar.xz 27-Sep-2025 23:56 2500328 +context-legacy.universal-darwin.r75437.tar.xz 07-Jun-2025 19:02 380 +context-legacy.universal-darwin.tar.xz 07-Jun-2025 19:02 380 +context-legacy.windows.r71441.tar.xz 05-Jun-2024 23:47 2380 +context-legacy.windows.tar.xz 05-Jun-2024 23:47 2380 +context-legacy.x86_64-cygwin.r75437.tar.xz 07-Jun-2025 19:02 380 +context-legacy.x86_64-cygwin.tar.xz 07-Jun-2025 19:02 380 +context-legacy.x86_64-darwinlegacy.r75437.tar.xz 07-Jun-2025 19:02 384 +context-legacy.x86_64-darwinlegacy.tar.xz 07-Jun-2025 19:02 384 +context-legacy.x86_64-linux.r75437.tar.xz 07-Jun-2025 19:02 380 +context-legacy.x86_64-linux.tar.xz 07-Jun-2025 19:02 380 +context-legacy.x86_64-linuxmusl.r75437.tar.xz 07-Jun-2025 19:02 380 +context-legacy.x86_64-linuxmusl.tar.xz 07-Jun-2025 19:02 380 +context-legacy.x86_64-solaris.r75437.tar.xz 07-Jun-2025 19:02 380 +context-legacy.x86_64-solaris.tar.xz 07-Jun-2025 19:02 380 +context-letter.doc.r60787.tar.xz 17-Oct-2021 23:53 696 +context-letter.doc.tar.xz 17-Oct-2021 23:53 696 +context-letter.r60787.tar.xz 17-Oct-2021 23:53 20808 +context-letter.tar.xz 17-Oct-2021 23:53 20808 +context-mathsets.doc.r47085.tar.xz 28-Feb-2019 02:29 399952 +context-mathsets.doc.tar.xz 28-Feb-2019 02:29 399952 +context-mathsets.r47085.tar.xz 28-Feb-2019 02:29 4896 +context-mathsets.tar.xz 28-Feb-2019 02:29 4896 +context-notes-zh-cn.doc.r76286.tar.xz 11-Sep-2025 23:51 3573308 +context-notes-zh-cn.doc.tar.xz 11-Sep-2025 23:51 3573308 +context-notes-zh-cn.r76286.tar.xz 11-Sep-2025 23:51 532 +context-notes-zh-cn.tar.xz 11-Sep-2025 23:51 532 +context-pocketdiary.doc.r73164.tar.xz 20-Dec-2024 00:47 171320 +context-pocketdiary.doc.tar.xz 20-Dec-2024 00:47 171320 +context-pocketdiary.r73164.tar.xz 20-Dec-2024 00:47 25408 +context-pocketdiary.tar.xz 20-Dec-2024 00:47 25408 +context-simpleslides.doc.r67070.tar.xz 11-May-2023 23:57 849560 +context-simpleslides.doc.tar.xz 11-May-2023 23:57 849560 +context-simpleslides.r67070.tar.xz 11-May-2023 23:57 29160 +context-simpleslides.tar.xz 11-May-2023 23:57 29160 +context-squares.doc.r70128.tar.xz 26-Feb-2024 00:46 1984 +context-squares.doc.tar.xz 26-Feb-2024 00:46 1984 +context-squares.r70128.tar.xz 26-Feb-2024 00:46 3600 +context-squares.tar.xz 26-Feb-2024 00:46 3600 +context-sudoku.doc.r67289.tar.xz 05-Jun-2023 23:44 1632 +context-sudoku.doc.tar.xz 05-Jun-2023 23:44 1632 +context-sudoku.r67289.tar.xz 05-Jun-2023 23:44 7604 +context-sudoku.tar.xz 05-Jun-2023 23:44 7604 +context-transliterator.doc.r61127.tar.xz 24-Nov-2021 00:53 192808 +context-transliterator.doc.tar.xz 24-Nov-2021 00:53 192808 +context-transliterator.r61127.tar.xz 24-Nov-2021 00:53 19012 +context-transliterator.tar.xz 24-Nov-2021 00:53 19012 +context-typescripts.doc.r60422.tar.xz 04-Sep-2021 23:51 644 +context-typescripts.doc.tar.xz 04-Sep-2021 23:51 644 +context-typescripts.r60422.tar.xz 04-Sep-2021 23:51 7216 +context-typescripts.tar.xz 04-Sep-2021 23:51 7216 +context-vim.doc.r62071.tar.xz 19-Feb-2022 00:53 10908 +context-vim.doc.tar.xz 19-Feb-2022 00:53 10908 +context-vim.r62071.tar.xz 19-Feb-2022 00:53 10232 +context-vim.tar.xz 19-Feb-2022 00:53 10232 +context-visualcounter.doc.r47085.tar.xz 28-Feb-2019 02:29 263536 +context-visualcounter.doc.tar.xz 28-Feb-2019 02:29 263536 +context-visualcounter.r47085.tar.xz 28-Feb-2019 02:29 3992 +context-visualcounter.source.r47085.tar.xz 28-Feb-2019 02:29 6744 +context-visualcounter.source.tar.xz 28-Feb-2019 02:29 6744 +context-visualcounter.tar.xz 28-Feb-2019 02:29 3992 +context.aarch64-linux.r76423.tar.xz 27-Sep-2025 23:56 1219556 +context.aarch64-linux.tar.xz 27-Sep-2025 23:56 1219556 +context.amd64-freebsd.r75493.tar.xz 13-Jun-2025 22:42 1043292 +context.amd64-freebsd.tar.xz 13-Jun-2025 22:42 1043292 +context.amd64-netbsd.r76417.tar.xz 27-Sep-2025 23:56 1278472 +context.amd64-netbsd.tar.xz 27-Sep-2025 23:56 1278472 +context.doc.r76423.tar.xz 27-Sep-2025 23:54 111716600 +context.doc.tar.xz 27-Sep-2025 23:54 111716600 +context.i386-linux.r76423.tar.xz 27-Sep-2025 23:56 1481872 +context.i386-linux.tar.xz 27-Sep-2025 23:56 1481872 +context.r76423.tar.xz 27-Sep-2025 23:55 9154184 +context.source.r76423.tar.xz 27-Sep-2025 23:53 3455020 +context.source.tar.xz 27-Sep-2025 23:53 3455020 +context.tar.xz 27-Sep-2025 23:55 9154184 +context.universal-darwin.r76423.tar.xz 27-Sep-2025 23:56 2064660 +context.universal-darwin.tar.xz 27-Sep-2025 23:56 2064660 +context.windows.r76423.tar.xz 27-Sep-2025 23:56 1433520 +context.windows.tar.xz 27-Sep-2025 23:56 1433520 +context.x86_64-darwinlegacy.r76423.tar.xz 27-Sep-2025 23:56 1190780 +context.x86_64-darwinlegacy.tar.xz 27-Sep-2025 23:56 1190780 +context.x86_64-linux.r76423.tar.xz 27-Sep-2025 23:56 1356896 +context.x86_64-linux.tar.xz 27-Sep-2025 23:56 1356896 +context.x86_64-linuxmusl.r76423.tar.xz 27-Sep-2025 23:56 1158100 +context.x86_64-linuxmusl.tar.xz 27-Sep-2025 23:56 1158100 +continue.doc.r49449.tar.xz 28-Feb-2019 02:29 366292 +continue.doc.tar.xz 28-Feb-2019 02:29 366292 +continue.r49449.tar.xz 28-Feb-2019 02:29 2960 +continue.source.r49449.tar.xz 28-Feb-2019 02:29 8652 +continue.source.tar.xz 28-Feb-2019 02:29 8652 +continue.tar.xz 28-Feb-2019 02:29 2960 +contour.doc.r18950.tar.xz 28-Feb-2019 02:29 153180 +contour.doc.tar.xz 28-Feb-2019 02:29 153180 +contour.r18950.tar.xz 28-Feb-2019 02:29 2672 +contour.source.r18950.tar.xz 28-Feb-2019 02:29 6840 +contour.source.tar.xz 28-Feb-2019 02:29 6840 +contour.tar.xz 28-Feb-2019 02:29 2672 +contracard.doc.r67201.tar.xz 23-May-2023 23:44 182432 +contracard.doc.tar.xz 23-May-2023 23:44 182432 +contracard.r67201.tar.xz 23-May-2023 23:44 5224 +contracard.source.r67201.tar.xz 23-May-2023 23:44 18312 +contracard.source.tar.xz 23-May-2023 23:44 18312 +contracard.tar.xz 23-May-2023 23:44 5224 +contract.doc.r69759.tar.xz 10-Feb-2024 00:45 841020 +contract.doc.tar.xz 10-Feb-2024 00:45 841020 +contract.r69759.tar.xz 10-Feb-2024 00:45 7424 +contract.source.r69759.tar.xz 10-Feb-2024 00:45 28912 +contract.source.tar.xz 10-Feb-2024 00:45 28912 +contract.tar.xz 10-Feb-2024 00:45 7424 +conv-xkv.doc.r43558.tar.xz 28-Feb-2019 02:29 79532 +conv-xkv.doc.tar.xz 28-Feb-2019 02:29 79532 +conv-xkv.r43558.tar.xz 28-Feb-2019 02:29 2408 +conv-xkv.source.r43558.tar.xz 28-Feb-2019 02:29 5336 +conv-xkv.source.tar.xz 28-Feb-2019 02:29 5336 +conv-xkv.tar.xz 28-Feb-2019 02:29 2408 +convbkmk.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:29 344 +convbkmk.aarch64-linux.tar.xz 28-Feb-2019 02:29 344 +convbkmk.amd64-freebsd.r30408.tar.xz 28-Feb-2019 02:29 344 +convbkmk.amd64-freebsd.tar.xz 28-Feb-2019 02:29 344 +convbkmk.amd64-netbsd.r30408.tar.xz 28-Feb-2019 02:29 340 +convbkmk.amd64-netbsd.tar.xz 28-Feb-2019 02:29 340 +convbkmk.armhf-linux.r30476.tar.xz 28-Feb-2019 02:29 340 +convbkmk.armhf-linux.tar.xz 28-Feb-2019 02:29 340 +convbkmk.doc.r49252.tar.xz 28-Feb-2019 02:29 960 +convbkmk.doc.tar.xz 28-Feb-2019 02:29 960 +convbkmk.i386-freebsd.r30408.tar.xz 28-Feb-2019 02:29 344 +convbkmk.i386-freebsd.tar.xz 28-Feb-2019 02:29 344 +convbkmk.i386-linux.r30408.tar.xz 28-Feb-2019 02:29 344 +convbkmk.i386-linux.tar.xz 28-Feb-2019 02:29 344 +convbkmk.i386-netbsd.r30408.tar.xz 28-Feb-2019 02:29 340 +convbkmk.i386-netbsd.tar.xz 28-Feb-2019 02:29 340 +convbkmk.i386-solaris.r30408.tar.xz 28-Feb-2019 02:29 340 +convbkmk.i386-solaris.tar.xz 28-Feb-2019 02:29 340 +convbkmk.r49252.tar.xz 28-Feb-2019 02:29 5812 +convbkmk.tar.xz 28-Feb-2019 02:29 5812 +convbkmk.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +convbkmk.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +convbkmk.windows.r65891.tar.xz 20-Feb-2023 22:11 2308 +convbkmk.windows.tar.xz 20-Feb-2023 22:11 2308 +convbkmk.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:29 344 +convbkmk.x86_64-cygwin.tar.xz 28-Feb-2019 02:29 344 +convbkmk.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:29 352 +convbkmk.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:29 352 +convbkmk.x86_64-linux.r30408.tar.xz 28-Feb-2019 02:29 340 +convbkmk.x86_64-linux.tar.xz 28-Feb-2019 02:29 340 +convbkmk.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:29 348 +convbkmk.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:29 348 +convbkmk.x86_64-solaris.r30408.tar.xz 28-Feb-2019 02:29 340 +convbkmk.x86_64-solaris.tar.xz 28-Feb-2019 02:29 340 +convert-jpfonts.doc.r73551.tar.xz 22-Jan-2025 00:47 516116 +convert-jpfonts.doc.tar.xz 22-Jan-2025 00:47 516116 +convert-jpfonts.r73551.tar.xz 22-Jan-2025 00:47 1316 +convert-jpfonts.tar.xz 22-Jan-2025 00:47 1316 +cooking-units.doc.r65241.tar.xz 12-Dec-2022 00:54 722996 +cooking-units.doc.tar.xz 12-Dec-2022 00:54 722996 +cooking-units.r65241.tar.xz 12-Dec-2022 00:54 22592 +cooking-units.source.r65241.tar.xz 12-Dec-2022 00:54 74760 +cooking-units.source.tar.xz 12-Dec-2022 00:54 74760 +cooking-units.tar.xz 12-Dec-2022 00:54 22592 +cooking.doc.r15878.tar.xz 28-Feb-2019 02:29 59896 +cooking.doc.tar.xz 28-Feb-2019 02:29 59896 +cooking.r15878.tar.xz 28-Feb-2019 02:29 1744 +cooking.source.r15878.tar.xz 28-Feb-2019 02:29 7608 +cooking.source.tar.xz 28-Feb-2019 02:29 7608 +cooking.tar.xz 28-Feb-2019 02:29 1744 +cookingsymbols.doc.r74247.tar.xz 24-Feb-2025 00:49 378872 +cookingsymbols.doc.tar.xz 24-Feb-2025 00:49 378872 +cookingsymbols.r74247.tar.xz 24-Feb-2025 00:49 3572 +cookingsymbols.source.r74247.tar.xz 24-Feb-2025 00:49 5612 +cookingsymbols.source.tar.xz 24-Feb-2025 00:49 5612 +cookingsymbols.tar.xz 24-Feb-2025 00:49 3572 +cool.doc.r67013.tar.xz 04-May-2023 23:54 412172 +cool.doc.tar.xz 04-May-2023 23:54 412172 +cool.r67013.tar.xz 04-May-2023 23:54 10192 +cool.source.r67013.tar.xz 04-May-2023 23:54 22576 +cool.source.tar.xz 04-May-2023 23:54 22576 +cool.tar.xz 04-May-2023 23:54 10192 +coolfn.doc.r69007.tar.xz 01-Dec-2023 00:46 56588 +coolfn.doc.tar.xz 01-Dec-2023 00:46 56588 +coolfn.r69007.tar.xz 01-Dec-2023 00:46 1532 +coolfn.tar.xz 01-Dec-2023 00:46 1532 +coollist.doc.r67048.tar.xz 07-May-2023 23:52 110572 +coollist.doc.tar.xz 07-May-2023 23:52 110572 +coollist.r67048.tar.xz 07-May-2023 23:52 2332 +coollist.source.r67048.tar.xz 07-May-2023 23:52 7072 +coollist.source.tar.xz 07-May-2023 23:52 7072 +coollist.tar.xz 07-May-2023 23:52 2332 +coolstr.doc.r67015.tar.xz 04-May-2023 23:54 116388 +coolstr.doc.tar.xz 04-May-2023 23:54 116388 +coolstr.r67015.tar.xz 04-May-2023 23:54 2376 +coolstr.source.r67015.tar.xz 04-May-2023 23:54 6520 +coolstr.source.tar.xz 04-May-2023 23:54 6520 +coolstr.tar.xz 04-May-2023 23:54 2376 +coolthms.doc.r29062.tar.xz 28-Feb-2019 02:30 108508 +coolthms.doc.tar.xz 28-Feb-2019 02:30 108508 +coolthms.r29062.tar.xz 28-Feb-2019 02:30 2624 +coolthms.source.r29062.tar.xz 28-Feb-2019 02:30 8968 +coolthms.source.tar.xz 28-Feb-2019 02:30 8968 +coolthms.tar.xz 28-Feb-2019 02:30 2624 +cooltooltips.doc.r60201.tar.xz 09-Aug-2021 23:52 224384 +cooltooltips.doc.tar.xz 09-Aug-2021 23:52 224384 +cooltooltips.r60201.tar.xz 09-Aug-2021 23:52 2456 +cooltooltips.source.r60201.tar.xz 09-Aug-2021 23:52 9712 +cooltooltips.source.tar.xz 09-Aug-2021 23:52 9712 +cooltooltips.tar.xz 09-Aug-2021 23:52 2456 +coop-writing.doc.r61607.tar.xz 15-Jan-2022 00:52 290348 +coop-writing.doc.tar.xz 15-Jan-2022 00:52 290348 +coop-writing.r61607.tar.xz 15-Jan-2022 00:52 4912 +coop-writing.source.r61607.tar.xz 15-Jan-2022 00:52 17168 +coop-writing.source.tar.xz 15-Jan-2022 00:52 17168 +coop-writing.tar.xz 15-Jan-2022 00:52 4912 +cooperhewitt.doc.r64967.tar.xz 08-Nov-2022 00:55 21800 +cooperhewitt.doc.tar.xz 08-Nov-2022 00:55 21800 +cooperhewitt.r64967.tar.xz 08-Nov-2022 00:55 934800 +cooperhewitt.tar.xz 08-Nov-2022 00:55 934800 +coordsys.doc.r15878.tar.xz 28-Feb-2019 02:30 251112 +coordsys.doc.tar.xz 28-Feb-2019 02:30 251112 +coordsys.r15878.tar.xz 28-Feb-2019 02:30 4560 +coordsys.source.r15878.tar.xz 28-Feb-2019 02:30 24480 +coordsys.source.tar.xz 28-Feb-2019 02:30 24480 +coordsys.tar.xz 28-Feb-2019 02:30 4560 +copyedit.doc.r37928.tar.xz 28-Feb-2019 02:30 309008 +copyedit.doc.tar.xz 28-Feb-2019 02:30 309008 +copyedit.r37928.tar.xz 28-Feb-2019 02:30 3560 +copyedit.source.r37928.tar.xz 28-Feb-2019 02:30 7372 +copyedit.source.tar.xz 28-Feb-2019 02:30 7372 +copyedit.tar.xz 28-Feb-2019 02:30 3560 +copyrightbox.doc.r24829.tar.xz 28-Feb-2019 02:30 1691464 +copyrightbox.doc.tar.xz 28-Feb-2019 02:30 1691464 +copyrightbox.r24829.tar.xz 28-Feb-2019 02:30 1480 +copyrightbox.tar.xz 28-Feb-2019 02:30 1480 +cora-macs.doc.r73101.tar.xz 12-Dec-2024 00:49 545496 +cora-macs.doc.tar.xz 12-Dec-2024 00:49 545496 +cora-macs.r73101.tar.xz 12-Dec-2024 00:49 4500 +cora-macs.tar.xz 12-Dec-2024 00:49 4500 +cormorantgaramond.doc.r71057.tar.xz 24-Apr-2024 23:48 158028 +cormorantgaramond.doc.tar.xz 24-Apr-2024 23:48 158028 +cormorantgaramond.r71057.tar.xz 24-Apr-2024 23:48 5571628 +cormorantgaramond.tar.xz 24-Apr-2024 23:48 5571628 +correctmathalign.doc.r44131.tar.xz 28-Feb-2019 02:30 478128 +correctmathalign.doc.tar.xz 28-Feb-2019 02:30 478128 +correctmathalign.r44131.tar.xz 28-Feb-2019 02:30 1508 +correctmathalign.tar.xz 28-Feb-2019 02:30 1508 +coseoul.doc.r23862.tar.xz 28-Feb-2019 02:30 155852 +coseoul.doc.tar.xz 28-Feb-2019 02:30 155852 +coseoul.r23862.tar.xz 28-Feb-2019 02:30 968 +coseoul.tar.xz 28-Feb-2019 02:30 968 +couleurs-fr.doc.r75928.tar.xz 30-Jul-2025 23:43 222452 +couleurs-fr.doc.tar.xz 30-Jul-2025 23:43 222452 +couleurs-fr.r75928.tar.xz 30-Jul-2025 23:43 10444 +couleurs-fr.tar.xz 30-Jul-2025 23:43 10444 +count1to.doc.r71526.tar.xz 14-Jun-2024 23:48 539720 +count1to.doc.tar.xz 14-Jun-2024 23:48 539720 +count1to.r71526.tar.xz 14-Jun-2024 23:48 1700 +count1to.source.r71526.tar.xz 14-Jun-2024 23:48 6148 +count1to.source.tar.xz 14-Jun-2024 23:48 6148 +count1to.tar.xz 14-Jun-2024 23:48 1700 +counterz.doc.r67335.tar.xz 11-Jun-2023 21:10 315768 +counterz.doc.tar.xz 11-Jun-2023 21:10 315768 +counterz.r67335.tar.xz 11-Jun-2023 21:10 2488 +counterz.source.r67335.tar.xz 11-Jun-2023 21:10 10872 +counterz.source.tar.xz 11-Jun-2023 21:10 10872 +counterz.tar.xz 11-Jun-2023 21:10 2488 +countriesofeurope.doc.r54512.tar.xz 24-Mar-2020 00:57 103320 +countriesofeurope.doc.tar.xz 24-Mar-2020 00:57 103320 +countriesofeurope.r54512.tar.xz 24-Mar-2020 00:57 219524 +countriesofeurope.tar.xz 24-Mar-2020 00:57 219524 +counttexruns.doc.r27576.tar.xz 28-Feb-2019 02:30 232164 +counttexruns.doc.tar.xz 28-Feb-2019 02:30 232164 +counttexruns.r27576.tar.xz 28-Feb-2019 02:30 908 +counttexruns.source.r27576.tar.xz 28-Feb-2019 02:30 3280 +counttexruns.source.tar.xz 28-Feb-2019 02:30 3280 +counttexruns.tar.xz 28-Feb-2019 02:30 908 +courier-scaled.doc.r24940.tar.xz 28-Feb-2019 02:30 151604 +courier-scaled.doc.tar.xz 28-Feb-2019 02:30 151604 +courier-scaled.r24940.tar.xz 28-Feb-2019 02:30 2080 +courier-scaled.tar.xz 28-Feb-2019 02:30 2080 +courier.r61719.tar.xz 24-Jan-2022 00:53 481072 +courier.tar.xz 24-Jan-2022 00:53 481072 +courierten.doc.r55436.tar.xz 06-Jun-2020 23:56 1068 +courierten.doc.tar.xz 06-Jun-2020 23:56 1068 +courierten.r55436.tar.xz 06-Jun-2020 23:56 241236 +courierten.tar.xz 06-Jun-2020 23:56 241236 +courseoutline.doc.r15878.tar.xz 28-Feb-2019 02:30 2564 +courseoutline.doc.tar.xz 28-Feb-2019 02:30 2564 +courseoutline.r15878.tar.xz 28-Feb-2019 02:30 3444 +courseoutline.tar.xz 28-Feb-2019 02:30 3444 +coursepaper.doc.r15878.tar.xz 28-Feb-2019 02:30 1924 +coursepaper.doc.tar.xz 28-Feb-2019 02:30 1924 +coursepaper.r15878.tar.xz 28-Feb-2019 02:30 4532 +coursepaper.tar.xz 28-Feb-2019 02:30 4532 +coverpage.doc.r63509.tar.xz 07-Jun-2022 23:52 280968 +coverpage.doc.tar.xz 07-Jun-2022 23:52 280968 +coverpage.r63509.tar.xz 07-Jun-2022 23:52 3712 +coverpage.source.r63509.tar.xz 07-Jun-2022 23:52 10324 +coverpage.source.tar.xz 07-Jun-2022 23:52 10324 +coverpage.tar.xz 07-Jun-2022 23:52 3712 +covington.doc.r76044.tar.xz 13-Aug-2025 23:46 574504 +covington.doc.tar.xz 13-Aug-2025 23:46 574504 +covington.r76044.tar.xz 13-Aug-2025 23:46 12364 +covington.tar.xz 13-Aug-2025 23:46 12364 +cprotect.doc.r21209.tar.xz 28-Feb-2019 02:30 584752 +cprotect.doc.tar.xz 28-Feb-2019 02:30 584752 +cprotect.r21209.tar.xz 28-Feb-2019 02:30 2864 +cprotect.source.r21209.tar.xz 28-Feb-2019 02:30 12100 +cprotect.source.tar.xz 28-Feb-2019 02:30 12100 +cprotect.tar.xz 28-Feb-2019 02:30 2864 +cprotectinside.doc.r63833.tar.xz 07-Jul-2022 23:55 299480 +cprotectinside.doc.tar.xz 07-Jul-2022 23:55 299480 +cprotectinside.r63833.tar.xz 07-Jul-2022 23:55 1648 +cprotectinside.tar.xz 07-Jul-2022 23:55 1648 +cqubeamer.doc.r54512.tar.xz 24-Mar-2020 00:57 2510176 +cqubeamer.doc.tar.xz 24-Mar-2020 00:57 2510176 +cqubeamer.r54512.tar.xz 24-Mar-2020 00:57 3084 +cqubeamer.tar.xz 24-Mar-2020 00:57 3084 +cquthesis.doc.r55643.tar.xz 23-Jun-2020 23:57 1142980 +cquthesis.doc.tar.xz 23-Jun-2020 23:57 1142980 +cquthesis.r55643.tar.xz 23-Jun-2020 23:57 16184 +cquthesis.source.r55643.tar.xz 23-Jun-2020 23:57 31152 +cquthesis.source.tar.xz 23-Jun-2020 23:57 31152 +cquthesis.tar.xz 23-Jun-2020 23:57 16184 +crbox.doc.r29803.tar.xz 28-Feb-2019 02:30 29448 +crbox.doc.tar.xz 28-Feb-2019 02:30 29448 +crbox.r29803.tar.xz 28-Feb-2019 02:30 1544 +crbox.tar.xz 28-Feb-2019 02:30 1544 +create-theorem.doc.r72830.tar.xz 13-Nov-2024 00:48 104488 +create-theorem.doc.tar.xz 13-Nov-2024 00:48 104488 +create-theorem.r72830.tar.xz 13-Nov-2024 00:48 15548 +create-theorem.tar.xz 13-Nov-2024 00:48 15548 +creationboites.doc.r75982.tar.xz 05-Aug-2025 23:45 167760 +creationboites.doc.tar.xz 05-Aug-2025 23:45 167760 +creationboites.r75982.tar.xz 05-Aug-2025 23:45 2864 +creationboites.tar.xz 05-Aug-2025 23:45 2864 +crefthe.doc.r70156.tar.xz 26-Feb-2024 00:46 81312 +crefthe.doc.tar.xz 26-Feb-2024 00:46 81312 +crefthe.r70156.tar.xz 26-Feb-2024 00:46 5000 +crefthe.tar.xz 26-Feb-2024 00:46 5000 +crimson.doc.r75712.tar.xz 07-Jul-2025 23:50 177512 +crimson.doc.tar.xz 07-Jul-2025 23:50 177512 +crimson.r75712.tar.xz 07-Jul-2025 23:50 1304408 +crimson.tar.xz 07-Jul-2025 23:50 1304408 +crimsonpro.doc.r64565.tar.xz 01-Oct-2022 23:56 85180 +crimsonpro.doc.tar.xz 01-Oct-2022 23:56 85180 +crimsonpro.r64565.tar.xz 01-Oct-2022 23:56 2549080 +crimsonpro.tar.xz 01-Oct-2022 23:56 2549080 +crop.doc.r55424.tar.xz 05-Jun-2020 23:58 326624 +crop.doc.tar.xz 05-Jun-2020 23:58 326624 +crop.r55424.tar.xz 05-Jun-2020 23:58 4680 +crop.source.r55424.tar.xz 05-Jun-2020 23:58 17840 +crop.source.tar.xz 05-Jun-2020 23:58 17840 +crop.tar.xz 05-Jun-2020 23:58 4680 +crossrefenum.doc.r76004.tar.xz 08-Aug-2025 23:52 263024 +crossrefenum.doc.tar.xz 08-Aug-2025 23:52 263024 +crossrefenum.r76004.tar.xz 08-Aug-2025 23:52 12448 +crossrefenum.tar.xz 08-Aug-2025 23:52 12448 +crossreference.doc.r15878.tar.xz 28-Feb-2019 02:30 38828 +crossreference.doc.tar.xz 28-Feb-2019 02:30 38828 +crossreference.r15878.tar.xz 28-Feb-2019 02:30 1580 +crossreference.source.r15878.tar.xz 28-Feb-2019 02:30 2748 +crossreference.source.tar.xz 28-Feb-2019 02:30 2748 +crossreference.tar.xz 28-Feb-2019 02:30 1580 +crossreftools.doc.r55879.tar.xz 19-Jul-2020 23:56 347608 +crossreftools.doc.tar.xz 19-Jul-2020 23:56 347608 +crossreftools.r55879.tar.xz 19-Jul-2020 23:56 3304 +crossreftools.tar.xz 19-Jul-2020 23:56 3304 +crossrefware.aarch64-linux.r46228.tar.xz 28-Feb-2019 02:30 460 +crossrefware.aarch64-linux.tar.xz 28-Feb-2019 02:30 460 +crossrefware.amd64-freebsd.r45927.tar.xz 28-Feb-2019 02:30 464 +crossrefware.amd64-freebsd.tar.xz 28-Feb-2019 02:30 464 +crossrefware.amd64-netbsd.r45927.tar.xz 28-Feb-2019 02:30 464 +crossrefware.amd64-netbsd.tar.xz 28-Feb-2019 02:30 464 +crossrefware.armhf-linux.r45927.tar.xz 28-Feb-2019 02:30 460 +crossrefware.armhf-linux.tar.xz 28-Feb-2019 02:30 460 +crossrefware.doc.r76407.tar.xz 26-Sep-2025 23:46 446436 +crossrefware.doc.tar.xz 26-Sep-2025 23:46 446436 +crossrefware.i386-freebsd.r45927.tar.xz 28-Feb-2019 02:30 460 +crossrefware.i386-freebsd.tar.xz 28-Feb-2019 02:30 460 +crossrefware.i386-linux.r45927.tar.xz 28-Feb-2019 02:30 460 +crossrefware.i386-linux.tar.xz 28-Feb-2019 02:30 460 +crossrefware.i386-netbsd.r45927.tar.xz 28-Feb-2019 02:30 460 +crossrefware.i386-netbsd.tar.xz 28-Feb-2019 02:30 460 +crossrefware.i386-solaris.r45927.tar.xz 28-Feb-2019 02:30 460 +crossrefware.i386-solaris.tar.xz 28-Feb-2019 02:30 460 +crossrefware.r76407.tar.xz 26-Sep-2025 23:46 20092 +crossrefware.tar.xz 26-Sep-2025 23:46 20092 +crossrefware.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 468 +crossrefware.universal-darwin.tar.xz 25-Feb-2021 18:16 468 +crossrefware.windows.r65891.tar.xz 20-Feb-2023 22:11 2480 +crossrefware.windows.tar.xz 20-Feb-2023 22:11 2480 +crossrefware.x86_64-cygwin.r45927.tar.xz 28-Feb-2019 02:30 468 +crossrefware.x86_64-cygwin.tar.xz 28-Feb-2019 02:30 468 +crossrefware.x86_64-darwinlegacy.r45927.tar.xz 28-Feb-2019 02:30 472 +crossrefware.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:30 472 +crossrefware.x86_64-linux.r45927.tar.xz 28-Feb-2019 02:30 460 +crossrefware.x86_64-linux.tar.xz 28-Feb-2019 02:30 460 +crossrefware.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:30 468 +crossrefware.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:30 468 +crossrefware.x86_64-solaris.r45927.tar.xz 28-Feb-2019 02:30 468 +crossrefware.x86_64-solaris.tar.xz 28-Feb-2019 02:30 468 +crossword.doc.r73579.tar.xz 25-Jan-2025 00:44 338192 +crossword.doc.tar.xz 25-Jan-2025 00:44 338192 +crossword.r73579.tar.xz 25-Jan-2025 00:44 4220 +crossword.source.r73579.tar.xz 25-Jan-2025 00:44 15656 +crossword.source.tar.xz 25-Jan-2025 00:44 15656 +crossword.tar.xz 25-Jan-2025 00:44 4220 +crosswrd.doc.r16896.tar.xz 28-Feb-2019 02:30 215628 +crosswrd.doc.tar.xz 28-Feb-2019 02:30 215628 +crosswrd.r16896.tar.xz 28-Feb-2019 02:30 3616 +crosswrd.source.r16896.tar.xz 28-Feb-2019 02:30 19500 +crosswrd.source.tar.xz 28-Feb-2019 02:30 19500 +crosswrd.tar.xz 28-Feb-2019 02:30 3616 +crumbs.doc.r64602.tar.xz 04-Oct-2022 23:52 256688 +crumbs.doc.tar.xz 04-Oct-2022 23:52 256688 +crumbs.r64602.tar.xz 04-Oct-2022 23:52 2204 +crumbs.source.r64602.tar.xz 04-Oct-2022 23:52 4356 +crumbs.source.tar.xz 04-Oct-2022 23:52 4356 +crumbs.tar.xz 04-Oct-2022 23:52 2204 +cryptocode.doc.r60249.tar.xz 15-Aug-2021 23:55 1046800 +cryptocode.doc.tar.xz 15-Aug-2021 23:55 1046800 +cryptocode.r60249.tar.xz 15-Aug-2021 23:55 21648 +cryptocode.source.r60249.tar.xz 15-Aug-2021 23:55 50996 +cryptocode.source.tar.xz 15-Aug-2021 23:55 50996 +cryptocode.tar.xz 15-Aug-2021 23:55 21648 +cryst.doc.r15878.tar.xz 28-Feb-2019 02:30 31468 +cryst.doc.tar.xz 28-Feb-2019 02:30 31468 +cryst.r15878.tar.xz 28-Feb-2019 02:30 35496 +cryst.tar.xz 28-Feb-2019 02:30 35496 +cs-techrep.doc.r74811.tar.xz 01-Apr-2025 23:52 306500 +cs-techrep.doc.tar.xz 01-Apr-2025 23:52 306500 +cs-techrep.r74811.tar.xz 01-Apr-2025 23:52 4460 +cs-techrep.source.r74811.tar.xz 01-Apr-2025 23:52 10488 +cs-techrep.source.tar.xz 01-Apr-2025 23:52 10488 +cs-techrep.tar.xz 01-Apr-2025 23:52 4460 +cs.r41553.tar.xz 28-Feb-2019 02:30 1798840 +cs.tar.xz 28-Feb-2019 02:30 1798840 +csassignments.doc.r63992.tar.xz 28-Jul-2022 23:53 106972 +csassignments.doc.tar.xz 28-Jul-2022 23:53 106972 +csassignments.r63992.tar.xz 28-Jul-2022 23:53 3884 +csassignments.source.r63992.tar.xz 28-Jul-2022 23:53 8200 +csassignments.source.tar.xz 28-Jul-2022 23:53 8200 +csassignments.tar.xz 28-Jul-2022 23:53 3884 +csbulletin.doc.r65250.tar.xz 13-Dec-2022 00:54 282524 +csbulletin.doc.tar.xz 13-Dec-2022 00:54 282524 +csbulletin.r65250.tar.xz 13-Dec-2022 00:54 12936 +csbulletin.tar.xz 13-Dec-2022 00:54 12936 +cslatex.r67494.tar.xz 27-Jun-2023 23:44 12756 +cslatex.source.r67494.tar.xz 27-Jun-2023 23:44 24044 +cslatex.source.tar.xz 27-Jun-2023 23:44 24044 +cslatex.tar.xz 27-Jun-2023 23:44 12756 +csplain.aarch64-linux.r50528.tar.xz 24-Mar-2019 01:24 372 +csplain.aarch64-linux.tar.xz 24-Mar-2019 01:24 372 +csplain.amd64-freebsd.r50528.tar.xz 24-Mar-2019 01:24 372 +csplain.amd64-freebsd.tar.xz 24-Mar-2019 01:24 372 +csplain.amd64-netbsd.r50607.tar.xz 27-Mar-2019 01:24 368 +csplain.amd64-netbsd.tar.xz 27-Mar-2019 01:24 368 +csplain.armhf-linux.r50528.tar.xz 24-Mar-2019 01:24 368 +csplain.armhf-linux.tar.xz 24-Mar-2019 01:24 368 +csplain.i386-freebsd.r50528.tar.xz 24-Mar-2019 01:24 368 +csplain.i386-freebsd.tar.xz 24-Mar-2019 01:24 368 +csplain.i386-linux.r50528.tar.xz 24-Mar-2019 01:24 368 +csplain.i386-linux.tar.xz 24-Mar-2019 01:24 368 +csplain.i386-netbsd.r50607.tar.xz 27-Mar-2019 01:24 368 +csplain.i386-netbsd.tar.xz 27-Mar-2019 01:24 368 +csplain.i386-solaris.r50528.tar.xz 24-Mar-2019 01:24 368 +csplain.i386-solaris.tar.xz 24-Mar-2019 01:24 368 +csplain.r67934.tar.xz 15-Aug-2023 23:47 123216 +csplain.tar.xz 15-Aug-2023 23:47 123216 +csplain.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 360 +csplain.universal-darwin.tar.xz 25-Feb-2021 18:16 360 +csplain.windows.r75604.tar.xz 25-Jun-2025 23:50 3052 +csplain.windows.tar.xz 25-Jun-2025 23:50 3052 +csplain.x86_64-cygwin.r50544.tar.xz 24-Mar-2019 01:24 372 +csplain.x86_64-cygwin.tar.xz 24-Mar-2019 01:24 372 +csplain.x86_64-darwinlegacy.r50528.tar.xz 24-Mar-2019 01:24 376 +csplain.x86_64-darwinlegacy.tar.xz 24-Mar-2019 01:24 376 +csplain.x86_64-linux.r50528.tar.xz 24-Mar-2019 01:24 368 +csplain.x86_64-linux.tar.xz 24-Mar-2019 01:24 368 +csplain.x86_64-linuxmusl.r50528.tar.xz 24-Mar-2019 01:24 376 +csplain.x86_64-linuxmusl.tar.xz 24-Mar-2019 01:24 376 +csplain.x86_64-solaris.r50528.tar.xz 24-Mar-2019 01:24 372 +csplain.x86_64-solaris.tar.xz 24-Mar-2019 01:24 372 +csquotes-de.doc.r23371.tar.xz 28-Feb-2019 02:30 321176 +csquotes-de.doc.tar.xz 28-Feb-2019 02:30 321176 +csquotes-de.r23371.tar.xz 28-Feb-2019 02:30 400 +csquotes-de.tar.xz 28-Feb-2019 02:30 400 +csquotes.doc.r71053.tar.xz 23-Apr-2024 23:46 325292 +csquotes.doc.tar.xz 23-Apr-2024 23:46 325292 +csquotes.r71053.tar.xz 23-Apr-2024 23:46 18152 +csquotes.tar.xz 23-Apr-2024 23:46 18152 +css-colors.doc.r54512.tar.xz 24-Mar-2020 00:57 2090188 +css-colors.doc.tar.xz 24-Mar-2020 00:57 2090188 +css-colors.r54512.tar.xz 24-Mar-2020 00:57 2236 +css-colors.tar.xz 24-Mar-2020 00:57 2236 +cstex.doc.r64149.tar.xz 19-Aug-2022 23:53 3963708 +cstex.doc.tar.xz 19-Aug-2022 23:53 3963708 +cstex.r64149.tar.xz 19-Aug-2022 23:53 476 +cstex.tar.xz 19-Aug-2022 23:53 476 +csthm.doc.r73506.tar.xz 19-Jan-2025 00:55 90140 +csthm.doc.tar.xz 19-Jan-2025 00:55 90140 +csthm.r73506.tar.xz 19-Jan-2025 00:55 2232 +csthm.source.r73506.tar.xz 19-Jan-2025 00:55 3380 +csthm.source.tar.xz 19-Jan-2025 00:55 3380 +csthm.tar.xz 19-Jan-2025 00:55 2232 +cstypo.doc.r41986.tar.xz 28-Feb-2019 02:30 104240 +cstypo.doc.tar.xz 28-Feb-2019 02:30 104240 +cstypo.r41986.tar.xz 28-Feb-2019 02:30 2064 +cstypo.tar.xz 28-Feb-2019 02:30 2064 +csvmerge.doc.r51857.tar.xz 10-Aug-2019 23:53 218408 +csvmerge.doc.tar.xz 10-Aug-2019 23:53 218408 +csvmerge.r51857.tar.xz 10-Aug-2019 23:53 2940 +csvmerge.source.r51857.tar.xz 10-Aug-2019 23:53 13912 +csvmerge.source.tar.xz 10-Aug-2019 23:53 13912 +csvmerge.tar.xz 10-Aug-2019 23:53 2940 +csvsimple.doc.r72484.tar.xz 07-Oct-2024 23:49 1764152 +csvsimple.doc.tar.xz 07-Oct-2024 23:49 1764152 +csvsimple.r72484.tar.xz 07-Oct-2024 23:49 11900 +csvsimple.tar.xz 07-Oct-2024 23:49 11900 +ctable.doc.r75961.tar.xz 03-Aug-2025 23:46 599276 +ctable.doc.tar.xz 03-Aug-2025 23:46 599276 +ctable.r75961.tar.xz 03-Aug-2025 23:46 3652 +ctable.source.r75961.tar.xz 03-Aug-2025 23:46 55952 +ctable.source.tar.xz 03-Aug-2025 23:46 55952 +ctable.tar.xz 03-Aug-2025 23:46 3652 +ctablestack.doc.r38514.tar.xz 28-Feb-2019 02:30 151908 +ctablestack.doc.tar.xz 28-Feb-2019 02:30 151908 +ctablestack.r38514.tar.xz 28-Feb-2019 02:30 1128 +ctablestack.source.r38514.tar.xz 28-Feb-2019 02:30 2524 +ctablestack.source.tar.xz 28-Feb-2019 02:30 2524 +ctablestack.tar.xz 28-Feb-2019 02:30 1128 +ctan-o-mat.aarch64-linux.r47001.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.aarch64-linux.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.amd64-freebsd.r47009.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.amd64-freebsd.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.amd64-netbsd.r46999.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.amd64-netbsd.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.armhf-linux.r47013.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.armhf-linux.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.doc.r51578.tar.xz 08-Jul-2019 23:53 54812 +ctan-o-mat.doc.tar.xz 08-Jul-2019 23:53 54812 +ctan-o-mat.i386-freebsd.r47009.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.i386-freebsd.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.i386-linux.r46996.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.i386-linux.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.i386-netbsd.r46999.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.i386-netbsd.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.i386-solaris.r46997.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.i386-solaris.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.r51578.tar.xz 08-Jul-2019 23:53 5968 +ctan-o-mat.tar.xz 08-Jul-2019 23:53 5968 +ctan-o-mat.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +ctan-o-mat.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +ctan-o-mat.windows.r65891.tar.xz 20-Feb-2023 22:11 2312 +ctan-o-mat.windows.tar.xz 20-Feb-2023 22:11 2312 +ctan-o-mat.x86_64-cygwin.r47461.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.x86_64-cygwin.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.x86_64-darwinlegacy.r46995.tar.xz 28-Feb-2019 02:30 352 +ctan-o-mat.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:30 352 +ctan-o-mat.x86_64-linux.r47020.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.x86_64-linux.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.x86_64-linuxmusl.r47036.tar.xz 28-Feb-2019 02:30 348 +ctan-o-mat.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:30 348 +ctan-o-mat.x86_64-solaris.r46997.tar.xz 28-Feb-2019 02:30 344 +ctan-o-mat.x86_64-solaris.tar.xz 28-Feb-2019 02:30 344 +ctan_chk.doc.r36304.tar.xz 28-Feb-2019 02:30 221996 +ctan_chk.doc.tar.xz 28-Feb-2019 02:30 221996 +ctan_chk.r36304.tar.xz 28-Feb-2019 02:30 512 +ctan_chk.tar.xz 28-Feb-2019 02:30 512 +ctanbib.aarch64-linux.r48478.tar.xz 28-Feb-2019 02:30 340 +ctanbib.aarch64-linux.tar.xz 28-Feb-2019 02:30 340 +ctanbib.amd64-freebsd.r48478.tar.xz 28-Feb-2019 02:30 340 +ctanbib.amd64-freebsd.tar.xz 28-Feb-2019 02:30 340 +ctanbib.amd64-netbsd.r48715.tar.xz 28-Feb-2019 02:30 340 +ctanbib.amd64-netbsd.tar.xz 28-Feb-2019 02:30 340 +ctanbib.armhf-linux.r48478.tar.xz 28-Feb-2019 02:30 340 +ctanbib.armhf-linux.tar.xz 28-Feb-2019 02:30 340 +ctanbib.doc.r68650.tar.xz 25-Oct-2023 23:45 60580 +ctanbib.doc.tar.xz 25-Oct-2023 23:45 60580 +ctanbib.i386-freebsd.r48478.tar.xz 28-Feb-2019 02:30 340 +ctanbib.i386-freebsd.tar.xz 28-Feb-2019 02:30 340 +ctanbib.i386-linux.r48478.tar.xz 28-Feb-2019 02:30 340 +ctanbib.i386-linux.tar.xz 28-Feb-2019 02:30 340 +ctanbib.i386-netbsd.r48478.tar.xz 28-Feb-2019 02:30 340 +ctanbib.i386-netbsd.tar.xz 28-Feb-2019 02:30 340 +ctanbib.i386-solaris.r48478.tar.xz 28-Feb-2019 02:30 336 +ctanbib.i386-solaris.tar.xz 28-Feb-2019 02:30 336 +ctanbib.r68650.tar.xz 25-Oct-2023 23:45 3508 +ctanbib.tar.xz 25-Oct-2023 23:45 3508 +ctanbib.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 336 +ctanbib.universal-darwin.tar.xz 25-Feb-2021 18:16 336 +ctanbib.windows.r65891.tar.xz 20-Feb-2023 22:11 2304 +ctanbib.windows.tar.xz 20-Feb-2023 22:11 2304 +ctanbib.x86_64-cygwin.r48478.tar.xz 28-Feb-2019 02:30 340 +ctanbib.x86_64-cygwin.tar.xz 28-Feb-2019 02:30 340 +ctanbib.x86_64-darwinlegacy.r48478.tar.xz 28-Feb-2019 02:30 348 +ctanbib.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:30 348 +ctanbib.x86_64-linux.r48478.tar.xz 28-Feb-2019 02:30 340 +ctanbib.x86_64-linux.tar.xz 28-Feb-2019 02:30 340 +ctanbib.x86_64-linuxmusl.r48478.tar.xz 28-Feb-2019 02:30 344 +ctanbib.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:30 344 +ctanbib.x86_64-solaris.r48478.tar.xz 28-Feb-2019 02:30 340 +ctanbib.x86_64-solaris.tar.xz 28-Feb-2019 02:30 340 +ctanify.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:30 340 +ctanify.aarch64-linux.tar.xz 28-Feb-2019 02:30 340 +ctanify.amd64-freebsd.r24061.tar.xz 28-Feb-2019 02:30 340 +ctanify.amd64-freebsd.tar.xz 28-Feb-2019 02:30 340 +ctanify.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:30 340 +ctanify.amd64-netbsd.tar.xz 28-Feb-2019 02:30 340 +ctanify.armhf-linux.r30015.tar.xz 28-Feb-2019 02:30 340 +ctanify.armhf-linux.tar.xz 28-Feb-2019 02:30 340 +ctanify.doc.r44129.tar.xz 28-Feb-2019 02:30 57960 +ctanify.doc.tar.xz 28-Feb-2019 02:30 57960 +ctanify.i386-freebsd.r24061.tar.xz 28-Feb-2019 02:30 340 +ctanify.i386-freebsd.tar.xz 28-Feb-2019 02:30 340 +ctanify.i386-linux.r24061.tar.xz 28-Feb-2019 02:30 340 +ctanify.i386-linux.tar.xz 28-Feb-2019 02:30 340 +ctanify.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:30 340 +ctanify.i386-netbsd.tar.xz 28-Feb-2019 02:30 340 +ctanify.i386-solaris.r24061.tar.xz 28-Feb-2019 02:30 336 +ctanify.i386-solaris.tar.xz 28-Feb-2019 02:30 336 +ctanify.r44129.tar.xz 28-Feb-2019 02:30 8236 +ctanify.tar.xz 28-Feb-2019 02:30 8236 +ctanify.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 336 +ctanify.universal-darwin.tar.xz 25-Feb-2021 18:16 336 +ctanify.windows.r65891.tar.xz 20-Feb-2023 22:11 2308 +ctanify.windows.tar.xz 20-Feb-2023 22:11 2308 +ctanify.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:30 340 +ctanify.x86_64-cygwin.tar.xz 28-Feb-2019 02:30 340 +ctanify.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:30 348 +ctanify.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:30 348 +ctanify.x86_64-linux.r24061.tar.xz 28-Feb-2019 02:30 340 +ctanify.x86_64-linux.tar.xz 28-Feb-2019 02:30 340 +ctanify.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:30 340 +ctanify.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:30 340 +ctanify.x86_64-solaris.r24061.tar.xz 28-Feb-2019 02:30 340 +ctanify.x86_64-solaris.tar.xz 28-Feb-2019 02:30 340 +ctanupload.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:30 344 +ctanupload.aarch64-linux.tar.xz 28-Feb-2019 02:30 344 +ctanupload.amd64-freebsd.r23866.tar.xz 28-Feb-2019 02:30 344 +ctanupload.amd64-freebsd.tar.xz 28-Feb-2019 02:30 344 +ctanupload.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:30 344 +ctanupload.amd64-netbsd.tar.xz 28-Feb-2019 02:30 344 +ctanupload.armhf-linux.r30015.tar.xz 28-Feb-2019 02:30 344 +ctanupload.armhf-linux.tar.xz 28-Feb-2019 02:30 344 +ctanupload.doc.r26313.tar.xz 28-Feb-2019 02:30 174964 +ctanupload.doc.tar.xz 28-Feb-2019 02:30 174964 +ctanupload.i386-freebsd.r23866.tar.xz 28-Feb-2019 02:30 344 +ctanupload.i386-freebsd.tar.xz 28-Feb-2019 02:30 344 +ctanupload.i386-linux.r23866.tar.xz 28-Feb-2019 02:30 344 +ctanupload.i386-linux.tar.xz 28-Feb-2019 02:30 344 +ctanupload.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:30 344 +ctanupload.i386-netbsd.tar.xz 28-Feb-2019 02:30 344 +ctanupload.i386-solaris.r23866.tar.xz 28-Feb-2019 02:30 340 +ctanupload.i386-solaris.tar.xz 28-Feb-2019 02:30 340 +ctanupload.r26313.tar.xz 28-Feb-2019 02:30 5104 +ctanupload.tar.xz 28-Feb-2019 02:30 5104 +ctanupload.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +ctanupload.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +ctanupload.windows.r65891.tar.xz 20-Feb-2023 22:11 2308 +ctanupload.windows.tar.xz 20-Feb-2023 22:11 2308 +ctanupload.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:30 344 +ctanupload.x86_64-cygwin.tar.xz 28-Feb-2019 02:30 344 +ctanupload.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:30 352 +ctanupload.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:30 352 +ctanupload.x86_64-linux.r23866.tar.xz 28-Feb-2019 02:30 344 +ctanupload.x86_64-linux.tar.xz 28-Feb-2019 02:30 344 +ctanupload.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:30 348 +ctanupload.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:30 348 +ctanupload.x86_64-solaris.r23866.tar.xz 28-Feb-2019 02:30 344 +ctanupload.x86_64-solaris.tar.xz 28-Feb-2019 02:30 344 +ctex-faq.doc.r15878.tar.xz 28-Feb-2019 02:30 474648 +ctex-faq.doc.tar.xz 28-Feb-2019 02:30 474648 +ctex-faq.r15878.tar.xz 28-Feb-2019 02:30 432 +ctex-faq.tar.xz 28-Feb-2019 02:30 432 +ctex.doc.r71527.tar.xz 14-Jun-2024 23:48 1143636 +ctex.doc.tar.xz 14-Jun-2024 23:48 1143636 +ctex.r71527.tar.xz 14-Jun-2024 23:48 130984 +ctex.source.r71527.tar.xz 14-Jun-2024 23:48 89520 +ctex.source.tar.xz 14-Jun-2024 23:48 89520 +ctex.tar.xz 14-Jun-2024 23:48 130984 +ctib.doc.r15878.tar.xz 28-Feb-2019 02:30 217796 +ctib.doc.tar.xz 28-Feb-2019 02:30 217796 +ctib.r15878.tar.xz 28-Feb-2019 02:30 116552 +ctib.source.r15878.tar.xz 28-Feb-2019 02:30 8532 +ctib.source.tar.xz 28-Feb-2019 02:30 8532 +ctib.tar.xz 28-Feb-2019 02:30 116552 +ctie.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 34640 +ctie.aarch64-linux.tar.xz 13-Feb-2025 00:47 34640 +ctie.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:51 33772 +ctie.amd64-freebsd.tar.xz 09-Feb-2025 00:51 33772 +ctie.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 32720 +ctie.amd64-netbsd.tar.xz 09-Feb-2025 18:14 32720 +ctie.armhf-linux.r73793.tar.xz 09-Feb-2025 00:51 31828 +ctie.armhf-linux.tar.xz 09-Feb-2025 00:51 31828 +ctie.doc.r73848.tar.xz 11-Feb-2025 00:48 18304 +ctie.doc.tar.xz 11-Feb-2025 00:48 18304 +ctie.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:51 33752 +ctie.i386-freebsd.tar.xz 09-Feb-2025 00:51 33752 +ctie.i386-linux.r73792.tar.xz 09-Feb-2025 00:51 41256 +ctie.i386-linux.tar.xz 09-Feb-2025 00:51 41256 +ctie.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 30068 +ctie.i386-netbsd.tar.xz 09-Feb-2025 18:14 30068 +ctie.i386-solaris.r73792.tar.xz 09-Feb-2025 00:51 35836 +ctie.i386-solaris.tar.xz 09-Feb-2025 00:51 35836 +ctie.r73848.tar.xz 11-Feb-2025 00:48 384 +ctie.tar.xz 11-Feb-2025 00:48 384 +ctie.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 67092 +ctie.universal-darwin.tar.xz 09-Feb-2025 18:14 67092 +ctie.windows.r73796.tar.xz 09-Feb-2025 18:14 6804 +ctie.windows.tar.xz 09-Feb-2025 18:14 6804 +ctie.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 6740 +ctie.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 6740 +ctie.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 34164 +ctie.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 34164 +ctie.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 36528 +ctie.x86_64-linux.tar.xz 19-Feb-2025 00:46 36528 +ctie.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:51 37632 +ctie.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:51 37632 +ctie.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:51 39052 +ctie.x86_64-solaris.tar.xz 09-Feb-2025 00:51 39052 +cuisine.doc.r34453.tar.xz 28-Feb-2019 02:30 256720 +cuisine.doc.tar.xz 28-Feb-2019 02:30 256720 +cuisine.r34453.tar.xz 28-Feb-2019 02:30 3000 +cuisine.source.r34453.tar.xz 28-Feb-2019 02:30 11764 +cuisine.source.tar.xz 28-Feb-2019 02:30 11764 +cuisine.tar.xz 28-Feb-2019 02:30 3000 +culmus.doc.r68495.tar.xz 09-Oct-2023 23:44 144300 +culmus.doc.tar.xz 09-Oct-2023 23:44 144300 +culmus.r68495.tar.xz 09-Oct-2023 23:44 1518404 +culmus.source.r68495.tar.xz 09-Oct-2023 23:44 2042040 +culmus.source.tar.xz 09-Oct-2023 23:44 2042040 +culmus.tar.xz 09-Oct-2023 23:44 1518404 +cuprum.doc.r49909.tar.xz 28-Feb-2019 02:30 42724 +cuprum.doc.tar.xz 28-Feb-2019 02:30 42724 +cuprum.r49909.tar.xz 28-Feb-2019 02:30 87020 +cuprum.tar.xz 28-Feb-2019 02:30 87020 +currency.doc.r48990.tar.xz 28-Feb-2019 02:30 710120 +currency.doc.tar.xz 28-Feb-2019 02:30 710120 +currency.r48990.tar.xz 28-Feb-2019 02:30 1896 +currency.source.r48990.tar.xz 28-Feb-2019 02:30 4164 +currency.source.tar.xz 28-Feb-2019 02:30 4164 +currency.tar.xz 28-Feb-2019 02:30 1896 +currfile.doc.r70650.tar.xz 16-Mar-2024 00:48 180684 +currfile.doc.tar.xz 16-Mar-2024 00:48 180684 +currfile.r70650.tar.xz 16-Mar-2024 00:48 3872 +currfile.source.r70650.tar.xz 16-Mar-2024 00:48 11916 +currfile.source.tar.xz 16-Mar-2024 00:48 11916 +currfile.tar.xz 16-Mar-2024 00:48 3872 +curriculum-vitae.doc.r75698.tar.xz 06-Jul-2025 23:47 17296 +curriculum-vitae.doc.tar.xz 06-Jul-2025 23:47 17296 +curriculum-vitae.r75698.tar.xz 06-Jul-2025 23:47 1396 +curriculum-vitae.tar.xz 06-Jul-2025 23:47 1396 +currvita.doc.r15878.tar.xz 28-Feb-2019 02:30 89020 +currvita.doc.tar.xz 28-Feb-2019 02:30 89020 +currvita.r15878.tar.xz 28-Feb-2019 02:30 2340 +currvita.source.r15878.tar.xz 28-Feb-2019 02:30 16148 +currvita.source.tar.xz 28-Feb-2019 02:30 16148 +currvita.tar.xz 28-Feb-2019 02:30 2340 +cursolatex.doc.r24139.tar.xz 28-Feb-2019 02:30 5407688 +cursolatex.doc.tar.xz 28-Feb-2019 02:30 5407688 +cursolatex.r24139.tar.xz 28-Feb-2019 02:30 392 +cursolatex.tar.xz 28-Feb-2019 02:30 392 +curve.doc.r20745.tar.xz 28-Feb-2019 02:30 249672 +curve.doc.tar.xz 28-Feb-2019 02:30 249672 +curve.r20745.tar.xz 28-Feb-2019 02:30 6868 +curve.source.r20745.tar.xz 28-Feb-2019 02:30 22616 +curve.source.tar.xz 28-Feb-2019 02:30 22616 +curve.tar.xz 28-Feb-2019 02:30 6868 +curve2e.doc.r72842.tar.xz 14-Nov-2024 00:47 1278328 +curve2e.doc.tar.xz 14-Nov-2024 00:47 1278328 +curve2e.r72842.tar.xz 14-Nov-2024 00:47 11036 +curve2e.source.r72842.tar.xz 14-Nov-2024 00:47 50788 +curve2e.source.tar.xz 14-Nov-2024 00:47 50788 +curve2e.tar.xz 14-Nov-2024 00:47 11036 +curves.doc.r45255.tar.xz 28-Feb-2019 02:30 320428 +curves.doc.tar.xz 28-Feb-2019 02:30 320428 +curves.r45255.tar.xz 28-Feb-2019 02:30 5256 +curves.source.r45255.tar.xz 28-Feb-2019 02:30 22308 +curves.source.tar.xz 28-Feb-2019 02:30 22308 +curves.tar.xz 28-Feb-2019 02:30 5256 +custom-bib.doc.r24729.tar.xz 28-Feb-2019 02:30 667864 +custom-bib.doc.tar.xz 28-Feb-2019 02:30 667864 +custom-bib.r24729.tar.xz 28-Feb-2019 02:30 84528 +custom-bib.source.r24729.tar.xz 28-Feb-2019 02:30 17224 +custom-bib.source.tar.xz 28-Feb-2019 02:30 17224 +custom-bib.tar.xz 28-Feb-2019 02:30 84528 +customdice.doc.r64089.tar.xz 10-Aug-2022 23:53 360976 +customdice.doc.tar.xz 10-Aug-2022 23:53 360976 +customdice.r64089.tar.xz 10-Aug-2022 23:53 2616 +customdice.source.r64089.tar.xz 10-Aug-2022 23:53 7408 +customdice.source.tar.xz 10-Aug-2022 23:53 7408 +customdice.tar.xz 10-Aug-2022 23:53 2616 +customenvs.doc.r76397.tar.xz 24-Sep-2025 23:48 2954268 +customenvs.doc.tar.xz 24-Sep-2025 23:48 2954268 +customenvs.r76397.tar.xz 24-Sep-2025 23:48 358804 +customenvs.tar.xz 24-Sep-2025 23:48 358804 +cutwin.doc.r60901.tar.xz 30-Oct-2021 23:55 334216 +cutwin.doc.tar.xz 30-Oct-2021 23:55 334216 +cutwin.r60901.tar.xz 30-Oct-2021 23:55 2836 +cutwin.source.r60901.tar.xz 30-Oct-2021 23:55 9416 +cutwin.source.tar.xz 30-Oct-2021 23:55 9416 +cutwin.tar.xz 30-Oct-2021 23:55 2836 +cv.doc.r15878.tar.xz 28-Feb-2019 02:30 52576 +cv.doc.tar.xz 28-Feb-2019 02:30 52576 +cv.r15878.tar.xz 28-Feb-2019 02:30 832 +cv.tar.xz 28-Feb-2019 02:30 832 +cv4tw.doc.r34577.tar.xz 28-Feb-2019 02:30 98724 +cv4tw.doc.tar.xz 28-Feb-2019 02:30 98724 +cv4tw.r34577.tar.xz 28-Feb-2019 02:30 5132 +cv4tw.tar.xz 28-Feb-2019 02:30 5132 +cvss.doc.r65169.tar.xz 03-Dec-2022 00:54 574872 +cvss.doc.tar.xz 03-Dec-2022 00:54 574872 +cvss.r65169.tar.xz 03-Dec-2022 00:54 3320 +cvss.source.r65169.tar.xz 03-Dec-2022 00:54 7376 +cvss.source.tar.xz 03-Dec-2022 00:54 7376 +cvss.tar.xz 03-Dec-2022 00:54 3320 +cweb-latex.doc.r28878.tar.xz 28-Feb-2019 02:30 240884 +cweb-latex.doc.tar.xz 28-Feb-2019 02:30 240884 +cweb-latex.r28878.tar.xz 28-Feb-2019 02:30 36236 +cweb-latex.tar.xz 28-Feb-2019 02:30 36236 +cweb-old.r49271.tar.xz 28-Feb-2019 02:30 9720 +cweb-old.tar.xz 28-Feb-2019 02:30 9720 +cweb.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 151072 +cweb.aarch64-linux.tar.xz 13-Feb-2025 00:47 151072 +cweb.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:51 155432 +cweb.amd64-freebsd.tar.xz 09-Feb-2025 00:51 155432 +cweb.amd64-netbsd.r74618.tar.xz 15-Mar-2025 00:51 150464 +cweb.amd64-netbsd.tar.xz 15-Mar-2025 00:51 150464 +cweb.armhf-linux.r73793.tar.xz 09-Feb-2025 00:51 143476 +cweb.armhf-linux.tar.xz 09-Feb-2025 00:51 143476 +cweb.doc.r75902.tar.xz 27-Jul-2025 23:51 81304 +cweb.doc.tar.xz 27-Jul-2025 23:51 81304 +cweb.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 155396 +cweb.i386-freebsd.tar.xz 09-Feb-2025 00:52 155396 +cweb.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 162140 +cweb.i386-linux.tar.xz 09-Feb-2025 00:52 162140 +cweb.i386-netbsd.r74618.tar.xz 15-Mar-2025 00:51 120268 +cweb.i386-netbsd.tar.xz 15-Mar-2025 00:51 120268 +cweb.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 149940 +cweb.i386-solaris.tar.xz 09-Feb-2025 00:52 149940 +cweb.r75902.tar.xz 27-Jul-2025 23:51 27456 +cweb.tar.xz 27-Jul-2025 23:51 27456 +cweb.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 341820 +cweb.universal-darwin.tar.xz 09-Feb-2025 18:14 341820 +cweb.windows.r73796.tar.xz 09-Feb-2025 18:14 112688 +cweb.windows.tar.xz 09-Feb-2025 18:14 112688 +cweb.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 114856 +cweb.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 114856 +cweb.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 147052 +cweb.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 147052 +cweb.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 164000 +cweb.x86_64-linux.tar.xz 19-Feb-2025 00:46 164000 +cweb.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 169104 +cweb.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 169104 +cweb.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 175872 +cweb.x86_64-solaris.tar.xz 09-Feb-2025 00:52 175872 +cyber.doc.r46776.tar.xz 28-Feb-2019 02:30 247024 +cyber.doc.tar.xz 28-Feb-2019 02:30 247024 +cyber.r46776.tar.xz 28-Feb-2019 02:30 3508 +cyber.source.r46776.tar.xz 28-Feb-2019 02:30 12624 +cyber.source.tar.xz 28-Feb-2019 02:30 12624 +cyber.tar.xz 28-Feb-2019 02:30 3508 +cybercic.doc.r37659.tar.xz 28-Feb-2019 02:30 191164 +cybercic.doc.tar.xz 28-Feb-2019 02:30 191164 +cybercic.r37659.tar.xz 28-Feb-2019 02:30 2392 +cybercic.source.r37659.tar.xz 28-Feb-2019 02:30 7480 +cybercic.source.tar.xz 28-Feb-2019 02:30 7480 +cybercic.tar.xz 28-Feb-2019 02:30 2392 +cyklop.doc.r18651.tar.xz 28-Feb-2019 02:30 405780 +cyklop.doc.tar.xz 28-Feb-2019 02:30 405780 +cyklop.r18651.tar.xz 28-Feb-2019 02:30 314684 +cyklop.tar.xz 28-Feb-2019 02:30 314684 +cyrillic-bin.aarch64-linux.r53554.tar.xz 27-Jan-2020 00:40 384 +cyrillic-bin.aarch64-linux.tar.xz 27-Jan-2020 00:40 384 +cyrillic-bin.amd64-freebsd.r53554.tar.xz 27-Jan-2020 00:40 388 +cyrillic-bin.amd64-freebsd.tar.xz 27-Jan-2020 00:40 388 +cyrillic-bin.amd64-netbsd.r53554.tar.xz 27-Jan-2020 00:40 380 +cyrillic-bin.amd64-netbsd.tar.xz 27-Jan-2020 00:40 380 +cyrillic-bin.armhf-linux.r53554.tar.xz 27-Jan-2020 00:40 388 +cyrillic-bin.armhf-linux.tar.xz 27-Jan-2020 00:40 388 +cyrillic-bin.doc.r62517.tar.xz 09-Mar-2022 00:51 32280 +cyrillic-bin.doc.tar.xz 09-Mar-2022 00:51 32280 +cyrillic-bin.i386-freebsd.r53554.tar.xz 27-Jan-2020 00:40 380 +cyrillic-bin.i386-freebsd.tar.xz 27-Jan-2020 00:40 380 +cyrillic-bin.i386-linux.r53554.tar.xz 27-Jan-2020 00:40 384 +cyrillic-bin.i386-linux.tar.xz 27-Jan-2020 00:40 384 +cyrillic-bin.i386-netbsd.r53554.tar.xz 27-Jan-2020 00:40 384 +cyrillic-bin.i386-netbsd.tar.xz 27-Jan-2020 00:40 384 +cyrillic-bin.i386-solaris.r53554.tar.xz 27-Jan-2020 00:40 380 +cyrillic-bin.i386-solaris.tar.xz 27-Jan-2020 00:40 380 +cyrillic-bin.r62517.tar.xz 09-Mar-2022 00:51 1500 +cyrillic-bin.tar.xz 09-Mar-2022 00:51 1500 +cyrillic-bin.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 388 +cyrillic-bin.universal-darwin.tar.xz 25-Feb-2021 18:16 388 +cyrillic-bin.x86_64-cygwin.r53554.tar.xz 27-Jan-2020 00:40 388 +cyrillic-bin.x86_64-cygwin.tar.xz 27-Jan-2020 00:40 388 +cyrillic-bin.x86_64-darwinlegacy.r53554.tar.xz 27-Jan-2020 00:40 388 +cyrillic-bin.x86_64-darwinlegacy.tar.xz 27-Jan-2020 00:40 388 +cyrillic-bin.x86_64-linux.r53554.tar.xz 27-Jan-2020 00:40 380 +cyrillic-bin.x86_64-linux.tar.xz 27-Jan-2020 00:40 380 +cyrillic-bin.x86_64-linuxmusl.r53554.tar.xz 27-Jan-2020 00:40 392 +cyrillic-bin.x86_64-linuxmusl.tar.xz 27-Jan-2020 00:40 392 +cyrillic-bin.x86_64-solaris.r53554.tar.xz 27-Jan-2020 00:40 384 +cyrillic-bin.x86_64-solaris.tar.xz 27-Jan-2020 00:40 384 +cyrillic-modern.doc.r71183.tar.xz 05-May-2024 23:46 590316 +cyrillic-modern.doc.tar.xz 05-May-2024 23:46 590316 +cyrillic-modern.r71183.tar.xz 05-May-2024 23:46 3247356 +cyrillic-modern.tar.xz 05-May-2024 23:46 3247356 +cyrillic.doc.r71408.tar.xz 02-Jun-2024 23:47 921768 +cyrillic.doc.tar.xz 02-Jun-2024 23:47 921768 +cyrillic.r71408.tar.xz 02-Jun-2024 23:47 15772 +cyrillic.source.r71408.tar.xz 02-Jun-2024 23:47 21480 +cyrillic.source.tar.xz 02-Jun-2024 23:47 21480 +cyrillic.tar.xz 02-Jun-2024 23:47 15772 +cyrplain.r45692.tar.xz 28-Feb-2019 02:31 8724 +cyrplain.tar.xz 28-Feb-2019 02:31 8724 +dad.doc.r54191.tar.xz 08-Mar-2020 23:28 199976 +dad.doc.tar.xz 08-Mar-2020 23:28 199976 +dad.r54191.tar.xz 08-Mar-2020 23:28 241644 +dad.tar.xz 08-Mar-2020 23:28 241644 +dancers.r13293.tar.xz 28-Feb-2019 02:31 3852 +dancers.tar.xz 28-Feb-2019 02:31 3852 +dantelogo.doc.r38599.tar.xz 28-Feb-2019 02:31 203152 +dantelogo.doc.tar.xz 28-Feb-2019 02:31 203152 +dantelogo.r38599.tar.xz 28-Feb-2019 02:31 17044 +dantelogo.tar.xz 28-Feb-2019 02:31 17044 +darkmode.doc.r64271.tar.xz 02-Sep-2022 23:52 753688 +darkmode.doc.tar.xz 02-Sep-2022 23:52 753688 +darkmode.r64271.tar.xz 02-Sep-2022 23:52 1508 +darkmode.source.r64271.tar.xz 02-Sep-2022 23:52 3624 +darkmode.source.tar.xz 02-Sep-2022 23:52 3624 +darkmode.tar.xz 02-Sep-2022 23:52 1508 +dashbox.doc.r23425.tar.xz 28-Feb-2019 02:31 159404 +dashbox.doc.tar.xz 28-Feb-2019 02:31 159404 +dashbox.r23425.tar.xz 28-Feb-2019 02:31 1624 +dashbox.source.r23425.tar.xz 28-Feb-2019 02:31 3964 +dashbox.source.tar.xz 28-Feb-2019 02:31 3964 +dashbox.tar.xz 28-Feb-2019 02:31 1624 +dashrule.doc.r29579.tar.xz 28-Feb-2019 02:31 230940 +dashrule.doc.tar.xz 28-Feb-2019 02:31 230940 +dashrule.r29579.tar.xz 28-Feb-2019 02:31 1488 +dashrule.source.r29579.tar.xz 28-Feb-2019 02:31 6080 +dashrule.source.tar.xz 28-Feb-2019 02:31 6080 +dashrule.tar.xz 28-Feb-2019 02:31 1488 +dashrulex.doc.r73736.tar.xz 06-Feb-2025 00:48 57032 +dashrulex.doc.tar.xz 06-Feb-2025 00:48 57032 +dashrulex.r73736.tar.xz 06-Feb-2025 00:48 1640 +dashrulex.tar.xz 06-Feb-2025 00:48 1640 +dashundergaps.doc.r58150.tar.xz 06-Mar-2021 00:31 916556 +dashundergaps.doc.tar.xz 06-Mar-2021 00:31 916556 +dashundergaps.r58150.tar.xz 06-Mar-2021 00:31 3512 +dashundergaps.source.r58150.tar.xz 06-Mar-2021 00:31 13284 +dashundergaps.source.tar.xz 06-Mar-2021 00:31 13284 +dashundergaps.tar.xz 06-Mar-2021 00:31 3512 +dataref.doc.r62942.tar.xz 05-Apr-2022 23:52 263744 +dataref.doc.tar.xz 05-Apr-2022 23:52 263744 +dataref.r62942.tar.xz 05-Apr-2022 23:52 7604 +dataref.tar.xz 05-Apr-2022 23:52 7604 +datatool-english.doc.r74590.tar.xz 13-Mar-2025 00:49 255044 +datatool-english.doc.tar.xz 13-Mar-2025 00:49 255044 +datatool-english.r74590.tar.xz 13-Mar-2025 00:49 7680 +datatool-english.source.r74590.tar.xz 13-Mar-2025 00:49 19232 +datatool-english.source.tar.xz 13-Mar-2025 00:49 19232 +datatool-english.tar.xz 13-Mar-2025 00:49 7680 +datatool-regions.doc.r75712.tar.xz 07-Jul-2025 23:50 508312 +datatool-regions.doc.tar.xz 07-Jul-2025 23:50 508312 +datatool-regions.r75712.tar.xz 07-Jul-2025 23:50 6936 +datatool-regions.source.r75712.tar.xz 07-Jul-2025 23:50 14620 +datatool-regions.source.tar.xz 07-Jul-2025 23:50 14620 +datatool-regions.tar.xz 07-Jul-2025 23:50 6936 +datatool.doc.r75019.tar.xz 25-Apr-2025 23:49 15875692 +datatool.doc.tar.xz 25-Apr-2025 23:49 15875692 +datatool.r75019.tar.xz 25-Apr-2025 23:49 163348 +datatool.source.r75019.tar.xz 25-Apr-2025 23:49 258908 +datatool.source.tar.xz 25-Apr-2025 23:49 258908 +datatool.tar.xz 25-Apr-2025 23:49 163348 +datax.doc.r61772.tar.xz 29-Jan-2022 00:52 198520 +datax.doc.tar.xz 29-Jan-2022 00:52 198520 +datax.r61772.tar.xz 29-Jan-2022 00:52 1256 +datax.source.r61772.tar.xz 29-Jan-2022 00:52 4156 +datax.source.tar.xz 29-Jan-2022 00:52 4156 +datax.tar.xz 29-Jan-2022 00:52 1256 +dateiliste.doc.r27974.tar.xz 28-Feb-2019 02:31 233644 +dateiliste.doc.tar.xz 28-Feb-2019 02:31 233644 +dateiliste.r27974.tar.xz 28-Feb-2019 02:31 4264 +dateiliste.source.r27974.tar.xz 28-Feb-2019 02:31 22632 +dateiliste.source.tar.xz 28-Feb-2019 02:31 22632 +dateiliste.tar.xz 28-Feb-2019 02:31 4264 +datenumber.doc.r61761.tar.xz 28-Jan-2022 00:53 307264 +datenumber.doc.tar.xz 28-Jan-2022 00:53 307264 +datenumber.r61761.tar.xz 28-Jan-2022 00:53 3308 +datenumber.source.r61761.tar.xz 28-Jan-2022 00:53 5704 +datenumber.source.tar.xz 28-Jan-2022 00:53 5704 +datenumber.tar.xz 28-Jan-2022 00:53 3308 +datestamp.doc.r61719.tar.xz 24-Jan-2022 00:53 114964 +datestamp.doc.tar.xz 24-Jan-2022 00:53 114964 +datestamp.r61719.tar.xz 24-Jan-2022 00:53 1552 +datestamp.source.r61719.tar.xz 24-Jan-2022 00:53 3452 +datestamp.source.tar.xz 24-Jan-2022 00:53 3452 +datestamp.tar.xz 24-Jan-2022 00:53 1552 +datetime.doc.r36650.tar.xz 28-Feb-2019 02:31 427368 +datetime.doc.tar.xz 28-Feb-2019 02:31 427368 +datetime.r36650.tar.xz 28-Feb-2019 02:31 13604 +datetime.source.r36650.tar.xz 28-Feb-2019 02:31 29100 +datetime.source.tar.xz 28-Feb-2019 02:31 29100 +datetime.tar.xz 28-Feb-2019 02:31 13604 +datetime2-bahasai.doc.r46287.tar.xz 28-Feb-2019 02:31 272028 +datetime2-bahasai.doc.tar.xz 28-Feb-2019 02:31 272028 +datetime2-bahasai.r46287.tar.xz 28-Feb-2019 02:31 2208 +datetime2-bahasai.source.r46287.tar.xz 28-Feb-2019 02:31 4124 +datetime2-bahasai.source.tar.xz 28-Feb-2019 02:31 4124 +datetime2-bahasai.tar.xz 28-Feb-2019 02:31 2208 +datetime2-basque.doc.r47064.tar.xz 28-Feb-2019 02:31 1804 +datetime2-basque.doc.tar.xz 28-Feb-2019 02:31 1804 +datetime2-basque.r47064.tar.xz 28-Feb-2019 02:31 2428 +datetime2-basque.source.r47064.tar.xz 28-Feb-2019 02:31 4672 +datetime2-basque.source.tar.xz 28-Feb-2019 02:31 4672 +datetime2-basque.tar.xz 28-Feb-2019 02:31 2428 +datetime2-breton.doc.r52647.tar.xz 06-Nov-2019 00:54 282380 +datetime2-breton.doc.tar.xz 06-Nov-2019 00:54 282380 +datetime2-breton.r52647.tar.xz 06-Nov-2019 00:54 2576 +datetime2-breton.source.r52647.tar.xz 06-Nov-2019 00:54 4776 +datetime2-breton.source.tar.xz 06-Nov-2019 00:54 4776 +datetime2-breton.tar.xz 06-Nov-2019 00:54 2576 +datetime2-bulgarian.doc.r47031.tar.xz 28-Feb-2019 02:31 80628 +datetime2-bulgarian.doc.tar.xz 28-Feb-2019 02:31 80628 +datetime2-bulgarian.r47031.tar.xz 28-Feb-2019 02:31 2716 +datetime2-bulgarian.source.r47031.tar.xz 28-Feb-2019 02:31 4988 +datetime2-bulgarian.source.tar.xz 28-Feb-2019 02:31 4988 +datetime2-bulgarian.tar.xz 28-Feb-2019 02:31 2716 +datetime2-catalan.doc.r47032.tar.xz 28-Feb-2019 02:31 280420 +datetime2-catalan.doc.tar.xz 28-Feb-2019 02:31 280420 +datetime2-catalan.r47032.tar.xz 28-Feb-2019 02:31 2488 +datetime2-catalan.source.r47032.tar.xz 28-Feb-2019 02:31 4672 +datetime2-catalan.source.tar.xz 28-Feb-2019 02:31 4672 +datetime2-catalan.tar.xz 28-Feb-2019 02:31 2488 +datetime2-croatian.doc.r36682.tar.xz 28-Feb-2019 02:31 83956 +datetime2-croatian.doc.tar.xz 28-Feb-2019 02:31 83956 +datetime2-croatian.r36682.tar.xz 28-Feb-2019 02:31 2584 +datetime2-croatian.source.r36682.tar.xz 28-Feb-2019 02:31 4940 +datetime2-croatian.source.tar.xz 28-Feb-2019 02:31 4940 +datetime2-croatian.tar.xz 28-Feb-2019 02:31 2584 +datetime2-czech.doc.r47033.tar.xz 28-Feb-2019 02:31 81720 +datetime2-czech.doc.tar.xz 28-Feb-2019 02:31 81720 +datetime2-czech.r47033.tar.xz 28-Feb-2019 02:31 2568 +datetime2-czech.source.r47033.tar.xz 28-Feb-2019 02:31 4748 +datetime2-czech.source.tar.xz 28-Feb-2019 02:31 4748 +datetime2-czech.tar.xz 28-Feb-2019 02:31 2568 +datetime2-danish.doc.r47034.tar.xz 28-Feb-2019 02:31 83108 +datetime2-danish.doc.tar.xz 28-Feb-2019 02:31 83108 +datetime2-danish.r47034.tar.xz 28-Feb-2019 02:31 2536 +datetime2-danish.source.r47034.tar.xz 28-Feb-2019 02:31 4804 +datetime2-danish.source.tar.xz 28-Feb-2019 02:31 4804 +datetime2-danish.tar.xz 28-Feb-2019 02:31 2536 +datetime2-dutch.doc.r47355.tar.xz 28-Feb-2019 02:31 278696 +datetime2-dutch.doc.tar.xz 28-Feb-2019 02:31 278696 +datetime2-dutch.r47355.tar.xz 28-Feb-2019 02:31 2396 +datetime2-dutch.source.r47355.tar.xz 28-Feb-2019 02:31 4352 +datetime2-dutch.source.tar.xz 28-Feb-2019 02:31 4352 +datetime2-dutch.tar.xz 28-Feb-2019 02:31 2396 +datetime2-en-fulltext.doc.r36705.tar.xz 28-Feb-2019 02:31 278384 +datetime2-en-fulltext.doc.tar.xz 28-Feb-2019 02:31 278384 +datetime2-en-fulltext.r36705.tar.xz 28-Feb-2019 02:31 2696 +datetime2-en-fulltext.source.r36705.tar.xz 28-Feb-2019 02:31 4060 +datetime2-en-fulltext.source.tar.xz 28-Feb-2019 02:31 4060 +datetime2-en-fulltext.tar.xz 28-Feb-2019 02:31 2696 +datetime2-english.doc.r52479.tar.xz 22-Oct-2019 14:40 638380 +datetime2-english.doc.tar.xz 22-Oct-2019 14:40 638380 +datetime2-english.r52479.tar.xz 22-Oct-2019 14:40 5892 +datetime2-english.source.r52479.tar.xz 22-Oct-2019 14:40 13440 +datetime2-english.source.tar.xz 22-Oct-2019 14:40 13440 +datetime2-english.tar.xz 22-Oct-2019 14:40 5892 +datetime2-esperanto.doc.r47356.tar.xz 28-Feb-2019 02:31 81488 +datetime2-esperanto.doc.tar.xz 28-Feb-2019 02:31 81488 +datetime2-esperanto.r47356.tar.xz 28-Feb-2019 02:31 2484 +datetime2-esperanto.source.r47356.tar.xz 28-Feb-2019 02:31 4732 +datetime2-esperanto.source.tar.xz 28-Feb-2019 02:31 4732 +datetime2-esperanto.tar.xz 28-Feb-2019 02:31 2484 +datetime2-estonian.doc.r47565.tar.xz 28-Feb-2019 02:31 81032 +datetime2-estonian.doc.tar.xz 28-Feb-2019 02:31 81032 +datetime2-estonian.r47565.tar.xz 28-Feb-2019 02:31 2492 +datetime2-estonian.source.r47565.tar.xz 28-Feb-2019 02:31 4740 +datetime2-estonian.source.tar.xz 28-Feb-2019 02:31 4740 +datetime2-estonian.tar.xz 28-Feb-2019 02:31 2492 +datetime2-finnish.doc.r47047.tar.xz 28-Feb-2019 02:31 85496 +datetime2-finnish.doc.tar.xz 28-Feb-2019 02:31 85496 +datetime2-finnish.r47047.tar.xz 28-Feb-2019 02:31 2732 +datetime2-finnish.source.r47047.tar.xz 28-Feb-2019 02:31 5484 +datetime2-finnish.source.tar.xz 28-Feb-2019 02:31 5484 +datetime2-finnish.tar.xz 28-Feb-2019 02:31 2732 +datetime2-french.doc.r56393.tar.xz 21-Sep-2020 23:57 387068 +datetime2-french.doc.tar.xz 21-Sep-2020 23:57 387068 +datetime2-french.r56393.tar.xz 21-Sep-2020 23:57 3028 +datetime2-french.source.r56393.tar.xz 21-Sep-2020 23:57 5028 +datetime2-french.source.tar.xz 21-Sep-2020 23:57 5028 +datetime2-french.tar.xz 21-Sep-2020 23:57 3028 +datetime2-galician.doc.r47631.tar.xz 28-Feb-2019 02:31 81096 +datetime2-galician.doc.tar.xz 28-Feb-2019 02:31 81096 +datetime2-galician.r47631.tar.xz 28-Feb-2019 02:31 2508 +datetime2-galician.source.r47631.tar.xz 28-Feb-2019 02:31 4700 +datetime2-galician.source.tar.xz 28-Feb-2019 02:31 4700 +datetime2-galician.tar.xz 28-Feb-2019 02:31 2508 +datetime2-german.doc.r67201.tar.xz 23-May-2023 23:44 133104 +datetime2-german.doc.tar.xz 23-May-2023 23:44 133104 +datetime2-german.r67201.tar.xz 23-May-2023 23:44 3712 +datetime2-german.source.r67201.tar.xz 23-May-2023 23:44 8256 +datetime2-german.source.tar.xz 23-May-2023 23:44 8256 +datetime2-german.tar.xz 23-May-2023 23:44 3712 +datetime2-greek.doc.r47533.tar.xz 28-Feb-2019 02:31 78172 +datetime2-greek.doc.tar.xz 28-Feb-2019 02:31 78172 +datetime2-greek.r47533.tar.xz 28-Feb-2019 02:31 2524 +datetime2-greek.source.r47533.tar.xz 28-Feb-2019 02:31 4716 +datetime2-greek.source.tar.xz 28-Feb-2019 02:31 4716 +datetime2-greek.tar.xz 28-Feb-2019 02:31 2524 +datetime2-hebrew.doc.r47534.tar.xz 28-Feb-2019 02:31 270888 +datetime2-hebrew.doc.tar.xz 28-Feb-2019 02:31 270888 +datetime2-hebrew.r47534.tar.xz 28-Feb-2019 02:31 2164 +datetime2-hebrew.source.r47534.tar.xz 28-Feb-2019 02:31 3884 +datetime2-hebrew.source.tar.xz 28-Feb-2019 02:31 3884 +datetime2-hebrew.tar.xz 28-Feb-2019 02:31 2164 +datetime2-icelandic.doc.r65213.tar.xz 07-Dec-2022 00:55 73388 +datetime2-icelandic.doc.tar.xz 07-Dec-2022 00:55 73388 +datetime2-icelandic.r65213.tar.xz 07-Dec-2022 00:55 2532 +datetime2-icelandic.source.r65213.tar.xz 07-Dec-2022 00:55 4772 +datetime2-icelandic.source.tar.xz 07-Dec-2022 00:55 4772 +datetime2-icelandic.tar.xz 07-Dec-2022 00:55 2532 +datetime2-irish.doc.r47632.tar.xz 28-Feb-2019 02:31 321096 +datetime2-irish.doc.tar.xz 28-Feb-2019 02:31 321096 +datetime2-irish.r47632.tar.xz 28-Feb-2019 02:31 2908 +datetime2-irish.source.r47632.tar.xz 28-Feb-2019 02:31 5444 +datetime2-irish.source.tar.xz 28-Feb-2019 02:31 5444 +datetime2-irish.tar.xz 28-Feb-2019 02:31 2908 +datetime2-it-fulltext.doc.r54779.tar.xz 19-Apr-2020 16:09 123908 +datetime2-it-fulltext.doc.tar.xz 19-Apr-2020 16:09 123908 +datetime2-it-fulltext.r54779.tar.xz 19-Apr-2020 16:09 3736 +datetime2-it-fulltext.source.r54779.tar.xz 19-Apr-2020 16:09 4488 +datetime2-it-fulltext.source.tar.xz 19-Apr-2020 16:09 4488 +datetime2-it-fulltext.tar.xz 19-Apr-2020 16:09 3736 +datetime2-italian.doc.r37146.tar.xz 28-Feb-2019 02:31 3312 +datetime2-italian.doc.tar.xz 28-Feb-2019 02:31 3312 +datetime2-italian.r37146.tar.xz 28-Feb-2019 02:31 2904 +datetime2-italian.source.r37146.tar.xz 28-Feb-2019 02:31 4860 +datetime2-italian.source.tar.xz 28-Feb-2019 02:31 4860 +datetime2-italian.tar.xz 28-Feb-2019 02:31 2904 +datetime2-latin.doc.r47748.tar.xz 28-Feb-2019 02:31 272468 +datetime2-latin.doc.tar.xz 28-Feb-2019 02:31 272468 +datetime2-latin.r47748.tar.xz 28-Feb-2019 02:31 2344 +datetime2-latin.source.r47748.tar.xz 28-Feb-2019 02:31 4268 +datetime2-latin.source.tar.xz 28-Feb-2019 02:31 4268 +datetime2-latin.tar.xz 28-Feb-2019 02:31 2344 +datetime2-lsorbian.doc.r47749.tar.xz 28-Feb-2019 02:31 85956 +datetime2-lsorbian.doc.tar.xz 28-Feb-2019 02:31 85956 +datetime2-lsorbian.r47749.tar.xz 28-Feb-2019 02:31 2772 +datetime2-lsorbian.source.r47749.tar.xz 28-Feb-2019 02:31 5060 +datetime2-lsorbian.source.tar.xz 28-Feb-2019 02:31 5060 +datetime2-lsorbian.tar.xz 28-Feb-2019 02:31 2772 +datetime2-magyar.doc.r48266.tar.xz 28-Feb-2019 02:31 81372 +datetime2-magyar.doc.tar.xz 28-Feb-2019 02:31 81372 +datetime2-magyar.r48266.tar.xz 28-Feb-2019 02:31 2536 +datetime2-magyar.source.r48266.tar.xz 28-Feb-2019 02:31 4776 +datetime2-magyar.source.tar.xz 28-Feb-2019 02:31 4776 +datetime2-magyar.tar.xz 28-Feb-2019 02:31 2536 +datetime2-norsk.doc.r48267.tar.xz 28-Feb-2019 02:31 84152 +datetime2-norsk.doc.tar.xz 28-Feb-2019 02:31 84152 +datetime2-norsk.r48267.tar.xz 28-Feb-2019 02:31 2540 +datetime2-norsk.source.r48267.tar.xz 28-Feb-2019 02:31 4792 +datetime2-norsk.source.tar.xz 28-Feb-2019 02:31 4792 +datetime2-norsk.tar.xz 28-Feb-2019 02:31 2540 +datetime2-polish.doc.r48456.tar.xz 28-Feb-2019 02:31 83772 +datetime2-polish.doc.tar.xz 28-Feb-2019 02:31 83772 +datetime2-polish.r48456.tar.xz 28-Feb-2019 02:31 2600 +datetime2-polish.source.r48456.tar.xz 28-Feb-2019 02:31 4872 +datetime2-polish.source.tar.xz 28-Feb-2019 02:31 4872 +datetime2-polish.tar.xz 28-Feb-2019 02:31 2600 +datetime2-portuges.doc.r48457.tar.xz 28-Feb-2019 02:31 286568 +datetime2-portuges.doc.tar.xz 28-Feb-2019 02:31 286568 +datetime2-portuges.r48457.tar.xz 28-Feb-2019 02:31 2516 +datetime2-portuges.source.r48457.tar.xz 28-Feb-2019 02:31 4772 +datetime2-portuges.source.tar.xz 28-Feb-2019 02:31 4772 +datetime2-portuges.tar.xz 28-Feb-2019 02:31 2516 +datetime2-romanian.doc.r56394.tar.xz 21-Sep-2020 23:57 142384 +datetime2-romanian.doc.tar.xz 21-Sep-2020 23:57 142384 +datetime2-romanian.r56394.tar.xz 21-Sep-2020 23:57 2856 +datetime2-romanian.source.r56394.tar.xz 21-Sep-2020 23:57 4880 +datetime2-romanian.source.tar.xz 21-Sep-2020 23:57 4880 +datetime2-romanian.tar.xz 21-Sep-2020 23:57 2856 +datetime2-russian.doc.r49345.tar.xz 28-Feb-2019 02:31 76424 +datetime2-russian.doc.tar.xz 28-Feb-2019 02:31 76424 +datetime2-russian.r49345.tar.xz 28-Feb-2019 02:31 2704 +datetime2-russian.source.r49345.tar.xz 28-Feb-2019 02:31 5056 +datetime2-russian.source.tar.xz 28-Feb-2019 02:31 5056 +datetime2-russian.tar.xz 28-Feb-2019 02:31 2704 +datetime2-samin.doc.r49346.tar.xz 28-Feb-2019 02:31 73200 +datetime2-samin.doc.tar.xz 28-Feb-2019 02:31 73200 +datetime2-samin.r49346.tar.xz 28-Feb-2019 02:31 2588 +datetime2-samin.source.r49346.tar.xz 28-Feb-2019 02:31 4860 +datetime2-samin.source.tar.xz 28-Feb-2019 02:31 4860 +datetime2-samin.tar.xz 28-Feb-2019 02:31 2588 +datetime2-scottish.doc.r52101.tar.xz 15-Sep-2019 23:54 287108 +datetime2-scottish.doc.tar.xz 15-Sep-2019 23:54 287108 +datetime2-scottish.r52101.tar.xz 15-Sep-2019 23:54 2548 +datetime2-scottish.source.r52101.tar.xz 15-Sep-2019 23:54 4860 +datetime2-scottish.source.tar.xz 15-Sep-2019 23:54 4860 +datetime2-scottish.tar.xz 15-Sep-2019 23:54 2548 +datetime2-serbian.doc.r67201.tar.xz 23-May-2023 23:44 277144 +datetime2-serbian.doc.tar.xz 23-May-2023 23:44 277144 +datetime2-serbian.r67201.tar.xz 23-May-2023 23:44 6692 +datetime2-serbian.source.r67201.tar.xz 23-May-2023 23:44 15704 +datetime2-serbian.source.tar.xz 23-May-2023 23:44 15704 +datetime2-serbian.tar.xz 23-May-2023 23:44 6692 +datetime2-slovak.doc.r52281.tar.xz 04-Oct-2019 23:54 72652 +datetime2-slovak.doc.tar.xz 04-Oct-2019 23:54 72652 +datetime2-slovak.r52281.tar.xz 04-Oct-2019 23:54 2548 +datetime2-slovak.source.r52281.tar.xz 04-Oct-2019 23:54 4716 +datetime2-slovak.source.tar.xz 04-Oct-2019 23:54 4716 +datetime2-slovak.tar.xz 04-Oct-2019 23:54 2548 +datetime2-slovene.doc.r52282.tar.xz 04-Oct-2019 23:54 72192 +datetime2-slovene.doc.tar.xz 04-Oct-2019 23:54 72192 +datetime2-slovene.r52282.tar.xz 04-Oct-2019 23:54 2480 +datetime2-slovene.source.r52282.tar.xz 04-Oct-2019 23:54 4720 +datetime2-slovene.source.tar.xz 04-Oct-2019 23:54 4720 +datetime2-slovene.tar.xz 04-Oct-2019 23:54 2480 +datetime2-spanish.doc.r45785.tar.xz 28-Feb-2019 02:31 287836 +datetime2-spanish.doc.tar.xz 28-Feb-2019 02:31 287836 +datetime2-spanish.r45785.tar.xz 28-Feb-2019 02:31 2568 +datetime2-spanish.source.r45785.tar.xz 28-Feb-2019 02:31 4824 +datetime2-spanish.source.tar.xz 28-Feb-2019 02:31 4824 +datetime2-spanish.tar.xz 28-Feb-2019 02:31 2568 +datetime2-swedish.doc.r36700.tar.xz 28-Feb-2019 02:31 83536 +datetime2-swedish.doc.tar.xz 28-Feb-2019 02:31 83536 +datetime2-swedish.r36700.tar.xz 28-Feb-2019 02:31 2564 +datetime2-swedish.source.r36700.tar.xz 28-Feb-2019 02:31 4812 +datetime2-swedish.source.tar.xz 28-Feb-2019 02:31 4812 +datetime2-swedish.tar.xz 28-Feb-2019 02:31 2564 +datetime2-turkish.doc.r52331.tar.xz 10-Oct-2019 23:54 71700 +datetime2-turkish.doc.tar.xz 10-Oct-2019 23:54 71700 +datetime2-turkish.r52331.tar.xz 10-Oct-2019 23:54 2480 +datetime2-turkish.source.r52331.tar.xz 10-Oct-2019 23:54 4648 +datetime2-turkish.source.tar.xz 10-Oct-2019 23:54 4648 +datetime2-turkish.tar.xz 10-Oct-2019 23:54 2480 +datetime2-ukrainian.doc.r47552.tar.xz 28-Feb-2019 02:31 62424 +datetime2-ukrainian.doc.tar.xz 28-Feb-2019 02:31 62424 +datetime2-ukrainian.r47552.tar.xz 28-Feb-2019 02:31 3340 +datetime2-ukrainian.source.r47552.tar.xz 28-Feb-2019 02:31 8016 +datetime2-ukrainian.source.tar.xz 28-Feb-2019 02:31 8016 +datetime2-ukrainian.tar.xz 28-Feb-2019 02:31 3340 +datetime2-usorbian.doc.r52375.tar.xz 13-Oct-2019 23:54 76044 +datetime2-usorbian.doc.tar.xz 13-Oct-2019 23:54 76044 +datetime2-usorbian.r52375.tar.xz 13-Oct-2019 23:54 2760 +datetime2-usorbian.source.r52375.tar.xz 13-Oct-2019 23:54 5048 +datetime2-usorbian.source.tar.xz 13-Oct-2019 23:54 5048 +datetime2-usorbian.tar.xz 13-Oct-2019 23:54 2760 +datetime2-welsh.doc.r52553.tar.xz 29-Oct-2019 00:54 286200 +datetime2-welsh.doc.tar.xz 29-Oct-2019 00:54 286200 +datetime2-welsh.r52553.tar.xz 29-Oct-2019 00:54 2580 +datetime2-welsh.source.r52553.tar.xz 29-Oct-2019 00:54 4868 +datetime2-welsh.source.tar.xz 29-Oct-2019 00:54 4868 +datetime2-welsh.tar.xz 29-Oct-2019 00:54 2580 +datetime2.doc.r63102.tar.xz 21-Apr-2022 23:52 1017512 +datetime2.doc.tar.xz 21-Apr-2022 23:52 1017512 +datetime2.r63102.tar.xz 21-Apr-2022 23:52 8852 +datetime2.source.r63102.tar.xz 21-Apr-2022 23:52 51632 +datetime2.source.tar.xz 21-Apr-2022 23:52 51632 +datetime2.tar.xz 21-Apr-2022 23:52 8852 +dblfloatfix.doc.r28983.tar.xz 28-Feb-2019 02:31 219612 +dblfloatfix.doc.tar.xz 28-Feb-2019 02:31 219612 +dblfloatfix.r28983.tar.xz 28-Feb-2019 02:31 2664 +dblfloatfix.tar.xz 28-Feb-2019 02:31 2664 +dbshow.doc.r61634.tar.xz 18-Jan-2022 01:05 590640 +dbshow.doc.tar.xz 18-Jan-2022 01:05 590640 +dbshow.r61634.tar.xz 18-Jan-2022 01:05 7092 +dbshow.source.r61634.tar.xz 18-Jan-2022 01:05 29152 +dbshow.source.tar.xz 18-Jan-2022 01:05 29152 +dbshow.tar.xz 18-Jan-2022 01:05 7092 +dccpaper.doc.r75491.tar.xz 13-Jun-2025 22:42 310944 +dccpaper.doc.tar.xz 13-Jun-2025 22:42 310944 +dccpaper.r75491.tar.xz 13-Jun-2025 22:42 25140 +dccpaper.source.r75491.tar.xz 13-Jun-2025 22:42 27296 +dccpaper.source.tar.xz 13-Jun-2025 22:42 27296 +dccpaper.tar.xz 13-Jun-2025 22:42 25140 +dcpic.doc.r30206.tar.xz 28-Feb-2019 02:31 927712 +dcpic.doc.tar.xz 28-Feb-2019 02:31 927712 +dcpic.r30206.tar.xz 28-Feb-2019 02:31 13996 +dcpic.tar.xz 28-Feb-2019 02:31 13996 +ddphonism.doc.r75201.tar.xz 13-May-2025 23:51 301644 +ddphonism.doc.tar.xz 13-May-2025 23:51 301644 +ddphonism.r75201.tar.xz 13-May-2025 23:51 2980 +ddphonism.tar.xz 13-May-2025 23:51 2980 +de-macro.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:31 340 +de-macro.aarch64-linux.tar.xz 28-Feb-2019 02:31 340 +de-macro.amd64-freebsd.r17399.tar.xz 28-Feb-2019 02:31 340 +de-macro.amd64-freebsd.tar.xz 28-Feb-2019 02:31 340 +de-macro.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:31 340 +de-macro.amd64-netbsd.tar.xz 28-Feb-2019 02:31 340 +de-macro.armhf-linux.r30015.tar.xz 28-Feb-2019 02:31 340 +de-macro.armhf-linux.tar.xz 28-Feb-2019 02:31 340 +de-macro.doc.r66746.tar.xz 02-Apr-2023 23:54 57104 +de-macro.doc.tar.xz 02-Apr-2023 23:54 57104 +de-macro.i386-freebsd.r17399.tar.xz 28-Feb-2019 02:31 340 +de-macro.i386-freebsd.tar.xz 28-Feb-2019 02:31 340 +de-macro.i386-linux.r17399.tar.xz 28-Feb-2019 02:31 340 +de-macro.i386-linux.tar.xz 28-Feb-2019 02:31 340 +de-macro.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:31 340 +de-macro.i386-netbsd.tar.xz 28-Feb-2019 02:31 340 +de-macro.i386-solaris.r17399.tar.xz 28-Feb-2019 02:31 340 +de-macro.i386-solaris.tar.xz 28-Feb-2019 02:31 340 +de-macro.r66746.tar.xz 02-Apr-2023 23:54 7940 +de-macro.tar.xz 02-Apr-2023 23:54 7940 +de-macro.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 336 +de-macro.universal-darwin.tar.xz 25-Feb-2021 18:16 336 +de-macro.windows.r65891.tar.xz 20-Feb-2023 22:11 2308 +de-macro.windows.tar.xz 20-Feb-2023 22:11 2308 +de-macro.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:31 340 +de-macro.x86_64-cygwin.tar.xz 28-Feb-2019 02:31 340 +de-macro.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:31 348 +de-macro.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:31 348 +de-macro.x86_64-linux.r17399.tar.xz 28-Feb-2019 02:31 340 +de-macro.x86_64-linux.tar.xz 28-Feb-2019 02:31 340 +de-macro.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:31 344 +de-macro.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:31 344 +de-macro.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:31 340 +de-macro.x86_64-solaris.tar.xz 28-Feb-2019 02:31 340 +debate.doc.r64846.tar.xz 29-Oct-2022 23:53 285712 +debate.doc.tar.xz 29-Oct-2022 23:53 285712 +debate.r64846.tar.xz 29-Oct-2022 23:53 1688 +debate.source.r64846.tar.xz 29-Oct-2022 23:53 3084 +debate.source.tar.xz 29-Oct-2022 23:53 3084 +debate.tar.xz 29-Oct-2022 23:53 1688 +decimal.doc.r23374.tar.xz 28-Feb-2019 02:31 155764 +decimal.doc.tar.xz 28-Feb-2019 02:31 155764 +decimal.r23374.tar.xz 28-Feb-2019 02:31 1420 +decimal.source.r23374.tar.xz 28-Feb-2019 02:31 6576 +decimal.source.tar.xz 28-Feb-2019 02:31 6576 +decimal.tar.xz 28-Feb-2019 02:31 1420 +decimalcomma.doc.r69251.tar.xz 01-Jan-2024 00:46 84848 +decimalcomma.doc.tar.xz 01-Jan-2024 00:46 84848 +decimalcomma.r69251.tar.xz 01-Jan-2024 00:46 1236 +decimalcomma.source.r69251.tar.xz 01-Jan-2024 00:46 4568 +decimalcomma.source.tar.xz 01-Jan-2024 00:46 4568 +decimalcomma.tar.xz 01-Jan-2024 00:46 1236 +decision-table.doc.r60673.tar.xz 01-Oct-2021 23:56 107624 +decision-table.doc.tar.xz 01-Oct-2021 23:56 107624 +decision-table.r60673.tar.xz 01-Oct-2021 23:56 2080 +decision-table.source.r60673.tar.xz 01-Oct-2021 23:56 5920 +decision-table.source.tar.xz 01-Oct-2021 23:56 5920 +decision-table.tar.xz 01-Oct-2021 23:56 2080 +decorule.doc.r55230.tar.xz 21-May-2020 22:11 397084 +decorule.doc.tar.xz 21-May-2020 22:11 397084 +decorule.r55230.tar.xz 21-May-2020 22:11 1476 +decorule.source.r55230.tar.xz 21-May-2020 22:11 17264 +decorule.source.tar.xz 21-May-2020 22:11 17264 +decorule.tar.xz 21-May-2020 22:11 1476 +defoldfonts.doc.r68234.tar.xz 10-Sep-2023 23:45 198572 +defoldfonts.doc.tar.xz 10-Sep-2023 23:45 198572 +defoldfonts.r68234.tar.xz 10-Sep-2023 23:45 1084 +defoldfonts.source.r68234.tar.xz 10-Sep-2023 23:45 3664 +defoldfonts.source.tar.xz 10-Sep-2023 23:45 3664 +defoldfonts.tar.xz 10-Sep-2023 23:45 1084 +dehyph-exptl.doc.r72949.tar.xz 24-Nov-2024 01:04 145680 +dehyph-exptl.doc.tar.xz 24-Nov-2024 01:04 145680 +dehyph-exptl.r72949.tar.xz 24-Nov-2024 01:04 134304 +dehyph-exptl.tar.xz 24-Nov-2024 01:04 134304 +dehyph.r48599.tar.xz 28-Feb-2019 02:31 46556 +dehyph.tar.xz 28-Feb-2019 02:31 46556 +dejavu-otf.doc.r75301.tar.xz 23-May-2025 23:46 337092 +dejavu-otf.doc.tar.xz 23-May-2025 23:46 337092 +dejavu-otf.r75301.tar.xz 23-May-2025 23:46 2312 +dejavu-otf.tar.xz 23-May-2025 23:46 2312 +dejavu.doc.r31771.tar.xz 28-Feb-2019 02:31 1085072 +dejavu.doc.tar.xz 28-Feb-2019 02:31 1085072 +dejavu.r31771.tar.xz 28-Feb-2019 02:31 10725240 +dejavu.tar.xz 28-Feb-2019 02:31 10725240 +delim.doc.r23974.tar.xz 28-Feb-2019 02:31 299600 +delim.doc.tar.xz 28-Feb-2019 02:31 299600 +delim.r23974.tar.xz 28-Feb-2019 02:31 1100 +delim.source.r23974.tar.xz 28-Feb-2019 02:31 3548 +delim.source.tar.xz 28-Feb-2019 02:31 3548 +delim.tar.xz 28-Feb-2019 02:31 1100 +delimseasy.doc.r39589.tar.xz 28-Feb-2019 02:31 233368 +delimseasy.doc.tar.xz 28-Feb-2019 02:31 233368 +delimseasy.r39589.tar.xz 28-Feb-2019 02:31 4816 +delimseasy.tar.xz 28-Feb-2019 02:31 4816 +delimset.doc.r74779.tar.xz 29-Mar-2025 00:50 344368 +delimset.doc.tar.xz 29-Mar-2025 00:50 344368 +delimset.r74779.tar.xz 29-Mar-2025 00:50 3408 +delimset.source.r74779.tar.xz 29-Mar-2025 00:50 17904 +delimset.source.tar.xz 29-Mar-2025 00:50 17904 +delimset.tar.xz 29-Mar-2025 00:50 3408 +delimtxt.doc.r16549.tar.xz 28-Feb-2019 02:31 44696 +delimtxt.doc.tar.xz 28-Feb-2019 02:31 44696 +delimtxt.r16549.tar.xz 28-Feb-2019 02:31 2040 +delimtxt.source.r16549.tar.xz 28-Feb-2019 02:31 3764 +delimtxt.source.tar.xz 28-Feb-2019 02:31 3764 +delimtxt.tar.xz 28-Feb-2019 02:31 2040 +democodetools.doc.r64314.tar.xz 07-Sep-2022 23:54 354068 +democodetools.doc.tar.xz 07-Sep-2022 23:54 354068 +democodetools.r64314.tar.xz 07-Sep-2022 23:54 7628 +democodetools.tar.xz 07-Sep-2022 23:54 7628 +denisbdoc.doc.r70592.tar.xz 12-Mar-2024 00:47 14732 +denisbdoc.doc.tar.xz 12-Mar-2024 00:47 14732 +denisbdoc.r70592.tar.xz 12-Mar-2024 00:47 15772 +denisbdoc.source.r70592.tar.xz 12-Mar-2024 00:47 22892 +denisbdoc.source.tar.xz 12-Mar-2024 00:47 22892 +denisbdoc.tar.xz 12-Mar-2024 00:47 15772 +derivative.doc.r69746.tar.xz 09-Feb-2024 00:44 223524 +derivative.doc.tar.xz 09-Feb-2024 00:44 223524 +derivative.r69746.tar.xz 09-Feb-2024 00:44 10424 +derivative.tar.xz 09-Feb-2024 00:44 10424 +detex.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 46888 +detex.aarch64-linux.tar.xz 13-Feb-2025 00:47 46888 +detex.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 45692 +detex.amd64-freebsd.tar.xz 09-Feb-2025 00:52 45692 +detex.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 44516 +detex.amd64-netbsd.tar.xz 09-Feb-2025 18:14 44516 +detex.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 46084 +detex.armhf-linux.tar.xz 09-Feb-2025 00:52 46084 +detex.doc.r70015.tar.xz 21-Feb-2024 00:45 22120 +detex.doc.tar.xz 21-Feb-2024 00:45 22120 +detex.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 45744 +detex.i386-freebsd.tar.xz 09-Feb-2025 00:52 45744 +detex.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 54460 +detex.i386-linux.tar.xz 09-Feb-2025 00:52 54460 +detex.i386-netbsd.r74618.tar.xz 15-Mar-2025 00:51 40712 +detex.i386-netbsd.tar.xz 15-Mar-2025 00:51 40712 +detex.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 48924 +detex.i386-solaris.tar.xz 09-Feb-2025 00:52 48924 +detex.r70015.tar.xz 21-Feb-2024 00:45 596 +detex.tar.xz 21-Feb-2024 00:45 596 +detex.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 86480 +detex.universal-darwin.tar.xz 09-Feb-2025 18:14 86480 +detex.windows.r73796.tar.xz 09-Feb-2025 18:14 18264 +detex.windows.tar.xz 09-Feb-2025 18:14 18264 +detex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 21372 +detex.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 21372 +detex.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 45968 +detex.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 45968 +detex.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 51380 +detex.x86_64-linux.tar.xz 19-Feb-2025 00:46 51380 +detex.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 52640 +detex.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 52640 +detex.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 55060 +detex.x86_64-solaris.tar.xz 09-Feb-2025 00:52 55060 +dhua.doc.r24035.tar.xz 28-Feb-2019 02:31 323640 +dhua.doc.tar.xz 28-Feb-2019 02:31 323640 +dhua.r24035.tar.xz 28-Feb-2019 02:31 4708 +dhua.source.r24035.tar.xz 28-Feb-2019 02:31 3096 +dhua.source.tar.xz 28-Feb-2019 02:31 3096 +dhua.tar.xz 28-Feb-2019 02:31 4708 +diabetes-logbook.doc.r54810.tar.xz 20-Apr-2020 23:55 280396 +diabetes-logbook.doc.tar.xz 20-Apr-2020 23:55 280396 +diabetes-logbook.r54810.tar.xz 20-Apr-2020 23:55 7032 +diabetes-logbook.tar.xz 20-Apr-2020 23:55 7032 +diadia.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:31 340 +diadia.aarch64-linux.tar.xz 28-Feb-2019 02:31 340 +diadia.amd64-freebsd.r37645.tar.xz 28-Feb-2019 02:31 340 +diadia.amd64-freebsd.tar.xz 28-Feb-2019 02:31 340 +diadia.amd64-netbsd.r37645.tar.xz 28-Feb-2019 02:31 340 +diadia.amd64-netbsd.tar.xz 28-Feb-2019 02:31 340 +diadia.armhf-linux.r37645.tar.xz 28-Feb-2019 02:31 336 +diadia.armhf-linux.tar.xz 28-Feb-2019 02:31 336 +diadia.doc.r37656.tar.xz 28-Feb-2019 02:31 452484 +diadia.doc.tar.xz 28-Feb-2019 02:31 452484 +diadia.i386-freebsd.r37645.tar.xz 28-Feb-2019 02:31 340 +diadia.i386-freebsd.tar.xz 28-Feb-2019 02:31 340 +diadia.i386-linux.r37645.tar.xz 28-Feb-2019 02:31 340 +diadia.i386-linux.tar.xz 28-Feb-2019 02:31 340 +diadia.i386-netbsd.r37645.tar.xz 28-Feb-2019 02:31 340 +diadia.i386-netbsd.tar.xz 28-Feb-2019 02:31 340 +diadia.i386-solaris.r37645.tar.xz 28-Feb-2019 02:31 340 +diadia.i386-solaris.tar.xz 28-Feb-2019 02:31 340 +diadia.r37656.tar.xz 28-Feb-2019 02:31 6364 +diadia.tar.xz 28-Feb-2019 02:31 6364 +diadia.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +diadia.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +diadia.windows.r65891.tar.xz 20-Feb-2023 22:11 2304 +diadia.windows.tar.xz 20-Feb-2023 22:11 2304 +diadia.x86_64-cygwin.r37645.tar.xz 28-Feb-2019 02:31 340 +diadia.x86_64-cygwin.tar.xz 28-Feb-2019 02:31 340 +diadia.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:31 348 +diadia.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:31 348 +diadia.x86_64-linux.r37645.tar.xz 28-Feb-2019 02:31 340 +diadia.x86_64-linux.tar.xz 28-Feb-2019 02:31 340 +diadia.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:31 344 +diadia.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:31 344 +diadia.x86_64-solaris.r37645.tar.xz 28-Feb-2019 02:31 340 +diadia.x86_64-solaris.tar.xz 28-Feb-2019 02:31 340 +diagbox.doc.r54080.tar.xz 04-Mar-2020 22:50 238496 +diagbox.doc.tar.xz 04-Mar-2020 22:50 238496 +diagbox.r54080.tar.xz 04-Mar-2020 22:50 3660 +diagbox.source.r54080.tar.xz 04-Mar-2020 22:50 12320 +diagbox.source.tar.xz 04-Mar-2020 22:50 12320 +diagbox.tar.xz 04-Mar-2020 22:50 3660 +diagmac2.doc.r15878.tar.xz 28-Feb-2019 02:31 208604 +diagmac2.doc.tar.xz 28-Feb-2019 02:31 208604 +diagmac2.r15878.tar.xz 28-Feb-2019 02:31 11188 +diagmac2.tar.xz 28-Feb-2019 02:31 11188 +diagnose.doc.r19387.tar.xz 28-Feb-2019 02:31 66784 +diagnose.doc.tar.xz 28-Feb-2019 02:31 66784 +diagnose.r19387.tar.xz 28-Feb-2019 02:31 1008 +diagnose.tar.xz 28-Feb-2019 02:31 1008 +dialogl.doc.r28946.tar.xz 28-Feb-2019 02:31 721964 +dialogl.doc.tar.xz 28-Feb-2019 02:31 721964 +dialogl.r28946.tar.xz 28-Feb-2019 02:31 21920 +dialogl.source.r28946.tar.xz 28-Feb-2019 02:31 59740 +dialogl.source.tar.xz 28-Feb-2019 02:31 59740 +dialogl.tar.xz 28-Feb-2019 02:31 21920 +dice.doc.r28501.tar.xz 28-Feb-2019 02:31 1236 +dice.doc.tar.xz 28-Feb-2019 02:31 1236 +dice.r28501.tar.xz 28-Feb-2019 02:31 3256 +dice.tar.xz 28-Feb-2019 02:31 3256 +dichokey.doc.r17192.tar.xz 28-Feb-2019 02:31 210124 +dichokey.doc.tar.xz 28-Feb-2019 02:31 210124 +dichokey.r17192.tar.xz 28-Feb-2019 02:31 1956 +dichokey.tar.xz 28-Feb-2019 02:31 1956 +dickimaw.doc.r32925.tar.xz 28-Feb-2019 02:31 6684412 +dickimaw.doc.tar.xz 28-Feb-2019 02:31 6684412 +dickimaw.r32925.tar.xz 28-Feb-2019 02:31 768 +dickimaw.tar.xz 28-Feb-2019 02:31 768 +dictsym.doc.r69720.tar.xz 07-Feb-2024 00:45 19788 +dictsym.doc.tar.xz 07-Feb-2024 00:45 19788 +dictsym.r69720.tar.xz 07-Feb-2024 00:45 31652 +dictsym.tar.xz 07-Feb-2024 00:45 31652 +didactic.doc.r70901.tar.xz 09-Apr-2024 23:46 268488 +didactic.doc.tar.xz 09-Apr-2024 23:46 268488 +didactic.r70901.tar.xz 09-Apr-2024 23:46 4612 +didactic.source.r70901.tar.xz 09-Apr-2024 23:46 11776 +didactic.source.tar.xz 09-Apr-2024 23:46 11776 +didactic.tar.xz 09-Apr-2024 23:46 4612 +didec.doc.r70229.tar.xz 29-Feb-2024 00:47 487352 +didec.doc.tar.xz 29-Feb-2024 00:47 487352 +didec.r70229.tar.xz 29-Feb-2024 00:47 4856 +didec.tar.xz 29-Feb-2024 00:47 4856 +diffcoeff.doc.r68838.tar.xz 15-Nov-2023 00:45 1346876 +diffcoeff.doc.tar.xz 15-Nov-2023 00:45 1346876 +diffcoeff.r68838.tar.xz 15-Nov-2023 00:45 11436 +diffcoeff.tar.xz 15-Nov-2023 00:45 11436 +digestif.aarch64-linux.r65210.tar.xz 06-Dec-2022 00:55 340 +digestif.aarch64-linux.tar.xz 06-Dec-2022 00:55 340 +digestif.amd64-freebsd.r65210.tar.xz 06-Dec-2022 00:55 344 +digestif.amd64-freebsd.tar.xz 06-Dec-2022 00:55 344 +digestif.amd64-netbsd.r65210.tar.xz 06-Dec-2022 00:55 344 +digestif.amd64-netbsd.tar.xz 06-Dec-2022 00:55 344 +digestif.armhf-linux.r65210.tar.xz 06-Dec-2022 00:55 344 +digestif.armhf-linux.tar.xz 06-Dec-2022 00:55 344 +digestif.doc.r72163.tar.xz 01-Sep-2024 23:48 5692 +digestif.doc.tar.xz 01-Sep-2024 23:48 5692 +digestif.i386-freebsd.r65210.tar.xz 06-Dec-2022 00:55 344 +digestif.i386-freebsd.tar.xz 06-Dec-2022 00:55 344 +digestif.i386-linux.r65210.tar.xz 06-Dec-2022 00:55 340 +digestif.i386-linux.tar.xz 06-Dec-2022 00:55 340 +digestif.i386-netbsd.r65210.tar.xz 06-Dec-2022 00:55 340 +digestif.i386-netbsd.tar.xz 06-Dec-2022 00:55 340 +digestif.i386-solaris.r65210.tar.xz 06-Dec-2022 00:55 340 +digestif.i386-solaris.tar.xz 06-Dec-2022 00:55 340 +digestif.r72163.tar.xz 01-Sep-2024 23:48 641484 +digestif.tar.xz 01-Sep-2024 23:48 641484 +digestif.universal-darwin.r65210.tar.xz 06-Dec-2022 00:55 344 +digestif.universal-darwin.tar.xz 06-Dec-2022 00:55 344 +digestif.windows.r65891.tar.xz 20-Feb-2023 22:11 2304 +digestif.windows.tar.xz 20-Feb-2023 22:11 2304 +digestif.x86_64-cygwin.r65210.tar.xz 06-Dec-2022 00:55 344 +digestif.x86_64-cygwin.tar.xz 06-Dec-2022 00:55 344 +digestif.x86_64-darwinlegacy.r65210.tar.xz 06-Dec-2022 00:55 352 +digestif.x86_64-darwinlegacy.tar.xz 06-Dec-2022 00:55 352 +digestif.x86_64-linux.r65210.tar.xz 06-Dec-2022 00:55 344 +digestif.x86_64-linux.tar.xz 06-Dec-2022 00:55 344 +digestif.x86_64-linuxmusl.r65210.tar.xz 06-Dec-2022 00:55 348 +digestif.x86_64-linuxmusl.tar.xz 06-Dec-2022 00:55 348 +digestif.x86_64-solaris.r65210.tar.xz 06-Dec-2022 00:55 340 +digestif.x86_64-solaris.tar.xz 06-Dec-2022 00:55 340 +digiconfigs.doc.r15878.tar.xz 28-Feb-2019 02:31 120640 +digiconfigs.doc.tar.xz 28-Feb-2019 02:31 120640 +digiconfigs.r15878.tar.xz 28-Feb-2019 02:31 2096 +digiconfigs.tar.xz 28-Feb-2019 02:31 2096 +dijkstra.doc.r64580.tar.xz 02-Oct-2022 23:56 160036 +dijkstra.doc.tar.xz 02-Oct-2022 23:56 160036 +dijkstra.r64580.tar.xz 02-Oct-2022 23:56 5116 +dijkstra.tar.xz 02-Oct-2022 23:56 5116 +dimnum.doc.r58774.tar.xz 06-Apr-2021 23:51 207688 +dimnum.doc.tar.xz 06-Apr-2021 23:51 207688 +dimnum.r58774.tar.xz 06-Apr-2021 23:51 2508 +dimnum.source.r58774.tar.xz 06-Apr-2021 23:51 5224 +dimnum.source.tar.xz 06-Apr-2021 23:51 5224 +dimnum.tar.xz 06-Apr-2021 23:51 2508 +din1505.doc.r19441.tar.xz 28-Feb-2019 02:31 2380 +din1505.doc.tar.xz 28-Feb-2019 02:31 2380 +din1505.r19441.tar.xz 28-Feb-2019 02:31 16420 +din1505.tar.xz 28-Feb-2019 02:31 16420 +dinat.doc.r15878.tar.xz 28-Feb-2019 02:31 11468 +dinat.doc.tar.xz 28-Feb-2019 02:31 11468 +dinat.r15878.tar.xz 28-Feb-2019 02:31 8828 +dinat.tar.xz 28-Feb-2019 02:31 8828 +dinbrief.doc.r15878.tar.xz 28-Feb-2019 02:32 436584 +dinbrief.doc.tar.xz 28-Feb-2019 02:32 436584 +dinbrief.r15878.tar.xz 28-Feb-2019 02:32 12616 +dinbrief.source.r15878.tar.xz 28-Feb-2019 02:31 56276 +dinbrief.source.tar.xz 28-Feb-2019 02:31 56276 +dinbrief.tar.xz 28-Feb-2019 02:32 12616 +dingbat.doc.r27918.tar.xz 28-Feb-2019 02:32 105752 +dingbat.doc.tar.xz 28-Feb-2019 02:32 105752 +dingbat.r27918.tar.xz 28-Feb-2019 02:32 9248 +dingbat.source.r27918.tar.xz 28-Feb-2019 02:32 3772 +dingbat.source.tar.xz 28-Feb-2019 02:32 3772 +dingbat.tar.xz 28-Feb-2019 02:32 9248 +directory.doc.r15878.tar.xz 28-Feb-2019 02:32 167348 +directory.doc.tar.xz 28-Feb-2019 02:32 167348 +directory.r15878.tar.xz 28-Feb-2019 02:32 11760 +directory.tar.xz 28-Feb-2019 02:32 11760 +dirtree.doc.r42428.tar.xz 28-Feb-2019 02:32 100148 +dirtree.doc.tar.xz 28-Feb-2019 02:32 100148 +dirtree.r42428.tar.xz 28-Feb-2019 02:32 2484 +dirtree.source.r42428.tar.xz 28-Feb-2019 02:32 7780 +dirtree.source.tar.xz 28-Feb-2019 02:32 7780 +dirtree.tar.xz 28-Feb-2019 02:32 2484 +dirtytalk.doc.r20520.tar.xz 28-Feb-2019 02:32 393132 +dirtytalk.doc.tar.xz 28-Feb-2019 02:32 393132 +dirtytalk.r20520.tar.xz 28-Feb-2019 02:32 1168 +dirtytalk.source.r20520.tar.xz 28-Feb-2019 02:32 3564 +dirtytalk.source.tar.xz 28-Feb-2019 02:32 3564 +dirtytalk.tar.xz 28-Feb-2019 02:32 1168 +disser.doc.r43417.tar.xz 28-Feb-2019 02:32 41680 +disser.doc.tar.xz 28-Feb-2019 02:32 41680 +disser.r43417.tar.xz 28-Feb-2019 02:32 13032 +disser.source.r43417.tar.xz 28-Feb-2019 02:32 25344 +disser.source.tar.xz 28-Feb-2019 02:32 25344 +disser.tar.xz 28-Feb-2019 02:32 13032 +ditaa.doc.r48932.tar.xz 28-Feb-2019 02:32 105808 +ditaa.doc.tar.xz 28-Feb-2019 02:32 105808 +ditaa.r48932.tar.xz 28-Feb-2019 02:32 1184 +ditaa.tar.xz 28-Feb-2019 02:32 1184 +dithesis.doc.r34295.tar.xz 28-Feb-2019 02:32 184556 +dithesis.doc.tar.xz 28-Feb-2019 02:32 184556 +dithesis.r34295.tar.xz 28-Feb-2019 02:32 5580 +dithesis.tar.xz 28-Feb-2019 02:32 5580 +dk-bib.doc.r15878.tar.xz 28-Feb-2019 02:32 404476 +dk-bib.doc.tar.xz 28-Feb-2019 02:32 404476 +dk-bib.r15878.tar.xz 28-Feb-2019 02:32 13636 +dk-bib.source.r15878.tar.xz 28-Feb-2019 02:32 1300 +dk-bib.source.tar.xz 28-Feb-2019 02:32 1300 +dk-bib.tar.xz 28-Feb-2019 02:32 13636 +dlfltxb.doc.r17337.tar.xz 28-Feb-2019 02:32 694612 +dlfltxb.doc.tar.xz 28-Feb-2019 02:32 694612 +dlfltxb.r17337.tar.xz 28-Feb-2019 02:32 21700 +dlfltxb.tar.xz 28-Feb-2019 02:32 21700 +dlrg-templates.doc.r74633.tar.xz 16-Mar-2025 01:10 644104 +dlrg-templates.doc.tar.xz 16-Mar-2025 01:10 644104 +dlrg-templates.r74633.tar.xz 16-Mar-2025 01:10 56900 +dlrg-templates.tar.xz 16-Mar-2025 01:10 56900 +dnaseq.doc.r17194.tar.xz 28-Feb-2019 02:32 209036 +dnaseq.doc.tar.xz 28-Feb-2019 02:32 209036 +dnaseq.r17194.tar.xz 28-Feb-2019 02:32 1780 +dnaseq.source.r17194.tar.xz 28-Feb-2019 02:32 2500 +dnaseq.source.tar.xz 28-Feb-2019 02:32 2500 +dnaseq.tar.xz 28-Feb-2019 02:32 1780 +dnp.r54074.tar.xz 04-Mar-2020 22:50 856 +dnp.tar.xz 04-Mar-2020 22:50 856 +doc-pictex.doc.r24927.tar.xz 28-Feb-2019 02:32 1508 +doc-pictex.doc.tar.xz 28-Feb-2019 02:32 1508 +doc-pictex.r24927.tar.xz 28-Feb-2019 02:32 468 +doc-pictex.tar.xz 28-Feb-2019 02:32 468 +docbytex.doc.r34294.tar.xz 28-Feb-2019 02:32 1318672 +docbytex.doc.tar.xz 28-Feb-2019 02:32 1318672 +docbytex.r34294.tar.xz 28-Feb-2019 02:32 11140 +docbytex.tar.xz 28-Feb-2019 02:32 11140 +doclicense.doc.r68441.tar.xz 02-Oct-2023 23:45 230024 +doclicense.doc.tar.xz 02-Oct-2023 23:45 230024 +doclicense.r68441.tar.xz 02-Oct-2023 23:45 236964 +doclicense.source.r68441.tar.xz 02-Oct-2023 23:45 13588 +doclicense.source.tar.xz 02-Oct-2023 23:45 13588 +doclicense.tar.xz 02-Oct-2023 23:45 236964 +docmfp.doc.r15878.tar.xz 28-Feb-2019 02:32 148172 +docmfp.doc.tar.xz 28-Feb-2019 02:32 148172 +docmfp.r15878.tar.xz 28-Feb-2019 02:32 1956 +docmfp.source.r15878.tar.xz 28-Feb-2019 02:32 7932 +docmfp.source.tar.xz 28-Feb-2019 02:32 7932 +docmfp.tar.xz 28-Feb-2019 02:32 1956 +docmute.doc.r75878.tar.xz 23-Jul-2025 23:50 148460 +docmute.doc.tar.xz 23-Jul-2025 23:50 148460 +docmute.r75878.tar.xz 23-Jul-2025 23:50 872 +docmute.source.r75878.tar.xz 23-Jul-2025 23:50 3156 +docmute.source.tar.xz 23-Jul-2025 23:50 3156 +docmute.tar.xz 23-Jul-2025 23:50 872 +docshots.doc.r69676.tar.xz 03-Feb-2024 00:45 338416 +docshots.doc.tar.xz 03-Feb-2024 00:45 338416 +docshots.r69676.tar.xz 03-Feb-2024 00:45 2804 +docshots.source.r69676.tar.xz 03-Feb-2024 00:45 7264 +docshots.source.tar.xz 03-Feb-2024 00:45 7264 +docshots.tar.xz 03-Feb-2024 00:45 2804 +docsurvey.doc.r70729.tar.xz 24-Mar-2024 00:56 284376 +docsurvey.doc.tar.xz 24-Mar-2024 00:56 284376 +docsurvey.r70729.tar.xz 24-Mar-2024 00:56 556 +docsurvey.tar.xz 24-Mar-2024 00:56 556 +doctools.doc.r34474.tar.xz 28-Feb-2019 02:32 603152 +doctools.doc.tar.xz 28-Feb-2019 02:32 603152 +doctools.r34474.tar.xz 28-Feb-2019 02:32 5852 +doctools.source.r34474.tar.xz 28-Feb-2019 02:32 11196 +doctools.source.tar.xz 28-Feb-2019 02:32 11196 +doctools.tar.xz 28-Feb-2019 02:32 5852 +documentation.doc.r34521.tar.xz 28-Feb-2019 02:32 87916 +documentation.doc.tar.xz 28-Feb-2019 02:32 87916 +documentation.r34521.tar.xz 28-Feb-2019 02:32 1944 +documentation.source.r34521.tar.xz 28-Feb-2019 02:32 6436 +documentation.source.tar.xz 28-Feb-2019 02:32 6436 +documentation.tar.xz 28-Feb-2019 02:32 1944 +docutils.doc.r56594.tar.xz 07-Oct-2020 23:55 8064 +docutils.doc.tar.xz 07-Oct-2020 23:55 8064 +docutils.r56594.tar.xz 07-Oct-2020 23:55 2556 +docutils.tar.xz 07-Oct-2020 23:55 2556 +doi.doc.r48634.tar.xz 28-Feb-2019 02:32 1024 +doi.doc.tar.xz 28-Feb-2019 02:32 1024 +doi.r48634.tar.xz 28-Feb-2019 02:32 2152 +doi.tar.xz 28-Feb-2019 02:32 2152 +doibanner.doc.r71919.tar.xz 28-Jul-2024 23:46 290792 +doibanner.doc.tar.xz 28-Jul-2024 23:46 290792 +doibanner.r71919.tar.xz 28-Jul-2024 23:46 1484 +doibanner.source.r71919.tar.xz 28-Jul-2024 23:46 4824 +doibanner.source.tar.xz 28-Jul-2024 23:46 4824 +doibanner.tar.xz 28-Jul-2024 23:46 1484 +doipubmed.doc.r15878.tar.xz 28-Feb-2019 02:32 74000 +doipubmed.doc.tar.xz 28-Feb-2019 02:32 74000 +doipubmed.r15878.tar.xz 28-Feb-2019 02:32 1932 +doipubmed.source.r15878.tar.xz 28-Feb-2019 02:32 4020 +doipubmed.source.tar.xz 28-Feb-2019 02:32 4020 +doipubmed.tar.xz 28-Feb-2019 02:32 1932 +domaincoloring.doc.r72176.tar.xz 02-Sep-2024 23:48 4357968 +domaincoloring.doc.tar.xz 02-Sep-2024 23:48 4357968 +domaincoloring.r72176.tar.xz 02-Sep-2024 23:48 8304 +domaincoloring.tar.xz 02-Sep-2024 23:48 8304 +domitian.doc.r55286.tar.xz 26-May-2020 22:05 63244 +domitian.doc.tar.xz 26-May-2020 22:05 63244 +domitian.r55286.tar.xz 26-May-2020 22:05 1376968 +domitian.tar.xz 26-May-2020 22:05 1376968 +dosepsbin.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.aarch64-linux.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.amd64-freebsd.r24759.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.amd64-freebsd.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.amd64-netbsd.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.armhf-linux.r30015.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.armhf-linux.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.doc.r29752.tar.xz 28-Feb-2019 02:32 57052 +dosepsbin.doc.tar.xz 28-Feb-2019 02:32 57052 +dosepsbin.i386-freebsd.r24759.tar.xz 28-Feb-2019 02:32 344 +dosepsbin.i386-freebsd.tar.xz 28-Feb-2019 02:32 344 +dosepsbin.i386-linux.r24759.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.i386-linux.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.i386-netbsd.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.i386-solaris.r24759.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.i386-solaris.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.r29752.tar.xz 28-Feb-2019 02:32 4136 +dosepsbin.source.r29752.tar.xz 28-Feb-2019 02:32 19036 +dosepsbin.source.tar.xz 28-Feb-2019 02:32 19036 +dosepsbin.tar.xz 28-Feb-2019 02:32 4136 +dosepsbin.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +dosepsbin.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +dosepsbin.windows.r65891.tar.xz 20-Feb-2023 22:11 2300 +dosepsbin.windows.tar.xz 20-Feb-2023 22:11 2300 +dosepsbin.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.x86_64-cygwin.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:32 348 +dosepsbin.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:32 348 +dosepsbin.x86_64-linux.r24759.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.x86_64-linux.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:32 344 +dosepsbin.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:32 344 +dosepsbin.x86_64-solaris.r24759.tar.xz 28-Feb-2019 02:32 340 +dosepsbin.x86_64-solaris.tar.xz 28-Feb-2019 02:32 340 +dot2texi.doc.r26237.tar.xz 28-Feb-2019 02:32 216576 +dot2texi.doc.tar.xz 28-Feb-2019 02:32 216576 +dot2texi.r26237.tar.xz 28-Feb-2019 02:32 3740 +dot2texi.tar.xz 28-Feb-2019 02:32 3740 +dotarrow.doc.r15878.tar.xz 28-Feb-2019 02:32 75524 +dotarrow.doc.tar.xz 28-Feb-2019 02:32 75524 +dotarrow.r15878.tar.xz 28-Feb-2019 02:32 1592 +dotarrow.source.r15878.tar.xz 28-Feb-2019 02:32 2828 +dotarrow.source.tar.xz 28-Feb-2019 02:32 2828 +dotarrow.tar.xz 28-Feb-2019 02:32 1592 +dotlessi.doc.r51476.tar.xz 26-Jun-2019 23:54 676 +dotlessi.doc.tar.xz 26-Jun-2019 23:54 676 +dotlessi.r51476.tar.xz 26-Jun-2019 23:54 1832 +dotlessi.tar.xz 26-Jun-2019 23:54 1832 +dotseqn.doc.r17195.tar.xz 28-Feb-2019 02:32 131816 +dotseqn.doc.tar.xz 28-Feb-2019 02:32 131816 +dotseqn.r17195.tar.xz 28-Feb-2019 02:32 1856 +dotseqn.source.r17195.tar.xz 28-Feb-2019 02:32 5480 +dotseqn.source.tar.xz 28-Feb-2019 02:32 5480 +dotseqn.tar.xz 28-Feb-2019 02:32 1856 +dottex.doc.r15878.tar.xz 28-Feb-2019 02:32 88372 +dottex.doc.tar.xz 28-Feb-2019 02:32 88372 +dottex.r15878.tar.xz 28-Feb-2019 02:32 2596 +dottex.source.r15878.tar.xz 28-Feb-2019 02:32 4668 +dottex.source.tar.xz 28-Feb-2019 02:32 4668 +dottex.tar.xz 28-Feb-2019 02:32 2596 +doublestroke.doc.r15878.tar.xz 28-Feb-2019 02:32 94088 +doublestroke.doc.tar.xz 28-Feb-2019 02:32 94088 +doublestroke.r15878.tar.xz 28-Feb-2019 02:32 67024 +doublestroke.tar.xz 28-Feb-2019 02:32 67024 +doulossil.doc.r63255.tar.xz 07-May-2022 23:54 60428 +doulossil.doc.tar.xz 07-May-2022 23:54 60428 +doulossil.r63255.tar.xz 07-May-2022 23:54 404852 +doulossil.tar.xz 07-May-2022 23:54 404852 +dowith.doc.r38860.tar.xz 28-Feb-2019 02:32 1179736 +dowith.doc.tar.xz 28-Feb-2019 02:32 1179736 +dowith.r38860.tar.xz 28-Feb-2019 02:32 6600 +dowith.source.r38860.tar.xz 28-Feb-2019 02:32 21140 +dowith.source.tar.xz 28-Feb-2019 02:32 21140 +dowith.tar.xz 28-Feb-2019 02:32 6600 +download.doc.r52257.tar.xz 02-Oct-2019 23:55 261712 +download.doc.tar.xz 02-Oct-2019 23:55 261712 +download.r52257.tar.xz 02-Oct-2019 23:55 2004 +download.source.r52257.tar.xz 02-Oct-2019 23:55 5564 +download.source.tar.xz 02-Oct-2019 23:55 5564 +download.tar.xz 02-Oct-2019 23:55 2004 +dox.doc.r46011.tar.xz 28-Feb-2019 02:32 131676 +dox.doc.tar.xz 28-Feb-2019 02:32 131676 +dox.r46011.tar.xz 28-Feb-2019 02:32 2764 +dox.source.r46011.tar.xz 28-Feb-2019 02:32 8456 +dox.source.tar.xz 28-Feb-2019 02:32 8456 +dox.tar.xz 28-Feb-2019 02:32 2764 +dozenal.doc.r75722.tar.xz 08-Jul-2025 23:49 311064 +dozenal.doc.tar.xz 08-Jul-2025 23:49 311064 +dozenal.r75722.tar.xz 08-Jul-2025 23:49 101796 +dozenal.source.r75722.tar.xz 08-Jul-2025 23:49 12060 +dozenal.source.tar.xz 08-Jul-2025 23:49 12060 +dozenal.tar.xz 08-Jul-2025 23:49 101796 +dpcircling.doc.r54994.tar.xz 03-May-2020 22:14 30880 +dpcircling.doc.tar.xz 03-May-2020 22:14 30880 +dpcircling.r54994.tar.xz 03-May-2020 22:14 2508 +dpcircling.tar.xz 03-May-2020 22:14 2508 +dpfloat.doc.r17196.tar.xz 28-Feb-2019 02:32 194820 +dpfloat.doc.tar.xz 28-Feb-2019 02:32 194820 +dpfloat.r17196.tar.xz 28-Feb-2019 02:32 1888 +dpfloat.tar.xz 28-Feb-2019 02:32 1888 +dprogress.doc.r15878.tar.xz 28-Feb-2019 02:32 63844 +dprogress.doc.tar.xz 28-Feb-2019 02:32 63844 +dprogress.r15878.tar.xz 28-Feb-2019 02:32 1568 +dprogress.source.r15878.tar.xz 28-Feb-2019 02:32 2744 +dprogress.source.tar.xz 28-Feb-2019 02:32 2744 +dprogress.tar.xz 28-Feb-2019 02:32 1568 +drac.doc.r15878.tar.xz 28-Feb-2019 02:32 588784 +drac.doc.tar.xz 28-Feb-2019 02:32 588784 +drac.r15878.tar.xz 28-Feb-2019 02:32 1368 +drac.source.r15878.tar.xz 28-Feb-2019 02:32 10284 +drac.source.tar.xz 28-Feb-2019 02:32 10284 +drac.tar.xz 28-Feb-2019 02:32 1368 +draftcopy.doc.r15878.tar.xz 28-Feb-2019 02:32 122724 +draftcopy.doc.tar.xz 28-Feb-2019 02:32 122724 +draftcopy.r15878.tar.xz 28-Feb-2019 02:32 4252 +draftcopy.source.r15878.tar.xz 28-Feb-2019 02:32 3072 +draftcopy.source.tar.xz 28-Feb-2019 02:32 3072 +draftcopy.tar.xz 28-Feb-2019 02:32 4252 +draftfigure.doc.r44854.tar.xz 28-Feb-2019 02:32 163348 +draftfigure.doc.tar.xz 28-Feb-2019 02:32 163348 +draftfigure.r44854.tar.xz 28-Feb-2019 02:32 1828 +draftfigure.tar.xz 28-Feb-2019 02:32 1828 +draftwatermark.doc.r70393.tar.xz 05-Mar-2024 00:46 153040 +draftwatermark.doc.tar.xz 05-Mar-2024 00:46 153040 +draftwatermark.r70393.tar.xz 05-Mar-2024 00:46 2848 +draftwatermark.source.r70393.tar.xz 05-Mar-2024 00:46 12752 +draftwatermark.source.tar.xz 05-Mar-2024 00:46 12752 +draftwatermark.tar.xz 05-Mar-2024 00:46 2848 +dramatist.doc.r35866.tar.xz 28-Feb-2019 02:32 416040 +dramatist.doc.tar.xz 28-Feb-2019 02:32 416040 +dramatist.r35866.tar.xz 28-Feb-2019 02:32 3968 +dramatist.source.r35866.tar.xz 28-Feb-2019 02:32 34464 +dramatist.source.tar.xz 28-Feb-2019 02:32 34464 +dramatist.tar.xz 28-Feb-2019 02:32 3968 +dratex.doc.r15878.tar.xz 28-Feb-2019 02:32 12052 +dratex.doc.tar.xz 28-Feb-2019 02:32 12052 +dratex.r15878.tar.xz 28-Feb-2019 02:32 45280 +dratex.tar.xz 28-Feb-2019 02:32 45280 +drawing-with-metapost.doc.r72705.tar.xz 31-Oct-2024 00:46 16397872 +drawing-with-metapost.doc.tar.xz 31-Oct-2024 00:46 16397872 +drawing-with-metapost.r72705.tar.xz 31-Oct-2024 00:46 576 +drawing-with-metapost.tar.xz 31-Oct-2024 00:46 576 +drawmatrix.doc.r44471.tar.xz 28-Feb-2019 02:32 313708 +drawmatrix.doc.tar.xz 28-Feb-2019 02:32 313708 +drawmatrix.r44471.tar.xz 28-Feb-2019 02:32 2456 +drawmatrix.source.r44471.tar.xz 28-Feb-2019 02:32 5136 +drawmatrix.source.tar.xz 28-Feb-2019 02:32 5136 +drawmatrix.tar.xz 28-Feb-2019 02:32 2456 +drawstack.doc.r28582.tar.xz 28-Feb-2019 02:32 104944 +drawstack.doc.tar.xz 28-Feb-2019 02:32 104944 +drawstack.r28582.tar.xz 28-Feb-2019 02:32 2256 +drawstack.tar.xz 28-Feb-2019 02:32 2256 +drm.doc.r38157.tar.xz 28-Feb-2019 02:32 2979440 +drm.doc.tar.xz 28-Feb-2019 02:32 2979440 +drm.r38157.tar.xz 28-Feb-2019 02:32 13063116 +drm.source.r38157.tar.xz 28-Feb-2019 02:32 37304 +drm.source.tar.xz 28-Feb-2019 02:32 37304 +drm.tar.xz 28-Feb-2019 02:32 13063116 +droid.doc.r54512.tar.xz 24-Mar-2020 00:57 691976 +droid.doc.tar.xz 24-Mar-2020 00:57 691976 +droid.r54512.tar.xz 24-Mar-2020 00:57 3195452 +droid.tar.xz 24-Mar-2020 00:57 3195452 +droit-fr.doc.r39802.tar.xz 28-Feb-2019 02:32 279420 +droit-fr.doc.tar.xz 28-Feb-2019 02:32 279420 +droit-fr.r39802.tar.xz 28-Feb-2019 02:32 9772 +droit-fr.tar.xz 28-Feb-2019 02:32 9772 +drs.doc.r19232.tar.xz 28-Feb-2019 02:32 99960 +drs.doc.tar.xz 28-Feb-2019 02:32 99960 +drs.r19232.tar.xz 28-Feb-2019 02:32 4560 +drs.tar.xz 28-Feb-2019 02:32 4560 +drv.doc.r29349.tar.xz 28-Feb-2019 02:32 202676 +drv.doc.tar.xz 28-Feb-2019 02:32 202676 +drv.r29349.tar.xz 28-Feb-2019 02:32 16468 +drv.tar.xz 28-Feb-2019 02:32 16468 +dsptricks.doc.r68753.tar.xz 10-Nov-2023 00:45 187996 +dsptricks.doc.tar.xz 10-Nov-2023 00:45 187996 +dsptricks.r68753.tar.xz 10-Nov-2023 00:45 11964 +dsptricks.tar.xz 10-Nov-2023 00:45 11964 +dsserif.doc.r60898.tar.xz 30-Oct-2021 23:55 281156 +dsserif.doc.tar.xz 30-Oct-2021 23:55 281156 +dsserif.r60898.tar.xz 30-Oct-2021 23:55 90204 +dsserif.source.r60898.tar.xz 30-Oct-2021 23:55 1000 +dsserif.source.tar.xz 30-Oct-2021 23:55 1000 +dsserif.tar.xz 30-Oct-2021 23:55 90204 +dtk-bibliography.doc.r76231.tar.xz 04-Sep-2025 23:50 380952 +dtk-bibliography.doc.tar.xz 04-Sep-2025 23:50 380952 +dtk-bibliography.r76231.tar.xz 04-Sep-2025 23:50 55672 +dtk-bibliography.tar.xz 04-Sep-2025 23:50 55672 +dtk.doc.r71776.tar.xz 11-Jul-2024 23:47 83424 +dtk.doc.tar.xz 11-Jul-2024 23:47 83424 +dtk.r71776.tar.xz 11-Jul-2024 23:47 14728 +dtk.tar.xz 11-Jul-2024 23:47 14728 +dtl.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 20560 +dtl.aarch64-linux.tar.xz 13-Feb-2025 00:47 20560 +dtl.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 19964 +dtl.amd64-freebsd.tar.xz 09-Feb-2025 00:52 19964 +dtl.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 19412 +dtl.amd64-netbsd.tar.xz 09-Feb-2025 18:14 19412 +dtl.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 18236 +dtl.armhf-linux.tar.xz 09-Feb-2025 00:52 18236 +dtl.doc.r62387.tar.xz 04-Mar-2022 23:11 53504 +dtl.doc.tar.xz 04-Mar-2022 23:11 53504 +dtl.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 19968 +dtl.i386-freebsd.tar.xz 09-Feb-2025 00:52 19968 +dtl.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 23152 +dtl.i386-linux.tar.xz 09-Feb-2025 00:52 23152 +dtl.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 18120 +dtl.i386-netbsd.tar.xz 09-Feb-2025 18:14 18120 +dtl.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 20968 +dtl.i386-solaris.tar.xz 09-Feb-2025 00:52 20968 +dtl.r62387.tar.xz 04-Mar-2022 23:11 556 +dtl.tar.xz 04-Mar-2022 23:11 556 +dtl.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 45860 +dtl.universal-darwin.tar.xz 09-Feb-2025 18:14 45860 +dtl.windows.r73796.tar.xz 09-Feb-2025 18:14 17404 +dtl.windows.tar.xz 09-Feb-2025 18:14 17404 +dtl.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 17420 +dtl.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 17420 +dtl.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 20084 +dtl.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 20084 +dtl.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 22064 +dtl.x86_64-linux.tar.xz 19-Feb-2025 00:46 22064 +dtl.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 22512 +dtl.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 22512 +dtl.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 24176 +dtl.x86_64-solaris.tar.xz 09-Feb-2025 00:52 24176 +dtxdescribe.doc.r69507.tar.xz 21-Jan-2024 00:51 460796 +dtxdescribe.doc.tar.xz 21-Jan-2024 00:51 460796 +dtxdescribe.r69507.tar.xz 21-Jan-2024 00:51 7976 +dtxdescribe.source.r69507.tar.xz 21-Jan-2024 00:51 24288 +dtxdescribe.source.tar.xz 21-Jan-2024 00:51 24288 +dtxdescribe.tar.xz 21-Jan-2024 00:51 7976 +dtxgallery.doc.r49504.tar.xz 28-Feb-2019 02:33 352664 +dtxgallery.doc.tar.xz 28-Feb-2019 02:33 352664 +dtxgallery.r49504.tar.xz 28-Feb-2019 02:33 580 +dtxgallery.tar.xz 28-Feb-2019 02:33 580 +dtxgen.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:33 340 +dtxgen.aarch64-linux.tar.xz 28-Feb-2019 02:33 340 +dtxgen.amd64-freebsd.r29031.tar.xz 28-Feb-2019 02:33 340 +dtxgen.amd64-freebsd.tar.xz 28-Feb-2019 02:33 340 +dtxgen.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:33 336 +dtxgen.amd64-netbsd.tar.xz 28-Feb-2019 02:33 336 +dtxgen.armhf-linux.r30015.tar.xz 28-Feb-2019 02:33 336 +dtxgen.armhf-linux.tar.xz 28-Feb-2019 02:33 336 +dtxgen.doc.r75946.tar.xz 01-Aug-2025 23:45 75352 +dtxgen.doc.tar.xz 01-Aug-2025 23:45 75352 +dtxgen.i386-freebsd.r29031.tar.xz 28-Feb-2019 02:33 340 +dtxgen.i386-freebsd.tar.xz 28-Feb-2019 02:33 340 +dtxgen.i386-linux.r29031.tar.xz 28-Feb-2019 02:33 336 +dtxgen.i386-linux.tar.xz 28-Feb-2019 02:33 336 +dtxgen.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:33 336 +dtxgen.i386-netbsd.tar.xz 28-Feb-2019 02:33 336 +dtxgen.i386-solaris.r29031.tar.xz 28-Feb-2019 02:33 336 +dtxgen.i386-solaris.tar.xz 28-Feb-2019 02:33 336 +dtxgen.r75946.tar.xz 01-Aug-2025 23:45 7292 +dtxgen.tar.xz 01-Aug-2025 23:45 7292 +dtxgen.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 336 +dtxgen.universal-darwin.tar.xz 25-Feb-2021 18:16 336 +dtxgen.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:33 340 +dtxgen.x86_64-cygwin.tar.xz 28-Feb-2019 02:33 340 +dtxgen.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:33 348 +dtxgen.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:33 348 +dtxgen.x86_64-linux.r29031.tar.xz 28-Feb-2019 02:33 336 +dtxgen.x86_64-linux.tar.xz 28-Feb-2019 02:33 336 +dtxgen.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:33 340 +dtxgen.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:33 340 +dtxgen.x86_64-solaris.r29031.tar.xz 28-Feb-2019 02:33 340 +dtxgen.x86_64-solaris.tar.xz 28-Feb-2019 02:33 340 +dtxtut.doc.r69587.tar.xz 26-Jan-2024 00:44 351652 +dtxtut.doc.tar.xz 26-Jan-2024 00:44 351652 +dtxtut.r69587.tar.xz 26-Jan-2024 00:44 464 +dtxtut.tar.xz 26-Jan-2024 00:44 464 +ducksay.doc.r70816.tar.xz 31-Mar-2024 00:53 530476 +ducksay.doc.tar.xz 31-Mar-2024 00:53 530476 +ducksay.r70816.tar.xz 31-Mar-2024 00:53 9564 +ducksay.source.r70816.tar.xz 31-Mar-2024 00:53 20984 +ducksay.source.tar.xz 31-Mar-2024 00:53 20984 +ducksay.tar.xz 31-Mar-2024 00:53 9564 +duckuments.doc.r52271.tar.xz 03-Oct-2019 23:54 495140 +duckuments.doc.tar.xz 03-Oct-2019 23:54 495140 +duckuments.r52271.tar.xz 03-Oct-2019 23:54 484476 +duckuments.source.r52271.tar.xz 03-Oct-2019 23:54 9108 +duckuments.source.tar.xz 03-Oct-2019 23:54 9108 +duckuments.tar.xz 03-Oct-2019 23:54 484476 +duerer-latex.doc.r15878.tar.xz 28-Feb-2019 02:33 150404 +duerer-latex.doc.tar.xz 28-Feb-2019 02:33 150404 +duerer-latex.r15878.tar.xz 28-Feb-2019 02:33 1136 +duerer-latex.tar.xz 28-Feb-2019 02:33 1136 +duerer.doc.r20741.tar.xz 28-Feb-2019 02:33 940 +duerer.doc.tar.xz 28-Feb-2019 02:33 940 +duerer.r20741.tar.xz 28-Feb-2019 02:33 15040 +duerer.tar.xz 28-Feb-2019 02:33 15040 +duotenzor.doc.r76130.tar.xz 24-Aug-2025 00:12 155936 +duotenzor.doc.tar.xz 24-Aug-2025 00:12 155936 +duotenzor.r76130.tar.xz 24-Aug-2025 00:12 5300 +duotenzor.tar.xz 24-Aug-2025 00:12 5300 +dutchcal.doc.r54080.tar.xz 04-Mar-2020 22:50 1048 +dutchcal.doc.tar.xz 04-Mar-2020 22:50 1048 +dutchcal.r54080.tar.xz 04-Mar-2020 22:50 36176 +dutchcal.tar.xz 04-Mar-2020 22:50 36176 +dvdcoll.doc.r15878.tar.xz 28-Feb-2019 02:33 199176 +dvdcoll.doc.tar.xz 28-Feb-2019 02:33 199176 +dvdcoll.r15878.tar.xz 28-Feb-2019 02:33 15952 +dvdcoll.tar.xz 28-Feb-2019 02:33 15952 +dvgloss.doc.r29103.tar.xz 28-Feb-2019 02:33 205460 +dvgloss.doc.tar.xz 28-Feb-2019 02:33 205460 +dvgloss.r29103.tar.xz 28-Feb-2019 02:33 2012 +dvgloss.source.r29103.tar.xz 28-Feb-2019 02:33 8748 +dvgloss.source.tar.xz 28-Feb-2019 02:33 8748 +dvgloss.tar.xz 28-Feb-2019 02:33 2012 +dvi2tty.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 83520 +dvi2tty.aarch64-linux.tar.xz 13-Feb-2025 00:47 83520 +dvi2tty.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 80364 +dvi2tty.amd64-freebsd.tar.xz 09-Feb-2025 00:52 80364 +dvi2tty.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 78236 +dvi2tty.amd64-netbsd.tar.xz 09-Feb-2025 18:14 78236 +dvi2tty.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 75332 +dvi2tty.armhf-linux.tar.xz 09-Feb-2025 00:52 75332 +dvi2tty.doc.r66186.tar.xz 26-Feb-2023 23:50 37148 +dvi2tty.doc.tar.xz 26-Feb-2023 23:50 37148 +dvi2tty.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 80380 +dvi2tty.i386-freebsd.tar.xz 09-Feb-2025 00:52 80380 +dvi2tty.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 93492 +dvi2tty.i386-linux.tar.xz 09-Feb-2025 00:52 93492 +dvi2tty.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 73112 +dvi2tty.i386-netbsd.tar.xz 09-Feb-2025 18:14 73112 +dvi2tty.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 85756 +dvi2tty.i386-solaris.tar.xz 09-Feb-2025 00:52 85756 +dvi2tty.r66186.tar.xz 26-Feb-2023 23:50 480 +dvi2tty.tar.xz 26-Feb-2023 23:50 480 +dvi2tty.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 154648 +dvi2tty.universal-darwin.tar.xz 09-Feb-2025 18:14 154648 +dvi2tty.windows.r73796.tar.xz 09-Feb-2025 18:14 41428 +dvi2tty.windows.tar.xz 09-Feb-2025 18:14 41428 +dvi2tty.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 25780 +dvi2tty.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 25780 +dvi2tty.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:47 82492 +dvi2tty.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:47 82492 +dvi2tty.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 89796 +dvi2tty.x86_64-linux.tar.xz 19-Feb-2025 00:46 89796 +dvi2tty.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 88456 +dvi2tty.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 88456 +dvi2tty.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 95136 +dvi2tty.x86_64-solaris.tar.xz 09-Feb-2025 00:52 95136 +dviasm.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:33 340 +dviasm.aarch64-linux.tar.xz 28-Feb-2019 02:33 340 +dviasm.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:33 340 +dviasm.amd64-freebsd.tar.xz 28-Feb-2019 02:33 340 +dviasm.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:33 340 +dviasm.amd64-netbsd.tar.xz 28-Feb-2019 02:33 340 +dviasm.armhf-linux.r30015.tar.xz 28-Feb-2019 02:33 340 +dviasm.armhf-linux.tar.xz 28-Feb-2019 02:33 340 +dviasm.doc.r71902.tar.xz 26-Jul-2024 23:48 24388 +dviasm.doc.tar.xz 26-Jul-2024 23:48 24388 +dviasm.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:33 340 +dviasm.i386-freebsd.tar.xz 28-Feb-2019 02:33 340 +dviasm.i386-linux.r8329.tar.xz 28-Feb-2019 02:33 336 +dviasm.i386-linux.tar.xz 28-Feb-2019 02:33 336 +dviasm.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:33 340 +dviasm.i386-netbsd.tar.xz 28-Feb-2019 02:33 340 +dviasm.i386-solaris.r8563.tar.xz 28-Feb-2019 02:33 340 +dviasm.i386-solaris.tar.xz 28-Feb-2019 02:33 340 +dviasm.r71902.tar.xz 26-Jul-2024 23:48 10536 +dviasm.tar.xz 26-Jul-2024 23:48 10536 +dviasm.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +dviasm.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +dviasm.windows.r65891.tar.xz 20-Feb-2023 22:11 2304 +dviasm.windows.tar.xz 20-Feb-2023 22:11 2304 +dviasm.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:33 344 +dviasm.x86_64-cygwin.tar.xz 28-Feb-2019 02:33 344 +dviasm.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:33 348 +dviasm.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:33 348 +dviasm.x86_64-linux.r8601.tar.xz 28-Feb-2019 02:33 340 +dviasm.x86_64-linux.tar.xz 28-Feb-2019 02:33 340 +dviasm.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:33 344 +dviasm.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:33 344 +dviasm.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:33 340 +dviasm.x86_64-solaris.tar.xz 28-Feb-2019 02:33 340 +dvicopy.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:47 54700 +dvicopy.aarch64-linux.tar.xz 13-Feb-2025 00:47 54700 +dvicopy.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 53896 +dvicopy.amd64-freebsd.tar.xz 09-Feb-2025 00:52 53896 +dvicopy.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 51372 +dvicopy.amd64-netbsd.tar.xz 09-Feb-2025 18:14 51372 +dvicopy.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 49884 +dvicopy.armhf-linux.tar.xz 09-Feb-2025 00:52 49884 +dvicopy.doc.r73848.tar.xz 11-Feb-2025 00:48 19708 +dvicopy.doc.tar.xz 11-Feb-2025 00:48 19708 +dvicopy.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 53924 +dvicopy.i386-freebsd.tar.xz 09-Feb-2025 00:52 53924 +dvicopy.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 61496 +dvicopy.i386-linux.tar.xz 09-Feb-2025 00:52 61496 +dvicopy.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 43880 +dvicopy.i386-netbsd.tar.xz 09-Feb-2025 18:14 43880 +dvicopy.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 55748 +dvicopy.i386-solaris.tar.xz 09-Feb-2025 00:52 55748 +dvicopy.r73848.tar.xz 11-Feb-2025 00:48 588 +dvicopy.tar.xz 11-Feb-2025 00:48 588 +dvicopy.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 112628 +dvicopy.universal-darwin.tar.xz 09-Feb-2025 18:14 112628 +dvicopy.windows.r73796.tar.xz 09-Feb-2025 18:14 28260 +dvicopy.windows.tar.xz 09-Feb-2025 18:14 28260 +dvicopy.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 26124 +dvicopy.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 26124 +dvicopy.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 55128 +dvicopy.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 55128 +dvicopy.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 54864 +dvicopy.x86_64-linux.tar.xz 19-Feb-2025 00:46 54864 +dvicopy.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 59856 +dvicopy.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 59856 +dvicopy.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 62800 +dvicopy.x86_64-solaris.tar.xz 09-Feb-2025 00:52 62800 +dvidvi.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 8580 +dvidvi.aarch64-linux.tar.xz 13-Feb-2025 00:48 8580 +dvidvi.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 8380 +dvidvi.amd64-freebsd.tar.xz 09-Feb-2025 00:52 8380 +dvidvi.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 8724 +dvidvi.amd64-netbsd.tar.xz 09-Feb-2025 18:14 8724 +dvidvi.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 7928 +dvidvi.armhf-linux.tar.xz 09-Feb-2025 00:52 7928 +dvidvi.doc.r75712.tar.xz 07-Jul-2025 23:50 19332 +dvidvi.doc.tar.xz 07-Jul-2025 23:50 19332 +dvidvi.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 8380 +dvidvi.i386-freebsd.tar.xz 09-Feb-2025 00:52 8380 +dvidvi.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 8988 +dvidvi.i386-linux.tar.xz 09-Feb-2025 00:52 8988 +dvidvi.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 7992 +dvidvi.i386-netbsd.tar.xz 09-Feb-2025 18:14 7992 +dvidvi.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 9084 +dvidvi.i386-solaris.tar.xz 09-Feb-2025 00:52 9084 +dvidvi.r75712.tar.xz 07-Jul-2025 23:50 472 +dvidvi.tar.xz 07-Jul-2025 23:50 472 +dvidvi.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 22408 +dvidvi.universal-darwin.tar.xz 09-Feb-2025 18:14 22408 +dvidvi.windows.r73796.tar.xz 09-Feb-2025 18:14 9804 +dvidvi.windows.tar.xz 09-Feb-2025 18:14 9804 +dvidvi.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 9436 +dvidvi.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 9436 +dvidvi.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 7804 +dvidvi.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 7804 +dvidvi.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 9220 +dvidvi.x86_64-linux.tar.xz 19-Feb-2025 00:46 9220 +dvidvi.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 8420 +dvidvi.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 8420 +dvidvi.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 9988 +dvidvi.x86_64-solaris.tar.xz 09-Feb-2025 00:52 9988 +dviincl.doc.r29349.tar.xz 28-Feb-2019 02:33 3636 +dviincl.doc.tar.xz 28-Feb-2019 02:33 3636 +dviincl.r29349.tar.xz 28-Feb-2019 02:33 1084 +dviincl.tar.xz 28-Feb-2019 02:33 1084 +dviinfox.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:33 340 +dviinfox.aarch64-linux.tar.xz 28-Feb-2019 02:33 340 +dviinfox.amd64-freebsd.r44515.tar.xz 28-Feb-2019 02:33 344 +dviinfox.amd64-freebsd.tar.xz 28-Feb-2019 02:33 344 +dviinfox.amd64-netbsd.r44515.tar.xz 28-Feb-2019 02:33 340 +dviinfox.amd64-netbsd.tar.xz 28-Feb-2019 02:33 340 +dviinfox.armhf-linux.r44515.tar.xz 28-Feb-2019 02:33 340 +dviinfox.armhf-linux.tar.xz 28-Feb-2019 02:33 340 +dviinfox.doc.r59216.tar.xz 15-May-2021 23:52 2164 +dviinfox.doc.tar.xz 15-May-2021 23:52 2164 +dviinfox.i386-freebsd.r44515.tar.xz 28-Feb-2019 02:33 340 +dviinfox.i386-freebsd.tar.xz 28-Feb-2019 02:33 340 +dviinfox.i386-linux.r44515.tar.xz 28-Feb-2019 02:33 340 +dviinfox.i386-linux.tar.xz 28-Feb-2019 02:33 340 +dviinfox.i386-netbsd.r44515.tar.xz 28-Feb-2019 02:33 340 +dviinfox.i386-netbsd.tar.xz 28-Feb-2019 02:33 340 +dviinfox.i386-solaris.r44515.tar.xz 28-Feb-2019 02:33 340 +dviinfox.i386-solaris.tar.xz 28-Feb-2019 02:33 340 +dviinfox.r59216.tar.xz 15-May-2021 23:52 3628 +dviinfox.tar.xz 15-May-2021 23:52 3628 +dviinfox.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +dviinfox.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +dviinfox.windows.r65891.tar.xz 20-Feb-2023 22:11 2304 +dviinfox.windows.tar.xz 20-Feb-2023 22:11 2304 +dviinfox.x86_64-cygwin.r44515.tar.xz 28-Feb-2019 02:33 344 +dviinfox.x86_64-cygwin.tar.xz 28-Feb-2019 02:33 344 +dviinfox.x86_64-darwinlegacy.r44515.tar.xz 28-Feb-2019 02:33 352 +dviinfox.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:33 352 +dviinfox.x86_64-linux.r44515.tar.xz 28-Feb-2019 02:33 340 +dviinfox.x86_64-linux.tar.xz 28-Feb-2019 02:33 340 +dviinfox.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:33 348 +dviinfox.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:33 348 +dviinfox.x86_64-solaris.r44515.tar.xz 28-Feb-2019 02:33 340 +dviinfox.x86_64-solaris.tar.xz 28-Feb-2019 02:33 340 +dviljk.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 78492 +dviljk.aarch64-linux.tar.xz 13-Feb-2025 00:48 78492 +dviljk.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 80972 +dviljk.amd64-freebsd.tar.xz 09-Feb-2025 00:52 80972 +dviljk.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 78960 +dviljk.amd64-netbsd.tar.xz 09-Feb-2025 18:14 78960 +dviljk.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 73436 +dviljk.armhf-linux.tar.xz 09-Feb-2025 00:52 73436 +dviljk.doc.r66186.tar.xz 26-Feb-2023 23:50 74932 +dviljk.doc.tar.xz 26-Feb-2023 23:50 74932 +dviljk.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 80960 +dviljk.i386-freebsd.tar.xz 09-Feb-2025 00:52 80960 +dviljk.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 89960 +dviljk.i386-linux.tar.xz 09-Feb-2025 00:52 89960 +dviljk.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 72620 +dviljk.i386-netbsd.tar.xz 09-Feb-2025 18:14 72620 +dviljk.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 92856 +dviljk.i386-solaris.tar.xz 09-Feb-2025 00:52 92856 +dviljk.r66186.tar.xz 26-Feb-2023 23:50 508 +dviljk.tar.xz 26-Feb-2023 23:50 508 +dviljk.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 173936 +dviljk.universal-darwin.tar.xz 09-Feb-2025 18:14 173936 +dviljk.windows.r73796.tar.xz 09-Feb-2025 18:14 48220 +dviljk.windows.tar.xz 09-Feb-2025 18:14 48220 +dviljk.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 43384 +dviljk.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 43384 +dviljk.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 80720 +dviljk.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 80720 +dviljk.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 85372 +dviljk.x86_64-linux.tar.xz 19-Feb-2025 00:46 85372 +dviljk.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 86192 +dviljk.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 86192 +dviljk.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 101024 +dviljk.x86_64-solaris.tar.xz 09-Feb-2025 00:52 101024 +dviout-util.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 77072 +dviout-util.aarch64-linux.tar.xz 13-Feb-2025 00:48 77072 +dviout-util.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 74192 +dviout-util.amd64-freebsd.tar.xz 09-Feb-2025 00:52 74192 +dviout-util.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 71820 +dviout-util.amd64-netbsd.tar.xz 09-Feb-2025 18:14 71820 +dviout-util.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 72472 +dviout-util.armhf-linux.tar.xz 09-Feb-2025 00:52 72472 +dviout-util.doc.r66186.tar.xz 26-Feb-2023 23:50 39140 +dviout-util.doc.tar.xz 26-Feb-2023 23:50 39140 +dviout-util.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 74260 +dviout-util.i386-freebsd.tar.xz 09-Feb-2025 00:52 74260 +dviout-util.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 88028 +dviout-util.i386-linux.tar.xz 09-Feb-2025 00:52 88028 +dviout-util.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 66580 +dviout-util.i386-netbsd.tar.xz 09-Feb-2025 18:14 66580 +dviout-util.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 81432 +dviout-util.i386-solaris.tar.xz 09-Feb-2025 00:52 81432 +dviout-util.r66186.tar.xz 26-Feb-2023 23:50 244 +dviout-util.tar.xz 26-Feb-2023 23:50 244 +dviout-util.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 143844 +dviout-util.universal-darwin.tar.xz 09-Feb-2025 18:14 143844 +dviout-util.windows.r73796.tar.xz 09-Feb-2025 18:14 45080 +dviout-util.windows.tar.xz 09-Feb-2025 18:14 45080 +dviout-util.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 27684 +dviout-util.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 27684 +dviout-util.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 77808 +dviout-util.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 77808 +dviout-util.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 82320 +dviout-util.x86_64-linux.tar.xz 19-Feb-2025 00:46 82320 +dviout-util.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 82848 +dviout-util.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 82848 +dviout-util.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 86516 +dviout-util.x86_64-solaris.tar.xz 09-Feb-2025 00:52 86516 +dviout.windows.r66655.tar.xz 24-Mar-2023 00:56 2735736 +dviout.windows.tar.xz 24-Mar-2023 00:56 2735736 +dvipdfmx.aarch64-linux.r74928.tar.xz 13-Apr-2025 23:50 416132 +dvipdfmx.aarch64-linux.tar.xz 13-Apr-2025 23:50 416132 +dvipdfmx.amd64-freebsd.r74924.tar.xz 12-Apr-2025 23:58 400844 +dvipdfmx.amd64-freebsd.tar.xz 12-Apr-2025 23:58 400844 +dvipdfmx.amd64-netbsd.r74927.tar.xz 13-Apr-2025 23:50 399612 +dvipdfmx.amd64-netbsd.tar.xz 13-Apr-2025 23:50 399612 +dvipdfmx.armhf-linux.r74928.tar.xz 13-Apr-2025 23:50 383964 +dvipdfmx.armhf-linux.tar.xz 13-Apr-2025 23:50 383964 +dvipdfmx.doc.r76377.tar.xz 22-Sep-2025 23:50 3135876 +dvipdfmx.doc.tar.xz 22-Sep-2025 23:50 3135876 +dvipdfmx.i386-freebsd.r74924.tar.xz 12-Apr-2025 23:58 401876 +dvipdfmx.i386-freebsd.tar.xz 12-Apr-2025 23:58 401876 +dvipdfmx.i386-linux.r74924.tar.xz 12-Apr-2025 23:58 494636 +dvipdfmx.i386-linux.tar.xz 12-Apr-2025 23:58 494636 +dvipdfmx.i386-netbsd.r74927.tar.xz 13-Apr-2025 23:50 371052 +dvipdfmx.i386-netbsd.tar.xz 13-Apr-2025 23:50 371052 +dvipdfmx.i386-solaris.r74924.tar.xz 12-Apr-2025 23:58 433524 +dvipdfmx.i386-solaris.tar.xz 12-Apr-2025 23:58 433524 +dvipdfmx.r76377.tar.xz 22-Sep-2025 23:50 26976 +dvipdfmx.tar.xz 22-Sep-2025 23:50 26976 +dvipdfmx.universal-darwin.r74936.tar.xz 13-Apr-2025 23:50 812000 +dvipdfmx.universal-darwin.tar.xz 13-Apr-2025 23:50 812000 +dvipdfmx.windows.r74921.tar.xz 12-Apr-2025 23:58 356212 +dvipdfmx.windows.tar.xz 12-Apr-2025 23:58 356212 +dvipdfmx.x86_64-cygwin.r74922.tar.xz 12-Apr-2025 23:58 413800 +dvipdfmx.x86_64-cygwin.tar.xz 12-Apr-2025 23:58 413800 +dvipdfmx.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 416144 +dvipdfmx.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 416144 +dvipdfmx.x86_64-linux.r74924.tar.xz 12-Apr-2025 23:58 449612 +dvipdfmx.x86_64-linux.tar.xz 12-Apr-2025 23:58 449612 +dvipdfmx.x86_64-linuxmusl.r74924.tar.xz 12-Apr-2025 23:58 464932 +dvipdfmx.x86_64-linuxmusl.tar.xz 12-Apr-2025 23:58 464932 +dvipdfmx.x86_64-solaris.r74924.tar.xz 12-Apr-2025 23:58 470984 +dvipdfmx.x86_64-solaris.tar.xz 12-Apr-2025 23:58 470984 +dvipng.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 464788 +dvipng.aarch64-linux.tar.xz 13-Feb-2025 00:48 464788 +dvipng.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 440504 +dvipng.amd64-freebsd.tar.xz 09-Feb-2025 00:52 440504 +dvipng.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 440140 +dvipng.amd64-netbsd.tar.xz 09-Feb-2025 18:14 440140 +dvipng.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 413220 +dvipng.armhf-linux.tar.xz 09-Feb-2025 00:52 413220 +dvipng.doc.r73848.tar.xz 11-Feb-2025 00:48 285740 +dvipng.doc.tar.xz 11-Feb-2025 00:48 285740 +dvipng.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 440804 +dvipng.i386-freebsd.tar.xz 09-Feb-2025 00:52 440804 +dvipng.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 528812 +dvipng.i386-linux.tar.xz 09-Feb-2025 00:52 528812 +dvipng.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 396036 +dvipng.i386-netbsd.tar.xz 09-Feb-2025 18:14 396036 +dvipng.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 479448 +dvipng.i386-solaris.tar.xz 09-Feb-2025 00:52 479448 +dvipng.r73848.tar.xz 11-Feb-2025 00:48 932 +dvipng.tar.xz 11-Feb-2025 00:48 932 +dvipng.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 914004 +dvipng.universal-darwin.tar.xz 09-Feb-2025 18:14 914004 +dvipng.windows.r73796.tar.xz 09-Feb-2025 18:14 450160 +dvipng.windows.tar.xz 09-Feb-2025 18:14 450160 +dvipng.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 459640 +dvipng.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 459640 +dvipng.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 456652 +dvipng.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 456652 +dvipng.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 497104 +dvipng.x86_64-linux.tar.xz 19-Feb-2025 00:46 497104 +dvipng.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 509544 +dvipng.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 509544 +dvipng.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 526736 +dvipng.x86_64-solaris.tar.xz 09-Feb-2025 00:52 526736 +dvipos.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 44200 +dvipos.aarch64-linux.tar.xz 13-Feb-2025 00:48 44200 +dvipos.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 46052 +dvipos.amd64-freebsd.tar.xz 09-Feb-2025 00:52 46052 +dvipos.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 45284 +dvipos.amd64-netbsd.tar.xz 09-Feb-2025 18:14 45284 +dvipos.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 41620 +dvipos.armhf-linux.tar.xz 09-Feb-2025 00:52 41620 +dvipos.doc.r66186.tar.xz 26-Feb-2023 23:50 28764 +dvipos.doc.tar.xz 26-Feb-2023 23:50 28764 +dvipos.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 46076 +dvipos.i386-freebsd.tar.xz 09-Feb-2025 00:52 46076 +dvipos.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 52808 +dvipos.i386-linux.tar.xz 09-Feb-2025 00:52 52808 +dvipos.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 40448 +dvipos.i386-netbsd.tar.xz 09-Feb-2025 18:14 40448 +dvipos.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 47280 +dvipos.i386-solaris.tar.xz 09-Feb-2025 00:52 47280 +dvipos.r66186.tar.xz 26-Feb-2023 23:50 296 +dvipos.tar.xz 26-Feb-2023 23:50 296 +dvipos.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 91188 +dvipos.universal-darwin.tar.xz 09-Feb-2025 18:14 91188 +dvipos.windows.r73796.tar.xz 09-Feb-2025 18:14 18220 +dvipos.windows.tar.xz 09-Feb-2025 18:14 18220 +dvipos.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 18252 +dvipos.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 18252 +dvipos.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 46376 +dvipos.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 46376 +dvipos.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 47900 +dvipos.x86_64-linux.tar.xz 19-Feb-2025 00:46 47900 +dvipos.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 51284 +dvipos.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 51284 +dvipos.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 53096 +dvipos.x86_64-solaris.tar.xz 09-Feb-2025 00:52 53096 +dvips.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 145668 +dvips.aarch64-linux.tar.xz 13-Feb-2025 00:48 145668 +dvips.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 138448 +dvips.amd64-freebsd.tar.xz 09-Feb-2025 00:52 138448 +dvips.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 135008 +dvips.amd64-netbsd.tar.xz 09-Feb-2025 18:14 135008 +dvips.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 137864 +dvips.armhf-linux.tar.xz 09-Feb-2025 00:52 137864 +dvips.doc.r73850.tar.xz 11-Feb-2025 00:48 530988 +dvips.doc.tar.xz 11-Feb-2025 00:48 530988 +dvips.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 138484 +dvips.i386-freebsd.tar.xz 09-Feb-2025 00:52 138484 +dvips.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 163732 +dvips.i386-linux.tar.xz 09-Feb-2025 00:52 163732 +dvips.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:14 119860 +dvips.i386-netbsd.tar.xz 09-Feb-2025 18:14 119860 +dvips.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 146476 +dvips.i386-solaris.tar.xz 09-Feb-2025 00:52 146476 +dvips.r73850.tar.xz 11-Feb-2025 00:48 58076 +dvips.tar.xz 11-Feb-2025 00:48 58076 +dvips.universal-darwin.r73806.tar.xz 09-Feb-2025 18:14 297100 +dvips.universal-darwin.tar.xz 09-Feb-2025 18:14 297100 +dvips.windows.r73796.tar.xz 09-Feb-2025 18:14 110124 +dvips.windows.tar.xz 09-Feb-2025 18:14 110124 +dvips.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 120260 +dvips.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 120260 +dvips.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 145592 +dvips.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 145592 +dvips.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 155508 +dvips.x86_64-linux.tar.xz 19-Feb-2025 00:46 155508 +dvips.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 157548 +dvips.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 157548 +dvips.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 164212 +dvips.x86_64-solaris.tar.xz 09-Feb-2025 00:52 164212 +dvipsconfig.r13293.tar.xz 28-Feb-2019 02:33 11640 +dvipsconfig.tar.xz 28-Feb-2019 02:33 11640 +dvisvgm.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 1839792 +dvisvgm.aarch64-linux.tar.xz 13-Feb-2025 00:48 1839792 +dvisvgm.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 1947704 +dvisvgm.amd64-freebsd.tar.xz 09-Feb-2025 00:52 1947704 +dvisvgm.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:14 1916020 +dvisvgm.amd64-netbsd.tar.xz 09-Feb-2025 18:14 1916020 +dvisvgm.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 1673928 +dvisvgm.armhf-linux.tar.xz 09-Feb-2025 00:52 1673928 +dvisvgm.doc.r73848.tar.xz 11-Feb-2025 00:48 121232 +dvisvgm.doc.tar.xz 11-Feb-2025 00:48 121232 +dvisvgm.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 1948532 +dvisvgm.i386-freebsd.tar.xz 09-Feb-2025 00:52 1948532 +dvisvgm.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 2127780 +dvisvgm.i386-linux.tar.xz 09-Feb-2025 00:52 2127780 +dvisvgm.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:15 1891076 +dvisvgm.i386-netbsd.tar.xz 09-Feb-2025 18:15 1891076 +dvisvgm.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 1709728 +dvisvgm.i386-solaris.tar.xz 09-Feb-2025 00:52 1709728 +dvisvgm.r73848.tar.xz 11-Feb-2025 00:48 884 +dvisvgm.tar.xz 11-Feb-2025 00:48 884 +dvisvgm.universal-darwin.r73806.tar.xz 09-Feb-2025 18:15 3075292 +dvisvgm.universal-darwin.tar.xz 09-Feb-2025 18:15 3075292 +dvisvgm.windows.r73796.tar.xz 09-Feb-2025 18:15 1636032 +dvisvgm.windows.tar.xz 09-Feb-2025 18:15 1636032 +dvisvgm.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 1773748 +dvisvgm.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 1773748 +dvisvgm.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 1496652 +dvisvgm.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 1496652 +dvisvgm.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 1956104 +dvisvgm.x86_64-linux.tar.xz 19-Feb-2025 00:46 1956104 +dvisvgm.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 1911508 +dvisvgm.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 1911508 +dvisvgm.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 1729408 +dvisvgm.x86_64-solaris.tar.xz 09-Feb-2025 00:52 1729408 +dynamicnumber.doc.r38726.tar.xz 28-Feb-2019 02:34 159240 +dynamicnumber.doc.tar.xz 28-Feb-2019 02:34 159240 +dynamicnumber.r38726.tar.xz 28-Feb-2019 02:34 1500 +dynamicnumber.source.r38726.tar.xz 28-Feb-2019 02:34 3268 +dynamicnumber.source.tar.xz 28-Feb-2019 02:34 3268 +dynamicnumber.tar.xz 28-Feb-2019 02:34 1500 +dynblocks.doc.r35193.tar.xz 28-Feb-2019 02:34 377732 +dynblocks.doc.tar.xz 28-Feb-2019 02:34 377732 +dynblocks.r35193.tar.xz 28-Feb-2019 02:34 2084 +dynblocks.tar.xz 28-Feb-2019 02:34 2084 +dynkin-diagrams.doc.r75301.tar.xz 23-May-2025 23:46 906776 +dynkin-diagrams.doc.tar.xz 23-May-2025 23:46 906776 +dynkin-diagrams.r75301.tar.xz 23-May-2025 23:46 21216 +dynkin-diagrams.tar.xz 23-May-2025 23:46 21216 +dyntree.doc.r67016.tar.xz 04-May-2023 23:54 127676 +dyntree.doc.tar.xz 04-May-2023 23:54 127676 +dyntree.r67016.tar.xz 04-May-2023 23:54 3092 +dyntree.source.r67016.tar.xz 04-May-2023 23:54 8840 +dyntree.source.tar.xz 04-May-2023 23:54 8840 +dyntree.tar.xz 04-May-2023 23:54 3092 +e-french.doc.r52027.tar.xz 04-Sep-2019 23:53 2744844 +e-french.doc.tar.xz 04-Sep-2019 23:53 2744844 +e-french.r52027.tar.xz 04-Sep-2019 23:53 50968 +e-french.tar.xz 04-Sep-2019 23:53 50968 +ean.doc.r20851.tar.xz 28-Feb-2019 02:34 948 +ean.doc.tar.xz 28-Feb-2019 02:34 948 +ean.r20851.tar.xz 28-Feb-2019 02:34 3148 +ean.tar.xz 28-Feb-2019 02:34 3148 +ean13isbn.doc.r57514.tar.xz 25-Jan-2021 00:57 321608 +ean13isbn.doc.tar.xz 25-Jan-2021 00:57 321608 +ean13isbn.r57514.tar.xz 25-Jan-2021 00:57 1828 +ean13isbn.tar.xz 25-Jan-2021 00:57 1828 +easing.doc.r75712.tar.xz 07-Jul-2025 23:50 313228 +easing.doc.tar.xz 07-Jul-2025 23:50 313228 +easing.r75712.tar.xz 07-Jul-2025 23:50 2224 +easing.source.r75712.tar.xz 07-Jul-2025 23:50 7876 +easing.source.tar.xz 07-Jul-2025 23:50 7876 +easing.tar.xz 07-Jul-2025 23:50 2224 +easy-todo.doc.r32677.tar.xz 28-Feb-2019 02:34 140064 +easy-todo.doc.tar.xz 28-Feb-2019 02:34 140064 +easy-todo.r32677.tar.xz 28-Feb-2019 02:34 1352 +easy-todo.tar.xz 28-Feb-2019 02:34 1352 +easy.doc.r19440.tar.xz 28-Feb-2019 02:34 4540 +easy.doc.tar.xz 28-Feb-2019 02:34 4540 +easy.r19440.tar.xz 28-Feb-2019 02:34 12416 +easy.tar.xz 28-Feb-2019 02:34 12416 +easybook.doc.r75942.tar.xz 01-Aug-2025 23:45 692180 +easybook.doc.tar.xz 01-Aug-2025 23:45 692180 +easybook.r75942.tar.xz 01-Aug-2025 23:45 20448 +easybook.source.r75942.tar.xz 01-Aug-2025 23:45 20300 +easybook.source.tar.xz 01-Aug-2025 23:45 20300 +easybook.tar.xz 01-Aug-2025 23:45 20448 +easydtx.aarch64-linux.r68514.tar.xz 11-Oct-2023 23:45 344 +easydtx.aarch64-linux.tar.xz 11-Oct-2023 23:45 344 +easydtx.amd64-freebsd.r68514.tar.xz 11-Oct-2023 23:45 344 +easydtx.amd64-freebsd.tar.xz 11-Oct-2023 23:45 344 +easydtx.amd64-netbsd.r68514.tar.xz 11-Oct-2023 23:45 344 +easydtx.amd64-netbsd.tar.xz 11-Oct-2023 23:45 344 +easydtx.armhf-linux.r68514.tar.xz 11-Oct-2023 23:45 344 +easydtx.armhf-linux.tar.xz 11-Oct-2023 23:45 344 +easydtx.doc.r72952.tar.xz 25-Nov-2024 00:46 38172 +easydtx.doc.tar.xz 25-Nov-2024 00:46 38172 +easydtx.i386-freebsd.r68514.tar.xz 11-Oct-2023 23:45 344 +easydtx.i386-freebsd.tar.xz 11-Oct-2023 23:45 344 +easydtx.i386-linux.r68514.tar.xz 11-Oct-2023 23:45 344 +easydtx.i386-linux.tar.xz 11-Oct-2023 23:45 344 +easydtx.i386-netbsd.r68514.tar.xz 11-Oct-2023 23:45 344 +easydtx.i386-netbsd.tar.xz 11-Oct-2023 23:45 344 +easydtx.i386-solaris.r68514.tar.xz 11-Oct-2023 23:45 344 +easydtx.i386-solaris.tar.xz 11-Oct-2023 23:45 344 +easydtx.r72952.tar.xz 25-Nov-2024 00:46 2220 +easydtx.tar.xz 25-Nov-2024 00:46 2220 +easydtx.universal-darwin.r68514.tar.xz 11-Oct-2023 23:45 348 +easydtx.universal-darwin.tar.xz 11-Oct-2023 23:45 348 +easydtx.windows.r68514.tar.xz 11-Oct-2023 23:45 2304 +easydtx.windows.tar.xz 11-Oct-2023 23:45 2304 +easydtx.x86_64-cygwin.r68514.tar.xz 11-Oct-2023 23:45 344 +easydtx.x86_64-cygwin.tar.xz 11-Oct-2023 23:45 344 +easydtx.x86_64-darwinlegacy.r68514.tar.xz 11-Oct-2023 23:45 352 +easydtx.x86_64-darwinlegacy.tar.xz 11-Oct-2023 23:45 352 +easydtx.x86_64-linux.r68514.tar.xz 11-Oct-2023 23:45 344 +easydtx.x86_64-linux.tar.xz 11-Oct-2023 23:45 344 +easydtx.x86_64-linuxmusl.r68514.tar.xz 11-Oct-2023 23:45 348 +easydtx.x86_64-linuxmusl.tar.xz 11-Oct-2023 23:45 348 +easydtx.x86_64-solaris.r68514.tar.xz 11-Oct-2023 23:45 344 +easydtx.x86_64-solaris.tar.xz 11-Oct-2023 23:45 344 +easyfig.doc.r64967.tar.xz 08-Nov-2022 00:55 175976 +easyfig.doc.tar.xz 08-Nov-2022 00:55 175976 +easyfig.r64967.tar.xz 08-Nov-2022 00:55 1928 +easyfig.source.r64967.tar.xz 08-Nov-2022 00:55 5228 +easyfig.source.tar.xz 08-Nov-2022 00:55 5228 +easyfig.tar.xz 08-Nov-2022 00:55 1928 +easyfloats.doc.r72699.tar.xz 30-Oct-2024 00:48 889504 +easyfloats.doc.tar.xz 30-Oct-2024 00:48 889504 +easyfloats.r72699.tar.xz 30-Oct-2024 00:48 9328 +easyfloats.source.r72699.tar.xz 30-Oct-2024 00:48 14452 +easyfloats.source.tar.xz 30-Oct-2024 00:48 14452 +easyfloats.tar.xz 30-Oct-2024 00:48 9328 +easyformat.doc.r44543.tar.xz 28-Feb-2019 02:34 49816 +easyformat.doc.tar.xz 28-Feb-2019 02:34 49816 +easyformat.r44543.tar.xz 28-Feb-2019 02:34 2432 +easyformat.tar.xz 28-Feb-2019 02:34 2432 +easylist.doc.r32661.tar.xz 28-Feb-2019 02:34 607196 +easylist.doc.tar.xz 28-Feb-2019 02:34 607196 +easylist.r32661.tar.xz 28-Feb-2019 02:34 5868 +easylist.tar.xz 28-Feb-2019 02:34 5868 +easyreview.doc.r38352.tar.xz 28-Feb-2019 02:34 330600 +easyreview.doc.tar.xz 28-Feb-2019 02:34 330600 +easyreview.r38352.tar.xz 28-Feb-2019 02:34 1468 +easyreview.source.r38352.tar.xz 28-Feb-2019 02:34 2472 +easyreview.source.tar.xz 28-Feb-2019 02:34 2472 +easyreview.tar.xz 28-Feb-2019 02:34 1468 +ebezier.doc.r15878.tar.xz 28-Feb-2019 02:34 288216 +ebezier.doc.tar.xz 28-Feb-2019 02:34 288216 +ebezier.r15878.tar.xz 28-Feb-2019 02:34 4060 +ebezier.source.r15878.tar.xz 28-Feb-2019 02:34 18192 +ebezier.source.tar.xz 28-Feb-2019 02:34 18192 +ebezier.tar.xz 28-Feb-2019 02:34 4060 +ebgaramond-maths.doc.r74169.tar.xz 21-Feb-2025 00:50 565540 +ebgaramond-maths.doc.tar.xz 21-Feb-2025 00:50 565540 +ebgaramond-maths.r74169.tar.xz 21-Feb-2025 00:50 5944 +ebgaramond-maths.source.r74169.tar.xz 21-Feb-2025 00:50 8228 +ebgaramond-maths.source.tar.xz 21-Feb-2025 00:50 8228 +ebgaramond-maths.tar.xz 21-Feb-2025 00:50 5944 +ebgaramond.doc.r71069.tar.xz 24-Apr-2024 23:48 598752 +ebgaramond.doc.tar.xz 24-Apr-2024 23:48 598752 +ebgaramond.r71069.tar.xz 24-Apr-2024 23:48 8391100 +ebgaramond.tar.xz 24-Apr-2024 23:48 8391100 +ebong.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:34 340 +ebong.aarch64-linux.tar.xz 28-Feb-2019 02:34 340 +ebong.amd64-freebsd.r21000.tar.xz 28-Feb-2019 02:34 340 +ebong.amd64-freebsd.tar.xz 28-Feb-2019 02:34 340 +ebong.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:34 340 +ebong.amd64-netbsd.tar.xz 28-Feb-2019 02:34 340 +ebong.armhf-linux.r30015.tar.xz 28-Feb-2019 02:34 340 +ebong.armhf-linux.tar.xz 28-Feb-2019 02:34 340 +ebong.doc.r67933.tar.xz 15-Aug-2023 23:47 50100 +ebong.doc.tar.xz 15-Aug-2023 23:47 50100 +ebong.i386-freebsd.r21000.tar.xz 28-Feb-2019 02:34 340 +ebong.i386-freebsd.tar.xz 28-Feb-2019 02:34 340 +ebong.i386-linux.r21000.tar.xz 28-Feb-2019 02:34 340 +ebong.i386-linux.tar.xz 28-Feb-2019 02:34 340 +ebong.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:34 340 +ebong.i386-netbsd.tar.xz 28-Feb-2019 02:34 340 +ebong.i386-solaris.r21000.tar.xz 28-Feb-2019 02:34 340 +ebong.i386-solaris.tar.xz 28-Feb-2019 02:34 340 +ebong.r67933.tar.xz 15-Aug-2023 23:47 2588 +ebong.tar.xz 15-Aug-2023 23:47 2588 +ebong.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +ebong.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +ebong.windows.r65891.tar.xz 20-Feb-2023 22:12 2304 +ebong.windows.tar.xz 20-Feb-2023 22:12 2304 +ebong.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:34 340 +ebong.x86_64-cygwin.tar.xz 28-Feb-2019 02:34 340 +ebong.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:34 348 +ebong.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:34 348 +ebong.x86_64-linux.r21000.tar.xz 28-Feb-2019 02:34 336 +ebong.x86_64-linux.tar.xz 28-Feb-2019 02:34 336 +ebong.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:34 344 +ebong.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:34 344 +ebong.x86_64-solaris.r21000.tar.xz 28-Feb-2019 02:34 340 +ebong.x86_64-solaris.tar.xz 28-Feb-2019 02:34 340 +ebook.doc.r29466.tar.xz 28-Feb-2019 02:34 824 +ebook.doc.tar.xz 28-Feb-2019 02:34 824 +ebook.r29466.tar.xz 28-Feb-2019 02:34 1596 +ebook.tar.xz 28-Feb-2019 02:34 1596 +ebproof.doc.r57544.tar.xz 29-Jan-2021 00:57 496192 +ebproof.doc.tar.xz 29-Jan-2021 00:57 496192 +ebproof.r57544.tar.xz 29-Jan-2021 00:57 4220 +ebproof.source.r57544.tar.xz 29-Jan-2021 00:57 13524 +ebproof.source.tar.xz 29-Jan-2021 00:57 13524 +ebproof.tar.xz 29-Jan-2021 00:57 4220 +ebsthesis.doc.r15878.tar.xz 28-Feb-2019 02:34 251260 +ebsthesis.doc.tar.xz 28-Feb-2019 02:34 251260 +ebsthesis.r15878.tar.xz 28-Feb-2019 02:34 6092 +ebsthesis.source.r15878.tar.xz 28-Feb-2019 02:34 7240 +ebsthesis.source.tar.xz 28-Feb-2019 02:34 7240 +ebsthesis.tar.xz 28-Feb-2019 02:34 6092 +ec.doc.r25033.tar.xz 28-Feb-2019 02:34 22856 +ec.doc.tar.xz 28-Feb-2019 02:34 22856 +ec.r25033.tar.xz 28-Feb-2019 02:34 263716 +ec.tar.xz 28-Feb-2019 02:34 263716 +ecc.doc.r15878.tar.xz 28-Feb-2019 02:34 2944 +ecc.doc.tar.xz 28-Feb-2019 02:34 2944 +ecc.r15878.tar.xz 28-Feb-2019 02:34 16928 +ecc.tar.xz 28-Feb-2019 02:34 16928 +ecclesiastic.doc.r38172.tar.xz 28-Feb-2019 02:34 370392 +ecclesiastic.doc.tar.xz 28-Feb-2019 02:34 370392 +ecclesiastic.r38172.tar.xz 28-Feb-2019 02:34 2744 +ecclesiastic.source.r38172.tar.xz 28-Feb-2019 02:34 8456 +ecclesiastic.source.tar.xz 28-Feb-2019 02:34 8456 +ecclesiastic.tar.xz 28-Feb-2019 02:34 2744 +ecgdraw.doc.r76130.tar.xz 24-Aug-2025 00:12 725824 +ecgdraw.doc.tar.xz 24-Aug-2025 00:12 725824 +ecgdraw.r76130.tar.xz 24-Aug-2025 00:12 3228 +ecgdraw.source.r76130.tar.xz 24-Aug-2025 00:12 12636 +ecgdraw.source.tar.xz 24-Aug-2025 00:12 12636 +ecgdraw.tar.xz 24-Aug-2025 00:12 3228 +ecltree.doc.r15878.tar.xz 28-Feb-2019 02:34 32504 +ecltree.doc.tar.xz 28-Feb-2019 02:34 32504 +ecltree.r15878.tar.xz 28-Feb-2019 02:34 2136 +ecltree.tar.xz 28-Feb-2019 02:34 2136 +eco.doc.r29349.tar.xz 28-Feb-2019 02:34 8380 +eco.doc.tar.xz 28-Feb-2019 02:34 8380 +eco.r29349.tar.xz 28-Feb-2019 02:34 143540 +eco.source.r29349.tar.xz 28-Feb-2019 02:34 6104 +eco.source.tar.xz 28-Feb-2019 02:34 6104 +eco.tar.xz 28-Feb-2019 02:34 143540 +ecobiblatex.doc.r39233.tar.xz 28-Feb-2019 02:34 436624 +ecobiblatex.doc.tar.xz 28-Feb-2019 02:34 436624 +ecobiblatex.r39233.tar.xz 28-Feb-2019 02:34 1676 +ecobiblatex.tar.xz 28-Feb-2019 02:34 1676 +econ-bst.doc.r68761.tar.xz 10-Nov-2023 00:45 976832 +econ-bst.doc.tar.xz 10-Nov-2023 00:45 976832 +econ-bst.r68761.tar.xz 10-Nov-2023 00:45 20272 +econ-bst.tar.xz 10-Nov-2023 00:45 20272 +econlipsum.doc.r58390.tar.xz 16-Mar-2021 00:32 567024 +econlipsum.doc.tar.xz 16-Mar-2021 00:32 567024 +econlipsum.r58390.tar.xz 16-Mar-2021 00:32 80636 +econlipsum.source.r58390.tar.xz 16-Mar-2021 00:32 84044 +econlipsum.source.tar.xz 16-Mar-2021 00:32 84044 +econlipsum.tar.xz 16-Mar-2021 00:32 80636 +econometrics.doc.r39396.tar.xz 28-Feb-2019 02:34 190740 +econometrics.doc.tar.xz 28-Feb-2019 02:34 190740 +econometrics.r39396.tar.xz 28-Feb-2019 02:34 2520 +econometrics.tar.xz 28-Feb-2019 02:34 2520 +economic.doc.r32639.tar.xz 28-Feb-2019 02:34 815976 +economic.doc.tar.xz 28-Feb-2019 02:34 815976 +economic.r32639.tar.xz 28-Feb-2019 02:34 31200 +economic.tar.xz 28-Feb-2019 02:34 31200 +ecothesis.doc.r48007.tar.xz 28-Feb-2019 02:34 341312 +ecothesis.doc.tar.xz 28-Feb-2019 02:34 341312 +ecothesis.r48007.tar.xz 28-Feb-2019 02:34 484 +ecothesis.tar.xz 28-Feb-2019 02:34 484 +ecv.doc.r24928.tar.xz 28-Feb-2019 02:34 252048 +ecv.doc.tar.xz 28-Feb-2019 02:34 252048 +ecv.r24928.tar.xz 28-Feb-2019 02:34 3792 +ecv.source.r24928.tar.xz 28-Feb-2019 02:34 10184 +ecv.source.tar.xz 28-Feb-2019 02:34 10184 +ecv.tar.xz 28-Feb-2019 02:34 3792 +eczar.doc.r57716.tar.xz 12-Feb-2021 00:57 45580 +eczar.doc.tar.xz 12-Feb-2021 00:57 45580 +eczar.r57716.tar.xz 12-Feb-2021 00:57 410460 +eczar.tar.xz 12-Feb-2021 00:57 410460 +ed.doc.r25231.tar.xz 28-Feb-2019 02:34 292204 +ed.doc.tar.xz 28-Feb-2019 02:34 292204 +ed.r25231.tar.xz 28-Feb-2019 02:34 2824 +ed.source.r25231.tar.xz 28-Feb-2019 02:34 7676 +ed.source.tar.xz 28-Feb-2019 02:34 7676 +ed.tar.xz 28-Feb-2019 02:34 2824 +edfnotes.doc.r21540.tar.xz 28-Feb-2019 02:34 281120 +edfnotes.doc.tar.xz 28-Feb-2019 02:34 281120 +edfnotes.r21540.tar.xz 28-Feb-2019 02:34 14048 +edfnotes.source.r21540.tar.xz 28-Feb-2019 02:34 2680 +edfnotes.source.tar.xz 28-Feb-2019 02:34 2680 +edfnotes.tar.xz 28-Feb-2019 02:34 14048 +edichokey.doc.r56223.tar.xz 01-Sep-2020 00:07 138132 +edichokey.doc.tar.xz 01-Sep-2020 00:07 138132 +edichokey.r56223.tar.xz 01-Sep-2020 00:07 1868 +edichokey.tar.xz 01-Sep-2020 00:07 1868 +edmac.doc.r72250.tar.xz 10-Sep-2024 23:47 90968 +edmac.doc.tar.xz 10-Sep-2024 23:47 90968 +edmac.r72250.tar.xz 10-Sep-2024 23:47 13196 +edmac.tar.xz 10-Sep-2024 23:47 13196 +edmargin.doc.r27599.tar.xz 28-Feb-2019 02:34 300996 +edmargin.doc.tar.xz 28-Feb-2019 02:34 300996 +edmargin.r27599.tar.xz 28-Feb-2019 02:34 4676 +edmargin.source.r27599.tar.xz 28-Feb-2019 02:34 14440 +edmargin.source.tar.xz 28-Feb-2019 02:34 14440 +edmargin.tar.xz 28-Feb-2019 02:34 4676 +edmaths.doc.r76243.tar.xz 06-Sep-2025 23:58 228316 +edmaths.doc.tar.xz 06-Sep-2025 23:58 228316 +edmaths.r76243.tar.xz 06-Sep-2025 23:58 4272 +edmaths.tar.xz 06-Sep-2025 23:58 4272 +eemeir.doc.r15878.tar.xz 28-Feb-2019 02:34 135680 +eemeir.doc.tar.xz 28-Feb-2019 02:34 135680 +eemeir.r15878.tar.xz 28-Feb-2019 02:34 1908 +eemeir.source.r15878.tar.xz 28-Feb-2019 02:34 7028 +eemeir.source.tar.xz 28-Feb-2019 02:34 7028 +eemeir.tar.xz 28-Feb-2019 02:34 1908 +eepic.doc.r15878.tar.xz 28-Feb-2019 02:34 96304 +eepic.doc.tar.xz 28-Feb-2019 02:34 96304 +eepic.r15878.tar.xz 28-Feb-2019 02:34 11752 +eepic.tar.xz 28-Feb-2019 02:34 11752 +efbox.doc.r33236.tar.xz 28-Feb-2019 02:34 146144 +efbox.doc.tar.xz 28-Feb-2019 02:34 146144 +efbox.r33236.tar.xz 28-Feb-2019 02:34 1824 +efbox.source.r33236.tar.xz 28-Feb-2019 02:34 4220 +efbox.source.tar.xz 28-Feb-2019 02:34 4220 +efbox.tar.xz 28-Feb-2019 02:34 1824 +egameps.doc.r15878.tar.xz 28-Feb-2019 02:34 137460 +egameps.doc.tar.xz 28-Feb-2019 02:34 137460 +egameps.r15878.tar.xz 28-Feb-2019 02:34 6516 +egameps.tar.xz 28-Feb-2019 02:34 6516 +egpeirce.doc.r66924.tar.xz 23-Apr-2023 23:54 5000796 +egpeirce.doc.tar.xz 23-Apr-2023 23:54 5000796 +egpeirce.r66924.tar.xz 23-Apr-2023 23:54 20580 +egpeirce.tar.xz 23-Apr-2023 23:54 20580 +egplot.doc.r20617.tar.xz 28-Feb-2019 02:34 484812 +egplot.doc.tar.xz 28-Feb-2019 02:34 484812 +egplot.r20617.tar.xz 28-Feb-2019 02:34 3560 +egplot.source.r20617.tar.xz 28-Feb-2019 02:34 10972 +egplot.source.tar.xz 28-Feb-2019 02:34 10972 +egplot.tar.xz 28-Feb-2019 02:34 3560 +ehhline.doc.r54676.tar.xz 11-Apr-2020 23:55 31192 +ehhline.doc.tar.xz 11-Apr-2020 23:55 31192 +ehhline.r54676.tar.xz 11-Apr-2020 23:55 1520 +ehhline.tar.xz 11-Apr-2020 23:55 1520 +eiad-ltx.doc.r15878.tar.xz 28-Feb-2019 02:34 1956 +eiad-ltx.doc.tar.xz 28-Feb-2019 02:34 1956 +eiad-ltx.r15878.tar.xz 28-Feb-2019 02:34 3672 +eiad-ltx.source.r15878.tar.xz 28-Feb-2019 02:34 4224 +eiad-ltx.source.tar.xz 28-Feb-2019 02:34 4224 +eiad-ltx.tar.xz 28-Feb-2019 02:34 3672 +eiad.doc.r15878.tar.xz 28-Feb-2019 02:34 117692 +eiad.doc.tar.xz 28-Feb-2019 02:34 117692 +eiad.r15878.tar.xz 28-Feb-2019 02:34 25636 +eiad.tar.xz 28-Feb-2019 02:34 25636 +eigo.doc.r76251.tar.xz 08-Sep-2025 00:07 335676 +eigo.doc.tar.xz 08-Sep-2025 00:07 335676 +eigo.r76251.tar.xz 08-Sep-2025 00:07 8080 +eigo.tar.xz 08-Sep-2025 00:07 8080 +eijkhout.r15878.tar.xz 28-Feb-2019 02:34 6960 +eijkhout.tar.xz 28-Feb-2019 02:34 6960 +einfart.doc.r70313.tar.xz 01-Mar-2024 22:55 252500 +einfart.doc.tar.xz 01-Mar-2024 22:55 252500 +einfart.r70313.tar.xz 01-Mar-2024 22:55 5376 +einfart.tar.xz 01-Mar-2024 22:55 5376 +ejpecp.doc.r60950.tar.xz 05-Nov-2021 00:52 284620 +ejpecp.doc.tar.xz 05-Nov-2021 00:52 284620 +ejpecp.r60950.tar.xz 05-Nov-2021 00:52 5704 +ejpecp.source.r60950.tar.xz 05-Nov-2021 00:52 7428 +ejpecp.source.tar.xz 05-Nov-2021 00:52 7428 +ejpecp.tar.xz 05-Nov-2021 00:52 5704 +ekaia.doc.r49594.tar.xz 28-Feb-2019 02:35 221680 +ekaia.doc.tar.xz 28-Feb-2019 02:35 221680 +ekaia.r49594.tar.xz 28-Feb-2019 02:35 2576 +ekaia.source.r49594.tar.xz 28-Feb-2019 02:35 10676 +ekaia.source.tar.xz 28-Feb-2019 02:35 10676 +ekaia.tar.xz 28-Feb-2019 02:35 2576 +ekdosis.doc.r69568.tar.xz 24-Jan-2024 00:46 816684 +ekdosis.doc.tar.xz 24-Jan-2024 00:46 816684 +ekdosis.r69568.tar.xz 24-Jan-2024 00:46 21688 +ekdosis.source.r69568.tar.xz 24-Jan-2024 00:46 97388 +ekdosis.source.tar.xz 24-Jan-2024 00:46 97388 +ekdosis.tar.xz 24-Jan-2024 00:46 21688 +ektype-tanka.doc.r63255.tar.xz 07-May-2022 23:54 53176 +ektype-tanka.doc.tar.xz 07-May-2022 23:54 53176 +ektype-tanka.r63255.tar.xz 07-May-2022 23:54 1898104 +ektype-tanka.tar.xz 07-May-2022 23:54 1898104 +elbioimp.doc.r21758.tar.xz 28-Feb-2019 02:35 288804 +elbioimp.doc.tar.xz 28-Feb-2019 02:35 288804 +elbioimp.r21758.tar.xz 28-Feb-2019 02:35 2096 +elbioimp.source.r21758.tar.xz 28-Feb-2019 02:35 5716 +elbioimp.source.tar.xz 28-Feb-2019 02:35 5716 +elbioimp.tar.xz 28-Feb-2019 02:35 2096 +electrumadf.doc.r72484.tar.xz 07-Oct-2024 23:49 1532836 +electrumadf.doc.tar.xz 07-Oct-2024 23:49 1532836 +electrumadf.r72484.tar.xz 07-Oct-2024 23:49 726996 +electrumadf.source.r72484.tar.xz 07-Oct-2024 23:49 27964 +electrumadf.source.tar.xz 07-Oct-2024 23:49 27964 +electrumadf.tar.xz 07-Oct-2024 23:49 726996 +eledform.doc.r38114.tar.xz 28-Feb-2019 02:35 128020 +eledform.doc.tar.xz 28-Feb-2019 02:35 128020 +eledform.r38114.tar.xz 28-Feb-2019 02:35 1480 +eledform.source.r38114.tar.xz 28-Feb-2019 02:35 4788 +eledform.source.tar.xz 28-Feb-2019 02:35 4788 +eledform.tar.xz 28-Feb-2019 02:35 1480 +eledmac.doc.r45418.tar.xz 28-Feb-2019 02:35 1845796 +eledmac.doc.tar.xz 28-Feb-2019 02:35 1845796 +eledmac.r45418.tar.xz 28-Feb-2019 02:35 39444 +eledmac.source.r45418.tar.xz 28-Feb-2019 02:35 164628 +eledmac.source.tar.xz 28-Feb-2019 02:35 164628 +eledmac.tar.xz 28-Feb-2019 02:35 39444 +elements.doc.r61792.tar.xz 30-Jan-2022 00:53 413276 +elements.doc.tar.xz 30-Jan-2022 00:53 413276 +elements.r61792.tar.xz 30-Jan-2022 00:53 8868 +elements.tar.xz 30-Jan-2022 00:53 8868 +ellipse.doc.r39025.tar.xz 28-Feb-2019 02:35 418676 +ellipse.doc.tar.xz 28-Feb-2019 02:35 418676 +ellipse.r39025.tar.xz 28-Feb-2019 02:35 2916 +ellipse.source.r39025.tar.xz 28-Feb-2019 02:35 13312 +ellipse.source.tar.xz 28-Feb-2019 02:35 13312 +ellipse.tar.xz 28-Feb-2019 02:35 2916 +ellipsis.doc.r55418.tar.xz 04-Jun-2020 23:55 217792 +ellipsis.doc.tar.xz 04-Jun-2020 23:55 217792 +ellipsis.r55418.tar.xz 04-Jun-2020 23:55 1648 +ellipsis.source.r55418.tar.xz 04-Jun-2020 23:55 7556 +ellipsis.source.tar.xz 04-Jun-2020 23:55 7556 +ellipsis.tar.xz 04-Jun-2020 23:55 1648 +elmath.doc.r15878.tar.xz 28-Feb-2019 02:35 63336 +elmath.doc.tar.xz 28-Feb-2019 02:35 63336 +elmath.r15878.tar.xz 28-Feb-2019 02:35 2128 +elmath.source.r15878.tar.xz 28-Feb-2019 02:35 3080 +elmath.source.tar.xz 28-Feb-2019 02:35 3080 +elmath.tar.xz 28-Feb-2019 02:35 2128 +elocalloc.doc.r42712.tar.xz 28-Feb-2019 02:35 154148 +elocalloc.doc.tar.xz 28-Feb-2019 02:35 154148 +elocalloc.r42712.tar.xz 28-Feb-2019 02:35 1084 +elocalloc.source.r42712.tar.xz 28-Feb-2019 02:35 2216 +elocalloc.source.tar.xz 28-Feb-2019 02:35 2216 +elocalloc.tar.xz 28-Feb-2019 02:35 1084 +elpres.doc.r71385.tar.xz 29-May-2024 23:48 381988 +elpres.doc.tar.xz 29-May-2024 23:48 381988 +elpres.r71385.tar.xz 29-May-2024 23:48 75204 +elpres.tar.xz 29-May-2024 23:48 75204 +els-cas-templates.doc.r71189.tar.xz 06-May-2024 23:46 1291616 +els-cas-templates.doc.tar.xz 06-May-2024 23:46 1291616 +els-cas-templates.r71189.tar.xz 06-May-2024 23:46 54872 +els-cas-templates.tar.xz 06-May-2024 23:46 54872 +elsarticle.doc.r73421.tar.xz 12-Jan-2025 00:45 911944 +elsarticle.doc.tar.xz 12-Jan-2025 00:45 911944 +elsarticle.r73421.tar.xz 12-Jan-2025 00:45 19024 +elsarticle.source.r73421.tar.xz 12-Jan-2025 00:45 11212 +elsarticle.source.tar.xz 12-Jan-2025 00:45 11212 +elsarticle.tar.xz 12-Jan-2025 00:45 19024 +elteiktdk.doc.r71086.tar.xz 26-Apr-2024 23:48 1003448 +elteiktdk.doc.tar.xz 26-Apr-2024 23:48 1003448 +elteiktdk.r71086.tar.xz 26-Apr-2024 23:48 2752 +elteiktdk.tar.xz 26-Apr-2024 23:48 2752 +elteikthesis.doc.r71087.tar.xz 26-Apr-2024 23:48 1028432 +elteikthesis.doc.tar.xz 26-Apr-2024 23:48 1028432 +elteikthesis.r71087.tar.xz 26-Apr-2024 23:48 5788 +elteikthesis.tar.xz 26-Apr-2024 23:48 5788 +eltex.doc.r15878.tar.xz 28-Feb-2019 02:35 176308 +eltex.doc.tar.xz 28-Feb-2019 02:35 176308 +eltex.r15878.tar.xz 28-Feb-2019 02:35 12888 +eltex.tar.xz 28-Feb-2019 02:35 12888 +elvish.doc.r15878.tar.xz 28-Feb-2019 02:35 2380 +elvish.doc.tar.xz 28-Feb-2019 02:35 2380 +elvish.r15878.tar.xz 28-Feb-2019 02:35 10496 +elvish.tar.xz 28-Feb-2019 02:35 10496 +elzcards.doc.r51894.tar.xz 17-Aug-2019 23:53 188816 +elzcards.doc.tar.xz 17-Aug-2019 23:53 188816 +elzcards.r51894.tar.xz 17-Aug-2019 23:53 5288 +elzcards.source.r51894.tar.xz 17-Aug-2019 23:53 20788 +elzcards.source.tar.xz 17-Aug-2019 23:53 20788 +elzcards.tar.xz 17-Aug-2019 23:53 5288 +emarks.doc.r24504.tar.xz 28-Feb-2019 02:35 1480964 +emarks.doc.tar.xz 28-Feb-2019 02:35 1480964 +emarks.r24504.tar.xz 28-Feb-2019 02:35 1896 +emarks.source.r24504.tar.xz 28-Feb-2019 02:35 8512 +emarks.source.tar.xz 28-Feb-2019 02:35 8512 +emarks.tar.xz 28-Feb-2019 02:35 1896 +embedall.doc.r51177.tar.xz 21-May-2019 23:38 235400 +embedall.doc.tar.xz 21-May-2019 23:38 235400 +embedall.r51177.tar.xz 21-May-2019 23:38 1780 +embedall.source.r51177.tar.xz 21-May-2019 23:38 5416 +embedall.source.tar.xz 21-May-2019 23:38 5416 +embedall.tar.xz 21-May-2019 23:38 1780 +embedfile.doc.r65528.tar.xz 13-Jan-2023 00:53 407664 +embedfile.doc.tar.xz 13-Jan-2023 00:53 407664 +embedfile.r65528.tar.xz 13-Jan-2023 00:53 5144 +embedfile.source.r65528.tar.xz 13-Jan-2023 00:53 13424 +embedfile.source.tar.xz 13-Jan-2023 00:53 13424 +embedfile.tar.xz 13-Jan-2023 00:53 5144 +embrac.doc.r57814.tar.xz 20-Feb-2021 22:35 464436 +embrac.doc.tar.xz 20-Feb-2021 22:35 464436 +embrac.r57814.tar.xz 20-Feb-2021 22:35 3880 +embrac.tar.xz 20-Feb-2021 22:35 3880 +emf.doc.r42023.tar.xz 28-Feb-2019 02:35 325204 +emf.doc.tar.xz 28-Feb-2019 02:35 325204 +emf.r42023.tar.xz 28-Feb-2019 02:35 1472 +emf.tar.xz 28-Feb-2019 02:35 1472 +emisa.doc.r71883.tar.xz 23-Jul-2024 23:47 513264 +emisa.doc.tar.xz 23-Jul-2024 23:47 513264 +emisa.r71883.tar.xz 23-Jul-2024 23:47 15384 +emisa.source.r71883.tar.xz 23-Jul-2024 23:47 48388 +emisa.source.tar.xz 23-Jul-2024 23:47 48388 +emisa.tar.xz 23-Jul-2024 23:47 15384 +emo.doc.r66944.tar.xz 26-Apr-2023 23:54 291168 +emo.doc.tar.xz 26-Apr-2023 23:54 291168 +emo.r66944.tar.xz 26-Apr-2023 23:54 119612 +emo.source.r66944.tar.xz 26-Apr-2023 23:54 14440 +emo.source.tar.xz 26-Apr-2023 23:54 14440 +emo.tar.xz 26-Apr-2023 23:54 119612 +emoji.doc.r59961.tar.xz 17-Jul-2021 23:53 1131608 +emoji.doc.tar.xz 17-Jul-2021 23:53 1131608 +emoji.r59961.tar.xz 17-Jul-2021 23:53 43104 +emoji.tar.xz 17-Jul-2021 23:53 43104 +emojicite.doc.r55131.tar.xz 14-May-2020 14:33 173436 +emojicite.doc.tar.xz 14-May-2020 14:33 173436 +emojicite.r55131.tar.xz 14-May-2020 14:33 1328 +emojicite.tar.xz 14-May-2020 14:33 1328 +emotion.doc.r69834.tar.xz 14-Feb-2024 00:46 35072 +emotion.doc.tar.xz 14-Feb-2024 00:46 35072 +emotion.r69834.tar.xz 14-Feb-2024 00:46 1140 +emotion.tar.xz 14-Feb-2024 00:46 1140 +emp.doc.r23483.tar.xz 28-Feb-2019 02:35 212864 +emp.doc.tar.xz 28-Feb-2019 02:35 212864 +emp.r23483.tar.xz 28-Feb-2019 02:35 3236 +emp.source.r23483.tar.xz 28-Feb-2019 02:35 9284 +emp.source.tar.xz 28-Feb-2019 02:35 9284 +emp.tar.xz 28-Feb-2019 02:35 3236 +emptypage.doc.r18064.tar.xz 28-Feb-2019 02:35 50156 +emptypage.doc.tar.xz 28-Feb-2019 02:35 50156 +emptypage.r18064.tar.xz 28-Feb-2019 02:35 1048 +emptypage.source.r18064.tar.xz 28-Feb-2019 02:35 1856 +emptypage.source.tar.xz 28-Feb-2019 02:35 1856 +emptypage.tar.xz 28-Feb-2019 02:35 1048 +emulateapj.doc.r74166.tar.xz 21-Feb-2025 00:50 147968 +emulateapj.doc.tar.xz 21-Feb-2025 00:50 147968 +emulateapj.r74166.tar.xz 21-Feb-2025 00:50 18296 +emulateapj.tar.xz 21-Feb-2025 00:50 18296 +enctex.doc.r34957.tar.xz 28-Feb-2019 02:35 253856 +enctex.doc.tar.xz 28-Feb-2019 02:35 253856 +enctex.r34957.tar.xz 28-Feb-2019 02:35 23748 +enctex.tar.xz 28-Feb-2019 02:35 23748 +encxvlna.doc.r34087.tar.xz 28-Feb-2019 02:35 251156 +encxvlna.doc.tar.xz 28-Feb-2019 02:35 251156 +encxvlna.r34087.tar.xz 28-Feb-2019 02:35 2572 +encxvlna.tar.xz 28-Feb-2019 02:35 2572 +endfloat.doc.r57090.tar.xz 08-Dec-2020 00:58 181292 +endfloat.doc.tar.xz 08-Dec-2020 00:58 181292 +endfloat.r57090.tar.xz 08-Dec-2020 00:58 5080 +endfloat.source.r57090.tar.xz 08-Dec-2020 00:58 29220 +endfloat.source.tar.xz 08-Dec-2020 00:58 29220 +endfloat.tar.xz 08-Dec-2020 00:58 5080 +endheads.doc.r73959.tar.xz 14-Feb-2025 00:49 265668 +endheads.doc.tar.xz 14-Feb-2025 00:49 265668 +endheads.r73959.tar.xz 14-Feb-2025 00:49 2572 +endheads.source.r73959.tar.xz 14-Feb-2025 00:49 7872 +endheads.source.tar.xz 14-Feb-2025 00:49 7872 +endheads.tar.xz 14-Feb-2025 00:49 2572 +endiagram.doc.r34486.tar.xz 28-Feb-2019 02:35 643640 +endiagram.doc.tar.xz 28-Feb-2019 02:35 643640 +endiagram.r34486.tar.xz 28-Feb-2019 02:35 8772 +endiagram.tar.xz 28-Feb-2019 02:35 8772 +endnotes-hy.doc.r54758.tar.xz 15-Apr-2020 23:56 303396 +endnotes-hy.doc.tar.xz 15-Apr-2020 23:56 303396 +endnotes-hy.r54758.tar.xz 15-Apr-2020 23:56 1484 +endnotes-hy.source.r54758.tar.xz 15-Apr-2020 23:56 4740 +endnotes-hy.source.tar.xz 15-Apr-2020 23:56 4740 +endnotes-hy.tar.xz 15-Apr-2020 23:56 1484 +endnotes.doc.r53319.tar.xz 05-Jan-2020 00:55 280164 +endnotes.doc.tar.xz 05-Jan-2020 00:55 280164 +endnotes.r53319.tar.xz 05-Jan-2020 00:55 5500 +endnotes.tar.xz 05-Jan-2020 00:55 5500 +endnotesj.doc.r47703.tar.xz 28-Feb-2019 02:35 152524 +endnotesj.doc.tar.xz 28-Feb-2019 02:35 152524 +endnotesj.r47703.tar.xz 28-Feb-2019 02:35 5292 +endnotesj.tar.xz 28-Feb-2019 02:35 5292 +endofproofwd.doc.r55643.tar.xz 23-Jun-2020 23:57 680 +endofproofwd.doc.tar.xz 23-Jun-2020 23:57 680 +endofproofwd.r55643.tar.xz 23-Jun-2020 23:57 1996 +endofproofwd.tar.xz 23-Jun-2020 23:57 1996 +engpron.doc.r16558.tar.xz 28-Feb-2019 02:35 1928396 +engpron.doc.tar.xz 28-Feb-2019 02:35 1928396 +engpron.r16558.tar.xz 28-Feb-2019 02:35 3860 +engpron.source.r16558.tar.xz 28-Feb-2019 02:35 24988 +engpron.source.tar.xz 28-Feb-2019 02:35 24988 +engpron.tar.xz 28-Feb-2019 02:35 3860 +engrec.doc.r15878.tar.xz 28-Feb-2019 02:35 270476 +engrec.doc.tar.xz 28-Feb-2019 02:35 270476 +engrec.r15878.tar.xz 28-Feb-2019 02:35 1832 +engrec.source.r15878.tar.xz 28-Feb-2019 02:35 7364 +engrec.source.tar.xz 28-Feb-2019 02:35 7364 +engrec.tar.xz 28-Feb-2019 02:35 1832 +engtlc.doc.r28571.tar.xz 28-Feb-2019 02:35 599048 +engtlc.doc.tar.xz 28-Feb-2019 02:35 599048 +engtlc.r28571.tar.xz 28-Feb-2019 02:35 3740 +engtlc.tar.xz 28-Feb-2019 02:35 3740 +enigma.doc.r29802.tar.xz 28-Feb-2019 02:35 266504 +enigma.doc.tar.xz 28-Feb-2019 02:35 266504 +enigma.r29802.tar.xz 28-Feb-2019 02:35 18320 +enigma.tar.xz 28-Feb-2019 02:35 18320 +enotez.doc.r61490.tar.xz 05-Jan-2022 00:53 469756 +enotez.doc.tar.xz 05-Jan-2022 00:53 469756 +enotez.r61490.tar.xz 05-Jan-2022 00:53 7368 +enotez.tar.xz 05-Jan-2022 00:53 7368 +ensps-colorscheme.doc.r71431.tar.xz 04-Jun-2024 23:46 212692 +ensps-colorscheme.doc.tar.xz 04-Jun-2024 23:46 212692 +ensps-colorscheme.r71431.tar.xz 04-Jun-2024 23:46 1540 +ensps-colorscheme.source.r71431.tar.xz 04-Jun-2024 23:46 3276 +ensps-colorscheme.source.tar.xz 04-Jun-2024 23:46 3276 +ensps-colorscheme.tar.xz 04-Jun-2024 23:46 1540 +enumext.doc.r75736.tar.xz 10-Jul-2025 23:50 1683520 +enumext.doc.tar.xz 10-Jul-2025 23:50 1683520 +enumext.r75736.tar.xz 10-Jul-2025 23:50 26244 +enumext.source.r75736.tar.xz 10-Jul-2025 23:50 94696 +enumext.source.tar.xz 10-Jul-2025 23:50 94696 +enumext.tar.xz 10-Jul-2025 23:50 26244 +enumitem-zref.doc.r75712.tar.xz 07-Jul-2025 23:50 684144 +enumitem-zref.doc.tar.xz 07-Jul-2025 23:50 684144 +enumitem-zref.r75712.tar.xz 07-Jul-2025 23:50 7176 +enumitem-zref.source.r75712.tar.xz 07-Jul-2025 23:50 24888 +enumitem-zref.source.tar.xz 07-Jul-2025 23:50 24888 +enumitem-zref.tar.xz 07-Jul-2025 23:50 7176 +enumitem.doc.r73750.tar.xz 07-Feb-2025 00:49 169252 +enumitem.doc.tar.xz 07-Feb-2025 00:49 169252 +enumitem.r73750.tar.xz 07-Feb-2025 00:49 13800 +enumitem.tar.xz 07-Feb-2025 00:49 13800 +enumsub.doc.r75967.tar.xz 04-Aug-2025 23:45 351712 +enumsub.doc.tar.xz 04-Aug-2025 23:45 351712 +enumsub.r75967.tar.xz 04-Aug-2025 23:45 1648 +enumsub.source.r75967.tar.xz 04-Aug-2025 23:45 3368 +enumsub.source.tar.xz 04-Aug-2025 23:45 3368 +enumsub.tar.xz 04-Aug-2025 23:45 1648 +envbig.doc.r15878.tar.xz 28-Feb-2019 02:35 404 +envbig.doc.tar.xz 28-Feb-2019 02:35 404 +envbig.r15878.tar.xz 28-Feb-2019 02:35 1368 +envbig.tar.xz 28-Feb-2019 02:35 1368 +envelope-letter.doc.r76175.tar.xz 29-Aug-2025 23:49 74816 +envelope-letter.doc.tar.xz 29-Aug-2025 23:49 74816 +envelope-letter.r76175.tar.xz 29-Aug-2025 23:49 2452 +envelope-letter.tar.xz 29-Aug-2025 23:49 2452 +enverb.doc.r73422.tar.xz 12-Jan-2025 00:45 347520 +enverb.doc.tar.xz 12-Jan-2025 00:45 347520 +enverb.r73422.tar.xz 12-Jan-2025 00:45 3608 +enverb.source.r73422.tar.xz 12-Jan-2025 00:45 6752 +enverb.source.tar.xz 12-Jan-2025 00:45 6752 +enverb.tar.xz 12-Jan-2025 00:45 3608 +environ.doc.r56615.tar.xz 09-Oct-2020 23:59 156300 +environ.doc.tar.xz 09-Oct-2020 23:59 156300 +environ.r56615.tar.xz 09-Oct-2020 23:59 1884 +environ.source.r56615.tar.xz 09-Oct-2020 23:59 6420 +environ.source.tar.xz 09-Oct-2020 23:59 6420 +environ.tar.xz 09-Oct-2020 23:59 1884 +envlab.doc.r61937.tar.xz 08-Feb-2022 00:53 341332 +envlab.doc.tar.xz 08-Feb-2022 00:53 341332 +envlab.r61937.tar.xz 08-Feb-2022 00:53 5492 +envlab.source.r61937.tar.xz 08-Feb-2022 00:53 14628 +envlab.source.tar.xz 08-Feb-2022 00:53 14628 +envlab.tar.xz 08-Feb-2022 00:53 5492 +eolang.aarch64-linux.r69391.tar.xz 12-Jan-2024 00:46 336 +eolang.aarch64-linux.tar.xz 12-Jan-2024 00:46 336 +eolang.amd64-freebsd.r69391.tar.xz 12-Jan-2024 00:46 336 +eolang.amd64-freebsd.tar.xz 12-Jan-2024 00:46 336 +eolang.amd64-netbsd.r69391.tar.xz 12-Jan-2024 00:46 340 +eolang.amd64-netbsd.tar.xz 12-Jan-2024 00:46 340 +eolang.armhf-linux.r69391.tar.xz 12-Jan-2024 00:46 340 +eolang.armhf-linux.tar.xz 12-Jan-2024 00:46 340 +eolang.doc.r74755.tar.xz 27-Mar-2025 00:50 1308296 +eolang.doc.tar.xz 27-Mar-2025 00:50 1308296 +eolang.i386-freebsd.r69391.tar.xz 12-Jan-2024 00:46 340 +eolang.i386-freebsd.tar.xz 12-Jan-2024 00:46 340 +eolang.i386-linux.r69391.tar.xz 12-Jan-2024 00:46 336 +eolang.i386-linux.tar.xz 12-Jan-2024 00:46 336 +eolang.i386-netbsd.r69391.tar.xz 12-Jan-2024 00:46 340 +eolang.i386-netbsd.tar.xz 12-Jan-2024 00:46 340 +eolang.i386-solaris.r69391.tar.xz 12-Jan-2024 00:46 336 +eolang.i386-solaris.tar.xz 12-Jan-2024 00:46 336 +eolang.r74755.tar.xz 27-Mar-2025 00:50 9096 +eolang.source.r74755.tar.xz 27-Mar-2025 00:50 16984 +eolang.source.tar.xz 27-Mar-2025 00:50 16984 +eolang.tar.xz 27-Mar-2025 00:50 9096 +eolang.universal-darwin.r69391.tar.xz 12-Jan-2024 00:46 340 +eolang.universal-darwin.tar.xz 12-Jan-2024 00:46 340 +eolang.windows.r69391.tar.xz 12-Jan-2024 00:46 2304 +eolang.windows.tar.xz 12-Jan-2024 00:46 2304 +eolang.x86_64-cygwin.r69391.tar.xz 12-Jan-2024 00:46 340 +eolang.x86_64-cygwin.tar.xz 12-Jan-2024 00:46 340 +eolang.x86_64-darwinlegacy.r69391.tar.xz 12-Jan-2024 00:46 348 +eolang.x86_64-darwinlegacy.tar.xz 12-Jan-2024 00:46 348 +eolang.x86_64-linux.r69391.tar.xz 12-Jan-2024 00:46 340 +eolang.x86_64-linux.tar.xz 12-Jan-2024 00:46 340 +eolang.x86_64-linuxmusl.r69391.tar.xz 12-Jan-2024 00:46 340 +eolang.x86_64-linuxmusl.tar.xz 12-Jan-2024 00:46 340 +eolang.x86_64-solaris.r69391.tar.xz 12-Jan-2024 00:46 336 +eolang.x86_64-solaris.tar.xz 12-Jan-2024 00:46 336 +eoldef.doc.r76050.tar.xz 13-Aug-2025 23:46 147152 +eoldef.doc.tar.xz 13-Aug-2025 23:46 147152 +eoldef.r76050.tar.xz 13-Aug-2025 23:46 1676 +eoldef.tar.xz 13-Aug-2025 23:46 1676 +epcqrcode.doc.r70956.tar.xz 15-Apr-2024 23:47 157396 +epcqrcode.doc.tar.xz 15-Apr-2024 23:47 157396 +epcqrcode.r70956.tar.xz 15-Apr-2024 23:47 4240 +epcqrcode.source.r70956.tar.xz 15-Apr-2024 23:47 5840 +epcqrcode.source.tar.xz 15-Apr-2024 23:47 5840 +epcqrcode.tar.xz 15-Apr-2024 23:47 4240 +epigrafica.doc.r17210.tar.xz 28-Feb-2019 02:35 266312 +epigrafica.doc.tar.xz 28-Feb-2019 02:35 266312 +epigrafica.r17210.tar.xz 28-Feb-2019 02:35 343668 +epigrafica.tar.xz 28-Feb-2019 02:35 343668 +epigram.r20513.tar.xz 28-Feb-2019 02:35 852 +epigram.tar.xz 28-Feb-2019 02:35 852 +epigraph-keys.doc.r75301.tar.xz 23-May-2025 23:46 311424 +epigraph-keys.doc.tar.xz 23-May-2025 23:46 311424 +epigraph-keys.r75301.tar.xz 23-May-2025 23:46 1840 +epigraph-keys.tar.xz 23-May-2025 23:46 1840 +epigraph.doc.r54857.tar.xz 23-Apr-2020 23:55 315068 +epigraph.doc.tar.xz 23-Apr-2020 23:55 315068 +epigraph.r54857.tar.xz 23-Apr-2020 23:55 2000 +epigraph.source.r54857.tar.xz 23-Apr-2020 23:55 10580 +epigraph.source.tar.xz 23-Apr-2020 23:55 10580 +epigraph.tar.xz 23-Apr-2020 23:55 2000 +epiolmec.doc.r15878.tar.xz 28-Feb-2019 02:35 122428 +epiolmec.doc.tar.xz 28-Feb-2019 02:35 122428 +epiolmec.r15878.tar.xz 28-Feb-2019 02:35 108800 +epiolmec.source.r15878.tar.xz 28-Feb-2019 02:35 6548 +epiolmec.source.tar.xz 28-Feb-2019 02:35 6548 +epiolmec.tar.xz 28-Feb-2019 02:35 108800 +eplain.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:35 324 +eplain.aarch64-linux.tar.xz 28-Feb-2019 02:35 324 +eplain.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:35 324 +eplain.amd64-freebsd.tar.xz 28-Feb-2019 02:35 324 +eplain.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:35 320 +eplain.amd64-netbsd.tar.xz 28-Feb-2019 02:35 320 +eplain.armhf-linux.r30015.tar.xz 28-Feb-2019 02:35 320 +eplain.armhf-linux.tar.xz 28-Feb-2019 02:35 320 +eplain.doc.r71409.tar.xz 02-Jun-2024 23:47 1003736 +eplain.doc.tar.xz 02-Jun-2024 23:47 1003736 +eplain.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:35 324 +eplain.i386-freebsd.tar.xz 28-Feb-2019 02:35 324 +eplain.i386-linux.r3006.tar.xz 28-Feb-2019 02:35 320 +eplain.i386-linux.tar.xz 28-Feb-2019 02:35 320 +eplain.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:35 320 +eplain.i386-netbsd.tar.xz 28-Feb-2019 02:35 320 +eplain.i386-solaris.r8102.tar.xz 28-Feb-2019 02:35 320 +eplain.i386-solaris.tar.xz 28-Feb-2019 02:35 320 +eplain.r71409.tar.xz 02-Jun-2024 23:47 43096 +eplain.source.r71409.tar.xz 02-Jun-2024 23:47 288968 +eplain.source.tar.xz 02-Jun-2024 23:47 288968 +eplain.tar.xz 02-Jun-2024 23:47 43096 +eplain.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 320 +eplain.universal-darwin.tar.xz 25-Feb-2021 18:16 320 +eplain.windows.r65891.tar.xz 20-Feb-2023 22:12 2332 +eplain.windows.tar.xz 20-Feb-2023 22:12 2332 +eplain.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:35 328 +eplain.x86_64-cygwin.tar.xz 28-Feb-2019 02:35 328 +eplain.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:35 332 +eplain.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:35 332 +eplain.x86_64-linux.r3185.tar.xz 28-Feb-2019 02:35 320 +eplain.x86_64-linux.tar.xz 28-Feb-2019 02:35 320 +eplain.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:35 324 +eplain.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:35 324 +eplain.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:35 324 +eplain.x86_64-solaris.tar.xz 28-Feb-2019 02:35 324 +epsdice.doc.r15878.tar.xz 28-Feb-2019 02:35 66176 +epsdice.doc.tar.xz 28-Feb-2019 02:35 66176 +epsdice.r15878.tar.xz 28-Feb-2019 02:35 5360 +epsdice.source.r15878.tar.xz 28-Feb-2019 02:35 6704 +epsdice.source.tar.xz 28-Feb-2019 02:35 6704 +epsdice.tar.xz 28-Feb-2019 02:35 5360 +epsf-dvipdfmx.doc.r35575.tar.xz 28-Feb-2019 02:35 2052 +epsf-dvipdfmx.doc.tar.xz 28-Feb-2019 02:35 2052 +epsf-dvipdfmx.r35575.tar.xz 28-Feb-2019 02:35 1036 +epsf-dvipdfmx.tar.xz 28-Feb-2019 02:35 1036 +epsf.doc.r21461.tar.xz 28-Feb-2019 02:35 274016 +epsf.doc.tar.xz 28-Feb-2019 02:35 274016 +epsf.r21461.tar.xz 28-Feb-2019 02:35 7544 +epsf.tar.xz 28-Feb-2019 02:35 7544 +epsincl.doc.r29349.tar.xz 28-Feb-2019 02:35 4208 +epsincl.doc.tar.xz 28-Feb-2019 02:35 4208 +epsincl.r29349.tar.xz 28-Feb-2019 02:35 1932 +epsincl.tar.xz 28-Feb-2019 02:35 1932 +epslatex-fr.doc.r19440.tar.xz 28-Feb-2019 02:35 1036360 +epslatex-fr.doc.tar.xz 28-Feb-2019 02:35 1036360 +epslatex-fr.r19440.tar.xz 28-Feb-2019 02:35 432 +epslatex-fr.tar.xz 28-Feb-2019 02:35 432 +epspdf.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:35 364 +epspdf.aarch64-linux.tar.xz 28-Feb-2019 02:35 364 +epspdf.amd64-freebsd.r29050.tar.xz 28-Feb-2019 02:35 364 +epspdf.amd64-freebsd.tar.xz 28-Feb-2019 02:35 364 +epspdf.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:35 364 +epspdf.amd64-netbsd.tar.xz 28-Feb-2019 02:35 364 +epspdf.armhf-linux.r30015.tar.xz 28-Feb-2019 02:35 364 +epspdf.armhf-linux.tar.xz 28-Feb-2019 02:35 364 +epspdf.doc.r74487.tar.xz 07-Mar-2025 00:51 242320 +epspdf.doc.tar.xz 07-Mar-2025 00:51 242320 +epspdf.i386-freebsd.r29050.tar.xz 28-Feb-2019 02:35 364 +epspdf.i386-freebsd.tar.xz 28-Feb-2019 02:35 364 +epspdf.i386-linux.r29050.tar.xz 28-Feb-2019 02:35 364 +epspdf.i386-linux.tar.xz 28-Feb-2019 02:35 364 +epspdf.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:35 364 +epspdf.i386-netbsd.tar.xz 28-Feb-2019 02:35 364 +epspdf.i386-solaris.r29050.tar.xz 28-Feb-2019 02:35 364 +epspdf.i386-solaris.tar.xz 28-Feb-2019 02:35 364 +epspdf.r74487.tar.xz 07-Mar-2025 00:51 31988 +epspdf.tar.xz 07-Mar-2025 00:51 31988 +epspdf.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 364 +epspdf.universal-darwin.tar.xz 25-Feb-2021 18:16 364 +epspdf.windows.r66270.tar.xz 02-Mar-2023 00:55 17776 +epspdf.windows.tar.xz 02-Mar-2023 00:55 17776 +epspdf.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:35 364 +epspdf.x86_64-cygwin.tar.xz 28-Feb-2019 02:35 364 +epspdf.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:35 372 +epspdf.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:35 372 +epspdf.x86_64-linux.r29050.tar.xz 28-Feb-2019 02:35 364 +epspdf.x86_64-linux.tar.xz 28-Feb-2019 02:35 364 +epspdf.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:35 368 +epspdf.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:35 368 +epspdf.x86_64-solaris.r29050.tar.xz 28-Feb-2019 02:35 364 +epspdf.x86_64-solaris.tar.xz 28-Feb-2019 02:35 364 +epspdfconversion.doc.r18703.tar.xz 28-Feb-2019 02:35 417580 +epspdfconversion.doc.tar.xz 28-Feb-2019 02:35 417580 +epspdfconversion.r18703.tar.xz 28-Feb-2019 02:35 3692 +epspdfconversion.tar.xz 28-Feb-2019 02:35 3692 +epstopdf-pkg.doc.r71084.tar.xz 26-Apr-2024 23:48 354368 +epstopdf-pkg.doc.tar.xz 26-Apr-2024 23:48 354368 +epstopdf-pkg.r71084.tar.xz 26-Apr-2024 23:48 4192 +epstopdf-pkg.source.r71084.tar.xz 26-Apr-2024 23:48 11996 +epstopdf-pkg.source.tar.xz 26-Apr-2024 23:48 11996 +epstopdf-pkg.tar.xz 26-Apr-2024 23:48 4192 +epstopdf.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:35 364 +epstopdf.aarch64-linux.tar.xz 28-Feb-2019 02:35 364 +epstopdf.amd64-freebsd.r18389.tar.xz 28-Feb-2019 02:35 364 +epstopdf.amd64-freebsd.tar.xz 28-Feb-2019 02:35 364 +epstopdf.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:35 364 +epstopdf.amd64-netbsd.tar.xz 28-Feb-2019 02:35 364 +epstopdf.armhf-linux.r30015.tar.xz 28-Feb-2019 02:35 364 +epstopdf.armhf-linux.tar.xz 28-Feb-2019 02:35 364 +epstopdf.doc.r71782.tar.xz 12-Jul-2024 23:47 29252 +epstopdf.doc.tar.xz 12-Jul-2024 23:47 29252 +epstopdf.i386-freebsd.r18388.tar.xz 28-Feb-2019 02:35 364 +epstopdf.i386-freebsd.tar.xz 28-Feb-2019 02:35 364 +epstopdf.i386-linux.r18336.tar.xz 28-Feb-2019 02:35 364 +epstopdf.i386-linux.tar.xz 28-Feb-2019 02:35 364 +epstopdf.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:35 364 +epstopdf.i386-netbsd.tar.xz 28-Feb-2019 02:35 364 +epstopdf.i386-solaris.r18421.tar.xz 28-Feb-2019 02:35 364 +epstopdf.i386-solaris.tar.xz 28-Feb-2019 02:35 364 +epstopdf.r71782.tar.xz 12-Jul-2024 23:47 14936 +epstopdf.tar.xz 12-Jul-2024 23:47 14936 +epstopdf.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 364 +epstopdf.universal-darwin.tar.xz 25-Feb-2021 18:16 364 +epstopdf.windows.r65891.tar.xz 20-Feb-2023 22:12 2356 +epstopdf.windows.tar.xz 20-Feb-2023 22:12 2356 +epstopdf.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:35 364 +epstopdf.x86_64-cygwin.tar.xz 28-Feb-2019 02:35 364 +epstopdf.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:35 372 +epstopdf.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:35 372 +epstopdf.x86_64-linux.r18365.tar.xz 28-Feb-2019 02:35 364 +epstopdf.x86_64-linux.tar.xz 28-Feb-2019 02:35 364 +epstopdf.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:35 372 +epstopdf.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:35 372 +epstopdf.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:35 364 +epstopdf.x86_64-solaris.tar.xz 28-Feb-2019 02:35 364 +eq-pin2corr.doc.r59477.tar.xz 05-Jun-2021 23:53 558764 +eq-pin2corr.doc.tar.xz 05-Jun-2021 23:53 558764 +eq-pin2corr.r59477.tar.xz 05-Jun-2021 23:53 3368 +eq-pin2corr.source.r59477.tar.xz 05-Jun-2021 23:53 7684 +eq-pin2corr.source.tar.xz 05-Jun-2021 23:53 7684 +eq-pin2corr.tar.xz 05-Jun-2021 23:53 3368 +eqell.doc.r22931.tar.xz 28-Feb-2019 02:35 183216 +eqell.doc.tar.xz 28-Feb-2019 02:35 183216 +eqell.r22931.tar.xz 28-Feb-2019 02:35 684 +eqell.tar.xz 28-Feb-2019 02:35 684 +eqexpl.doc.r63629.tar.xz 17-Jun-2022 23:51 87944 +eqexpl.doc.tar.xz 17-Jun-2022 23:51 87944 +eqexpl.r63629.tar.xz 17-Jun-2022 23:51 1272 +eqexpl.tar.xz 17-Jun-2022 23:51 1272 +eqlist.doc.r32257.tar.xz 28-Feb-2019 02:35 64524 +eqlist.doc.tar.xz 28-Feb-2019 02:35 64524 +eqlist.r32257.tar.xz 28-Feb-2019 02:35 1240 +eqlist.source.r32257.tar.xz 28-Feb-2019 02:35 6648 +eqlist.source.tar.xz 28-Feb-2019 02:35 6648 +eqlist.tar.xz 28-Feb-2019 02:35 1240 +eqnalign.doc.r43278.tar.xz 28-Feb-2019 02:35 288116 +eqnalign.doc.tar.xz 28-Feb-2019 02:35 288116 +eqnalign.r43278.tar.xz 28-Feb-2019 02:35 1724 +eqnalign.source.r43278.tar.xz 28-Feb-2019 02:35 4692 +eqnalign.source.tar.xz 28-Feb-2019 02:35 4692 +eqnalign.tar.xz 28-Feb-2019 02:35 1724 +eqname.r20678.tar.xz 28-Feb-2019 02:35 972 +eqname.tar.xz 28-Feb-2019 02:35 972 +eqnarray.doc.r20641.tar.xz 28-Feb-2019 02:35 101768 +eqnarray.doc.tar.xz 28-Feb-2019 02:35 101768 +eqnarray.r20641.tar.xz 28-Feb-2019 02:35 2196 +eqnarray.source.r20641.tar.xz 28-Feb-2019 02:35 5628 +eqnarray.source.tar.xz 28-Feb-2019 02:35 5628 +eqnarray.tar.xz 28-Feb-2019 02:35 2196 +eqnlines.doc.r75593.tar.xz 23-Jun-2025 23:48 574968 +eqnlines.doc.tar.xz 23-Jun-2025 23:48 574968 +eqnlines.r75593.tar.xz 23-Jun-2025 23:48 24940 +eqnlines.source.r75593.tar.xz 23-Jun-2025 23:48 63412 +eqnlines.source.tar.xz 23-Jun-2025 23:48 63412 +eqnlines.tar.xz 23-Jun-2025 23:48 24940 +eqnnumwarn.doc.r75878.tar.xz 23-Jul-2025 23:50 93352 +eqnnumwarn.doc.tar.xz 23-Jul-2025 23:50 93352 +eqnnumwarn.r75878.tar.xz 23-Jul-2025 23:50 3212 +eqnnumwarn.tar.xz 23-Jul-2025 23:50 3212 +eqparbox.doc.r45215.tar.xz 28-Feb-2019 02:35 214564 +eqparbox.doc.tar.xz 28-Feb-2019 02:35 214564 +eqparbox.r45215.tar.xz 28-Feb-2019 02:35 2792 +eqparbox.source.r45215.tar.xz 28-Feb-2019 02:35 16336 +eqparbox.source.tar.xz 28-Feb-2019 02:35 16336 +eqparbox.tar.xz 28-Feb-2019 02:35 2792 +erdc.doc.r15878.tar.xz 28-Feb-2019 02:35 685596 +erdc.doc.tar.xz 28-Feb-2019 02:35 685596 +erdc.r15878.tar.xz 28-Feb-2019 02:35 6056 +erdc.source.r15878.tar.xz 28-Feb-2019 02:35 16276 +erdc.source.tar.xz 28-Feb-2019 02:35 16276 +erdc.tar.xz 28-Feb-2019 02:35 6056 +erewhon-math.doc.r75989.tar.xz 05-Aug-2025 23:45 1975696 +erewhon-math.doc.tar.xz 05-Aug-2025 23:45 1975696 +erewhon-math.r75989.tar.xz 05-Aug-2025 23:45 295272 +erewhon-math.tar.xz 05-Aug-2025 23:45 295272 +erewhon.doc.r75452.tar.xz 08-Jun-2025 23:50 378508 +erewhon.doc.tar.xz 08-Jun-2025 23:50 378508 +erewhon.r75452.tar.xz 08-Jun-2025 23:50 2615712 +erewhon.tar.xz 08-Jun-2025 23:50 2615712 +errata.doc.r42428.tar.xz 28-Feb-2019 02:35 147644 +errata.doc.tar.xz 28-Feb-2019 02:35 147644 +errata.r42428.tar.xz 28-Feb-2019 02:35 1652 +errata.source.r42428.tar.xz 28-Feb-2019 02:35 6420 +errata.source.tar.xz 28-Feb-2019 02:35 6420 +errata.tar.xz 28-Feb-2019 02:35 1652 +erw-l3.doc.r61799.tar.xz 30-Jan-2022 00:53 483368 +erw-l3.doc.tar.xz 30-Jan-2022 00:53 483368 +erw-l3.r61799.tar.xz 30-Jan-2022 00:53 3944 +erw-l3.source.r61799.tar.xz 30-Jan-2022 00:53 6156 +erw-l3.source.tar.xz 30-Jan-2022 00:53 6156 +erw-l3.tar.xz 30-Jan-2022 00:53 3944 +es-tex-faq.doc.r15878.tar.xz 28-Feb-2019 02:35 495668 +es-tex-faq.doc.tar.xz 28-Feb-2019 02:35 495668 +es-tex-faq.r15878.tar.xz 28-Feb-2019 02:35 444 +es-tex-faq.tar.xz 28-Feb-2019 02:35 444 +esami.doc.r71883.tar.xz 23-Jul-2024 23:47 1465868 +esami.doc.tar.xz 23-Jul-2024 23:47 1465868 +esami.r71883.tar.xz 23-Jul-2024 23:47 21216 +esami.tar.xz 23-Jul-2024 23:47 21216 +esdiff.doc.r21385.tar.xz 28-Feb-2019 02:35 82640 +esdiff.doc.tar.xz 28-Feb-2019 02:35 82640 +esdiff.r21385.tar.xz 28-Feb-2019 02:35 1632 +esdiff.source.r21385.tar.xz 28-Feb-2019 02:35 2972 +esdiff.source.tar.xz 28-Feb-2019 02:35 2972 +esdiff.tar.xz 28-Feb-2019 02:35 1632 +esieecv.doc.r59638.tar.xz 19-Jun-2021 23:52 131168 +esieecv.doc.tar.xz 19-Jun-2021 23:52 131168 +esieecv.r59638.tar.xz 19-Jun-2021 23:52 1576 +esieecv.source.r59638.tar.xz 19-Jun-2021 23:52 6876 +esieecv.source.tar.xz 19-Jun-2021 23:52 6876 +esieecv.tar.xz 19-Jun-2021 23:52 1576 +esindex.doc.r71111.tar.xz 28-Apr-2024 23:47 73328 +esindex.doc.tar.xz 28-Apr-2024 23:47 73328 +esindex.r71111.tar.xz 28-Apr-2024 23:47 3940 +esindex.tar.xz 28-Apr-2024 23:47 3940 +esint-type1.doc.r15878.tar.xz 28-Feb-2019 02:35 41264 +esint-type1.doc.tar.xz 28-Feb-2019 02:35 41264 +esint-type1.r15878.tar.xz 28-Feb-2019 02:35 31568 +esint-type1.tar.xz 28-Feb-2019 02:35 31568 +esint.doc.r52240.tar.xz 01-Oct-2019 23:57 58132 +esint.doc.tar.xz 01-Oct-2019 23:57 58132 +esint.r52240.tar.xz 01-Oct-2019 23:57 5760 +esint.source.r52240.tar.xz 01-Oct-2019 23:57 6560 +esint.source.tar.xz 01-Oct-2019 23:57 6560 +esint.tar.xz 01-Oct-2019 23:57 5760 +esk.doc.r18115.tar.xz 28-Feb-2019 02:35 414448 +esk.doc.tar.xz 28-Feb-2019 02:35 414448 +esk.r18115.tar.xz 28-Feb-2019 02:35 3928 +esk.source.r18115.tar.xz 28-Feb-2019 02:35 15476 +esk.source.tar.xz 28-Feb-2019 02:35 15476 +esk.tar.xz 28-Feb-2019 02:35 3928 +eskd.doc.r15878.tar.xz 28-Feb-2019 02:35 262316 +eskd.doc.tar.xz 28-Feb-2019 02:35 262316 +eskd.r15878.tar.xz 28-Feb-2019 02:35 3760 +eskd.source.r15878.tar.xz 28-Feb-2019 02:35 7596 +eskd.source.tar.xz 28-Feb-2019 02:35 7596 +eskd.tar.xz 28-Feb-2019 02:35 3760 +eskdx.doc.r29235.tar.xz 28-Feb-2019 02:35 451672 +eskdx.doc.tar.xz 28-Feb-2019 02:35 451672 +eskdx.r29235.tar.xz 28-Feb-2019 02:35 17252 +eskdx.tar.xz 28-Feb-2019 02:35 17252 +eso-pic.doc.r67001.tar.xz 03-May-2023 23:53 290476 +eso-pic.doc.tar.xz 03-May-2023 23:53 290476 +eso-pic.r67001.tar.xz 03-May-2023 23:53 3840 +eso-pic.source.r67001.tar.xz 03-May-2023 23:53 6528 +eso-pic.source.tar.xz 03-May-2023 23:53 6528 +eso-pic.tar.xz 03-May-2023 23:53 3840 +esrelation.doc.r37236.tar.xz 28-Feb-2019 02:35 158904 +esrelation.doc.tar.xz 28-Feb-2019 02:35 158904 +esrelation.r37236.tar.xz 28-Feb-2019 02:35 33064 +esrelation.source.r37236.tar.xz 28-Feb-2019 02:35 6484 +esrelation.source.tar.xz 28-Feb-2019 02:35 6484 +esrelation.tar.xz 28-Feb-2019 02:35 33064 +essaykit.doc.r76197.tar.xz 31-Aug-2025 23:49 196632 +essaykit.doc.tar.xz 31-Aug-2025 23:49 196632 +essaykit.r76197.tar.xz 31-Aug-2025 23:49 1828 +essaykit.source.r76197.tar.xz 31-Aug-2025 23:49 2764 +essaykit.source.tar.xz 31-Aug-2025 23:49 2764 +essaykit.tar.xz 31-Aug-2025 23:49 1828 +esstix.doc.r22426.tar.xz 28-Feb-2019 02:35 286216 +esstix.doc.tar.xz 28-Feb-2019 02:35 286216 +esstix.r22426.tar.xz 28-Feb-2019 02:35 202196 +esstix.tar.xz 28-Feb-2019 02:35 202196 +estcpmm.doc.r17335.tar.xz 28-Feb-2019 02:35 284904 +estcpmm.doc.tar.xz 28-Feb-2019 02:35 284904 +estcpmm.r17335.tar.xz 28-Feb-2019 02:35 3128 +estcpmm.source.r17335.tar.xz 28-Feb-2019 02:35 8856 +estcpmm.source.tar.xz 28-Feb-2019 02:35 8856 +estcpmm.tar.xz 28-Feb-2019 02:35 3128 +esvect.doc.r32098.tar.xz 28-Feb-2019 02:35 44300 +esvect.doc.tar.xz 28-Feb-2019 02:35 44300 +esvect.r32098.tar.xz 28-Feb-2019 02:35 66880 +esvect.source.r32098.tar.xz 28-Feb-2019 02:35 6748 +esvect.source.tar.xz 28-Feb-2019 02:35 6748 +esvect.tar.xz 28-Feb-2019 02:35 66880 +etaremune.doc.r15878.tar.xz 28-Feb-2019 02:35 72980 +etaremune.doc.tar.xz 28-Feb-2019 02:35 72980 +etaremune.r15878.tar.xz 28-Feb-2019 02:35 1816 +etaremune.source.r15878.tar.xz 28-Feb-2019 02:35 6716 +etaremune.source.tar.xz 28-Feb-2019 02:35 6716 +etaremune.tar.xz 28-Feb-2019 02:35 1816 +etbb.doc.r69098.tar.xz 13-Dec-2023 00:44 357152 +etbb.doc.tar.xz 13-Dec-2023 00:44 357152 +etbb.r69098.tar.xz 13-Dec-2023 00:44 1052228 +etbb.tar.xz 13-Dec-2023 00:44 1052228 +etdipa.doc.r36354.tar.xz 28-Feb-2019 02:35 1019908 +etdipa.doc.tar.xz 28-Feb-2019 02:35 1019908 +etdipa.r36354.tar.xz 28-Feb-2019 02:35 556 +etdipa.tar.xz 28-Feb-2019 02:35 556 +etex-pkg.doc.r41784.tar.xz 28-Feb-2019 02:35 608 +etex-pkg.doc.tar.xz 28-Feb-2019 02:35 608 +etex-pkg.r41784.tar.xz 28-Feb-2019 02:35 6052 +etex-pkg.tar.xz 28-Feb-2019 02:35 6052 +etex.doc.r73850.tar.xz 11-Feb-2025 00:48 327336 +etex.doc.tar.xz 11-Feb-2025 00:48 327336 +etex.r73850.tar.xz 11-Feb-2025 00:48 11572 +etex.tar.xz 11-Feb-2025 00:48 11572 +etexcmds.doc.r53171.tar.xz 18-Dec-2019 00:54 300584 +etexcmds.doc.tar.xz 18-Dec-2019 00:54 300584 +etexcmds.r53171.tar.xz 18-Dec-2019 00:54 2448 +etexcmds.source.r53171.tar.xz 18-Dec-2019 00:54 5440 +etexcmds.source.tar.xz 18-Dec-2019 00:54 5440 +etexcmds.tar.xz 18-Dec-2019 00:54 2448 +etextools.doc.r20694.tar.xz 28-Feb-2019 02:35 928644 +etextools.doc.tar.xz 28-Feb-2019 02:35 928644 +etextools.r20694.tar.xz 28-Feb-2019 02:35 11492 +etextools.source.r20694.tar.xz 28-Feb-2019 02:35 54816 +etextools.source.tar.xz 28-Feb-2019 02:35 54816 +etextools.tar.xz 28-Feb-2019 02:35 11492 +ethiop-t1.doc.r15878.tar.xz 28-Feb-2019 02:35 7516 +ethiop-t1.doc.tar.xz 28-Feb-2019 02:35 7516 +ethiop-t1.r15878.tar.xz 28-Feb-2019 02:35 5184412 +ethiop-t1.tar.xz 28-Feb-2019 02:35 5184412 +ethiop.doc.r15878.tar.xz 28-Feb-2019 02:35 445324 +ethiop.doc.tar.xz 28-Feb-2019 02:35 445324 +ethiop.r15878.tar.xz 28-Feb-2019 02:35 60600 +ethiop.source.r15878.tar.xz 28-Feb-2019 02:35 13084 +ethiop.source.tar.xz 28-Feb-2019 02:35 13084 +ethiop.tar.xz 28-Feb-2019 02:35 60600 +etl.doc.r60998.tar.xz 09-Nov-2021 00:53 358088 +etl.doc.tar.xz 09-Nov-2021 00:53 358088 +etl.r60998.tar.xz 09-Nov-2021 00:53 4424 +etl.source.r60998.tar.xz 09-Nov-2021 00:53 15532 +etl.source.tar.xz 09-Nov-2021 00:53 15532 +etl.tar.xz 09-Nov-2021 00:53 4424 +etoc.doc.r69343.tar.xz 08-Jan-2024 00:46 943100 +etoc.doc.tar.xz 08-Jan-2024 00:46 943100 +etoc.r69343.tar.xz 08-Jan-2024 00:46 13544 +etoc.source.r69343.tar.xz 08-Jan-2024 00:46 123048 +etoc.source.tar.xz 08-Jan-2024 00:46 123048 +etoc.tar.xz 08-Jan-2024 00:46 13544 +etoolbox-de.doc.r21906.tar.xz 28-Feb-2019 02:35 234632 +etoolbox-de.doc.tar.xz 28-Feb-2019 02:35 234632 +etoolbox-de.r21906.tar.xz 28-Feb-2019 02:35 404 +etoolbox-de.tar.xz 28-Feb-2019 02:35 404 +etoolbox-generic.doc.r68513.tar.xz 11-Oct-2023 23:45 6616 +etoolbox-generic.doc.tar.xz 11-Oct-2023 23:45 6616 +etoolbox-generic.r68513.tar.xz 11-Oct-2023 23:45 1748 +etoolbox-generic.tar.xz 11-Oct-2023 23:45 1748 +etoolbox.doc.r73881.tar.xz 12-Feb-2025 00:49 245776 +etoolbox.doc.tar.xz 12-Feb-2025 00:49 245776 +etoolbox.r73881.tar.xz 12-Feb-2025 00:49 8760 +etoolbox.tar.xz 12-Feb-2025 00:49 8760 +etsvthor.doc.r48186.tar.xz 28-Feb-2019 02:35 680 +etsvthor.doc.tar.xz 28-Feb-2019 02:35 680 +etsvthor.r48186.tar.xz 28-Feb-2019 02:35 1416 +etsvthor.tar.xz 28-Feb-2019 02:35 1416 +euclidean-lattice.doc.r72985.tar.xz 28-Nov-2024 00:48 263752 +euclidean-lattice.doc.tar.xz 28-Nov-2024 00:48 263752 +euclidean-lattice.r72985.tar.xz 28-Nov-2024 00:48 3056 +euclidean-lattice.source.r72985.tar.xz 28-Nov-2024 00:48 8672 +euclidean-lattice.source.tar.xz 28-Nov-2024 00:48 8672 +euclidean-lattice.tar.xz 28-Nov-2024 00:48 3056 +euclideangeometry.doc.r67608.tar.xz 11-Jul-2023 23:43 1128200 +euclideangeometry.doc.tar.xz 11-Jul-2023 23:43 1128200 +euclideangeometry.r67608.tar.xz 11-Jul-2023 23:44 5236 +euclideangeometry.source.r67608.tar.xz 11-Jul-2023 23:43 20708 +euclideangeometry.source.tar.xz 11-Jul-2023 23:43 20708 +euclideangeometry.tar.xz 11-Jul-2023 23:44 5236 +euenc.doc.r19795.tar.xz 28-Feb-2019 02:35 145784 +euenc.doc.tar.xz 28-Feb-2019 02:35 145784 +euenc.r19795.tar.xz 28-Feb-2019 02:35 3272 +euenc.source.r19795.tar.xz 28-Feb-2019 02:35 6872 +euenc.source.tar.xz 28-Feb-2019 02:35 6872 +euenc.tar.xz 28-Feb-2019 02:35 3272 +euflag.doc.r55265.tar.xz 24-May-2020 22:03 105628 +euflag.doc.tar.xz 24-May-2020 22:03 105628 +euflag.r55265.tar.xz 24-May-2020 22:03 1652 +euflag.source.r55265.tar.xz 24-May-2020 22:03 18856 +euflag.source.tar.xz 24-May-2020 22:03 18856 +euflag.tar.xz 24-May-2020 22:03 1652 +eukdate.doc.r15878.tar.xz 28-Feb-2019 02:35 110240 +eukdate.doc.tar.xz 28-Feb-2019 02:35 110240 +eukdate.r15878.tar.xz 28-Feb-2019 02:35 1528 +eukdate.source.r15878.tar.xz 28-Feb-2019 02:35 4048 +eukdate.source.tar.xz 28-Feb-2019 02:35 4048 +eukdate.tar.xz 28-Feb-2019 02:35 1528 +euler-math.doc.r75988.tar.xz 05-Aug-2025 23:45 1549984 +euler-math.doc.tar.xz 05-Aug-2025 23:45 1549984 +euler-math.r75988.tar.xz 05-Aug-2025 23:45 262840 +euler-math.tar.xz 05-Aug-2025 23:45 262840 +euler.doc.r42428.tar.xz 28-Feb-2019 02:35 236756 +euler.doc.tar.xz 28-Feb-2019 02:35 236756 +euler.r42428.tar.xz 28-Feb-2019 02:35 3372 +euler.source.r42428.tar.xz 28-Feb-2019 02:35 9832 +euler.source.tar.xz 28-Feb-2019 02:35 9832 +euler.tar.xz 28-Feb-2019 02:35 3372 +eulerpx.doc.r63967.tar.xz 23-Jul-2022 23:55 337868 +eulerpx.doc.tar.xz 23-Jul-2022 23:55 337868 +eulerpx.r63967.tar.xz 23-Jul-2022 23:55 2720 +eulerpx.tar.xz 23-Jul-2022 23:55 2720 +eulervm.doc.r15878.tar.xz 28-Feb-2019 02:35 88072 +eulervm.doc.tar.xz 28-Feb-2019 02:35 88072 +eulervm.r15878.tar.xz 28-Feb-2019 02:35 13600 +eulervm.source.r15878.tar.xz 28-Feb-2019 02:35 17112 +eulervm.source.tar.xz 28-Feb-2019 02:35 17112 +eulervm.tar.xz 28-Feb-2019 02:35 13600 +euro-ce.doc.r25714.tar.xz 28-Feb-2019 02:35 5584 +euro-ce.doc.tar.xz 28-Feb-2019 02:35 5584 +euro-ce.r25714.tar.xz 28-Feb-2019 02:35 5936 +euro-ce.tar.xz 28-Feb-2019 02:35 5936 +euro.doc.r22191.tar.xz 28-Feb-2019 02:35 200188 +euro.doc.tar.xz 28-Feb-2019 02:35 200188 +euro.r22191.tar.xz 28-Feb-2019 02:35 2564 +euro.source.r22191.tar.xz 28-Feb-2019 02:35 14508 +euro.source.tar.xz 28-Feb-2019 02:35 14508 +euro.tar.xz 28-Feb-2019 02:35 2564 +euromoney.doc.r73069.tar.xz 08-Dec-2024 01:13 2158732 +euromoney.doc.tar.xz 08-Dec-2024 01:13 2158732 +euromoney.r73069.tar.xz 08-Dec-2024 01:13 2377212 +euromoney.tar.xz 08-Dec-2024 01:13 2377212 +europasscv.doc.r56829.tar.xz 02-Nov-2020 01:02 452684 +europasscv.doc.tar.xz 02-Nov-2020 01:02 452684 +europasscv.r56829.tar.xz 02-Nov-2020 01:02 30320 +europasscv.tar.xz 02-Nov-2020 01:02 30320 +europecv.doc.r75227.tar.xz 15-May-2025 23:50 1044424 +europecv.doc.tar.xz 15-May-2025 23:50 1044424 +europecv.r75227.tar.xz 15-May-2025 23:50 58616 +europecv.tar.xz 15-May-2025 23:50 58616 +eurosym.doc.r17265.tar.xz 28-Feb-2019 02:35 277732 +eurosym.doc.tar.xz 28-Feb-2019 02:35 277732 +eurosym.r17265.tar.xz 28-Feb-2019 02:35 139880 +eurosym.tar.xz 28-Feb-2019 02:35 139880 +euxm.r54074.tar.xz 04-Mar-2020 22:50 25788 +euxm.tar.xz 04-Mar-2020 22:50 25788 +evangelion-jfm.doc.r69751.tar.xz 09-Feb-2024 00:44 582400 +evangelion-jfm.doc.tar.xz 09-Feb-2024 00:44 582400 +evangelion-jfm.r69751.tar.xz 09-Feb-2024 00:44 3468 +evangelion-jfm.source.r69751.tar.xz 09-Feb-2024 00:44 16636 +evangelion-jfm.source.tar.xz 09-Feb-2024 00:44 16636 +evangelion-jfm.tar.xz 09-Feb-2024 00:44 3468 +everyhook.doc.r35675.tar.xz 28-Feb-2019 02:35 116288 +everyhook.doc.tar.xz 28-Feb-2019 02:35 116288 +everyhook.r35675.tar.xz 28-Feb-2019 02:35 2080 +everyhook.source.r35675.tar.xz 28-Feb-2019 02:35 7344 +everyhook.source.tar.xz 28-Feb-2019 02:35 7344 +everyhook.tar.xz 28-Feb-2019 02:35 2080 +everypage.doc.r56694.tar.xz 18-Oct-2020 23:57 161516 +everypage.doc.tar.xz 18-Oct-2020 23:57 161516 +everypage.r56694.tar.xz 18-Oct-2020 23:57 1772 +everypage.source.r56694.tar.xz 18-Oct-2020 23:57 7912 +everypage.source.tar.xz 18-Oct-2020 23:57 7912 +everypage.tar.xz 18-Oct-2020 23:57 1772 +everysel.doc.r57489.tar.xz 22-Jan-2021 00:57 442272 +everysel.doc.tar.xz 22-Jan-2021 00:57 442272 +everysel.r57489.tar.xz 22-Jan-2021 00:57 2380 +everysel.source.r57489.tar.xz 22-Jan-2021 00:57 5580 +everysel.source.tar.xz 22-Jan-2021 00:57 5580 +everysel.tar.xz 22-Jan-2021 00:57 2380 +everyshi.doc.r57001.tar.xz 25-Nov-2020 00:56 132236 +everyshi.doc.tar.xz 25-Nov-2020 00:56 132236 +everyshi.r57001.tar.xz 25-Nov-2020 00:56 2000 +everyshi.source.r57001.tar.xz 25-Nov-2020 00:56 4772 +everyshi.source.tar.xz 25-Nov-2020 00:56 4772 +everyshi.tar.xz 25-Nov-2020 00:56 2000 +exam-lite.doc.r65754.tar.xz 08-Feb-2023 00:53 148632 +exam-lite.doc.tar.xz 08-Feb-2023 00:53 148632 +exam-lite.r65754.tar.xz 08-Feb-2023 00:53 3232 +exam-lite.tar.xz 08-Feb-2023 00:53 3232 +exam-n.doc.r64674.tar.xz 10-Oct-2022 23:53 429124 +exam-n.doc.tar.xz 10-Oct-2022 23:53 429124 +exam-n.r64674.tar.xz 10-Oct-2022 23:53 14112 +exam-n.source.r64674.tar.xz 10-Oct-2022 23:53 44332 +exam-n.source.tar.xz 10-Oct-2022 23:53 44332 +exam-n.tar.xz 10-Oct-2022 23:53 14112 +exam-randomizechoices.doc.r61719.tar.xz 24-Jan-2022 00:53 313712 +exam-randomizechoices.doc.tar.xz 24-Jan-2022 00:53 313712 +exam-randomizechoices.r61719.tar.xz 24-Jan-2022 00:53 5624 +exam-randomizechoices.tar.xz 24-Jan-2022 00:53 5624 +exam-zh.doc.r74141.tar.xz 20-Feb-2025 00:50 2778584 +exam-zh.doc.tar.xz 20-Feb-2025 00:50 2778584 +exam-zh.r74141.tar.xz 20-Feb-2025 00:50 40020 +exam-zh.tar.xz 20-Feb-2025 00:50 40020 +exam.doc.r67600.tar.xz 10-Jul-2023 23:45 527728 +exam.doc.tar.xz 10-Jul-2023 23:45 527728 +exam.r67600.tar.xz 10-Jul-2023 23:45 50760 +exam.tar.xz 10-Jul-2023 23:45 50760 +examdesign.doc.r15878.tar.xz 28-Feb-2019 02:35 377000 +examdesign.doc.tar.xz 28-Feb-2019 02:35 377000 +examdesign.r15878.tar.xz 28-Feb-2019 02:35 10780 +examdesign.source.r15878.tar.xz 28-Feb-2019 02:35 29924 +examdesign.source.tar.xz 28-Feb-2019 02:35 29924 +examdesign.tar.xz 28-Feb-2019 02:35 10780 +example.r33398.tar.xz 28-Feb-2019 02:35 5516 +example.tar.xz 28-Feb-2019 02:35 5516 +examplep.doc.r55265.tar.xz 24-May-2020 22:03 379128 +examplep.doc.tar.xz 24-May-2020 22:03 379128 +examplep.r55265.tar.xz 24-May-2020 22:03 33788 +examplep.tar.xz 24-May-2020 22:03 33788 +examz.doc.r67303.tar.xz 08-Jun-2023 23:45 273112 +examz.doc.tar.xz 08-Jun-2023 23:45 273112 +examz.r67303.tar.xz 08-Jun-2023 23:45 2456 +examz.source.r67303.tar.xz 08-Jun-2023 23:45 10684 +examz.source.tar.xz 08-Jun-2023 23:45 10684 +examz.tar.xz 08-Jun-2023 23:45 2456 +exceltex.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:35 340 +exceltex.aarch64-linux.tar.xz 28-Feb-2019 02:35 340 +exceltex.amd64-freebsd.r25860.tar.xz 28-Feb-2019 02:35 340 +exceltex.amd64-freebsd.tar.xz 28-Feb-2019 02:35 340 +exceltex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:35 340 +exceltex.amd64-netbsd.tar.xz 28-Feb-2019 02:35 340 +exceltex.armhf-linux.r30015.tar.xz 28-Feb-2019 02:35 340 +exceltex.armhf-linux.tar.xz 28-Feb-2019 02:35 340 +exceltex.doc.r26313.tar.xz 28-Feb-2019 02:35 3016 +exceltex.doc.tar.xz 28-Feb-2019 02:35 3016 +exceltex.i386-freebsd.r25860.tar.xz 28-Feb-2019 02:35 340 +exceltex.i386-freebsd.tar.xz 28-Feb-2019 02:35 340 +exceltex.i386-linux.r25860.tar.xz 28-Feb-2019 02:35 340 +exceltex.i386-linux.tar.xz 28-Feb-2019 02:35 340 +exceltex.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:35 340 +exceltex.i386-netbsd.tar.xz 28-Feb-2019 02:35 340 +exceltex.i386-solaris.r25860.tar.xz 28-Feb-2019 02:35 340 +exceltex.i386-solaris.tar.xz 28-Feb-2019 02:35 340 +exceltex.r26313.tar.xz 28-Feb-2019 02:35 6572 +exceltex.tar.xz 28-Feb-2019 02:35 6572 +exceltex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 336 +exceltex.universal-darwin.tar.xz 25-Feb-2021 18:16 336 +exceltex.windows.r65891.tar.xz 20-Feb-2023 22:12 2308 +exceltex.windows.tar.xz 20-Feb-2023 22:12 2308 +exceltex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:35 340 +exceltex.x86_64-cygwin.tar.xz 28-Feb-2019 02:35 340 +exceltex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:35 348 +exceltex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:35 348 +exceltex.x86_64-linux.r25860.tar.xz 28-Feb-2019 02:35 340 +exceltex.x86_64-linux.tar.xz 28-Feb-2019 02:35 340 +exceltex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:35 344 +exceltex.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:35 344 +exceltex.x86_64-solaris.r25860.tar.xz 28-Feb-2019 02:35 340 +exceltex.x86_64-solaris.tar.xz 28-Feb-2019 02:35 340 +excludeonly.doc.r17262.tar.xz 28-Feb-2019 02:35 218824 +excludeonly.doc.tar.xz 28-Feb-2019 02:35 218824 +excludeonly.r17262.tar.xz 28-Feb-2019 02:35 1664 +excludeonly.tar.xz 28-Feb-2019 02:35 1664 +exercise.doc.r35417.tar.xz 28-Feb-2019 02:35 318960 +exercise.doc.tar.xz 28-Feb-2019 02:35 318960 +exercise.r35417.tar.xz 28-Feb-2019 02:35 7228 +exercise.source.r35417.tar.xz 28-Feb-2019 02:35 15012 +exercise.source.tar.xz 28-Feb-2019 02:35 15012 +exercise.tar.xz 28-Feb-2019 02:35 7228 +exercisebank.doc.r50448.tar.xz 19-Mar-2019 01:25 312648 +exercisebank.doc.tar.xz 19-Mar-2019 01:25 312648 +exercisebank.r50448.tar.xz 19-Mar-2019 01:25 8984 +exercisebank.tar.xz 19-Mar-2019 01:25 8984 +exercisepoints.doc.r49590.tar.xz 28-Feb-2019 02:35 228132 +exercisepoints.doc.tar.xz 28-Feb-2019 02:35 228132 +exercisepoints.r49590.tar.xz 28-Feb-2019 02:35 3088 +exercisepoints.tar.xz 28-Feb-2019 02:35 3088 +exercises.doc.r55188.tar.xz 17-May-2020 22:59 356220 +exercises.doc.tar.xz 17-May-2020 22:59 356220 +exercises.r55188.tar.xz 17-May-2020 22:59 2216 +exercises.source.r55188.tar.xz 17-May-2020 22:59 7728 +exercises.source.tar.xz 17-May-2020 22:59 7728 +exercises.tar.xz 17-May-2020 22:59 2216 +exercisesheets.doc.r71063.tar.xz 24-Apr-2024 23:48 144480 +exercisesheets.doc.tar.xz 24-Apr-2024 23:48 144480 +exercisesheets.r71063.tar.xz 24-Apr-2024 23:48 12520 +exercisesheets.tar.xz 24-Apr-2024 23:48 12520 +exesheet.doc.r75102.tar.xz 04-May-2025 23:46 286588 +exesheet.doc.tar.xz 04-May-2025 23:46 286588 +exesheet.r75102.tar.xz 04-May-2025 23:46 6304 +exesheet.source.r75102.tar.xz 04-May-2025 23:46 27820 +exesheet.source.tar.xz 04-May-2025 23:46 27820 +exesheet.tar.xz 04-May-2025 23:46 6304 +exframe.doc.r72595.tar.xz 19-Oct-2024 23:53 444324 +exframe.doc.tar.xz 19-Oct-2024 23:53 444324 +exframe.r72595.tar.xz 19-Oct-2024 23:53 11308 +exframe.source.r72595.tar.xz 19-Oct-2024 23:53 47588 +exframe.source.tar.xz 19-Oct-2024 23:53 47588 +exframe.tar.xz 19-Oct-2024 23:53 11308 +exp-testopt.doc.r15878.tar.xz 28-Feb-2019 02:36 85660 +exp-testopt.doc.tar.xz 28-Feb-2019 02:36 85660 +exp-testopt.r15878.tar.xz 28-Feb-2019 02:36 1764 +exp-testopt.source.r15878.tar.xz 28-Feb-2019 02:36 6200 +exp-testopt.source.tar.xz 28-Feb-2019 02:36 6200 +exp-testopt.tar.xz 28-Feb-2019 02:36 1764 +expdlist.doc.r15878.tar.xz 28-Feb-2019 02:36 140404 +expdlist.doc.tar.xz 28-Feb-2019 02:36 140404 +expdlist.r15878.tar.xz 28-Feb-2019 02:36 2264 +expdlist.source.r15878.tar.xz 28-Feb-2019 02:36 9988 +expdlist.source.tar.xz 28-Feb-2019 02:36 9988 +expdlist.tar.xz 28-Feb-2019 02:36 2264 +expex-acro.doc.r68046.tar.xz 24-Aug-2023 23:45 85400 +expex-acro.doc.tar.xz 24-Aug-2023 23:45 85400 +expex-acro.r68046.tar.xz 24-Aug-2023 23:45 4556 +expex-acro.source.r68046.tar.xz 24-Aug-2023 23:45 7288 +expex-acro.source.tar.xz 24-Aug-2023 23:45 7288 +expex-acro.tar.xz 24-Aug-2023 23:45 4556 +expex-glossonly.doc.r69914.tar.xz 17-Feb-2024 00:45 75040 +expex-glossonly.doc.tar.xz 17-Feb-2024 00:45 75040 +expex-glossonly.r69914.tar.xz 17-Feb-2024 00:45 2348 +expex-glossonly.tar.xz 17-Feb-2024 00:45 2348 +expex.doc.r44499.tar.xz 28-Feb-2019 02:36 473776 +expex.doc.tar.xz 28-Feb-2019 02:36 473776 +expex.r44499.tar.xz 28-Feb-2019 02:36 19332 +expex.tar.xz 28-Feb-2019 02:36 19332 +expkv-bundle.doc.r73212.tar.xz 27-Dec-2024 00:49 757620 +expkv-bundle.doc.tar.xz 27-Dec-2024 00:49 757620 +expkv-bundle.r73212.tar.xz 27-Dec-2024 00:49 19616 +expkv-bundle.source.r73212.tar.xz 27-Dec-2024 00:49 49892 +expkv-bundle.source.tar.xz 27-Dec-2024 00:49 49892 +expkv-bundle.tar.xz 27-Dec-2024 00:49 19616 +expltools.aarch64-linux.r73049.tar.xz 06-Dec-2024 00:49 348 +expltools.aarch64-linux.tar.xz 06-Dec-2024 00:49 348 +expltools.amd64-freebsd.r73049.tar.xz 06-Dec-2024 00:49 348 +expltools.amd64-freebsd.tar.xz 06-Dec-2024 00:49 348 +expltools.amd64-netbsd.r73049.tar.xz 06-Dec-2024 00:49 344 +expltools.amd64-netbsd.tar.xz 06-Dec-2024 00:49 344 +expltools.armhf-linux.r73049.tar.xz 06-Dec-2024 00:49 344 +expltools.armhf-linux.tar.xz 06-Dec-2024 00:49 344 +expltools.doc.r76083.tar.xz 18-Aug-2025 23:48 2855424 +expltools.doc.tar.xz 18-Aug-2025 23:48 2855424 +expltools.i386-freebsd.r73049.tar.xz 06-Dec-2024 00:49 348 +expltools.i386-freebsd.tar.xz 06-Dec-2024 00:49 348 +expltools.i386-linux.r73049.tar.xz 06-Dec-2024 00:49 344 +expltools.i386-linux.tar.xz 06-Dec-2024 00:49 344 +expltools.i386-netbsd.r73049.tar.xz 06-Dec-2024 00:49 344 +expltools.i386-netbsd.tar.xz 06-Dec-2024 00:49 344 +expltools.i386-solaris.r73049.tar.xz 06-Dec-2024 00:49 344 +expltools.i386-solaris.tar.xz 06-Dec-2024 00:49 344 +expltools.r76083.tar.xz 18-Aug-2025 23:48 44568 +expltools.tar.xz 18-Aug-2025 23:48 44568 +expltools.universal-darwin.r73049.tar.xz 06-Dec-2024 00:49 348 +expltools.universal-darwin.tar.xz 06-Dec-2024 00:49 348 +expltools.windows.r73049.tar.xz 06-Dec-2024 00:49 2308 +expltools.windows.tar.xz 06-Dec-2024 00:49 2308 +expltools.x86_64-cygwin.r73049.tar.xz 06-Dec-2024 00:49 348 +expltools.x86_64-cygwin.tar.xz 06-Dec-2024 00:49 348 +expltools.x86_64-darwinlegacy.r73049.tar.xz 06-Dec-2024 00:49 352 +expltools.x86_64-darwinlegacy.tar.xz 06-Dec-2024 00:49 352 +expltools.x86_64-linux.r73049.tar.xz 06-Dec-2024 00:49 348 +expltools.x86_64-linux.tar.xz 06-Dec-2024 00:49 348 +expltools.x86_64-linuxmusl.r73049.tar.xz 06-Dec-2024 00:49 348 +expltools.x86_64-linuxmusl.tar.xz 06-Dec-2024 00:49 348 +expltools.x86_64-solaris.r73049.tar.xz 06-Dec-2024 00:49 344 +expltools.x86_64-solaris.tar.xz 06-Dec-2024 00:49 344 +export.doc.r27206.tar.xz 28-Feb-2019 02:36 280332 +export.doc.tar.xz 28-Feb-2019 02:36 280332 +export.r27206.tar.xz 28-Feb-2019 02:36 6396 +export.source.r27206.tar.xz 28-Feb-2019 02:36 9056 +export.source.tar.xz 28-Feb-2019 02:36 9056 +export.tar.xz 28-Feb-2019 02:36 6396 +expose-expl3-dunkerque-2019.doc.r54451.tar.xz 22-Mar-2020 00:55 331036 +expose-expl3-dunkerque-2019.doc.tar.xz 22-Mar-2020 00:55 331036 +expose-expl3-dunkerque-2019.r54451.tar.xz 22-Mar-2020 00:55 612 +expose-expl3-dunkerque-2019.tar.xz 22-Mar-2020 00:55 612 +expressg.doc.r29349.tar.xz 28-Feb-2019 02:36 467740 +expressg.doc.tar.xz 28-Feb-2019 02:36 467740 +expressg.r29349.tar.xz 28-Feb-2019 02:36 18616 +expressg.source.r29349.tar.xz 28-Feb-2019 02:36 45000 +expressg.source.tar.xz 28-Feb-2019 02:36 45000 +expressg.tar.xz 28-Feb-2019 02:36 18616 +exsheets.doc.r67300.tar.xz 07-Jun-2023 23:44 694560 +exsheets.doc.tar.xz 07-Jun-2023 23:44 694560 +exsheets.r67300.tar.xz 07-Jun-2023 23:44 24084 +exsheets.tar.xz 07-Jun-2023 23:44 24084 +exsol.doc.r73982.tar.xz 15-Feb-2025 00:49 500156 +exsol.doc.tar.xz 15-Feb-2025 00:49 500156 +exsol.r73982.tar.xz 15-Feb-2025 00:49 3644 +exsol.source.r73982.tar.xz 15-Feb-2025 00:49 13776 +exsol.source.tar.xz 15-Feb-2025 00:49 13776 +exsol.tar.xz 15-Feb-2025 00:49 3644 +extarrows.doc.r54400.tar.xz 20-Mar-2020 17:32 66404 +extarrows.doc.tar.xz 20-Mar-2020 17:32 66404 +extarrows.r54400.tar.xz 20-Mar-2020 17:32 896 +extarrows.tar.xz 20-Mar-2020 17:32 896 +exteps.doc.r19859.tar.xz 28-Feb-2019 02:36 108708 +exteps.doc.tar.xz 28-Feb-2019 02:36 108708 +exteps.r19859.tar.xz 28-Feb-2019 02:36 2988 +exteps.tar.xz 28-Feb-2019 02:36 2988 +extpfeil.doc.r16243.tar.xz 28-Feb-2019 02:36 110584 +extpfeil.doc.tar.xz 28-Feb-2019 02:36 110584 +extpfeil.r16243.tar.xz 28-Feb-2019 02:36 1672 +extpfeil.source.r16243.tar.xz 28-Feb-2019 02:36 6536 +extpfeil.source.tar.xz 28-Feb-2019 02:36 6536 +extpfeil.tar.xz 28-Feb-2019 02:36 1672 +extract.doc.r52117.tar.xz 18-Sep-2019 23:54 165740 +extract.doc.tar.xz 18-Sep-2019 23:54 165740 +extract.r52117.tar.xz 18-Sep-2019 23:54 4356 +extract.source.r52117.tar.xz 18-Sep-2019 23:54 17656 +extract.source.tar.xz 18-Sep-2019 23:54 17656 +extract.tar.xz 18-Sep-2019 23:54 4356 +extractbb.aarch64-linux.r72890.tar.xz 19-Nov-2024 00:47 340 +extractbb.aarch64-linux.tar.xz 19-Nov-2024 00:47 340 +extractbb.amd64-freebsd.r72890.tar.xz 19-Nov-2024 00:47 340 +extractbb.amd64-freebsd.tar.xz 19-Nov-2024 00:47 340 +extractbb.amd64-netbsd.r72890.tar.xz 19-Nov-2024 00:47 340 +extractbb.amd64-netbsd.tar.xz 19-Nov-2024 00:47 340 +extractbb.armhf-linux.r72890.tar.xz 19-Nov-2024 00:47 340 +extractbb.armhf-linux.tar.xz 19-Nov-2024 00:47 340 +extractbb.doc.r73916.tar.xz 13-Feb-2025 00:48 24336 +extractbb.doc.tar.xz 13-Feb-2025 00:48 24336 +extractbb.i386-freebsd.r72890.tar.xz 19-Nov-2024 00:47 340 +extractbb.i386-freebsd.tar.xz 19-Nov-2024 00:47 340 +extractbb.i386-linux.r72890.tar.xz 19-Nov-2024 00:47 340 +extractbb.i386-linux.tar.xz 19-Nov-2024 00:47 340 +extractbb.i386-netbsd.r72890.tar.xz 19-Nov-2024 00:47 340 +extractbb.i386-netbsd.tar.xz 19-Nov-2024 00:47 340 +extractbb.i386-solaris.r72890.tar.xz 19-Nov-2024 00:47 340 +extractbb.i386-solaris.tar.xz 19-Nov-2024 00:47 340 +extractbb.r73916.tar.xz 13-Feb-2025 00:48 5964 +extractbb.tar.xz 13-Feb-2025 00:48 5964 +extractbb.universal-darwin.r72890.tar.xz 19-Nov-2024 00:47 344 +extractbb.universal-darwin.tar.xz 19-Nov-2024 00:47 344 +extractbb.windows.r74434.tar.xz 05-Mar-2025 00:50 2540 +extractbb.windows.tar.xz 05-Mar-2025 00:50 2540 +extractbb.x86_64-cygwin.r72890.tar.xz 19-Nov-2024 00:47 340 +extractbb.x86_64-cygwin.tar.xz 19-Nov-2024 00:47 340 +extractbb.x86_64-darwinlegacy.r72890.tar.xz 19-Nov-2024 00:47 348 +extractbb.x86_64-darwinlegacy.tar.xz 19-Nov-2024 00:47 348 +extractbb.x86_64-linux.r73777.tar.xz 08-Feb-2025 20:10 344 +extractbb.x86_64-linux.tar.xz 08-Feb-2025 20:10 344 +extractbb.x86_64-linuxmusl.r72890.tar.xz 19-Nov-2024 00:47 344 +extractbb.x86_64-linuxmusl.tar.xz 19-Nov-2024 00:47 344 +extractbb.x86_64-solaris.r72890.tar.xz 19-Nov-2024 00:47 340 +extractbb.x86_64-solaris.tar.xz 19-Nov-2024 00:47 340 +extsizes.doc.r17263.tar.xz 28-Feb-2019 02:36 195100 +extsizes.doc.tar.xz 28-Feb-2019 02:36 195100 +extsizes.r17263.tar.xz 28-Feb-2019 02:36 11704 +extsizes.tar.xz 28-Feb-2019 02:36 11704 +ezedits.doc.r72849.tar.xz 15-Nov-2024 00:48 138392 +ezedits.doc.tar.xz 15-Nov-2024 00:48 138392 +ezedits.r72849.tar.xz 15-Nov-2024 00:48 3044 +ezedits.tar.xz 15-Nov-2024 00:48 3044 +facsimile.doc.r21328.tar.xz 28-Feb-2019 02:36 28932 +facsimile.doc.tar.xz 28-Feb-2019 02:36 28932 +facsimile.r21328.tar.xz 28-Feb-2019 02:36 4456 +facsimile.source.r21328.tar.xz 28-Feb-2019 02:36 10960 +facsimile.source.tar.xz 28-Feb-2019 02:36 10960 +facsimile.tar.xz 28-Feb-2019 02:36 4456 +factura.doc.r61697.tar.xz 23-Jan-2022 00:53 999656 +factura.doc.tar.xz 23-Jan-2022 00:53 999656 +factura.r61697.tar.xz 23-Jan-2022 00:53 27540 +factura.source.r61697.tar.xz 23-Jan-2022 00:53 76100 +factura.source.tar.xz 23-Jan-2022 00:53 76100 +factura.tar.xz 23-Jan-2022 00:53 27540 +facture-belge-simple-sans-tva.doc.r67573.tar.xz 07-Jul-2023 23:45 275728 +facture-belge-simple-sans-tva.doc.tar.xz 07-Jul-2023 23:45 275728 +facture-belge-simple-sans-tva.r67573.tar.xz 07-Jul-2023 23:45 1016 +facture-belge-simple-sans-tva.tar.xz 07-Jul-2023 23:45 1016 +facture.doc.r67538.tar.xz 03-Jul-2023 23:43 117868 +facture.doc.tar.xz 03-Jul-2023 23:43 117868 +facture.r67538.tar.xz 03-Jul-2023 23:43 3320 +facture.source.r67538.tar.xz 03-Jul-2023 23:43 7820 +facture.source.tar.xz 03-Jul-2023 23:43 7820 +facture.tar.xz 03-Jul-2023 23:43 3320 +fadingimage.doc.r75447.tar.xz 07-Jun-2025 23:49 141300 +fadingimage.doc.tar.xz 07-Jun-2025 23:49 141300 +fadingimage.r75447.tar.xz 07-Jun-2025 23:49 1348 +fadingimage.tar.xz 07-Jun-2025 23:49 1348 +fail-fast.doc.r67543.tar.xz 04-Jul-2023 23:44 309660 +fail-fast.doc.tar.xz 04-Jul-2023 23:44 309660 +fail-fast.r67543.tar.xz 04-Jul-2023 23:44 1428 +fail-fast.source.r67543.tar.xz 04-Jul-2023 23:44 2736 +fail-fast.source.tar.xz 04-Jul-2023 23:44 2736 +fail-fast.tar.xz 04-Jul-2023 23:44 1428 +faktor.doc.r15878.tar.xz 28-Feb-2019 02:36 80952 +faktor.doc.tar.xz 28-Feb-2019 02:36 80952 +faktor.r15878.tar.xz 28-Feb-2019 02:36 1420 +faktor.source.r15878.tar.xz 28-Feb-2019 02:36 4296 +faktor.source.tar.xz 28-Feb-2019 02:36 4296 +faktor.tar.xz 28-Feb-2019 02:36 1420 +familytree.doc.r63739.tar.xz 27-Jun-2022 23:53 932844 +familytree.doc.tar.xz 27-Jun-2022 23:53 932844 +familytree.r63739.tar.xz 27-Jun-2022 23:53 6324 +familytree.source.r63739.tar.xz 27-Jun-2022 23:53 15544 +familytree.source.tar.xz 27-Jun-2022 23:53 15544 +familytree.tar.xz 27-Jun-2022 23:53 6324 +fancybox.doc.r18304.tar.xz 28-Feb-2019 02:36 277920 +fancybox.doc.tar.xz 28-Feb-2019 02:36 277920 +fancybox.r18304.tar.xz 28-Feb-2019 02:36 7704 +fancybox.tar.xz 28-Feb-2019 02:36 7704 +fancyhandout.doc.r46411.tar.xz 28-Feb-2019 02:36 71460 +fancyhandout.doc.tar.xz 28-Feb-2019 02:36 71460 +fancyhandout.r46411.tar.xz 28-Feb-2019 02:36 3364 +fancyhandout.tar.xz 28-Feb-2019 02:36 3364 +fancyhdr-it.doc.r21912.tar.xz 28-Feb-2019 02:36 260656 +fancyhdr-it.doc.tar.xz 28-Feb-2019 02:36 260656 +fancyhdr-it.r21912.tar.xz 28-Feb-2019 02:36 396 +fancyhdr-it.tar.xz 28-Feb-2019 02:36 396 +fancyhdr.doc.r73783.tar.xz 09-Feb-2025 00:52 1298500 +fancyhdr.doc.tar.xz 09-Feb-2025 00:52 1298500 +fancyhdr.r73783.tar.xz 09-Feb-2025 00:52 8396 +fancyhdr.source.r73783.tar.xz 09-Feb-2025 00:52 82728 +fancyhdr.source.tar.xz 09-Feb-2025 00:52 82728 +fancyhdr.tar.xz 09-Feb-2025 00:52 8396 +fancylabel.doc.r46736.tar.xz 28-Feb-2019 02:36 230456 +fancylabel.doc.tar.xz 28-Feb-2019 02:36 230456 +fancylabel.r46736.tar.xz 28-Feb-2019 02:36 5288 +fancylabel.source.r46736.tar.xz 28-Feb-2019 02:36 10452 +fancylabel.source.tar.xz 28-Feb-2019 02:36 10452 +fancylabel.tar.xz 28-Feb-2019 02:36 5288 +fancymag.doc.r75720.tar.xz 08-Jul-2025 23:49 2067172 +fancymag.doc.tar.xz 08-Jul-2025 23:49 2067172 +fancymag.r75720.tar.xz 08-Jul-2025 23:49 2114644 +fancymag.source.r75720.tar.xz 08-Jul-2025 23:49 310620 +fancymag.source.tar.xz 08-Jul-2025 23:49 310620 +fancymag.tar.xz 08-Jul-2025 23:49 2114644 +fancynum.doc.r15878.tar.xz 28-Feb-2019 02:36 56512 +fancynum.doc.tar.xz 28-Feb-2019 02:36 56512 +fancynum.r15878.tar.xz 28-Feb-2019 02:36 1456 +fancynum.source.r15878.tar.xz 28-Feb-2019 02:36 5392 +fancynum.source.tar.xz 28-Feb-2019 02:36 5392 +fancynum.tar.xz 28-Feb-2019 02:36 1456 +fancypar.doc.r58895.tar.xz 17-Apr-2021 23:52 117660 +fancypar.doc.tar.xz 17-Apr-2021 23:52 117660 +fancypar.r58895.tar.xz 17-Apr-2021 23:52 2932 +fancypar.source.r58895.tar.xz 17-Apr-2021 23:52 9668 +fancypar.source.tar.xz 17-Apr-2021 23:52 9668 +fancypar.tar.xz 17-Apr-2021 23:52 2932 +fancyqr.doc.r72986.tar.xz 28-Nov-2024 00:48 263508 +fancyqr.doc.tar.xz 28-Nov-2024 00:48 263508 +fancyqr.r72986.tar.xz 28-Nov-2024 00:48 4920 +fancyqr.tar.xz 28-Nov-2024 00:48 4920 +fancyref.doc.r15878.tar.xz 28-Feb-2019 02:36 104292 +fancyref.doc.tar.xz 28-Feb-2019 02:36 104292 +fancyref.r15878.tar.xz 28-Feb-2019 02:36 3384 +fancyref.source.r15878.tar.xz 28-Feb-2019 02:36 18944 +fancyref.source.tar.xz 28-Feb-2019 02:36 18944 +fancyref.tar.xz 28-Feb-2019 02:36 3384 +fancyslides.doc.r36263.tar.xz 28-Feb-2019 02:36 2000604 +fancyslides.doc.tar.xz 28-Feb-2019 02:36 2000604 +fancyslides.r36263.tar.xz 28-Feb-2019 02:36 1976 +fancyslides.tar.xz 28-Feb-2019 02:36 1976 +fancytabs.doc.r41549.tar.xz 28-Feb-2019 02:36 184668 +fancytabs.doc.tar.xz 28-Feb-2019 02:36 184668 +fancytabs.r41549.tar.xz 28-Feb-2019 02:36 1600 +fancytabs.source.r41549.tar.xz 28-Feb-2019 02:36 3964 +fancytabs.source.tar.xz 28-Feb-2019 02:36 3964 +fancytabs.tar.xz 28-Feb-2019 02:36 1600 +fancytooltips.doc.r68931.tar.xz 22-Nov-2023 00:45 1112004 +fancytooltips.doc.tar.xz 22-Nov-2023 00:45 1112004 +fancytooltips.r68931.tar.xz 22-Nov-2023 00:45 9148 +fancytooltips.source.r68931.tar.xz 22-Nov-2023 00:45 16732 +fancytooltips.source.tar.xz 22-Nov-2023 00:45 16732 +fancytooltips.tar.xz 22-Nov-2023 00:45 9148 +fancyvrb.doc.r75920.tar.xz 29-Jul-2025 23:49 179364 +fancyvrb.doc.tar.xz 29-Jul-2025 23:49 179364 +fancyvrb.r75920.tar.xz 29-Jul-2025 23:49 11892 +fancyvrb.tar.xz 29-Jul-2025 23:49 11892 +fandol.doc.r37889.tar.xz 28-Feb-2019 02:36 12168 +fandol.doc.tar.xz 28-Feb-2019 02:36 12168 +fandol.r37889.tar.xz 28-Feb-2019 02:36 21582588 +fandol.tar.xz 28-Feb-2019 02:36 21582588 +faq-fr-gutenberg.doc.r75712.tar.xz 07-Jul-2025 23:50 48546508 +faq-fr-gutenberg.doc.tar.xz 07-Jul-2025 23:50 48546508 +faq-fr-gutenberg.r75712.tar.xz 07-Jul-2025 23:50 1348 +faq-fr-gutenberg.tar.xz 07-Jul-2025 23:50 1348 +faq-fr.doc.r71182.tar.xz 05-May-2024 23:46 3874888 +faq-fr.doc.tar.xz 05-May-2024 23:46 3874888 +faq-fr.r71182.tar.xz 05-May-2024 23:46 972 +faq-fr.tar.xz 05-May-2024 23:46 972 +farbe.doc.r75449.tar.xz 08-Jun-2025 23:50 250692 +farbe.doc.tar.xz 08-Jun-2025 23:50 250692 +farbe.r75449.tar.xz 08-Jun-2025 23:50 14828 +farbe.tar.xz 08-Jun-2025 23:50 14828 +fascicules.doc.r54080.tar.xz 04-Mar-2020 22:50 2042296 +fascicules.doc.tar.xz 04-Mar-2020 22:50 2042296 +fascicules.r54080.tar.xz 04-Mar-2020 22:50 5664 +fascicules.source.r54080.tar.xz 04-Mar-2020 22:50 9288 +fascicules.source.tar.xz 04-Mar-2020 22:50 9288 +fascicules.tar.xz 04-Mar-2020 22:50 5664 +fast-diagram.doc.r29264.tar.xz 28-Feb-2019 02:36 1394284 +fast-diagram.doc.tar.xz 28-Feb-2019 02:36 1394284 +fast-diagram.r29264.tar.xz 28-Feb-2019 02:36 4188 +fast-diagram.tar.xz 28-Feb-2019 02:36 4188 +fbb.doc.r55728.tar.xz 02-Jul-2020 23:55 470700 +fbb.doc.tar.xz 02-Jul-2020 23:55 470700 +fbb.r55728.tar.xz 02-Jul-2020 23:55 1120660 +fbb.tar.xz 02-Jul-2020 23:55 1120660 +fbithesis.doc.r21340.tar.xz 28-Feb-2019 02:36 790224 +fbithesis.doc.tar.xz 28-Feb-2019 02:36 790224 +fbithesis.r21340.tar.xz 28-Feb-2019 02:36 6152 +fbithesis.source.r21340.tar.xz 28-Feb-2019 02:36 41564 +fbithesis.source.tar.xz 28-Feb-2019 02:36 41564 +fbithesis.tar.xz 28-Feb-2019 02:36 6152 +fbox.doc.r69041.tar.xz 06-Dec-2023 00:43 49888 +fbox.doc.tar.xz 06-Dec-2023 00:43 49888 +fbox.r69041.tar.xz 06-Dec-2023 00:43 1904 +fbox.tar.xz 06-Dec-2023 00:43 1904 +fbs.r15878.tar.xz 28-Feb-2019 02:36 5424 +fbs.tar.xz 28-Feb-2019 02:36 5424 +fc.doc.r32796.tar.xz 28-Feb-2019 02:36 27644 +fc.doc.tar.xz 28-Feb-2019 02:36 27644 +fc.r32796.tar.xz 28-Feb-2019 02:36 128300 +fc.tar.xz 28-Feb-2019 02:36 128300 +fcavtex.doc.r38074.tar.xz 28-Feb-2019 02:36 332084 +fcavtex.doc.tar.xz 28-Feb-2019 02:36 332084 +fcavtex.r38074.tar.xz 28-Feb-2019 02:36 16180 +fcavtex.tar.xz 28-Feb-2019 02:36 16180 +fcltxdoc.doc.r24500.tar.xz 28-Feb-2019 02:36 635448 +fcltxdoc.doc.tar.xz 28-Feb-2019 02:36 635448 +fcltxdoc.r24500.tar.xz 28-Feb-2019 02:36 10404 +fcltxdoc.source.r24500.tar.xz 28-Feb-2019 02:36 21560 +fcltxdoc.source.tar.xz 28-Feb-2019 02:36 21560 +fcltxdoc.tar.xz 28-Feb-2019 02:36 10404 +fcolumn.doc.r67729.tar.xz 25-Jul-2023 23:45 517888 +fcolumn.doc.tar.xz 25-Jul-2023 23:45 517888 +fcolumn.r67729.tar.xz 25-Jul-2023 23:45 4392 +fcolumn.source.r67729.tar.xz 25-Jul-2023 23:45 23008 +fcolumn.source.tar.xz 25-Jul-2023 23:45 23008 +fcolumn.tar.xz 25-Jul-2023 23:45 4392 +fdsymbol.doc.r74247.tar.xz 24-Feb-2025 00:49 593984 +fdsymbol.doc.tar.xz 24-Feb-2025 00:49 593984 +fdsymbol.r74247.tar.xz 24-Feb-2025 00:49 878624 +fdsymbol.source.r74247.tar.xz 24-Feb-2025 00:49 17772 +fdsymbol.source.tar.xz 24-Feb-2025 00:49 17772 +fdsymbol.tar.xz 24-Feb-2025 00:49 878624 +fduthesis.doc.r67231.tar.xz 27-May-2023 23:52 1457052 +fduthesis.doc.tar.xz 27-May-2023 23:52 1457052 +fduthesis.r67231.tar.xz 27-May-2023 23:52 108308 +fduthesis.source.r67231.tar.xz 27-May-2023 23:52 116676 +fduthesis.source.tar.xz 27-May-2023 23:52 116676 +fduthesis.tar.xz 27-May-2023 23:52 108308 +featpost.doc.r35346.tar.xz 28-Feb-2019 02:36 17968016 +featpost.doc.tar.xz 28-Feb-2019 02:36 17968016 +featpost.r35346.tar.xz 28-Feb-2019 02:36 31996 +featpost.tar.xz 28-Feb-2019 02:36 31996 +fei.doc.r65352.tar.xz 25-Dec-2022 00:54 441996 +fei.doc.tar.xz 25-Dec-2022 00:54 441996 +fei.r65352.tar.xz 25-Dec-2022 00:54 8108 +fei.source.r65352.tar.xz 25-Dec-2022 00:54 31128 +fei.source.tar.xz 25-Dec-2022 00:54 31128 +fei.tar.xz 25-Dec-2022 00:54 8108 +fenetrecas.doc.r73069.tar.xz 08-Dec-2024 01:13 645532 +fenetrecas.doc.tar.xz 08-Dec-2024 01:13 645532 +fenetrecas.r73069.tar.xz 08-Dec-2024 01:13 3912 +fenetrecas.tar.xz 08-Dec-2024 01:13 3912 +fenixpar.doc.r24730.tar.xz 28-Feb-2019 02:36 532 +fenixpar.doc.tar.xz 28-Feb-2019 02:36 532 +fenixpar.r24730.tar.xz 28-Feb-2019 02:36 3840 +fenixpar.tar.xz 28-Feb-2019 02:36 3840 +fetamont.doc.r43812.tar.xz 28-Feb-2019 02:36 237312 +fetamont.doc.tar.xz 28-Feb-2019 02:36 237312 +fetamont.r43812.tar.xz 28-Feb-2019 02:36 3542084 +fetamont.source.r43812.tar.xz 28-Feb-2019 02:36 5512 +fetamont.source.tar.xz 28-Feb-2019 02:36 5512 +fetamont.tar.xz 28-Feb-2019 02:36 3542084 +fetchcls.doc.r45245.tar.xz 28-Feb-2019 02:36 125088 +fetchcls.doc.tar.xz 28-Feb-2019 02:36 125088 +fetchcls.r45245.tar.xz 28-Feb-2019 02:36 1320 +fetchcls.source.r45245.tar.xz 28-Feb-2019 02:36 2852 +fetchcls.source.tar.xz 28-Feb-2019 02:36 2852 +fetchcls.tar.xz 28-Feb-2019 02:36 1320 +feupphdteses.doc.r30962.tar.xz 28-Feb-2019 02:36 187324 +feupphdteses.doc.tar.xz 28-Feb-2019 02:36 187324 +feupphdteses.r30962.tar.xz 28-Feb-2019 02:36 6312 +feupphdteses.tar.xz 28-Feb-2019 02:36 6312 +fewerfloatpages.doc.r58058.tar.xz 03-Mar-2021 00:26 893672 +fewerfloatpages.doc.tar.xz 03-Mar-2021 00:26 893672 +fewerfloatpages.r58058.tar.xz 03-Mar-2021 00:26 2660 +fewerfloatpages.source.r58058.tar.xz 03-Mar-2021 00:26 16108 +fewerfloatpages.source.tar.xz 03-Mar-2021 00:26 16108 +fewerfloatpages.tar.xz 03-Mar-2021 00:26 2660 +feyn.doc.r63945.tar.xz 20-Jul-2022 23:53 534244 +feyn.doc.tar.xz 20-Jul-2022 23:53 534244 +feyn.r63945.tar.xz 20-Jul-2022 23:53 13508 +feyn.source.r63945.tar.xz 20-Jul-2022 23:53 16364 +feyn.source.tar.xz 20-Jul-2022 23:53 16364 +feyn.tar.xz 20-Jul-2022 23:53 13508 +feynmf.doc.r17259.tar.xz 28-Feb-2019 02:36 466364 +feynmf.doc.tar.xz 28-Feb-2019 02:36 466364 +feynmf.r17259.tar.xz 28-Feb-2019 02:36 19484 +feynmf.source.r17259.tar.xz 28-Feb-2019 02:36 64056 +feynmf.source.tar.xz 28-Feb-2019 02:36 64056 +feynmf.tar.xz 28-Feb-2019 02:36 19484 +feynmp-auto.doc.r30223.tar.xz 28-Feb-2019 02:36 375268 +feynmp-auto.doc.tar.xz 28-Feb-2019 02:36 375268 +feynmp-auto.r30223.tar.xz 28-Feb-2019 02:36 1912 +feynmp-auto.source.r30223.tar.xz 28-Feb-2019 02:36 4768 +feynmp-auto.source.tar.xz 28-Feb-2019 02:36 4768 +feynmp-auto.tar.xz 28-Feb-2019 02:36 1912 +ffcode.doc.r75716.tar.xz 08-Jul-2025 23:49 506516 +ffcode.doc.tar.xz 08-Jul-2025 23:49 506516 +ffcode.r75716.tar.xz 08-Jul-2025 23:49 2240 +ffcode.source.r75716.tar.xz 08-Jul-2025 23:49 5392 +ffcode.source.tar.xz 08-Jul-2025 23:49 5392 +ffcode.tar.xz 08-Jul-2025 23:49 2240 +ffslides.doc.r38895.tar.xz 28-Feb-2019 02:36 381912 +ffslides.doc.tar.xz 28-Feb-2019 02:36 381912 +ffslides.r38895.tar.xz 28-Feb-2019 02:36 4952 +ffslides.tar.xz 28-Feb-2019 02:36 4952 +fge.doc.r71737.tar.xz 07-Jul-2024 23:47 137824 +fge.doc.tar.xz 07-Jul-2024 23:47 137824 +fge.r71737.tar.xz 07-Jul-2024 23:47 38324 +fge.source.r71737.tar.xz 07-Jul-2024 23:47 3660 +fge.source.tar.xz 07-Jul-2024 23:47 3660 +fge.tar.xz 07-Jul-2024 23:47 38324 +fgruler.doc.r70917.tar.xz 11-Apr-2024 23:46 471644 +fgruler.doc.tar.xz 11-Apr-2024 23:46 471644 +fgruler.r70917.tar.xz 11-Apr-2024 23:46 5984 +fgruler.source.r70917.tar.xz 11-Apr-2024 23:46 12012 +fgruler.source.tar.xz 11-Apr-2024 23:46 12012 +fgruler.tar.xz 11-Apr-2024 23:46 5984 +fhj-script.doc.r76019.tar.xz 10-Aug-2025 23:47 534876 +fhj-script.doc.tar.xz 10-Aug-2025 23:47 534876 +fhj-script.r76019.tar.xz 10-Aug-2025 23:47 22448 +fhj-script.source.r76019.tar.xz 10-Aug-2025 23:47 11388 +fhj-script.source.tar.xz 10-Aug-2025 23:47 11388 +fhj-script.tar.xz 10-Aug-2025 23:47 22448 +fifinddo-info.doc.r29349.tar.xz 28-Feb-2019 02:36 257192 +fifinddo-info.doc.tar.xz 28-Feb-2019 02:36 257192 +fifinddo-info.r29349.tar.xz 28-Feb-2019 02:36 532 +fifinddo-info.source.r29349.tar.xz 28-Feb-2019 02:36 23136 +fifinddo-info.source.tar.xz 28-Feb-2019 02:36 23136 +fifinddo-info.tar.xz 28-Feb-2019 02:36 532 +fifo-stack.doc.r33288.tar.xz 28-Feb-2019 02:36 249308 +fifo-stack.doc.tar.xz 28-Feb-2019 02:36 249308 +fifo-stack.r33288.tar.xz 28-Feb-2019 02:36 2072 +fifo-stack.source.r33288.tar.xz 28-Feb-2019 02:36 6860 +fifo-stack.source.tar.xz 28-Feb-2019 02:36 6860 +fifo-stack.tar.xz 28-Feb-2019 02:36 2072 +fig4latex.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:36 336 +fig4latex.aarch64-linux.tar.xz 28-Feb-2019 02:36 336 +fig4latex.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:36 340 +fig4latex.amd64-freebsd.tar.xz 28-Feb-2019 02:36 340 +fig4latex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:36 340 +fig4latex.amd64-netbsd.tar.xz 28-Feb-2019 02:36 340 +fig4latex.armhf-linux.r30015.tar.xz 28-Feb-2019 02:36 336 +fig4latex.armhf-linux.tar.xz 28-Feb-2019 02:36 336 +fig4latex.doc.r26313.tar.xz 28-Feb-2019 02:36 60872 +fig4latex.doc.tar.xz 28-Feb-2019 02:36 60872 +fig4latex.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:36 340 +fig4latex.i386-freebsd.tar.xz 28-Feb-2019 02:36 340 +fig4latex.i386-linux.r14752.tar.xz 28-Feb-2019 02:36 340 +fig4latex.i386-linux.tar.xz 28-Feb-2019 02:36 340 +fig4latex.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:36 340 +fig4latex.i386-netbsd.tar.xz 28-Feb-2019 02:36 340 +fig4latex.i386-solaris.r14752.tar.xz 28-Feb-2019 02:36 340 +fig4latex.i386-solaris.tar.xz 28-Feb-2019 02:36 340 +fig4latex.r26313.tar.xz 28-Feb-2019 02:36 2528 +fig4latex.tar.xz 28-Feb-2019 02:36 2528 +fig4latex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +fig4latex.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +fig4latex.windows.r65891.tar.xz 20-Feb-2023 22:12 2304 +fig4latex.windows.tar.xz 20-Feb-2023 22:12 2304 +fig4latex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:36 340 +fig4latex.x86_64-cygwin.tar.xz 28-Feb-2019 02:36 340 +fig4latex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:36 344 +fig4latex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:36 344 +fig4latex.x86_64-linux.r14752.tar.xz 28-Feb-2019 02:36 340 +fig4latex.x86_64-linux.tar.xz 28-Feb-2019 02:36 340 +fig4latex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:36 344 +fig4latex.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:36 344 +fig4latex.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:36 340 +fig4latex.x86_64-solaris.tar.xz 28-Feb-2019 02:36 340 +figbas.doc.r28943.tar.xz 28-Feb-2019 02:36 77248 +figbas.doc.tar.xz 28-Feb-2019 02:36 77248 +figbas.r28943.tar.xz 28-Feb-2019 02:36 18600 +figbas.tar.xz 28-Feb-2019 02:36 18600 +figbib.doc.r19388.tar.xz 28-Feb-2019 02:36 133148 +figbib.doc.tar.xz 28-Feb-2019 02:36 133148 +figbib.r19388.tar.xz 28-Feb-2019 02:36 3288 +figbib.tar.xz 28-Feb-2019 02:36 3288 +figchild.doc.r75801.tar.xz 16-Jul-2025 23:45 994388 +figchild.doc.tar.xz 16-Jul-2025 23:45 994388 +figchild.r75801.tar.xz 16-Jul-2025 23:45 290252 +figchild.tar.xz 16-Jul-2025 23:45 290252 +figflow.doc.r21462.tar.xz 28-Feb-2019 02:36 684 +figflow.doc.tar.xz 28-Feb-2019 02:36 684 +figflow.r21462.tar.xz 28-Feb-2019 02:36 2072 +figflow.tar.xz 28-Feb-2019 02:36 2072 +figput.doc.r63957.tar.xz 22-Jul-2022 23:53 861544 +figput.doc.tar.xz 22-Jul-2022 23:53 861544 +figput.r63957.tar.xz 22-Jul-2022 23:53 8268 +figput.tar.xz 22-Jul-2022 23:53 8268 +figsize.doc.r18784.tar.xz 28-Feb-2019 02:36 88472 +figsize.doc.tar.xz 28-Feb-2019 02:36 88472 +figsize.r18784.tar.xz 28-Feb-2019 02:36 1536 +figsize.tar.xz 28-Feb-2019 02:36 1536 +figureversions.doc.r75069.tar.xz 30-Apr-2025 23:52 114164 +figureversions.doc.tar.xz 30-Apr-2025 23:52 114164 +figureversions.r75069.tar.xz 30-Apr-2025 23:52 3336 +figureversions.source.r75069.tar.xz 30-Apr-2025 23:52 9456 +figureversions.source.tar.xz 30-Apr-2025 23:52 9456 +figureversions.tar.xz 30-Apr-2025 23:52 3336 +filecontents.doc.r66740.tar.xz 02-Apr-2023 23:54 281348 +filecontents.doc.tar.xz 02-Apr-2023 23:54 281348 +filecontents.r66740.tar.xz 02-Apr-2023 23:54 2108 +filecontents.source.r66740.tar.xz 02-Apr-2023 23:54 6452 +filecontents.source.tar.xz 02-Apr-2023 23:54 6452 +filecontents.tar.xz 02-Apr-2023 23:54 2108 +filecontentsdef.doc.r52208.tar.xz 29-Sep-2019 23:54 129568 +filecontentsdef.doc.tar.xz 29-Sep-2019 23:54 129568 +filecontentsdef.r52208.tar.xz 29-Sep-2019 23:54 2600 +filecontentsdef.source.r52208.tar.xz 29-Sep-2019 23:54 17028 +filecontentsdef.source.tar.xz 29-Sep-2019 23:54 17028 +filecontentsdef.tar.xz 29-Sep-2019 23:54 2600 +filedate.doc.r29529.tar.xz 28-Feb-2019 02:36 561320 +filedate.doc.tar.xz 28-Feb-2019 02:36 561320 +filedate.r29529.tar.xz 28-Feb-2019 02:36 6848 +filedate.source.r29529.tar.xz 28-Feb-2019 02:36 3812 +filedate.source.tar.xz 28-Feb-2019 02:36 3812 +filedate.tar.xz 28-Feb-2019 02:36 6848 +filehook.doc.r64822.tar.xz 27-Oct-2022 23:53 308660 +filehook.doc.tar.xz 27-Oct-2022 23:53 308660 +filehook.r64822.tar.xz 27-Oct-2022 23:53 4944 +filehook.source.r64822.tar.xz 27-Oct-2022 23:53 14340 +filehook.source.tar.xz 27-Oct-2022 23:53 14340 +filehook.tar.xz 27-Oct-2022 23:53 4944 +fileinfo.doc.r28421.tar.xz 28-Feb-2019 02:36 913660 +fileinfo.doc.tar.xz 28-Feb-2019 02:36 913660 +fileinfo.r28421.tar.xz 28-Feb-2019 02:37 6896 +fileinfo.source.r28421.tar.xz 28-Feb-2019 02:36 4496 +fileinfo.source.tar.xz 28-Feb-2019 02:36 4496 +fileinfo.tar.xz 28-Feb-2019 02:37 6896 +filemod.doc.r64967.tar.xz 08-Nov-2022 00:55 277228 +filemod.doc.tar.xz 08-Nov-2022 00:55 277228 +filemod.r64967.tar.xz 08-Nov-2022 00:55 3564 +filemod.tar.xz 08-Nov-2022 00:55 3564 +fillpages.doc.r73550.tar.xz 22-Jan-2025 00:47 117800 +fillpages.doc.tar.xz 22-Jan-2025 00:47 117800 +fillpages.r73550.tar.xz 22-Jan-2025 00:47 2316 +fillpages.tar.xz 22-Jan-2025 00:47 2316 +fillwith.doc.r72006.tar.xz 10-Aug-2024 23:51 568336 +fillwith.doc.tar.xz 10-Aug-2024 23:51 568336 +fillwith.r72006.tar.xz 10-Aug-2024 23:51 3332 +fillwith.source.r72006.tar.xz 10-Aug-2024 23:51 7744 +fillwith.source.tar.xz 10-Aug-2024 23:51 7744 +fillwith.tar.xz 10-Aug-2024 23:51 3332 +finbib.r15878.tar.xz 28-Feb-2019 02:37 5372 +finbib.tar.xz 28-Feb-2019 02:37 5372 +findhyph.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:37 340 +findhyph.aarch64-linux.tar.xz 28-Feb-2019 02:37 340 +findhyph.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:37 340 +findhyph.amd64-freebsd.tar.xz 28-Feb-2019 02:37 340 +findhyph.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:37 340 +findhyph.amd64-netbsd.tar.xz 28-Feb-2019 02:37 340 +findhyph.armhf-linux.r30015.tar.xz 28-Feb-2019 02:37 340 +findhyph.armhf-linux.tar.xz 28-Feb-2019 02:37 340 +findhyph.doc.r47444.tar.xz 28-Feb-2019 02:37 35040 +findhyph.doc.tar.xz 28-Feb-2019 02:37 35040 +findhyph.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:37 340 +findhyph.i386-freebsd.tar.xz 28-Feb-2019 02:37 340 +findhyph.i386-linux.r14758.tar.xz 28-Feb-2019 02:37 340 +findhyph.i386-linux.tar.xz 28-Feb-2019 02:37 340 +findhyph.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:37 340 +findhyph.i386-netbsd.tar.xz 28-Feb-2019 02:37 340 +findhyph.i386-solaris.r14758.tar.xz 28-Feb-2019 02:37 340 +findhyph.i386-solaris.tar.xz 28-Feb-2019 02:37 340 +findhyph.r47444.tar.xz 28-Feb-2019 02:37 3904 +findhyph.tar.xz 28-Feb-2019 02:37 3904 +findhyph.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 336 +findhyph.universal-darwin.tar.xz 25-Feb-2021 18:16 336 +findhyph.windows.r65891.tar.xz 20-Feb-2023 22:12 2304 +findhyph.windows.tar.xz 20-Feb-2023 22:12 2304 +findhyph.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:37 340 +findhyph.x86_64-cygwin.tar.xz 28-Feb-2019 02:37 340 +findhyph.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:37 348 +findhyph.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:37 348 +findhyph.x86_64-linux.r14758.tar.xz 28-Feb-2019 02:37 336 +findhyph.x86_64-linux.tar.xz 28-Feb-2019 02:37 336 +findhyph.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:37 344 +findhyph.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:37 344 +findhyph.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:37 340 +findhyph.x86_64-solaris.tar.xz 28-Feb-2019 02:37 340 +fink.doc.r24329.tar.xz 28-Feb-2019 02:37 83412 +fink.doc.tar.xz 28-Feb-2019 02:37 83412 +fink.r24329.tar.xz 28-Feb-2019 02:37 2280 +fink.source.r24329.tar.xz 28-Feb-2019 02:37 5796 +fink.source.tar.xz 28-Feb-2019 02:37 5796 +fink.tar.xz 28-Feb-2019 02:37 2280 +finstrut.doc.r21719.tar.xz 28-Feb-2019 02:37 174356 +finstrut.doc.tar.xz 28-Feb-2019 02:37 174356 +finstrut.r21719.tar.xz 28-Feb-2019 02:37 3352 +finstrut.source.r21719.tar.xz 28-Feb-2019 02:37 2704 +finstrut.source.tar.xz 28-Feb-2019 02:37 2704 +finstrut.tar.xz 28-Feb-2019 02:37 3352 +fira.doc.r64422.tar.xz 17-Sep-2022 23:53 2147384 +fira.doc.tar.xz 17-Sep-2022 23:53 2147384 +fira.r64422.tar.xz 17-Sep-2022 23:53 15529824 +fira.tar.xz 17-Sep-2022 23:53 15529824 +firamath-otf.doc.r68233.tar.xz 10-Sep-2023 23:45 124252 +firamath-otf.doc.tar.xz 10-Sep-2023 23:45 124252 +firamath-otf.r68233.tar.xz 10-Sep-2023 23:45 1364 +firamath-otf.tar.xz 10-Sep-2023 23:45 1364 +firamath.doc.r56672.tar.xz 15-Oct-2020 23:57 542428 +firamath.doc.tar.xz 15-Oct-2020 23:57 542428 +firamath.r56672.tar.xz 15-Oct-2020 23:57 99352 +firamath.tar.xz 15-Oct-2020 23:57 99352 +first-latex-doc.doc.r15878.tar.xz 28-Feb-2019 02:37 503812 +first-latex-doc.doc.tar.xz 28-Feb-2019 02:37 503812 +first-latex-doc.r15878.tar.xz 28-Feb-2019 02:37 496 +first-latex-doc.tar.xz 28-Feb-2019 02:37 496 +firstaid.doc.r75459.tar.xz 09-Jun-2025 23:49 280256 +firstaid.doc.tar.xz 09-Jun-2025 23:49 280256 +firstaid.r75459.tar.xz 09-Jun-2025 23:49 4508 +firstaid.source.r75459.tar.xz 09-Jun-2025 23:49 10332 +firstaid.source.tar.xz 09-Jun-2025 23:49 10332 +firstaid.tar.xz 09-Jun-2025 23:49 4508 +fistrum.doc.r70187.tar.xz 27-Feb-2024 17:39 652572 +fistrum.doc.tar.xz 27-Feb-2024 17:39 652572 +fistrum.r70187.tar.xz 27-Feb-2024 17:39 33616 +fistrum.source.r70187.tar.xz 27-Feb-2024 17:39 15556 +fistrum.source.tar.xz 27-Feb-2024 17:39 15556 +fistrum.tar.xz 27-Feb-2024 17:39 33616 +fitbox.doc.r50088.tar.xz 28-Feb-2019 02:37 496576 +fitbox.doc.tar.xz 28-Feb-2019 02:37 496576 +fitbox.r50088.tar.xz 28-Feb-2019 02:37 2228 +fitbox.source.r50088.tar.xz 28-Feb-2019 02:37 5812 +fitbox.source.tar.xz 28-Feb-2019 02:37 5812 +fitbox.tar.xz 28-Feb-2019 02:37 2228 +fitch.doc.r69160.tar.xz 19-Dec-2023 00:43 289516 +fitch.doc.tar.xz 19-Dec-2023 00:43 289516 +fitch.r69160.tar.xz 19-Dec-2023 00:43 3656 +fitch.tar.xz 19-Dec-2023 00:43 3656 +fithesis.doc.r76028.tar.xz 11-Aug-2025 23:45 738288 +fithesis.doc.tar.xz 11-Aug-2025 23:45 738288 +fithesis.r76028.tar.xz 11-Aug-2025 23:45 797536 +fithesis.source.r76028.tar.xz 11-Aug-2025 23:45 45692 +fithesis.source.tar.xz 11-Aug-2025 23:45 45692 +fithesis.tar.xz 11-Aug-2025 23:45 797536 +fix2col.doc.r38770.tar.xz 28-Feb-2019 02:37 212644 +fix2col.doc.tar.xz 28-Feb-2019 02:37 212644 +fix2col.r38770.tar.xz 28-Feb-2019 02:37 2684 +fix2col.source.r38770.tar.xz 28-Feb-2019 02:37 6376 +fix2col.source.tar.xz 28-Feb-2019 02:37 6376 +fix2col.tar.xz 28-Feb-2019 02:37 2684 +fixcmex.doc.r51825.tar.xz 05-Aug-2019 23:53 202740 +fixcmex.doc.tar.xz 05-Aug-2019 23:53 202740 +fixcmex.r51825.tar.xz 05-Aug-2019 23:53 1400 +fixcmex.source.r51825.tar.xz 05-Aug-2019 23:53 2868 +fixcmex.source.tar.xz 05-Aug-2019 23:53 2868 +fixcmex.tar.xz 05-Aug-2019 23:53 1400 +fixdif.doc.r66606.tar.xz 21-Mar-2023 00:55 249312 +fixdif.doc.tar.xz 21-Mar-2023 00:55 249312 +fixdif.r66606.tar.xz 21-Mar-2023 00:55 2008 +fixdif.source.r66606.tar.xz 21-Mar-2023 00:55 6884 +fixdif.source.tar.xz 21-Mar-2023 00:55 6884 +fixdif.tar.xz 21-Mar-2023 00:55 2008 +fixfoot.doc.r17131.tar.xz 28-Feb-2019 02:37 50024 +fixfoot.doc.tar.xz 28-Feb-2019 02:37 50024 +fixfoot.r17131.tar.xz 28-Feb-2019 02:37 3280 +fixfoot.tar.xz 28-Feb-2019 02:37 3280 +fixjfm.doc.r63967.tar.xz 23-Jul-2022 23:55 286260 +fixjfm.doc.tar.xz 23-Jul-2022 23:55 286260 +fixjfm.r63967.tar.xz 23-Jul-2022 23:55 2384 +fixjfm.tar.xz 23-Jul-2022 23:55 2384 +fixlatvian.doc.r21631.tar.xz 28-Feb-2019 02:37 113476 +fixlatvian.doc.tar.xz 28-Feb-2019 02:37 113476 +fixlatvian.r21631.tar.xz 28-Feb-2019 02:37 2952 +fixlatvian.source.r21631.tar.xz 28-Feb-2019 02:37 9240 +fixlatvian.source.tar.xz 28-Feb-2019 02:37 9240 +fixlatvian.tar.xz 28-Feb-2019 02:37 2952 +fixltxhyph.doc.r73227.tar.xz 29-Dec-2024 00:56 420116 +fixltxhyph.doc.tar.xz 29-Dec-2024 00:56 420116 +fixltxhyph.r73227.tar.xz 29-Dec-2024 00:56 1212 +fixltxhyph.source.r73227.tar.xz 29-Dec-2024 00:56 6740 +fixltxhyph.source.tar.xz 29-Dec-2024 00:56 6740 +fixltxhyph.tar.xz 29-Dec-2024 00:56 1212 +fixmath.doc.r64648.tar.xz 08-Oct-2022 23:54 188924 +fixmath.doc.tar.xz 08-Oct-2022 23:54 188924 +fixmath.r64648.tar.xz 08-Oct-2022 23:54 1496 +fixmath.source.r64648.tar.xz 08-Oct-2022 23:54 2604 +fixmath.source.tar.xz 08-Oct-2022 23:54 2604 +fixmath.tar.xz 08-Oct-2022 23:54 1496 +fixme.doc.r63708.tar.xz 23-Jun-2022 23:57 351976 +fixme.doc.tar.xz 23-Jun-2022 23:57 351976 +fixme.r63708.tar.xz 23-Jun-2022 23:57 8656 +fixme.source.r63708.tar.xz 23-Jun-2022 23:57 35036 +fixme.source.tar.xz 23-Jun-2022 23:57 35036 +fixme.tar.xz 23-Jun-2022 23:57 8656 +fixmetodonotes.doc.r30168.tar.xz 28-Feb-2019 02:37 4096 +fixmetodonotes.doc.tar.xz 28-Feb-2019 02:37 4096 +fixmetodonotes.r30168.tar.xz 28-Feb-2019 02:37 1580 +fixmetodonotes.source.r30168.tar.xz 28-Feb-2019 02:37 1408 +fixmetodonotes.source.tar.xz 28-Feb-2019 02:37 1408 +fixmetodonotes.tar.xz 28-Feb-2019 02:37 1580 +fixpdfmag.r15878.tar.xz 28-Feb-2019 02:37 1160 +fixpdfmag.tar.xz 28-Feb-2019 02:37 1160 +fiziko.doc.r61944.tar.xz 09-Feb-2022 00:52 4800008 +fiziko.doc.tar.xz 09-Feb-2022 00:52 4800008 +fiziko.r61944.tar.xz 09-Feb-2022 00:52 22700 +fiziko.tar.xz 09-Feb-2022 00:52 22700 +fjodor.doc.r53207.tar.xz 23-Dec-2019 00:54 458384 +fjodor.doc.tar.xz 23-Dec-2019 00:54 458384 +fjodor.r53207.tar.xz 23-Dec-2019 00:54 1276 +fjodor.tar.xz 23-Dec-2019 00:54 1276 +flabels.doc.r17272.tar.xz 28-Feb-2019 02:37 340004 +flabels.doc.tar.xz 28-Feb-2019 02:37 340004 +flabels.r17272.tar.xz 28-Feb-2019 02:37 2328 +flabels.source.r17272.tar.xz 28-Feb-2019 02:37 11680 +flabels.source.tar.xz 28-Feb-2019 02:37 11680 +flabels.tar.xz 28-Feb-2019 02:37 2328 +flacards.doc.r19440.tar.xz 28-Feb-2019 02:37 27864 +flacards.doc.tar.xz 28-Feb-2019 02:37 27864 +flacards.r19440.tar.xz 28-Feb-2019 02:37 2196 +flacards.tar.xz 28-Feb-2019 02:37 2196 +flagderiv.doc.r15878.tar.xz 28-Feb-2019 02:37 183708 +flagderiv.doc.tar.xz 28-Feb-2019 02:37 183708 +flagderiv.r15878.tar.xz 28-Feb-2019 02:37 2080 +flagderiv.source.r15878.tar.xz 28-Feb-2019 02:37 12256 +flagderiv.source.tar.xz 28-Feb-2019 02:37 12256 +flagderiv.tar.xz 28-Feb-2019 02:37 2080 +flashcards.doc.r62104.tar.xz 21-Feb-2022 00:52 255288 +flashcards.doc.tar.xz 21-Feb-2022 00:52 255288 +flashcards.r62104.tar.xz 21-Feb-2022 00:52 3488 +flashcards.source.r62104.tar.xz 21-Feb-2022 00:52 7580 +flashcards.source.tar.xz 21-Feb-2022 00:52 7580 +flashcards.tar.xz 21-Feb-2022 00:52 3488 +flashmovie.doc.r25768.tar.xz 28-Feb-2019 02:37 1323548 +flashmovie.doc.tar.xz 28-Feb-2019 02:37 1323548 +flashmovie.r25768.tar.xz 28-Feb-2019 02:37 19612 +flashmovie.tar.xz 28-Feb-2019 02:37 19612 +flexipage.doc.r66614.tar.xz 22-Mar-2023 00:52 292876 +flexipage.doc.tar.xz 22-Mar-2023 00:52 292876 +flexipage.r66614.tar.xz 22-Mar-2023 00:52 3912 +flexipage.source.r66614.tar.xz 22-Mar-2023 00:52 8208 +flexipage.source.tar.xz 22-Mar-2023 00:52 8208 +flexipage.tar.xz 22-Mar-2023 00:52 3912 +flipbook.doc.r75878.tar.xz 23-Jul-2025 23:50 348724 +flipbook.doc.tar.xz 23-Jul-2025 23:50 348724 +flipbook.r75878.tar.xz 23-Jul-2025 23:50 1768 +flipbook.tar.xz 23-Jul-2025 23:50 1768 +flippdf.doc.r56782.tar.xz 28-Oct-2020 00:56 149840 +flippdf.doc.tar.xz 28-Oct-2020 00:56 149840 +flippdf.r56782.tar.xz 28-Oct-2020 00:56 1612 +flippdf.source.r56782.tar.xz 28-Oct-2020 00:56 4788 +flippdf.source.tar.xz 28-Oct-2020 00:56 4788 +flippdf.tar.xz 28-Oct-2020 00:56 1612 +float.doc.r15878.tar.xz 28-Feb-2019 02:37 112620 +float.doc.tar.xz 28-Feb-2019 02:37 112620 +float.r15878.tar.xz 28-Feb-2019 02:37 2712 +float.source.r15878.tar.xz 28-Feb-2019 02:37 12572 +float.source.tar.xz 28-Feb-2019 02:37 12572 +float.tar.xz 28-Feb-2019 02:37 2712 +floatbytocbasic.doc.r67945.tar.xz 16-Aug-2023 23:46 244796 +floatbytocbasic.doc.tar.xz 16-Aug-2023 23:46 244796 +floatbytocbasic.r67945.tar.xz 16-Aug-2023 23:46 2036 +floatbytocbasic.source.r67945.tar.xz 16-Aug-2023 23:46 6672 +floatbytocbasic.source.tar.xz 16-Aug-2023 23:46 6672 +floatbytocbasic.tar.xz 16-Aug-2023 23:46 2036 +floatflt.doc.r25540.tar.xz 28-Feb-2019 02:37 304824 +floatflt.doc.tar.xz 28-Feb-2019 02:37 304824 +floatflt.r25540.tar.xz 28-Feb-2019 02:37 2828 +floatflt.source.r25540.tar.xz 28-Feb-2019 02:37 18016 +floatflt.source.tar.xz 28-Feb-2019 02:37 18016 +floatflt.tar.xz 28-Feb-2019 02:37 2828 +floatrow.doc.r15878.tar.xz 28-Feb-2019 02:37 1216512 +floatrow.doc.tar.xz 28-Feb-2019 02:37 1216512 +floatrow.r15878.tar.xz 28-Feb-2019 02:37 16088 +floatrow.source.r15878.tar.xz 28-Feb-2019 02:37 92488 +floatrow.source.tar.xz 28-Feb-2019 02:37 92488 +floatrow.tar.xz 28-Feb-2019 02:37 16088 +floatrowbytocbasic.doc.r67946.tar.xz 16-Aug-2023 23:46 250044 +floatrowbytocbasic.doc.tar.xz 16-Aug-2023 23:46 250044 +floatrowbytocbasic.r67946.tar.xz 16-Aug-2023 23:46 2528 +floatrowbytocbasic.source.r67946.tar.xz 16-Aug-2023 23:46 7328 +floatrowbytocbasic.source.tar.xz 16-Aug-2023 23:46 7328 +floatrowbytocbasic.tar.xz 16-Aug-2023 23:46 2528 +flowchart.doc.r36572.tar.xz 28-Feb-2019 02:37 412796 +flowchart.doc.tar.xz 28-Feb-2019 02:37 412796 +flowchart.r36572.tar.xz 28-Feb-2019 02:37 2084 +flowchart.source.r36572.tar.xz 28-Feb-2019 02:37 9592 +flowchart.source.tar.xz 28-Feb-2019 02:37 9592 +flowchart.tar.xz 28-Feb-2019 02:37 2084 +flowfram.doc.r35291.tar.xz 28-Feb-2019 02:37 1763756 +flowfram.doc.tar.xz 28-Feb-2019 02:37 1763756 +flowfram.r35291.tar.xz 28-Feb-2019 02:37 24376 +flowfram.source.r35291.tar.xz 28-Feb-2019 02:37 55788 +flowfram.source.tar.xz 28-Feb-2019 02:37 55788 +flowfram.tar.xz 28-Feb-2019 02:37 24376 +fltpoint.doc.r56594.tar.xz 07-Oct-2020 23:55 177668 +fltpoint.doc.tar.xz 07-Oct-2020 23:55 177668 +fltpoint.r56594.tar.xz 07-Oct-2020 23:55 3748 +fltpoint.source.r56594.tar.xz 07-Oct-2020 23:55 15152 +fltpoint.source.tar.xz 07-Oct-2020 23:55 15152 +fltpoint.tar.xz 07-Oct-2020 23:55 3748 +fmp.doc.r15878.tar.xz 28-Feb-2019 02:37 130300 +fmp.doc.tar.xz 28-Feb-2019 02:37 130300 +fmp.r15878.tar.xz 28-Feb-2019 02:37 1752 +fmp.source.r15878.tar.xz 28-Feb-2019 02:37 8216 +fmp.source.tar.xz 28-Feb-2019 02:37 8216 +fmp.tar.xz 28-Feb-2019 02:37 1752 +fmtcount.doc.r76137.tar.xz 24-Aug-2025 23:49 606396 +fmtcount.doc.tar.xz 24-Aug-2025 23:49 606396 +fmtcount.r76137.tar.xz 24-Aug-2025 23:49 27488 +fmtcount.source.r76137.tar.xz 24-Aug-2025 23:49 49824 +fmtcount.source.tar.xz 24-Aug-2025 23:49 49824 +fmtcount.tar.xz 24-Aug-2025 23:49 27488 +fn2end.doc.r15878.tar.xz 28-Feb-2019 02:37 23016 +fn2end.doc.tar.xz 28-Feb-2019 02:37 23016 +fn2end.r15878.tar.xz 28-Feb-2019 02:37 1484 +fn2end.tar.xz 28-Feb-2019 02:37 1484 +fnbreak.doc.r66615.tar.xz 22-Mar-2023 00:52 204620 +fnbreak.doc.tar.xz 22-Mar-2023 00:52 204620 +fnbreak.r66615.tar.xz 22-Mar-2023 00:52 2048 +fnbreak.source.r66615.tar.xz 22-Mar-2023 00:52 5416 +fnbreak.source.tar.xz 22-Mar-2023 00:52 5416 +fnbreak.tar.xz 22-Mar-2023 00:52 2048 +fncychap.doc.r20710.tar.xz 28-Feb-2019 02:37 278568 +fncychap.doc.tar.xz 28-Feb-2019 02:37 278568 +fncychap.r20710.tar.xz 28-Feb-2019 02:37 5104 +fncychap.tar.xz 28-Feb-2019 02:37 5104 +fncylab.doc.r52090.tar.xz 14-Sep-2019 23:54 206652 +fncylab.doc.tar.xz 14-Sep-2019 23:54 206652 +fncylab.r52090.tar.xz 14-Sep-2019 23:54 1812 +fncylab.tar.xz 14-Sep-2019 23:54 1812 +fnpara.doc.r25607.tar.xz 28-Feb-2019 02:37 175136 +fnpara.doc.tar.xz 28-Feb-2019 02:37 175136 +fnpara.r25607.tar.xz 28-Feb-2019 02:37 3076 +fnpara.tar.xz 28-Feb-2019 02:37 3076 +fnpct.doc.r62248.tar.xz 28-Feb-2022 00:32 501716 +fnpct.doc.tar.xz 28-Feb-2022 00:32 501716 +fnpct.r62248.tar.xz 28-Feb-2022 00:32 14748 +fnpct.tar.xz 28-Feb-2022 00:32 14748 +fnspe.doc.r45360.tar.xz 28-Feb-2019 02:37 170056 +fnspe.doc.tar.xz 28-Feb-2019 02:37 170056 +fnspe.r45360.tar.xz 28-Feb-2019 02:37 2492 +fnspe.tar.xz 28-Feb-2019 02:37 2492 +fntproof.doc.r20638.tar.xz 28-Feb-2019 02:37 209564 +fntproof.doc.tar.xz 28-Feb-2019 02:37 209564 +fntproof.r20638.tar.xz 28-Feb-2019 02:37 6592 +fntproof.tar.xz 28-Feb-2019 02:37 6592 +fnumprint.doc.r29173.tar.xz 28-Feb-2019 02:37 254544 +fnumprint.doc.tar.xz 28-Feb-2019 02:37 254544 +fnumprint.r29173.tar.xz 28-Feb-2019 02:37 1384 +fnumprint.source.r29173.tar.xz 28-Feb-2019 02:37 4004 +fnumprint.source.tar.xz 28-Feb-2019 02:37 4004 +fnumprint.tar.xz 28-Feb-2019 02:37 1384 +fodot.doc.r76255.tar.xz 08-Sep-2025 00:07 270664 +fodot.doc.tar.xz 08-Sep-2025 00:07 270664 +fodot.r76255.tar.xz 08-Sep-2025 00:07 1960 +fodot.tar.xz 08-Sep-2025 00:07 1960 +foekfont.doc.r15878.tar.xz 28-Feb-2019 02:37 95112 +foekfont.doc.tar.xz 28-Feb-2019 02:37 95112 +foekfont.r15878.tar.xz 28-Feb-2019 02:37 8752 +foekfont.tar.xz 28-Feb-2019 02:37 8752 +foilhtml.doc.r61937.tar.xz 08-Feb-2022 00:53 5044 +foilhtml.doc.tar.xz 08-Feb-2022 00:53 5044 +foilhtml.r61937.tar.xz 08-Feb-2022 00:53 3600 +foilhtml.source.r61937.tar.xz 08-Feb-2022 00:53 15700 +foilhtml.source.tar.xz 08-Feb-2022 00:53 15700 +foilhtml.tar.xz 08-Feb-2022 00:53 3600 +foliono.doc.r58877.tar.xz 14-Apr-2021 23:52 229428 +foliono.doc.tar.xz 14-Apr-2021 23:52 229428 +foliono.r58877.tar.xz 14-Apr-2021 23:52 4544 +foliono.tar.xz 14-Apr-2021 23:52 4544 +fonetika.doc.r21326.tar.xz 28-Feb-2019 02:37 124928 +fonetika.doc.tar.xz 28-Feb-2019 02:37 124928 +fonetika.r21326.tar.xz 28-Feb-2019 02:37 65336 +fonetika.tar.xz 28-Feb-2019 02:37 65336 +font-change-xetex.doc.r40404.tar.xz 28-Feb-2019 02:37 558812 +font-change-xetex.doc.tar.xz 28-Feb-2019 02:37 558812 +font-change-xetex.r40404.tar.xz 28-Feb-2019 02:37 6072 +font-change-xetex.tar.xz 28-Feb-2019 02:37 6072 +font-change.doc.r40403.tar.xz 28-Feb-2019 02:37 1766316 +font-change.doc.tar.xz 28-Feb-2019 02:37 1766316 +font-change.r40403.tar.xz 28-Feb-2019 02:37 19304 +font-change.tar.xz 28-Feb-2019 02:37 19304 +fontawesome.doc.r48145.tar.xz 28-Feb-2019 02:37 232920 +fontawesome.doc.tar.xz 28-Feb-2019 02:37 232920 +fontawesome.r48145.tar.xz 28-Feb-2019 02:37 276180 +fontawesome.tar.xz 28-Feb-2019 02:37 276180 +fontawesome5.doc.r63207.tar.xz 02-May-2022 23:51 746624 +fontawesome5.doc.tar.xz 02-May-2022 23:51 746624 +fontawesome5.r63207.tar.xz 02-May-2022 23:51 866312 +fontawesome5.tar.xz 02-May-2022 23:51 866312 +fontawesome6.doc.r76339.tar.xz 17-Sep-2025 23:50 1551848 +fontawesome6.doc.tar.xz 17-Sep-2025 23:50 1551848 +fontawesome6.r76339.tar.xz 17-Sep-2025 23:50 1880108 +fontawesome6.tar.xz 17-Sep-2025 23:50 1880108 +fontawesome7.doc.r76338.tar.xz 17-Sep-2025 23:50 746744 +fontawesome7.doc.tar.xz 17-Sep-2025 23:50 746744 +fontawesome7.r76338.tar.xz 17-Sep-2025 23:50 804164 +fontawesome7.tar.xz 17-Sep-2025 23:50 804164 +fontawesomescaled.doc.r75980.tar.xz 05-Aug-2025 23:45 286016 +fontawesomescaled.doc.tar.xz 05-Aug-2025 23:45 286016 +fontawesomescaled.r75980.tar.xz 05-Aug-2025 23:45 1500 +fontawesomescaled.tar.xz 05-Aug-2025 23:45 1500 +fontaxes.doc.r75305.tar.xz 24-May-2025 23:52 97412 +fontaxes.doc.tar.xz 24-May-2025 23:52 97412 +fontaxes.r75305.tar.xz 24-May-2025 23:52 3988 +fontaxes.source.r75305.tar.xz 24-May-2025 23:52 3320 +fontaxes.source.tar.xz 24-May-2025 23:52 3320 +fontaxes.tar.xz 24-May-2025 23:52 3988 +fontbook.doc.r23608.tar.xz 28-Feb-2019 02:37 1245344 +fontbook.doc.tar.xz 28-Feb-2019 02:37 1245344 +fontbook.r23608.tar.xz 28-Feb-2019 02:37 1452 +fontbook.source.r23608.tar.xz 28-Feb-2019 02:37 3272 +fontbook.source.tar.xz 28-Feb-2019 02:37 3272 +fontbook.tar.xz 28-Feb-2019 02:37 1452 +fontch.doc.r17859.tar.xz 28-Feb-2019 02:37 80572 +fontch.doc.tar.xz 28-Feb-2019 02:37 80572 +fontch.r17859.tar.xz 28-Feb-2019 02:37 15420 +fontch.tar.xz 28-Feb-2019 02:37 15420 +fontinst.aarch64-linux.r53554.tar.xz 27-Jan-2020 00:40 348 +fontinst.aarch64-linux.tar.xz 27-Jan-2020 00:40 348 +fontinst.amd64-freebsd.r53554.tar.xz 27-Jan-2020 00:40 348 +fontinst.amd64-freebsd.tar.xz 27-Jan-2020 00:40 348 +fontinst.amd64-netbsd.r53554.tar.xz 27-Jan-2020 00:40 348 +fontinst.amd64-netbsd.tar.xz 27-Jan-2020 00:40 348 +fontinst.armhf-linux.r53554.tar.xz 27-Jan-2020 00:40 348 +fontinst.armhf-linux.tar.xz 27-Jan-2020 00:40 348 +fontinst.doc.r74240.tar.xz 24-Feb-2025 00:49 1019808 +fontinst.doc.tar.xz 24-Feb-2025 00:49 1019808 +fontinst.i386-freebsd.r53554.tar.xz 27-Jan-2020 00:40 348 +fontinst.i386-freebsd.tar.xz 27-Jan-2020 00:40 348 +fontinst.i386-linux.r53554.tar.xz 27-Jan-2020 00:40 348 +fontinst.i386-linux.tar.xz 27-Jan-2020 00:40 348 +fontinst.i386-netbsd.r53554.tar.xz 27-Jan-2020 00:40 348 +fontinst.i386-netbsd.tar.xz 27-Jan-2020 00:40 348 +fontinst.i386-solaris.r53554.tar.xz 27-Jan-2020 00:40 344 +fontinst.i386-solaris.tar.xz 27-Jan-2020 00:40 344 +fontinst.r74240.tar.xz 24-Feb-2025 00:49 85740 +fontinst.source.r74240.tar.xz 24-Feb-2025 00:49 410340 +fontinst.source.tar.xz 24-Feb-2025 00:49 410340 +fontinst.tar.xz 24-Feb-2025 00:49 85740 +fontinst.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 352 +fontinst.universal-darwin.tar.xz 25-Feb-2021 18:16 352 +fontinst.x86_64-cygwin.r53554.tar.xz 27-Jan-2020 00:40 348 +fontinst.x86_64-cygwin.tar.xz 27-Jan-2020 00:40 348 +fontinst.x86_64-darwinlegacy.r53554.tar.xz 27-Jan-2020 00:40 356 +fontinst.x86_64-darwinlegacy.tar.xz 27-Jan-2020 00:40 356 +fontinst.x86_64-linux.r53554.tar.xz 27-Jan-2020 00:40 348 +fontinst.x86_64-linux.tar.xz 27-Jan-2020 00:40 348 +fontinst.x86_64-linuxmusl.r53554.tar.xz 27-Jan-2020 00:40 352 +fontinst.x86_64-linuxmusl.tar.xz 27-Jan-2020 00:40 352 +fontinst.x86_64-solaris.r53554.tar.xz 27-Jan-2020 00:40 348 +fontinst.x86_64-solaris.tar.xz 27-Jan-2020 00:40 348 +fontinstallationguide.doc.r59755.tar.xz 29-Jun-2021 23:52 527348 +fontinstallationguide.doc.tar.xz 29-Jun-2021 23:52 527348 +fontinstallationguide.r59755.tar.xz 29-Jun-2021 23:52 564 +fontinstallationguide.tar.xz 29-Jun-2021 23:52 564 +fontmfizz.doc.r43546.tar.xz 28-Feb-2019 02:37 55148 +fontmfizz.doc.tar.xz 28-Feb-2019 02:37 55148 +fontmfizz.r43546.tar.xz 28-Feb-2019 02:37 39608 +fontmfizz.tar.xz 28-Feb-2019 02:37 39608 +fontname.doc.r75544.tar.xz 18-Jun-2025 23:48 673296 +fontname.doc.tar.xz 18-Jun-2025 23:48 673296 +fontname.r75544.tar.xz 18-Jun-2025 23:48 17528 +fontname.tar.xz 18-Jun-2025 23:48 17528 +fontools.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:37 384 +fontools.aarch64-linux.tar.xz 28-Feb-2019 02:37 384 +fontools.amd64-freebsd.r25997.tar.xz 28-Feb-2019 02:37 388 +fontools.amd64-freebsd.tar.xz 28-Feb-2019 02:37 388 +fontools.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:37 388 +fontools.amd64-netbsd.tar.xz 28-Feb-2019 02:37 388 +fontools.armhf-linux.r30015.tar.xz 28-Feb-2019 02:37 384 +fontools.armhf-linux.tar.xz 28-Feb-2019 02:37 384 +fontools.doc.r76266.tar.xz 09-Sep-2025 23:49 128148 +fontools.doc.tar.xz 09-Sep-2025 23:49 128148 +fontools.i386-freebsd.r25997.tar.xz 28-Feb-2019 02:37 388 +fontools.i386-freebsd.tar.xz 28-Feb-2019 02:37 388 +fontools.i386-linux.r25997.tar.xz 28-Feb-2019 02:37 384 +fontools.i386-linux.tar.xz 28-Feb-2019 02:37 384 +fontools.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:37 384 +fontools.i386-netbsd.tar.xz 28-Feb-2019 02:37 384 +fontools.i386-solaris.r25997.tar.xz 28-Feb-2019 02:37 384 +fontools.i386-solaris.tar.xz 28-Feb-2019 02:37 384 +fontools.r76266.tar.xz 09-Sep-2025 23:49 57528 +fontools.tar.xz 09-Sep-2025 23:49 57528 +fontools.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 388 +fontools.universal-darwin.tar.xz 25-Feb-2021 18:16 388 +fontools.windows.r65891.tar.xz 20-Feb-2023 22:12 2396 +fontools.windows.tar.xz 20-Feb-2023 22:12 2396 +fontools.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:37 388 +fontools.x86_64-cygwin.tar.xz 28-Feb-2019 02:37 388 +fontools.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:37 396 +fontools.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:37 396 +fontools.x86_64-linux.r25997.tar.xz 28-Feb-2019 02:37 384 +fontools.x86_64-linux.tar.xz 28-Feb-2019 02:37 384 +fontools.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:37 392 +fontools.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:37 392 +fontools.x86_64-solaris.r25997.tar.xz 28-Feb-2019 02:37 384 +fontools.x86_64-solaris.tar.xz 28-Feb-2019 02:37 384 +fonts-churchslavonic.doc.r67473.tar.xz 25-Jun-2023 23:44 267160 +fonts-churchslavonic.doc.tar.xz 25-Jun-2023 23:44 267160 +fonts-churchslavonic.r67473.tar.xz 25-Jun-2023 23:44 2071376 +fonts-churchslavonic.tar.xz 25-Jun-2023 23:44 2071376 +fonts-tlwg.doc.r60817.tar.xz 20-Oct-2021 23:53 11168 +fonts-tlwg.doc.tar.xz 20-Oct-2021 23:53 11168 +fonts-tlwg.r60817.tar.xz 20-Oct-2021 23:53 5031944 +fonts-tlwg.source.r60817.tar.xz 20-Oct-2021 23:52 7644464 +fonts-tlwg.source.tar.xz 20-Oct-2021 23:52 7644464 +fonts-tlwg.tar.xz 20-Oct-2021 23:53 5031944 +fontscale.doc.r75078.tar.xz 01-May-2025 23:53 215332 +fontscale.doc.tar.xz 01-May-2025 23:53 215332 +fontscale.r75078.tar.xz 01-May-2025 23:53 9076 +fontscale.tar.xz 01-May-2025 23:53 9076 +fontscripts.doc.r74247.tar.xz 24-Feb-2025 00:49 2178096 +fontscripts.doc.tar.xz 24-Feb-2025 00:49 2178096 +fontscripts.r74247.tar.xz 24-Feb-2025 00:49 29020 +fontscripts.source.r74247.tar.xz 24-Feb-2025 00:49 28736 +fontscripts.source.tar.xz 24-Feb-2025 00:49 28736 +fontscripts.tar.xz 24-Feb-2025 00:49 29020 +fontsetup.doc.r72734.tar.xz 02-Nov-2024 00:50 639416 +fontsetup.doc.tar.xz 02-Nov-2024 00:50 639416 +fontsetup.r72734.tar.xz 02-Nov-2024 00:50 8452 +fontsetup.tar.xz 02-Nov-2024 00:50 8452 +fontsize.doc.r73038.tar.xz 05-Dec-2024 00:50 366556 +fontsize.doc.tar.xz 05-Dec-2024 00:50 366556 +fontsize.r73038.tar.xz 05-Dec-2024 00:50 5392 +fontsize.source.r73038.tar.xz 05-Dec-2024 00:50 15984 +fontsize.source.tar.xz 05-Dec-2024 00:50 15984 +fontsize.tar.xz 05-Dec-2024 00:50 5392 +fontspec.doc.r71237.tar.xz 12-May-2024 00:01 1157776 +fontspec.doc.tar.xz 12-May-2024 00:01 1157776 +fontspec.r71237.tar.xz 12-May-2024 00:01 27416 +fontspec.source.r71237.tar.xz 12-May-2024 00:01 85944 +fontspec.source.tar.xz 12-May-2024 00:01 85944 +fontspec.tar.xz 12-May-2024 00:01 27416 +fonttable.doc.r74608.tar.xz 14-Mar-2025 00:50 343308 +fonttable.doc.tar.xz 14-Mar-2025 00:50 343308 +fonttable.r74608.tar.xz 14-Mar-2025 00:50 5744 +fonttable.source.r74608.tar.xz 14-Mar-2025 00:50 14364 +fonttable.source.tar.xz 14-Mar-2025 00:50 14364 +fonttable.tar.xz 14-Mar-2025 00:50 5744 +fontware.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 99588 +fontware.aarch64-linux.tar.xz 13-Feb-2025 00:48 99588 +fontware.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:52 113556 +fontware.amd64-freebsd.tar.xz 09-Feb-2025 00:52 113556 +fontware.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:15 100408 +fontware.amd64-netbsd.tar.xz 09-Feb-2025 18:15 100408 +fontware.armhf-linux.r73793.tar.xz 09-Feb-2025 00:52 95312 +fontware.armhf-linux.tar.xz 09-Feb-2025 00:52 95312 +fontware.doc.r73848.tar.xz 11-Feb-2025 00:48 73704 +fontware.doc.tar.xz 11-Feb-2025 00:48 73704 +fontware.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:52 113528 +fontware.i386-freebsd.tar.xz 09-Feb-2025 00:52 113528 +fontware.i386-linux.r73792.tar.xz 09-Feb-2025 00:52 108640 +fontware.i386-linux.tar.xz 09-Feb-2025 00:52 108640 +fontware.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:15 84860 +fontware.i386-netbsd.tar.xz 09-Feb-2025 18:15 84860 +fontware.i386-solaris.r73792.tar.xz 09-Feb-2025 00:52 108512 +fontware.i386-solaris.tar.xz 09-Feb-2025 00:52 108512 +fontware.r73848.tar.xz 11-Feb-2025 00:48 656 +fontware.tar.xz 11-Feb-2025 00:48 656 +fontware.universal-darwin.r73806.tar.xz 09-Feb-2025 18:15 210612 +fontware.universal-darwin.tar.xz 09-Feb-2025 18:15 210612 +fontware.windows.r73796.tar.xz 09-Feb-2025 18:15 69336 +fontware.windows.tar.xz 09-Feb-2025 18:15 69336 +fontware.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 64704 +fontware.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 64704 +fontware.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 101056 +fontware.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 101056 +fontware.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 103040 +fontware.x86_64-linux.tar.xz 19-Feb-2025 00:46 103040 +fontware.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:52 110112 +fontware.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:52 110112 +fontware.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:52 120220 +fontware.x86_64-solaris.tar.xz 09-Feb-2025 00:52 120220 +fontwrap.doc.r15878.tar.xz 28-Feb-2019 02:38 270912 +fontwrap.doc.tar.xz 28-Feb-2019 02:38 270912 +fontwrap.r15878.tar.xz 28-Feb-2019 02:38 12740 +fontwrap.tar.xz 28-Feb-2019 02:38 12740 +footbib.doc.r17115.tar.xz 28-Feb-2019 02:38 196308 +footbib.doc.tar.xz 28-Feb-2019 02:38 196308 +footbib.r17115.tar.xz 28-Feb-2019 02:38 6692 +footbib.source.r17115.tar.xz 28-Feb-2019 02:38 22456 +footbib.source.tar.xz 28-Feb-2019 02:38 22456 +footbib.tar.xz 28-Feb-2019 02:38 6692 +footmisc.doc.r75164.tar.xz 09-May-2025 23:48 555748 +footmisc.doc.tar.xz 09-May-2025 23:48 555748 +footmisc.r75164.tar.xz 09-May-2025 23:48 8088 +footmisc.source.r75164.tar.xz 09-May-2025 23:48 20284 +footmisc.source.tar.xz 09-May-2025 23:48 20284 +footmisc.tar.xz 09-May-2025 23:48 8088 +footmisx.doc.r42621.tar.xz 28-Feb-2019 02:38 396 +footmisx.doc.tar.xz 28-Feb-2019 02:38 396 +footmisx.r42621.tar.xz 28-Feb-2019 02:38 6048 +footmisx.source.r42621.tar.xz 28-Feb-2019 02:38 19832 +footmisx.source.tar.xz 28-Feb-2019 02:38 19832 +footmisx.tar.xz 28-Feb-2019 02:38 6048 +footnotebackref.doc.r27034.tar.xz 28-Feb-2019 02:38 112100 +footnotebackref.doc.tar.xz 28-Feb-2019 02:38 112100 +footnotebackref.r27034.tar.xz 28-Feb-2019 02:38 1572 +footnotebackref.tar.xz 28-Feb-2019 02:38 1572 +footnotehyper.doc.r75712.tar.xz 07-Jul-2025 23:50 83116 +footnotehyper.doc.tar.xz 07-Jul-2025 23:50 83116 +footnotehyper.r75712.tar.xz 07-Jul-2025 23:50 3760 +footnotehyper.source.r75712.tar.xz 07-Jul-2025 23:50 16008 +footnotehyper.source.tar.xz 07-Jul-2025 23:50 16008 +footnotehyper.tar.xz 07-Jul-2025 23:50 3760 +footnoterange.doc.r73642.tar.xz 30-Jan-2025 00:48 457600 +footnoterange.doc.tar.xz 30-Jan-2025 00:48 457600 +footnoterange.r73642.tar.xz 30-Jan-2025 00:48 2616 +footnoterange.source.r73642.tar.xz 30-Jan-2025 00:48 11460 +footnoterange.source.tar.xz 30-Jan-2025 00:48 11460 +footnoterange.tar.xz 30-Jan-2025 00:48 2616 +footnpag.doc.r15878.tar.xz 28-Feb-2019 02:38 53212 +footnpag.doc.tar.xz 28-Feb-2019 02:38 53212 +footnpag.r15878.tar.xz 28-Feb-2019 02:38 7732 +footnpag.source.r15878.tar.xz 28-Feb-2019 02:38 924 +footnpag.source.tar.xz 28-Feb-2019 02:38 924 +footnpag.tar.xz 28-Feb-2019 02:38 7732 +forarray.doc.r15878.tar.xz 28-Feb-2019 02:38 246748 +forarray.doc.tar.xz 28-Feb-2019 02:38 246748 +forarray.r15878.tar.xz 28-Feb-2019 02:38 5064 +forarray.source.r15878.tar.xz 28-Feb-2019 02:38 14416 +forarray.source.tar.xz 28-Feb-2019 02:38 14416 +forarray.tar.xz 28-Feb-2019 02:38 5064 +foreign.doc.r27819.tar.xz 28-Feb-2019 02:38 81432 +foreign.doc.tar.xz 28-Feb-2019 02:38 81432 +foreign.r27819.tar.xz 28-Feb-2019 02:38 1740 +foreign.source.r27819.tar.xz 28-Feb-2019 02:38 6180 +foreign.source.tar.xz 28-Feb-2019 02:38 6180 +foreign.tar.xz 28-Feb-2019 02:38 1740 +forest-quickstart.doc.r55688.tar.xz 28-Jun-2020 23:56 106464 +forest-quickstart.doc.tar.xz 28-Jun-2020 23:56 106464 +forest-quickstart.r55688.tar.xz 28-Jun-2020 23:56 472 +forest-quickstart.tar.xz 28-Jun-2020 23:56 472 +forest.doc.r57398.tar.xz 13-Jan-2021 00:59 1798192 +forest.doc.tar.xz 13-Jan-2021 00:59 1798192 +forest.r57398.tar.xz 13-Jan-2021 00:59 56176 +forest.source.r57398.tar.xz 13-Jan-2021 00:59 76248 +forest.source.tar.xz 13-Jan-2021 00:59 76248 +forest.tar.xz 13-Jan-2021 00:59 56176 +forloop.doc.r67017.tar.xz 04-May-2023 23:54 70488 +forloop.doc.tar.xz 04-May-2023 23:54 70488 +forloop.r67017.tar.xz 04-May-2023 23:54 1252 +forloop.source.r67017.tar.xz 04-May-2023 23:54 2628 +forloop.source.tar.xz 04-May-2023 23:54 2628 +forloop.tar.xz 04-May-2023 23:54 1252 +formal-grammar.doc.r61955.tar.xz 10-Feb-2022 00:55 235904 +formal-grammar.doc.tar.xz 10-Feb-2022 00:55 235904 +formal-grammar.r61955.tar.xz 10-Feb-2022 00:55 1848 +formal-grammar.source.r61955.tar.xz 10-Feb-2022 00:55 6752 +formal-grammar.source.tar.xz 10-Feb-2022 00:55 6752 +formal-grammar.tar.xz 10-Feb-2022 00:55 1848 +formation-latex-ul.doc.r70507.tar.xz 09-Mar-2024 00:49 2558768 +formation-latex-ul.doc.tar.xz 09-Mar-2024 00:49 2558768 +formation-latex-ul.r70507.tar.xz 09-Mar-2024 00:49 536 +formation-latex-ul.source.r70507.tar.xz 09-Mar-2024 00:49 1933352 +formation-latex-ul.source.tar.xz 09-Mar-2024 00:49 1933352 +formation-latex-ul.tar.xz 09-Mar-2024 00:49 536 +formlett.doc.r21480.tar.xz 28-Feb-2019 02:38 352480 +formlett.doc.tar.xz 28-Feb-2019 02:38 352480 +formlett.r21480.tar.xz 28-Feb-2019 02:38 15972 +formlett.tar.xz 28-Feb-2019 02:38 15972 +forms16be.doc.r51305.tar.xz 03-Jun-2019 23:39 1448984 +forms16be.doc.tar.xz 03-Jun-2019 23:39 1448984 +forms16be.r51305.tar.xz 03-Jun-2019 23:39 2176 +forms16be.source.r51305.tar.xz 03-Jun-2019 23:39 4984 +forms16be.source.tar.xz 03-Jun-2019 23:39 4984 +forms16be.tar.xz 03-Jun-2019 23:39 2176 +formular.doc.r15878.tar.xz 28-Feb-2019 02:39 129364 +formular.doc.tar.xz 28-Feb-2019 02:39 129364 +formular.r15878.tar.xz 28-Feb-2019 02:39 3240 +formular.source.r15878.tar.xz 28-Feb-2019 02:39 8208 +formular.source.tar.xz 28-Feb-2019 02:39 8208 +formular.tar.xz 28-Feb-2019 02:39 3240 +forum.doc.r64566.tar.xz 01-Oct-2022 23:56 27448 +forum.doc.tar.xz 01-Oct-2022 23:56 27448 +forum.r64566.tar.xz 01-Oct-2022 23:56 675560 +forum.tar.xz 01-Oct-2022 23:56 675560 +fouridx.doc.r32214.tar.xz 28-Feb-2019 02:39 211220 +fouridx.doc.tar.xz 28-Feb-2019 02:39 211220 +fouridx.r32214.tar.xz 28-Feb-2019 02:39 1184 +fouridx.source.r32214.tar.xz 28-Feb-2019 02:39 3260 +fouridx.source.tar.xz 28-Feb-2019 02:39 3260 +fouridx.tar.xz 28-Feb-2019 02:39 1184 +fourier.doc.r72243.tar.xz 09-Sep-2024 23:47 302112 +fourier.doc.tar.xz 09-Sep-2024 23:47 302112 +fourier.r72243.tar.xz 09-Sep-2024 23:47 274932 +fourier.tar.xz 09-Sep-2024 23:47 274932 +fouriernc.doc.r29646.tar.xz 28-Feb-2019 02:39 37464 +fouriernc.doc.tar.xz 28-Feb-2019 02:39 37464 +fouriernc.r29646.tar.xz 28-Feb-2019 02:39 12492 +fouriernc.tar.xz 28-Feb-2019 02:39 12492 +fp.doc.r49719.tar.xz 28-Feb-2019 02:39 218964 +fp.doc.tar.xz 28-Feb-2019 02:39 218964 +fp.r49719.tar.xz 28-Feb-2019 02:39 19252 +fp.tar.xz 28-Feb-2019 02:39 19252 +fpl.doc.r54512.tar.xz 24-Mar-2020 00:58 7968 +fpl.doc.tar.xz 24-Mar-2020 00:58 7968 +fpl.r54512.tar.xz 24-Mar-2020 00:58 288416 +fpl.source.r54512.tar.xz 24-Mar-2020 00:58 30652 +fpl.source.tar.xz 24-Mar-2020 00:58 30652 +fpl.tar.xz 24-Mar-2020 00:58 288416 +fragmaster.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:39 344 +fragmaster.aarch64-linux.tar.xz 28-Feb-2019 02:39 344 +fragmaster.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:39 344 +fragmaster.amd64-freebsd.tar.xz 28-Feb-2019 02:39 344 +fragmaster.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:39 344 +fragmaster.amd64-netbsd.tar.xz 28-Feb-2019 02:39 344 +fragmaster.armhf-linux.r30015.tar.xz 28-Feb-2019 02:39 344 +fragmaster.armhf-linux.tar.xz 28-Feb-2019 02:39 344 +fragmaster.doc.r26313.tar.xz 28-Feb-2019 02:39 80316 +fragmaster.doc.tar.xz 28-Feb-2019 02:39 80316 +fragmaster.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:39 340 +fragmaster.i386-freebsd.tar.xz 28-Feb-2019 02:39 340 +fragmaster.i386-linux.r13663.tar.xz 28-Feb-2019 02:39 344 +fragmaster.i386-linux.tar.xz 28-Feb-2019 02:39 344 +fragmaster.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:39 344 +fragmaster.i386-netbsd.tar.xz 28-Feb-2019 02:39 344 +fragmaster.i386-solaris.r13898.tar.xz 28-Feb-2019 02:39 344 +fragmaster.i386-solaris.tar.xz 28-Feb-2019 02:39 344 +fragmaster.r26313.tar.xz 28-Feb-2019 02:39 6872 +fragmaster.tar.xz 28-Feb-2019 02:39 6872 +fragmaster.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +fragmaster.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +fragmaster.windows.r65891.tar.xz 20-Feb-2023 22:12 2308 +fragmaster.windows.tar.xz 20-Feb-2023 22:12 2308 +fragmaster.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:39 344 +fragmaster.x86_64-cygwin.tar.xz 28-Feb-2019 02:39 344 +fragmaster.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:39 352 +fragmaster.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:39 352 +fragmaster.x86_64-linux.r13777.tar.xz 28-Feb-2019 02:39 340 +fragmaster.x86_64-linux.tar.xz 28-Feb-2019 02:39 340 +fragmaster.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:39 348 +fragmaster.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:39 348 +fragmaster.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:39 344 +fragmaster.x86_64-solaris.tar.xz 28-Feb-2019 02:39 344 +fragments.doc.r15878.tar.xz 28-Feb-2019 02:39 484 +fragments.doc.tar.xz 28-Feb-2019 02:39 484 +fragments.r15878.tar.xz 28-Feb-2019 02:39 2236 +fragments.tar.xz 28-Feb-2019 02:39 2236 +fragoli.doc.r75517.tar.xz 15-Jun-2025 23:49 634984 +fragoli.doc.tar.xz 15-Jun-2025 23:49 634984 +fragoli.r75517.tar.xz 15-Jun-2025 23:49 14744 +fragoli.tar.xz 15-Jun-2025 23:49 14744 +frame.doc.r18312.tar.xz 28-Feb-2019 02:39 30688 +frame.doc.tar.xz 28-Feb-2019 02:39 30688 +frame.r18312.tar.xz 28-Feb-2019 02:39 1312 +frame.tar.xz 28-Feb-2019 02:39 1312 +framed.doc.r26789.tar.xz 28-Feb-2019 02:39 239020 +framed.doc.tar.xz 28-Feb-2019 02:39 239020 +framed.r26789.tar.xz 28-Feb-2019 02:39 7916 +framed.tar.xz 28-Feb-2019 02:39 7916 +framedsyntax.doc.r72199.tar.xz 05-Sep-2024 23:47 452128 +framedsyntax.doc.tar.xz 05-Sep-2024 23:47 452128 +framedsyntax.r72199.tar.xz 05-Sep-2024 23:47 3476 +framedsyntax.source.r72199.tar.xz 05-Sep-2024 23:47 10568 +framedsyntax.source.tar.xz 05-Sep-2024 23:47 10568 +framedsyntax.tar.xz 05-Sep-2024 23:47 3476 +francais-bst.doc.r69854.tar.xz 15-Feb-2024 00:46 44692 +francais-bst.doc.tar.xz 15-Feb-2024 00:46 44692 +francais-bst.r69854.tar.xz 15-Feb-2024 00:46 7864 +francais-bst.source.r69854.tar.xz 15-Feb-2024 00:46 54180 +francais-bst.source.tar.xz 15-Feb-2024 00:46 54180 +francais-bst.tar.xz 15-Feb-2024 00:46 7864 +frankenstein.doc.r15878.tar.xz 28-Feb-2019 02:39 1830040 +frankenstein.doc.tar.xz 28-Feb-2019 02:39 1830040 +frankenstein.r15878.tar.xz 28-Feb-2019 02:39 137188 +frankenstein.source.r15878.tar.xz 28-Feb-2019 02:39 5588 +frankenstein.source.tar.xz 28-Feb-2019 02:39 5588 +frankenstein.tar.xz 28-Feb-2019 02:39 137188 +frcursive.doc.r24559.tar.xz 28-Feb-2019 02:39 322488 +frcursive.doc.tar.xz 28-Feb-2019 02:39 322488 +frcursive.r24559.tar.xz 28-Feb-2019 02:39 1787800 +frcursive.tar.xz 28-Feb-2019 02:39 1787800 +frederika2016.doc.r42157.tar.xz 28-Feb-2019 02:39 336060 +frederika2016.doc.tar.xz 28-Feb-2019 02:39 336060 +frederika2016.r42157.tar.xz 28-Feb-2019 02:39 41296 +frederika2016.tar.xz 28-Feb-2019 02:39 41296 +freealign.doc.r69267.tar.xz 02-Jan-2024 00:45 46984 +freealign.doc.tar.xz 02-Jan-2024 00:45 46984 +freealign.r69267.tar.xz 02-Jan-2024 00:45 1088 +freealign.tar.xz 02-Jan-2024 00:45 1088 +frege.doc.r27417.tar.xz 28-Feb-2019 02:39 142332 +frege.doc.tar.xz 28-Feb-2019 02:39 142332 +frege.r27417.tar.xz 28-Feb-2019 02:39 4528 +frege.tar.xz 28-Feb-2019 02:39 4528 +frenchmath.doc.r71205.tar.xz 07-May-2024 23:46 865076 +frenchmath.doc.tar.xz 07-May-2024 23:46 865076 +frenchmath.r71205.tar.xz 07-May-2024 23:46 2532 +frenchmath.source.r71205.tar.xz 07-May-2024 23:46 16320 +frenchmath.source.tar.xz 07-May-2024 23:46 16320 +frenchmath.tar.xz 07-May-2024 23:46 2532 +fretplot.doc.r76337.tar.xz 17-Sep-2025 23:50 164848 +fretplot.doc.tar.xz 17-Sep-2025 23:50 164848 +fretplot.r76337.tar.xz 17-Sep-2025 23:50 11940 +fretplot.tar.xz 17-Sep-2025 23:50 11940 +frimurer.doc.r56704.tar.xz 19-Oct-2020 23:57 191432 +frimurer.doc.tar.xz 19-Oct-2020 23:57 191432 +frimurer.r56704.tar.xz 19-Oct-2020 23:57 15456 +frimurer.source.r56704.tar.xz 19-Oct-2020 23:57 4184 +frimurer.source.tar.xz 19-Oct-2020 23:57 4184 +frimurer.tar.xz 19-Oct-2020 23:57 15456 +frletter.doc.r15878.tar.xz 28-Feb-2019 02:39 596 +frletter.doc.tar.xz 28-Feb-2019 02:39 596 +frletter.r15878.tar.xz 28-Feb-2019 02:39 1792 +frletter.tar.xz 28-Feb-2019 02:39 1792 +frontespizio.doc.r24054.tar.xz 28-Feb-2019 02:39 885988 +frontespizio.doc.tar.xz 28-Feb-2019 02:39 885988 +frontespizio.r24054.tar.xz 28-Feb-2019 02:39 5464 +frontespizio.source.r24054.tar.xz 28-Feb-2019 02:39 22604 +frontespizio.source.tar.xz 28-Feb-2019 02:39 22604 +frontespizio.tar.xz 28-Feb-2019 02:39 5464 +froufrou.doc.r67201.tar.xz 23-May-2023 23:44 65568 +froufrou.doc.tar.xz 23-May-2023 23:44 65568 +froufrou.r67201.tar.xz 23-May-2023 23:44 4072 +froufrou.source.r67201.tar.xz 23-May-2023 23:44 6528 +froufrou.source.tar.xz 23-May-2023 23:44 6528 +froufrou.tar.xz 23-May-2023 23:44 4072 +frpseudocode.doc.r56088.tar.xz 10-Aug-2020 23:56 68644 +frpseudocode.doc.tar.xz 10-Aug-2020 23:56 68644 +frpseudocode.r56088.tar.xz 10-Aug-2020 23:56 1216 +frpseudocode.tar.xz 10-Aug-2020 23:56 1216 +ftc-notebook.doc.r50043.tar.xz 28-Feb-2019 02:39 3622556 +ftc-notebook.doc.tar.xz 28-Feb-2019 02:39 3622556 +ftc-notebook.r50043.tar.xz 28-Feb-2019 02:39 7084 +ftc-notebook.tar.xz 28-Feb-2019 02:39 7084 +ftcap.doc.r17275.tar.xz 28-Feb-2019 02:39 210700 +ftcap.doc.tar.xz 28-Feb-2019 02:39 210700 +ftcap.r17275.tar.xz 28-Feb-2019 02:39 2044 +ftcap.tar.xz 28-Feb-2019 02:39 2044 +ftnxtra.doc.r29652.tar.xz 28-Feb-2019 02:39 23512 +ftnxtra.doc.tar.xz 28-Feb-2019 02:39 23512 +ftnxtra.r29652.tar.xz 28-Feb-2019 02:39 1900 +ftnxtra.source.r29652.tar.xz 28-Feb-2019 02:39 2804 +ftnxtra.source.tar.xz 28-Feb-2019 02:39 2804 +ftnxtra.tar.xz 28-Feb-2019 02:39 1900 +fullblck.doc.r25434.tar.xz 28-Feb-2019 02:39 38848 +fullblck.doc.tar.xz 28-Feb-2019 02:39 38848 +fullblck.r25434.tar.xz 28-Feb-2019 02:39 1124 +fullblck.source.r25434.tar.xz 28-Feb-2019 02:39 2808 +fullblck.source.tar.xz 28-Feb-2019 02:39 2808 +fullblck.tar.xz 28-Feb-2019 02:39 1124 +fullminipage.doc.r34545.tar.xz 28-Feb-2019 02:39 254076 +fullminipage.doc.tar.xz 28-Feb-2019 02:39 254076 +fullminipage.r34545.tar.xz 28-Feb-2019 02:39 1792 +fullminipage.source.r34545.tar.xz 28-Feb-2019 02:39 4348 +fullminipage.source.tar.xz 28-Feb-2019 02:39 4348 +fullminipage.tar.xz 28-Feb-2019 02:39 1792 +fullwidth.doc.r24684.tar.xz 28-Feb-2019 02:39 284820 +fullwidth.doc.tar.xz 28-Feb-2019 02:39 284820 +fullwidth.r24684.tar.xz 28-Feb-2019 02:39 3760 +fullwidth.tar.xz 28-Feb-2019 02:39 3760 +functan.doc.r15878.tar.xz 28-Feb-2019 02:39 147704 +functan.doc.tar.xz 28-Feb-2019 02:39 147704 +functan.r15878.tar.xz 28-Feb-2019 02:39 2552 +functan.source.r15878.tar.xz 28-Feb-2019 02:39 9636 +functan.source.tar.xz 28-Feb-2019 02:39 9636 +functan.tar.xz 28-Feb-2019 02:39 2552 +functional.doc.r73156.tar.xz 19-Dec-2024 00:50 732764 +functional.doc.tar.xz 19-Dec-2024 00:50 732764 +functional.r73156.tar.xz 19-Dec-2024 00:50 11216 +functional.tar.xz 19-Dec-2024 00:50 11216 +fundus-calligra.doc.r26018.tar.xz 28-Feb-2019 02:39 185644 +fundus-calligra.doc.tar.xz 28-Feb-2019 02:39 185644 +fundus-calligra.r26018.tar.xz 28-Feb-2019 02:39 1540 +fundus-calligra.source.r26018.tar.xz 28-Feb-2019 02:39 3480 +fundus-calligra.source.tar.xz 28-Feb-2019 02:39 3480 +fundus-calligra.tar.xz 28-Feb-2019 02:39 1540 +fundus-cyr.r26019.tar.xz 28-Feb-2019 02:39 1404 +fundus-cyr.tar.xz 28-Feb-2019 02:39 1404 +fundus-sueterlin.doc.r26030.tar.xz 28-Feb-2019 02:39 180884 +fundus-sueterlin.doc.tar.xz 28-Feb-2019 02:39 180884 +fundus-sueterlin.r26030.tar.xz 28-Feb-2019 02:39 1556 +fundus-sueterlin.source.r26030.tar.xz 28-Feb-2019 02:39 3576 +fundus-sueterlin.source.tar.xz 28-Feb-2019 02:39 3576 +fundus-sueterlin.tar.xz 28-Feb-2019 02:39 1556 +fvextra.doc.r75355.tar.xz 30-May-2025 23:48 908220 +fvextra.doc.tar.xz 30-May-2025 23:48 908220 +fvextra.r75355.tar.xz 30-May-2025 23:48 16908 +fvextra.source.r75355.tar.xz 30-May-2025 23:48 66080 +fvextra.source.tar.xz 30-May-2025 23:48 66080 +fvextra.tar.xz 30-May-2025 23:48 16908 +fwlw.doc.r29803.tar.xz 28-Feb-2019 02:39 36676 +fwlw.doc.tar.xz 28-Feb-2019 02:39 36676 +fwlw.r29803.tar.xz 28-Feb-2019 02:39 3064 +fwlw.tar.xz 28-Feb-2019 02:39 3064 +g-brief.doc.r50415.tar.xz 17-Mar-2019 01:24 258180 +g-brief.doc.tar.xz 17-Mar-2019 01:24 258180 +g-brief.r50415.tar.xz 17-Mar-2019 01:24 5060 +g-brief.source.r50415.tar.xz 17-Mar-2019 01:24 12476 +g-brief.source.tar.xz 17-Mar-2019 01:24 12476 +g-brief.tar.xz 17-Mar-2019 01:24 5060 +gaceta.doc.r15878.tar.xz 28-Feb-2019 02:39 124196 +gaceta.doc.tar.xz 28-Feb-2019 02:39 124196 +gaceta.r15878.tar.xz 28-Feb-2019 02:39 17880 +gaceta.tar.xz 28-Feb-2019 02:39 17880 +galois.doc.r15878.tar.xz 28-Feb-2019 02:39 87220 +galois.doc.tar.xz 28-Feb-2019 02:39 87220 +galois.r15878.tar.xz 28-Feb-2019 02:39 2328 +galois.source.r15878.tar.xz 28-Feb-2019 02:39 6452 +galois.source.tar.xz 28-Feb-2019 02:39 6452 +galois.tar.xz 28-Feb-2019 02:39 2328 +gamebook.doc.r24714.tar.xz 28-Feb-2019 02:39 219896 +gamebook.doc.tar.xz 28-Feb-2019 02:39 219896 +gamebook.r24714.tar.xz 28-Feb-2019 02:39 1696 +gamebook.source.r24714.tar.xz 28-Feb-2019 02:39 4640 +gamebook.source.tar.xz 28-Feb-2019 02:39 4640 +gamebook.tar.xz 28-Feb-2019 02:39 1696 +gamebooklib.doc.r67772.tar.xz 30-Jul-2023 23:44 402440 +gamebooklib.doc.tar.xz 30-Jul-2023 23:44 402440 +gamebooklib.r67772.tar.xz 30-Jul-2023 23:44 3816 +gamebooklib.source.r67772.tar.xz 30-Jul-2023 23:44 15456 +gamebooklib.source.tar.xz 30-Jul-2023 23:44 15456 +gamebooklib.tar.xz 30-Jul-2023 23:44 3816 +gammas.doc.r56403.tar.xz 22-Sep-2020 23:56 3276 +gammas.doc.tar.xz 22-Sep-2020 23:56 3276 +gammas.r56403.tar.xz 22-Sep-2020 23:56 9876 +gammas.tar.xz 22-Sep-2020 23:56 9876 +garamond-libre.doc.r71058.tar.xz 24-Apr-2024 23:48 495088 +garamond-libre.doc.tar.xz 24-Apr-2024 23:48 495088 +garamond-libre.r71058.tar.xz 24-Apr-2024 23:48 7141672 +garamond-libre.tar.xz 24-Apr-2024 23:48 7141672 +garamond-math.doc.r61481.tar.xz 04-Jan-2022 00:53 292360 +garamond-math.doc.tar.xz 04-Jan-2022 00:53 292360 +garamond-math.r61481.tar.xz 04-Jan-2022 00:53 407520 +garamond-math.tar.xz 04-Jan-2022 00:53 407520 +garrigues.doc.r15878.tar.xz 28-Feb-2019 02:39 532 +garrigues.doc.tar.xz 28-Feb-2019 02:39 532 +garrigues.r15878.tar.xz 28-Feb-2019 02:39 8268 +garrigues.tar.xz 28-Feb-2019 02:39 8268 +garuda-c90.r60832.tar.xz 21-Oct-2021 23:52 3416 +garuda-c90.source.r60832.tar.xz 21-Oct-2021 23:52 1368 +garuda-c90.source.tar.xz 21-Oct-2021 23:52 1368 +garuda-c90.tar.xz 21-Oct-2021 23:52 3416 +gastex.doc.r69842.tar.xz 14-Feb-2024 00:46 129720 +gastex.doc.tar.xz 14-Feb-2024 00:46 129720 +gastex.r69842.tar.xz 14-Feb-2024 00:46 18736 +gastex.tar.xz 14-Feb-2024 00:46 18736 +gates.doc.r29803.tar.xz 28-Feb-2019 02:39 201680 +gates.doc.tar.xz 28-Feb-2019 02:39 201680 +gates.r29803.tar.xz 28-Feb-2019 02:39 10980 +gates.tar.xz 28-Feb-2019 02:39 10980 +gatherenum.doc.r67201.tar.xz 23-May-2023 23:44 406000 +gatherenum.doc.tar.xz 23-May-2023 23:44 406000 +gatherenum.r67201.tar.xz 23-May-2023 23:44 1708 +gatherenum.source.r67201.tar.xz 23-May-2023 23:44 4180 +gatherenum.source.tar.xz 23-May-2023 23:44 4180 +gatherenum.tar.xz 23-May-2023 23:44 1708 +gauss.doc.r32934.tar.xz 28-Feb-2019 02:39 113732 +gauss.doc.tar.xz 28-Feb-2019 02:39 113732 +gauss.r32934.tar.xz 28-Feb-2019 02:39 16628 +gauss.tar.xz 28-Feb-2019 02:39 16628 +gb4e-next.doc.r72692.tar.xz 29-Oct-2024 00:46 44040 +gb4e-next.doc.tar.xz 29-Oct-2024 00:46 44040 +gb4e-next.r72692.tar.xz 29-Oct-2024 00:46 1256 +gb4e-next.tar.xz 29-Oct-2024 00:46 1256 +gb4e.doc.r19216.tar.xz 28-Feb-2019 02:39 150476 +gb4e.doc.tar.xz 28-Feb-2019 02:39 150476 +gb4e.r19216.tar.xz 28-Feb-2019 02:39 6944 +gb4e.tar.xz 28-Feb-2019 02:39 6944 +gbt7714.doc.r75577.tar.xz 22-Jun-2025 23:48 462424 +gbt7714.doc.tar.xz 22-Jun-2025 23:48 462424 +gbt7714.r75577.tar.xz 22-Jun-2025 23:48 13200 +gbt7714.source.r75577.tar.xz 22-Jun-2025 23:48 31008 +gbt7714.source.tar.xz 22-Jun-2025 23:48 31008 +gbt7714.tar.xz 22-Jun-2025 23:48 13200 +gcard.doc.r15878.tar.xz 28-Feb-2019 02:39 128064 +gcard.doc.tar.xz 28-Feb-2019 02:39 128064 +gcard.r15878.tar.xz 28-Feb-2019 02:39 1676 +gcard.tar.xz 28-Feb-2019 02:39 1676 +gchords.doc.r29803.tar.xz 28-Feb-2019 02:39 50180 +gchords.doc.tar.xz 28-Feb-2019 02:39 50180 +gchords.r29803.tar.xz 28-Feb-2019 02:39 3360 +gchords.tar.xz 28-Feb-2019 02:39 3360 +gcite.doc.r15878.tar.xz 28-Feb-2019 02:39 164560 +gcite.doc.tar.xz 28-Feb-2019 02:39 164560 +gcite.r15878.tar.xz 28-Feb-2019 02:39 1884 +gcite.source.r15878.tar.xz 28-Feb-2019 02:39 7576 +gcite.source.tar.xz 28-Feb-2019 02:39 7576 +gcite.tar.xz 28-Feb-2019 02:39 1884 +gckanbun.doc.r61719.tar.xz 24-Jan-2022 00:53 76744 +gckanbun.doc.tar.xz 24-Jan-2022 00:53 76744 +gckanbun.r61719.tar.xz 24-Jan-2022 00:53 2008 +gckanbun.tar.xz 24-Jan-2022 00:53 2008 +gelasio.doc.r71047.tar.xz 23-Apr-2024 23:46 34652 +gelasio.doc.tar.xz 23-Apr-2024 23:46 34652 +gelasio.r71047.tar.xz 23-Apr-2024 23:46 1565068 +gelasio.tar.xz 23-Apr-2024 23:46 1565068 +gelasiomath.doc.r73362.tar.xz 08-Jan-2025 15:16 126116 +gelasiomath.doc.tar.xz 08-Jan-2025 15:16 126116 +gelasiomath.r73362.tar.xz 08-Jan-2025 15:16 127892 +gelasiomath.tar.xz 08-Jan-2025 15:16 127892 +gender.doc.r36464.tar.xz 28-Feb-2019 02:39 311580 +gender.doc.tar.xz 28-Feb-2019 02:39 311580 +gender.r36464.tar.xz 28-Feb-2019 02:39 1824 +gender.source.r36464.tar.xz 28-Feb-2019 02:39 4348 +gender.source.tar.xz 28-Feb-2019 02:39 4348 +gender.tar.xz 28-Feb-2019 02:39 1824 +gene-logic.doc.r75878.tar.xz 23-Jul-2025 23:50 66856 +gene-logic.doc.tar.xz 23-Jul-2025 23:50 66856 +gene-logic.r75878.tar.xz 23-Jul-2025 23:50 1984 +gene-logic.tar.xz 23-Jul-2025 23:50 1984 +genealogy-profiles.doc.r73043.tar.xz 06-Dec-2024 00:49 177288 +genealogy-profiles.doc.tar.xz 06-Dec-2024 00:49 177288 +genealogy-profiles.r73043.tar.xz 06-Dec-2024 00:49 6684 +genealogy-profiles.tar.xz 06-Dec-2024 00:49 6684 +genealogy.doc.r25112.tar.xz 28-Feb-2019 02:39 1128 +genealogy.doc.tar.xz 28-Feb-2019 02:39 1128 +genealogy.r25112.tar.xz 28-Feb-2019 02:39 2560 +genealogy.tar.xz 28-Feb-2019 02:39 2560 +genealogytree.doc.r66513.tar.xz 10-Mar-2023 00:55 4836852 +genealogytree.doc.tar.xz 10-Mar-2023 00:55 4836852 +genealogytree.r66513.tar.xz 10-Mar-2023 00:55 36176 +genealogytree.tar.xz 10-Mar-2023 00:55 36176 +genmpage.doc.r15878.tar.xz 28-Feb-2019 02:39 74052 +genmpage.doc.tar.xz 28-Feb-2019 02:39 74052 +genmpage.r15878.tar.xz 28-Feb-2019 02:39 2048 +genmpage.source.r15878.tar.xz 28-Feb-2019 02:39 4584 +genmpage.source.tar.xz 28-Feb-2019 02:39 4584 +genmpage.tar.xz 28-Feb-2019 02:39 2048 +gensymb.doc.r64740.tar.xz 18-Oct-2022 23:56 221592 +gensymb.doc.tar.xz 18-Oct-2022 23:56 221592 +gensymb.r64740.tar.xz 18-Oct-2022 23:56 2052 +gensymb.source.r64740.tar.xz 18-Oct-2022 23:56 5656 +gensymb.source.tar.xz 18-Oct-2022 23:56 5656 +gensymb.tar.xz 18-Oct-2022 23:56 2052 +gentium-otf.doc.r75790.tar.xz 15-Jul-2025 23:47 1217252 +gentium-otf.doc.tar.xz 15-Jul-2025 23:47 1217252 +gentium-otf.r75790.tar.xz 15-Jul-2025 23:47 2092 +gentium-otf.tar.xz 15-Jul-2025 23:47 2092 +gentium-sil.doc.r75783.tar.xz 14-Jul-2025 23:48 763304 +gentium-sil.doc.tar.xz 14-Jul-2025 23:48 763304 +gentium-sil.r75783.tar.xz 14-Jul-2025 23:48 15529668 +gentium-sil.tar.xz 14-Jul-2025 23:48 15529668 +gentle.doc.r15878.tar.xz 28-Feb-2019 02:39 394788 +gentle.doc.tar.xz 28-Feb-2019 02:39 394788 +gentle.r15878.tar.xz 28-Feb-2019 02:39 428 +gentle.tar.xz 28-Feb-2019 02:39 428 +gentombow.doc.r64333.tar.xz 10-Sep-2022 23:53 518772 +gentombow.doc.tar.xz 10-Sep-2022 23:53 518772 +gentombow.r64333.tar.xz 10-Sep-2022 23:53 10908 +gentombow.tar.xz 10-Sep-2022 23:53 10908 +geometry.doc.r61719.tar.xz 24-Jan-2022 00:53 864536 +geometry.doc.tar.xz 24-Jan-2022 00:53 864536 +geometry.r61719.tar.xz 24-Jan-2022 00:53 8712 +geometry.source.r61719.tar.xz 24-Jan-2022 00:53 47940 +geometry.source.tar.xz 24-Jan-2022 00:53 47940 +geometry.tar.xz 24-Jan-2022 00:53 8712 +geradwp.doc.r63134.tar.xz 25-Apr-2022 23:53 847744 +geradwp.doc.tar.xz 25-Apr-2022 23:53 847744 +geradwp.r63134.tar.xz 25-Apr-2022 23:53 5916 +geradwp.source.r63134.tar.xz 25-Apr-2022 23:53 23620 +geradwp.source.tar.xz 25-Apr-2022 23:53 23620 +geradwp.tar.xz 25-Apr-2022 23:53 5916 +german.doc.r42428.tar.xz 28-Feb-2019 02:39 193600 +german.doc.tar.xz 28-Feb-2019 02:39 193600 +german.r42428.tar.xz 28-Feb-2019 02:39 6760 +german.source.r42428.tar.xz 28-Feb-2019 02:39 27208 +german.source.tar.xz 28-Feb-2019 02:39 27208 +german.tar.xz 28-Feb-2019 02:39 6760 +germbib.doc.r15878.tar.xz 28-Feb-2019 02:39 35556 +germbib.doc.tar.xz 28-Feb-2019 02:39 35556 +germbib.r15878.tar.xz 28-Feb-2019 02:39 12204 +germbib.tar.xz 28-Feb-2019 02:39 12204 +germkorr.doc.r15878.tar.xz 28-Feb-2019 02:39 172296 +germkorr.doc.tar.xz 28-Feb-2019 02:39 172296 +germkorr.r15878.tar.xz 28-Feb-2019 02:39 2348 +germkorr.tar.xz 28-Feb-2019 02:39 2348 +geschichtsfrkl.doc.r42121.tar.xz 28-Feb-2019 02:39 642508 +geschichtsfrkl.doc.tar.xz 28-Feb-2019 02:39 642508 +geschichtsfrkl.r42121.tar.xz 28-Feb-2019 02:39 5320 +geschichtsfrkl.source.r42121.tar.xz 28-Feb-2019 02:39 24896 +geschichtsfrkl.source.tar.xz 28-Feb-2019 02:39 24896 +geschichtsfrkl.tar.xz 28-Feb-2019 02:39 5320 +getfiledate.doc.r16189.tar.xz 28-Feb-2019 02:39 104636 +getfiledate.doc.tar.xz 28-Feb-2019 02:39 104636 +getfiledate.r16189.tar.xz 28-Feb-2019 02:39 2224 +getfiledate.tar.xz 28-Feb-2019 02:39 2224 +getitems.doc.r39365.tar.xz 28-Feb-2019 02:39 201756 +getitems.doc.tar.xz 28-Feb-2019 02:39 201756 +getitems.r39365.tar.xz 28-Feb-2019 02:39 1668 +getitems.source.r39365.tar.xz 28-Feb-2019 02:39 5440 +getitems.source.tar.xz 28-Feb-2019 02:39 5440 +getitems.tar.xz 28-Feb-2019 02:39 1668 +getmap.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:39 344 +getmap.aarch64-linux.tar.xz 28-Feb-2019 02:39 344 +getmap.amd64-freebsd.r34971.tar.xz 28-Feb-2019 02:39 344 +getmap.amd64-freebsd.tar.xz 28-Feb-2019 02:39 344 +getmap.amd64-netbsd.r34971.tar.xz 28-Feb-2019 02:39 344 +getmap.amd64-netbsd.tar.xz 28-Feb-2019 02:39 344 +getmap.armhf-linux.r34971.tar.xz 28-Feb-2019 02:39 344 +getmap.armhf-linux.tar.xz 28-Feb-2019 02:39 344 +getmap.doc.r75447.tar.xz 07-Jun-2025 23:49 1988232 +getmap.doc.tar.xz 07-Jun-2025 23:49 1988232 +getmap.i386-freebsd.r34971.tar.xz 28-Feb-2019 02:39 344 +getmap.i386-freebsd.tar.xz 28-Feb-2019 02:39 344 +getmap.i386-linux.r34971.tar.xz 28-Feb-2019 02:39 340 +getmap.i386-linux.tar.xz 28-Feb-2019 02:39 340 +getmap.i386-netbsd.r34971.tar.xz 28-Feb-2019 02:39 344 +getmap.i386-netbsd.tar.xz 28-Feb-2019 02:39 344 +getmap.i386-solaris.r34971.tar.xz 28-Feb-2019 02:39 340 +getmap.i386-solaris.tar.xz 28-Feb-2019 02:39 340 +getmap.r75447.tar.xz 07-Jun-2025 23:49 7548 +getmap.tar.xz 07-Jun-2025 23:49 7548 +getmap.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +getmap.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +getmap.windows.r65891.tar.xz 20-Feb-2023 22:12 2304 +getmap.windows.tar.xz 20-Feb-2023 22:12 2304 +getmap.x86_64-cygwin.r34971.tar.xz 28-Feb-2019 02:39 344 +getmap.x86_64-cygwin.tar.xz 28-Feb-2019 02:39 344 +getmap.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:39 352 +getmap.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:39 352 +getmap.x86_64-linux.r34971.tar.xz 28-Feb-2019 02:39 344 +getmap.x86_64-linux.tar.xz 28-Feb-2019 02:39 344 +getmap.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:39 348 +getmap.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:39 348 +getmap.x86_64-solaris.r34971.tar.xz 28-Feb-2019 02:39 344 +getmap.x86_64-solaris.tar.xz 28-Feb-2019 02:39 344 +getoptk.doc.r23567.tar.xz 28-Feb-2019 02:39 278344 +getoptk.doc.tar.xz 28-Feb-2019 02:39 278344 +getoptk.r23567.tar.xz 28-Feb-2019 02:39 4180 +getoptk.tar.xz 28-Feb-2019 02:39 4180 +gettitlestring.doc.r53170.tar.xz 18-Dec-2019 00:54 317824 +gettitlestring.doc.tar.xz 18-Dec-2019 00:54 317824 +gettitlestring.r53170.tar.xz 18-Dec-2019 00:54 2780 +gettitlestring.source.r53170.tar.xz 18-Dec-2019 00:54 6424 +gettitlestring.source.tar.xz 18-Dec-2019 00:54 6424 +gettitlestring.tar.xz 18-Dec-2019 00:54 2780 +gfdl.doc.r75712.tar.xz 07-Jul-2025 23:50 259492 +gfdl.doc.tar.xz 07-Jul-2025 23:50 259492 +gfdl.r75712.tar.xz 07-Jul-2025 23:50 12436 +gfdl.source.r75712.tar.xz 07-Jul-2025 23:50 16292 +gfdl.source.tar.xz 07-Jul-2025 23:50 16292 +gfdl.tar.xz 07-Jul-2025 23:50 12436 +gfnotation.doc.r37156.tar.xz 28-Feb-2019 02:39 167284 +gfnotation.doc.tar.xz 28-Feb-2019 02:39 167284 +gfnotation.r37156.tar.xz 28-Feb-2019 02:39 14368 +gfnotation.tar.xz 28-Feb-2019 02:39 14368 +gfsartemisia.doc.r19469.tar.xz 28-Feb-2019 02:39 117180 +gfsartemisia.doc.tar.xz 28-Feb-2019 02:39 117180 +gfsartemisia.r19469.tar.xz 28-Feb-2019 02:39 981732 +gfsartemisia.tar.xz 28-Feb-2019 02:39 981732 +gfsbaskerville.doc.r19440.tar.xz 28-Feb-2019 02:39 45796 +gfsbaskerville.doc.tar.xz 28-Feb-2019 02:39 45796 +gfsbaskerville.r19440.tar.xz 28-Feb-2019 02:39 116604 +gfsbaskerville.tar.xz 28-Feb-2019 02:39 116604 +gfsbodoni.doc.r28484.tar.xz 28-Feb-2019 02:39 93680 +gfsbodoni.doc.tar.xz 28-Feb-2019 02:39 93680 +gfsbodoni.r28484.tar.xz 28-Feb-2019 02:39 906264 +gfsbodoni.tar.xz 28-Feb-2019 02:39 906264 +gfscomplutum.doc.r19469.tar.xz 28-Feb-2019 02:39 58076 +gfscomplutum.doc.tar.xz 28-Feb-2019 02:39 58076 +gfscomplutum.r19469.tar.xz 28-Feb-2019 02:39 123244 +gfscomplutum.tar.xz 28-Feb-2019 02:39 123244 +gfsdidot.doc.r69112.tar.xz 14-Dec-2023 22:48 42712 +gfsdidot.doc.tar.xz 14-Dec-2023 22:48 42712 +gfsdidot.r69112.tar.xz 14-Dec-2023 22:48 1343464 +gfsdidot.tar.xz 14-Dec-2023 22:48 1343464 +gfsdidotclassic.doc.r52778.tar.xz 14-Nov-2019 00:55 800 +gfsdidotclassic.doc.tar.xz 14-Nov-2019 00:55 800 +gfsdidotclassic.r52778.tar.xz 14-Nov-2019 00:55 30192 +gfsdidotclassic.tar.xz 14-Nov-2019 00:55 30192 +gfsneohellenic.doc.r63944.tar.xz 20-Jul-2022 23:53 10308 +gfsneohellenic.doc.tar.xz 20-Jul-2022 23:53 10308 +gfsneohellenic.r63944.tar.xz 20-Jul-2022 23:53 977780 +gfsneohellenic.tar.xz 20-Jul-2022 23:53 977780 +gfsneohellenicmath.doc.r63928.tar.xz 18-Jul-2022 23:51 1436 +gfsneohellenicmath.doc.tar.xz 18-Jul-2022 23:51 1436 +gfsneohellenicmath.r63928.tar.xz 18-Jul-2022 23:51 296192 +gfsneohellenicmath.tar.xz 18-Jul-2022 23:51 296192 +gfsporson.doc.r18651.tar.xz 28-Feb-2019 02:39 33264 +gfsporson.doc.tar.xz 28-Feb-2019 02:39 33264 +gfsporson.r18651.tar.xz 28-Feb-2019 02:39 125520 +gfsporson.tar.xz 28-Feb-2019 02:39 125520 +gfssolomos.doc.r18651.tar.xz 28-Feb-2019 02:39 52744 +gfssolomos.doc.tar.xz 28-Feb-2019 02:39 52744 +gfssolomos.r18651.tar.xz 28-Feb-2019 02:39 102812 +gfssolomos.tar.xz 28-Feb-2019 02:39 102812 +ghab.doc.r29803.tar.xz 28-Feb-2019 02:39 27156 +ghab.doc.tar.xz 28-Feb-2019 02:39 27156 +ghab.r29803.tar.xz 28-Feb-2019 02:39 2184 +ghab.tar.xz 28-Feb-2019 02:39 2184 +ghsystem.doc.r53822.tar.xz 18-Feb-2020 00:54 721592 +ghsystem.doc.tar.xz 18-Feb-2020 00:54 721592 +ghsystem.r53822.tar.xz 18-Feb-2020 00:54 1833412 +ghsystem.tar.xz 18-Feb-2020 00:54 1833412 +gillcm.doc.r19878.tar.xz 28-Feb-2019 02:39 196160 +gillcm.doc.tar.xz 28-Feb-2019 02:39 196160 +gillcm.r19878.tar.xz 28-Feb-2019 02:39 13792 +gillcm.tar.xz 28-Feb-2019 02:39 13792 +gillius.doc.r64865.tar.xz 31-Oct-2022 00:52 216008 +gillius.doc.tar.xz 31-Oct-2022 00:52 216008 +gillius.r64865.tar.xz 31-Oct-2022 00:52 941900 +gillius.tar.xz 31-Oct-2022 00:52 941900 +gincltex.doc.r64967.tar.xz 08-Nov-2022 00:55 168440 +gincltex.doc.tar.xz 08-Nov-2022 00:55 168440 +gincltex.r64967.tar.xz 08-Nov-2022 00:55 1900 +gincltex.source.r64967.tar.xz 08-Nov-2022 00:55 5132 +gincltex.source.tar.xz 08-Nov-2022 00:55 5132 +gincltex.tar.xz 08-Nov-2022 00:55 1900 +gindex.doc.r52311.tar.xz 07-Oct-2019 23:54 33788 +gindex.doc.tar.xz 07-Oct-2019 23:54 33788 +gindex.r52311.tar.xz 07-Oct-2019 23:54 2188 +gindex.tar.xz 07-Oct-2019 23:54 2188 +ginpenc.doc.r24980.tar.xz 28-Feb-2019 02:39 200176 +ginpenc.doc.tar.xz 28-Feb-2019 02:39 200176 +ginpenc.r24980.tar.xz 28-Feb-2019 02:39 2212 +ginpenc.source.r24980.tar.xz 28-Feb-2019 02:39 3844 +ginpenc.source.tar.xz 28-Feb-2019 02:39 3844 +ginpenc.tar.xz 28-Feb-2019 02:39 2212 +git-latexdiff.aarch64-linux.r54732.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.aarch64-linux.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.amd64-freebsd.r54732.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.amd64-freebsd.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.amd64-netbsd.r54732.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.amd64-netbsd.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.armhf-linux.r54732.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.armhf-linux.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.doc.r75878.tar.xz 23-Jul-2025 23:50 20264 +git-latexdiff.doc.tar.xz 23-Jul-2025 23:50 20264 +git-latexdiff.i386-freebsd.r54732.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.i386-freebsd.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.i386-linux.r54732.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.i386-linux.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.i386-netbsd.r54732.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.i386-netbsd.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.i386-solaris.r54732.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.i386-solaris.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.r75878.tar.xz 23-Jul-2025 23:50 9068 +git-latexdiff.tar.xz 23-Jul-2025 23:50 9068 +git-latexdiff.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +git-latexdiff.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +git-latexdiff.x86_64-cygwin.r54732.tar.xz 14-Apr-2020 23:54 344 +git-latexdiff.x86_64-cygwin.tar.xz 14-Apr-2020 23:54 344 +git-latexdiff.x86_64-darwinlegacy.r54732.tar.xz 14-Apr-2020 23:54 348 +git-latexdiff.x86_64-darwinlegacy.tar.xz 14-Apr-2020 23:54 348 +git-latexdiff.x86_64-linux.r54732.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.x86_64-linux.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.x86_64-linuxmusl.r54732.tar.xz 14-Apr-2020 23:54 344 +git-latexdiff.x86_64-linuxmusl.tar.xz 14-Apr-2020 23:54 344 +git-latexdiff.x86_64-solaris.r54732.tar.xz 14-Apr-2020 23:54 340 +git-latexdiff.x86_64-solaris.tar.xz 14-Apr-2020 23:54 340 +gitfile-info.doc.r51928.tar.xz 21-Aug-2019 23:53 569544 +gitfile-info.doc.tar.xz 21-Aug-2019 23:53 569544 +gitfile-info.r51928.tar.xz 21-Aug-2019 23:53 2684 +gitfile-info.source.r51928.tar.xz 21-Aug-2019 23:53 11336 +gitfile-info.source.tar.xz 21-Aug-2019 23:53 11336 +gitfile-info.tar.xz 21-Aug-2019 23:53 2684 +gitinfo-lua.doc.r72284.tar.xz 14-Sep-2024 23:59 130628 +gitinfo-lua.doc.tar.xz 14-Sep-2024 23:59 130628 +gitinfo-lua.r72284.tar.xz 14-Sep-2024 23:59 5924 +gitinfo-lua.tar.xz 14-Sep-2024 23:59 5924 +gitinfo.doc.r34049.tar.xz 28-Feb-2019 02:39 83948 +gitinfo.doc.tar.xz 28-Feb-2019 02:39 83948 +gitinfo.r34049.tar.xz 28-Feb-2019 02:39 1952 +gitinfo.tar.xz 28-Feb-2019 02:39 1952 +gitinfo2.doc.r38913.tar.xz 28-Feb-2019 02:39 137796 +gitinfo2.doc.tar.xz 28-Feb-2019 02:39 137796 +gitinfo2.r38913.tar.xz 28-Feb-2019 02:39 3592 +gitinfo2.tar.xz 28-Feb-2019 02:39 3592 +gitlog.doc.r38932.tar.xz 28-Feb-2019 02:39 99728 +gitlog.doc.tar.xz 28-Feb-2019 02:39 99728 +gitlog.r38932.tar.xz 28-Feb-2019 02:39 2372 +gitlog.tar.xz 28-Feb-2019 02:39 2372 +gitstatus.doc.r64662.tar.xz 09-Oct-2022 23:53 290508 +gitstatus.doc.tar.xz 09-Oct-2022 23:53 290508 +gitstatus.r64662.tar.xz 09-Oct-2022 23:53 1544 +gitstatus.source.r64662.tar.xz 09-Oct-2022 23:53 2624 +gitstatus.source.tar.xz 09-Oct-2022 23:53 2624 +gitstatus.tar.xz 09-Oct-2022 23:53 1544 +gitver.doc.r63920.tar.xz 17-Jul-2022 23:53 140860 +gitver.doc.tar.xz 17-Jul-2022 23:53 140860 +gitver.r63920.tar.xz 17-Jul-2022 23:53 2772 +gitver.tar.xz 17-Jul-2022 23:53 2772 +globalvals.doc.r49962.tar.xz 28-Feb-2019 02:39 156772 +globalvals.doc.tar.xz 28-Feb-2019 02:39 156772 +globalvals.r49962.tar.xz 28-Feb-2019 02:39 1384 +globalvals.tar.xz 28-Feb-2019 02:39 1384 +glosmathtools.doc.r55920.tar.xz 23-Jul-2020 23:58 531732 +glosmathtools.doc.tar.xz 23-Jul-2020 23:58 531732 +glosmathtools.r55920.tar.xz 23-Jul-2020 23:58 3792 +glosmathtools.tar.xz 23-Jul-2020 23:58 3792 +gloss-occitan.doc.r52593.tar.xz 01-Nov-2019 01:04 69740 +gloss-occitan.doc.tar.xz 01-Nov-2019 01:04 69740 +gloss-occitan.r52593.tar.xz 01-Nov-2019 01:04 408 +gloss-occitan.source.r52593.tar.xz 01-Nov-2019 01:04 6340 +gloss-occitan.source.tar.xz 01-Nov-2019 01:04 6340 +gloss-occitan.tar.xz 01-Nov-2019 01:04 408 +gloss.doc.r75240.tar.xz 18-May-2025 00:11 103336 +gloss.doc.tar.xz 18-May-2025 00:11 103336 +gloss.r75240.tar.xz 18-May-2025 00:11 4884 +gloss.tar.xz 18-May-2025 00:11 4884 +glossaries-danish.doc.r35665.tar.xz 28-Feb-2019 02:39 123944 +glossaries-danish.doc.tar.xz 28-Feb-2019 02:39 123944 +glossaries-danish.r35665.tar.xz 28-Feb-2019 02:39 1668 +glossaries-danish.source.r35665.tar.xz 28-Feb-2019 02:39 2232 +glossaries-danish.source.tar.xz 28-Feb-2019 02:39 2232 +glossaries-danish.tar.xz 28-Feb-2019 02:39 1668 +glossaries-dutch.doc.r35685.tar.xz 28-Feb-2019 02:39 155320 +glossaries-dutch.doc.tar.xz 28-Feb-2019 02:39 155320 +glossaries-dutch.r35685.tar.xz 28-Feb-2019 02:39 1656 +glossaries-dutch.source.r35685.tar.xz 28-Feb-2019 02:39 2364 +glossaries-dutch.source.tar.xz 28-Feb-2019 02:39 2364 +glossaries-dutch.tar.xz 28-Feb-2019 02:39 1656 +glossaries-english.doc.r35665.tar.xz 28-Feb-2019 02:39 123584 +glossaries-english.doc.tar.xz 28-Feb-2019 02:39 123584 +glossaries-english.r35665.tar.xz 28-Feb-2019 02:39 1656 +glossaries-english.source.r35665.tar.xz 28-Feb-2019 02:39 2216 +glossaries-english.source.tar.xz 28-Feb-2019 02:39 2216 +glossaries-english.tar.xz 28-Feb-2019 02:39 1656 +glossaries-estonian.doc.r49928.tar.xz 28-Feb-2019 02:39 22288 +glossaries-estonian.doc.tar.xz 28-Feb-2019 02:39 22288 +glossaries-estonian.r49928.tar.xz 28-Feb-2019 02:39 1960 +glossaries-estonian.source.r49928.tar.xz 28-Feb-2019 02:39 2440 +glossaries-estonian.source.tar.xz 28-Feb-2019 02:39 2440 +glossaries-estonian.tar.xz 28-Feb-2019 02:39 1960 +glossaries-extra.doc.r76045.tar.xz 13-Aug-2025 23:46 18925284 +glossaries-extra.doc.tar.xz 13-Aug-2025 23:46 18925284 +glossaries-extra.r76045.tar.xz 13-Aug-2025 23:46 106952 +glossaries-extra.source.r76045.tar.xz 13-Aug-2025 23:46 191000 +glossaries-extra.source.tar.xz 13-Aug-2025 23:46 191000 +glossaries-extra.tar.xz 13-Aug-2025 23:46 106952 +glossaries-finnish.doc.r54080.tar.xz 04-Mar-2020 22:50 139712 +glossaries-finnish.doc.tar.xz 04-Mar-2020 22:50 139712 +glossaries-finnish.r54080.tar.xz 04-Mar-2020 22:50 1836 +glossaries-finnish.source.r54080.tar.xz 04-Mar-2020 22:50 2376 +glossaries-finnish.source.tar.xz 04-Mar-2020 22:50 2376 +glossaries-finnish.tar.xz 04-Mar-2020 22:50 1836 +glossaries-french.doc.r42873.tar.xz 28-Feb-2019 02:39 194372 +glossaries-french.doc.tar.xz 28-Feb-2019 02:39 194372 +glossaries-french.r42873.tar.xz 28-Feb-2019 02:39 1644 +glossaries-french.source.r42873.tar.xz 28-Feb-2019 02:39 2692 +glossaries-french.source.tar.xz 28-Feb-2019 02:39 2692 +glossaries-french.tar.xz 28-Feb-2019 02:39 1644 +glossaries-german.doc.r35665.tar.xz 28-Feb-2019 02:39 124428 +glossaries-german.doc.tar.xz 28-Feb-2019 02:39 124428 +glossaries-german.r35665.tar.xz 28-Feb-2019 02:39 1668 +glossaries-german.source.r35665.tar.xz 28-Feb-2019 02:39 2228 +glossaries-german.source.tar.xz 28-Feb-2019 02:39 2228 +glossaries-german.tar.xz 28-Feb-2019 02:39 1668 +glossaries-irish.doc.r35665.tar.xz 28-Feb-2019 02:39 128536 +glossaries-irish.doc.tar.xz 28-Feb-2019 02:39 128536 +glossaries-irish.r35665.tar.xz 28-Feb-2019 02:39 1880 +glossaries-irish.source.r35665.tar.xz 28-Feb-2019 02:39 2612 +glossaries-irish.source.tar.xz 28-Feb-2019 02:39 2612 +glossaries-irish.tar.xz 28-Feb-2019 02:39 1880 +glossaries-italian.doc.r35665.tar.xz 28-Feb-2019 02:39 123924 +glossaries-italian.doc.tar.xz 28-Feb-2019 02:39 123924 +glossaries-italian.r35665.tar.xz 28-Feb-2019 02:39 1680 +glossaries-italian.source.r35665.tar.xz 28-Feb-2019 02:39 2248 +glossaries-italian.source.tar.xz 28-Feb-2019 02:39 2248 +glossaries-italian.tar.xz 28-Feb-2019 02:39 1680 +glossaries-magyar.doc.r35665.tar.xz 28-Feb-2019 02:39 130892 +glossaries-magyar.doc.tar.xz 28-Feb-2019 02:39 130892 +glossaries-magyar.r35665.tar.xz 28-Feb-2019 02:39 1940 +glossaries-magyar.source.r35665.tar.xz 28-Feb-2019 02:39 2560 +glossaries-magyar.source.tar.xz 28-Feb-2019 02:39 2560 +glossaries-magyar.tar.xz 28-Feb-2019 02:39 1940 +glossaries-norsk.doc.r67141.tar.xz 17-May-2023 23:44 1756 +glossaries-norsk.doc.tar.xz 17-May-2023 23:44 1756 +glossaries-norsk.r67141.tar.xz 17-May-2023 23:44 1784 +glossaries-norsk.source.r67141.tar.xz 17-May-2023 23:44 2264 +glossaries-norsk.source.tar.xz 17-May-2023 23:44 2264 +glossaries-norsk.tar.xz 17-May-2023 23:44 1784 +glossaries-nynorsk.doc.r67201.tar.xz 23-May-2023 23:44 124668 +glossaries-nynorsk.doc.tar.xz 23-May-2023 23:44 124668 +glossaries-nynorsk.r67201.tar.xz 23-May-2023 23:44 1700 +glossaries-nynorsk.source.r67201.tar.xz 23-May-2023 23:44 2276 +glossaries-nynorsk.source.tar.xz 23-May-2023 23:44 2276 +glossaries-nynorsk.tar.xz 23-May-2023 23:44 1700 +glossaries-polish.doc.r35665.tar.xz 28-Feb-2019 02:39 128100 +glossaries-polish.doc.tar.xz 28-Feb-2019 02:39 128100 +glossaries-polish.r35665.tar.xz 28-Feb-2019 02:39 1868 +glossaries-polish.source.r35665.tar.xz 28-Feb-2019 02:39 2484 +glossaries-polish.source.tar.xz 28-Feb-2019 02:39 2484 +glossaries-polish.tar.xz 28-Feb-2019 02:39 1868 +glossaries-portuges.doc.r36064.tar.xz 28-Feb-2019 02:39 164932 +glossaries-portuges.doc.tar.xz 28-Feb-2019 02:39 164932 +glossaries-portuges.r36064.tar.xz 28-Feb-2019 02:39 2044 +glossaries-portuges.source.r36064.tar.xz 28-Feb-2019 02:39 2848 +glossaries-portuges.source.tar.xz 28-Feb-2019 02:39 2848 +glossaries-portuges.tar.xz 28-Feb-2019 02:39 2044 +glossaries-serbian.doc.r35665.tar.xz 28-Feb-2019 02:39 128784 +glossaries-serbian.doc.tar.xz 28-Feb-2019 02:39 128784 +glossaries-serbian.r35665.tar.xz 28-Feb-2019 02:39 1868 +glossaries-serbian.source.r35665.tar.xz 28-Feb-2019 02:39 2512 +glossaries-serbian.source.tar.xz 28-Feb-2019 02:39 2512 +glossaries-serbian.tar.xz 28-Feb-2019 02:39 1868 +glossaries-slovene.doc.r51211.tar.xz 24-May-2019 23:39 124256 +glossaries-slovene.doc.tar.xz 24-May-2019 23:39 124256 +glossaries-slovene.r51211.tar.xz 24-May-2019 23:39 1668 +glossaries-slovene.source.r51211.tar.xz 24-May-2019 23:38 2240 +glossaries-slovene.source.tar.xz 24-May-2019 23:38 2240 +glossaries-slovene.tar.xz 24-May-2019 23:39 1668 +glossaries-spanish.doc.r35665.tar.xz 28-Feb-2019 02:39 128220 +glossaries-spanish.doc.tar.xz 28-Feb-2019 02:39 128220 +glossaries-spanish.r35665.tar.xz 28-Feb-2019 02:39 1896 +glossaries-spanish.source.r35665.tar.xz 28-Feb-2019 02:39 2520 +glossaries-spanish.source.tar.xz 28-Feb-2019 02:39 2520 +glossaries-spanish.tar.xz 28-Feb-2019 02:39 1896 +glossaries.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:39 372 +glossaries.aarch64-linux.tar.xz 28-Feb-2019 02:39 372 +glossaries.amd64-freebsd.r37813.tar.xz 28-Feb-2019 02:39 372 +glossaries.amd64-freebsd.tar.xz 28-Feb-2019 02:39 372 +glossaries.amd64-netbsd.r37813.tar.xz 28-Feb-2019 02:39 372 +glossaries.amd64-netbsd.tar.xz 28-Feb-2019 02:39 372 +glossaries.armhf-linux.r37813.tar.xz 28-Feb-2019 02:39 372 +glossaries.armhf-linux.tar.xz 28-Feb-2019 02:39 372 +glossaries.doc.r76027.tar.xz 11-Aug-2025 23:45 13153188 +glossaries.doc.tar.xz 11-Aug-2025 23:45 13153188 +glossaries.i386-freebsd.r37813.tar.xz 28-Feb-2019 02:39 372 +glossaries.i386-freebsd.tar.xz 28-Feb-2019 02:39 372 +glossaries.i386-linux.r37813.tar.xz 28-Feb-2019 02:39 372 +glossaries.i386-linux.tar.xz 28-Feb-2019 02:39 372 +glossaries.i386-netbsd.r37813.tar.xz 28-Feb-2019 02:39 368 +glossaries.i386-netbsd.tar.xz 28-Feb-2019 02:39 368 +glossaries.i386-solaris.r37813.tar.xz 28-Feb-2019 02:39 372 +glossaries.i386-solaris.tar.xz 28-Feb-2019 02:39 372 +glossaries.r76027.tar.xz 11-Aug-2025 23:45 107392 +glossaries.source.r76027.tar.xz 11-Aug-2025 23:45 171012 +glossaries.source.tar.xz 11-Aug-2025 23:45 171012 +glossaries.tar.xz 11-Aug-2025 23:45 107392 +glossaries.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 372 +glossaries.universal-darwin.tar.xz 25-Feb-2021 18:16 372 +glossaries.windows.r65891.tar.xz 20-Feb-2023 22:12 2364 +glossaries.windows.tar.xz 20-Feb-2023 22:12 2364 +glossaries.x86_64-cygwin.r37813.tar.xz 28-Feb-2019 02:39 372 +glossaries.x86_64-cygwin.tar.xz 28-Feb-2019 02:39 372 +glossaries.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:39 376 +glossaries.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:39 376 +glossaries.x86_64-linux.r37813.tar.xz 28-Feb-2019 02:39 368 +glossaries.x86_64-linux.tar.xz 28-Feb-2019 02:39 368 +glossaries.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:39 376 +glossaries.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:39 376 +glossaries.x86_64-solaris.r37813.tar.xz 28-Feb-2019 02:39 372 +glossaries.x86_64-solaris.tar.xz 28-Feb-2019 02:39 372 +glyphlist.r54074.tar.xz 04-Mar-2020 22:50 24764 +glyphlist.tar.xz 04-Mar-2020 22:50 24764 +gmdoc-enhance.doc.r15878.tar.xz 28-Feb-2019 02:40 123036 +gmdoc-enhance.doc.tar.xz 28-Feb-2019 02:40 123036 +gmdoc-enhance.r15878.tar.xz 28-Feb-2019 02:40 3608 +gmdoc-enhance.source.r15878.tar.xz 28-Feb-2019 02:40 10320 +gmdoc-enhance.source.tar.xz 28-Feb-2019 02:40 10320 +gmdoc-enhance.tar.xz 28-Feb-2019 02:40 3608 +gmdoc.doc.r21292.tar.xz 28-Feb-2019 02:39 918216 +gmdoc.doc.tar.xz 28-Feb-2019 02:39 918216 +gmdoc.r21292.tar.xz 28-Feb-2019 02:40 46364 +gmdoc.tar.xz 28-Feb-2019 02:40 46364 +gmiflink.doc.r15878.tar.xz 28-Feb-2019 02:40 41656 +gmiflink.doc.tar.xz 28-Feb-2019 02:40 41656 +gmiflink.r15878.tar.xz 28-Feb-2019 02:40 3464 +gmiflink.tar.xz 28-Feb-2019 02:40 3464 +gmp.doc.r21691.tar.xz 28-Feb-2019 02:40 801544 +gmp.doc.tar.xz 28-Feb-2019 02:40 801544 +gmp.r21691.tar.xz 28-Feb-2019 02:40 3912 +gmp.source.r21691.tar.xz 28-Feb-2019 02:40 25888 +gmp.source.tar.xz 28-Feb-2019 02:40 25888 +gmp.tar.xz 28-Feb-2019 02:40 3912 +gmutils.doc.r24287.tar.xz 28-Feb-2019 02:40 1672196 +gmutils.doc.tar.xz 28-Feb-2019 02:40 1672196 +gmutils.r24287.tar.xz 28-Feb-2019 02:40 65972 +gmutils.tar.xz 28-Feb-2019 02:40 65972 +gmverb.doc.r24288.tar.xz 28-Feb-2019 02:40 212068 +gmverb.doc.tar.xz 28-Feb-2019 02:40 212068 +gmverb.r24288.tar.xz 28-Feb-2019 02:40 16340 +gmverb.tar.xz 28-Feb-2019 02:40 16340 +gmverse.doc.r29803.tar.xz 28-Feb-2019 02:40 96420 +gmverse.doc.tar.xz 28-Feb-2019 02:40 96420 +gmverse.r29803.tar.xz 28-Feb-2019 02:40 10736 +gmverse.tar.xz 28-Feb-2019 02:40 10736 +gnu-freefont.doc.r68624.tar.xz 23-Oct-2023 23:45 161276 +gnu-freefont.doc.tar.xz 23-Oct-2023 23:45 161276 +gnu-freefont.r68624.tar.xz 23-Oct-2023 23:45 7094068 +gnu-freefont.source.r68624.tar.xz 23-Oct-2023 23:45 4241780 +gnu-freefont.source.tar.xz 23-Oct-2023 23:45 4241780 +gnu-freefont.tar.xz 23-Oct-2023 23:45 7094068 +gnuplottex.doc.r54758.tar.xz 15-Apr-2020 23:56 418476 +gnuplottex.doc.tar.xz 15-Apr-2020 23:56 418476 +gnuplottex.r54758.tar.xz 15-Apr-2020 23:56 3288 +gnuplottex.source.r54758.tar.xz 15-Apr-2020 23:56 9336 +gnuplottex.source.tar.xz 15-Apr-2020 23:56 9336 +gnuplottex.tar.xz 15-Apr-2020 23:56 3288 +go.doc.r28628.tar.xz 28-Feb-2019 02:40 3724 +go.doc.tar.xz 28-Feb-2019 02:40 3724 +go.r28628.tar.xz 28-Feb-2019 02:40 9012 +go.source.r28628.tar.xz 28-Feb-2019 02:40 416 +go.source.tar.xz 28-Feb-2019 02:40 416 +go.tar.xz 28-Feb-2019 02:40 9012 +gobble.doc.r64967.tar.xz 08-Nov-2022 00:55 157372 +gobble.doc.tar.xz 08-Nov-2022 00:55 157372 +gobble.r64967.tar.xz 08-Nov-2022 00:55 1700 +gobble.source.r64967.tar.xz 08-Nov-2022 00:55 3288 +gobble.source.tar.xz 08-Nov-2022 00:55 3288 +gobble.tar.xz 08-Nov-2022 00:55 1700 +gofonts.doc.r64358.tar.xz 12-Sep-2022 23:54 304056 +gofonts.doc.tar.xz 12-Sep-2022 23:54 304056 +gofonts.r64358.tar.xz 12-Sep-2022 23:54 1361720 +gofonts.tar.xz 12-Sep-2022 23:54 1361720 +gost.doc.r57616.tar.xz 05-Feb-2021 00:57 1804172 +gost.doc.tar.xz 05-Feb-2021 00:57 1804172 +gost.r57616.tar.xz 05-Feb-2021 00:57 17432 +gost.source.r57616.tar.xz 05-Feb-2021 00:57 32124 +gost.source.tar.xz 05-Feb-2021 00:57 32124 +gost.tar.xz 05-Feb-2021 00:57 17432 +gothic.doc.r49869.tar.xz 28-Feb-2019 02:40 193528 +gothic.doc.tar.xz 28-Feb-2019 02:40 193528 +gothic.r49869.tar.xz 28-Feb-2019 02:40 129612 +gothic.source.r49869.tar.xz 28-Feb-2019 02:40 448 +gothic.source.tar.xz 28-Feb-2019 02:40 448 +gothic.tar.xz 28-Feb-2019 02:40 129612 +gotoh.doc.r44764.tar.xz 28-Feb-2019 02:40 291976 +gotoh.doc.tar.xz 28-Feb-2019 02:40 291976 +gotoh.r44764.tar.xz 28-Feb-2019 02:40 2632 +gotoh.source.r44764.tar.xz 28-Feb-2019 02:40 8224 +gotoh.source.tar.xz 28-Feb-2019 02:40 8224 +gotoh.tar.xz 28-Feb-2019 02:40 2632 +grabbox.doc.r65223.tar.xz 08-Dec-2022 00:55 353440 +grabbox.doc.tar.xz 08-Dec-2022 00:55 353440 +grabbox.r65223.tar.xz 08-Dec-2022 00:55 1560 +grabbox.source.r65223.tar.xz 08-Dec-2022 00:55 4340 +grabbox.source.tar.xz 08-Dec-2022 00:55 4340 +grabbox.tar.xz 08-Dec-2022 00:55 1560 +gradient-text.doc.r65567.tar.xz 18-Jan-2023 00:52 132824 +gradient-text.doc.tar.xz 18-Jan-2023 00:52 132824 +gradient-text.r65567.tar.xz 18-Jan-2023 00:52 1048 +gradient-text.tar.xz 18-Jan-2023 00:52 1048 +gradientframe.doc.r21387.tar.xz 28-Feb-2019 02:40 235196 +gradientframe.doc.tar.xz 28-Feb-2019 02:40 235196 +gradientframe.r21387.tar.xz 28-Feb-2019 02:40 1368 +gradientframe.source.r21387.tar.xz 28-Feb-2019 02:40 4360 +gradientframe.source.tar.xz 28-Feb-2019 02:40 4360 +gradientframe.tar.xz 28-Feb-2019 02:40 1368 +grading-scheme.doc.r62505.tar.xz 08-Mar-2022 00:33 769280 +grading-scheme.doc.tar.xz 08-Mar-2022 00:33 769280 +grading-scheme.r62505.tar.xz 08-Mar-2022 00:33 5004 +grading-scheme.source.r62505.tar.xz 08-Mar-2022 00:33 15320 +grading-scheme.source.tar.xz 08-Mar-2022 00:33 15320 +grading-scheme.tar.xz 08-Mar-2022 00:33 5004 +gradstudentresume.doc.r38832.tar.xz 28-Feb-2019 02:40 2924 +gradstudentresume.doc.tar.xz 28-Feb-2019 02:40 2924 +gradstudentresume.r38832.tar.xz 28-Feb-2019 02:40 1704 +gradstudentresume.tar.xz 28-Feb-2019 02:40 1704 +grafcet.doc.r22509.tar.xz 28-Feb-2019 02:40 294584 +grafcet.doc.tar.xz 28-Feb-2019 02:40 294584 +grafcet.r22509.tar.xz 28-Feb-2019 02:40 3780 +grafcet.tar.xz 28-Feb-2019 02:40 3780 +grant.doc.r56852.tar.xz 05-Nov-2020 00:56 110608 +grant.doc.tar.xz 05-Nov-2020 00:56 110608 +grant.r56852.tar.xz 05-Nov-2020 00:56 5228 +grant.source.r56852.tar.xz 05-Nov-2020 00:56 6008 +grant.source.tar.xz 05-Nov-2020 00:56 6008 +grant.tar.xz 05-Nov-2020 00:56 5228 +graph35.doc.r66772.tar.xz 05-Apr-2023 23:52 2254396 +graph35.doc.tar.xz 05-Apr-2023 23:52 2254396 +graph35.r66772.tar.xz 05-Apr-2023 23:53 22284 +graph35.source.r66772.tar.xz 05-Apr-2023 23:52 13068 +graph35.source.tar.xz 05-Apr-2023 23:52 13068 +graph35.tar.xz 05-Apr-2023 23:53 22284 +graphbox.doc.r74754.tar.xz 27-Mar-2025 00:50 284992 +graphbox.doc.tar.xz 27-Mar-2025 00:50 284992 +graphbox.r74754.tar.xz 27-Mar-2025 00:50 1896 +graphbox.source.r74754.tar.xz 27-Mar-2025 00:50 8848 +graphbox.source.tar.xz 27-Mar-2025 00:50 8848 +graphbox.tar.xz 27-Mar-2025 00:50 1896 +graphics-cfg.doc.r41448.tar.xz 28-Feb-2019 02:40 876 +graphics-cfg.doc.tar.xz 28-Feb-2019 02:40 876 +graphics-cfg.r41448.tar.xz 28-Feb-2019 02:40 1160 +graphics-cfg.tar.xz 28-Feb-2019 02:40 1160 +graphics-def.doc.r70970.tar.xz 17-Apr-2024 23:45 604 +graphics-def.doc.tar.xz 17-Apr-2024 23:45 604 +graphics-def.r70970.tar.xz 17-Apr-2024 23:45 10728 +graphics-def.tar.xz 17-Apr-2024 23:45 10728 +graphics-pln.doc.r71575.tar.xz 20-Jun-2024 23:52 2256 +graphics-pln.doc.tar.xz 20-Jun-2024 23:52 2256 +graphics-pln.r71575.tar.xz 20-Jun-2024 23:52 9084 +graphics-pln.tar.xz 20-Jun-2024 23:52 9084 +graphics.doc.r75374.tar.xz 01-Jun-2025 23:52 2475552 +graphics.doc.tar.xz 01-Jun-2025 23:52 2475552 +graphics.r75374.tar.xz 01-Jun-2025 23:52 15980 +graphics.source.r75374.tar.xz 01-Jun-2025 23:52 57432 +graphics.source.tar.xz 01-Jun-2025 23:52 57432 +graphics.tar.xz 01-Jun-2025 23:52 15980 +graphicscache.doc.r65318.tar.xz 21-Dec-2022 00:56 176272 +graphicscache.doc.tar.xz 21-Dec-2022 00:56 176272 +graphicscache.r65318.tar.xz 21-Dec-2022 00:56 3612 +graphicscache.source.r65318.tar.xz 21-Dec-2022 00:56 7072 +graphicscache.source.tar.xz 21-Dec-2022 00:56 7072 +graphicscache.tar.xz 21-Dec-2022 00:56 3612 +graphicx-psmin.doc.r56931.tar.xz 15-Nov-2020 00:56 80104 +graphicx-psmin.doc.tar.xz 15-Nov-2020 00:56 80104 +graphicx-psmin.r56931.tar.xz 15-Nov-2020 00:56 2676 +graphicx-psmin.source.r56931.tar.xz 15-Nov-2020 00:56 8184 +graphicx-psmin.source.tar.xz 15-Nov-2020 00:56 8184 +graphicx-psmin.tar.xz 15-Nov-2020 00:56 2676 +graphicxbox.doc.r32630.tar.xz 28-Feb-2019 02:40 438064 +graphicxbox.doc.tar.xz 28-Feb-2019 02:40 438064 +graphicxbox.r32630.tar.xz 28-Feb-2019 02:40 1400 +graphicxbox.source.r32630.tar.xz 28-Feb-2019 02:40 3692 +graphicxbox.source.tar.xz 28-Feb-2019 02:40 3692 +graphicxbox.tar.xz 28-Feb-2019 02:40 1400 +graphicxpsd.doc.r57341.tar.xz 07-Jan-2021 00:56 405280 +graphicxpsd.doc.tar.xz 07-Jan-2021 00:56 405280 +graphicxpsd.r57341.tar.xz 07-Jan-2021 00:56 1892 +graphicxpsd.tar.xz 07-Jan-2021 00:56 1892 +graphpaper.doc.r63116.tar.xz 23-Apr-2022 23:53 426864 +graphpaper.doc.tar.xz 23-Apr-2022 23:53 426864 +graphpaper.r63116.tar.xz 23-Apr-2022 23:53 4916 +graphpaper.source.r63116.tar.xz 23-Apr-2022 23:53 10952 +graphpaper.source.tar.xz 23-Apr-2022 23:53 10952 +graphpaper.tar.xz 23-Apr-2022 23:53 4916 +graphviz.doc.r31517.tar.xz 28-Feb-2019 02:40 88484 +graphviz.doc.tar.xz 28-Feb-2019 02:40 88484 +graphviz.r31517.tar.xz 28-Feb-2019 02:40 1940 +graphviz.source.r31517.tar.xz 28-Feb-2019 02:40 6124 +graphviz.source.tar.xz 28-Feb-2019 02:40 6124 +graphviz.tar.xz 28-Feb-2019 02:40 1940 +gratzer-color-scheme.doc.r73199.tar.xz 24-Dec-2024 00:47 79280 +gratzer-color-scheme.doc.tar.xz 24-Dec-2024 00:47 79280 +gratzer-color-scheme.r73199.tar.xz 24-Dec-2024 00:47 980 +gratzer-color-scheme.tar.xz 24-Dec-2024 00:47 980 +grayhints.doc.r49052.tar.xz 28-Feb-2019 02:40 496384 +grayhints.doc.tar.xz 28-Feb-2019 02:40 496384 +grayhints.r49052.tar.xz 28-Feb-2019 02:40 3296 +grayhints.source.r49052.tar.xz 28-Feb-2019 02:40 7708 +grayhints.source.tar.xz 28-Feb-2019 02:40 7708 +grayhints.tar.xz 28-Feb-2019 02:40 3296 +greek-fontenc.doc.r68877.tar.xz 18-Nov-2023 00:45 3095164 +greek-fontenc.doc.tar.xz 18-Nov-2023 00:45 3095164 +greek-fontenc.r68877.tar.xz 18-Nov-2023 00:45 33372 +greek-fontenc.tar.xz 18-Nov-2023 00:45 33372 +greek-inputenc.doc.r66634.tar.xz 22-Mar-2023 00:52 660116 +greek-inputenc.doc.tar.xz 22-Mar-2023 00:52 660116 +greek-inputenc.r66634.tar.xz 22-Mar-2023 00:52 6864 +greek-inputenc.tar.xz 22-Mar-2023 00:52 6864 +greekdates.doc.r75878.tar.xz 23-Jul-2025 23:50 98112 +greekdates.doc.tar.xz 23-Jul-2025 23:50 98112 +greekdates.r75878.tar.xz 23-Jul-2025 23:50 3800 +greekdates.source.r75878.tar.xz 23-Jul-2025 23:50 7276 +greekdates.source.tar.xz 23-Jul-2025 23:50 7276 +greekdates.tar.xz 23-Jul-2025 23:50 3800 +greektex.doc.r28327.tar.xz 28-Feb-2019 02:40 311284 +greektex.doc.tar.xz 28-Feb-2019 02:40 311284 +greektex.r28327.tar.xz 28-Feb-2019 02:40 6016 +greektex.tar.xz 28-Feb-2019 02:40 6016 +greektonoi.doc.r39419.tar.xz 28-Feb-2019 02:40 235232 +greektonoi.doc.tar.xz 28-Feb-2019 02:40 235232 +greektonoi.r39419.tar.xz 28-Feb-2019 02:40 37196 +greektonoi.tar.xz 28-Feb-2019 02:40 37196 +greenpoint.doc.r15878.tar.xz 28-Feb-2019 02:40 948 +greenpoint.doc.tar.xz 28-Feb-2019 02:40 948 +greenpoint.r15878.tar.xz 28-Feb-2019 02:40 1692 +greenpoint.tar.xz 28-Feb-2019 02:40 1692 +gregoriotex.aarch64-linux.r74368.tar.xz 02-Mar-2025 01:09 119912 +gregoriotex.aarch64-linux.tar.xz 02-Mar-2025 01:09 119912 +gregoriotex.amd64-freebsd.r74368.tar.xz 02-Mar-2025 01:09 114660 +gregoriotex.amd64-freebsd.tar.xz 02-Mar-2025 01:09 114660 +gregoriotex.amd64-netbsd.r74367.tar.xz 02-Mar-2025 01:09 113916 +gregoriotex.amd64-netbsd.tar.xz 02-Mar-2025 01:09 113916 +gregoriotex.armhf-linux.r74368.tar.xz 02-Mar-2025 01:09 118748 +gregoriotex.armhf-linux.tar.xz 02-Mar-2025 01:09 118748 +gregoriotex.doc.r74348.tar.xz 01-Mar-2025 00:55 1495156 +gregoriotex.doc.tar.xz 01-Mar-2025 00:55 1495156 +gregoriotex.i386-freebsd.r74368.tar.xz 02-Mar-2025 01:09 114652 +gregoriotex.i386-freebsd.tar.xz 02-Mar-2025 01:09 114652 +gregoriotex.i386-linux.r74368.tar.xz 02-Mar-2025 01:09 141808 +gregoriotex.i386-linux.tar.xz 02-Mar-2025 01:09 141808 +gregoriotex.i386-netbsd.r74367.tar.xz 02-Mar-2025 01:09 103988 +gregoriotex.i386-netbsd.tar.xz 02-Mar-2025 01:09 103988 +gregoriotex.i386-solaris.r74368.tar.xz 02-Mar-2025 01:09 126840 +gregoriotex.i386-solaris.tar.xz 02-Mar-2025 01:09 126840 +gregoriotex.r74348.tar.xz 01-Mar-2025 00:55 18756332 +gregoriotex.source.r74348.tar.xz 01-Mar-2025 00:55 25077568 +gregoriotex.source.tar.xz 01-Mar-2025 00:55 25077568 +gregoriotex.tar.xz 01-Mar-2025 00:55 18756332 +gregoriotex.universal-darwin.r74380.tar.xz 02-Mar-2025 01:09 239920 +gregoriotex.universal-darwin.tar.xz 02-Mar-2025 01:09 239920 +gregoriotex.windows.r74366.tar.xz 02-Mar-2025 01:09 329728 +gregoriotex.windows.tar.xz 02-Mar-2025 01:09 329728 +gregoriotex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 104756 +gregoriotex.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 104756 +gregoriotex.x86_64-darwinlegacy.r74505.tar.xz 08-Mar-2025 00:49 122500 +gregoriotex.x86_64-darwinlegacy.tar.xz 08-Mar-2025 00:49 122500 +gregoriotex.x86_64-linux.r74368.tar.xz 02-Mar-2025 01:09 134048 +gregoriotex.x86_64-linux.tar.xz 02-Mar-2025 01:09 134048 +gregoriotex.x86_64-linuxmusl.r74368.tar.xz 02-Mar-2025 01:09 142804 +gregoriotex.x86_64-linuxmusl.tar.xz 02-Mar-2025 01:09 142804 +gregoriotex.x86_64-solaris.r74368.tar.xz 02-Mar-2025 01:09 147208 +gregoriotex.x86_64-solaris.tar.xz 02-Mar-2025 01:09 147208 +grfext.doc.r53024.tar.xz 05-Dec-2019 00:53 308376 +grfext.doc.tar.xz 05-Dec-2019 00:53 308376 +grfext.r53024.tar.xz 05-Dec-2019 00:53 2340 +grfext.source.r53024.tar.xz 05-Dec-2019 00:53 6144 +grfext.source.tar.xz 05-Dec-2019 00:53 6144 +grfext.tar.xz 05-Dec-2019 00:53 2340 +grffile.doc.r52756.tar.xz 12-Nov-2019 22:51 350320 +grffile.doc.tar.xz 12-Nov-2019 22:51 350320 +grffile.r52756.tar.xz 12-Nov-2019 22:51 3868 +grffile.source.r52756.tar.xz 12-Nov-2019 22:51 11228 +grffile.source.tar.xz 12-Nov-2019 22:51 11228 +grffile.tar.xz 12-Nov-2019 22:51 3868 +grfpaste.doc.r17354.tar.xz 28-Feb-2019 02:41 371568 +grfpaste.doc.tar.xz 28-Feb-2019 02:41 371568 +grfpaste.r17354.tar.xz 28-Feb-2019 02:41 3252 +grfpaste.tar.xz 28-Feb-2019 02:41 3252 +grid-system.doc.r32981.tar.xz 28-Feb-2019 02:41 58056 +grid-system.doc.tar.xz 28-Feb-2019 02:41 58056 +grid-system.r32981.tar.xz 28-Feb-2019 02:41 1368 +grid-system.tar.xz 28-Feb-2019 02:41 1368 +grid.doc.r61719.tar.xz 24-Jan-2022 00:53 134640 +grid.doc.tar.xz 24-Jan-2022 00:53 134640 +grid.r61719.tar.xz 24-Jan-2022 00:53 3132 +grid.source.r61719.tar.xz 24-Jan-2022 00:53 680 +grid.source.tar.xz 24-Jan-2022 00:53 680 +grid.tar.xz 24-Jan-2022 00:53 3132 +gridpapers.doc.r58723.tar.xz 04-Apr-2021 23:52 225000 +gridpapers.doc.tar.xz 04-Apr-2021 23:52 225000 +gridpapers.r58723.tar.xz 04-Apr-2021 23:52 5164 +gridpapers.source.r58723.tar.xz 04-Apr-2021 23:52 7964 +gridpapers.source.tar.xz 04-Apr-2021 23:52 7964 +gridpapers.tar.xz 04-Apr-2021 23:52 5164 +gridset.doc.r72056.tar.xz 17-Aug-2024 23:52 240572 +gridset.doc.tar.xz 17-Aug-2024 23:52 240572 +gridset.r72056.tar.xz 17-Aug-2024 23:52 2748 +gridset.source.r72056.tar.xz 17-Aug-2024 23:52 6640 +gridset.source.tar.xz 17-Aug-2024 23:52 6640 +gridset.tar.xz 17-Aug-2024 23:52 2748 +gridslides.doc.r54512.tar.xz 24-Mar-2020 00:58 570220 +gridslides.doc.tar.xz 24-Mar-2020 00:58 570220 +gridslides.r54512.tar.xz 24-Mar-2020 00:58 2532 +gridslides.tar.xz 24-Mar-2020 00:58 2532 +grotesq.doc.r35859.tar.xz 28-Feb-2019 02:41 2796 +grotesq.doc.tar.xz 28-Feb-2019 02:41 2796 +grotesq.r35859.tar.xz 28-Feb-2019 02:41 47696 +grotesq.tar.xz 28-Feb-2019 02:41 47696 +grundgesetze.doc.r58997.tar.xz 28-Apr-2021 15:07 226836 +grundgesetze.doc.tar.xz 28-Apr-2021 15:07 226836 +grundgesetze.r58997.tar.xz 28-Apr-2021 15:07 2340 +grundgesetze.source.r58997.tar.xz 28-Apr-2021 15:07 8156 +grundgesetze.source.tar.xz 28-Apr-2021 15:07 8156 +grundgesetze.tar.xz 28-Apr-2021 15:07 2340 +gs1.doc.r59620.tar.xz 17-Jun-2021 23:51 1057448 +gs1.doc.tar.xz 17-Jun-2021 23:51 1057448 +gs1.r59620.tar.xz 17-Jun-2021 23:52 3436 +gs1.source.r59620.tar.xz 17-Jun-2021 23:51 9680 +gs1.source.tar.xz 17-Jun-2021 23:51 9680 +gs1.tar.xz 17-Jun-2021 23:52 3436 +gsemthesis.doc.r56291.tar.xz 07-Sep-2020 23:57 297248 +gsemthesis.doc.tar.xz 07-Sep-2020 23:57 297248 +gsemthesis.r56291.tar.xz 07-Sep-2020 23:57 2952 +gsemthesis.source.r56291.tar.xz 07-Sep-2020 23:57 9964 +gsemthesis.source.tar.xz 07-Sep-2020 23:57 9964 +gsemthesis.tar.xz 07-Sep-2020 23:57 2952 +gsftopk.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 39840 +gsftopk.aarch64-linux.tar.xz 13-Feb-2025 00:48 39840 +gsftopk.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:53 38920 +gsftopk.amd64-freebsd.tar.xz 09-Feb-2025 00:53 38920 +gsftopk.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:15 37740 +gsftopk.amd64-netbsd.tar.xz 09-Feb-2025 18:15 37740 +gsftopk.armhf-linux.r73793.tar.xz 09-Feb-2025 00:53 37320 +gsftopk.armhf-linux.tar.xz 09-Feb-2025 00:53 37320 +gsftopk.doc.r52851.tar.xz 19-Nov-2019 00:55 27540 +gsftopk.doc.tar.xz 19-Nov-2019 00:55 27540 +gsftopk.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:53 38932 +gsftopk.i386-freebsd.tar.xz 09-Feb-2025 00:53 38932 +gsftopk.i386-linux.r73792.tar.xz 09-Feb-2025 00:53 47468 +gsftopk.i386-linux.tar.xz 09-Feb-2025 00:53 47468 +gsftopk.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:15 34472 +gsftopk.i386-netbsd.tar.xz 09-Feb-2025 18:15 34472 +gsftopk.i386-solaris.r73792.tar.xz 09-Feb-2025 00:53 41776 +gsftopk.i386-solaris.tar.xz 09-Feb-2025 00:53 41776 +gsftopk.r52851.tar.xz 19-Nov-2019 00:55 3548 +gsftopk.tar.xz 19-Nov-2019 00:55 3548 +gsftopk.universal-darwin.r73806.tar.xz 09-Feb-2025 18:15 81084 +gsftopk.universal-darwin.tar.xz 09-Feb-2025 18:15 81084 +gsftopk.windows.r73796.tar.xz 09-Feb-2025 18:15 13512 +gsftopk.windows.tar.xz 09-Feb-2025 18:15 13512 +gsftopk.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 12148 +gsftopk.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 12148 +gsftopk.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 40208 +gsftopk.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 40208 +gsftopk.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 41964 +gsftopk.x86_64-linux.tar.xz 19-Feb-2025 00:46 41964 +gsftopk.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:53 43064 +gsftopk.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:53 43064 +gsftopk.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:53 45388 +gsftopk.x86_64-solaris.tar.xz 09-Feb-2025 00:53 45388 +gtl.doc.r69297.tar.xz 05-Jan-2024 00:45 579716 +gtl.doc.tar.xz 05-Jan-2024 00:45 579716 +gtl.r69297.tar.xz 05-Jan-2024 00:45 4004 +gtl.source.r69297.tar.xz 05-Jan-2024 00:45 12580 +gtl.source.tar.xz 05-Jan-2024 00:45 12580 +gtl.tar.xz 05-Jan-2024 00:45 4004 +gtrcrd.doc.r32484.tar.xz 28-Feb-2019 02:41 147344 +gtrcrd.doc.tar.xz 28-Feb-2019 02:41 147344 +gtrcrd.r32484.tar.xz 28-Feb-2019 02:41 3104 +gtrcrd.tar.xz 28-Feb-2019 02:41 3104 +gtrlib-largetrees.doc.r49062.tar.xz 28-Feb-2019 02:41 313576 +gtrlib-largetrees.doc.tar.xz 28-Feb-2019 02:41 313576 +gtrlib-largetrees.r49062.tar.xz 28-Feb-2019 02:41 2300 +gtrlib-largetrees.source.r49062.tar.xz 28-Feb-2019 02:41 8960 +gtrlib-largetrees.source.tar.xz 28-Feb-2019 02:41 8960 +gtrlib-largetrees.tar.xz 28-Feb-2019 02:41 2300 +gu.doc.r15878.tar.xz 28-Feb-2019 02:41 724360 +gu.doc.tar.xz 28-Feb-2019 02:41 724360 +gu.r15878.tar.xz 28-Feb-2019 02:41 6148 +gu.tar.xz 28-Feb-2019 02:41 6148 +gudea.doc.r57359.tar.xz 11-Jan-2021 00:57 49432 +gudea.doc.tar.xz 11-Jan-2021 00:57 49432 +gudea.r57359.tar.xz 11-Jan-2021 00:57 182776 +gudea.tar.xz 11-Jan-2021 00:57 182776 +guide-to-latex.doc.r45712.tar.xz 28-Feb-2019 02:41 174484 +guide-to-latex.doc.tar.xz 28-Feb-2019 02:41 174484 +guide-to-latex.r45712.tar.xz 28-Feb-2019 02:41 300 +guide-to-latex.tar.xz 28-Feb-2019 02:41 300 +guitar.doc.r32258.tar.xz 28-Feb-2019 02:41 90368 +guitar.doc.tar.xz 28-Feb-2019 02:41 90368 +guitar.r32258.tar.xz 28-Feb-2019 02:41 2388 +guitar.source.r32258.tar.xz 28-Feb-2019 02:41 12096 +guitar.source.tar.xz 28-Feb-2019 02:41 12096 +guitar.tar.xz 28-Feb-2019 02:41 2388 +guitarchordschemes.doc.r54512.tar.xz 24-Mar-2020 00:58 424492 +guitarchordschemes.doc.tar.xz 24-Mar-2020 00:58 424492 +guitarchordschemes.r54512.tar.xz 24-Mar-2020 00:58 5016 +guitarchordschemes.tar.xz 24-Mar-2020 00:58 5016 +guitartabs.doc.r48102.tar.xz 28-Feb-2019 02:41 205316 +guitartabs.doc.tar.xz 28-Feb-2019 02:41 205316 +guitartabs.r48102.tar.xz 28-Feb-2019 02:41 2504 +guitartabs.tar.xz 28-Feb-2019 02:41 2504 +guitlogo.doc.r55741.tar.xz 03-Jul-2020 23:56 472316 +guitlogo.doc.tar.xz 03-Jul-2020 23:56 472316 +guitlogo.r55741.tar.xz 03-Jul-2020 23:56 3380 +guitlogo.source.r55741.tar.xz 03-Jul-2020 23:56 17780 +guitlogo.source.tar.xz 03-Jul-2020 23:56 17780 +guitlogo.tar.xz 03-Jul-2020 23:56 3380 +gustlib.doc.r54074.tar.xz 04-Mar-2020 22:50 4296 +gustlib.doc.tar.xz 04-Mar-2020 22:50 4296 +gustlib.r54074.tar.xz 04-Mar-2020 22:50 40536 +gustlib.tar.xz 04-Mar-2020 22:50 40536 +gustprog.doc.r54074.tar.xz 04-Mar-2020 22:50 299260 +gustprog.doc.tar.xz 04-Mar-2020 22:50 299260 +gustprog.r54074.tar.xz 04-Mar-2020 22:50 332 +gustprog.tar.xz 04-Mar-2020 22:50 332 +gzt.doc.r74605.tar.xz 14-Mar-2025 00:50 1176660 +gzt.doc.tar.xz 14-Mar-2025 00:50 1176660 +gzt.r74605.tar.xz 14-Mar-2025 00:50 34840 +gzt.source.r74605.tar.xz 14-Mar-2025 00:50 44112 +gzt.source.tar.xz 14-Mar-2025 00:50 44112 +gzt.tar.xz 14-Mar-2025 00:50 34840 +h2020proposal.doc.r38428.tar.xz 28-Feb-2019 02:41 349084 +h2020proposal.doc.tar.xz 28-Feb-2019 02:41 349084 +h2020proposal.r38428.tar.xz 28-Feb-2019 02:41 8324 +h2020proposal.tar.xz 28-Feb-2019 02:41 8324 +ha-prosper.doc.r59651.tar.xz 20-Jun-2021 23:52 205056 +ha-prosper.doc.tar.xz 20-Jun-2021 23:52 205056 +ha-prosper.r59651.tar.xz 20-Jun-2021 23:52 28404 +ha-prosper.source.r59651.tar.xz 20-Jun-2021 23:52 38768 +ha-prosper.source.tar.xz 20-Jun-2021 23:52 38768 +ha-prosper.tar.xz 20-Jun-2021 23:52 28404 +hackthefootline.doc.r46494.tar.xz 28-Feb-2019 02:41 183604 +hackthefootline.doc.tar.xz 28-Feb-2019 02:41 183604 +hackthefootline.r46494.tar.xz 28-Feb-2019 02:41 4404 +hackthefootline.tar.xz 28-Feb-2019 02:41 4404 +hacm.doc.r27671.tar.xz 28-Feb-2019 02:41 205660 +hacm.doc.tar.xz 28-Feb-2019 02:41 205660 +hacm.r27671.tar.xz 28-Feb-2019 02:41 226288 +hacm.tar.xz 28-Feb-2019 02:41 226288 +hagenberg-thesis.doc.r74272.tar.xz 25-Feb-2025 00:51 5248732 +hagenberg-thesis.doc.tar.xz 25-Feb-2025 00:51 5248732 +hagenberg-thesis.r74272.tar.xz 25-Feb-2025 00:51 25248 +hagenberg-thesis.tar.xz 25-Feb-2025 00:51 25248 +halloweenmath.doc.r52602.tar.xz 02-Nov-2019 15:11 888640 +halloweenmath.doc.tar.xz 02-Nov-2019 15:11 888640 +halloweenmath.r52602.tar.xz 02-Nov-2019 15:11 9152 +halloweenmath.source.r52602.tar.xz 02-Nov-2019 15:11 37752 +halloweenmath.source.tar.xz 02-Nov-2019 15:11 37752 +halloweenmath.tar.xz 02-Nov-2019 15:11 9152 +hamnosys.doc.r61941.tar.xz 09-Feb-2022 00:52 181248 +hamnosys.doc.tar.xz 09-Feb-2022 00:52 181248 +hamnosys.r61941.tar.xz 09-Feb-2022 00:52 20636 +hamnosys.source.r61941.tar.xz 09-Feb-2022 00:52 15888 +hamnosys.source.tar.xz 09-Feb-2022 00:52 15888 +hamnosys.tar.xz 09-Feb-2022 00:52 20636 +handin.doc.r48255.tar.xz 28-Feb-2019 02:41 440932 +handin.doc.tar.xz 28-Feb-2019 02:41 440932 +handin.r48255.tar.xz 28-Feb-2019 02:41 3460 +handin.tar.xz 28-Feb-2019 02:41 3460 +handout.doc.r43962.tar.xz 28-Feb-2019 02:41 195724 +handout.doc.tar.xz 28-Feb-2019 02:41 195724 +handout.r43962.tar.xz 28-Feb-2019 02:41 2048 +handout.tar.xz 28-Feb-2019 02:41 2048 +handoutwithnotes.doc.r62140.tar.xz 23-Feb-2022 00:52 317144 +handoutwithnotes.doc.tar.xz 23-Feb-2022 00:52 317144 +handoutwithnotes.r62140.tar.xz 23-Feb-2022 00:52 3644 +handoutwithnotes.source.r62140.tar.xz 23-Feb-2022 00:52 7304 +handoutwithnotes.source.tar.xz 23-Feb-2022 00:52 7304 +handoutwithnotes.tar.xz 23-Feb-2022 00:52 3644 +hands.r13293.tar.xz 28-Feb-2019 02:41 2612 +hands.tar.xz 28-Feb-2019 02:41 2612 +hang.doc.r43280.tar.xz 28-Feb-2019 02:41 53740 +hang.doc.tar.xz 28-Feb-2019 02:41 53740 +hang.r43280.tar.xz 28-Feb-2019 02:41 1056 +hang.tar.xz 28-Feb-2019 02:41 1056 +hanging.doc.r15878.tar.xz 28-Feb-2019 02:41 145540 +hanging.doc.tar.xz 28-Feb-2019 02:41 145540 +hanging.r15878.tar.xz 28-Feb-2019 02:41 1956 +hanging.source.r15878.tar.xz 28-Feb-2019 02:41 7908 +hanging.source.tar.xz 28-Feb-2019 02:41 7908 +hanging.tar.xz 28-Feb-2019 02:41 1956 +hanoi.r25019.tar.xz 28-Feb-2019 02:41 1496 +hanoi.tar.xz 28-Feb-2019 02:41 1496 +hanzibox.doc.r63062.tar.xz 17-Apr-2022 23:52 593704 +hanzibox.doc.tar.xz 17-Apr-2022 23:52 593704 +hanzibox.r63062.tar.xz 17-Apr-2022 23:52 7492 +hanzibox.source.r63062.tar.xz 17-Apr-2022 23:52 19544 +hanzibox.source.tar.xz 17-Apr-2022 23:52 19544 +hanzibox.tar.xz 17-Apr-2022 23:52 7492 +happy4th.doc.r25020.tar.xz 28-Feb-2019 02:41 52364 +happy4th.doc.tar.xz 28-Feb-2019 02:41 52364 +happy4th.r25020.tar.xz 28-Feb-2019 02:41 436 +happy4th.tar.xz 28-Feb-2019 02:41 436 +har2nat.doc.r54080.tar.xz 04-Mar-2020 22:50 216528 +har2nat.doc.tar.xz 04-Mar-2020 22:50 216528 +har2nat.r54080.tar.xz 04-Mar-2020 22:50 1112 +har2nat.tar.xz 04-Mar-2020 22:50 1112 +haranoaji-extra.doc.r76079.tar.xz 17-Aug-2025 23:47 3044 +haranoaji-extra.doc.tar.xz 17-Aug-2025 23:47 3044 +haranoaji-extra.r76079.tar.xz 17-Aug-2025 23:47 26101888 +haranoaji-extra.tar.xz 17-Aug-2025 23:47 26101888 +haranoaji.doc.r76078.tar.xz 17-Aug-2025 23:46 3032 +haranoaji.doc.tar.xz 17-Aug-2025 23:46 3032 +haranoaji.r76078.tar.xz 17-Aug-2025 23:46 26259784 +haranoaji.tar.xz 17-Aug-2025 23:46 26259784 +hardwrap.doc.r21396.tar.xz 28-Feb-2019 02:41 120084 +hardwrap.doc.tar.xz 28-Feb-2019 02:41 120084 +hardwrap.r21396.tar.xz 28-Feb-2019 02:41 2732 +hardwrap.source.r21396.tar.xz 28-Feb-2019 02:41 11108 +hardwrap.source.tar.xz 28-Feb-2019 02:41 11108 +hardwrap.tar.xz 28-Feb-2019 02:41 2732 +harmony.doc.r72045.tar.xz 16-Aug-2024 23:46 166700 +harmony.doc.tar.xz 16-Aug-2024 23:46 166700 +harmony.r72045.tar.xz 16-Aug-2024 23:46 2840 +harmony.tar.xz 16-Aug-2024 23:46 2840 +harnon-cv.doc.r26543.tar.xz 28-Feb-2019 02:41 50396 +harnon-cv.doc.tar.xz 28-Feb-2019 02:41 50396 +harnon-cv.r26543.tar.xz 28-Feb-2019 02:41 2180 +harnon-cv.tar.xz 28-Feb-2019 02:41 2180 +harpoon.doc.r21327.tar.xz 28-Feb-2019 02:41 19464 +harpoon.doc.tar.xz 28-Feb-2019 02:41 19464 +harpoon.r21327.tar.xz 28-Feb-2019 02:41 1196 +harpoon.tar.xz 28-Feb-2019 02:41 1196 +harvard.doc.r15878.tar.xz 28-Feb-2019 02:41 75192 +harvard.doc.tar.xz 28-Feb-2019 02:41 75192 +harvard.r15878.tar.xz 28-Feb-2019 02:41 16376 +harvard.source.r15878.tar.xz 28-Feb-2019 02:41 1132 +harvard.source.tar.xz 28-Feb-2019 02:41 1132 +harvard.tar.xz 28-Feb-2019 02:41 16376 +harveyballs.doc.r32003.tar.xz 28-Feb-2019 02:41 138784 +harveyballs.doc.tar.xz 28-Feb-2019 02:41 138784 +harveyballs.r32003.tar.xz 28-Feb-2019 02:41 1284 +harveyballs.tar.xz 28-Feb-2019 02:41 1284 +harvmac.doc.r15878.tar.xz 28-Feb-2019 02:41 5896 +harvmac.doc.tar.xz 28-Feb-2019 02:41 5896 +harvmac.r15878.tar.xz 28-Feb-2019 02:41 5640 +harvmac.tar.xz 28-Feb-2019 02:41 5640 +hatching.doc.r23818.tar.xz 28-Feb-2019 02:41 2444 +hatching.doc.tar.xz 28-Feb-2019 02:41 2444 +hatching.r23818.tar.xz 28-Feb-2019 02:41 1528 +hatching.tar.xz 28-Feb-2019 02:41 1528 +hausarbeit-jura.doc.r56070.tar.xz 07-Aug-2020 23:57 342728 +hausarbeit-jura.doc.tar.xz 07-Aug-2020 23:57 342728 +hausarbeit-jura.r56070.tar.xz 07-Aug-2020 23:57 5240 +hausarbeit-jura.source.r56070.tar.xz 07-Aug-2020 23:57 12828 +hausarbeit-jura.source.tar.xz 07-Aug-2020 23:57 12828 +hausarbeit-jura.tar.xz 07-Aug-2020 23:57 5240 +havannah.doc.r36348.tar.xz 28-Feb-2019 02:41 222808 +havannah.doc.tar.xz 28-Feb-2019 02:41 222808 +havannah.r36348.tar.xz 28-Feb-2019 02:41 2792 +havannah.source.r36348.tar.xz 28-Feb-2019 02:41 6160 +havannah.source.tar.xz 28-Feb-2019 02:41 6160 +havannah.tar.xz 28-Feb-2019 02:41 2792 +hc.doc.r15878.tar.xz 28-Feb-2019 02:41 43508 +hc.doc.tar.xz 28-Feb-2019 02:41 43508 +hc.r15878.tar.xz 28-Feb-2019 02:41 12824 +hc.source.r15878.tar.xz 28-Feb-2019 02:41 14060 +hc.source.tar.xz 28-Feb-2019 02:41 14060 +hc.tar.xz 28-Feb-2019 02:41 12824 +hduthesis.doc.r74731.tar.xz 24-Mar-2025 00:49 1443408 +hduthesis.doc.tar.xz 24-Mar-2025 00:49 1443408 +hduthesis.r74731.tar.xz 24-Mar-2025 00:49 258984 +hduthesis.source.r74731.tar.xz 24-Mar-2025 00:49 128440 +hduthesis.source.tar.xz 24-Mar-2025 00:49 128440 +hduthesis.tar.xz 24-Mar-2025 00:49 258984 +he-she.doc.r41359.tar.xz 28-Feb-2019 02:41 213100 +he-she.doc.tar.xz 28-Feb-2019 02:41 213100 +he-she.r41359.tar.xz 28-Feb-2019 02:41 3096 +he-she.tar.xz 28-Feb-2019 02:41 3096 +hebdomon.doc.r72033.tar.xz 14-Aug-2024 23:46 542260 +hebdomon.doc.tar.xz 14-Aug-2024 23:46 542260 +hebdomon.r72033.tar.xz 14-Aug-2024 23:46 4060 +hebdomon.tar.xz 14-Aug-2024 23:46 4060 +hebrew-fonts.doc.r68038.tar.xz 23-Aug-2023 23:45 405812 +hebrew-fonts.doc.tar.xz 23-Aug-2023 23:45 405812 +hebrew-fonts.r68038.tar.xz 23-Aug-2023 23:45 6368 +hebrew-fonts.source.r68038.tar.xz 23-Aug-2023 23:45 13756 +hebrew-fonts.source.tar.xz 23-Aug-2023 23:45 13756 +hebrew-fonts.tar.xz 23-Aug-2023 23:45 6368 +hecthese.doc.r68584.tar.xz 18-Oct-2023 23:44 891164 +hecthese.doc.tar.xz 18-Oct-2023 23:44 891164 +hecthese.r68584.tar.xz 18-Oct-2023 23:44 3780 +hecthese.source.r68584.tar.xz 18-Oct-2023 23:44 28036 +hecthese.source.tar.xz 18-Oct-2023 23:44 28036 +hecthese.tar.xz 18-Oct-2023 23:44 3780 +helmholtz-ellis-ji-notation.doc.r55213.tar.xz 19-May-2020 23:01 78536 +helmholtz-ellis-ji-notation.doc.tar.xz 19-May-2020 23:01 78536 +helmholtz-ellis-ji-notation.r55213.tar.xz 19-May-2020 23:01 16848 +helmholtz-ellis-ji-notation.source.r55213.tar.xz 19-May-2020 23:01 4244 +helmholtz-ellis-ji-notation.source.tar.xz 19-May-2020 23:01 4244 +helmholtz-ellis-ji-notation.tar.xz 19-May-2020 23:01 16848 +helvetic.r61719.tar.xz 24-Jan-2022 00:53 539616 +helvetic.tar.xz 24-Jan-2022 00:53 539616 +hep-acronym.doc.r76220.tar.xz 02-Sep-2025 23:49 537844 +hep-acronym.doc.tar.xz 02-Sep-2025 23:49 537844 +hep-acronym.r76220.tar.xz 02-Sep-2025 23:49 2636 +hep-acronym.source.r76220.tar.xz 02-Sep-2025 23:49 6160 +hep-acronym.source.tar.xz 02-Sep-2025 23:49 6160 +hep-acronym.tar.xz 02-Sep-2025 23:49 2636 +hep-bibliography.doc.r76220.tar.xz 02-Sep-2025 23:49 562084 +hep-bibliography.doc.tar.xz 02-Sep-2025 23:49 562084 +hep-bibliography.r76220.tar.xz 02-Sep-2025 23:49 3532 +hep-bibliography.source.r76220.tar.xz 02-Sep-2025 23:49 9520 +hep-bibliography.source.tar.xz 02-Sep-2025 23:49 9520 +hep-bibliography.tar.xz 02-Sep-2025 23:49 3532 +hep-float.doc.r76220.tar.xz 02-Sep-2025 23:49 555808 +hep-float.doc.tar.xz 02-Sep-2025 23:49 555808 +hep-float.r76220.tar.xz 02-Sep-2025 23:49 1964 +hep-float.source.r76220.tar.xz 02-Sep-2025 23:49 5224 +hep-float.source.tar.xz 02-Sep-2025 23:49 5224 +hep-float.tar.xz 02-Sep-2025 23:49 1964 +hep-font.doc.r76220.tar.xz 02-Sep-2025 23:49 614632 +hep-font.doc.tar.xz 02-Sep-2025 23:49 614632 +hep-font.r76220.tar.xz 02-Sep-2025 23:49 2404 +hep-font.source.r76220.tar.xz 02-Sep-2025 23:49 6156 +hep-font.source.tar.xz 02-Sep-2025 23:49 6156 +hep-font.tar.xz 02-Sep-2025 23:49 2404 +hep-graphic.doc.r76220.tar.xz 02-Sep-2025 23:49 508500 +hep-graphic.doc.tar.xz 02-Sep-2025 23:49 508500 +hep-graphic.r76220.tar.xz 02-Sep-2025 23:49 2808 +hep-graphic.source.r76220.tar.xz 02-Sep-2025 23:49 4980 +hep-graphic.source.tar.xz 02-Sep-2025 23:49 4980 +hep-graphic.tar.xz 02-Sep-2025 23:49 2808 +hep-math-font.doc.r76220.tar.xz 02-Sep-2025 23:49 1233500 +hep-math-font.doc.tar.xz 02-Sep-2025 23:49 1233500 +hep-math-font.r76220.tar.xz 02-Sep-2025 23:49 2660 +hep-math-font.source.r76220.tar.xz 02-Sep-2025 23:49 7852 +hep-math-font.source.tar.xz 02-Sep-2025 23:49 7852 +hep-math-font.tar.xz 02-Sep-2025 23:49 2660 +hep-math.doc.r76220.tar.xz 02-Sep-2025 23:49 636248 +hep-math.doc.tar.xz 02-Sep-2025 23:49 636248 +hep-math.r76220.tar.xz 02-Sep-2025 23:49 3544 +hep-math.source.r76220.tar.xz 02-Sep-2025 23:49 9240 +hep-math.source.tar.xz 02-Sep-2025 23:49 9240 +hep-math.tar.xz 02-Sep-2025 23:49 3544 +hep-paper.doc.r76220.tar.xz 02-Sep-2025 23:49 791628 +hep-paper.doc.tar.xz 02-Sep-2025 23:49 791628 +hep-paper.r76220.tar.xz 02-Sep-2025 23:49 3700 +hep-paper.source.r76220.tar.xz 02-Sep-2025 23:49 12684 +hep-paper.source.tar.xz 02-Sep-2025 23:49 12684 +hep-paper.tar.xz 02-Sep-2025 23:49 3700 +hep-reference.doc.r76220.tar.xz 02-Sep-2025 23:49 516220 +hep-reference.doc.tar.xz 02-Sep-2025 23:49 516220 +hep-reference.r76220.tar.xz 02-Sep-2025 23:49 1960 +hep-reference.source.r76220.tar.xz 02-Sep-2025 23:49 4416 +hep-reference.source.tar.xz 02-Sep-2025 23:49 4416 +hep-reference.tar.xz 02-Sep-2025 23:49 1960 +hep-text.doc.r76220.tar.xz 02-Sep-2025 23:49 572768 +hep-text.doc.tar.xz 02-Sep-2025 23:49 572768 +hep-text.r76220.tar.xz 02-Sep-2025 23:49 1792 +hep-text.source.r76220.tar.xz 02-Sep-2025 23:49 4608 +hep-text.source.tar.xz 02-Sep-2025 23:49 4608 +hep-text.tar.xz 02-Sep-2025 23:49 1792 +hep-title.doc.r76220.tar.xz 02-Sep-2025 23:49 571888 +hep-title.doc.tar.xz 02-Sep-2025 23:49 571888 +hep-title.r76220.tar.xz 02-Sep-2025 23:49 3588 +hep-title.source.r76220.tar.xz 02-Sep-2025 23:49 7360 +hep-title.source.tar.xz 02-Sep-2025 23:49 7360 +hep-title.tar.xz 02-Sep-2025 23:49 3588 +hep.doc.r15878.tar.xz 28-Feb-2019 02:41 1800 +hep.doc.tar.xz 28-Feb-2019 02:41 1800 +hep.r15878.tar.xz 28-Feb-2019 02:41 2124 +hep.tar.xz 28-Feb-2019 02:41 2124 +hepnames.doc.r35722.tar.xz 28-Feb-2019 02:41 975796 +hepnames.doc.tar.xz 28-Feb-2019 02:41 975796 +hepnames.r35722.tar.xz 28-Feb-2019 02:41 6660 +hepnames.tar.xz 28-Feb-2019 02:41 6660 +hepparticles.doc.r35723.tar.xz 28-Feb-2019 02:41 83952 +hepparticles.doc.tar.xz 28-Feb-2019 02:41 83952 +hepparticles.r35723.tar.xz 28-Feb-2019 02:41 4448 +hepparticles.tar.xz 28-Feb-2019 02:41 4448 +hepthesis.doc.r46054.tar.xz 28-Feb-2019 02:41 689568 +hepthesis.doc.tar.xz 28-Feb-2019 02:41 689568 +hepthesis.r46054.tar.xz 28-Feb-2019 02:41 7212 +hepthesis.tar.xz 28-Feb-2019 02:41 7212 +hepunits.doc.r54758.tar.xz 15-Apr-2020 23:56 100060 +hepunits.doc.tar.xz 15-Apr-2020 23:56 100060 +hepunits.r54758.tar.xz 15-Apr-2020 23:56 1804 +hepunits.tar.xz 15-Apr-2020 23:56 1804 +here.doc.r16135.tar.xz 28-Feb-2019 02:41 596 +here.doc.tar.xz 28-Feb-2019 02:41 596 +here.r16135.tar.xz 28-Feb-2019 02:41 896 +here.tar.xz 28-Feb-2019 02:41 896 +hereapplies.doc.r68638.tar.xz 24-Oct-2023 23:45 423736 +hereapplies.doc.tar.xz 24-Oct-2023 23:45 423736 +hereapplies.r68638.tar.xz 24-Oct-2023 23:45 5340 +hereapplies.tar.xz 24-Oct-2023 23:45 5340 +heria.doc.r76077.tar.xz 17-Aug-2025 23:47 609868 +heria.doc.tar.xz 17-Aug-2025 23:47 609868 +heria.r76077.tar.xz 17-Aug-2025 23:47 18216 +heria.source.r76077.tar.xz 17-Aug-2025 23:47 26672 +heria.source.tar.xz 17-Aug-2025 23:47 26672 +heria.tar.xz 17-Aug-2025 23:47 18216 +heros-otf.doc.r64695.tar.xz 13-Oct-2022 23:55 221248 +heros-otf.doc.tar.xz 13-Oct-2022 23:55 221248 +heros-otf.r64695.tar.xz 13-Oct-2022 23:55 2380 +heros-otf.tar.xz 13-Oct-2022 23:55 2380 +hershey-mp.doc.r70885.tar.xz 07-Apr-2024 23:46 273748 +hershey-mp.doc.tar.xz 07-Apr-2024 23:46 273748 +hershey-mp.r70885.tar.xz 07-Apr-2024 23:46 1684 +hershey-mp.tar.xz 07-Apr-2024 23:46 1684 +heuristica.doc.r69649.tar.xz 01-Feb-2024 00:47 224820 +heuristica.doc.tar.xz 01-Feb-2024 00:47 224820 +heuristica.r69649.tar.xz 01-Feb-2024 00:47 1079020 +heuristica.tar.xz 01-Feb-2024 00:47 1079020 +hexboard.doc.r62102.tar.xz 21-Feb-2022 00:52 275772 +hexboard.doc.tar.xz 21-Feb-2022 00:52 275772 +hexboard.r62102.tar.xz 21-Feb-2022 00:52 3140 +hexboard.source.r62102.tar.xz 21-Feb-2022 00:52 8556 +hexboard.source.tar.xz 21-Feb-2022 00:52 8556 +hexboard.tar.xz 21-Feb-2022 00:52 3140 +hexgame.doc.r15878.tar.xz 28-Feb-2019 02:41 29044 +hexgame.doc.tar.xz 28-Feb-2019 02:41 29044 +hexgame.r15878.tar.xz 28-Feb-2019 02:41 1672 +hexgame.tar.xz 28-Feb-2019 02:41 1672 +hf-tikz.doc.r34733.tar.xz 28-Feb-2019 02:41 123256 +hf-tikz.doc.tar.xz 28-Feb-2019 02:41 123256 +hf-tikz.r34733.tar.xz 28-Feb-2019 02:41 3276 +hf-tikz.source.r34733.tar.xz 28-Feb-2019 02:41 9924 +hf-tikz.source.tar.xz 28-Feb-2019 02:41 9924 +hf-tikz.tar.xz 28-Feb-2019 02:41 3276 +hfbright.doc.r29349.tar.xz 28-Feb-2019 02:41 4964 +hfbright.doc.tar.xz 28-Feb-2019 02:41 4964 +hfbright.r29349.tar.xz 28-Feb-2019 02:41 832824 +hfbright.tar.xz 28-Feb-2019 02:41 832824 +hfoldsty.doc.r29349.tar.xz 28-Feb-2019 02:41 349128 +hfoldsty.doc.tar.xz 28-Feb-2019 02:41 349128 +hfoldsty.r29349.tar.xz 28-Feb-2019 02:41 171124 +hfoldsty.source.r29349.tar.xz 28-Feb-2019 02:41 16560 +hfoldsty.source.tar.xz 28-Feb-2019 02:41 16560 +hfoldsty.tar.xz 28-Feb-2019 02:41 171124 +hfutexam.doc.r75068.tar.xz 30-Apr-2025 23:52 529896 +hfutexam.doc.tar.xz 30-Apr-2025 23:52 529896 +hfutexam.r75068.tar.xz 30-Apr-2025 23:52 4496 +hfutexam.tar.xz 30-Apr-2025 23:52 4496 +hfutthesis.doc.r64025.tar.xz 01-Aug-2022 23:54 799628 +hfutthesis.doc.tar.xz 01-Aug-2022 23:54 799628 +hfutthesis.r64025.tar.xz 01-Aug-2022 23:54 25440 +hfutthesis.tar.xz 01-Aug-2022 23:54 25440 +hhtensor.doc.r54080.tar.xz 04-Mar-2020 22:50 362248 +hhtensor.doc.tar.xz 04-Mar-2020 22:50 362248 +hhtensor.r54080.tar.xz 04-Mar-2020 22:50 1204 +hhtensor.source.r54080.tar.xz 04-Mar-2020 22:50 3160 +hhtensor.source.tar.xz 04-Mar-2020 22:50 3160 +hhtensor.tar.xz 04-Mar-2020 22:50 1204 +hideanswer.doc.r72949.tar.xz 24-Nov-2024 01:04 119348 +hideanswer.doc.tar.xz 24-Nov-2024 01:04 119348 +hideanswer.r72949.tar.xz 24-Nov-2024 01:04 1228 +hideanswer.tar.xz 24-Nov-2024 01:04 1228 +hideproofs.doc.r75712.tar.xz 07-Jul-2025 23:50 350804 +hideproofs.doc.tar.xz 07-Jul-2025 23:50 350804 +hideproofs.r75712.tar.xz 07-Jul-2025 23:50 3548 +hideproofs.source.r75712.tar.xz 07-Jul-2025 23:50 5704 +hideproofs.source.tar.xz 07-Jul-2025 23:50 5704 +hideproofs.tar.xz 07-Jul-2025 23:50 3548 +highlightlatex.doc.r58392.tar.xz 16-Mar-2021 00:32 223808 +highlightlatex.doc.tar.xz 16-Mar-2021 00:32 223808 +highlightlatex.r58392.tar.xz 16-Mar-2021 00:32 3548 +highlightlatex.tar.xz 16-Mar-2021 00:32 3548 +highlightx.doc.r75336.tar.xz 27-May-2025 23:50 229036 +highlightx.doc.tar.xz 27-May-2025 23:50 229036 +highlightx.r75336.tar.xz 27-May-2025 23:50 3820 +highlightx.tar.xz 27-May-2025 23:50 3820 +hindawi-latex-template.doc.r57757.tar.xz 16-Feb-2021 00:57 44964 +hindawi-latex-template.doc.tar.xz 16-Feb-2021 00:57 44964 +hindawi-latex-template.r57757.tar.xz 16-Feb-2021 00:57 524 +hindawi-latex-template.tar.xz 16-Feb-2021 00:57 524 +hindmadurai.doc.r57360.tar.xz 11-Jan-2021 00:57 85732 +hindmadurai.doc.tar.xz 11-Jan-2021 00:57 85732 +hindmadurai.r57360.tar.xz 11-Jan-2021 00:57 1191412 +hindmadurai.tar.xz 11-Jan-2021 00:57 1191412 +histogr.doc.r15878.tar.xz 28-Feb-2019 02:41 92496 +histogr.doc.tar.xz 28-Feb-2019 02:41 92496 +histogr.r15878.tar.xz 28-Feb-2019 02:41 1204 +histogr.source.r15878.tar.xz 28-Feb-2019 02:41 3208 +histogr.source.tar.xz 28-Feb-2019 02:41 3208 +histogr.tar.xz 28-Feb-2019 02:41 1204 +historische-zeitschrift.doc.r42635.tar.xz 28-Feb-2019 02:41 3708 +historische-zeitschrift.doc.tar.xz 28-Feb-2019 02:41 3708 +historische-zeitschrift.r42635.tar.xz 28-Feb-2019 02:41 5372 +historische-zeitschrift.tar.xz 28-Feb-2019 02:41 5372 +hitec.doc.r15878.tar.xz 28-Feb-2019 02:41 16076 +hitec.doc.tar.xz 28-Feb-2019 02:41 16076 +hitec.r15878.tar.xz 28-Feb-2019 02:41 5944 +hitec.tar.xz 28-Feb-2019 02:41 5944 +hitex.aarch64-linux.r74078.tar.xz 18-Feb-2025 00:51 416636 +hitex.aarch64-linux.tar.xz 18-Feb-2025 00:51 416636 +hitex.amd64-freebsd.r74051.tar.xz 17-Feb-2025 00:45 390812 +hitex.amd64-freebsd.tar.xz 17-Feb-2025 00:45 390812 +hitex.amd64-netbsd.r74058.tar.xz 18-Feb-2025 00:51 390112 +hitex.amd64-netbsd.tar.xz 18-Feb-2025 00:51 390112 +hitex.armhf-linux.r74078.tar.xz 18-Feb-2025 00:51 428556 +hitex.armhf-linux.tar.xz 18-Feb-2025 00:51 428556 +hitex.doc.r74030.tar.xz 16-Feb-2025 19:00 2828016 +hitex.doc.tar.xz 16-Feb-2025 19:00 2828016 +hitex.i386-freebsd.r74051.tar.xz 17-Feb-2025 00:45 391148 +hitex.i386-freebsd.tar.xz 17-Feb-2025 00:45 391148 +hitex.i386-linux.r74051.tar.xz 17-Feb-2025 00:45 406708 +hitex.i386-linux.tar.xz 17-Feb-2025 00:45 406708 +hitex.i386-netbsd.r74058.tar.xz 18-Feb-2025 00:51 314856 +hitex.i386-netbsd.tar.xz 18-Feb-2025 00:51 314856 +hitex.i386-solaris.r74051.tar.xz 17-Feb-2025 00:45 370636 +hitex.i386-solaris.tar.xz 17-Feb-2025 00:45 370636 +hitex.r74030.tar.xz 16-Feb-2025 19:00 5628 +hitex.tar.xz 16-Feb-2025 19:00 5628 +hitex.universal-darwin.r74077.tar.xz 18-Feb-2025 00:51 954540 +hitex.universal-darwin.tar.xz 18-Feb-2025 00:51 954540 +hitex.windows.r73974.tar.xz 14-Feb-2025 00:49 593616 +hitex.windows.tar.xz 14-Feb-2025 00:49 593616 +hitex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 424096 +hitex.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 424096 +hitex.x86_64-darwinlegacy.r74077.tar.xz 18-Feb-2025 00:51 276172 +hitex.x86_64-darwinlegacy.tar.xz 18-Feb-2025 00:51 276172 +hitex.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 452548 +hitex.x86_64-linux.tar.xz 19-Feb-2025 00:46 452548 +hitex.x86_64-linuxmusl.r74051.tar.xz 17-Feb-2025 00:45 444336 +hitex.x86_64-linuxmusl.tar.xz 17-Feb-2025 00:45 444336 +hitex.x86_64-solaris.r74051.tar.xz 17-Feb-2025 00:45 443432 +hitex.x86_64-solaris.tar.xz 17-Feb-2025 00:45 443432 +hithesis.doc.r64005.tar.xz 29-Jul-2022 23:53 979888 +hithesis.doc.tar.xz 29-Jul-2022 23:53 979888 +hithesis.r64005.tar.xz 29-Jul-2022 23:53 25980 +hithesis.source.r64005.tar.xz 29-Jul-2022 23:53 58908 +hithesis.source.tar.xz 29-Jul-2022 23:53 58908 +hithesis.tar.xz 29-Jul-2022 23:53 25980 +hitreport.doc.r58357.tar.xz 15-Mar-2021 00:32 1328244 +hitreport.doc.tar.xz 15-Mar-2021 00:32 1328244 +hitreport.r58357.tar.xz 15-Mar-2021 00:32 10816 +hitreport.source.r58357.tar.xz 15-Mar-2021 00:32 25736 +hitreport.source.tar.xz 15-Mar-2021 00:32 25736 +hitreport.tar.xz 15-Mar-2021 00:32 10816 +hitszbeamer.doc.r54381.tar.xz 18-Mar-2020 00:56 1073200 +hitszbeamer.doc.tar.xz 18-Mar-2020 00:56 1073200 +hitszbeamer.r54381.tar.xz 18-Mar-2020 00:56 11560 +hitszbeamer.source.r54381.tar.xz 18-Mar-2020 00:56 7944 +hitszbeamer.source.tar.xz 18-Mar-2020 00:56 7944 +hitszbeamer.tar.xz 18-Mar-2020 00:56 11560 +hitszthesis.doc.r61073.tar.xz 17-Nov-2021 00:53 1656872 +hitszthesis.doc.tar.xz 17-Nov-2021 00:53 1656872 +hitszthesis.r61073.tar.xz 17-Nov-2021 00:53 25112 +hitszthesis.source.r61073.tar.xz 17-Nov-2021 00:53 34172 +hitszthesis.source.tar.xz 17-Nov-2021 00:53 34172 +hitszthesis.tar.xz 17-Nov-2021 00:53 25112 +hletter.doc.r30002.tar.xz 28-Feb-2019 02:41 2527296 +hletter.doc.tar.xz 28-Feb-2019 02:41 2527296 +hletter.r30002.tar.xz 28-Feb-2019 02:41 8712 +hletter.tar.xz 28-Feb-2019 02:41 8712 +hlist.doc.r44983.tar.xz 28-Feb-2019 02:41 386912 +hlist.doc.tar.xz 28-Feb-2019 02:41 386912 +hlist.r44983.tar.xz 28-Feb-2019 02:41 9244 +hlist.tar.xz 28-Feb-2019 02:41 9244 +hmtrump.doc.r54512.tar.xz 24-Mar-2020 00:59 967852 +hmtrump.doc.tar.xz 24-Mar-2020 00:59 967852 +hmtrump.r54512.tar.xz 24-Mar-2020 00:59 19256 +hmtrump.tar.xz 24-Mar-2020 00:59 19256 +hobby.doc.r68137.tar.xz 01-Sep-2023 23:45 969172 +hobby.doc.tar.xz 01-Sep-2023 23:45 969172 +hobby.r68137.tar.xz 01-Sep-2023 23:45 9864 +hobby.source.r68137.tar.xz 01-Sep-2023 23:45 18200 +hobby.source.tar.xz 01-Sep-2023 23:45 18200 +hobby.tar.xz 01-Sep-2023 23:45 9864 +hobete.doc.r27036.tar.xz 28-Feb-2019 02:41 366520 +hobete.doc.tar.xz 28-Feb-2019 02:41 366520 +hobete.r27036.tar.xz 28-Feb-2019 02:41 6292 +hobete.tar.xz 28-Feb-2019 02:41 6292 +hobsub.doc.r52810.tar.xz 16-Nov-2019 00:54 60892 +hobsub.doc.tar.xz 16-Nov-2019 00:54 60892 +hobsub.r52810.tar.xz 16-Nov-2019 00:54 1264 +hobsub.tar.xz 16-Nov-2019 00:54 1264 +hologo.doc.r61719.tar.xz 24-Jan-2022 00:53 578024 +hologo.doc.tar.xz 24-Jan-2022 00:53 578024 +hologo.r61719.tar.xz 24-Jan-2022 00:53 9916 +hologo.source.r61719.tar.xz 24-Jan-2022 00:53 19880 +hologo.source.tar.xz 24-Jan-2022 00:53 19880 +hologo.tar.xz 24-Jan-2022 00:53 9916 +homework.doc.r72441.tar.xz 01-Oct-2024 23:49 375480 +homework.doc.tar.xz 01-Oct-2024 23:49 375480 +homework.r72441.tar.xz 01-Oct-2024 23:49 3888 +homework.tar.xz 01-Oct-2024 23:49 3888 +hook-pre-commit-pkg.doc.r41378.tar.xz 28-Feb-2019 02:41 2788 +hook-pre-commit-pkg.doc.tar.xz 28-Feb-2019 02:41 2788 +hook-pre-commit-pkg.r41378.tar.xz 28-Feb-2019 02:41 808 +hook-pre-commit-pkg.tar.xz 28-Feb-2019 02:41 808 +hopatch.doc.r65491.tar.xz 09-Jan-2023 00:53 319716 +hopatch.doc.tar.xz 09-Jan-2023 00:53 319716 +hopatch.r65491.tar.xz 09-Jan-2023 00:53 2184 +hopatch.source.r65491.tar.xz 09-Jan-2023 00:53 6076 +hopatch.source.tar.xz 09-Jan-2023 00:53 6076 +hopatch.tar.xz 09-Jan-2023 00:53 2184 +horoscop.doc.r56021.tar.xz 02-Aug-2020 00:02 688112 +horoscop.doc.tar.xz 02-Aug-2020 00:02 688112 +horoscop.r56021.tar.xz 02-Aug-2020 00:02 10484 +horoscop.source.r56021.tar.xz 02-Aug-2020 00:02 74156 +horoscop.source.tar.xz 02-Aug-2020 00:02 74156 +horoscop.tar.xz 02-Aug-2020 00:02 10484 +hpsdiss.doc.r15878.tar.xz 28-Feb-2019 02:41 110020 +hpsdiss.doc.tar.xz 28-Feb-2019 02:41 110020 +hpsdiss.r15878.tar.xz 28-Feb-2019 02:41 5708 +hpsdiss.source.r15878.tar.xz 28-Feb-2019 02:41 11408 +hpsdiss.source.tar.xz 28-Feb-2019 02:41 11408 +hpsdiss.tar.xz 28-Feb-2019 02:41 5708 +href-ul.doc.r74512.tar.xz 08-Mar-2025 00:49 281356 +href-ul.doc.tar.xz 08-Mar-2025 00:49 281356 +href-ul.r74512.tar.xz 08-Mar-2025 00:49 1536 +href-ul.source.r74512.tar.xz 08-Mar-2025 00:49 3152 +href-ul.source.tar.xz 08-Mar-2025 00:49 3152 +href-ul.tar.xz 08-Mar-2025 00:49 1536 +hrefhide.doc.r73641.tar.xz 30-Jan-2025 00:48 430532 +hrefhide.doc.tar.xz 30-Jan-2025 00:48 430532 +hrefhide.r73641.tar.xz 30-Jan-2025 00:48 2572 +hrefhide.source.r73641.tar.xz 30-Jan-2025 00:48 11132 +hrefhide.source.tar.xz 30-Jan-2025 00:48 11132 +hrefhide.tar.xz 30-Jan-2025 00:48 2572 +hrlatex.doc.r18020.tar.xz 28-Feb-2019 02:41 98316 +hrlatex.doc.tar.xz 28-Feb-2019 02:41 98316 +hrlatex.r18020.tar.xz 28-Feb-2019 02:41 3528 +hrlatex.source.r18020.tar.xz 28-Feb-2019 02:41 3768 +hrlatex.source.tar.xz 28-Feb-2019 02:41 3768 +hrlatex.tar.xz 28-Feb-2019 02:41 3528 +hu-berlin-bundle.doc.r67128.tar.xz 15-May-2023 23:44 213984 +hu-berlin-bundle.doc.tar.xz 15-May-2023 23:44 213984 +hu-berlin-bundle.r67128.tar.xz 15-May-2023 23:44 8292 +hu-berlin-bundle.source.r67128.tar.xz 15-May-2023 23:44 17820 +hu-berlin-bundle.source.tar.xz 15-May-2023 23:44 17820 +hu-berlin-bundle.tar.xz 15-May-2023 23:44 8292 +huawei.doc.r73148.tar.xz 18-Dec-2024 00:48 692204 +huawei.doc.tar.xz 18-Dec-2024 00:48 692204 +huawei.r73148.tar.xz 18-Dec-2024 00:48 260756 +huawei.source.r73148.tar.xz 18-Dec-2024 00:48 11136 +huawei.source.tar.xz 18-Dec-2024 00:48 11136 +huawei.tar.xz 18-Dec-2024 00:48 260756 +huaz.doc.r71180.tar.xz 05-May-2024 23:46 374860 +huaz.doc.tar.xz 05-May-2024 23:46 374860 +huaz.r71180.tar.xz 05-May-2024 23:46 6052 +huaz.tar.xz 05-May-2024 23:46 6052 +huffman.doc.r67071.tar.xz 11-May-2023 23:57 126832 +huffman.doc.tar.xz 11-May-2023 23:57 126832 +huffman.r67071.tar.xz 11-May-2023 23:57 3036 +huffman.tar.xz 11-May-2023 23:57 3036 +hulipsum.doc.r70928.tar.xz 12-Apr-2024 23:46 154688 +hulipsum.doc.tar.xz 12-Apr-2024 23:46 154688 +hulipsum.r70928.tar.xz 12-Apr-2024 23:46 55656 +hulipsum.source.r70928.tar.xz 12-Apr-2024 23:46 57076 +hulipsum.source.tar.xz 12-Apr-2024 23:46 57076 +hulipsum.tar.xz 12-Apr-2024 23:46 55656 +hustthesis.doc.r74352.tar.xz 01-Mar-2025 00:56 808992 +hustthesis.doc.tar.xz 01-Mar-2025 00:56 808992 +hustthesis.r74352.tar.xz 01-Mar-2025 00:56 29508 +hustthesis.source.r74352.tar.xz 01-Mar-2025 00:56 34272 +hustthesis.source.tar.xz 01-Mar-2025 00:56 34272 +hustthesis.tar.xz 01-Mar-2025 00:56 29508 +hustvisual.doc.r75712.tar.xz 07-Jul-2025 23:50 513328 +hustvisual.doc.tar.xz 07-Jul-2025 23:50 513328 +hustvisual.r75712.tar.xz 07-Jul-2025 23:50 39176 +hustvisual.source.r75712.tar.xz 07-Jul-2025 23:50 44992 +hustvisual.source.tar.xz 07-Jul-2025 23:50 44992 +hustvisual.tar.xz 07-Jul-2025 23:50 39176 +hvarabic.doc.r59423.tar.xz 01-Jun-2021 23:55 150588 +hvarabic.doc.tar.xz 01-Jun-2021 23:55 150588 +hvarabic.r59423.tar.xz 01-Jun-2021 23:55 1468 +hvarabic.tar.xz 01-Jun-2021 23:55 1468 +hvextern.doc.r75209.tar.xz 14-May-2025 23:48 1278768 +hvextern.doc.tar.xz 14-May-2025 23:48 1278768 +hvextern.r75209.tar.xz 14-May-2025 23:48 9020 +hvextern.tar.xz 14-May-2025 23:48 9020 +hvfloat.doc.r76327.tar.xz 16-Sep-2025 23:45 19964364 +hvfloat.doc.tar.xz 16-Sep-2025 23:45 19964364 +hvfloat.r76327.tar.xz 16-Sep-2025 23:46 15744 +hvfloat.tar.xz 16-Sep-2025 23:46 15744 +hvindex.doc.r73580.tar.xz 25-Jan-2025 00:45 40152 +hvindex.doc.tar.xz 25-Jan-2025 00:45 40152 +hvindex.r73580.tar.xz 25-Jan-2025 00:45 1660 +hvindex.tar.xz 25-Jan-2025 00:45 1660 +hvlogos.doc.r75183.tar.xz 12-May-2025 23:50 108864 +hvlogos.doc.tar.xz 12-May-2025 23:50 108864 +hvlogos.r75183.tar.xz 12-May-2025 23:50 23188 +hvlogos.tar.xz 12-May-2025 23:50 23188 +hvpygmentex.doc.r62405.tar.xz 04-Mar-2022 23:11 22308 +hvpygmentex.doc.tar.xz 04-Mar-2022 23:11 22308 +hvpygmentex.r62405.tar.xz 04-Mar-2022 23:11 3576 +hvpygmentex.tar.xz 04-Mar-2022 23:11 3576 +hvqrurl.doc.r71361.tar.xz 27-May-2024 13:11 123452 +hvqrurl.doc.tar.xz 27-May-2024 13:11 123452 +hvqrurl.r71361.tar.xz 27-May-2024 13:11 1580 +hvqrurl.tar.xz 27-May-2024 13:11 1580 +hwemoji.doc.r65001.tar.xz 13-Nov-2022 00:53 4360084 +hwemoji.doc.tar.xz 13-Nov-2022 00:53 4360084 +hwemoji.r65001.tar.xz 13-Nov-2022 00:53 4274656 +hwemoji.tar.xz 13-Nov-2022 00:53 4274656 +hycolor.doc.r53584.tar.xz 29-Jan-2020 00:56 375200 +hycolor.doc.tar.xz 29-Jan-2020 00:56 375200 +hycolor.r53584.tar.xz 29-Jan-2020 00:56 4044 +hycolor.source.r53584.tar.xz 29-Jan-2020 00:56 9676 +hycolor.source.tar.xz 29-Jan-2020 00:56 9676 +hycolor.tar.xz 29-Jan-2020 00:56 4044 +hypcap.doc.r71912.tar.xz 27-Jul-2024 23:55 293564 +hypcap.doc.tar.xz 27-Jul-2024 23:55 293564 +hypcap.r71912.tar.xz 27-Jul-2024 23:55 2024 +hypcap.source.r71912.tar.xz 27-Jul-2024 23:55 6212 +hypcap.source.tar.xz 27-Jul-2024 23:55 6212 +hypcap.tar.xz 27-Jul-2024 23:55 2024 +hypdestopt.doc.r75593.tar.xz 23-Jun-2025 23:48 343476 +hypdestopt.doc.tar.xz 23-Jun-2025 23:48 343476 +hypdestopt.r75593.tar.xz 23-Jun-2025 23:48 2852 +hypdestopt.tar.xz 23-Jun-2025 23:48 2852 +hypdoc.doc.r68661.tar.xz 26-Oct-2023 23:45 326408 +hypdoc.doc.tar.xz 26-Oct-2023 23:45 326408 +hypdoc.r68661.tar.xz 26-Oct-2023 23:45 3624 +hypdoc.source.r68661.tar.xz 26-Oct-2023 23:45 8684 +hypdoc.source.tar.xz 26-Oct-2023 23:45 8684 +hypdoc.tar.xz 26-Oct-2023 23:45 3624 +hypdvips.doc.r53197.tar.xz 21-Dec-2019 00:54 471212 +hypdvips.doc.tar.xz 21-Dec-2019 00:54 471212 +hypdvips.r53197.tar.xz 21-Dec-2019 00:54 24028 +hypdvips.tar.xz 21-Dec-2019 00:54 24028 +hyper.doc.r17357.tar.xz 28-Feb-2019 02:41 278528 +hyper.doc.tar.xz 28-Feb-2019 02:41 278528 +hyper.r17357.tar.xz 28-Feb-2019 02:41 15680 +hyper.source.r17357.tar.xz 28-Feb-2019 02:41 32960 +hyper.source.tar.xz 28-Feb-2019 02:41 32960 +hyper.tar.xz 28-Feb-2019 02:41 15680 +hyperbar.doc.r48147.tar.xz 28-Feb-2019 02:41 442692 +hyperbar.doc.tar.xz 28-Feb-2019 02:41 442692 +hyperbar.r48147.tar.xz 28-Feb-2019 02:41 2444 +hyperbar.source.r48147.tar.xz 28-Feb-2019 02:41 3884 +hyperbar.source.tar.xz 28-Feb-2019 02:41 3884 +hyperbar.tar.xz 28-Feb-2019 02:41 2444 +hypernat.doc.r17358.tar.xz 28-Feb-2019 02:41 186676 +hypernat.doc.tar.xz 28-Feb-2019 02:41 186676 +hypernat.r17358.tar.xz 28-Feb-2019 02:41 1916 +hypernat.tar.xz 28-Feb-2019 02:41 1916 +hyperref.doc.r75759.tar.xz 12-Jul-2025 23:59 3512204 +hyperref.doc.tar.xz 12-Jul-2025 23:59 3512204 +hyperref.r75759.tar.xz 12-Jul-2025 23:59 89040 +hyperref.source.r75759.tar.xz 12-Jul-2025 23:59 418068 +hyperref.source.tar.xz 12-Jul-2025 23:59 418068 +hyperref.tar.xz 12-Jul-2025 23:59 89040 +hyperxmp.aarch64-linux.r56984.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.aarch64-linux.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.amd64-freebsd.r56984.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.amd64-freebsd.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.amd64-netbsd.r56984.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.amd64-netbsd.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.armhf-linux.r56984.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.armhf-linux.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.doc.r70694.tar.xz 19-Mar-2024 00:45 1203748 +hyperxmp.doc.tar.xz 19-Mar-2024 00:45 1203748 +hyperxmp.i386-freebsd.r56984.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.i386-freebsd.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.i386-linux.r56984.tar.xz 23-Nov-2020 00:57 352 +hyperxmp.i386-linux.tar.xz 23-Nov-2020 00:57 352 +hyperxmp.i386-netbsd.r56984.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.i386-netbsd.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.i386-solaris.r56984.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.i386-solaris.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.r70694.tar.xz 19-Mar-2024 00:45 15208 +hyperxmp.source.r70694.tar.xz 19-Mar-2024 00:45 61480 +hyperxmp.source.tar.xz 19-Mar-2024 00:45 61480 +hyperxmp.tar.xz 19-Mar-2024 00:45 15208 +hyperxmp.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 356 +hyperxmp.universal-darwin.tar.xz 25-Feb-2021 18:16 356 +hyperxmp.windows.r65891.tar.xz 20-Feb-2023 22:12 2320 +hyperxmp.windows.tar.xz 20-Feb-2023 22:12 2320 +hyperxmp.x86_64-cygwin.r56984.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.x86_64-cygwin.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.x86_64-darwinlegacy.r56984.tar.xz 23-Nov-2020 00:57 364 +hyperxmp.x86_64-darwinlegacy.tar.xz 23-Nov-2020 00:57 364 +hyperxmp.x86_64-linux.r56984.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.x86_64-linux.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.x86_64-linuxmusl.r56984.tar.xz 23-Nov-2020 00:57 360 +hyperxmp.x86_64-linuxmusl.tar.xz 23-Nov-2020 00:57 360 +hyperxmp.x86_64-solaris.r56984.tar.xz 23-Nov-2020 00:57 356 +hyperxmp.x86_64-solaris.tar.xz 23-Nov-2020 00:57 356 +hyph-utf8.doc.r74823.tar.xz 02-Apr-2025 23:49 268432 +hyph-utf8.doc.tar.xz 02-Apr-2025 23:49 268432 +hyph-utf8.r74823.tar.xz 02-Apr-2025 23:49 15988 +hyph-utf8.source.r74823.tar.xz 02-Apr-2025 23:49 36100 +hyph-utf8.source.tar.xz 02-Apr-2025 23:49 36100 +hyph-utf8.tar.xz 02-Apr-2025 23:49 15988 +hyphen-afrikaans.r73410.tar.xz 11-Jan-2025 17:47 37012 +hyphen-afrikaans.tar.xz 11-Jan-2025 17:47 37012 +hyphen-albanian.r73410.tar.xz 11-Jan-2025 17:47 3352 +hyphen-albanian.tar.xz 11-Jan-2025 17:47 3352 +hyphen-ancientgreek.r74823.tar.xz 02-Apr-2025 23:49 38252 +hyphen-ancientgreek.tar.xz 02-Apr-2025 23:49 38252 +hyphen-arabic.r74115.tar.xz 18-Feb-2025 22:36 720 +hyphen-arabic.tar.xz 18-Feb-2025 22:36 720 +hyphen-armenian.r73410.tar.xz 11-Jan-2025 17:47 2616 +hyphen-armenian.source.r73410.tar.xz 11-Jan-2025 17:47 1196 +hyphen-armenian.source.tar.xz 11-Jan-2025 17:47 1196 +hyphen-armenian.tar.xz 11-Jan-2025 17:47 2616 +hyphen-base.r74125.tar.xz 19-Feb-2025 00:46 22636 +hyphen-base.tar.xz 19-Feb-2025 00:46 22636 +hyphen-basque.r73410.tar.xz 11-Jan-2025 17:47 3228 +hyphen-basque.source.r73410.tar.xz 11-Jan-2025 17:47 2540 +hyphen-basque.source.tar.xz 11-Jan-2025 17:47 2540 +hyphen-basque.tar.xz 11-Jan-2025 17:47 3228 +hyphen-belarusian.r73410.tar.xz 11-Jan-2025 17:47 11816 +hyphen-belarusian.tar.xz 11-Jan-2025 17:47 11816 +hyphen-bulgarian.r73410.tar.xz 11-Jan-2025 17:47 28132 +hyphen-bulgarian.tar.xz 11-Jan-2025 17:47 28132 +hyphen-catalan.r73410.tar.xz 11-Jan-2025 17:47 5036 +hyphen-catalan.tar.xz 11-Jan-2025 17:47 5036 +hyphen-chinese.r74115.tar.xz 18-Feb-2025 22:36 3316 +hyphen-chinese.tar.xz 18-Feb-2025 22:36 3316 +hyphen-churchslavonic.r73410.tar.xz 11-Jan-2025 17:47 31536 +hyphen-churchslavonic.tar.xz 11-Jan-2025 17:47 31536 +hyphen-coptic.r73410.tar.xz 11-Jan-2025 17:47 6168 +hyphen-coptic.tar.xz 11-Jan-2025 17:47 6168 +hyphen-croatian.r73410.tar.xz 11-Jan-2025 17:47 5540 +hyphen-croatian.tar.xz 11-Jan-2025 17:47 5540 +hyphen-czech.r73410.tar.xz 11-Jan-2025 17:47 15756 +hyphen-czech.tar.xz 11-Jan-2025 17:47 15756 +hyphen-danish.r73410.tar.xz 11-Jan-2025 17:47 5756 +hyphen-danish.tar.xz 11-Jan-2025 17:47 5756 +hyphen-dutch.r73410.tar.xz 11-Jan-2025 17:47 37996 +hyphen-dutch.tar.xz 11-Jan-2025 17:47 37996 +hyphen-english.r73410.tar.xz 11-Jan-2025 17:47 41380 +hyphen-english.tar.xz 11-Jan-2025 17:47 41380 +hyphen-esperanto.r73410.tar.xz 11-Jan-2025 17:47 10656 +hyphen-esperanto.tar.xz 11-Jan-2025 17:47 10656 +hyphen-estonian.r73410.tar.xz 11-Jan-2025 17:47 14584 +hyphen-estonian.tar.xz 11-Jan-2025 17:47 14584 +hyphen-ethiopic.r73410.tar.xz 11-Jan-2025 17:47 4448 +hyphen-ethiopic.source.r73410.tar.xz 11-Jan-2025 17:47 2616 +hyphen-ethiopic.source.tar.xz 11-Jan-2025 17:47 2616 +hyphen-ethiopic.tar.xz 11-Jan-2025 17:47 4448 +hyphen-farsi.r74115.tar.xz 18-Feb-2025 22:36 740 +hyphen-farsi.tar.xz 18-Feb-2025 22:36 740 +hyphen-finnish.r73410.tar.xz 11-Jan-2025 17:47 4672 +hyphen-finnish.tar.xz 11-Jan-2025 17:47 4672 +hyphen-french.r73410.tar.xz 11-Jan-2025 17:47 11420 +hyphen-french.tar.xz 11-Jan-2025 17:47 11420 +hyphen-friulan.r73410.tar.xz 11-Jan-2025 17:47 3784 +hyphen-friulan.tar.xz 11-Jan-2025 17:47 3784 +hyphen-galician.r73410.tar.xz 11-Jan-2025 17:47 10348 +hyphen-galician.source.r73410.tar.xz 11-Jan-2025 17:47 6768 +hyphen-galician.source.tar.xz 11-Jan-2025 17:47 6768 +hyphen-galician.tar.xz 11-Jan-2025 17:47 10348 +hyphen-georgian.r73410.tar.xz 11-Jan-2025 17:47 11032 +hyphen-georgian.tar.xz 11-Jan-2025 17:47 11032 +hyphen-german.r74203.tar.xz 22-Feb-2025 18:00 229712 +hyphen-german.tar.xz 22-Feb-2025 18:00 229712 +hyphen-greek.doc.r73410.tar.xz 11-Jan-2025 17:47 727512 +hyphen-greek.doc.tar.xz 11-Jan-2025 17:47 727512 +hyphen-greek.r73410.tar.xz 11-Jan-2025 17:47 13308 +hyphen-greek.tar.xz 11-Jan-2025 17:47 13308 +hyphen-hebrew.r74032.tar.xz 16-Feb-2025 19:00 720 +hyphen-hebrew.tar.xz 16-Feb-2025 19:00 720 +hyphen-hungarian.doc.r73410.tar.xz 11-Jan-2025 17:47 179896 +hyphen-hungarian.doc.tar.xz 11-Jan-2025 17:47 179896 +hyphen-hungarian.r73410.tar.xz 11-Jan-2025 17:47 285088 +hyphen-hungarian.tar.xz 11-Jan-2025 17:47 285088 +hyphen-icelandic.r73410.tar.xz 11-Jan-2025 17:47 19424 +hyphen-icelandic.tar.xz 11-Jan-2025 17:47 19424 +hyphen-indic.r73410.tar.xz 11-Jan-2025 17:47 5164 +hyphen-indic.tar.xz 11-Jan-2025 17:47 5164 +hyphen-indonesian.r73410.tar.xz 11-Jan-2025 17:47 2412 +hyphen-indonesian.tar.xz 11-Jan-2025 17:47 2412 +hyphen-interlingua.r73410.tar.xz 11-Jan-2025 17:47 2880 +hyphen-interlingua.tar.xz 11-Jan-2025 17:47 2880 +hyphen-irish.r73410.tar.xz 11-Jan-2025 17:47 30384 +hyphen-irish.tar.xz 11-Jan-2025 17:47 30384 +hyphen-italian.r73410.tar.xz 11-Jan-2025 17:47 3508 +hyphen-italian.tar.xz 11-Jan-2025 17:47 3508 +hyphen-kurmanji.r73410.tar.xz 11-Jan-2025 17:47 2704 +hyphen-kurmanji.tar.xz 11-Jan-2025 17:47 2704 +hyphen-latin.r73410.tar.xz 11-Jan-2025 17:47 102020 +hyphen-latin.tar.xz 11-Jan-2025 17:47 102020 +hyphen-latvian.r73410.tar.xz 11-Jan-2025 17:47 52388 +hyphen-latvian.tar.xz 11-Jan-2025 17:47 52388 +hyphen-lithuanian.r73410.tar.xz 11-Jan-2025 17:47 7436 +hyphen-lithuanian.tar.xz 11-Jan-2025 17:47 7436 +hyphen-macedonian.r73410.tar.xz 11-Jan-2025 17:47 5536 +hyphen-macedonian.tar.xz 11-Jan-2025 17:47 5536 +hyphen-mongolian.r74203.tar.xz 22-Feb-2025 18:00 10428 +hyphen-mongolian.tar.xz 22-Feb-2025 18:00 10428 +hyphen-norwegian.r73410.tar.xz 11-Jan-2025 17:47 96216 +hyphen-norwegian.tar.xz 11-Jan-2025 17:47 96216 +hyphen-occitan.r73410.tar.xz 11-Jan-2025 17:47 3308 +hyphen-occitan.tar.xz 11-Jan-2025 17:47 3308 +hyphen-piedmontese.r73410.tar.xz 11-Jan-2025 17:47 3332 +hyphen-piedmontese.tar.xz 11-Jan-2025 17:47 3332 +hyphen-polish.r73410.tar.xz 11-Jan-2025 17:47 12508 +hyphen-polish.tar.xz 11-Jan-2025 17:47 12508 +hyphen-portuguese.r74203.tar.xz 22-Feb-2025 18:00 3768 +hyphen-portuguese.tar.xz 22-Feb-2025 18:00 3768 +hyphen-romanian.r73410.tar.xz 11-Jan-2025 17:47 4336 +hyphen-romanian.tar.xz 11-Jan-2025 17:47 4336 +hyphen-romansh.r74115.tar.xz 18-Feb-2025 22:36 4232 +hyphen-romansh.tar.xz 18-Feb-2025 22:36 4232 +hyphen-russian.r73410.tar.xz 11-Jan-2025 17:47 34428 +hyphen-russian.tar.xz 11-Jan-2025 17:47 34428 +hyphen-sanskrit.doc.r73410.tar.xz 11-Jan-2025 17:47 992 +hyphen-sanskrit.doc.tar.xz 11-Jan-2025 17:47 992 +hyphen-sanskrit.r73410.tar.xz 11-Jan-2025 17:47 3588 +hyphen-sanskrit.tar.xz 11-Jan-2025 17:47 3588 +hyphen-serbian.r73410.tar.xz 11-Jan-2025 17:47 25136 +hyphen-serbian.tar.xz 11-Jan-2025 17:47 25136 +hyphen-slovak.r73410.tar.xz 11-Jan-2025 17:47 10856 +hyphen-slovak.tar.xz 11-Jan-2025 17:47 10856 +hyphen-slovenian.r73410.tar.xz 11-Jan-2025 17:47 6200 +hyphen-slovenian.tar.xz 11-Jan-2025 17:47 6200 +hyphen-spanish.doc.r75447.tar.xz 07-Jun-2025 23:49 128796 +hyphen-spanish.doc.tar.xz 07-Jun-2025 23:49 128796 +hyphen-spanish.r75447.tar.xz 07-Jun-2025 23:49 16392 +hyphen-spanish.source.r75447.tar.xz 07-Jun-2025 23:49 7912 +hyphen-spanish.source.tar.xz 07-Jun-2025 23:49 7912 +hyphen-spanish.tar.xz 07-Jun-2025 23:49 16392 +hyphen-swedish.r73410.tar.xz 11-Jan-2025 17:47 18232 +hyphen-swedish.tar.xz 11-Jan-2025 17:47 18232 +hyphen-thai.r73410.tar.xz 11-Jan-2025 17:47 33636 +hyphen-thai.tar.xz 11-Jan-2025 17:47 33636 +hyphen-turkish.r73410.tar.xz 11-Jan-2025 17:47 3860 +hyphen-turkish.source.r73410.tar.xz 11-Jan-2025 17:47 2724 +hyphen-turkish.source.tar.xz 11-Jan-2025 17:47 2724 +hyphen-turkish.tar.xz 11-Jan-2025 17:47 3860 +hyphen-turkmen.r73410.tar.xz 11-Jan-2025 17:47 6284 +hyphen-turkmen.source.r73410.tar.xz 11-Jan-2025 17:47 1676 +hyphen-turkmen.source.tar.xz 11-Jan-2025 17:47 1676 +hyphen-turkmen.tar.xz 11-Jan-2025 17:47 6284 +hyphen-ukrainian.r73410.tar.xz 11-Jan-2025 17:47 18804 +hyphen-ukrainian.tar.xz 11-Jan-2025 17:47 18804 +hyphen-uppersorbian.r73410.tar.xz 11-Jan-2025 17:47 5508 +hyphen-uppersorbian.tar.xz 11-Jan-2025 17:47 5508 +hyphen-vietnamese.r74032.tar.xz 16-Feb-2025 19:00 712 +hyphen-vietnamese.tar.xz 16-Feb-2025 19:00 712 +hyphen-welsh.r73410.tar.xz 11-Jan-2025 17:47 19984 +hyphen-welsh.tar.xz 11-Jan-2025 17:47 19984 +hyphenat.doc.r15878.tar.xz 28-Feb-2019 02:42 151796 +hyphenat.doc.tar.xz 28-Feb-2019 02:42 151796 +hyphenat.r15878.tar.xz 28-Feb-2019 02:42 1692 +hyphenat.source.r15878.tar.xz 28-Feb-2019 02:42 10404 +hyphenat.source.tar.xz 28-Feb-2019 02:42 10404 +hyphenat.tar.xz 28-Feb-2019 02:42 1692 +hyphenex.r57387.tar.xz 12-Jan-2021 00:57 8700 +hyphenex.source.r57387.tar.xz 12-Jan-2021 00:57 203972 +hyphenex.source.tar.xz 12-Jan-2021 00:57 203972 +hyphenex.tar.xz 12-Jan-2021 00:57 8700 +hyplain.doc.r15878.tar.xz 28-Feb-2019 02:42 48884 +hyplain.doc.tar.xz 28-Feb-2019 02:42 48884 +hyplain.r15878.tar.xz 28-Feb-2019 02:42 3136 +hyplain.tar.xz 28-Feb-2019 02:42 3136 +iaria-lite.doc.r74963.tar.xz 16-Apr-2025 23:50 282252 +iaria-lite.doc.tar.xz 16-Apr-2025 23:50 282252 +iaria-lite.r74963.tar.xz 16-Apr-2025 23:50 1756 +iaria-lite.source.r74963.tar.xz 16-Apr-2025 23:50 6604 +iaria-lite.source.tar.xz 16-Apr-2025 23:50 6604 +iaria-lite.tar.xz 16-Apr-2025 23:50 1756 +iaria.doc.r74962.tar.xz 16-Apr-2025 23:50 285040 +iaria.doc.tar.xz 16-Apr-2025 23:50 285040 +iaria.r74962.tar.xz 16-Apr-2025 23:50 2188 +iaria.source.r74962.tar.xz 16-Apr-2025 23:50 8164 +iaria.source.tar.xz 16-Apr-2025 23:50 8164 +iaria.tar.xz 16-Apr-2025 23:50 2188 +ibarra.doc.r71059.tar.xz 24-Apr-2024 23:48 309812 +ibarra.doc.tar.xz 24-Apr-2024 23:48 309812 +ibarra.r71059.tar.xz 24-Apr-2024 23:48 788136 +ibarra.tar.xz 24-Apr-2024 23:48 788136 +ibrackets.doc.r67736.tar.xz 26-Jul-2023 23:45 80368 +ibrackets.doc.tar.xz 26-Jul-2023 23:45 80368 +ibrackets.r67736.tar.xz 26-Jul-2023 23:45 1124 +ibrackets.source.r67736.tar.xz 26-Jul-2023 23:45 3976 +ibrackets.source.tar.xz 26-Jul-2023 23:45 3976 +ibrackets.tar.xz 26-Jul-2023 23:45 1124 +ibycus-babel.doc.r15878.tar.xz 28-Feb-2019 02:42 53824 +ibycus-babel.doc.tar.xz 28-Feb-2019 02:42 53824 +ibycus-babel.r15878.tar.xz 28-Feb-2019 02:42 2164 +ibycus-babel.source.r15878.tar.xz 28-Feb-2019 02:42 7824 +ibycus-babel.source.tar.xz 28-Feb-2019 02:42 7824 +ibycus-babel.tar.xz 28-Feb-2019 02:42 2164 +ibygrk.doc.r15878.tar.xz 28-Feb-2019 02:42 15576 +ibygrk.doc.tar.xz 28-Feb-2019 02:42 15576 +ibygrk.r15878.tar.xz 28-Feb-2019 02:42 138944 +ibygrk.tar.xz 28-Feb-2019 02:42 138944 +icite.doc.r67201.tar.xz 23-May-2023 23:44 272248 +icite.doc.tar.xz 23-May-2023 23:44 272248 +icite.r67201.tar.xz 23-May-2023 23:44 2448 +icite.source.r67201.tar.xz 23-May-2023 23:44 13520 +icite.source.tar.xz 23-May-2023 23:44 13520 +icite.tar.xz 23-May-2023 23:44 2448 +icsv.doc.r15878.tar.xz 28-Feb-2019 02:42 209444 +icsv.doc.tar.xz 28-Feb-2019 02:42 209444 +icsv.r15878.tar.xz 28-Feb-2019 02:42 3596 +icsv.source.r15878.tar.xz 28-Feb-2019 02:42 10304 +icsv.source.tar.xz 28-Feb-2019 02:42 10304 +icsv.tar.xz 28-Feb-2019 02:42 3596 +ideavault.doc.r74773.tar.xz 29-Mar-2025 00:50 40408 +ideavault.doc.tar.xz 29-Mar-2025 00:50 40408 +ideavault.r74773.tar.xz 29-Mar-2025 00:50 3276 +ideavault.tar.xz 29-Mar-2025 00:50 3276 +identkey.doc.r61719.tar.xz 24-Jan-2022 00:53 488 +identkey.doc.tar.xz 24-Jan-2022 00:53 488 +identkey.r61719.tar.xz 24-Jan-2022 00:53 1132 +identkey.tar.xz 24-Jan-2022 00:53 1132 +idxcmds.doc.r54554.tar.xz 26-Mar-2020 00:56 413600 +idxcmds.doc.tar.xz 26-Mar-2020 00:56 413600 +idxcmds.r54554.tar.xz 26-Mar-2020 00:56 2380 +idxcmds.tar.xz 26-Mar-2020 00:56 2380 +idxlayout.doc.r25821.tar.xz 28-Feb-2019 02:42 338936 +idxlayout.doc.tar.xz 28-Feb-2019 02:42 338936 +idxlayout.r25821.tar.xz 28-Feb-2019 02:42 2708 +idxlayout.source.r25821.tar.xz 28-Feb-2019 02:42 12428 +idxlayout.source.tar.xz 28-Feb-2019 02:42 12428 +idxlayout.tar.xz 28-Feb-2019 02:42 2708 +ieeeconf.doc.r59665.tar.xz 21-Jun-2021 23:52 177420 +ieeeconf.doc.tar.xz 21-Jun-2021 23:52 177420 +ieeeconf.r59665.tar.xz 21-Jun-2021 23:52 2524 +ieeeconf.source.r59665.tar.xz 21-Jun-2021 23:52 12536 +ieeeconf.source.tar.xz 21-Jun-2021 23:52 12536 +ieeeconf.tar.xz 21-Jun-2021 23:52 2524 +ieeepes.doc.r17359.tar.xz 28-Feb-2019 02:42 248084 +ieeepes.doc.tar.xz 28-Feb-2019 02:42 248084 +ieeepes.r17359.tar.xz 28-Feb-2019 02:42 9512 +ieeepes.tar.xz 28-Feb-2019 02:42 9512 +ieeetran.doc.r59672.tar.xz 22-Jun-2021 23:53 487300 +ieeetran.doc.tar.xz 22-Jun-2021 23:53 487300 +ieeetran.r59672.tar.xz 22-Jun-2021 23:53 89348 +ieeetran.tar.xz 22-Jun-2021 23:53 89348 +ieejtran.doc.r65641.tar.xz 28-Jan-2023 00:54 150936 +ieejtran.doc.tar.xz 28-Jan-2023 00:54 150936 +ieejtran.r65641.tar.xz 28-Jan-2023 00:54 17688 +ieejtran.tar.xz 28-Jan-2023 00:54 17688 +ietfbibs.doc.r41332.tar.xz 28-Feb-2019 02:42 3464 +ietfbibs.doc.tar.xz 28-Feb-2019 02:42 3464 +ietfbibs.r41332.tar.xz 28-Feb-2019 02:42 456 +ietfbibs.tar.xz 28-Feb-2019 02:42 456 +iexec.doc.r73480.tar.xz 17-Jan-2025 00:46 337704 +iexec.doc.tar.xz 17-Jan-2025 00:46 337704 +iexec.r73480.tar.xz 17-Jan-2025 00:46 2584 +iexec.source.r73480.tar.xz 17-Jan-2025 00:46 6284 +iexec.source.tar.xz 17-Jan-2025 00:46 6284 +iexec.tar.xz 17-Jan-2025 00:46 2584 +ifallfalse.doc.r60027.tar.xz 23-Jul-2021 23:52 175068 +ifallfalse.doc.tar.xz 23-Jul-2021 23:52 175068 +ifallfalse.r60027.tar.xz 23-Jul-2021 23:52 1248 +ifallfalse.source.r60027.tar.xz 23-Jul-2021 23:52 3084 +ifallfalse.source.tar.xz 23-Jul-2021 23:52 3084 +ifallfalse.tar.xz 23-Jul-2021 23:52 1248 +iffont.doc.r38823.tar.xz 28-Feb-2019 02:42 28352 +iffont.doc.tar.xz 28-Feb-2019 02:42 28352 +iffont.r38823.tar.xz 28-Feb-2019 02:42 1348 +iffont.source.r38823.tar.xz 28-Feb-2019 02:42 3452 +iffont.source.tar.xz 28-Feb-2019 02:42 3452 +iffont.tar.xz 28-Feb-2019 02:42 1348 +ifis-macros.doc.r75195.tar.xz 13-May-2025 23:51 31456 +ifis-macros.doc.tar.xz 13-May-2025 23:51 31456 +ifis-macros.r75195.tar.xz 13-May-2025 23:51 3472 +ifis-macros.tar.xz 13-May-2025 23:51 3472 +ifmslide.doc.r20727.tar.xz 28-Feb-2019 02:42 204412 +ifmslide.doc.tar.xz 28-Feb-2019 02:42 204412 +ifmslide.r20727.tar.xz 28-Feb-2019 02:42 242848 +ifmslide.tar.xz 28-Feb-2019 02:42 242848 +ifmtarg.doc.r47544.tar.xz 28-Feb-2019 02:42 36996 +ifmtarg.doc.tar.xz 28-Feb-2019 02:42 36996 +ifmtarg.r47544.tar.xz 28-Feb-2019 02:42 664 +ifmtarg.source.r47544.tar.xz 28-Feb-2019 02:42 2712 +ifmtarg.source.tar.xz 28-Feb-2019 02:42 2712 +ifmtarg.tar.xz 28-Feb-2019 02:42 664 +ifnextok.doc.r23379.tar.xz 28-Feb-2019 02:42 215452 +ifnextok.doc.tar.xz 28-Feb-2019 02:42 215452 +ifnextok.r23379.tar.xz 28-Feb-2019 02:42 10756 +ifnextok.source.r23379.tar.xz 28-Feb-2019 02:42 2820 +ifnextok.source.tar.xz 28-Feb-2019 02:42 2820 +ifnextok.tar.xz 28-Feb-2019 02:42 10756 +ifoddpage.doc.r64967.tar.xz 08-Nov-2022 00:55 144248 +ifoddpage.doc.tar.xz 08-Nov-2022 00:55 144248 +ifoddpage.r64967.tar.xz 08-Nov-2022 00:55 1440 +ifoddpage.source.r64967.tar.xz 08-Nov-2022 00:55 4600 +ifoddpage.source.tar.xz 08-Nov-2022 00:55 4600 +ifoddpage.tar.xz 08-Nov-2022 00:55 1440 +ifplatform.doc.r45533.tar.xz 28-Feb-2019 02:42 151716 +ifplatform.doc.tar.xz 28-Feb-2019 02:42 151716 +ifplatform.r45533.tar.xz 28-Feb-2019 02:42 2024 +ifplatform.source.r45533.tar.xz 28-Feb-2019 02:42 5436 +ifplatform.source.tar.xz 28-Feb-2019 02:42 5436 +ifplatform.tar.xz 28-Feb-2019 02:42 2024 +ifptex.doc.r66803.tar.xz 08-Apr-2023 23:54 4076 +ifptex.doc.tar.xz 08-Apr-2023 23:54 4076 +ifptex.r66803.tar.xz 08-Apr-2023 23:54 4212 +ifptex.tar.xz 08-Apr-2023 23:54 4212 +ifsym.doc.r24868.tar.xz 28-Feb-2019 02:42 120996 +ifsym.doc.tar.xz 28-Feb-2019 02:42 120996 +ifsym.r24868.tar.xz 28-Feb-2019 02:42 9808 +ifsym.tar.xz 28-Feb-2019 02:42 9808 +iftex.doc.r73115.tar.xz 14-Dec-2024 00:49 229360 +iftex.doc.tar.xz 14-Dec-2024 00:49 229360 +iftex.r73115.tar.xz 14-Dec-2024 00:49 3244 +iftex.tar.xz 14-Dec-2024 00:49 3244 +ifthenx.doc.r25819.tar.xz 28-Feb-2019 02:42 1924 +ifthenx.doc.tar.xz 28-Feb-2019 02:42 1924 +ifthenx.r25819.tar.xz 28-Feb-2019 02:42 4116 +ifthenx.tar.xz 28-Feb-2019 02:42 4116 +ifxptex.doc.r46153.tar.xz 28-Feb-2019 02:42 199416 +ifxptex.doc.tar.xz 28-Feb-2019 02:42 199416 +ifxptex.r46153.tar.xz 28-Feb-2019 02:42 1268 +ifxptex.tar.xz 28-Feb-2019 02:42 1268 +iitem.doc.r29613.tar.xz 28-Feb-2019 02:42 379776 +iitem.doc.tar.xz 28-Feb-2019 02:42 379776 +iitem.r29613.tar.xz 28-Feb-2019 02:42 1416 +iitem.source.r29613.tar.xz 28-Feb-2019 02:42 4728 +iitem.source.tar.xz 28-Feb-2019 02:42 4728 +iitem.tar.xz 28-Feb-2019 02:42 1416 +ijmart.doc.r30958.tar.xz 28-Feb-2019 02:42 945544 +ijmart.doc.tar.xz 28-Feb-2019 02:42 945544 +ijmart.r30958.tar.xz 28-Feb-2019 02:42 10720 +ijmart.source.r30958.tar.xz 28-Feb-2019 02:42 17084 +ijmart.source.tar.xz 28-Feb-2019 02:42 17084 +ijmart.tar.xz 28-Feb-2019 02:42 10720 +ijqc.doc.r15878.tar.xz 28-Feb-2019 02:42 107216 +ijqc.doc.tar.xz 28-Feb-2019 02:42 107216 +ijqc.r15878.tar.xz 28-Feb-2019 02:42 5972 +ijqc.tar.xz 28-Feb-2019 02:42 5972 +ijsra.doc.r44886.tar.xz 28-Feb-2019 02:42 392404 +ijsra.doc.tar.xz 28-Feb-2019 02:42 392404 +ijsra.r44886.tar.xz 28-Feb-2019 02:42 315516 +ijsra.tar.xz 28-Feb-2019 02:42 315516 +imac.doc.r17347.tar.xz 28-Feb-2019 02:42 121588 +imac.doc.tar.xz 28-Feb-2019 02:42 121588 +imac.r17347.tar.xz 28-Feb-2019 02:42 6876 +imac.tar.xz 28-Feb-2019 02:42 6876 +image-gallery.doc.r15878.tar.xz 28-Feb-2019 02:42 726128 +image-gallery.doc.tar.xz 28-Feb-2019 02:42 726128 +image-gallery.r15878.tar.xz 28-Feb-2019 02:42 2032 +image-gallery.tar.xz 28-Feb-2019 02:42 2032 +imakeidx.doc.r42287.tar.xz 28-Feb-2019 02:42 518160 +imakeidx.doc.tar.xz 28-Feb-2019 02:42 518160 +imakeidx.r42287.tar.xz 28-Feb-2019 02:42 4072 +imakeidx.source.r42287.tar.xz 28-Feb-2019 02:42 20128 +imakeidx.source.tar.xz 28-Feb-2019 02:42 20128 +imakeidx.tar.xz 28-Feb-2019 02:42 4072 +imfellenglish.doc.r64568.tar.xz 01-Oct-2022 23:56 143300 +imfellenglish.doc.tar.xz 01-Oct-2022 23:56 143300 +imfellenglish.r64568.tar.xz 01-Oct-2022 23:56 3095296 +imfellenglish.tar.xz 01-Oct-2022 23:56 3095296 +impatient-cn.doc.r54080.tar.xz 04-Mar-2020 22:51 3943832 +impatient-cn.doc.tar.xz 04-Mar-2020 22:51 3943832 +impatient-cn.r54080.tar.xz 04-Mar-2020 22:51 456 +impatient-cn.tar.xz 04-Mar-2020 22:51 456 +impatient-fr.doc.r54080.tar.xz 04-Mar-2020 22:51 1576664 +impatient-fr.doc.tar.xz 04-Mar-2020 22:51 1576664 +impatient-fr.r54080.tar.xz 04-Mar-2020 22:51 460 +impatient-fr.tar.xz 04-Mar-2020 22:51 460 +impatient.doc.r54080.tar.xz 04-Mar-2020 22:51 1665608 +impatient.doc.tar.xz 04-Mar-2020 22:51 1665608 +impatient.r54080.tar.xz 04-Mar-2020 22:51 452 +impatient.tar.xz 04-Mar-2020 22:51 452 +impnattypo.doc.r50227.tar.xz 05-Mar-2019 01:23 148572 +impnattypo.doc.tar.xz 05-Mar-2019 01:23 148572 +impnattypo.r50227.tar.xz 05-Mar-2019 01:23 3476 +impnattypo.source.r50227.tar.xz 05-Mar-2019 01:23 9308 +impnattypo.source.tar.xz 05-Mar-2019 01:23 9308 +impnattypo.tar.xz 05-Mar-2019 01:23 3476 +import.doc.r54683.tar.xz 11-Apr-2020 23:55 246512 +import.doc.tar.xz 11-Apr-2020 23:55 246512 +import.r54683.tar.xz 11-Apr-2020 23:55 2712 +import.tar.xz 11-Apr-2020 23:55 2712 +imsproc.doc.r29803.tar.xz 28-Feb-2019 02:42 57712 +imsproc.doc.tar.xz 28-Feb-2019 02:42 57712 +imsproc.r29803.tar.xz 28-Feb-2019 02:42 14784 +imsproc.tar.xz 28-Feb-2019 02:42 14784 +imtekda.doc.r17667.tar.xz 28-Feb-2019 02:42 628592 +imtekda.doc.tar.xz 28-Feb-2019 02:42 628592 +imtekda.r17667.tar.xz 28-Feb-2019 02:42 4440 +imtekda.source.r17667.tar.xz 28-Feb-2019 02:42 27688 +imtekda.source.tar.xz 28-Feb-2019 02:42 27688 +imtekda.tar.xz 28-Feb-2019 02:42 4440 +incgraph.doc.r70635.tar.xz 15-Mar-2024 00:47 1123932 +incgraph.doc.tar.xz 15-Mar-2024 00:47 1123932 +incgraph.r70635.tar.xz 15-Mar-2024 00:47 5724 +incgraph.tar.xz 15-Mar-2024 00:47 5724 +includernw.doc.r47557.tar.xz 28-Feb-2019 02:42 157728 +includernw.doc.tar.xz 28-Feb-2019 02:42 157728 +includernw.r47557.tar.xz 28-Feb-2019 02:42 3116 +includernw.tar.xz 28-Feb-2019 02:42 3116 +inconsolata-nerd-font.doc.r70871.tar.xz 06-Apr-2024 23:51 1766584 +inconsolata-nerd-font.doc.tar.xz 06-Apr-2024 23:51 1766584 +inconsolata-nerd-font.r70871.tar.xz 06-Apr-2024 23:51 2604844 +inconsolata-nerd-font.source.r70871.tar.xz 06-Apr-2024 23:51 4988 +inconsolata-nerd-font.source.tar.xz 06-Apr-2024 23:51 4988 +inconsolata-nerd-font.tar.xz 06-Apr-2024 23:51 2604844 +inconsolata.doc.r54512.tar.xz 24-Mar-2020 00:59 179192 +inconsolata.doc.tar.xz 24-Mar-2020 00:59 179192 +inconsolata.r54512.tar.xz 24-Mar-2020 00:59 299536 +inconsolata.tar.xz 24-Mar-2020 00:59 299536 +index.doc.r73880.tar.xz 12-Feb-2025 00:49 292388 +index.doc.tar.xz 12-Feb-2025 00:49 292388 +index.r73880.tar.xz 12-Feb-2025 00:49 3392 +index.source.r73880.tar.xz 12-Feb-2025 00:49 13356 +index.source.tar.xz 12-Feb-2025 00:49 13356 +index.tar.xz 12-Feb-2025 00:49 3392 +indextools.doc.r68555.tar.xz 15-Oct-2023 23:45 562304 +indextools.doc.tar.xz 15-Oct-2023 23:45 562304 +indextools.r68555.tar.xz 15-Oct-2023 23:45 4576 +indextools.source.r68555.tar.xz 15-Oct-2023 23:45 21744 +indextools.source.tar.xz 15-Oct-2023 23:45 21744 +indextools.tar.xz 15-Oct-2023 23:45 4576 +indextra.doc.r74327.tar.xz 28-Feb-2025 00:51 755204 +indextra.doc.tar.xz 28-Feb-2025 00:51 755204 +indextra.r74327.tar.xz 28-Feb-2025 00:51 3528 +indextra.source.r74327.tar.xz 28-Feb-2025 00:51 15360 +indextra.source.tar.xz 28-Feb-2025 00:51 15360 +indextra.tar.xz 28-Feb-2025 00:51 3528 +infwarerr.doc.r53023.tar.xz 05-Dec-2019 00:53 284912 +infwarerr.doc.tar.xz 05-Dec-2019 00:53 284912 +infwarerr.r53023.tar.xz 05-Dec-2019 00:53 2668 +infwarerr.source.r53023.tar.xz 05-Dec-2019 00:53 5712 +infwarerr.source.tar.xz 05-Dec-2019 00:53 5712 +infwarerr.tar.xz 05-Dec-2019 00:53 2668 +initials.doc.r54080.tar.xz 04-Mar-2020 22:51 2868 +initials.doc.tar.xz 04-Mar-2020 22:51 2868 +initials.r54080.tar.xz 04-Mar-2020 22:51 3132652 +initials.tar.xz 04-Mar-2020 22:51 3132652 +inkpaper.doc.r54080.tar.xz 04-Mar-2020 22:51 288768 +inkpaper.doc.tar.xz 04-Mar-2020 22:51 288768 +inkpaper.r54080.tar.xz 04-Mar-2020 22:51 2368 +inkpaper.tar.xz 04-Mar-2020 22:51 2368 +inline-images.doc.r61719.tar.xz 24-Jan-2022 00:53 123072 +inline-images.doc.tar.xz 24-Jan-2022 00:53 123072 +inline-images.r61719.tar.xz 24-Jan-2022 00:53 760 +inline-images.tar.xz 24-Jan-2022 00:53 760 +inlinebib.doc.r22018.tar.xz 28-Feb-2019 02:42 19896 +inlinebib.doc.tar.xz 28-Feb-2019 02:42 19896 +inlinebib.r22018.tar.xz 28-Feb-2019 02:42 6760 +inlinebib.tar.xz 28-Feb-2019 02:42 6760 +inlinedef.doc.r15878.tar.xz 28-Feb-2019 02:42 135048 +inlinedef.doc.tar.xz 28-Feb-2019 02:42 135048 +inlinedef.r15878.tar.xz 28-Feb-2019 02:42 3696 +inlinedef.source.r15878.tar.xz 28-Feb-2019 02:42 12344 +inlinedef.source.tar.xz 28-Feb-2019 02:42 12344 +inlinedef.tar.xz 28-Feb-2019 02:42 3696 +inlinegraphicx.doc.r76144.tar.xz 25-Aug-2025 23:47 160328 +inlinegraphicx.doc.tar.xz 25-Aug-2025 23:47 160328 +inlinegraphicx.r76144.tar.xz 25-Aug-2025 23:47 1200 +inlinegraphicx.tar.xz 25-Aug-2025 23:47 1200 +inlinelabel.doc.r63853.tar.xz 09-Jul-2022 23:53 158132 +inlinelabel.doc.tar.xz 09-Jul-2022 23:53 158132 +inlinelabel.r63853.tar.xz 09-Jul-2022 23:53 1236 +inlinelabel.tar.xz 09-Jul-2022 23:53 1236 +innerscript.doc.r75161.tar.xz 09-May-2025 23:48 186324 +innerscript.doc.tar.xz 09-May-2025 23:48 186324 +innerscript.r75161.tar.xz 09-May-2025 23:48 3320 +innerscript.source.r75161.tar.xz 09-May-2025 23:48 11212 +innerscript.source.tar.xz 09-May-2025 23:48 11212 +innerscript.tar.xz 09-May-2025 23:48 3320 +inputenx.doc.r52986.tar.xz 01-Dec-2019 00:58 785444 +inputenx.doc.tar.xz 01-Dec-2019 00:58 785444 +inputenx.r52986.tar.xz 01-Dec-2019 00:58 30128 +inputenx.source.r52986.tar.xz 01-Dec-2019 00:58 40392 +inputenx.source.tar.xz 01-Dec-2019 00:58 40392 +inputenx.tar.xz 01-Dec-2019 00:58 30128 +inputnormalization.doc.r59850.tar.xz 05-Jul-2021 23:53 99064 +inputnormalization.doc.tar.xz 05-Jul-2021 23:53 99064 +inputnormalization.r59850.tar.xz 05-Jul-2021 23:53 1448 +inputnormalization.source.r59850.tar.xz 05-Jul-2021 23:53 2888 +inputnormalization.source.tar.xz 05-Jul-2021 23:53 2888 +inputnormalization.tar.xz 05-Jul-2021 23:53 1448 +inputtrc.doc.r28019.tar.xz 28-Feb-2019 02:42 335868 +inputtrc.doc.tar.xz 28-Feb-2019 02:42 335868 +inputtrc.r28019.tar.xz 28-Feb-2019 02:42 2812 +inputtrc.source.r28019.tar.xz 28-Feb-2019 02:42 7124 +inputtrc.source.tar.xz 28-Feb-2019 02:42 7124 +inputtrc.tar.xz 28-Feb-2019 02:42 2812 +inriafonts.doc.r54512.tar.xz 24-Mar-2020 00:59 165572 +inriafonts.doc.tar.xz 24-Mar-2020 00:59 165572 +inriafonts.r54512.tar.xz 24-Mar-2020 00:59 2176904 +inriafonts.tar.xz 24-Mar-2020 00:59 2176904 +insbox.doc.r34299.tar.xz 28-Feb-2019 02:42 40372 +insbox.doc.tar.xz 28-Feb-2019 02:42 40372 +insbox.r34299.tar.xz 28-Feb-2019 02:43 2928 +insbox.tar.xz 28-Feb-2019 02:43 2928 +install-latex-guide-zh-cn.doc.r76208.tar.xz 01-Sep-2025 23:46 864252 +install-latex-guide-zh-cn.doc.tar.xz 01-Sep-2025 23:46 864252 +install-latex-guide-zh-cn.r76208.tar.xz 01-Sep-2025 23:46 596 +install-latex-guide-zh-cn.tar.xz 01-Sep-2025 23:46 596 +installfont.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:43 344 +installfont.aarch64-linux.tar.xz 28-Feb-2019 02:43 344 +installfont.amd64-freebsd.r19743.tar.xz 28-Feb-2019 02:43 348 +installfont.amd64-freebsd.tar.xz 28-Feb-2019 02:43 348 +installfont.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:43 344 +installfont.amd64-netbsd.tar.xz 28-Feb-2019 02:43 344 +installfont.armhf-linux.r30015.tar.xz 28-Feb-2019 02:43 344 +installfont.armhf-linux.tar.xz 28-Feb-2019 02:43 344 +installfont.doc.r31205.tar.xz 28-Feb-2019 02:43 56040 +installfont.doc.tar.xz 28-Feb-2019 02:43 56040 +installfont.i386-freebsd.r19743.tar.xz 28-Feb-2019 02:43 344 +installfont.i386-freebsd.tar.xz 28-Feb-2019 02:43 344 +installfont.i386-linux.r19743.tar.xz 28-Feb-2019 02:43 344 +installfont.i386-linux.tar.xz 28-Feb-2019 02:43 344 +installfont.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:43 344 +installfont.i386-netbsd.tar.xz 28-Feb-2019 02:43 344 +installfont.i386-solaris.r19743.tar.xz 28-Feb-2019 02:43 344 +installfont.i386-solaris.tar.xz 28-Feb-2019 02:43 344 +installfont.r31205.tar.xz 28-Feb-2019 02:43 4840 +installfont.tar.xz 28-Feb-2019 02:43 4840 +installfont.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +installfont.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +installfont.windows.r65891.tar.xz 20-Feb-2023 22:12 2524 +installfont.windows.tar.xz 20-Feb-2023 22:12 2524 +installfont.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:43 348 +installfont.x86_64-cygwin.tar.xz 28-Feb-2019 02:43 348 +installfont.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:43 352 +installfont.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:43 352 +installfont.x86_64-linux.r19743.tar.xz 28-Feb-2019 02:43 344 +installfont.x86_64-linux.tar.xz 28-Feb-2019 02:43 344 +installfont.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:43 348 +installfont.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:43 348 +installfont.x86_64-solaris.r19743.tar.xz 28-Feb-2019 02:43 344 +installfont.x86_64-solaris.tar.xz 28-Feb-2019 02:43 344 +intcalc.doc.r53168.tar.xz 18-Dec-2019 00:54 423196 +intcalc.doc.tar.xz 18-Dec-2019 00:54 423196 +intcalc.r53168.tar.xz 18-Dec-2019 00:54 5436 +intcalc.source.r53168.tar.xz 18-Dec-2019 00:54 12576 +intcalc.source.tar.xz 18-Dec-2019 00:54 12576 +intcalc.tar.xz 18-Dec-2019 00:54 5436 +inter.doc.r68966.tar.xz 26-Nov-2023 00:50 873816 +inter.doc.tar.xz 26-Nov-2023 00:50 873816 +inter.r68966.tar.xz 26-Nov-2023 00:50 13459132 +inter.tar.xz 26-Nov-2023 00:50 13459132 +interactiveworkbook.doc.r15878.tar.xz 28-Feb-2019 02:43 401956 +interactiveworkbook.doc.tar.xz 28-Feb-2019 02:43 401956 +interactiveworkbook.r15878.tar.xz 28-Feb-2019 02:43 5216 +interactiveworkbook.tar.xz 28-Feb-2019 02:43 5216 +interchar.doc.r36312.tar.xz 28-Feb-2019 02:43 85428 +interchar.doc.tar.xz 28-Feb-2019 02:43 85428 +interchar.r36312.tar.xz 28-Feb-2019 02:43 5308 +interchar.tar.xz 28-Feb-2019 02:43 5308 +interfaces.doc.r21474.tar.xz 28-Feb-2019 02:43 740556 +interfaces.doc.tar.xz 28-Feb-2019 02:43 740556 +interfaces.r21474.tar.xz 28-Feb-2019 02:43 27932 +interfaces.source.r21474.tar.xz 28-Feb-2019 02:43 67108 +interfaces.source.tar.xz 28-Feb-2019 02:43 67108 +interfaces.tar.xz 28-Feb-2019 02:43 27932 +interlinear.doc.r72106.tar.xz 25-Aug-2024 23:47 127344 +interlinear.doc.tar.xz 25-Aug-2024 23:47 127344 +interlinear.r72106.tar.xz 25-Aug-2024 23:47 10148 +interlinear.tar.xz 25-Aug-2024 23:47 10148 +interpreter.doc.r27232.tar.xz 28-Feb-2019 02:43 122152 +interpreter.doc.tar.xz 28-Feb-2019 02:43 122152 +interpreter.r27232.tar.xz 28-Feb-2019 02:43 6224 +interpreter.tar.xz 28-Feb-2019 02:43 6224 +interval.doc.r50265.tar.xz 07-Mar-2019 01:23 325808 +interval.doc.tar.xz 07-Mar-2019 01:23 325808 +interval.r50265.tar.xz 07-Mar-2019 01:23 1620 +interval.tar.xz 07-Mar-2019 01:23 1620 +intexgral.doc.r76312.tar.xz 14-Sep-2025 23:48 248016 +intexgral.doc.tar.xz 14-Sep-2025 23:48 248016 +intexgral.r76312.tar.xz 14-Sep-2025 23:48 6388 +intexgral.source.r76312.tar.xz 14-Sep-2025 23:48 20244 +intexgral.source.tar.xz 14-Sep-2025 23:48 20244 +intexgral.tar.xz 14-Sep-2025 23:48 6388 +intopdf.doc.r63987.tar.xz 27-Jul-2022 23:53 380176 +intopdf.doc.tar.xz 27-Jul-2022 23:53 380176 +intopdf.r63987.tar.xz 27-Jul-2022 23:53 1372 +intopdf.source.r63987.tar.xz 27-Jul-2022 23:53 2444 +intopdf.source.tar.xz 27-Jul-2022 23:53 2444 +intopdf.tar.xz 27-Jul-2022 23:53 1372 +intro-scientific.doc.r15878.tar.xz 28-Feb-2019 02:43 274748 +intro-scientific.doc.tar.xz 28-Feb-2019 02:43 274748 +intro-scientific.r15878.tar.xz 28-Feb-2019 02:43 540 +intro-scientific.tar.xz 28-Feb-2019 02:43 540 +inversepath.doc.r15878.tar.xz 28-Feb-2019 02:43 73972 +inversepath.doc.tar.xz 28-Feb-2019 02:43 73972 +inversepath.r15878.tar.xz 28-Feb-2019 02:43 1420 +inversepath.source.r15878.tar.xz 28-Feb-2019 02:43 4432 +inversepath.source.tar.xz 28-Feb-2019 02:43 4432 +inversepath.tar.xz 28-Feb-2019 02:43 1420 +invoice-class.doc.r49749.tar.xz 28-Feb-2019 02:43 102896 +invoice-class.doc.tar.xz 28-Feb-2019 02:43 102896 +invoice-class.r49749.tar.xz 28-Feb-2019 02:43 2752 +invoice-class.tar.xz 28-Feb-2019 02:43 2752 +invoice.doc.r48359.tar.xz 28-Feb-2019 02:43 101852 +invoice.doc.tar.xz 28-Feb-2019 02:43 101852 +invoice.r48359.tar.xz 28-Feb-2019 02:43 8756 +invoice.tar.xz 28-Feb-2019 02:43 8756 +invoice2.doc.r67327.tar.xz 11-Jun-2023 21:11 626584 +invoice2.doc.tar.xz 11-Jun-2023 21:11 626584 +invoice2.r67327.tar.xz 11-Jun-2023 21:11 3404 +invoice2.source.r67327.tar.xz 11-Jun-2023 21:11 9120 +invoice2.source.tar.xz 11-Jun-2023 21:11 9120 +invoice2.tar.xz 11-Jun-2023 21:11 3404 +iodhbwm.doc.r57773.tar.xz 18-Feb-2021 00:58 3073260 +iodhbwm.doc.tar.xz 18-Feb-2021 00:58 3073260 +iodhbwm.r57773.tar.xz 18-Feb-2021 00:58 40680 +iodhbwm.tar.xz 18-Feb-2021 00:58 40680 +ionumbers.doc.r33457.tar.xz 28-Feb-2019 02:43 482812 +ionumbers.doc.tar.xz 28-Feb-2019 02:43 482812 +ionumbers.r33457.tar.xz 28-Feb-2019 02:43 4952 +ionumbers.source.r33457.tar.xz 28-Feb-2019 02:43 12992 +ionumbers.source.tar.xz 28-Feb-2019 02:43 12992 +ionumbers.tar.xz 28-Feb-2019 02:43 4952 +iopart-num.doc.r15878.tar.xz 28-Feb-2019 02:43 63076 +iopart-num.doc.tar.xz 28-Feb-2019 02:43 63076 +iopart-num.r15878.tar.xz 28-Feb-2019 02:43 7864 +iopart-num.tar.xz 28-Feb-2019 02:43 7864 +ipaex-type1.doc.r47700.tar.xz 28-Feb-2019 02:43 369204 +ipaex-type1.doc.tar.xz 28-Feb-2019 02:43 369204 +ipaex-type1.r47700.tar.xz 28-Feb-2019 02:43 13160912 +ipaex-type1.tar.xz 28-Feb-2019 02:43 13160912 +ipaex.doc.r61719.tar.xz 24-Jan-2022 00:53 7484 +ipaex.doc.tar.xz 24-Jan-2022 00:53 7484 +ipaex.r61719.tar.xz 24-Jan-2022 00:53 15865176 +ipaex.tar.xz 24-Jan-2022 00:53 15865176 +ipsum.doc.r75788.tar.xz 15-Jul-2025 23:47 171328 +ipsum.doc.tar.xz 15-Jul-2025 23:47 171328 +ipsum.r75788.tar.xz 15-Jul-2025 23:47 15076 +ipsum.tar.xz 15-Jul-2025 23:47 15076 +iran-bibtex.doc.r71972.tar.xz 04-Aug-2024 23:47 164848 +iran-bibtex.doc.tar.xz 04-Aug-2024 23:47 164848 +iran-bibtex.r71972.tar.xz 04-Aug-2024 23:47 14764 +iran-bibtex.tar.xz 04-Aug-2024 23:47 14764 +is-bst.doc.r52623.tar.xz 04-Nov-2019 00:54 18792 +is-bst.doc.tar.xz 04-Nov-2019 00:54 18792 +is-bst.r52623.tar.xz 04-Nov-2019 00:54 9932 +is-bst.tar.xz 04-Nov-2019 00:54 9932 +iscram.doc.r45801.tar.xz 28-Feb-2019 02:43 269984 +iscram.doc.tar.xz 28-Feb-2019 02:43 269984 +iscram.r45801.tar.xz 28-Feb-2019 02:43 2980 +iscram.tar.xz 28-Feb-2019 02:43 2980 +iso.doc.r15878.tar.xz 28-Feb-2019 02:43 812136 +iso.doc.tar.xz 28-Feb-2019 02:43 812136 +iso.r15878.tar.xz 28-Feb-2019 02:43 15220 +iso.source.r15878.tar.xz 28-Feb-2019 02:43 48644 +iso.source.tar.xz 28-Feb-2019 02:43 48644 +iso.tar.xz 28-Feb-2019 02:43 15220 +iso10303.doc.r15878.tar.xz 28-Feb-2019 02:43 686156 +iso10303.doc.tar.xz 28-Feb-2019 02:43 686156 +iso10303.r15878.tar.xz 28-Feb-2019 02:43 43536 +iso10303.source.r15878.tar.xz 28-Feb-2019 02:43 36244 +iso10303.source.tar.xz 28-Feb-2019 02:43 36244 +iso10303.tar.xz 28-Feb-2019 02:43 43536 +isodate.doc.r16613.tar.xz 28-Feb-2019 02:43 422664 +isodate.doc.tar.xz 28-Feb-2019 02:43 422664 +isodate.r16613.tar.xz 28-Feb-2019 02:43 7208 +isodate.source.r16613.tar.xz 28-Feb-2019 02:43 21048 +isodate.source.tar.xz 28-Feb-2019 02:43 21048 +isodate.tar.xz 28-Feb-2019 02:43 7208 +isodoc.doc.r75787.tar.xz 15-Jul-2025 23:47 712176 +isodoc.doc.tar.xz 15-Jul-2025 23:47 712176 +isodoc.r75787.tar.xz 15-Jul-2025 23:47 9332 +isodoc.source.r75787.tar.xz 15-Jul-2025 23:47 465344 +isodoc.source.tar.xz 15-Jul-2025 23:47 465344 +isodoc.tar.xz 15-Jul-2025 23:47 9332 +isomath.doc.r27654.tar.xz 28-Feb-2019 02:43 643076 +isomath.doc.tar.xz 28-Feb-2019 02:43 643076 +isomath.r27654.tar.xz 28-Feb-2019 02:43 4648 +isomath.tar.xz 28-Feb-2019 02:43 4648 +isonums.doc.r17362.tar.xz 28-Feb-2019 02:43 202564 +isonums.doc.tar.xz 28-Feb-2019 02:43 202564 +isonums.r17362.tar.xz 28-Feb-2019 02:43 2276 +isonums.tar.xz 28-Feb-2019 02:43 2276 +isopt.doc.r45509.tar.xz 28-Feb-2019 02:43 61664 +isopt.doc.tar.xz 28-Feb-2019 02:43 61664 +isopt.r45509.tar.xz 28-Feb-2019 02:43 1168 +isopt.tar.xz 28-Feb-2019 02:43 1168 +isorot.doc.r15878.tar.xz 28-Feb-2019 02:43 122280 +isorot.doc.tar.xz 28-Feb-2019 02:43 122280 +isorot.r15878.tar.xz 28-Feb-2019 02:43 2568 +isorot.source.r15878.tar.xz 28-Feb-2019 02:43 13604 +isorot.source.tar.xz 28-Feb-2019 02:43 13604 +isorot.tar.xz 28-Feb-2019 02:43 2568 +isosigns.doc.r76196.tar.xz 31-Aug-2025 23:49 1163748 +isosigns.doc.tar.xz 31-Aug-2025 23:49 1163748 +isosigns.r76196.tar.xz 31-Aug-2025 23:49 992192 +isosigns.tar.xz 31-Aug-2025 23:49 992192 +isotope.doc.r23711.tar.xz 28-Feb-2019 02:43 520 +isotope.doc.tar.xz 28-Feb-2019 02:43 520 +isotope.r23711.tar.xz 28-Feb-2019 02:43 1168 +isotope.source.r23711.tar.xz 28-Feb-2019 02:43 3076 +isotope.source.tar.xz 28-Feb-2019 02:43 3076 +isotope.tar.xz 28-Feb-2019 02:43 1168 +isphysicalmath.doc.r73239.tar.xz 31-Dec-2024 00:48 112084 +isphysicalmath.doc.tar.xz 31-Dec-2024 00:48 112084 +isphysicalmath.r73239.tar.xz 31-Dec-2024 00:48 3380 +isphysicalmath.source.r73239.tar.xz 31-Dec-2024 00:48 9468 +isphysicalmath.source.tar.xz 31-Dec-2024 00:48 9468 +isphysicalmath.tar.xz 31-Dec-2024 00:48 3380 +issuulinks.doc.r25742.tar.xz 28-Feb-2019 02:43 377392 +issuulinks.doc.tar.xz 28-Feb-2019 02:43 377392 +issuulinks.r25742.tar.xz 28-Feb-2019 02:43 2104 +issuulinks.source.r25742.tar.xz 28-Feb-2019 02:43 4112 +issuulinks.source.tar.xz 28-Feb-2019 02:43 4112 +issuulinks.tar.xz 28-Feb-2019 02:43 2104 +istgame.doc.r62946.tar.xz 05-Apr-2022 23:52 857172 +istgame.doc.tar.xz 05-Apr-2022 23:52 857172 +istgame.r62946.tar.xz 05-Apr-2022 23:52 18292 +istgame.tar.xz 05-Apr-2022 23:52 18292 +itnumpar.doc.r15878.tar.xz 28-Feb-2019 02:43 127252 +itnumpar.doc.tar.xz 28-Feb-2019 02:43 127252 +itnumpar.r15878.tar.xz 28-Feb-2019 02:43 2268 +itnumpar.source.r15878.tar.xz 28-Feb-2019 02:43 8148 +itnumpar.source.tar.xz 28-Feb-2019 02:43 8148 +itnumpar.tar.xz 28-Feb-2019 02:43 2268 +iwona.doc.r19611.tar.xz 28-Feb-2019 02:43 467416 +iwona.doc.tar.xz 28-Feb-2019 02:43 467416 +iwona.r19611.tar.xz 28-Feb-2019 02:43 3901808 +iwona.tar.xz 28-Feb-2019 02:43 3901808 +iwonamath.doc.r71844.tar.xz 19-Jul-2024 23:47 863220 +iwonamath.doc.tar.xz 19-Jul-2024 23:47 863220 +iwonamath.r71844.tar.xz 19-Jul-2024 23:47 2984 +iwonamath.source.r71844.tar.xz 19-Jul-2024 23:47 5108 +iwonamath.source.tar.xz 19-Jul-2024 23:47 5108 +iwonamath.tar.xz 19-Jul-2024 23:47 2984 +jablantile.doc.r16364.tar.xz 28-Feb-2019 02:43 13880 +jablantile.doc.tar.xz 28-Feb-2019 02:43 13880 +jablantile.r16364.tar.xz 28-Feb-2019 02:43 3672 +jablantile.tar.xz 28-Feb-2019 02:43 3672 +jacow.doc.r63060.tar.xz 17-Apr-2022 23:52 264036 +jacow.doc.tar.xz 17-Apr-2022 23:52 264036 +jacow.r63060.tar.xz 17-Apr-2022 23:52 7464 +jacow.tar.xz 17-Apr-2022 23:52 7464 +jadetex.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:43 340 +jadetex.aarch64-linux.tar.xz 28-Feb-2019 02:43 340 +jadetex.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:43 340 +jadetex.amd64-freebsd.tar.xz 28-Feb-2019 02:43 340 +jadetex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:43 340 +jadetex.amd64-netbsd.tar.xz 28-Feb-2019 02:43 340 +jadetex.armhf-linux.r30015.tar.xz 28-Feb-2019 02:43 340 +jadetex.armhf-linux.tar.xz 28-Feb-2019 02:43 340 +jadetex.doc.r71409.tar.xz 02-Jun-2024 23:47 31792 +jadetex.doc.tar.xz 02-Jun-2024 23:47 31792 +jadetex.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:43 340 +jadetex.i386-freebsd.tar.xz 28-Feb-2019 02:43 340 +jadetex.i386-linux.r3006.tar.xz 28-Feb-2019 02:43 340 +jadetex.i386-linux.tar.xz 28-Feb-2019 02:43 340 +jadetex.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:43 340 +jadetex.i386-netbsd.tar.xz 28-Feb-2019 02:43 340 +jadetex.i386-solaris.r8102.tar.xz 28-Feb-2019 02:43 340 +jadetex.i386-solaris.tar.xz 28-Feb-2019 02:43 340 +jadetex.r71409.tar.xz 02-Jun-2024 23:47 29892 +jadetex.source.r71409.tar.xz 02-Jun-2024 23:47 19312 +jadetex.source.tar.xz 02-Jun-2024 23:47 19312 +jadetex.tar.xz 02-Jun-2024 23:47 29892 +jadetex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +jadetex.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +jadetex.windows.r65891.tar.xz 20-Feb-2023 22:12 2384 +jadetex.windows.tar.xz 20-Feb-2023 22:12 2384 +jadetex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:43 344 +jadetex.x86_64-cygwin.tar.xz 28-Feb-2019 02:43 344 +jadetex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:43 348 +jadetex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:43 348 +jadetex.x86_64-linux.r3185.tar.xz 28-Feb-2019 02:43 340 +jadetex.x86_64-linux.tar.xz 28-Feb-2019 02:43 340 +jadetex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:43 348 +jadetex.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:43 348 +jadetex.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:43 344 +jadetex.x86_64-solaris.tar.xz 28-Feb-2019 02:43 344 +jamtimes.doc.r20408.tar.xz 28-Feb-2019 02:43 851028 +jamtimes.doc.tar.xz 28-Feb-2019 02:43 851028 +jamtimes.r20408.tar.xz 28-Feb-2019 02:43 45676 +jamtimes.tar.xz 28-Feb-2019 02:43 45676 +japanese-mathformulas.doc.r64678.tar.xz 10-Oct-2022 23:53 698872 +japanese-mathformulas.doc.tar.xz 10-Oct-2022 23:53 698872 +japanese-mathformulas.r64678.tar.xz 10-Oct-2022 23:53 22132 +japanese-mathformulas.tar.xz 10-Oct-2022 23:53 22132 +japanese-otf.doc.r75887.tar.xz 24-Jul-2025 23:48 62788 +japanese-otf.doc.tar.xz 24-Jul-2025 23:48 62788 +japanese-otf.r75887.tar.xz 24-Jul-2025 23:48 258604 +japanese-otf.source.r75887.tar.xz 24-Jul-2025 23:48 75152 +japanese-otf.source.tar.xz 24-Jul-2025 23:48 75152 +japanese-otf.tar.xz 24-Jul-2025 23:48 258604 +jbact.r52717.tar.xz 12-Nov-2019 00:54 9792 +jbact.tar.xz 12-Nov-2019 00:54 9792 +jetbrainsmono-otf.doc.r73401.tar.xz 11-Jan-2025 00:49 152088 +jetbrainsmono-otf.doc.tar.xz 11-Jan-2025 00:49 152088 +jetbrainsmono-otf.r73401.tar.xz 11-Jan-2025 00:49 691600 +jetbrainsmono-otf.tar.xz 11-Jan-2025 00:49 691600 +jeuxcartes.doc.r76117.tar.xz 22-Aug-2025 23:51 7966124 +jeuxcartes.doc.tar.xz 22-Aug-2025 23:51 7966124 +jeuxcartes.r76117.tar.xz 22-Aug-2025 23:51 6720012 +jeuxcartes.tar.xz 22-Aug-2025 23:51 6720012 +jfmutil.aarch64-linux.r46228.tar.xz 28-Feb-2019 02:45 340 +jfmutil.aarch64-linux.tar.xz 28-Feb-2019 02:45 340 +jfmutil.amd64-freebsd.r44835.tar.xz 28-Feb-2019 02:45 340 +jfmutil.amd64-freebsd.tar.xz 28-Feb-2019 02:45 340 +jfmutil.amd64-netbsd.r44835.tar.xz 28-Feb-2019 02:45 340 +jfmutil.amd64-netbsd.tar.xz 28-Feb-2019 02:45 340 +jfmutil.armhf-linux.r44835.tar.xz 28-Feb-2019 02:45 340 +jfmutil.armhf-linux.tar.xz 28-Feb-2019 02:45 340 +jfmutil.doc.r60987.tar.xz 08-Nov-2021 00:53 9660 +jfmutil.doc.tar.xz 08-Nov-2021 00:53 9660 +jfmutil.i386-freebsd.r44835.tar.xz 28-Feb-2019 02:45 340 +jfmutil.i386-freebsd.tar.xz 28-Feb-2019 02:45 340 +jfmutil.i386-linux.r44835.tar.xz 28-Feb-2019 02:45 340 +jfmutil.i386-linux.tar.xz 28-Feb-2019 02:45 340 +jfmutil.i386-netbsd.r44835.tar.xz 28-Feb-2019 02:45 340 +jfmutil.i386-netbsd.tar.xz 28-Feb-2019 02:45 340 +jfmutil.i386-solaris.r44835.tar.xz 28-Feb-2019 02:45 340 +jfmutil.i386-solaris.tar.xz 28-Feb-2019 02:45 340 +jfmutil.r60987.tar.xz 08-Nov-2021 00:53 25788 +jfmutil.tar.xz 08-Nov-2021 00:53 25788 +jfmutil.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +jfmutil.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +jfmutil.windows.r65891.tar.xz 20-Feb-2023 22:12 2308 +jfmutil.windows.tar.xz 20-Feb-2023 22:12 2308 +jfmutil.x86_64-cygwin.r44835.tar.xz 28-Feb-2019 02:45 344 +jfmutil.x86_64-cygwin.tar.xz 28-Feb-2019 02:45 344 +jfmutil.x86_64-darwinlegacy.r44835.tar.xz 28-Feb-2019 02:45 348 +jfmutil.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:45 348 +jfmutil.x86_64-linux.r44835.tar.xz 28-Feb-2019 02:45 340 +jfmutil.x86_64-linux.tar.xz 28-Feb-2019 02:45 340 +jfmutil.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:45 344 +jfmutil.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:45 344 +jfmutil.x86_64-solaris.r44835.tar.xz 28-Feb-2019 02:45 340 +jfmutil.x86_64-solaris.tar.xz 28-Feb-2019 02:45 340 +jieeetran.doc.r65642.tar.xz 28-Jan-2023 00:54 153340 +jieeetran.doc.tar.xz 28-Jan-2023 00:54 153340 +jieeetran.r65642.tar.xz 28-Jan-2023 00:54 17708 +jieeetran.tar.xz 28-Jan-2023 00:54 17708 +jigsaw.doc.r71923.tar.xz 28-Jul-2024 23:46 149580 +jigsaw.doc.tar.xz 28-Jul-2024 23:46 149580 +jigsaw.r71923.tar.xz 28-Jul-2024 23:46 1812 +jigsaw.tar.xz 28-Jul-2024 23:46 1812 +jkmath.doc.r47109.tar.xz 28-Feb-2019 02:45 128124 +jkmath.doc.tar.xz 28-Feb-2019 02:45 128124 +jkmath.r47109.tar.xz 28-Feb-2019 02:45 1636 +jkmath.tar.xz 28-Feb-2019 02:45 1636 +jknapltx.doc.r19440.tar.xz 28-Feb-2019 02:45 3252 +jknapltx.doc.tar.xz 28-Feb-2019 02:45 3252 +jknapltx.r19440.tar.xz 28-Feb-2019 02:45 9096 +jknapltx.tar.xz 28-Feb-2019 02:45 9096 +jlabels.doc.r24858.tar.xz 28-Feb-2019 02:45 27008 +jlabels.doc.tar.xz 28-Feb-2019 02:45 27008 +jlabels.r24858.tar.xz 28-Feb-2019 02:45 1564 +jlabels.tar.xz 28-Feb-2019 02:45 1564 +jlreq-deluxe.doc.r69961.tar.xz 19-Feb-2024 17:47 66496 +jlreq-deluxe.doc.tar.xz 19-Feb-2024 17:47 66496 +jlreq-deluxe.r69961.tar.xz 19-Feb-2024 17:47 22328 +jlreq-deluxe.tar.xz 19-Feb-2024 17:47 22328 +jlreq.doc.r74652.tar.xz 17-Mar-2025 00:50 596856 +jlreq.doc.tar.xz 17-Mar-2025 00:50 596856 +jlreq.r74652.tar.xz 17-Mar-2025 00:50 107376 +jlreq.source.r74652.tar.xz 17-Mar-2025 00:50 8408 +jlreq.source.tar.xz 17-Mar-2025 00:50 8408 +jlreq.tar.xz 17-Mar-2025 00:50 107376 +jmb.r52718.tar.xz 12-Nov-2019 00:54 10072 +jmb.tar.xz 12-Nov-2019 00:54 10072 +jmlr.doc.r61957.tar.xz 10-Feb-2022 00:55 965184 +jmlr.doc.tar.xz 10-Feb-2022 00:55 965184 +jmlr.r61957.tar.xz 10-Feb-2022 00:55 17520 +jmlr.source.r61957.tar.xz 10-Feb-2022 00:55 42432 +jmlr.source.tar.xz 10-Feb-2022 00:55 42432 +jmlr.tar.xz 10-Feb-2022 00:55 17520 +jmn.r45751.tar.xz 28-Feb-2019 02:45 40048 +jmn.tar.xz 28-Feb-2019 02:45 40048 +jmsdelim.doc.r62630.tar.xz 12-Mar-2022 00:50 402864 +jmsdelim.doc.tar.xz 12-Mar-2022 00:50 402864 +jmsdelim.r62630.tar.xz 12-Mar-2022 00:50 2268 +jmsdelim.source.r62630.tar.xz 12-Mar-2022 00:50 5692 +jmsdelim.source.tar.xz 12-Mar-2022 00:50 5692 +jmsdelim.tar.xz 12-Mar-2022 00:50 2268 +jneurosci.doc.r17346.tar.xz 28-Feb-2019 02:45 237620 +jneurosci.doc.tar.xz 28-Feb-2019 02:45 237620 +jneurosci.r17346.tar.xz 28-Feb-2019 02:45 6560 +jneurosci.tar.xz 28-Feb-2019 02:45 6560 +jnuexam.doc.r71883.tar.xz 23-Jul-2024 23:47 601300 +jnuexam.doc.tar.xz 23-Jul-2024 23:47 601300 +jnuexam.r71883.tar.xz 23-Jul-2024 23:47 5168 +jnuexam.tar.xz 23-Jul-2024 23:47 5168 +jobname-suffix.doc.r64797.tar.xz 23-Oct-2022 23:55 440628 +jobname-suffix.doc.tar.xz 23-Oct-2022 23:55 440628 +jobname-suffix.r64797.tar.xz 23-Oct-2022 23:55 1756 +jobname-suffix.tar.xz 23-Oct-2022 23:55 1756 +joinbox.doc.r72239.tar.xz 09-Sep-2024 23:47 583240 +joinbox.doc.tar.xz 09-Sep-2024 23:47 583240 +joinbox.r72239.tar.xz 09-Sep-2024 23:47 3784 +joinbox.tar.xz 09-Sep-2024 23:47 3784 +josefin.doc.r64569.tar.xz 01-Oct-2022 23:56 173116 +josefin.doc.tar.xz 01-Oct-2022 23:56 173116 +josefin.r64569.tar.xz 01-Oct-2022 23:56 1097100 +josefin.tar.xz 01-Oct-2022 23:56 1097100 +jourcl.doc.r65290.tar.xz 17-Dec-2022 00:56 117948 +jourcl.doc.tar.xz 17-Dec-2022 00:56 117948 +jourcl.r65290.tar.xz 17-Dec-2022 00:56 3024 +jourcl.tar.xz 17-Dec-2022 00:56 3024 +jourrr.doc.r68556.tar.xz 15-Oct-2023 23:45 103692 +jourrr.doc.tar.xz 15-Oct-2023 23:45 103692 +jourrr.r68556.tar.xz 15-Oct-2023 23:45 2820 +jourrr.tar.xz 15-Oct-2023 23:45 2820 +jpneduenumerate.doc.r72898.tar.xz 20-Nov-2024 00:46 162368 +jpneduenumerate.doc.tar.xz 20-Nov-2024 00:46 162368 +jpneduenumerate.r72898.tar.xz 20-Nov-2024 00:46 2768 +jpneduenumerate.tar.xz 20-Nov-2024 00:46 2768 +jpnedumathsymbols.doc.r72959.tar.xz 25-Nov-2024 00:46 339088 +jpnedumathsymbols.doc.tar.xz 25-Nov-2024 00:46 339088 +jpnedumathsymbols.r72959.tar.xz 25-Nov-2024 00:46 5272 +jpnedumathsymbols.tar.xz 25-Nov-2024 00:46 5272 +jpsj.doc.r66115.tar.xz 24-Feb-2023 00:59 150364 +jpsj.doc.tar.xz 24-Feb-2023 00:59 150364 +jpsj.r66115.tar.xz 24-Feb-2023 00:59 7216 +jpsj.tar.xz 24-Feb-2023 00:59 7216 +js-misc.doc.r16211.tar.xz 28-Feb-2019 02:45 18444 +js-misc.doc.tar.xz 28-Feb-2019 02:45 18444 +js-misc.r16211.tar.xz 28-Feb-2019 02:45 13868 +js-misc.tar.xz 28-Feb-2019 02:45 13868 +jsclasses.doc.r75174.tar.xz 11-May-2025 23:51 814156 +jsclasses.doc.tar.xz 11-May-2025 23:51 814156 +jsclasses.r75174.tar.xz 11-May-2025 23:51 21860 +jsclasses.source.r75174.tar.xz 11-May-2025 23:51 57204 +jsclasses.source.tar.xz 11-May-2025 23:51 57204 +jsclasses.tar.xz 11-May-2025 23:51 21860 +jslectureplanner.doc.r73640.tar.xz 30-Jan-2025 00:48 1221248 +jslectureplanner.doc.tar.xz 30-Jan-2025 00:48 1221248 +jslectureplanner.r73640.tar.xz 30-Jan-2025 00:48 13632 +jslectureplanner.tar.xz 30-Jan-2025 00:48 13632 +jsonparse.doc.r76161.tar.xz 27-Aug-2025 23:49 224676 +jsonparse.doc.tar.xz 27-Aug-2025 23:49 224676 +jsonparse.r76161.tar.xz 27-Aug-2025 23:49 8624 +jsonparse.tar.xz 27-Aug-2025 23:49 8624 +juliamono.doc.r75712.tar.xz 07-Jul-2025 23:50 2035728 +juliamono.doc.tar.xz 07-Jul-2025 23:50 2035728 +juliamono.r75712.tar.xz 07-Jul-2025 23:50 6868784 +juliamono.tar.xz 07-Jul-2025 23:50 6868784 +jumplines.doc.r37553.tar.xz 28-Feb-2019 02:45 254168 +jumplines.doc.tar.xz 28-Feb-2019 02:45 254168 +jumplines.r37553.tar.xz 28-Feb-2019 02:45 4036 +jumplines.tar.xz 28-Feb-2019 02:45 4036 +junicode.doc.r76210.tar.xz 01-Sep-2025 23:46 2261472 +junicode.doc.tar.xz 01-Sep-2025 23:46 2261472 +junicode.r76210.tar.xz 01-Sep-2025 23:46 80941532 +junicode.tar.xz 01-Sep-2025 23:46 80941532 +junicodevf.doc.r76209.tar.xz 01-Sep-2025 23:46 2369256 +junicodevf.doc.tar.xz 01-Sep-2025 23:46 2369256 +junicodevf.r76209.tar.xz 01-Sep-2025 23:46 2240192 +junicodevf.tar.xz 01-Sep-2025 23:46 2240192 +jupynotex.doc.r75037.tar.xz 27-Apr-2025 23:48 6124 +jupynotex.doc.tar.xz 27-Apr-2025 23:48 6124 +jupynotex.r75037.tar.xz 27-Apr-2025 23:48 5684 +jupynotex.tar.xz 27-Apr-2025 23:48 5684 +jura.doc.r15878.tar.xz 28-Feb-2019 02:45 216560 +jura.doc.tar.xz 28-Feb-2019 02:45 216560 +jura.r15878.tar.xz 28-Feb-2019 02:45 4016 +jura.source.r15878.tar.xz 28-Feb-2019 02:45 17700 +jura.source.tar.xz 28-Feb-2019 02:45 17700 +jura.tar.xz 28-Feb-2019 02:45 4016 +juraabbrev.doc.r15878.tar.xz 28-Feb-2019 02:45 447500 +juraabbrev.doc.tar.xz 28-Feb-2019 02:45 447500 +juraabbrev.r15878.tar.xz 28-Feb-2019 02:45 3248 +juraabbrev.source.r15878.tar.xz 28-Feb-2019 02:45 15500 +juraabbrev.source.tar.xz 28-Feb-2019 02:45 15500 +juraabbrev.tar.xz 28-Feb-2019 02:45 3248 +jurabib.doc.r15878.tar.xz 28-Feb-2019 02:45 651904 +jurabib.doc.tar.xz 28-Feb-2019 02:45 651904 +jurabib.r15878.tar.xz 28-Feb-2019 02:45 51660 +jurabib.source.r15878.tar.xz 28-Feb-2019 02:45 61896 +jurabib.source.tar.xz 28-Feb-2019 02:45 61896 +jurabib.tar.xz 28-Feb-2019 02:45 51660 +juramisc.doc.r15878.tar.xz 28-Feb-2019 02:45 1142256 +juramisc.doc.tar.xz 28-Feb-2019 02:45 1142256 +juramisc.r15878.tar.xz 28-Feb-2019 02:45 24848 +juramisc.tar.xz 28-Feb-2019 02:45 24848 +jurarsp.doc.r15878.tar.xz 28-Feb-2019 02:45 121072 +jurarsp.doc.tar.xz 28-Feb-2019 02:45 121072 +jurarsp.r15878.tar.xz 28-Feb-2019 02:45 9464 +jurarsp.source.r15878.tar.xz 28-Feb-2019 02:45 26216 +jurarsp.source.tar.xz 28-Feb-2019 02:45 26216 +jurarsp.tar.xz 28-Feb-2019 02:45 9464 +jvlisting.doc.r24638.tar.xz 28-Feb-2019 02:45 197100 +jvlisting.doc.tar.xz 28-Feb-2019 02:45 197100 +jvlisting.r24638.tar.xz 28-Feb-2019 02:45 2552 +jvlisting.source.r24638.tar.xz 28-Feb-2019 02:45 6744 +jvlisting.source.tar.xz 28-Feb-2019 02:45 6744 +jvlisting.tar.xz 28-Feb-2019 02:45 2552 +jwjournal.doc.r75735.tar.xz 10-Jul-2025 23:50 247412 +jwjournal.doc.tar.xz 10-Jul-2025 23:50 247412 +jwjournal.r75735.tar.xz 10-Jul-2025 23:50 4408 +jwjournal.tar.xz 10-Jul-2025 23:50 4408 +kalendarium.doc.r48744.tar.xz 28-Feb-2019 02:45 365480 +kalendarium.doc.tar.xz 28-Feb-2019 02:45 365480 +kalendarium.r48744.tar.xz 28-Feb-2019 02:45 3540 +kalendarium.source.r48744.tar.xz 28-Feb-2019 02:45 16432 +kalendarium.source.tar.xz 28-Feb-2019 02:45 16432 +kalendarium.tar.xz 28-Feb-2019 02:45 3540 +kanaparser.doc.r48052.tar.xz 28-Feb-2019 02:45 367048 +kanaparser.doc.tar.xz 28-Feb-2019 02:45 367048 +kanaparser.r48052.tar.xz 28-Feb-2019 02:45 4620 +kanaparser.tar.xz 28-Feb-2019 02:45 4620 +kanbun.doc.r74674.tar.xz 18-Mar-2025 00:50 706156 +kanbun.doc.tar.xz 18-Mar-2025 00:50 706156 +kanbun.r74674.tar.xz 18-Mar-2025 00:50 6184 +kanbun.tar.xz 18-Mar-2025 00:50 6184 +kantlipsum.doc.r68983.tar.xz 28-Nov-2023 00:44 645740 +kantlipsum.doc.tar.xz 28-Nov-2023 00:44 645740 +kantlipsum.r68983.tar.xz 28-Nov-2023 00:44 23984 +kantlipsum.source.r68983.tar.xz 28-Nov-2023 00:44 27636 +kantlipsum.source.tar.xz 28-Nov-2023 00:44 27636 +kantlipsum.tar.xz 28-Nov-2023 00:44 23984 +karnaugh-map.doc.r61614.tar.xz 16-Jan-2022 00:52 287964 +karnaugh-map.doc.tar.xz 16-Jan-2022 00:52 287964 +karnaugh-map.r61614.tar.xz 16-Jan-2022 00:52 6116 +karnaugh-map.source.r61614.tar.xz 16-Jan-2022 00:52 9980 +karnaugh-map.source.tar.xz 16-Jan-2022 00:52 9980 +karnaugh-map.tar.xz 16-Jan-2022 00:52 6116 +karnaugh.doc.r21338.tar.xz 28-Feb-2019 02:45 142148 +karnaugh.doc.tar.xz 28-Feb-2019 02:45 142148 +karnaugh.r21338.tar.xz 28-Feb-2019 02:45 4420 +karnaugh.tar.xz 28-Feb-2019 02:45 4420 +karnaughmap.doc.r36989.tar.xz 28-Feb-2019 02:45 323304 +karnaughmap.doc.tar.xz 28-Feb-2019 02:45 323304 +karnaughmap.r36989.tar.xz 28-Feb-2019 02:45 3320 +karnaughmap.source.r36989.tar.xz 28-Feb-2019 02:45 11192 +karnaughmap.source.tar.xz 28-Feb-2019 02:45 11192 +karnaughmap.tar.xz 28-Feb-2019 02:45 3320 +kastrup.doc.r15878.tar.xz 28-Feb-2019 02:45 139420 +kastrup.doc.tar.xz 28-Feb-2019 02:45 139420 +kastrup.r15878.tar.xz 28-Feb-2019 02:45 1388 +kastrup.source.r15878.tar.xz 28-Feb-2019 02:45 7392 +kastrup.source.tar.xz 28-Feb-2019 02:45 7392 +kastrup.tar.xz 28-Feb-2019 02:45 1388 +kaytannollista-latexia.doc.r73292.tar.xz 04-Jan-2025 00:47 1050500 +kaytannollista-latexia.doc.tar.xz 04-Jan-2025 00:47 1050500 +kaytannollista-latexia.r73292.tar.xz 04-Jan-2025 00:47 596 +kaytannollista-latexia.tar.xz 04-Jan-2025 00:47 596 +kblocks.doc.r57617.tar.xz 05-Feb-2021 00:57 339680 +kblocks.doc.tar.xz 05-Feb-2021 00:57 339680 +kblocks.r57617.tar.xz 05-Feb-2021 00:57 8140 +kblocks.tar.xz 05-Feb-2021 00:57 8140 +kdgdocs.doc.r24498.tar.xz 28-Feb-2019 02:45 718580 +kdgdocs.doc.tar.xz 28-Feb-2019 02:45 718580 +kdgdocs.r24498.tar.xz 28-Feb-2019 02:45 3640 +kdgdocs.source.r24498.tar.xz 28-Feb-2019 02:45 10436 +kdgdocs.source.tar.xz 28-Feb-2019 02:45 10436 +kdgdocs.tar.xz 28-Feb-2019 02:45 3640 +kdpcover.doc.r74392.tar.xz 03-Mar-2025 00:51 355184 +kdpcover.doc.tar.xz 03-Mar-2025 00:51 355184 +kdpcover.r74392.tar.xz 03-Mar-2025 00:51 23184 +kdpcover.source.r74392.tar.xz 03-Mar-2025 00:51 5140 +kdpcover.source.tar.xz 03-Mar-2025 00:51 5140 +kdpcover.tar.xz 03-Mar-2025 00:51 23184 +keisennote.doc.r76336.tar.xz 17-Sep-2025 23:50 108912 +keisennote.doc.tar.xz 17-Sep-2025 23:50 108912 +keisennote.r76336.tar.xz 17-Sep-2025 23:50 1888 +keisennote.tar.xz 17-Sep-2025 23:50 1888 +kerkis.doc.r56271.tar.xz 05-Sep-2020 23:56 2496 +kerkis.doc.tar.xz 05-Sep-2020 23:56 2496 +kerkis.r56271.tar.xz 05-Sep-2020 23:56 2015492 +kerkis.tar.xz 05-Sep-2020 23:56 2015492 +kerntest.doc.r15878.tar.xz 28-Feb-2019 02:45 627468 +kerntest.doc.tar.xz 28-Feb-2019 02:45 627468 +kerntest.r15878.tar.xz 28-Feb-2019 02:45 11356 +kerntest.source.r15878.tar.xz 28-Feb-2019 02:45 32176 +kerntest.source.tar.xz 28-Feb-2019 02:45 32176 +kerntest.tar.xz 28-Feb-2019 02:45 11356 +ketcindy.aarch64-linux.r49033.tar.xz 28-Feb-2019 02:45 340 +ketcindy.aarch64-linux.tar.xz 28-Feb-2019 02:45 340 +ketcindy.amd64-freebsd.r49033.tar.xz 28-Feb-2019 02:45 344 +ketcindy.amd64-freebsd.tar.xz 28-Feb-2019 02:45 344 +ketcindy.amd64-netbsd.r49033.tar.xz 28-Feb-2019 02:45 344 +ketcindy.amd64-netbsd.tar.xz 28-Feb-2019 02:45 344 +ketcindy.armhf-linux.r49033.tar.xz 28-Feb-2019 02:45 344 +ketcindy.armhf-linux.tar.xz 28-Feb-2019 02:45 344 +ketcindy.doc.r58661.tar.xz 23-Mar-2021 18:31 14292908 +ketcindy.doc.tar.xz 23-Mar-2021 18:31 14292908 +ketcindy.i386-freebsd.r49033.tar.xz 28-Feb-2019 02:45 344 +ketcindy.i386-freebsd.tar.xz 28-Feb-2019 02:45 344 +ketcindy.i386-linux.r49033.tar.xz 28-Feb-2019 02:45 340 +ketcindy.i386-linux.tar.xz 28-Feb-2019 02:45 340 +ketcindy.i386-netbsd.r49033.tar.xz 28-Feb-2019 02:45 340 +ketcindy.i386-netbsd.tar.xz 28-Feb-2019 02:45 340 +ketcindy.i386-solaris.r49033.tar.xz 28-Feb-2019 02:45 340 +ketcindy.i386-solaris.tar.xz 28-Feb-2019 02:45 340 +ketcindy.r58661.tar.xz 23-Mar-2021 18:31 2528836 +ketcindy.tar.xz 23-Mar-2021 18:31 2528836 +ketcindy.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +ketcindy.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +ketcindy.windows.r65891.tar.xz 20-Feb-2023 22:12 2308 +ketcindy.windows.tar.xz 20-Feb-2023 22:12 2308 +ketcindy.x86_64-cygwin.r49033.tar.xz 28-Feb-2019 02:45 344 +ketcindy.x86_64-cygwin.tar.xz 28-Feb-2019 02:45 344 +ketcindy.x86_64-darwinlegacy.r49033.tar.xz 28-Feb-2019 02:45 352 +ketcindy.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:45 352 +ketcindy.x86_64-linux.r49033.tar.xz 28-Feb-2019 02:45 344 +ketcindy.x86_64-linux.tar.xz 28-Feb-2019 02:45 344 +ketcindy.x86_64-linuxmusl.r49033.tar.xz 28-Feb-2019 02:45 348 +ketcindy.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:45 348 +ketcindy.x86_64-solaris.r49033.tar.xz 28-Feb-2019 02:45 344 +ketcindy.x86_64-solaris.tar.xz 28-Feb-2019 02:45 344 +keycommand.doc.r18042.tar.xz 28-Feb-2019 02:45 343996 +keycommand.doc.tar.xz 28-Feb-2019 02:45 343996 +keycommand.r18042.tar.xz 28-Feb-2019 02:45 4904 +keycommand.source.r18042.tar.xz 28-Feb-2019 02:45 15252 +keycommand.source.tar.xz 28-Feb-2019 02:45 15252 +keycommand.tar.xz 28-Feb-2019 02:45 4904 +keyfloat.doc.r69399.tar.xz 13-Jan-2024 00:46 1052904 +keyfloat.doc.tar.xz 13-Jan-2024 00:46 1052904 +keyfloat.r69399.tar.xz 13-Jan-2024 00:46 7108 +keyfloat.source.r69399.tar.xz 13-Jan-2024 00:46 31332 +keyfloat.source.tar.xz 13-Jan-2024 00:46 31332 +keyfloat.tar.xz 13-Jan-2024 00:46 7108 +keyindex.doc.r50828.tar.xz 06-Apr-2019 23:38 146072 +keyindex.doc.tar.xz 06-Apr-2019 23:38 146072 +keyindex.r50828.tar.xz 06-Apr-2019 23:38 1388 +keyindex.source.r50828.tar.xz 06-Apr-2019 23:38 3464 +keyindex.source.tar.xz 06-Apr-2019 23:38 3464 +keyindex.tar.xz 06-Apr-2019 23:38 1388 +keyparse.doc.r60277.tar.xz 19-Aug-2021 23:52 560836 +keyparse.doc.tar.xz 19-Aug-2021 23:52 560836 +keyparse.r60277.tar.xz 19-Aug-2021 23:52 1620 +keyparse.source.r60277.tar.xz 19-Aug-2021 23:52 4836 +keyparse.source.tar.xz 19-Aug-2021 23:52 4836 +keyparse.tar.xz 19-Aug-2021 23:52 1620 +keyreader.doc.r28195.tar.xz 28-Feb-2019 02:45 233148 +keyreader.doc.tar.xz 28-Feb-2019 02:45 233148 +keyreader.r28195.tar.xz 28-Feb-2019 02:45 9192 +keyreader.tar.xz 28-Feb-2019 02:45 9192 +keystroke.doc.r17992.tar.xz 28-Feb-2019 02:45 33556 +keystroke.doc.tar.xz 28-Feb-2019 02:45 33556 +keystroke.r17992.tar.xz 28-Feb-2019 02:45 6820 +keystroke.tar.xz 28-Feb-2019 02:45 6820 +keytheorems.doc.r76335.tar.xz 17-Sep-2025 23:50 231316 +keytheorems.doc.tar.xz 17-Sep-2025 23:50 231316 +keytheorems.r76335.tar.xz 17-Sep-2025 23:50 23236 +keytheorems.tar.xz 17-Sep-2025 23:50 23236 +keyval2e.doc.r23698.tar.xz 28-Feb-2019 02:45 314328 +keyval2e.doc.tar.xz 28-Feb-2019 02:45 314328 +keyval2e.r23698.tar.xz 28-Feb-2019 02:45 3228 +keyval2e.tar.xz 28-Feb-2019 02:45 3228 +keyvaltable.doc.r65416.tar.xz 01-Jan-2023 01:01 902524 +keyvaltable.doc.tar.xz 01-Jan-2023 01:01 902524 +keyvaltable.r65416.tar.xz 01-Jan-2023 01:01 10088 +keyvaltable.source.r65416.tar.xz 01-Jan-2023 01:01 42384 +keyvaltable.source.tar.xz 01-Jan-2023 01:01 42384 +keyvaltable.tar.xz 01-Jan-2023 01:01 10088 +kfupm-math-exam.doc.r63977.tar.xz 25-Jul-2022 23:53 63204 +kfupm-math-exam.doc.tar.xz 25-Jul-2022 23:53 63204 +kfupm-math-exam.r63977.tar.xz 25-Jul-2022 23:53 4120 +kfupm-math-exam.source.r63977.tar.xz 25-Jul-2022 23:53 4852 +kfupm-math-exam.source.tar.xz 25-Jul-2022 23:53 4852 +kfupm-math-exam.tar.xz 25-Jul-2022 23:53 4120 +khatalmaqala.doc.r68280.tar.xz 14-Sep-2023 23:45 79908 +khatalmaqala.doc.tar.xz 14-Sep-2023 23:45 79908 +khatalmaqala.r68280.tar.xz 14-Sep-2023 23:45 234716 +khatalmaqala.tar.xz 14-Sep-2023 23:45 234716 +kinematikz.doc.r61392.tar.xz 24-Dec-2021 00:53 1260 +kinematikz.doc.tar.xz 24-Dec-2021 00:53 1260 +kinematikz.r61392.tar.xz 24-Dec-2021 00:53 23308 +kinematikz.tar.xz 24-Dec-2021 00:53 23308 +kix.doc.r21606.tar.xz 28-Feb-2019 02:45 123796 +kix.doc.tar.xz 28-Feb-2019 02:45 123796 +kix.r21606.tar.xz 28-Feb-2019 02:45 1304 +kix.tar.xz 28-Feb-2019 02:45 1304 +kixfont.doc.r18488.tar.xz 28-Feb-2019 02:45 15960 +kixfont.doc.tar.xz 28-Feb-2019 02:45 15960 +kixfont.r18488.tar.xz 28-Feb-2019 02:45 1828 +kixfont.tar.xz 28-Feb-2019 02:45 1828 +kluwer.doc.r54074.tar.xz 04-Mar-2020 22:51 61516 +kluwer.doc.tar.xz 04-Mar-2020 22:51 61516 +kluwer.r54074.tar.xz 04-Mar-2020 22:51 53524 +kluwer.source.r54074.tar.xz 04-Mar-2020 22:51 2016 +kluwer.source.tar.xz 04-Mar-2020 22:51 2016 +kluwer.tar.xz 04-Mar-2020 22:51 53524 +knitting.doc.r50782.tar.xz 06-Apr-2019 21:33 815812 +knitting.doc.tar.xz 06-Apr-2019 21:33 815812 +knitting.r50782.tar.xz 06-Apr-2019 21:33 578004 +knitting.tar.xz 06-Apr-2019 21:33 578004 +knittingpattern.doc.r17205.tar.xz 28-Feb-2019 02:45 136792 +knittingpattern.doc.tar.xz 28-Feb-2019 02:45 136792 +knittingpattern.r17205.tar.xz 28-Feb-2019 02:45 1540 +knittingpattern.tar.xz 28-Feb-2019 02:45 1540 +knowledge.doc.r75175.tar.xz 11-May-2025 23:51 819388 +knowledge.doc.tar.xz 11-May-2025 23:51 819388 +knowledge.r75175.tar.xz 11-May-2025 23:51 22892 +knowledge.source.r75175.tar.xz 11-May-2025 23:51 42696 +knowledge.source.tar.xz 11-May-2025 23:51 42696 +knowledge.tar.xz 11-May-2025 23:51 22892 +knuth-errata.doc.r58682.tar.xz 24-Mar-2021 22:55 266192 +knuth-errata.doc.tar.xz 24-Mar-2021 22:55 266192 +knuth-errata.r58682.tar.xz 24-Mar-2021 22:55 444 +knuth-errata.tar.xz 24-Mar-2021 22:55 444 +knuth-hint.doc.r74654.tar.xz 17-Mar-2025 00:50 15538132 +knuth-hint.doc.tar.xz 17-Mar-2025 00:50 15538132 +knuth-hint.r74654.tar.xz 17-Mar-2025 00:50 880 +knuth-hint.tar.xz 17-Mar-2025 00:50 880 +knuth-lib.r57963.tar.xz 27-Feb-2021 00:28 30508 +knuth-lib.tar.xz 27-Feb-2021 00:28 30508 +knuth-local.r57963.tar.xz 27-Feb-2021 00:28 23156 +knuth-local.tar.xz 27-Feb-2021 00:28 23156 +knuth-pdf.doc.r74653.tar.xz 17-Mar-2025 00:50 52591608 +knuth-pdf.doc.tar.xz 17-Mar-2025 00:50 52591608 +knuth-pdf.r74653.tar.xz 17-Mar-2025 00:50 856 +knuth-pdf.tar.xz 17-Mar-2025 00:50 856 +koma-moderncvclassic.doc.r25025.tar.xz 28-Feb-2019 02:46 191168 +koma-moderncvclassic.doc.tar.xz 28-Feb-2019 02:46 191168 +koma-moderncvclassic.r25025.tar.xz 28-Feb-2019 02:46 3972 +koma-moderncvclassic.tar.xz 28-Feb-2019 02:46 3972 +koma-script-examples.doc.r63833.tar.xz 07-Jul-2022 23:55 563260 +koma-script-examples.doc.tar.xz 07-Jul-2022 23:55 563260 +koma-script-examples.r63833.tar.xz 07-Jul-2022 23:55 516 +koma-script-examples.tar.xz 07-Jul-2022 23:55 516 +koma-script-sfs.doc.r26137.tar.xz 28-Feb-2019 02:46 37524 +koma-script-sfs.doc.tar.xz 28-Feb-2019 02:46 37524 +koma-script-sfs.r26137.tar.xz 28-Feb-2019 02:46 3400 +koma-script-sfs.tar.xz 28-Feb-2019 02:46 3400 +koma-script.r76264.tar.xz 09-Sep-2025 23:50 7009244 +koma-script.tar.xz 09-Sep-2025 23:50 7009244 +komacv-rg.doc.r49064.tar.xz 28-Feb-2019 02:46 856680 +komacv-rg.doc.tar.xz 28-Feb-2019 02:46 856680 +komacv-rg.r49064.tar.xz 28-Feb-2019 02:46 3308 +komacv-rg.source.r49064.tar.xz 28-Feb-2019 02:46 14452 +komacv-rg.source.tar.xz 28-Feb-2019 02:46 14452 +komacv-rg.tar.xz 28-Feb-2019 02:46 3308 +komacv.doc.r57721.tar.xz 13-Feb-2021 00:57 460496 +komacv.doc.tar.xz 13-Feb-2021 00:57 460496 +komacv.r57721.tar.xz 13-Feb-2021 00:57 7252 +komacv.source.r57721.tar.xz 13-Feb-2021 00:57 19112 +komacv.source.tar.xz 13-Feb-2021 00:57 19112 +komacv.tar.xz 13-Feb-2021 00:57 7252 +korigamik.doc.r71991.tar.xz 07-Aug-2024 23:47 122504 +korigamik.doc.tar.xz 07-Aug-2024 23:47 122504 +korigamik.r71991.tar.xz 07-Aug-2024 23:47 3348 +korigamik.tar.xz 07-Aug-2024 23:47 3348 +kotex-oblivoir.doc.r75840.tar.xz 20-Jul-2025 23:49 858724 +kotex-oblivoir.doc.tar.xz 20-Jul-2025 23:49 858724 +kotex-oblivoir.r75840.tar.xz 20-Jul-2025 23:49 46452 +kotex-oblivoir.tar.xz 20-Jul-2025 23:49 46452 +kotex-plain.doc.r63689.tar.xz 22-Jun-2022 23:53 1852 +kotex-plain.doc.tar.xz 22-Jun-2022 23:53 1852 +kotex-plain.r63689.tar.xz 22-Jun-2022 23:53 9116 +kotex-plain.tar.xz 22-Jun-2022 23:53 9116 +kotex-utf.doc.r63690.tar.xz 22-Jun-2022 23:53 9496848 +kotex-utf.doc.tar.xz 22-Jun-2022 23:53 9496848 +kotex-utf.r63690.tar.xz 22-Jun-2022 23:54 21076 +kotex-utf.tar.xz 22-Jun-2022 23:54 21076 +kotex-utils.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.aarch64-linux.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.amd64-freebsd.r32101.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.amd64-freebsd.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.amd64-netbsd.r32101.tar.xz 28-Feb-2019 02:46 412 +kotex-utils.amd64-netbsd.tar.xz 28-Feb-2019 02:46 412 +kotex-utils.armhf-linux.r32101.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.armhf-linux.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.doc.r38727.tar.xz 28-Feb-2019 02:46 45472 +kotex-utils.doc.tar.xz 28-Feb-2019 02:46 45472 +kotex-utils.i386-freebsd.r32101.tar.xz 28-Feb-2019 02:46 412 +kotex-utils.i386-freebsd.tar.xz 28-Feb-2019 02:46 412 +kotex-utils.i386-linux.r32101.tar.xz 28-Feb-2019 02:46 412 +kotex-utils.i386-linux.tar.xz 28-Feb-2019 02:46 412 +kotex-utils.i386-netbsd.r32101.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.i386-netbsd.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.i386-solaris.r32101.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.i386-solaris.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.r38727.tar.xz 28-Feb-2019 02:46 30480 +kotex-utils.tar.xz 28-Feb-2019 02:46 30480 +kotex-utils.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 412 +kotex-utils.universal-darwin.tar.xz 25-Feb-2021 18:16 412 +kotex-utils.windows.r65891.tar.xz 20-Feb-2023 22:12 2416 +kotex-utils.windows.tar.xz 20-Feb-2023 22:12 2416 +kotex-utils.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.x86_64-cygwin.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:46 420 +kotex-utils.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:46 420 +kotex-utils.x86_64-linux.r32101.tar.xz 28-Feb-2019 02:46 412 +kotex-utils.x86_64-linux.tar.xz 28-Feb-2019 02:46 412 +kotex-utils.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:46 420 +kotex-utils.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:46 420 +kotex-utils.x86_64-solaris.r32101.tar.xz 28-Feb-2019 02:46 416 +kotex-utils.x86_64-solaris.tar.xz 28-Feb-2019 02:46 416 +kpathsea.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 38952 +kpathsea.aarch64-linux.tar.xz 13-Feb-2025 00:48 38952 +kpathsea.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:53 40204 +kpathsea.amd64-freebsd.tar.xz 09-Feb-2025 00:53 40204 +kpathsea.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:15 39552 +kpathsea.amd64-netbsd.tar.xz 09-Feb-2025 18:15 39552 +kpathsea.armhf-linux.r73793.tar.xz 09-Feb-2025 00:53 36004 +kpathsea.armhf-linux.tar.xz 09-Feb-2025 00:53 36004 +kpathsea.doc.r75425.tar.xz 07-Jun-2025 19:02 1032940 +kpathsea.doc.tar.xz 07-Jun-2025 19:02 1032940 +kpathsea.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:53 40052 +kpathsea.i386-freebsd.tar.xz 09-Feb-2025 00:53 40052 +kpathsea.i386-linux.r73792.tar.xz 09-Feb-2025 00:53 46032 +kpathsea.i386-linux.tar.xz 09-Feb-2025 00:53 46032 +kpathsea.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:15 36276 +kpathsea.i386-netbsd.tar.xz 09-Feb-2025 18:15 36276 +kpathsea.i386-solaris.r73792.tar.xz 09-Feb-2025 00:53 43084 +kpathsea.i386-solaris.tar.xz 09-Feb-2025 00:53 43084 +kpathsea.r75425.tar.xz 07-Jun-2025 19:02 33128 +kpathsea.tar.xz 07-Jun-2025 19:02 33128 +kpathsea.universal-darwin.r73806.tar.xz 09-Feb-2025 18:15 84944 +kpathsea.universal-darwin.tar.xz 09-Feb-2025 18:15 84944 +kpathsea.windows.r73796.tar.xz 09-Feb-2025 18:15 518932 +kpathsea.windows.tar.xz 09-Feb-2025 18:15 518932 +kpathsea.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 46320 +kpathsea.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 46320 +kpathsea.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 40108 +kpathsea.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 40108 +kpathsea.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 41116 +kpathsea.x86_64-linux.tar.xz 19-Feb-2025 00:46 41116 +kpathsea.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:53 44780 +kpathsea.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:53 44780 +kpathsea.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:53 46992 +kpathsea.x86_64-solaris.tar.xz 09-Feb-2025 00:53 46992 +kpfonts-otf.doc.r75987.tar.xz 05-Aug-2025 23:45 2010804 +kpfonts-otf.doc.tar.xz 05-Aug-2025 23:45 2010804 +kpfonts-otf.r75987.tar.xz 05-Aug-2025 23:45 1122960 +kpfonts-otf.tar.xz 05-Aug-2025 23:45 1122960 +kpfonts.doc.r72680.tar.xz 28-Oct-2024 00:48 1634400 +kpfonts.doc.tar.xz 28-Oct-2024 00:48 1634400 +kpfonts.r72680.tar.xz 28-Oct-2024 00:48 2241532 +kpfonts.tar.xz 28-Oct-2024 00:48 2241532 +ksfh_nat.r24825.tar.xz 28-Feb-2019 02:46 3968 +ksfh_nat.tar.xz 28-Feb-2019 02:46 3968 +ksp-thesis.doc.r39080.tar.xz 28-Feb-2019 02:46 146928 +ksp-thesis.doc.tar.xz 28-Feb-2019 02:46 146928 +ksp-thesis.r39080.tar.xz 28-Feb-2019 02:46 4340 +ksp-thesis.tar.xz 28-Feb-2019 02:46 4340 +ktv-texdata.doc.r27369.tar.xz 28-Feb-2019 02:46 192368 +ktv-texdata.doc.tar.xz 28-Feb-2019 02:46 192368 +ktv-texdata.r27369.tar.xz 28-Feb-2019 02:46 2832 +ktv-texdata.source.r27369.tar.xz 28-Feb-2019 02:46 14640 +ktv-texdata.source.tar.xz 28-Feb-2019 02:46 14640 +ktv-texdata.tar.xz 28-Feb-2019 02:46 2832 +ku-template.doc.r45935.tar.xz 28-Feb-2019 02:46 226880 +ku-template.doc.tar.xz 28-Feb-2019 02:46 226880 +ku-template.r45935.tar.xz 28-Feb-2019 02:46 1012 +ku-template.tar.xz 28-Feb-2019 02:46 1012 +kurdishlipsum.doc.r47518.tar.xz 28-Feb-2019 02:46 55448 +kurdishlipsum.doc.tar.xz 28-Feb-2019 02:46 55448 +kurdishlipsum.r47518.tar.xz 28-Feb-2019 02:46 34900 +kurdishlipsum.tar.xz 28-Feb-2019 02:46 34900 +kurier.doc.r19612.tar.xz 28-Feb-2019 02:46 465112 +kurier.doc.tar.xz 28-Feb-2019 02:46 465112 +kurier.r19612.tar.xz 28-Feb-2019 02:46 3862448 +kurier.tar.xz 28-Feb-2019 02:46 3862448 +kvdefinekeys.doc.r53193.tar.xz 21-Dec-2019 00:54 296808 +kvdefinekeys.doc.tar.xz 21-Dec-2019 00:54 296808 +kvdefinekeys.r53193.tar.xz 21-Dec-2019 00:54 2092 +kvdefinekeys.source.r53193.tar.xz 21-Dec-2019 00:54 5112 +kvdefinekeys.source.tar.xz 21-Dec-2019 00:54 5112 +kvdefinekeys.tar.xz 21-Dec-2019 00:54 2092 +kvmap.doc.r67201.tar.xz 23-May-2023 23:44 93736 +kvmap.doc.tar.xz 23-May-2023 23:44 93736 +kvmap.r67201.tar.xz 23-May-2023 23:44 2688 +kvmap.source.r67201.tar.xz 23-May-2023 23:44 8776 +kvmap.source.tar.xz 23-May-2023 23:44 8776 +kvmap.tar.xz 23-May-2023 23:44 2688 +kvoptions.doc.r63622.tar.xz 17-Jun-2022 15:28 485344 +kvoptions.doc.tar.xz 17-Jun-2022 15:28 485344 +kvoptions.r63622.tar.xz 17-Jun-2022 15:28 7180 +kvoptions.source.r63622.tar.xz 17-Jun-2022 15:28 21144 +kvoptions.source.tar.xz 17-Jun-2022 15:28 21144 +kvoptions.tar.xz 17-Jun-2022 15:28 7180 +kvsetkeys.doc.r64632.tar.xz 06-Oct-2022 23:54 390776 +kvsetkeys.doc.tar.xz 06-Oct-2022 23:54 390776 +kvsetkeys.r64632.tar.xz 06-Oct-2022 23:54 3568 +kvsetkeys.source.r64632.tar.xz 06-Oct-2022 23:54 10604 +kvsetkeys.source.tar.xz 06-Oct-2022 23:54 10604 +kvsetkeys.tar.xz 06-Oct-2022 23:54 3568 +l2picfaq.doc.r19601.tar.xz 28-Feb-2019 02:46 364380 +l2picfaq.doc.tar.xz 28-Feb-2019 02:46 364380 +l2picfaq.r19601.tar.xz 28-Feb-2019 02:46 484 +l2picfaq.tar.xz 28-Feb-2019 02:46 484 +l2tabu-english.doc.r15878.tar.xz 28-Feb-2019 02:46 266556 +l2tabu-english.doc.tar.xz 28-Feb-2019 02:46 266556 +l2tabu-english.r15878.tar.xz 28-Feb-2019 02:46 444 +l2tabu-english.tar.xz 28-Feb-2019 02:46 444 +l2tabu-french.doc.r31315.tar.xz 28-Feb-2019 02:46 269348 +l2tabu-french.doc.tar.xz 28-Feb-2019 02:46 269348 +l2tabu-french.r31315.tar.xz 28-Feb-2019 02:46 380 +l2tabu-french.tar.xz 28-Feb-2019 02:46 380 +l2tabu-italian.doc.r25218.tar.xz 28-Feb-2019 02:46 257412 +l2tabu-italian.doc.tar.xz 28-Feb-2019 02:46 257412 +l2tabu-italian.r25218.tar.xz 28-Feb-2019 02:46 448 +l2tabu-italian.tar.xz 28-Feb-2019 02:46 448 +l2tabu-spanish.doc.r15878.tar.xz 28-Feb-2019 02:46 227412 +l2tabu-spanish.doc.tar.xz 28-Feb-2019 02:46 227412 +l2tabu-spanish.r15878.tar.xz 28-Feb-2019 02:46 448 +l2tabu-spanish.tar.xz 28-Feb-2019 02:46 448 +l2tabu.doc.r63708.tar.xz 23-Jun-2022 23:57 245464 +l2tabu.doc.tar.xz 23-Jun-2022 23:57 245464 +l2tabu.r63708.tar.xz 23-Jun-2022 23:57 480 +l2tabu.tar.xz 23-Jun-2022 23:57 480 +l3backend-dev.doc.r75463.tar.xz 09-Jun-2025 23:49 853080 +l3backend-dev.doc.tar.xz 09-Jun-2025 23:49 853080 +l3backend-dev.r75463.tar.xz 09-Jun-2025 23:49 16400 +l3backend-dev.source.r75463.tar.xz 09-Jun-2025 23:49 34364 +l3backend-dev.source.tar.xz 09-Jun-2025 23:49 34364 +l3backend-dev.tar.xz 09-Jun-2025 23:49 16400 +l3backend.doc.r75878.tar.xz 23-Jul-2025 23:50 853140 +l3backend.doc.tar.xz 23-Jul-2025 23:50 853140 +l3backend.r75878.tar.xz 23-Jul-2025 23:50 16524 +l3backend.source.r75878.tar.xz 23-Jul-2025 23:50 34344 +l3backend.source.tar.xz 23-Jul-2025 23:50 34344 +l3backend.tar.xz 23-Jul-2025 23:50 16524 +l3build.aarch64-linux.r46894.tar.xz 28-Feb-2019 02:46 344 +l3build.aarch64-linux.tar.xz 28-Feb-2019 02:46 344 +l3build.amd64-freebsd.r46894.tar.xz 28-Feb-2019 02:46 344 +l3build.amd64-freebsd.tar.xz 28-Feb-2019 02:46 344 +l3build.amd64-netbsd.r46894.tar.xz 28-Feb-2019 02:46 340 +l3build.amd64-netbsd.tar.xz 28-Feb-2019 02:46 340 +l3build.armhf-linux.r46894.tar.xz 28-Feb-2019 02:46 340 +l3build.armhf-linux.tar.xz 28-Feb-2019 02:46 340 +l3build.doc.r76225.tar.xz 03-Sep-2025 23:49 748208 +l3build.doc.tar.xz 03-Sep-2025 23:49 748208 +l3build.i386-freebsd.r46894.tar.xz 28-Feb-2019 02:46 340 +l3build.i386-freebsd.tar.xz 28-Feb-2019 02:46 340 +l3build.i386-linux.r46894.tar.xz 28-Feb-2019 02:46 340 +l3build.i386-linux.tar.xz 28-Feb-2019 02:46 340 +l3build.i386-netbsd.r46894.tar.xz 28-Feb-2019 02:46 340 +l3build.i386-netbsd.tar.xz 28-Feb-2019 02:46 340 +l3build.i386-solaris.r46894.tar.xz 28-Feb-2019 02:46 340 +l3build.i386-solaris.tar.xz 28-Feb-2019 02:46 340 +l3build.r76225.tar.xz 03-Sep-2025 23:49 37268 +l3build.source.r76225.tar.xz 03-Sep-2025 23:49 32304 +l3build.source.tar.xz 03-Sep-2025 23:49 32304 +l3build.tar.xz 03-Sep-2025 23:49 37268 +l3build.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +l3build.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +l3build.windows.r65891.tar.xz 20-Feb-2023 22:12 2308 +l3build.windows.tar.xz 20-Feb-2023 22:12 2308 +l3build.x86_64-cygwin.r46894.tar.xz 28-Feb-2019 02:46 344 +l3build.x86_64-cygwin.tar.xz 28-Feb-2019 02:46 344 +l3build.x86_64-darwinlegacy.r46894.tar.xz 28-Feb-2019 02:46 348 +l3build.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:46 348 +l3build.x86_64-linux.r46894.tar.xz 28-Feb-2019 02:46 340 +l3build.x86_64-linux.tar.xz 28-Feb-2019 02:46 340 +l3build.x86_64-linuxmusl.r46894.tar.xz 28-Feb-2019 02:46 344 +l3build.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:46 344 +l3build.x86_64-solaris.r46894.tar.xz 28-Feb-2019 02:46 340 +l3build.x86_64-solaris.tar.xz 28-Feb-2019 02:46 340 +l3experimental.doc.r75878.tar.xz 23-Jul-2025 23:50 1989572 +l3experimental.doc.tar.xz 23-Jul-2025 23:50 1989572 +l3experimental.r75878.tar.xz 23-Jul-2025 23:50 16708 +l3experimental.source.r75878.tar.xz 23-Jul-2025 23:50 61500 +l3experimental.source.tar.xz 23-Jul-2025 23:50 61500 +l3experimental.tar.xz 23-Jul-2025 23:50 16708 +l3kernel-dev.doc.r76219.tar.xz 02-Sep-2025 23:49 12075748 +l3kernel-dev.doc.tar.xz 02-Sep-2025 23:49 12075748 +l3kernel-dev.r76219.tar.xz 02-Sep-2025 23:49 188540 +l3kernel-dev.source.r76219.tar.xz 02-Sep-2025 23:49 647456 +l3kernel-dev.source.tar.xz 02-Sep-2025 23:49 647456 +l3kernel-dev.tar.xz 02-Sep-2025 23:49 188540 +l3kernel.doc.r76330.tar.xz 17-Sep-2025 23:50 12075120 +l3kernel.doc.tar.xz 17-Sep-2025 23:50 12075120 +l3kernel.r76330.tar.xz 17-Sep-2025 23:50 188676 +l3kernel.source.r76330.tar.xz 17-Sep-2025 23:50 647540 +l3kernel.source.tar.xz 17-Sep-2025 23:50 647540 +l3kernel.tar.xz 17-Sep-2025 23:50 188676 +l3packages.doc.r75878.tar.xz 23-Jul-2025 23:50 1458200 +l3packages.doc.tar.xz 23-Jul-2025 23:50 1458200 +l3packages.r75878.tar.xz 23-Jul-2025 23:50 20424 +l3packages.source.r75878.tar.xz 23-Jul-2025 23:50 27416 +l3packages.source.tar.xz 23-Jul-2025 23:50 27416 +l3packages.tar.xz 23-Jul-2025 23:50 20424 +l3sys-query.aarch64-linux.r70681.tar.xz 18-Mar-2024 00:46 348 +l3sys-query.aarch64-linux.tar.xz 18-Mar-2024 00:46 348 +l3sys-query.amd64-freebsd.r70681.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.amd64-freebsd.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.amd64-netbsd.r70681.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.amd64-netbsd.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.armhf-linux.r70681.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.armhf-linux.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.doc.r70889.tar.xz 08-Apr-2024 23:46 383792 +l3sys-query.doc.tar.xz 08-Apr-2024 23:46 383792 +l3sys-query.i386-freebsd.r70681.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.i386-freebsd.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.i386-linux.r70681.tar.xz 18-Mar-2024 00:46 348 +l3sys-query.i386-linux.tar.xz 18-Mar-2024 00:46 348 +l3sys-query.i386-netbsd.r70681.tar.xz 18-Mar-2024 00:46 348 +l3sys-query.i386-netbsd.tar.xz 18-Mar-2024 00:46 348 +l3sys-query.i386-solaris.r70681.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.i386-solaris.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.r70889.tar.xz 08-Apr-2024 23:46 5404 +l3sys-query.tar.xz 08-Apr-2024 23:46 5404 +l3sys-query.universal-darwin.r70681.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.universal-darwin.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.windows.r70681.tar.xz 18-Mar-2024 00:46 2320 +l3sys-query.windows.tar.xz 18-Mar-2024 00:46 2320 +l3sys-query.x86_64-cygwin.r70681.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.x86_64-cygwin.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.x86_64-darwinlegacy.r70681.tar.xz 18-Mar-2024 00:46 360 +l3sys-query.x86_64-darwinlegacy.tar.xz 18-Mar-2024 00:46 360 +l3sys-query.x86_64-linux.r70681.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.x86_64-linux.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.x86_64-linuxmusl.r70681.tar.xz 18-Mar-2024 00:46 356 +l3sys-query.x86_64-linuxmusl.tar.xz 18-Mar-2024 00:46 356 +l3sys-query.x86_64-solaris.r70681.tar.xz 18-Mar-2024 00:46 352 +l3sys-query.x86_64-solaris.tar.xz 18-Mar-2024 00:46 352 +labbook.doc.r15878.tar.xz 28-Feb-2019 02:47 210236 +labbook.doc.tar.xz 28-Feb-2019 02:47 210236 +labbook.r15878.tar.xz 28-Feb-2019 02:47 4180 +labbook.source.r15878.tar.xz 28-Feb-2019 02:47 23192 +labbook.source.tar.xz 28-Feb-2019 02:47 23192 +labbook.tar.xz 28-Feb-2019 02:47 4180 +labels.doc.r15878.tar.xz 28-Feb-2019 02:47 177412 +labels.doc.tar.xz 28-Feb-2019 02:47 177412 +labels.r15878.tar.xz 28-Feb-2019 02:47 3536 +labels.source.r15878.tar.xz 28-Feb-2019 02:47 14888 +labels.source.tar.xz 28-Feb-2019 02:47 14888 +labels.tar.xz 28-Feb-2019 02:47 3536 +labels4easylist.doc.r51124.tar.xz 14-May-2019 23:39 25184 +labels4easylist.doc.tar.xz 14-May-2019 23:39 25184 +labels4easylist.r51124.tar.xz 14-May-2019 23:39 1876 +labels4easylist.tar.xz 14-May-2019 23:39 1876 +labelschanged.doc.r69400.tar.xz 13-Jan-2024 00:46 210564 +labelschanged.doc.tar.xz 13-Jan-2024 00:46 210564 +labelschanged.r69400.tar.xz 13-Jan-2024 00:46 1032 +labelschanged.source.r69400.tar.xz 13-Jan-2024 00:46 4224 +labelschanged.source.tar.xz 13-Jan-2024 00:46 4224 +labelschanged.tar.xz 13-Jan-2024 00:46 1032 +labyrinth.doc.r33454.tar.xz 28-Feb-2019 02:47 228388 +labyrinth.doc.tar.xz 28-Feb-2019 02:47 228388 +labyrinth.r33454.tar.xz 28-Feb-2019 02:47 2348 +labyrinth.tar.xz 28-Feb-2019 02:47 2348 +lacheck.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 20184 +lacheck.aarch64-linux.tar.xz 13-Feb-2025 00:48 20184 +lacheck.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:53 21460 +lacheck.amd64-freebsd.tar.xz 09-Feb-2025 00:53 21460 +lacheck.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:15 21756 +lacheck.amd64-netbsd.tar.xz 09-Feb-2025 18:15 21756 +lacheck.armhf-linux.r73793.tar.xz 09-Feb-2025 00:53 20420 +lacheck.armhf-linux.tar.xz 09-Feb-2025 00:53 20420 +lacheck.doc.r75712.tar.xz 07-Jul-2025 23:51 21016 +lacheck.doc.tar.xz 07-Jul-2025 23:51 21016 +lacheck.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:53 21452 +lacheck.i386-freebsd.tar.xz 09-Feb-2025 00:53 21452 +lacheck.i386-linux.r73792.tar.xz 09-Feb-2025 00:53 21236 +lacheck.i386-linux.tar.xz 09-Feb-2025 00:53 21236 +lacheck.i386-netbsd.r74618.tar.xz 15-Mar-2025 00:51 18476 +lacheck.i386-netbsd.tar.xz 15-Mar-2025 00:51 18476 +lacheck.i386-solaris.r73792.tar.xz 09-Feb-2025 00:53 20720 +lacheck.i386-solaris.tar.xz 09-Feb-2025 00:53 20720 +lacheck.r75712.tar.xz 07-Jul-2025 23:51 464 +lacheck.tar.xz 07-Jul-2025 23:51 464 +lacheck.universal-darwin.r73806.tar.xz 09-Feb-2025 18:15 37444 +lacheck.universal-darwin.tar.xz 09-Feb-2025 18:15 37444 +lacheck.windows.r73796.tar.xz 09-Feb-2025 18:15 21760 +lacheck.windows.tar.xz 09-Feb-2025 18:15 21760 +lacheck.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 22620 +lacheck.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 22620 +lacheck.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 20648 +lacheck.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 20648 +lacheck.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 22792 +lacheck.x86_64-linux.tar.xz 19-Feb-2025 00:46 22792 +lacheck.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:53 22872 +lacheck.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:53 22872 +lacheck.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:53 24832 +lacheck.x86_64-solaris.tar.xz 09-Feb-2025 00:53 24832 +ladder.doc.r44394.tar.xz 28-Feb-2019 02:47 214124 +ladder.doc.tar.xz 28-Feb-2019 02:47 214124 +ladder.r44394.tar.xz 28-Feb-2019 02:47 1412 +ladder.tar.xz 28-Feb-2019 02:47 1412 +lambda-lists.doc.r31402.tar.xz 28-Feb-2019 02:47 130024 +lambda-lists.doc.tar.xz 28-Feb-2019 02:47 130024 +lambda-lists.r31402.tar.xz 28-Feb-2019 02:47 1548 +lambda-lists.tar.xz 28-Feb-2019 02:47 1548 +lambda.r45756.tar.xz 28-Feb-2019 02:47 47360 +lambda.tar.xz 28-Feb-2019 02:47 47360 +lambdax.doc.r60278.tar.xz 19-Aug-2021 23:52 541164 +lambdax.doc.tar.xz 19-Aug-2021 23:52 541164 +lambdax.r60278.tar.xz 19-Aug-2021 23:52 1992 +lambdax.source.r60278.tar.xz 19-Aug-2021 23:52 4292 +lambdax.source.tar.xz 19-Aug-2021 23:52 4292 +lambdax.tar.xz 19-Aug-2021 23:52 1992 +langcode.doc.r27764.tar.xz 28-Feb-2019 02:47 313268 +langcode.doc.tar.xz 28-Feb-2019 02:47 313268 +langcode.r27764.tar.xz 28-Feb-2019 02:47 3032 +langcode.source.r27764.tar.xz 28-Feb-2019 02:47 2064 +langcode.source.tar.xz 28-Feb-2019 02:47 2064 +langcode.tar.xz 28-Feb-2019 02:47 3032 +langnames.doc.r69101.tar.xz 13-Dec-2023 00:44 107500 +langnames.doc.tar.xz 13-Dec-2023 00:44 107500 +langnames.r69101.tar.xz 13-Dec-2023 00:44 125060 +langnames.source.r69101.tar.xz 13-Dec-2023 00:44 6136 +langnames.source.tar.xz 13-Dec-2023 00:44 6136 +langnames.tar.xz 13-Dec-2023 00:44 125060 +langsci-avm.doc.r75060.tar.xz 29-Apr-2025 23:49 159540 +langsci-avm.doc.tar.xz 29-Apr-2025 23:49 159540 +langsci-avm.r75060.tar.xz 29-Apr-2025 23:49 4432 +langsci-avm.source.r75060.tar.xz 29-Apr-2025 23:49 14284 +langsci-avm.source.tar.xz 29-Apr-2025 23:49 14284 +langsci-avm.tar.xz 29-Apr-2025 23:49 4432 +langsci.doc.r73027.tar.xz 04-Dec-2024 00:47 275472 +langsci.doc.tar.xz 04-Dec-2024 00:47 275472 +langsci.r73027.tar.xz 04-Dec-2024 00:47 66180 +langsci.tar.xz 04-Dec-2024 00:47 66180 +lapdf.doc.r23806.tar.xz 28-Feb-2019 02:47 2533132 +lapdf.doc.tar.xz 28-Feb-2019 02:47 2533132 +lapdf.r23806.tar.xz 28-Feb-2019 02:47 11828 +lapdf.tar.xz 28-Feb-2019 02:47 11828 +lastbib.doc.r70376.tar.xz 04-Mar-2024 00:46 608 +lastbib.doc.tar.xz 04-Mar-2024 00:46 608 +lastbib.r70376.tar.xz 04-Mar-2024 00:46 1000 +lastbib.tar.xz 04-Mar-2024 00:46 1000 +lastpackage.doc.r34481.tar.xz 28-Feb-2019 02:47 254872 +lastpackage.doc.tar.xz 28-Feb-2019 02:47 254872 +lastpackage.r34481.tar.xz 28-Feb-2019 02:47 980 +lastpackage.source.r34481.tar.xz 28-Feb-2019 02:47 2580 +lastpackage.source.tar.xz 28-Feb-2019 02:47 2580 +lastpackage.tar.xz 28-Feb-2019 02:47 980 +lastpage.doc.r76056.tar.xz 14-Aug-2025 23:50 574900 +lastpage.doc.tar.xz 14-Aug-2025 23:50 574900 +lastpage.r76056.tar.xz 14-Aug-2025 23:50 4772 +lastpage.source.r76056.tar.xz 14-Aug-2025 23:50 23136 +lastpage.source.tar.xz 14-Aug-2025 23:50 23136 +lastpage.tar.xz 14-Aug-2025 23:50 4772 +latex-amsmath-dev.doc.r76399.tar.xz 24-Sep-2025 23:48 2386920 +latex-amsmath-dev.doc.tar.xz 24-Sep-2025 23:48 2386920 +latex-amsmath-dev.r76399.tar.xz 24-Sep-2025 23:48 31384 +latex-amsmath-dev.source.r76399.tar.xz 24-Sep-2025 23:48 66956 +latex-amsmath-dev.source.tar.xz 24-Sep-2025 23:48 66956 +latex-amsmath-dev.tar.xz 24-Sep-2025 23:48 31384 +latex-base-dev.doc.r76399.tar.xz 24-Sep-2025 23:48 37986076 +latex-base-dev.doc.tar.xz 24-Sep-2025 23:48 37986076 +latex-base-dev.r76399.tar.xz 24-Sep-2025 23:49 259196 +latex-base-dev.source.r76399.tar.xz 24-Sep-2025 23:48 822032 +latex-base-dev.source.tar.xz 24-Sep-2025 23:48 822032 +latex-base-dev.tar.xz 24-Sep-2025 23:49 259196 +latex-bin-dev.aarch64-linux.r53999.tar.xz 02-Mar-2020 19:52 384 +latex-bin-dev.aarch64-linux.tar.xz 02-Mar-2020 19:52 384 +latex-bin-dev.amd64-freebsd.r53999.tar.xz 02-Mar-2020 19:52 392 +latex-bin-dev.amd64-freebsd.tar.xz 02-Mar-2020 19:52 392 +latex-bin-dev.amd64-netbsd.r54003.tar.xz 02-Mar-2020 19:52 388 +latex-bin-dev.amd64-netbsd.tar.xz 02-Mar-2020 19:52 388 +latex-bin-dev.armhf-linux.r54033.tar.xz 04-Mar-2020 22:51 384 +latex-bin-dev.armhf-linux.tar.xz 04-Mar-2020 22:51 384 +latex-bin-dev.doc.r76213.tar.xz 02-Sep-2025 23:49 15248 +latex-bin-dev.doc.tar.xz 02-Sep-2025 23:49 15248 +latex-bin-dev.i386-freebsd.r53999.tar.xz 02-Mar-2020 19:52 392 +latex-bin-dev.i386-freebsd.tar.xz 02-Mar-2020 19:52 392 +latex-bin-dev.i386-linux.r53999.tar.xz 02-Mar-2020 19:52 388 +latex-bin-dev.i386-linux.tar.xz 02-Mar-2020 19:52 388 +latex-bin-dev.i386-netbsd.r54104.tar.xz 06-Mar-2020 00:02 384 +latex-bin-dev.i386-netbsd.tar.xz 06-Mar-2020 00:02 384 +latex-bin-dev.i386-solaris.r53999.tar.xz 02-Mar-2020 19:52 388 +latex-bin-dev.i386-solaris.tar.xz 02-Mar-2020 19:52 388 +latex-bin-dev.r76213.tar.xz 02-Sep-2025 23:49 640 +latex-bin-dev.tar.xz 02-Sep-2025 23:49 640 +latex-bin-dev.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 384 +latex-bin-dev.universal-darwin.tar.xz 25-Feb-2021 18:16 384 +latex-bin-dev.windows.r75604.tar.xz 25-Jun-2025 23:50 3200 +latex-bin-dev.windows.tar.xz 25-Jun-2025 23:50 3200 +latex-bin-dev.x86_64-cygwin.r54025.tar.xz 04-Mar-2020 22:51 388 +latex-bin-dev.x86_64-cygwin.tar.xz 04-Mar-2020 22:51 388 +latex-bin-dev.x86_64-darwinlegacy.r53999.tar.xz 02-Mar-2020 19:52 400 +latex-bin-dev.x86_64-darwinlegacy.tar.xz 02-Mar-2020 19:52 400 +latex-bin-dev.x86_64-linux.r53999.tar.xz 02-Mar-2020 19:52 388 +latex-bin-dev.x86_64-linux.tar.xz 02-Mar-2020 19:52 388 +latex-bin-dev.x86_64-linuxmusl.r53999.tar.xz 02-Mar-2020 19:52 396 +latex-bin-dev.x86_64-linuxmusl.tar.xz 02-Mar-2020 19:52 396 +latex-bin-dev.x86_64-solaris.r53999.tar.xz 02-Mar-2020 19:52 392 +latex-bin-dev.x86_64-solaris.tar.xz 02-Mar-2020 19:52 392 +latex-bin.aarch64-linux.r54018.tar.xz 03-Mar-2020 00:01 384 +latex-bin.aarch64-linux.tar.xz 03-Mar-2020 00:01 384 +latex-bin.amd64-freebsd.r54018.tar.xz 03-Mar-2020 00:01 384 +latex-bin.amd64-freebsd.tar.xz 03-Mar-2020 00:01 384 +latex-bin.amd64-netbsd.r54018.tar.xz 03-Mar-2020 00:01 380 +latex-bin.amd64-netbsd.tar.xz 03-Mar-2020 00:01 380 +latex-bin.armhf-linux.r54033.tar.xz 04-Mar-2020 22:51 384 +latex-bin.armhf-linux.tar.xz 04-Mar-2020 22:51 384 +latex-bin.doc.r76213.tar.xz 02-Sep-2025 23:49 56596 +latex-bin.doc.tar.xz 02-Sep-2025 23:49 56596 +latex-bin.i386-freebsd.r54018.tar.xz 03-Mar-2020 00:01 384 +latex-bin.i386-freebsd.tar.xz 03-Mar-2020 00:01 384 +latex-bin.i386-linux.r54358.tar.xz 17-Mar-2020 01:07 384 +latex-bin.i386-linux.tar.xz 17-Mar-2020 01:07 384 +latex-bin.i386-netbsd.r54104.tar.xz 06-Mar-2020 00:02 380 +latex-bin.i386-netbsd.tar.xz 06-Mar-2020 00:02 380 +latex-bin.i386-solaris.r54018.tar.xz 03-Mar-2020 00:01 384 +latex-bin.i386-solaris.tar.xz 03-Mar-2020 00:01 384 +latex-bin.r76213.tar.xz 02-Sep-2025 23:49 592 +latex-bin.tar.xz 02-Sep-2025 23:49 592 +latex-bin.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 376 +latex-bin.universal-darwin.tar.xz 25-Feb-2021 18:16 376 +latex-bin.windows.r75604.tar.xz 25-Jun-2025 23:50 3192 +latex-bin.windows.tar.xz 25-Jun-2025 23:50 3192 +latex-bin.x86_64-cygwin.r54035.tar.xz 04-Mar-2020 22:51 388 +latex-bin.x86_64-cygwin.tar.xz 04-Mar-2020 22:51 388 +latex-bin.x86_64-darwinlegacy.r54018.tar.xz 03-Mar-2020 00:01 392 +latex-bin.x86_64-darwinlegacy.tar.xz 03-Mar-2020 00:01 392 +latex-bin.x86_64-linux.r54018.tar.xz 03-Mar-2020 00:01 376 +latex-bin.x86_64-linux.tar.xz 03-Mar-2020 00:01 376 +latex-bin.x86_64-linuxmusl.r54018.tar.xz 03-Mar-2020 00:01 388 +latex-bin.x86_64-linuxmusl.tar.xz 03-Mar-2020 00:01 388 +latex-bin.x86_64-solaris.r54018.tar.xz 03-Mar-2020 00:01 380 +latex-bin.x86_64-solaris.tar.xz 03-Mar-2020 00:01 380 +latex-brochure.doc.r40612.tar.xz 28-Feb-2019 02:47 6200016 +latex-brochure.doc.tar.xz 28-Feb-2019 02:47 6200016 +latex-brochure.r40612.tar.xz 28-Feb-2019 02:47 500 +latex-brochure.tar.xz 28-Feb-2019 02:47 500 +latex-context-ppchtex.doc.r66687.tar.xz 27-Mar-2023 23:56 780 +latex-context-ppchtex.doc.tar.xz 27-Mar-2023 23:56 780 +latex-context-ppchtex.r66687.tar.xz 27-Mar-2023 23:56 768 +latex-context-ppchtex.tar.xz 27-Mar-2023 23:56 768 +latex-course.doc.r68681.tar.xz 27-Oct-2023 23:44 585200 +latex-course.doc.tar.xz 27-Oct-2023 23:44 585200 +latex-course.r68681.tar.xz 27-Oct-2023 23:44 488 +latex-course.tar.xz 27-Oct-2023 23:44 488 +latex-doc-ptr.doc.r72417.tar.xz 30-Sep-2024 20:47 196148 +latex-doc-ptr.doc.tar.xz 30-Sep-2024 20:47 196148 +latex-doc-ptr.r72417.tar.xz 30-Sep-2024 20:47 520 +latex-doc-ptr.tar.xz 30-Sep-2024 20:47 520 +latex-firstaid-dev.doc.r75878.tar.xz 23-Jul-2025 23:50 280260 +latex-firstaid-dev.doc.tar.xz 23-Jul-2025 23:50 280260 +latex-firstaid-dev.r75878.tar.xz 23-Jul-2025 23:50 4472 +latex-firstaid-dev.source.r75878.tar.xz 23-Jul-2025 23:50 10348 +latex-firstaid-dev.source.tar.xz 23-Jul-2025 23:50 10348 +latex-firstaid-dev.tar.xz 23-Jul-2025 23:50 4472 +latex-fonts.doc.r28888.tar.xz 28-Feb-2019 02:47 1128 +latex-fonts.doc.tar.xz 28-Feb-2019 02:47 1128 +latex-fonts.r28888.tar.xz 28-Feb-2019 02:47 17972 +latex-fonts.tar.xz 28-Feb-2019 02:47 17972 +latex-for-undergraduates.doc.r70199.tar.xz 28-Feb-2024 02:10 2370052 +latex-for-undergraduates.doc.tar.xz 28-Feb-2024 02:10 2370052 +latex-for-undergraduates.r70199.tar.xz 28-Feb-2024 02:10 456 +latex-for-undergraduates.tar.xz 28-Feb-2024 02:10 456 +latex-git-log.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.aarch64-linux.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.amd64-freebsd.r30983.tar.xz 28-Feb-2019 02:47 348 +latex-git-log.amd64-freebsd.tar.xz 28-Feb-2019 02:47 348 +latex-git-log.amd64-netbsd.r30983.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.amd64-netbsd.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.armhf-linux.r30983.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.armhf-linux.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.doc.r71402.tar.xz 01-Jun-2024 23:52 82860 +latex-git-log.doc.tar.xz 01-Jun-2024 23:52 82860 +latex-git-log.i386-freebsd.r30983.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.i386-freebsd.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.i386-linux.r30983.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.i386-linux.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.i386-netbsd.r30983.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.i386-netbsd.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.i386-solaris.r30983.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.i386-solaris.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.r71402.tar.xz 01-Jun-2024 23:52 4836 +latex-git-log.tar.xz 01-Jun-2024 23:52 4836 +latex-git-log.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +latex-git-log.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +latex-git-log.windows.r65891.tar.xz 20-Feb-2023 22:12 2308 +latex-git-log.windows.tar.xz 20-Feb-2023 22:12 2308 +latex-git-log.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.x86_64-cygwin.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:47 352 +latex-git-log.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:47 352 +latex-git-log.x86_64-linux.r30983.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.x86_64-linux.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:47 348 +latex-git-log.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:47 348 +latex-git-log.x86_64-solaris.r30983.tar.xz 28-Feb-2019 02:47 344 +latex-git-log.x86_64-solaris.tar.xz 28-Feb-2019 02:47 344 +latex-graphics-companion.doc.r29235.tar.xz 28-Feb-2019 02:47 61484 +latex-graphics-companion.doc.tar.xz 28-Feb-2019 02:47 61484 +latex-graphics-companion.r29235.tar.xz 28-Feb-2019 02:47 436 +latex-graphics-companion.tar.xz 28-Feb-2019 02:47 436 +latex-graphics-dev.doc.r75878.tar.xz 23-Jul-2025 23:50 2474916 +latex-graphics-dev.doc.tar.xz 23-Jul-2025 23:50 2474916 +latex-graphics-dev.r75878.tar.xz 23-Jul-2025 23:50 15968 +latex-graphics-dev.source.r75878.tar.xz 23-Jul-2025 23:50 57468 +latex-graphics-dev.source.tar.xz 23-Jul-2025 23:50 57468 +latex-graphics-dev.tar.xz 23-Jul-2025 23:50 15968 +latex-lab-dev.doc.r76399.tar.xz 24-Sep-2025 23:49 5592112 +latex-lab-dev.doc.tar.xz 24-Sep-2025 23:49 5592112 +latex-lab-dev.r76399.tar.xz 24-Sep-2025 23:49 54276 +latex-lab-dev.source.r76399.tar.xz 24-Sep-2025 23:49 162084 +latex-lab-dev.source.tar.xz 24-Sep-2025 23:49 162084 +latex-lab-dev.tar.xz 24-Sep-2025 23:49 54276 +latex-lab.doc.r75374.tar.xz 01-Jun-2025 23:52 5030148 +latex-lab.doc.tar.xz 01-Jun-2025 23:52 5030148 +latex-lab.r75374.tar.xz 01-Jun-2025 23:53 52844 +latex-lab.source.r75374.tar.xz 01-Jun-2025 23:52 150672 +latex-lab.source.tar.xz 01-Jun-2025 23:52 150672 +latex-lab.tar.xz 01-Jun-2025 23:53 52844 +latex-make.doc.r60874.tar.xz 26-Oct-2021 23:53 969744 +latex-make.doc.tar.xz 26-Oct-2021 23:53 969744 +latex-make.r60874.tar.xz 26-Oct-2021 23:53 9596 +latex-make.source.r60874.tar.xz 26-Oct-2021 23:53 29356 +latex-make.source.tar.xz 26-Oct-2021 23:53 29356 +latex-make.tar.xz 26-Oct-2021 23:53 9596 +latex-mr.doc.r55475.tar.xz 07-Jun-2020 23:57 357060 +latex-mr.doc.tar.xz 07-Jun-2020 23:57 357060 +latex-mr.r55475.tar.xz 07-Jun-2020 23:57 700 +latex-mr.tar.xz 07-Jun-2020 23:57 700 +latex-notes-zh-cn.doc.r15878.tar.xz 28-Feb-2019 02:47 693120 +latex-notes-zh-cn.doc.tar.xz 28-Feb-2019 02:47 693120 +latex-notes-zh-cn.r15878.tar.xz 28-Feb-2019 02:47 532 +latex-notes-zh-cn.tar.xz 28-Feb-2019 02:47 532 +latex-papersize.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.aarch64-linux.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.amd64-freebsd.r42296.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.amd64-freebsd.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.amd64-netbsd.r42296.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.amd64-netbsd.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.armhf-linux.r42296.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.armhf-linux.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.doc.r53131.tar.xz 15-Dec-2019 00:53 596 +latex-papersize.doc.tar.xz 15-Dec-2019 00:53 596 +latex-papersize.i386-freebsd.r42296.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.i386-freebsd.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.i386-linux.r42296.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.i386-linux.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.i386-netbsd.r42296.tar.xz 28-Feb-2019 02:47 344 +latex-papersize.i386-netbsd.tar.xz 28-Feb-2019 02:47 344 +latex-papersize.i386-solaris.r42296.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.i386-solaris.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.r53131.tar.xz 15-Dec-2019 00:53 4696 +latex-papersize.tar.xz 15-Dec-2019 00:53 4696 +latex-papersize.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +latex-papersize.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +latex-papersize.windows.r65891.tar.xz 20-Feb-2023 22:12 2312 +latex-papersize.windows.tar.xz 20-Feb-2023 22:12 2312 +latex-papersize.x86_64-cygwin.r42296.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.x86_64-cygwin.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:47 352 +latex-papersize.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:47 352 +latex-papersize.x86_64-linux.r42296.tar.xz 28-Feb-2019 02:47 344 +latex-papersize.x86_64-linux.tar.xz 28-Feb-2019 02:47 344 +latex-papersize.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.x86_64-solaris.r42296.tar.xz 28-Feb-2019 02:47 348 +latex-papersize.x86_64-solaris.tar.xz 28-Feb-2019 02:47 348 +latex-refsheet.doc.r45076.tar.xz 28-Feb-2019 02:47 5020492 +latex-refsheet.doc.tar.xz 28-Feb-2019 02:47 5020492 +latex-refsheet.r45076.tar.xz 28-Feb-2019 02:47 480 +latex-refsheet.tar.xz 28-Feb-2019 02:47 480 +latex-tagging-status.doc.r76278.tar.xz 10-Sep-2025 23:49 844 +latex-tagging-status.doc.tar.xz 10-Sep-2025 23:49 844 +latex-tagging-status.r76278.tar.xz 10-Sep-2025 23:49 7452 +latex-tagging-status.tar.xz 10-Sep-2025 23:49 7452 +latex-tools-dev.doc.r76403.tar.xz 25-Sep-2025 23:49 6352688 +latex-tools-dev.doc.tar.xz 25-Sep-2025 23:49 6352688 +latex-tools-dev.r76403.tar.xz 25-Sep-2025 23:49 47524 +latex-tools-dev.source.r76403.tar.xz 25-Sep-2025 23:49 245644 +latex-tools-dev.source.tar.xz 25-Sep-2025 23:49 245644 +latex-tools-dev.tar.xz 25-Sep-2025 23:49 47524 +latex-uni8.doc.r49729.tar.xz 28-Feb-2019 02:47 3380 +latex-uni8.doc.tar.xz 28-Feb-2019 02:47 3380 +latex-uni8.r49729.tar.xz 28-Feb-2019 02:47 4112 +latex-uni8.tar.xz 28-Feb-2019 02:47 4112 +latex-veryshortguide.doc.r55228.tar.xz 21-May-2020 22:11 521444 +latex-veryshortguide.doc.tar.xz 21-May-2020 22:11 521444 +latex-veryshortguide.r55228.tar.xz 21-May-2020 22:11 560 +latex-veryshortguide.tar.xz 21-May-2020 22:11 560 +latex-via-exemplos.doc.r76307.tar.xz 13-Sep-2025 23:54 1658208 +latex-via-exemplos.doc.tar.xz 13-Sep-2025 23:54 1658208 +latex-via-exemplos.r76307.tar.xz 13-Sep-2025 23:54 392 +latex-via-exemplos.tar.xz 13-Sep-2025 23:54 392 +latex-web-companion.doc.r29349.tar.xz 28-Feb-2019 02:47 272788 +latex-web-companion.doc.tar.xz 28-Feb-2019 02:47 272788 +latex-web-companion.r29349.tar.xz 28-Feb-2019 02:47 432 +latex-web-companion.tar.xz 28-Feb-2019 02:47 432 +latex.doc.r75474.tar.xz 10-Jun-2025 23:47 37313888 +latex.doc.tar.xz 10-Jun-2025 23:47 37313888 +latex.r75474.tar.xz 10-Jun-2025 23:48 258120 +latex.source.r75474.tar.xz 10-Jun-2025 23:47 815644 +latex.source.tar.xz 10-Jun-2025 23:47 815644 +latex.tar.xz 10-Jun-2025 23:48 258120 +latex2e-help-texinfo-fr.doc.r64228.tar.xz 29-Aug-2022 23:53 2221448 +latex2e-help-texinfo-fr.doc.tar.xz 29-Aug-2022 23:53 2221448 +latex2e-help-texinfo-fr.r64228.tar.xz 29-Aug-2022 23:53 444 +latex2e-help-texinfo-fr.tar.xz 29-Aug-2022 23:53 444 +latex2e-help-texinfo-spanish.doc.r75712.tar.xz 07-Jul-2025 23:51 2013472 +latex2e-help-texinfo-spanish.doc.tar.xz 07-Jul-2025 23:51 2013472 +latex2e-help-texinfo-spanish.r75712.tar.xz 07-Jul-2025 23:51 760 +latex2e-help-texinfo-spanish.tar.xz 07-Jul-2025 23:51 760 +latex2e-help-texinfo.doc.r71252.tar.xz 14-May-2024 23:47 2181440 +latex2e-help-texinfo.doc.tar.xz 14-May-2024 23:47 2181440 +latex2e-help-texinfo.r71252.tar.xz 14-May-2024 23:47 748 +latex2e-help-texinfo.tar.xz 14-May-2024 23:47 748 +latex2man.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:48 340 +latex2man.aarch64-linux.tar.xz 28-Feb-2019 02:48 340 +latex2man.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:48 340 +latex2man.amd64-freebsd.tar.xz 28-Feb-2019 02:48 340 +latex2man.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:48 340 +latex2man.amd64-netbsd.tar.xz 28-Feb-2019 02:48 340 +latex2man.armhf-linux.r30015.tar.xz 28-Feb-2019 02:48 340 +latex2man.armhf-linux.tar.xz 28-Feb-2019 02:48 340 +latex2man.doc.r64477.tar.xz 22-Sep-2022 23:53 369332 +latex2man.doc.tar.xz 22-Sep-2022 23:53 369332 +latex2man.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:48 340 +latex2man.i386-freebsd.tar.xz 28-Feb-2019 02:48 340 +latex2man.i386-linux.r13663.tar.xz 28-Feb-2019 02:48 340 +latex2man.i386-linux.tar.xz 28-Feb-2019 02:48 340 +latex2man.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:48 340 +latex2man.i386-netbsd.tar.xz 28-Feb-2019 02:48 340 +latex2man.i386-solaris.r13898.tar.xz 28-Feb-2019 02:48 340 +latex2man.i386-solaris.tar.xz 28-Feb-2019 02:48 340 +latex2man.r64477.tar.xz 22-Sep-2022 23:53 14072 +latex2man.tar.xz 22-Sep-2022 23:53 14072 +latex2man.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +latex2man.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +latex2man.windows.r65891.tar.xz 20-Feb-2023 22:12 2304 +latex2man.windows.tar.xz 20-Feb-2023 22:12 2304 +latex2man.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:48 340 +latex2man.x86_64-cygwin.tar.xz 28-Feb-2019 02:48 340 +latex2man.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:48 348 +latex2man.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:48 348 +latex2man.x86_64-linux.r13777.tar.xz 28-Feb-2019 02:48 340 +latex2man.x86_64-linux.tar.xz 28-Feb-2019 02:48 340 +latex2man.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:48 344 +latex2man.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:48 344 +latex2man.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:48 340 +latex2man.x86_64-solaris.tar.xz 28-Feb-2019 02:48 340 +latex2nemeth.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.aarch64-linux.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.amd64-freebsd.r42300.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.amd64-freebsd.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.amd64-netbsd.r42300.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.amd64-netbsd.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.armhf-linux.r42300.tar.xz 28-Feb-2019 02:48 340 +latex2nemeth.armhf-linux.tar.xz 28-Feb-2019 02:48 340 +latex2nemeth.doc.r65269.tar.xz 14-Dec-2022 00:55 730388 +latex2nemeth.doc.tar.xz 14-Dec-2022 00:55 730388 +latex2nemeth.i386-freebsd.r42300.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.i386-freebsd.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.i386-linux.r42300.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.i386-linux.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.i386-netbsd.r42300.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.i386-netbsd.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.i386-solaris.r42300.tar.xz 28-Feb-2019 02:48 340 +latex2nemeth.i386-solaris.tar.xz 28-Feb-2019 02:48 340 +latex2nemeth.r65269.tar.xz 14-Dec-2022 00:55 7296096 +latex2nemeth.tar.xz 14-Dec-2022 00:55 7296096 +latex2nemeth.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +latex2nemeth.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +latex2nemeth.windows.r65891.tar.xz 20-Feb-2023 22:12 2312 +latex2nemeth.windows.tar.xz 20-Feb-2023 22:12 2312 +latex2nemeth.x86_64-cygwin.r42300.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.x86_64-cygwin.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:48 348 +latex2nemeth.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:48 348 +latex2nemeth.x86_64-linux.r42300.tar.xz 28-Feb-2019 02:48 340 +latex2nemeth.x86_64-linux.tar.xz 28-Feb-2019 02:48 340 +latex2nemeth.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:48 348 +latex2nemeth.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:48 348 +latex2nemeth.x86_64-solaris.r42300.tar.xz 28-Feb-2019 02:48 344 +latex2nemeth.x86_64-solaris.tar.xz 28-Feb-2019 02:48 344 +latex2pydata.doc.r74766.tar.xz 28-Mar-2025 00:50 317844 +latex2pydata.doc.tar.xz 28-Mar-2025 00:50 317844 +latex2pydata.r74766.tar.xz 28-Mar-2025 00:50 3952 +latex2pydata.source.r74766.tar.xz 28-Mar-2025 00:50 13308 +latex2pydata.source.tar.xz 28-Mar-2025 00:50 13308 +latex2pydata.tar.xz 28-Mar-2025 00:50 3952 +latex4musicians.doc.r49759.tar.xz 28-Feb-2019 02:48 1340360 +latex4musicians.doc.tar.xz 28-Feb-2019 02:48 1340360 +latex4musicians.r49759.tar.xz 28-Feb-2019 02:48 524 +latex4musicians.tar.xz 28-Feb-2019 02:48 524 +latex4wp-it.doc.r36000.tar.xz 28-Feb-2019 02:48 816780 +latex4wp-it.doc.tar.xz 28-Feb-2019 02:48 816780 +latex4wp-it.r36000.tar.xz 28-Feb-2019 02:48 420 +latex4wp-it.tar.xz 28-Feb-2019 02:48 420 +latex4wp.doc.r68096.tar.xz 28-Aug-2023 23:44 1290324 +latex4wp.doc.tar.xz 28-Aug-2023 23:44 1290324 +latex4wp.r68096.tar.xz 28-Aug-2023 23:44 476 +latex4wp.tar.xz 28-Aug-2023 23:44 476 +latexbangla.doc.r55475.tar.xz 07-Jun-2020 23:57 147412 +latexbangla.doc.tar.xz 07-Jun-2020 23:57 147412 +latexbangla.r55475.tar.xz 07-Jun-2020 23:57 3268 +latexbangla.tar.xz 07-Jun-2020 23:57 3268 +latexbug.doc.r72762.tar.xz 05-Nov-2024 00:48 220860 +latexbug.doc.tar.xz 05-Nov-2024 00:48 220860 +latexbug.r72762.tar.xz 05-Nov-2024 00:48 8252 +latexbug.source.r72762.tar.xz 05-Nov-2024 00:48 12944 +latexbug.source.tar.xz 05-Nov-2024 00:48 12944 +latexbug.tar.xz 05-Nov-2024 00:48 8252 +latexcheat-de.doc.r35702.tar.xz 28-Feb-2019 02:48 528444 +latexcheat-de.doc.tar.xz 28-Feb-2019 02:48 528444 +latexcheat-de.r35702.tar.xz 28-Feb-2019 02:48 544 +latexcheat-de.tar.xz 28-Feb-2019 02:48 544 +latexcheat-esmx.doc.r36866.tar.xz 28-Feb-2019 02:48 467256 +latexcheat-esmx.doc.tar.xz 28-Feb-2019 02:48 467256 +latexcheat-esmx.r36866.tar.xz 28-Feb-2019 02:48 460 +latexcheat-esmx.tar.xz 28-Feb-2019 02:48 460 +latexcheat-ptbr.doc.r15878.tar.xz 28-Feb-2019 02:48 143516 +latexcheat-ptbr.doc.tar.xz 28-Feb-2019 02:48 143516 +latexcheat-ptbr.r15878.tar.xz 28-Feb-2019 02:48 424 +latexcheat-ptbr.tar.xz 28-Feb-2019 02:48 424 +latexcheat.doc.r15878.tar.xz 28-Feb-2019 02:48 155812 +latexcheat.doc.tar.xz 28-Feb-2019 02:48 155812 +latexcheat.r15878.tar.xz 28-Feb-2019 02:48 464 +latexcheat.tar.xz 28-Feb-2019 02:48 464 +latexcolors.doc.r49888.tar.xz 28-Feb-2019 02:48 374576 +latexcolors.doc.tar.xz 28-Feb-2019 02:48 374576 +latexcolors.r49888.tar.xz 28-Feb-2019 02:48 7712 +latexcolors.source.r49888.tar.xz 28-Feb-2019 02:48 12256 +latexcolors.source.tar.xz 28-Feb-2019 02:48 12256 +latexcolors.tar.xz 28-Feb-2019 02:48 7712 +latexconfig.r68923.tar.xz 21-Nov-2023 00:45 2240 +latexconfig.tar.xz 21-Nov-2023 00:45 2240 +latexcourse-rug.doc.r39026.tar.xz 28-Feb-2019 02:48 5200392 +latexcourse-rug.doc.tar.xz 28-Feb-2019 02:48 5200392 +latexcourse-rug.r39026.tar.xz 28-Feb-2019 02:48 464 +latexcourse-rug.tar.xz 28-Feb-2019 02:48 464 +latexdemo.doc.r67201.tar.xz 23-May-2023 23:44 471020 +latexdemo.doc.tar.xz 23-May-2023 23:44 471020 +latexdemo.r67201.tar.xz 23-May-2023 23:44 2472 +latexdemo.source.r67201.tar.xz 23-May-2023 23:44 6236 +latexdemo.source.tar.xz 23-May-2023 23:44 6236 +latexdemo.tar.xz 23-May-2023 23:44 2472 +latexdiff.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:48 384 +latexdiff.aarch64-linux.tar.xz 28-Feb-2019 02:48 384 +latexdiff.amd64-freebsd.r16484.tar.xz 28-Feb-2019 02:48 388 +latexdiff.amd64-freebsd.tar.xz 28-Feb-2019 02:48 388 +latexdiff.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:48 384 +latexdiff.amd64-netbsd.tar.xz 28-Feb-2019 02:48 384 +latexdiff.armhf-linux.r30015.tar.xz 28-Feb-2019 02:48 384 +latexdiff.armhf-linux.tar.xz 28-Feb-2019 02:48 384 +latexdiff.doc.r72099.tar.xz 24-Aug-2024 23:55 487204 +latexdiff.doc.tar.xz 24-Aug-2024 23:55 487204 +latexdiff.i386-freebsd.r16484.tar.xz 28-Feb-2019 02:48 388 +latexdiff.i386-freebsd.tar.xz 28-Feb-2019 02:48 388 +latexdiff.i386-linux.r16420.tar.xz 28-Feb-2019 02:48 384 +latexdiff.i386-linux.tar.xz 28-Feb-2019 02:48 384 +latexdiff.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:48 384 +latexdiff.i386-netbsd.tar.xz 28-Feb-2019 02:48 384 +latexdiff.i386-solaris.r16420.tar.xz 28-Feb-2019 02:48 384 +latexdiff.i386-solaris.tar.xz 28-Feb-2019 02:48 384 +latexdiff.r72099.tar.xz 24-Aug-2024 23:55 76256 +latexdiff.tar.xz 24-Aug-2024 23:55 76256 +latexdiff.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 388 +latexdiff.universal-darwin.tar.xz 25-Feb-2021 18:16 388 +latexdiff.windows.r65891.tar.xz 20-Feb-2023 22:12 2384 +latexdiff.windows.tar.xz 20-Feb-2023 22:12 2384 +latexdiff.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:48 388 +latexdiff.x86_64-cygwin.tar.xz 28-Feb-2019 02:48 388 +latexdiff.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:48 400 +latexdiff.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:48 400 +latexdiff.x86_64-linux.r16420.tar.xz 28-Feb-2019 02:48 384 +latexdiff.x86_64-linux.tar.xz 28-Feb-2019 02:48 384 +latexdiff.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:48 392 +latexdiff.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:48 392 +latexdiff.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:48 384 +latexdiff.x86_64-solaris.tar.xz 28-Feb-2019 02:48 384 +latexfileinfo-pkgs.doc.r26760.tar.xz 28-Feb-2019 02:48 8008 +latexfileinfo-pkgs.doc.tar.xz 28-Feb-2019 02:48 8008 +latexfileinfo-pkgs.r26760.tar.xz 28-Feb-2019 02:48 856 +latexfileinfo-pkgs.source.r26760.tar.xz 28-Feb-2019 02:48 8120 +latexfileinfo-pkgs.source.tar.xz 28-Feb-2019 02:48 8120 +latexfileinfo-pkgs.tar.xz 28-Feb-2019 02:48 856 +latexfileversion.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.aarch64-linux.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.amd64-freebsd.r25012.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.amd64-freebsd.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.amd64-netbsd.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.armhf-linux.r30015.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.armhf-linux.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.doc.r29349.tar.xz 28-Feb-2019 02:48 928 +latexfileversion.doc.tar.xz 28-Feb-2019 02:48 928 +latexfileversion.i386-freebsd.r25012.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.i386-freebsd.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.i386-linux.r25012.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.i386-linux.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.i386-netbsd.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.i386-solaris.r25012.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.i386-solaris.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.r29349.tar.xz 28-Feb-2019 02:48 1652 +latexfileversion.tar.xz 28-Feb-2019 02:48 1652 +latexfileversion.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +latexfileversion.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +latexfileversion.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.x86_64-cygwin.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:48 352 +latexfileversion.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:48 352 +latexfileversion.x86_64-linux.r25012.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.x86_64-linux.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:48 348 +latexfileversion.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:48 348 +latexfileversion.x86_64-solaris.r25012.tar.xz 28-Feb-2019 02:48 344 +latexfileversion.x86_64-solaris.tar.xz 28-Feb-2019 02:48 344 +latexgit.doc.r54811.tar.xz 20-Apr-2020 23:55 446104 +latexgit.doc.tar.xz 20-Apr-2020 23:55 446104 +latexgit.r54811.tar.xz 20-Apr-2020 23:55 1840 +latexgit.source.r54811.tar.xz 20-Apr-2020 23:55 5280 +latexgit.source.tar.xz 20-Apr-2020 23:55 5280 +latexgit.tar.xz 20-Apr-2020 23:55 1840 +latexindent.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:48 344 +latexindent.aarch64-linux.tar.xz 28-Feb-2019 02:48 344 +latexindent.amd64-freebsd.r32150.tar.xz 28-Feb-2019 02:48 344 +latexindent.amd64-freebsd.tar.xz 28-Feb-2019 02:48 344 +latexindent.amd64-netbsd.r32150.tar.xz 28-Feb-2019 02:48 344 +latexindent.amd64-netbsd.tar.xz 28-Feb-2019 02:48 344 +latexindent.armhf-linux.r32150.tar.xz 28-Feb-2019 02:48 344 +latexindent.armhf-linux.tar.xz 28-Feb-2019 02:48 344 +latexindent.doc.r76064.tar.xz 15-Aug-2025 23:50 1318764 +latexindent.doc.tar.xz 15-Aug-2025 23:50 1318764 +latexindent.i386-freebsd.r32150.tar.xz 28-Feb-2019 02:48 344 +latexindent.i386-freebsd.tar.xz 28-Feb-2019 02:48 344 +latexindent.i386-linux.r32150.tar.xz 28-Feb-2019 02:48 344 +latexindent.i386-linux.tar.xz 28-Feb-2019 02:48 344 +latexindent.i386-netbsd.r32150.tar.xz 28-Feb-2019 02:48 344 +latexindent.i386-netbsd.tar.xz 28-Feb-2019 02:48 344 +latexindent.i386-solaris.r32150.tar.xz 28-Feb-2019 02:48 344 +latexindent.i386-solaris.tar.xz 28-Feb-2019 02:48 344 +latexindent.r76064.tar.xz 15-Aug-2025 23:50 76500 +latexindent.tar.xz 15-Aug-2025 23:50 76500 +latexindent.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +latexindent.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +latexindent.windows.r76064.tar.xz 15-Aug-2025 23:50 3885760 +latexindent.windows.tar.xz 15-Aug-2025 23:50 3885760 +latexindent.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:48 344 +latexindent.x86_64-cygwin.tar.xz 28-Feb-2019 02:48 344 +latexindent.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:48 352 +latexindent.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:48 352 +latexindent.x86_64-linux.r32150.tar.xz 28-Feb-2019 02:48 344 +latexindent.x86_64-linux.tar.xz 28-Feb-2019 02:48 344 +latexindent.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:48 348 +latexindent.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:48 348 +latexindent.x86_64-solaris.r32150.tar.xz 28-Feb-2019 02:48 344 +latexindent.x86_64-solaris.tar.xz 28-Feb-2019 02:48 344 +latexmk.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:48 340 +latexmk.aarch64-linux.tar.xz 28-Feb-2019 02:48 340 +latexmk.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:48 340 +latexmk.amd64-freebsd.tar.xz 28-Feb-2019 02:48 340 +latexmk.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:48 340 +latexmk.amd64-netbsd.tar.xz 28-Feb-2019 02:48 340 +latexmk.armhf-linux.r30015.tar.xz 28-Feb-2019 02:48 340 +latexmk.armhf-linux.tar.xz 28-Feb-2019 02:48 340 +latexmk.doc.r75540.tar.xz 18-Jun-2025 23:48 580740 +latexmk.doc.tar.xz 18-Jun-2025 23:48 580740 +latexmk.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:48 340 +latexmk.i386-freebsd.tar.xz 28-Feb-2019 02:48 340 +latexmk.i386-linux.r10937.tar.xz 28-Feb-2019 02:48 340 +latexmk.i386-linux.tar.xz 28-Feb-2019 02:48 340 +latexmk.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:48 336 +latexmk.i386-netbsd.tar.xz 28-Feb-2019 02:48 336 +latexmk.i386-solaris.r10937.tar.xz 28-Feb-2019 02:48 340 +latexmk.i386-solaris.tar.xz 28-Feb-2019 02:48 340 +latexmk.r75540.tar.xz 18-Jun-2025 23:48 123912 +latexmk.tar.xz 18-Jun-2025 23:48 123912 +latexmk.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +latexmk.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +latexmk.windows.r65891.tar.xz 20-Feb-2023 22:12 2300 +latexmk.windows.tar.xz 20-Feb-2023 22:12 2300 +latexmk.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:48 340 +latexmk.x86_64-cygwin.tar.xz 28-Feb-2019 02:48 340 +latexmk.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:48 348 +latexmk.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:48 348 +latexmk.x86_64-linux.r10937.tar.xz 28-Feb-2019 02:48 340 +latexmk.x86_64-linux.tar.xz 28-Feb-2019 02:48 340 +latexmk.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:48 344 +latexmk.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:48 344 +latexmk.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:48 340 +latexmk.x86_64-solaris.tar.xz 28-Feb-2019 02:48 340 +latexmp.doc.r55643.tar.xz 23-Jun-2020 23:57 147444 +latexmp.doc.tar.xz 23-Jun-2020 23:57 147444 +latexmp.r55643.tar.xz 23-Jun-2020 23:57 5268 +latexmp.tar.xz 23-Jun-2020 23:57 5268 +latexpand.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:48 340 +latexpand.aarch64-linux.tar.xz 28-Feb-2019 02:48 340 +latexpand.amd64-freebsd.r27025.tar.xz 28-Feb-2019 02:48 340 +latexpand.amd64-freebsd.tar.xz 28-Feb-2019 02:48 340 +latexpand.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:48 340 +latexpand.amd64-netbsd.tar.xz 28-Feb-2019 02:48 340 +latexpand.armhf-linux.r30015.tar.xz 28-Feb-2019 02:48 336 +latexpand.armhf-linux.tar.xz 28-Feb-2019 02:48 336 +latexpand.doc.r66226.tar.xz 28-Feb-2023 16:27 3244 +latexpand.doc.tar.xz 28-Feb-2023 16:27 3244 +latexpand.i386-freebsd.r27025.tar.xz 28-Feb-2019 02:48 340 +latexpand.i386-freebsd.tar.xz 28-Feb-2019 02:48 340 +latexpand.i386-linux.r27025.tar.xz 28-Feb-2019 02:48 340 +latexpand.i386-linux.tar.xz 28-Feb-2019 02:48 340 +latexpand.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:48 336 +latexpand.i386-netbsd.tar.xz 28-Feb-2019 02:48 336 +latexpand.i386-solaris.r27025.tar.xz 28-Feb-2019 02:48 340 +latexpand.i386-solaris.tar.xz 28-Feb-2019 02:48 340 +latexpand.r66226.tar.xz 28-Feb-2023 16:27 7644 +latexpand.tar.xz 28-Feb-2023 16:27 7644 +latexpand.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 336 +latexpand.universal-darwin.tar.xz 25-Feb-2021 18:16 336 +latexpand.windows.r65891.tar.xz 20-Feb-2023 22:12 2304 +latexpand.windows.tar.xz 20-Feb-2023 22:12 2304 +latexpand.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:48 340 +latexpand.x86_64-cygwin.tar.xz 28-Feb-2019 02:48 340 +latexpand.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:48 344 +latexpand.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:48 344 +latexpand.x86_64-linux.r27025.tar.xz 28-Feb-2019 02:48 336 +latexpand.x86_64-linux.tar.xz 28-Feb-2019 02:48 336 +latexpand.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:48 344 +latexpand.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:48 344 +latexpand.x86_64-solaris.r27025.tar.xz 28-Feb-2019 02:48 340 +latexpand.x86_64-solaris.tar.xz 28-Feb-2019 02:48 340 +latino-sine-flexione.doc.r69568.tar.xz 24-Jan-2024 00:46 3944 +latino-sine-flexione.doc.tar.xz 24-Jan-2024 00:46 3944 +latino-sine-flexione.r69568.tar.xz 24-Jan-2024 00:46 1372 +latino-sine-flexione.tar.xz 24-Jan-2024 00:46 1372 +lato.doc.r54512.tar.xz 24-Mar-2020 00:59 1235932 +lato.doc.tar.xz 24-Mar-2020 00:59 1235932 +lato.r54512.tar.xz 24-Mar-2020 00:59 12721308 +lato.tar.xz 24-Mar-2020 00:59 12721308 +layaureo.doc.r19087.tar.xz 28-Feb-2019 02:48 126876 +layaureo.doc.tar.xz 28-Feb-2019 02:48 126876 +layaureo.r19087.tar.xz 28-Feb-2019 02:48 1748 +layaureo.source.r19087.tar.xz 28-Feb-2019 02:48 8972 +layaureo.source.tar.xz 28-Feb-2019 02:48 8972 +layaureo.tar.xz 28-Feb-2019 02:48 1748 +layouts.doc.r42428.tar.xz 28-Feb-2019 02:48 477556 +layouts.doc.tar.xz 28-Feb-2019 02:48 477556 +layouts.r42428.tar.xz 28-Feb-2019 02:48 13564 +layouts.source.r42428.tar.xz 28-Feb-2019 02:48 40952 +layouts.source.tar.xz 28-Feb-2019 02:48 40952 +layouts.tar.xz 28-Feb-2019 02:48 13564 +lazylist.doc.r17691.tar.xz 28-Feb-2019 02:48 120736 +lazylist.doc.tar.xz 28-Feb-2019 02:48 120736 +lazylist.r17691.tar.xz 28-Feb-2019 02:48 1680 +lazylist.tar.xz 28-Feb-2019 02:48 1680 +lccaps.doc.r46432.tar.xz 28-Feb-2019 02:48 151000 +lccaps.doc.tar.xz 28-Feb-2019 02:48 151000 +lccaps.r46432.tar.xz 28-Feb-2019 02:48 1544 +lccaps.source.r46432.tar.xz 28-Feb-2019 02:48 2980 +lccaps.source.tar.xz 28-Feb-2019 02:48 2980 +lccaps.tar.xz 28-Feb-2019 02:48 1544 +lcd.doc.r16549.tar.xz 28-Feb-2019 02:48 64288 +lcd.doc.tar.xz 28-Feb-2019 02:48 64288 +lcd.r16549.tar.xz 28-Feb-2019 02:48 3220 +lcd.source.r16549.tar.xz 28-Feb-2019 02:48 10796 +lcd.source.tar.xz 28-Feb-2019 02:48 10796 +lcd.tar.xz 28-Feb-2019 02:48 3220 +lcdftypetools.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:48 650108 +lcdftypetools.aarch64-linux.tar.xz 13-Feb-2025 00:48 650108 +lcdftypetools.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:53 716100 +lcdftypetools.amd64-freebsd.tar.xz 09-Feb-2025 00:53 716100 +lcdftypetools.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:15 696368 +lcdftypetools.amd64-netbsd.tar.xz 09-Feb-2025 18:15 696368 +lcdftypetools.armhf-linux.r73793.tar.xz 09-Feb-2025 00:53 535972 +lcdftypetools.armhf-linux.tar.xz 09-Feb-2025 00:53 535972 +lcdftypetools.doc.r70015.tar.xz 21-Feb-2024 00:46 257848 +lcdftypetools.doc.tar.xz 21-Feb-2024 00:46 257848 +lcdftypetools.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:53 715736 +lcdftypetools.i386-freebsd.tar.xz 09-Feb-2025 00:53 715736 +lcdftypetools.i386-linux.r73792.tar.xz 09-Feb-2025 00:53 779236 +lcdftypetools.i386-linux.tar.xz 09-Feb-2025 00:53 779236 +lcdftypetools.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:15 671124 +lcdftypetools.i386-netbsd.tar.xz 09-Feb-2025 18:15 671124 +lcdftypetools.i386-solaris.r73792.tar.xz 09-Feb-2025 00:53 777148 +lcdftypetools.i386-solaris.tar.xz 09-Feb-2025 00:53 777148 +lcdftypetools.r70015.tar.xz 21-Feb-2024 00:46 976 +lcdftypetools.tar.xz 21-Feb-2024 00:46 976 +lcdftypetools.universal-darwin.r73806.tar.xz 09-Feb-2025 18:15 1476220 +lcdftypetools.universal-darwin.tar.xz 09-Feb-2025 18:15 1476220 +lcdftypetools.windows.r73796.tar.xz 09-Feb-2025 18:15 841616 +lcdftypetools.windows.tar.xz 09-Feb-2025 18:15 841616 +lcdftypetools.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 596940 +lcdftypetools.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 596940 +lcdftypetools.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:48 633572 +lcdftypetools.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:48 633572 +lcdftypetools.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:46 703632 +lcdftypetools.x86_64-linux.tar.xz 19-Feb-2025 00:46 703632 +lcdftypetools.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:53 730620 +lcdftypetools.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:53 730620 +lcdftypetools.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:53 798568 +lcdftypetools.x86_64-solaris.tar.xz 09-Feb-2025 00:53 798568 +lcg.doc.r31474.tar.xz 28-Feb-2019 02:49 247496 +lcg.doc.tar.xz 28-Feb-2019 02:49 247496 +lcg.r31474.tar.xz 28-Feb-2019 02:49 2668 +lcg.source.r31474.tar.xz 28-Feb-2019 02:49 6444 +lcg.source.tar.xz 28-Feb-2019 02:49 6444 +lcg.tar.xz 28-Feb-2019 02:49 2668 +lcyw.doc.r15878.tar.xz 28-Feb-2019 02:49 107760 +lcyw.doc.tar.xz 28-Feb-2019 02:49 107760 +lcyw.r15878.tar.xz 28-Feb-2019 02:49 3996 +lcyw.source.r15878.tar.xz 28-Feb-2019 02:49 7420 +lcyw.source.tar.xz 28-Feb-2019 02:49 7420 +lcyw.tar.xz 28-Feb-2019 02:49 3996 +leading.doc.r15878.tar.xz 28-Feb-2019 02:49 84128 +leading.doc.tar.xz 28-Feb-2019 02:49 84128 +leading.r15878.tar.xz 28-Feb-2019 02:49 1140 +leading.source.r15878.tar.xz 28-Feb-2019 02:49 3576 +leading.source.tar.xz 28-Feb-2019 02:49 3576 +leading.tar.xz 28-Feb-2019 02:49 1140 +leadsheets.doc.r61504.tar.xz 06-Jan-2022 00:53 2544404 +leadsheets.doc.tar.xz 06-Jan-2022 00:53 2544404 +leadsheets.r61504.tar.xz 06-Jan-2022 00:53 17044 +leadsheets.tar.xz 06-Jan-2022 00:53 17044 +leaflet.doc.r70652.tar.xz 16-Mar-2024 00:48 386196 +leaflet.doc.tar.xz 16-Mar-2024 00:48 386196 +leaflet.r70652.tar.xz 16-Mar-2024 00:48 5688 +leaflet.source.r70652.tar.xz 16-Mar-2024 00:48 13896 +leaflet.source.tar.xz 16-Mar-2024 00:48 13896 +leaflet.tar.xz 16-Mar-2024 00:48 5688 +lebhart.doc.r70049.tar.xz 22-Feb-2024 00:45 8564 +lebhart.doc.tar.xz 22-Feb-2024 00:45 8564 +lebhart.r70049.tar.xz 22-Feb-2024 00:45 5252 +lebhart.tar.xz 22-Feb-2024 00:45 5252 +lecturenotes.doc.r74699.tar.xz 20-Mar-2025 00:50 170100 +lecturenotes.doc.tar.xz 20-Mar-2025 00:50 170100 +lecturenotes.r74699.tar.xz 20-Mar-2025 00:50 6756 +lecturenotes.tar.xz 20-Mar-2025 00:50 6756 +lecturer.doc.r23916.tar.xz 28-Feb-2019 02:49 1126000 +lecturer.doc.tar.xz 28-Feb-2019 02:49 1126000 +lecturer.r23916.tar.xz 28-Feb-2019 02:49 18668 +lecturer.tar.xz 28-Feb-2019 02:49 18668 +lectures.doc.r74632.tar.xz 16-Mar-2025 01:11 118200 +lectures.doc.tar.xz 16-Mar-2025 01:11 118200 +lectures.r74632.tar.xz 16-Mar-2025 01:11 6868 +lectures.tar.xz 16-Mar-2025 01:11 6868 +lectureslides.doc.r62292.tar.xz 01-Mar-2022 00:32 48784 +lectureslides.doc.tar.xz 01-Mar-2022 00:32 48784 +lectureslides.r62292.tar.xz 01-Mar-2022 00:32 1372 +lectureslides.tar.xz 01-Mar-2022 00:32 1372 +ledmac.doc.r41811.tar.xz 28-Feb-2019 02:49 2362392 +ledmac.doc.tar.xz 28-Feb-2019 02:49 2362392 +ledmac.r41811.tar.xz 28-Feb-2019 02:49 25456 +ledmac.source.r41811.tar.xz 28-Feb-2019 02:49 142344 +ledmac.source.tar.xz 28-Feb-2019 02:49 142344 +ledmac.tar.xz 28-Feb-2019 02:49 25456 +leftidx.doc.r15878.tar.xz 28-Feb-2019 02:49 50916 +leftidx.doc.tar.xz 28-Feb-2019 02:49 50916 +leftidx.r15878.tar.xz 28-Feb-2019 02:49 944 +leftidx.source.r15878.tar.xz 28-Feb-2019 02:49 3176 +leftidx.source.tar.xz 28-Feb-2019 02:49 3176 +leftidx.tar.xz 28-Feb-2019 02:49 944 +leftindex.doc.r69660.tar.xz 02-Feb-2024 00:46 90384 +leftindex.doc.tar.xz 02-Feb-2024 00:46 90384 +leftindex.r69660.tar.xz 02-Feb-2024 00:46 1496 +leftindex.tar.xz 02-Feb-2024 00:46 1496 +leipzig.doc.r52450.tar.xz 19-Oct-2019 23:55 595424 +leipzig.doc.tar.xz 19-Oct-2019 23:55 595424 +leipzig.r52450.tar.xz 19-Oct-2019 23:55 5708 +leipzig.source.r52450.tar.xz 19-Oct-2019 23:55 25756 +leipzig.source.tar.xz 19-Oct-2019 23:55 25756 +leipzig.tar.xz 19-Oct-2019 23:55 5708 +lengthconvert.doc.r55064.tar.xz 07-May-2020 23:55 443500 +lengthconvert.doc.tar.xz 07-May-2020 23:55 443500 +lengthconvert.r55064.tar.xz 07-May-2020 23:55 2020 +lengthconvert.source.r55064.tar.xz 07-May-2020 23:55 4160 +lengthconvert.source.tar.xz 07-May-2020 23:55 4160 +lengthconvert.tar.xz 07-May-2020 23:55 2020 +leporello.doc.r76348.tar.xz 18-Sep-2025 23:44 447328 +leporello.doc.tar.xz 18-Sep-2025 23:44 447328 +leporello.r76348.tar.xz 18-Sep-2025 23:44 9904 +leporello.tar.xz 18-Sep-2025 23:44 9904 +lete-sans-math.doc.r76200.tar.xz 31-Aug-2025 23:49 1999712 +lete-sans-math.doc.tar.xz 31-Aug-2025 23:49 1999712 +lete-sans-math.r76200.tar.xz 31-Aug-2025 23:49 276340 +lete-sans-math.tar.xz 31-Aug-2025 23:49 276340 +letgut.doc.r72713.tar.xz 31-Oct-2024 00:47 1335372 +letgut.doc.tar.xz 31-Oct-2024 00:47 1335372 +letgut.r72713.tar.xz 31-Oct-2024 00:47 53648 +letgut.source.r72713.tar.xz 31-Oct-2024 00:47 68744 +letgut.source.tar.xz 31-Oct-2024 00:47 68744 +letgut.tar.xz 31-Oct-2024 00:47 53648 +letltxmacro.doc.r53022.tar.xz 05-Dec-2019 00:53 290936 +letltxmacro.doc.tar.xz 05-Dec-2019 00:53 290936 +letltxmacro.r53022.tar.xz 05-Dec-2019 00:53 2092 +letltxmacro.source.r53022.tar.xz 05-Dec-2019 00:53 5912 +letltxmacro.source.tar.xz 05-Dec-2019 00:53 5912 +letltxmacro.tar.xz 05-Dec-2019 00:53 2092 +letterspacing.r54266.tar.xz 13-Mar-2020 01:05 5180 +letterspacing.tar.xz 13-Mar-2020 01:05 5180 +letterswitharrows.doc.r72723.tar.xz 01-Nov-2024 00:51 468336 +letterswitharrows.doc.tar.xz 01-Nov-2024 00:51 468336 +letterswitharrows.r72723.tar.xz 01-Nov-2024 00:51 3392 +letterswitharrows.source.r72723.tar.xz 01-Nov-2024 00:51 5572 +letterswitharrows.source.tar.xz 01-Nov-2024 00:51 5572 +letterswitharrows.tar.xz 01-Nov-2024 00:51 3392 +lettre.doc.r54722.tar.xz 14-Apr-2020 23:54 1005116 +lettre.doc.tar.xz 14-Apr-2020 23:54 1005116 +lettre.r54722.tar.xz 14-Apr-2020 23:54 25428 +lettre.tar.xz 14-Apr-2020 23:54 25428 +lettrine.doc.r73660.tar.xz 01-Feb-2025 00:53 458000 +lettrine.doc.tar.xz 01-Feb-2025 00:53 458000 +lettrine.r73660.tar.xz 01-Feb-2025 00:53 8492 +lettrine.source.r73660.tar.xz 01-Feb-2025 00:53 16016 +lettrine.source.tar.xz 01-Feb-2025 00:53 16016 +lettrine.tar.xz 01-Feb-2025 00:53 8492 +levy.doc.r21750.tar.xz 28-Feb-2019 02:49 24736 +levy.doc.tar.xz 28-Feb-2019 02:49 24736 +levy.r21750.tar.xz 28-Feb-2019 02:49 34736 +levy.tar.xz 28-Feb-2019 02:49 34736 +lewis.doc.r15878.tar.xz 28-Feb-2019 02:49 40844 +lewis.doc.tar.xz 28-Feb-2019 02:49 40844 +lewis.r15878.tar.xz 28-Feb-2019 02:49 1028 +lewis.tar.xz 28-Feb-2019 02:49 1028 +lexend.doc.r57564.tar.xz 31-Jan-2021 00:58 143084 +lexend.doc.tar.xz 31-Jan-2021 00:58 143084 +lexend.r57564.tar.xz 31-Jan-2021 00:58 186932 +lexend.tar.xz 31-Jan-2021 00:58 186932 +lexikon.doc.r17364.tar.xz 28-Feb-2019 02:49 180172 +lexikon.doc.tar.xz 28-Feb-2019 02:49 180172 +lexikon.r17364.tar.xz 28-Feb-2019 02:49 2196 +lexikon.tar.xz 28-Feb-2019 02:49 2196 +lexref.doc.r36026.tar.xz 28-Feb-2019 02:49 386412 +lexref.doc.tar.xz 28-Feb-2019 02:49 386412 +lexref.r36026.tar.xz 28-Feb-2019 02:49 4008 +lexref.tar.xz 28-Feb-2019 02:49 4008 +lfb.doc.r15878.tar.xz 28-Feb-2019 02:49 35492 +lfb.doc.tar.xz 28-Feb-2019 02:49 35492 +lfb.r15878.tar.xz 28-Feb-2019 02:49 18296 +lfb.tar.xz 28-Feb-2019 02:49 18296 +lgreek.doc.r21818.tar.xz 28-Feb-2019 02:49 203112 +lgreek.doc.tar.xz 28-Feb-2019 02:49 203112 +lgreek.r21818.tar.xz 28-Feb-2019 02:49 1724 +lgreek.tar.xz 28-Feb-2019 02:49 1724 +lgrmath.doc.r65038.tar.xz 18-Nov-2022 00:52 124328 +lgrmath.doc.tar.xz 18-Nov-2022 00:52 124328 +lgrmath.r65038.tar.xz 18-Nov-2022 00:52 3168 +lgrmath.source.r65038.tar.xz 18-Nov-2022 00:52 13204 +lgrmath.source.tar.xz 18-Nov-2022 00:52 13204 +lgrmath.tar.xz 18-Nov-2022 00:52 3168 +lh.doc.r15878.tar.xz 28-Feb-2019 02:49 55428 +lh.doc.tar.xz 28-Feb-2019 02:49 55428 +lh.r15878.tar.xz 28-Feb-2019 02:49 172080 +lh.source.r15878.tar.xz 28-Feb-2019 02:49 41756 +lh.source.tar.xz 28-Feb-2019 02:49 41756 +lh.tar.xz 28-Feb-2019 02:49 172080 +lhcyr.r31795.tar.xz 28-Feb-2019 02:49 36192 +lhcyr.source.r31795.tar.xz 28-Feb-2019 02:49 2352 +lhcyr.source.tar.xz 28-Feb-2019 02:49 2352 +lhcyr.tar.xz 28-Feb-2019 02:49 36192 +lhelp.doc.r23638.tar.xz 28-Feb-2019 02:49 225808 +lhelp.doc.tar.xz 28-Feb-2019 02:49 225808 +lhelp.r23638.tar.xz 28-Feb-2019 02:49 5988 +lhelp.source.r23638.tar.xz 28-Feb-2019 02:49 22548 +lhelp.source.tar.xz 28-Feb-2019 02:49 22548 +lhelp.tar.xz 28-Feb-2019 02:49 5988 +libertine.doc.r73037.tar.xz 05-Dec-2024 00:50 1527500 +libertine.doc.tar.xz 05-Dec-2024 00:50 1527500 +libertine.r73037.tar.xz 05-Dec-2024 00:50 13846940 +libertine.tar.xz 05-Dec-2024 00:50 13846940 +libertinegc.doc.r44616.tar.xz 28-Feb-2019 02:49 302488 +libertinegc.doc.tar.xz 28-Feb-2019 02:49 302488 +libertinegc.r44616.tar.xz 28-Feb-2019 02:49 39208 +libertinegc.tar.xz 28-Feb-2019 02:49 39208 +libertinus-fonts.doc.r72484.tar.xz 07-Oct-2024 23:49 488236 +libertinus-fonts.doc.tar.xz 07-Oct-2024 23:49 488236 +libertinus-fonts.r72484.tar.xz 07-Oct-2024 23:49 1795384 +libertinus-fonts.tar.xz 07-Oct-2024 23:49 1795384 +libertinus-otf.doc.r75637.tar.xz 28-Jun-2025 23:52 1309440 +libertinus-otf.doc.tar.xz 28-Jun-2025 23:52 1309440 +libertinus-otf.r75637.tar.xz 28-Jun-2025 23:52 4412 +libertinus-otf.tar.xz 28-Jun-2025 23:52 4412 +libertinus-type1.doc.r73445.tar.xz 14-Jan-2025 00:47 1269708 +libertinus-type1.doc.tar.xz 14-Jan-2025 00:47 1269708 +libertinus-type1.r73445.tar.xz 14-Jan-2025 00:47 7732984 +libertinus-type1.tar.xz 14-Jan-2025 00:47 7732984 +libertinus.doc.r61719.tar.xz 24-Jan-2022 00:54 16240 +libertinus.doc.tar.xz 24-Jan-2022 00:54 16240 +libertinus.r61719.tar.xz 24-Jan-2022 00:54 972 +libertinus.tar.xz 24-Jan-2022 00:54 972 +libertinust1math.doc.r71428.tar.xz 04-Jun-2024 23:46 1541584 +libertinust1math.doc.tar.xz 04-Jun-2024 23:46 1541584 +libertinust1math.r71428.tar.xz 04-Jun-2024 23:46 1248816 +libertinust1math.tar.xz 04-Jun-2024 23:46 1248816 +libgreek.doc.r75712.tar.xz 07-Jul-2025 23:51 159188 +libgreek.doc.tar.xz 07-Jul-2025 23:51 159188 +libgreek.r75712.tar.xz 07-Jul-2025 23:51 4488 +libgreek.source.r75712.tar.xz 07-Jul-2025 23:51 17024 +libgreek.source.tar.xz 07-Jul-2025 23:51 17024 +libgreek.tar.xz 07-Jul-2025 23:51 4488 +librarian.doc.r19880.tar.xz 28-Feb-2019 02:50 162064 +librarian.doc.tar.xz 28-Feb-2019 02:50 162064 +librarian.r19880.tar.xz 28-Feb-2019 02:50 6860 +librarian.tar.xz 28-Feb-2019 02:50 6860 +librebaskerville.doc.r64421.tar.xz 17-Sep-2022 23:54 33184 +librebaskerville.doc.tar.xz 17-Sep-2022 23:54 33184 +librebaskerville.r64421.tar.xz 17-Sep-2022 23:54 575508 +librebaskerville.tar.xz 17-Sep-2022 23:54 575508 +librebodoni.doc.r64431.tar.xz 18-Sep-2022 23:54 20192 +librebodoni.doc.tar.xz 18-Sep-2022 23:54 20192 +librebodoni.r64431.tar.xz 18-Sep-2022 23:54 547356 +librebodoni.tar.xz 18-Sep-2022 23:54 547356 +librecaslon.doc.r64432.tar.xz 18-Sep-2022 23:54 107940 +librecaslon.doc.tar.xz 18-Sep-2022 23:54 107940 +librecaslon.r64432.tar.xz 18-Sep-2022 23:54 693252 +librecaslon.tar.xz 18-Sep-2022 23:54 693252 +librefranklin.doc.r64441.tar.xz 19-Sep-2022 23:53 31684 +librefranklin.doc.tar.xz 19-Sep-2022 23:53 31684 +librefranklin.r64441.tar.xz 19-Sep-2022 23:53 2995400 +librefranklin.tar.xz 19-Sep-2022 23:53 2995400 +libris.doc.r72484.tar.xz 07-Oct-2024 23:49 1466788 +libris.doc.tar.xz 07-Oct-2024 23:49 1466788 +libris.r72484.tar.xz 07-Oct-2024 23:49 240580 +libris.source.r72484.tar.xz 07-Oct-2024 23:49 19072 +libris.source.tar.xz 07-Oct-2024 23:49 19072 +libris.tar.xz 07-Oct-2024 23:49 240580 +lie-hasse.doc.r75301.tar.xz 23-May-2025 23:46 626284 +lie-hasse.doc.tar.xz 23-May-2025 23:46 626284 +lie-hasse.r75301.tar.xz 23-May-2025 23:46 11056 +lie-hasse.tar.xz 23-May-2025 23:46 11056 +liederbuch.doc.r73548.tar.xz 22-Jan-2025 00:47 352208 +liederbuch.doc.tar.xz 22-Jan-2025 00:47 352208 +liederbuch.r73548.tar.xz 22-Jan-2025 00:47 12188 +liederbuch.tar.xz 22-Jan-2025 00:47 12188 +liftarm.doc.r75884.tar.xz 24-Jul-2025 23:48 2025200 +liftarm.doc.tar.xz 24-Jul-2025 23:48 2025200 +liftarm.r75884.tar.xz 24-Jul-2025 23:48 6236 +liftarm.tar.xz 24-Jul-2025 23:48 6236 +light-latex-make.aarch64-linux.r56352.tar.xz 15-Sep-2020 23:57 348 +light-latex-make.aarch64-linux.tar.xz 15-Sep-2020 23:57 348 +light-latex-make.amd64-freebsd.r56352.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.amd64-freebsd.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.amd64-netbsd.r56352.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.amd64-netbsd.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.armhf-linux.r56352.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.armhf-linux.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.doc.r66473.tar.xz 09-Mar-2023 00:54 200276 +light-latex-make.doc.tar.xz 09-Mar-2023 00:54 200276 +light-latex-make.i386-freebsd.r56352.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.i386-freebsd.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.i386-linux.r56352.tar.xz 15-Sep-2020 23:57 348 +light-latex-make.i386-linux.tar.xz 15-Sep-2020 23:57 348 +light-latex-make.i386-netbsd.r56352.tar.xz 15-Sep-2020 23:57 348 +light-latex-make.i386-netbsd.tar.xz 15-Sep-2020 23:57 348 +light-latex-make.i386-solaris.r56352.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.i386-solaris.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.r66473.tar.xz 09-Mar-2023 00:54 10728 +light-latex-make.tar.xz 09-Mar-2023 00:54 10728 +light-latex-make.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 348 +light-latex-make.universal-darwin.tar.xz 25-Feb-2021 18:16 348 +light-latex-make.windows.r65891.tar.xz 20-Feb-2023 22:12 2316 +light-latex-make.windows.tar.xz 20-Feb-2023 22:12 2316 +light-latex-make.x86_64-cygwin.r56352.tar.xz 15-Sep-2020 23:57 348 +light-latex-make.x86_64-cygwin.tar.xz 15-Sep-2020 23:57 348 +light-latex-make.x86_64-darwinlegacy.r56352.tar.xz 15-Sep-2020 23:57 356 +light-latex-make.x86_64-darwinlegacy.tar.xz 15-Sep-2020 23:57 356 +light-latex-make.x86_64-linux.r56352.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.x86_64-linux.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.x86_64-linuxmusl.r56352.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.x86_64-linuxmusl.tar.xz 15-Sep-2020 23:57 352 +light-latex-make.x86_64-solaris.r56352.tar.xz 15-Sep-2020 23:57 348 +light-latex-make.x86_64-solaris.tar.xz 15-Sep-2020 23:57 348 +ligtype.doc.r67601.tar.xz 10-Jul-2023 23:45 79556 +ligtype.doc.tar.xz 10-Jul-2023 23:45 79556 +ligtype.r67601.tar.xz 10-Jul-2023 23:45 11168 +ligtype.tar.xz 10-Jul-2023 23:45 11168 +lilyglyphs.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.aarch64-linux.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.amd64-freebsd.r31696.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.amd64-freebsd.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.amd64-netbsd.r31696.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.amd64-netbsd.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.armhf-linux.r31696.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.armhf-linux.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.doc.r56473.tar.xz 29-Sep-2020 23:56 1152316 +lilyglyphs.doc.tar.xz 29-Sep-2020 23:56 1152316 +lilyglyphs.i386-freebsd.r31696.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.i386-freebsd.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.i386-linux.r31696.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.i386-linux.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.i386-netbsd.r31696.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.i386-netbsd.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.i386-solaris.r31696.tar.xz 28-Feb-2019 02:50 400 +lilyglyphs.i386-solaris.tar.xz 28-Feb-2019 02:50 400 +lilyglyphs.r56473.tar.xz 29-Sep-2020 23:56 370160 +lilyglyphs.source.r56473.tar.xz 29-Sep-2020 23:56 139436 +lilyglyphs.source.tar.xz 29-Sep-2020 23:56 139436 +lilyglyphs.tar.xz 29-Sep-2020 23:56 370160 +lilyglyphs.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 404 +lilyglyphs.universal-darwin.tar.xz 25-Feb-2021 18:16 404 +lilyglyphs.windows.r65891.tar.xz 20-Feb-2023 22:12 2404 +lilyglyphs.windows.tar.xz 20-Feb-2023 22:12 2404 +lilyglyphs.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.x86_64-cygwin.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:50 412 +lilyglyphs.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:50 412 +lilyglyphs.x86_64-linux.r31696.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.x86_64-linux.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:50 408 +lilyglyphs.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:50 408 +lilyglyphs.x86_64-solaris.r31696.tar.xz 28-Feb-2019 02:50 404 +lilyglyphs.x86_64-solaris.tar.xz 28-Feb-2019 02:50 404 +limap.doc.r44863.tar.xz 28-Feb-2019 02:50 263404 +limap.doc.tar.xz 28-Feb-2019 02:50 263404 +limap.r44863.tar.xz 28-Feb-2019 02:50 4524 +limap.source.r44863.tar.xz 28-Feb-2019 02:50 18916 +limap.source.tar.xz 28-Feb-2019 02:50 18916 +limap.tar.xz 28-Feb-2019 02:50 4524 +limecv.doc.r75301.tar.xz 23-May-2025 23:46 380648 +limecv.doc.tar.xz 23-May-2025 23:46 380648 +limecv.r75301.tar.xz 23-May-2025 23:46 8416 +limecv.source.r75301.tar.xz 23-May-2025 23:46 20000 +limecv.source.tar.xz 23-May-2025 23:46 20000 +limecv.tar.xz 23-May-2025 23:46 8416 +lineara.doc.r63169.tar.xz 28-Apr-2022 23:52 165068 +lineara.doc.tar.xz 28-Apr-2022 23:52 165068 +lineara.r63169.tar.xz 28-Apr-2022 23:52 151824 +lineara.source.r63169.tar.xz 28-Apr-2022 23:52 3820 +lineara.source.tar.xz 28-Apr-2022 23:52 3820 +lineara.tar.xz 28-Apr-2022 23:52 151824 +linearregression.doc.r73123.tar.xz 15-Dec-2024 01:10 389956 +linearregression.doc.tar.xz 15-Dec-2024 01:10 389956 +linearregression.r73123.tar.xz 15-Dec-2024 01:10 3376 +linearregression.source.r73123.tar.xz 15-Dec-2024 01:10 15724 +linearregression.source.tar.xz 15-Dec-2024 01:10 15724 +linearregression.tar.xz 15-Dec-2024 01:10 3376 +linebreaker.doc.r66639.tar.xz 22-Mar-2023 00:52 51572 +linebreaker.doc.tar.xz 22-Mar-2023 00:52 51572 +linebreaker.r66639.tar.xz 22-Mar-2023 00:52 6368 +linebreaker.tar.xz 22-Mar-2023 00:52 6368 +linegoal.doc.r21523.tar.xz 28-Feb-2019 02:50 138308 +linegoal.doc.tar.xz 28-Feb-2019 02:50 138308 +linegoal.r21523.tar.xz 28-Feb-2019 02:50 1988 +linegoal.source.r21523.tar.xz 28-Feb-2019 02:50 10356 +linegoal.source.tar.xz 28-Feb-2019 02:50 10356 +linegoal.tar.xz 28-Feb-2019 02:50 1988 +lineno.doc.r75200.tar.xz 13-May-2025 23:51 849012 +lineno.doc.tar.xz 13-May-2025 23:51 849012 +lineno.r75200.tar.xz 13-May-2025 23:51 62808 +lineno.tar.xz 13-May-2025 23:51 62808 +ling-macros.doc.r42268.tar.xz 28-Feb-2019 02:50 306420 +ling-macros.doc.tar.xz 28-Feb-2019 02:50 306420 +ling-macros.r42268.tar.xz 28-Feb-2019 02:50 5428 +ling-macros.tar.xz 28-Feb-2019 02:50 5428 +linguex.doc.r30815.tar.xz 28-Feb-2019 02:50 274676 +linguex.doc.tar.xz 28-Feb-2019 02:50 274676 +linguex.r30815.tar.xz 28-Feb-2019 02:50 6924 +linguex.tar.xz 28-Feb-2019 02:50 6924 +linguisticspro.doc.r64858.tar.xz 29-Oct-2022 23:53 46052 +linguisticspro.doc.tar.xz 29-Oct-2022 23:53 46052 +linguisticspro.r64858.tar.xz 29-Oct-2022 23:53 1377940 +linguisticspro.tar.xz 29-Oct-2022 23:53 1377940 +linguistix.doc.r75756.tar.xz 12-Jul-2025 23:59 367724 +linguistix.doc.tar.xz 12-Jul-2025 23:59 367724 +linguistix.r75756.tar.xz 12-Jul-2025 23:59 6800 +linguistix.source.r75756.tar.xz 12-Jul-2025 23:59 24880 +linguistix.source.tar.xz 12-Jul-2025 23:59 24880 +linguistix.tar.xz 12-Jul-2025 23:59 6800 +linkedthm.doc.r75860.tar.xz 22-Jul-2025 21:36 203420 +linkedthm.doc.tar.xz 22-Jul-2025 21:36 203420 +linkedthm.r75860.tar.xz 22-Jul-2025 21:36 1664 +linkedthm.tar.xz 22-Jul-2025 21:36 1664 +linop.doc.r41304.tar.xz 28-Feb-2019 02:50 226748 +linop.doc.tar.xz 28-Feb-2019 02:50 226748 +linop.r41304.tar.xz 28-Feb-2019 02:50 1376 +linop.tar.xz 28-Feb-2019 02:50 1376 +lion-msc.doc.r75184.tar.xz 12-May-2025 23:50 1520920 +lion-msc.doc.tar.xz 12-May-2025 23:50 1520920 +lion-msc.r75184.tar.xz 12-May-2025 23:50 46900 +lion-msc.tar.xz 12-May-2025 23:50 46900 +lipsum.doc.r60561.tar.xz 20-Sep-2021 23:53 757020 +lipsum.doc.tar.xz 20-Sep-2021 23:53 757020 +lipsum.r60561.tar.xz 20-Sep-2021 23:53 125324 +lipsum.source.r60561.tar.xz 20-Sep-2021 23:53 17004 +lipsum.source.tar.xz 20-Sep-2021 23:53 17004 +lipsum.tar.xz 20-Sep-2021 23:53 125324 +lisp-on-tex.doc.r73165.tar.xz 20-Dec-2024 00:47 389224 +lisp-on-tex.doc.tar.xz 20-Dec-2024 00:47 389224 +lisp-on-tex.r73165.tar.xz 20-Dec-2024 00:47 13196 +lisp-on-tex.tar.xz 20-Dec-2024 00:47 13196 +listbib.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:50 340 +listbib.aarch64-linux.tar.xz 28-Feb-2019 02:50 340 +listbib.amd64-freebsd.r26126.tar.xz 28-Feb-2019 02:50 340 +listbib.amd64-freebsd.tar.xz 28-Feb-2019 02:50 340 +listbib.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:50 336 +listbib.amd64-netbsd.tar.xz 28-Feb-2019 02:50 336 +listbib.armhf-linux.r30015.tar.xz 28-Feb-2019 02:50 340 +listbib.armhf-linux.tar.xz 28-Feb-2019 02:50 340 +listbib.doc.r29349.tar.xz 28-Feb-2019 02:50 332236 +listbib.doc.tar.xz 28-Feb-2019 02:50 332236 +listbib.i386-freebsd.r26126.tar.xz 28-Feb-2019 02:50 340 +listbib.i386-freebsd.tar.xz 28-Feb-2019 02:50 340 +listbib.i386-linux.r26126.tar.xz 28-Feb-2019 02:50 336 +listbib.i386-linux.tar.xz 28-Feb-2019 02:50 336 +listbib.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:50 336 +listbib.i386-netbsd.tar.xz 28-Feb-2019 02:50 336 +listbib.i386-solaris.r26126.tar.xz 28-Feb-2019 02:50 336 +listbib.i386-solaris.tar.xz 28-Feb-2019 02:50 336 +listbib.r29349.tar.xz 28-Feb-2019 02:50 21348 +listbib.source.r29349.tar.xz 28-Feb-2019 02:50 14012 +listbib.source.tar.xz 28-Feb-2019 02:50 14012 +listbib.tar.xz 28-Feb-2019 02:50 21348 +listbib.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +listbib.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +listbib.windows.r65891.tar.xz 20-Feb-2023 22:12 2308 +listbib.windows.tar.xz 20-Feb-2023 22:12 2308 +listbib.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:50 340 +listbib.x86_64-cygwin.tar.xz 28-Feb-2019 02:50 340 +listbib.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:50 348 +listbib.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:50 348 +listbib.x86_64-linux.r26126.tar.xz 28-Feb-2019 02:50 336 +listbib.x86_64-linux.tar.xz 28-Feb-2019 02:50 336 +listbib.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:50 340 +listbib.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:50 340 +listbib.x86_64-solaris.r26126.tar.xz 28-Feb-2019 02:50 340 +listbib.x86_64-solaris.tar.xz 28-Feb-2019 02:50 340 +listing.doc.r17373.tar.xz 28-Feb-2019 02:50 259240 +listing.doc.tar.xz 28-Feb-2019 02:50 259240 +listing.r17373.tar.xz 28-Feb-2019 02:50 1968 +listing.tar.xz 28-Feb-2019 02:50 1968 +listings-ext.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:50 348 +listings-ext.aarch64-linux.tar.xz 28-Feb-2019 02:50 348 +listings-ext.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:50 348 +listings-ext.amd64-freebsd.tar.xz 28-Feb-2019 02:50 348 +listings-ext.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:50 344 +listings-ext.amd64-netbsd.tar.xz 28-Feb-2019 02:50 344 +listings-ext.armhf-linux.r30015.tar.xz 28-Feb-2019 02:50 344 +listings-ext.armhf-linux.tar.xz 28-Feb-2019 02:50 344 +listings-ext.doc.r29349.tar.xz 28-Feb-2019 02:50 103704 +listings-ext.doc.tar.xz 28-Feb-2019 02:50 103704 +listings-ext.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:50 344 +listings-ext.i386-freebsd.tar.xz 28-Feb-2019 02:50 344 +listings-ext.i386-linux.r15093.tar.xz 28-Feb-2019 02:50 344 +listings-ext.i386-linux.tar.xz 28-Feb-2019 02:50 344 +listings-ext.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:50 344 +listings-ext.i386-netbsd.tar.xz 28-Feb-2019 02:50 344 +listings-ext.i386-solaris.r15093.tar.xz 28-Feb-2019 02:50 344 +listings-ext.i386-solaris.tar.xz 28-Feb-2019 02:50 344 +listings-ext.r29349.tar.xz 28-Feb-2019 02:50 4856 +listings-ext.source.r29349.tar.xz 28-Feb-2019 02:50 22652 +listings-ext.source.tar.xz 28-Feb-2019 02:50 22652 +listings-ext.tar.xz 28-Feb-2019 02:50 4856 +listings-ext.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +listings-ext.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +listings-ext.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:50 344 +listings-ext.x86_64-cygwin.tar.xz 28-Feb-2019 02:50 344 +listings-ext.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:50 352 +listings-ext.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:50 352 +listings-ext.x86_64-linux.r15093.tar.xz 28-Feb-2019 02:50 344 +listings-ext.x86_64-linux.tar.xz 28-Feb-2019 02:50 344 +listings-ext.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:50 348 +listings-ext.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:50 348 +listings-ext.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:50 344 +listings-ext.x86_64-solaris.tar.xz 28-Feb-2019 02:50 344 +listings.doc.r72368.tar.xz 23-Sep-2024 23:48 2797684 +listings.doc.tar.xz 23-Sep-2024 23:48 2797684 +listings.r72368.tar.xz 23-Sep-2024 23:49 147552 +listings.source.r72368.tar.xz 23-Sep-2024 23:48 272992 +listings.source.tar.xz 23-Sep-2024 23:48 272992 +listings.tar.xz 23-Sep-2024 23:49 147552 +listingsutf8.doc.r53097.tar.xz 12-Dec-2019 00:54 299004 +listingsutf8.doc.tar.xz 12-Dec-2019 00:54 299004 +listingsutf8.r53097.tar.xz 12-Dec-2019 00:54 2264 +listingsutf8.source.r53097.tar.xz 12-Dec-2019 00:54 5628 +listingsutf8.source.tar.xz 12-Dec-2019 00:54 5628 +listingsutf8.tar.xz 12-Dec-2019 00:54 2264 +listlbls.doc.r67215.tar.xz 25-May-2023 23:44 99448 +listlbls.doc.tar.xz 25-May-2023 23:44 99448 +listlbls.r67215.tar.xz 25-May-2023 23:44 1940 +listlbls.source.r67215.tar.xz 25-May-2023 23:44 5876 +listlbls.source.tar.xz 25-May-2023 23:44 5876 +listlbls.tar.xz 25-May-2023 23:44 1940 +listliketab.doc.r15878.tar.xz 28-Feb-2019 02:50 120912 +listliketab.doc.tar.xz 28-Feb-2019 02:50 120912 +listliketab.r15878.tar.xz 28-Feb-2019 02:50 1416 +listliketab.source.r15878.tar.xz 28-Feb-2019 02:50 6696 +listliketab.source.tar.xz 28-Feb-2019 02:50 6696 +listliketab.tar.xz 28-Feb-2019 02:50 1416 +listofitems.doc.r70579.tar.xz 11-Mar-2024 00:47 406384 +listofitems.doc.tar.xz 11-Mar-2024 00:47 406384 +listofitems.r70579.tar.xz 11-Mar-2024 00:47 7760 +listofitems.tar.xz 11-Mar-2024 00:47 7760 +listofsymbols.doc.r16134.tar.xz 28-Feb-2019 02:50 50936 +listofsymbols.doc.tar.xz 28-Feb-2019 02:50 50936 +listofsymbols.r16134.tar.xz 28-Feb-2019 02:50 2552 +listofsymbols.source.r16134.tar.xz 28-Feb-2019 02:50 6188 +listofsymbols.source.tar.xz 28-Feb-2019 02:50 6188 +listofsymbols.tar.xz 28-Feb-2019 02:50 2552 +listparskip.doc.r73155.tar.xz 19-Dec-2024 00:50 127044 +listparskip.doc.tar.xz 19-Dec-2024 00:50 127044 +listparskip.r73155.tar.xz 19-Dec-2024 00:50 2248 +listparskip.source.r73155.tar.xz 19-Dec-2024 00:50 8928 +listparskip.source.tar.xz 19-Dec-2024 00:50 8928 +listparskip.tar.xz 19-Dec-2024 00:50 2248 +litetable.doc.r76389.tar.xz 23-Sep-2025 23:49 1162448 +litetable.doc.tar.xz 23-Sep-2025 23:49 1162448 +litetable.r76389.tar.xz 23-Sep-2025 23:49 3524 +litetable.source.r76389.tar.xz 23-Sep-2025 23:49 7008 +litetable.source.tar.xz 23-Sep-2025 23:49 7008 +litetable.tar.xz 23-Sep-2025 23:49 3524 +lithuanian.doc.r66461.tar.xz 08-Mar-2023 00:55 56116 +lithuanian.doc.tar.xz 08-Mar-2023 00:55 56116 +lithuanian.r66461.tar.xz 08-Mar-2023 00:55 64828 +lithuanian.tar.xz 08-Mar-2023 00:55 64828 +liturg.doc.r15878.tar.xz 28-Feb-2019 02:50 115684 +liturg.doc.tar.xz 28-Feb-2019 02:50 115684 +liturg.r15878.tar.xz 28-Feb-2019 02:50 6508 +liturg.source.r15878.tar.xz 28-Feb-2019 02:50 924 +liturg.source.tar.xz 28-Feb-2019 02:50 924 +liturg.tar.xz 28-Feb-2019 02:50 6508 +liturgy-cw.doc.r76053.tar.xz 14-Aug-2025 23:50 129316 +liturgy-cw.doc.tar.xz 14-Aug-2025 23:50 129316 +liturgy-cw.r76053.tar.xz 14-Aug-2025 23:50 2676 +liturgy-cw.source.r76053.tar.xz 14-Aug-2025 23:50 6152 +liturgy-cw.source.tar.xz 14-Aug-2025 23:50 6152 +liturgy-cw.tar.xz 14-Aug-2025 23:50 2676 +lkproof.doc.r20021.tar.xz 28-Feb-2019 02:50 258344 +lkproof.doc.tar.xz 28-Feb-2019 02:50 258344 +lkproof.r20021.tar.xz 28-Feb-2019 02:50 2732 +lkproof.tar.xz 28-Feb-2019 02:50 2732 +llncs.doc.r74287.tar.xz 26-Feb-2025 00:49 210076 +llncs.doc.tar.xz 26-Feb-2025 00:49 210076 +llncs.r74287.tar.xz 26-Feb-2025 00:49 16708 +llncs.tar.xz 26-Feb-2025 00:49 16708 +llncsconf.doc.r63136.tar.xz 25-Apr-2022 23:53 269964 +llncsconf.doc.tar.xz 25-Apr-2022 23:53 269964 +llncsconf.r63136.tar.xz 25-Apr-2022 23:53 2284 +llncsconf.tar.xz 25-Apr-2022 23:53 2284 +lm-math.doc.r67718.tar.xz 23-Jul-2023 23:45 94656 +lm-math.doc.tar.xz 23-Jul-2023 23:45 94656 +lm-math.r67718.tar.xz 23-Jul-2023 23:45 377796 +lm-math.tar.xz 23-Jul-2023 23:45 377796 +lm.doc.r67718.tar.xz 23-Jul-2023 23:45 2511620 +lm.doc.tar.xz 23-Jul-2023 23:45 2511620 +lm.r67718.tar.xz 23-Jul-2023 23:45 11944816 +lm.tar.xz 23-Jul-2023 23:45 11944816 +lmake.doc.r25552.tar.xz 28-Feb-2019 02:50 269032 +lmake.doc.tar.xz 28-Feb-2019 02:50 269032 +lmake.r25552.tar.xz 28-Feb-2019 02:50 2016 +lmake.source.r25552.tar.xz 28-Feb-2019 02:50 6828 +lmake.source.tar.xz 28-Feb-2019 02:50 6828 +lmake.tar.xz 28-Feb-2019 02:50 2016 +lni.doc.r73766.tar.xz 08-Feb-2025 00:48 380768 +lni.doc.tar.xz 08-Feb-2025 00:48 380768 +lni.r73766.tar.xz 08-Feb-2025 00:48 8148 +lni.source.r73766.tar.xz 08-Feb-2025 00:48 20308 +lni.source.tar.xz 08-Feb-2025 00:48 20308 +lni.tar.xz 08-Feb-2025 00:48 8148 +lobster2.doc.r64442.tar.xz 19-Sep-2022 23:53 104572 +lobster2.doc.tar.xz 19-Sep-2022 23:53 104572 +lobster2.r64442.tar.xz 19-Sep-2022 23:53 514076 +lobster2.tar.xz 19-Sep-2022 23:53 514076 +locality.doc.r20422.tar.xz 28-Feb-2019 02:50 175696 +locality.doc.tar.xz 28-Feb-2019 02:50 175696 +locality.r20422.tar.xz 28-Feb-2019 02:50 2412 +locality.source.r20422.tar.xz 28-Feb-2019 02:50 6612 +locality.source.tar.xz 28-Feb-2019 02:50 6612 +locality.tar.xz 28-Feb-2019 02:50 2412 +localloc.doc.r56496.tar.xz 01-Oct-2020 00:13 241332 +localloc.doc.tar.xz 01-Oct-2020 00:13 241332 +localloc.r56496.tar.xz 01-Oct-2020 00:13 2436 +localloc.source.r56496.tar.xz 01-Oct-2020 00:13 11672 +localloc.source.tar.xz 01-Oct-2020 00:13 11672 +localloc.tar.xz 01-Oct-2020 00:13 2436 +logbox.doc.r24499.tar.xz 28-Feb-2019 02:50 588824 +logbox.doc.tar.xz 28-Feb-2019 02:50 588824 +logbox.r24499.tar.xz 28-Feb-2019 02:50 1444 +logbox.source.r24499.tar.xz 28-Feb-2019 02:50 7324 +logbox.source.tar.xz 28-Feb-2019 02:50 7324 +logbox.tar.xz 28-Feb-2019 02:50 1444 +logical-markup-utils.doc.r15878.tar.xz 28-Feb-2019 02:50 12844 +logical-markup-utils.doc.tar.xz 28-Feb-2019 02:50 12844 +logical-markup-utils.r15878.tar.xz 28-Feb-2019 02:50 1884 +logical-markup-utils.tar.xz 28-Feb-2019 02:50 1884 +logicproof.doc.r33254.tar.xz 28-Feb-2019 02:50 54576 +logicproof.doc.tar.xz 28-Feb-2019 02:50 54576 +logicproof.r33254.tar.xz 28-Feb-2019 02:50 2016 +logicproof.source.r33254.tar.xz 28-Feb-2019 02:50 7728 +logicproof.source.tar.xz 28-Feb-2019 02:50 7728 +logicproof.tar.xz 28-Feb-2019 02:50 2016 +logicpuzzle.doc.r34491.tar.xz 28-Feb-2019 02:50 810144 +logicpuzzle.doc.tar.xz 28-Feb-2019 02:50 810144 +logicpuzzle.r34491.tar.xz 28-Feb-2019 02:50 15228 +logicpuzzle.tar.xz 28-Feb-2019 02:50 15228 +logictools.doc.r75270.tar.xz 20-May-2025 23:49 398484 +logictools.doc.tar.xz 20-May-2025 23:49 398484 +logictools.r75270.tar.xz 20-May-2025 23:49 4648 +logictools.tar.xz 20-May-2025 23:49 4648 +logix.doc.r63688.tar.xz 22-Jun-2022 23:54 960252 +logix.doc.tar.xz 22-Jun-2022 23:54 960252 +logix.r63688.tar.xz 22-Jun-2022 23:54 2343812 +logix.tar.xz 22-Jun-2022 23:54 2343812 +logoetalab.doc.r73069.tar.xz 08-Dec-2024 01:13 697500 +logoetalab.doc.tar.xz 08-Dec-2024 01:13 697500 +logoetalab.r73069.tar.xz 08-Dec-2024 01:13 14092 +logoetalab.tar.xz 08-Dec-2024 01:13 14092 +logpap.doc.r15878.tar.xz 28-Feb-2019 02:50 67724 +logpap.doc.tar.xz 28-Feb-2019 02:50 67724 +logpap.r15878.tar.xz 28-Feb-2019 02:50 5880 +logpap.source.r15878.tar.xz 28-Feb-2019 02:50 22100 +logpap.source.tar.xz 28-Feb-2019 02:50 22100 +logpap.tar.xz 28-Feb-2019 02:50 5880 +logreq.doc.r53003.tar.xz 03-Dec-2019 00:55 3792 +logreq.doc.tar.xz 03-Dec-2019 00:55 3792 +logreq.r53003.tar.xz 03-Dec-2019 00:55 3212 +logreq.tar.xz 03-Dec-2019 00:55 3212 +lollipop.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:50 324 +lollipop.aarch64-linux.tar.xz 28-Feb-2019 02:50 324 +lollipop.amd64-freebsd.r41465.tar.xz 28-Feb-2019 02:50 324 +lollipop.amd64-freebsd.tar.xz 28-Feb-2019 02:50 324 +lollipop.amd64-netbsd.r41257.tar.xz 28-Feb-2019 02:50 320 +lollipop.amd64-netbsd.tar.xz 28-Feb-2019 02:50 320 +lollipop.armhf-linux.r41465.tar.xz 28-Feb-2019 02:50 324 +lollipop.armhf-linux.tar.xz 28-Feb-2019 02:50 324 +lollipop.doc.r69742.tar.xz 08-Feb-2024 00:46 341360 +lollipop.doc.tar.xz 08-Feb-2024 00:46 341360 +lollipop.i386-freebsd.r41465.tar.xz 28-Feb-2019 02:50 324 +lollipop.i386-freebsd.tar.xz 28-Feb-2019 02:50 324 +lollipop.i386-linux.r41465.tar.xz 28-Feb-2019 02:50 320 +lollipop.i386-linux.tar.xz 28-Feb-2019 02:50 320 +lollipop.i386-netbsd.r41221.tar.xz 28-Feb-2019 02:50 320 +lollipop.i386-netbsd.tar.xz 28-Feb-2019 02:50 320 +lollipop.i386-solaris.r41465.tar.xz 28-Feb-2019 02:50 320 +lollipop.i386-solaris.tar.xz 28-Feb-2019 02:50 320 +lollipop.r69742.tar.xz 08-Feb-2024 00:46 51288 +lollipop.tar.xz 08-Feb-2024 00:46 51288 +lollipop.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 320 +lollipop.universal-darwin.tar.xz 25-Feb-2021 18:16 320 +lollipop.windows.r65891.tar.xz 20-Feb-2023 22:13 2340 +lollipop.windows.tar.xz 20-Feb-2023 22:13 2340 +lollipop.x86_64-cygwin.r41465.tar.xz 28-Feb-2019 02:50 324 +lollipop.x86_64-cygwin.tar.xz 28-Feb-2019 02:50 324 +lollipop.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:50 332 +lollipop.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:50 332 +lollipop.x86_64-linux.r41465.tar.xz 28-Feb-2019 02:50 320 +lollipop.x86_64-linux.tar.xz 28-Feb-2019 02:50 320 +lollipop.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:50 328 +lollipop.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:50 328 +lollipop.x86_64-solaris.r41465.tar.xz 28-Feb-2019 02:50 324 +lollipop.x86_64-solaris.tar.xz 28-Feb-2019 02:50 324 +longdivision.doc.r68609.tar.xz 21-Oct-2023 23:50 146836 +longdivision.doc.tar.xz 21-Oct-2023 23:50 146836 +longdivision.r68609.tar.xz 21-Oct-2023 23:50 10740 +longdivision.tar.xz 21-Oct-2023 23:50 10740 +longfbox.doc.r39028.tar.xz 28-Feb-2019 02:50 339604 +longfbox.doc.tar.xz 28-Feb-2019 02:50 339604 +longfbox.r39028.tar.xz 28-Feb-2019 02:50 17084 +longfbox.tar.xz 28-Feb-2019 02:50 17084 +longfigure.doc.r34302.tar.xz 28-Feb-2019 02:50 443792 +longfigure.doc.tar.xz 28-Feb-2019 02:50 443792 +longfigure.r34302.tar.xz 28-Feb-2019 02:50 4512 +longfigure.source.r34302.tar.xz 28-Feb-2019 02:50 8468 +longfigure.source.tar.xz 28-Feb-2019 02:50 8468 +longfigure.tar.xz 28-Feb-2019 02:50 4512 +longmath.doc.r71709.tar.xz 04-Jul-2024 23:46 180104 +longmath.doc.tar.xz 04-Jul-2024 23:46 180104 +longmath.r71709.tar.xz 04-Jul-2024 23:46 8368 +longmath.tar.xz 04-Jul-2024 23:46 8368 +longnamefilelist.doc.r27889.tar.xz 28-Feb-2019 02:50 309272 +longnamefilelist.doc.tar.xz 28-Feb-2019 02:50 309272 +longnamefilelist.r27889.tar.xz 28-Feb-2019 02:50 3620 +longnamefilelist.source.r27889.tar.xz 28-Feb-2019 02:50 1652 +longnamefilelist.source.tar.xz 28-Feb-2019 02:50 1652 +longnamefilelist.tar.xz 28-Feb-2019 02:50 3620 +longtwocolumn.doc.r75852.tar.xz 21-Jul-2025 23:49 270496 +longtwocolumn.doc.tar.xz 21-Jul-2025 23:49 270496 +longtwocolumn.r75852.tar.xz 21-Jul-2025 23:49 1284 +longtwocolumn.source.r75852.tar.xz 21-Jul-2025 23:49 3216 +longtwocolumn.source.tar.xz 21-Jul-2025 23:49 3216 +longtwocolumn.tar.xz 21-Jul-2025 23:49 1284 +loops.doc.r30704.tar.xz 28-Feb-2019 02:50 8240 +loops.doc.tar.xz 28-Feb-2019 02:50 8240 +loops.r30704.tar.xz 28-Feb-2019 02:50 11928 +loops.tar.xz 28-Feb-2019 02:50 11928 +lparse.doc.r75712.tar.xz 07-Jul-2025 23:51 81448 +lparse.doc.tar.xz 07-Jul-2025 23:51 81448 +lparse.r75712.tar.xz 07-Jul-2025 23:51 4588 +lparse.tar.xz 07-Jul-2025 23:51 4588 +lpform.doc.r36918.tar.xz 28-Feb-2019 02:50 269288 +lpform.doc.tar.xz 28-Feb-2019 02:50 269288 +lpform.r36918.tar.xz 28-Feb-2019 02:50 1564 +lpform.tar.xz 28-Feb-2019 02:50 1564 +lpic.doc.r20843.tar.xz 28-Feb-2019 02:50 96860 +lpic.doc.tar.xz 28-Feb-2019 02:50 96860 +lpic.r20843.tar.xz 28-Feb-2019 02:50 5308 +lpic.tar.xz 28-Feb-2019 02:50 5308 +lplfitch.doc.r75712.tar.xz 07-Jul-2025 23:51 227352 +lplfitch.doc.tar.xz 07-Jul-2025 23:51 227352 +lplfitch.r75712.tar.xz 07-Jul-2025 23:51 1972 +lplfitch.source.r75712.tar.xz 07-Jul-2025 23:51 8048 +lplfitch.source.tar.xz 07-Jul-2025 23:51 8048 +lplfitch.tar.xz 07-Jul-2025 23:51 1972 +lps.doc.r21322.tar.xz 28-Feb-2019 02:50 162420 +lps.doc.tar.xz 28-Feb-2019 02:50 162420 +lps.r21322.tar.xz 28-Feb-2019 02:50 2252 +lps.source.r21322.tar.xz 28-Feb-2019 02:50 7840 +lps.source.tar.xz 28-Feb-2019 02:50 7840 +lps.tar.xz 28-Feb-2019 02:50 2252 +lroundrect.doc.r39804.tar.xz 28-Feb-2019 02:50 252820 +lroundrect.doc.tar.xz 28-Feb-2019 02:50 252820 +lroundrect.r39804.tar.xz 28-Feb-2019 02:50 2604 +lroundrect.source.r39804.tar.xz 28-Feb-2019 02:50 6836 +lroundrect.source.tar.xz 28-Feb-2019 02:50 6836 +lroundrect.tar.xz 28-Feb-2019 02:50 2604 +lsc.doc.r15878.tar.xz 28-Feb-2019 02:50 187204 +lsc.doc.tar.xz 28-Feb-2019 02:50 187204 +lsc.r15878.tar.xz 28-Feb-2019 02:50 14224 +lsc.tar.xz 28-Feb-2019 02:50 14224 +lscapeenhanced.doc.r70967.tar.xz 17-Apr-2024 13:36 257652 +lscapeenhanced.doc.tar.xz 17-Apr-2024 13:36 257652 +lscapeenhanced.r70967.tar.xz 17-Apr-2024 13:36 1488 +lscapeenhanced.source.r70967.tar.xz 17-Apr-2024 13:36 5160 +lscapeenhanced.source.tar.xz 17-Apr-2024 13:36 5160 +lscapeenhanced.tar.xz 17-Apr-2024 13:36 1488 +lshort-bulgarian.doc.r15878.tar.xz 28-Feb-2019 02:50 1899640 +lshort-bulgarian.doc.tar.xz 28-Feb-2019 02:50 1899640 +lshort-bulgarian.r15878.tar.xz 28-Feb-2019 02:50 424 +lshort-bulgarian.tar.xz 28-Feb-2019 02:50 424 +lshort-chinese.doc.r73160.tar.xz 19-Dec-2024 00:50 1561888 +lshort-chinese.doc.tar.xz 19-Dec-2024 00:50 1561888 +lshort-chinese.r73160.tar.xz 19-Dec-2024 00:50 472 +lshort-chinese.tar.xz 19-Dec-2024 00:50 472 +lshort-czech.doc.r55643.tar.xz 23-Jun-2020 23:57 1644616 +lshort-czech.doc.tar.xz 23-Jun-2020 23:57 1644616 +lshort-czech.r55643.tar.xz 23-Jun-2020 23:57 384 +lshort-czech.tar.xz 23-Jun-2020 23:57 384 +lshort-dutch.doc.r15878.tar.xz 28-Feb-2019 02:50 777012 +lshort-dutch.doc.tar.xz 28-Feb-2019 02:50 777012 +lshort-dutch.r15878.tar.xz 28-Feb-2019 02:50 412 +lshort-dutch.tar.xz 28-Feb-2019 02:50 412 +lshort-english.doc.r58309.tar.xz 13-Mar-2021 00:30 739236 +lshort-english.doc.tar.xz 13-Mar-2021 00:30 739236 +lshort-english.r58309.tar.xz 13-Mar-2021 00:30 540 +lshort-english.tar.xz 13-Mar-2021 00:30 540 +lshort-estonian.doc.r39323.tar.xz 28-Feb-2019 02:50 2940172 +lshort-estonian.doc.tar.xz 28-Feb-2019 02:50 2940172 +lshort-estonian.r39323.tar.xz 28-Feb-2019 02:50 400 +lshort-estonian.tar.xz 28-Feb-2019 02:50 400 +lshort-finnish.doc.r15878.tar.xz 28-Feb-2019 02:50 1681088 +lshort-finnish.doc.tar.xz 28-Feb-2019 02:50 1681088 +lshort-finnish.r15878.tar.xz 28-Feb-2019 02:50 424 +lshort-finnish.tar.xz 28-Feb-2019 02:50 424 +lshort-french.doc.r23332.tar.xz 28-Feb-2019 02:50 2147688 +lshort-french.doc.tar.xz 28-Feb-2019 02:50 2147688 +lshort-french.r23332.tar.xz 28-Feb-2019 02:50 404 +lshort-french.tar.xz 28-Feb-2019 02:50 404 +lshort-german.doc.r70740.tar.xz 24-Mar-2024 00:56 951720 +lshort-german.doc.tar.xz 24-Mar-2024 00:56 951720 +lshort-german.r70740.tar.xz 24-Mar-2024 00:56 444 +lshort-german.tar.xz 24-Mar-2024 00:56 444 +lshort-italian.doc.r57038.tar.xz 01-Dec-2020 01:14 3653384 +lshort-italian.doc.tar.xz 01-Dec-2020 01:14 3653384 +lshort-italian.r57038.tar.xz 01-Dec-2020 01:14 432 +lshort-italian.tar.xz 01-Dec-2020 01:14 432 +lshort-japanese.doc.r36207.tar.xz 28-Feb-2019 02:50 515744 +lshort-japanese.doc.tar.xz 28-Feb-2019 02:50 515744 +lshort-japanese.r36207.tar.xz 28-Feb-2019 02:50 368 +lshort-japanese.tar.xz 28-Feb-2019 02:50 368 +lshort-korean.doc.r73814.tar.xz 10-Feb-2025 00:46 1287148 +lshort-korean.doc.tar.xz 10-Feb-2025 00:46 1287148 +lshort-korean.r73814.tar.xz 10-Feb-2025 00:46 376 +lshort-korean.tar.xz 10-Feb-2025 00:46 376 +lshort-mongol.doc.r15878.tar.xz 28-Feb-2019 02:50 1693292 +lshort-mongol.doc.tar.xz 28-Feb-2019 02:50 1693292 +lshort-mongol.r15878.tar.xz 28-Feb-2019 02:51 412 +lshort-mongol.tar.xz 28-Feb-2019 02:51 412 +lshort-persian.doc.r31296.tar.xz 28-Feb-2019 02:51 849972 +lshort-persian.doc.tar.xz 28-Feb-2019 02:51 849972 +lshort-persian.r31296.tar.xz 28-Feb-2019 02:51 404 +lshort-persian.tar.xz 28-Feb-2019 02:51 404 +lshort-polish.doc.r63289.tar.xz 13-May-2022 23:53 2093244 +lshort-polish.doc.tar.xz 13-May-2022 23:53 2093244 +lshort-polish.r63289.tar.xz 13-May-2022 23:53 444 +lshort-polish.tar.xz 13-May-2022 23:53 444 +lshort-portuguese.doc.r55643.tar.xz 23-Jun-2020 23:57 2187228 +lshort-portuguese.doc.tar.xz 23-Jun-2020 23:57 2187228 +lshort-portuguese.r55643.tar.xz 23-Jun-2020 23:57 384 +lshort-portuguese.tar.xz 23-Jun-2020 23:57 384 +lshort-russian.doc.r55643.tar.xz 23-Jun-2020 23:57 1307892 +lshort-russian.doc.tar.xz 23-Jun-2020 23:57 1307892 +lshort-russian.r55643.tar.xz 23-Jun-2020 23:57 356 +lshort-russian.tar.xz 23-Jun-2020 23:57 356 +lshort-slovak.doc.r15878.tar.xz 28-Feb-2019 02:51 708848 +lshort-slovak.doc.tar.xz 28-Feb-2019 02:51 708848 +lshort-slovak.r15878.tar.xz 28-Feb-2019 02:51 392 +lshort-slovak.tar.xz 28-Feb-2019 02:51 392 +lshort-slovenian.doc.r68204.tar.xz 07-Sep-2023 23:44 1390728 +lshort-slovenian.doc.tar.xz 07-Sep-2023 23:44 1390728 +lshort-slovenian.r68204.tar.xz 07-Sep-2023 23:44 376 +lshort-slovenian.tar.xz 07-Sep-2023 23:44 376 +lshort-spanish.doc.r35050.tar.xz 28-Feb-2019 02:51 1538720 +lshort-spanish.doc.tar.xz 28-Feb-2019 02:51 1538720 +lshort-spanish.r35050.tar.xz 28-Feb-2019 02:51 412 +lshort-spanish.tar.xz 28-Feb-2019 02:51 412 +lshort-thai.doc.r55643.tar.xz 23-Jun-2020 23:57 474892 +lshort-thai.doc.tar.xz 23-Jun-2020 23:57 474892 +lshort-thai.r55643.tar.xz 23-Jun-2020 23:57 372 +lshort-thai.tar.xz 23-Jun-2020 23:57 372 +lshort-turkish.doc.r15878.tar.xz 28-Feb-2019 02:51 1427680 +lshort-turkish.doc.tar.xz 28-Feb-2019 02:51 1427680 +lshort-turkish.r15878.tar.xz 28-Feb-2019 02:51 400 +lshort-turkish.tar.xz 28-Feb-2019 02:51 400 +lshort-ukr.doc.r55643.tar.xz 23-Jun-2020 23:57 2085896 +lshort-ukr.doc.tar.xz 23-Jun-2020 23:57 2085896 +lshort-ukr.r55643.tar.xz 23-Jun-2020 23:57 372 +lshort-ukr.tar.xz 23-Jun-2020 23:57 372 +lshort-vietnamese.doc.r55643.tar.xz 23-Jun-2020 23:57 1569572 +lshort-vietnamese.doc.tar.xz 23-Jun-2020 23:57 1569572 +lshort-vietnamese.r55643.tar.xz 23-Jun-2020 23:57 372 +lshort-vietnamese.tar.xz 23-Jun-2020 23:57 372 +lstaddons.doc.r72068.tar.xz 19-Aug-2024 23:48 372540 +lstaddons.doc.tar.xz 19-Aug-2024 23:48 372540 +lstaddons.r72068.tar.xz 19-Aug-2024 23:48 2216 +lstaddons.source.r72068.tar.xz 19-Aug-2024 23:48 5608 +lstaddons.source.tar.xz 19-Aug-2024 23:48 5608 +lstaddons.tar.xz 19-Aug-2024 23:48 2216 +lstbayes.doc.r48160.tar.xz 28-Feb-2019 02:51 269280 +lstbayes.doc.tar.xz 28-Feb-2019 02:51 269280 +lstbayes.r48160.tar.xz 28-Feb-2019 02:51 2920 +lstbayes.source.r48160.tar.xz 28-Feb-2019 02:51 4168 +lstbayes.source.tar.xz 28-Feb-2019 02:51 4168 +lstbayes.tar.xz 28-Feb-2019 02:51 2920 +lstfiracode.doc.r49503.tar.xz 28-Feb-2019 02:51 57084 +lstfiracode.doc.tar.xz 28-Feb-2019 02:51 57084 +lstfiracode.r49503.tar.xz 28-Feb-2019 02:51 2268 +lstfiracode.tar.xz 28-Feb-2019 02:51 2268 +lt3graph.doc.r45913.tar.xz 28-Feb-2019 02:51 576392 +lt3graph.doc.tar.xz 28-Feb-2019 02:51 576392 +lt3graph.r45913.tar.xz 28-Feb-2019 02:51 10864 +lt3graph.tar.xz 28-Feb-2019 02:51 10864 +lt3luabridge.doc.r75607.tar.xz 25-Jun-2025 23:50 500508 +lt3luabridge.doc.tar.xz 25-Jun-2025 23:50 500508 +lt3luabridge.r75607.tar.xz 25-Jun-2025 23:50 3280 +lt3luabridge.source.r75607.tar.xz 25-Jun-2025 23:50 4992 +lt3luabridge.source.tar.xz 25-Jun-2025 23:50 4992 +lt3luabridge.tar.xz 25-Jun-2025 23:50 3280 +lt3rawobjects.doc.r66619.tar.xz 22-Mar-2023 00:52 615976 +lt3rawobjects.doc.tar.xz 22-Mar-2023 00:52 615976 +lt3rawobjects.r66619.tar.xz 22-Mar-2023 00:52 4624 +lt3rawobjects.source.r66619.tar.xz 22-Mar-2023 00:52 14420 +lt3rawobjects.source.tar.xz 22-Mar-2023 00:52 14420 +lt3rawobjects.tar.xz 22-Mar-2023 00:52 4624 +ltablex.doc.r34923.tar.xz 28-Feb-2019 02:51 233152 +ltablex.doc.tar.xz 28-Feb-2019 02:51 233152 +ltablex.r34923.tar.xz 28-Feb-2019 02:51 2492 +ltablex.tar.xz 28-Feb-2019 02:51 2492 +ltabptch.doc.r17533.tar.xz 28-Feb-2019 02:51 267928 +ltabptch.doc.tar.xz 28-Feb-2019 02:51 267928 +ltabptch.r17533.tar.xz 28-Feb-2019 02:51 4740 +ltabptch.tar.xz 28-Feb-2019 02:51 4740 +ltb2bib.doc.r43746.tar.xz 28-Feb-2019 02:51 42552 +ltb2bib.doc.tar.xz 28-Feb-2019 02:51 42552 +ltb2bib.r43746.tar.xz 28-Feb-2019 02:51 2420 +ltb2bib.source.r43746.tar.xz 28-Feb-2019 02:51 4568 +ltb2bib.source.tar.xz 28-Feb-2019 02:51 4568 +ltb2bib.tar.xz 28-Feb-2019 02:51 2420 +ltx-talk.doc.r76347.tar.xz 18-Sep-2025 23:44 607168 +ltx-talk.doc.tar.xz 18-Sep-2025 23:44 607168 +ltx-talk.r76347.tar.xz 18-Sep-2025 23:44 12056 +ltx-talk.source.r76347.tar.xz 18-Sep-2025 23:44 22072 +ltx-talk.source.tar.xz 18-Sep-2025 23:44 22072 +ltx-talk.tar.xz 18-Sep-2025 23:44 12056 +ltxcmds.doc.r69032.tar.xz 05-Dec-2023 00:46 405944 +ltxcmds.doc.tar.xz 05-Dec-2023 00:46 405944 +ltxcmds.r69032.tar.xz 05-Dec-2023 00:46 4120 +ltxcmds.source.r69032.tar.xz 05-Dec-2023 00:46 12948 +ltxcmds.source.tar.xz 05-Dec-2023 00:46 12948 +ltxcmds.tar.xz 05-Dec-2023 00:46 4120 +ltxdockit.doc.r21869.tar.xz 28-Feb-2019 02:51 968 +ltxdockit.doc.tar.xz 28-Feb-2019 02:51 968 +ltxdockit.r21869.tar.xz 28-Feb-2019 02:51 6272 +ltxdockit.tar.xz 28-Feb-2019 02:51 6272 +ltxfileinfo.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.aarch64-linux.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.amd64-freebsd.r29005.tar.xz 28-Feb-2019 02:51 344 +ltxfileinfo.amd64-freebsd.tar.xz 28-Feb-2019 02:51 344 +ltxfileinfo.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.amd64-netbsd.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.armhf-linux.r30015.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.armhf-linux.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.doc.r38663.tar.xz 28-Feb-2019 02:51 37612 +ltxfileinfo.doc.tar.xz 28-Feb-2019 02:51 37612 +ltxfileinfo.i386-freebsd.r29005.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.i386-freebsd.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.i386-linux.r29005.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.i386-linux.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.i386-netbsd.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.i386-solaris.r29005.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.i386-solaris.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.r38663.tar.xz 28-Feb-2019 02:51 5168 +ltxfileinfo.tar.xz 28-Feb-2019 02:51 5168 +ltxfileinfo.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +ltxfileinfo.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +ltxfileinfo.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:51 344 +ltxfileinfo.x86_64-cygwin.tar.xz 28-Feb-2019 02:51 344 +ltxfileinfo.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:51 348 +ltxfileinfo.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:51 348 +ltxfileinfo.x86_64-linux.r29005.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.x86_64-linux.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:51 344 +ltxfileinfo.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:51 344 +ltxfileinfo.x86_64-solaris.r29005.tar.xz 28-Feb-2019 02:51 340 +ltxfileinfo.x86_64-solaris.tar.xz 28-Feb-2019 02:51 340 +ltxguidex.doc.r50992.tar.xz 04-May-2019 23:38 75384 +ltxguidex.doc.tar.xz 04-May-2019 23:38 75384 +ltxguidex.r50992.tar.xz 04-May-2019 23:38 2792 +ltxguidex.tar.xz 04-May-2019 23:38 2792 +ltximg.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:51 340 +ltximg.aarch64-linux.tar.xz 28-Feb-2019 02:51 340 +ltximg.amd64-freebsd.r32346.tar.xz 28-Feb-2019 02:51 340 +ltximg.amd64-freebsd.tar.xz 28-Feb-2019 02:51 340 +ltximg.amd64-netbsd.r32346.tar.xz 28-Feb-2019 02:51 340 +ltximg.amd64-netbsd.tar.xz 28-Feb-2019 02:51 340 +ltximg.armhf-linux.r32346.tar.xz 28-Feb-2019 02:51 340 +ltximg.armhf-linux.tar.xz 28-Feb-2019 02:51 340 +ltximg.doc.r59335.tar.xz 24-May-2021 23:52 275072 +ltximg.doc.tar.xz 24-May-2021 23:52 275072 +ltximg.i386-freebsd.r32346.tar.xz 28-Feb-2019 02:51 340 +ltximg.i386-freebsd.tar.xz 28-Feb-2019 02:51 340 +ltximg.i386-linux.r32346.tar.xz 28-Feb-2019 02:51 340 +ltximg.i386-linux.tar.xz 28-Feb-2019 02:51 340 +ltximg.i386-netbsd.r32346.tar.xz 28-Feb-2019 02:51 340 +ltximg.i386-netbsd.tar.xz 28-Feb-2019 02:51 340 +ltximg.i386-solaris.r32346.tar.xz 28-Feb-2019 02:51 340 +ltximg.i386-solaris.tar.xz 28-Feb-2019 02:51 340 +ltximg.r59335.tar.xz 24-May-2021 23:52 26344 +ltximg.tar.xz 24-May-2021 23:52 26344 +ltximg.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +ltximg.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +ltximg.windows.r65891.tar.xz 20-Feb-2023 22:13 2304 +ltximg.windows.tar.xz 20-Feb-2023 22:13 2304 +ltximg.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:51 344 +ltximg.x86_64-cygwin.tar.xz 28-Feb-2019 02:51 344 +ltximg.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:51 348 +ltximg.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:51 348 +ltximg.x86_64-linux.r32346.tar.xz 28-Feb-2019 02:51 340 +ltximg.x86_64-linux.tar.xz 28-Feb-2019 02:51 340 +ltximg.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:51 344 +ltximg.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:51 344 +ltximg.x86_64-solaris.r32346.tar.xz 28-Feb-2019 02:51 340 +ltximg.x86_64-solaris.tar.xz 28-Feb-2019 02:51 340 +ltxkeys.doc.r28332.tar.xz 28-Feb-2019 02:51 722900 +ltxkeys.doc.tar.xz 28-Feb-2019 02:51 722900 +ltxkeys.r28332.tar.xz 28-Feb-2019 02:51 25344 +ltxkeys.tar.xz 28-Feb-2019 02:51 25344 +ltxmisc.r75878.tar.xz 23-Jul-2025 23:50 15364 +ltxmisc.tar.xz 23-Jul-2025 23:50 15364 +ltxnew.doc.r21586.tar.xz 28-Feb-2019 02:51 153768 +ltxnew.doc.tar.xz 28-Feb-2019 02:51 153768 +ltxnew.r21586.tar.xz 28-Feb-2019 02:51 2828 +ltxnew.source.r21586.tar.xz 28-Feb-2019 02:51 10704 +ltxnew.source.tar.xz 28-Feb-2019 02:51 10704 +ltxnew.tar.xz 28-Feb-2019 02:51 2828 +ltxtools.doc.r24897.tar.xz 28-Feb-2019 02:51 1024 +ltxtools.doc.tar.xz 28-Feb-2019 02:51 1024 +ltxtools.r24897.tar.xz 28-Feb-2019 02:51 51564 +ltxtools.tar.xz 28-Feb-2019 02:51 51564 +lua-alt-getopt.doc.r56414.tar.xz 23-Sep-2020 23:57 3320 +lua-alt-getopt.doc.tar.xz 23-Sep-2020 23:57 3320 +lua-alt-getopt.r56414.tar.xz 23-Sep-2020 23:57 2008 +lua-alt-getopt.tar.xz 23-Sep-2020 23:57 2008 +lua-check-hyphen.doc.r47527.tar.xz 28-Feb-2019 02:51 116564 +lua-check-hyphen.doc.tar.xz 28-Feb-2019 02:51 116564 +lua-check-hyphen.r47527.tar.xz 28-Feb-2019 02:51 3628 +lua-check-hyphen.tar.xz 28-Feb-2019 02:51 3628 +lua-physical.doc.r59138.tar.xz 08-May-2021 23:53 415236 +lua-physical.doc.tar.xz 08-May-2021 23:53 415236 +lua-physical.r59138.tar.xz 08-May-2021 23:53 359576 +lua-physical.tar.xz 08-May-2021 23:53 359576 +lua-placeholders.doc.r70850.tar.xz 03-Apr-2024 23:48 271004 +lua-placeholders.doc.tar.xz 03-Apr-2024 23:48 271004 +lua-placeholders.r70850.tar.xz 03-Apr-2024 23:48 5652 +lua-placeholders.tar.xz 03-Apr-2024 23:48 5652 +lua-regression.doc.r74969.tar.xz 17-Apr-2025 23:50 232184 +lua-regression.doc.tar.xz 17-Apr-2025 23:50 232184 +lua-regression.r74969.tar.xz 17-Apr-2025 23:50 6764 +lua-regression.tar.xz 17-Apr-2025 23:50 6764 +lua-tikz3dtools.doc.r76350.tar.xz 18-Sep-2025 23:44 171424 +lua-tikz3dtools.doc.tar.xz 18-Sep-2025 23:44 171424 +lua-tikz3dtools.r76350.tar.xz 18-Sep-2025 23:44 18136 +lua-tikz3dtools.tar.xz 18-Sep-2025 23:44 18136 +lua-tinyyaml.doc.r73671.tar.xz 02-Feb-2025 15:41 196272 +lua-tinyyaml.doc.tar.xz 02-Feb-2025 15:41 196272 +lua-tinyyaml.r73671.tar.xz 02-Feb-2025 15:41 5616 +lua-tinyyaml.tar.xz 02-Feb-2025 15:41 5616 +lua-typo.doc.r70978.tar.xz 19-Apr-2024 16:30 295348 +lua-typo.doc.tar.xz 19-Apr-2024 16:30 295348 +lua-typo.r70978.tar.xz 19-Apr-2024 16:30 13128 +lua-typo.source.r70978.tar.xz 19-Apr-2024 16:30 30020 +lua-typo.source.tar.xz 19-Apr-2024 16:30 30020 +lua-typo.tar.xz 19-Apr-2024 16:30 13128 +lua-uca.doc.r74807.tar.xz 01-Apr-2025 23:52 76988 +lua-uca.doc.tar.xz 01-Apr-2025 23:52 76988 +lua-uca.r74807.tar.xz 01-Apr-2025 23:52 249976 +lua-uca.source.r74807.tar.xz 01-Apr-2025 23:52 1184 +lua-uca.source.tar.xz 01-Apr-2025 23:52 1184 +lua-uca.tar.xz 01-Apr-2025 23:52 249976 +lua-ul.doc.r70203.tar.xz 28-Feb-2024 02:10 107676 +lua-ul.doc.tar.xz 28-Feb-2024 02:10 107676 +lua-ul.r70203.tar.xz 28-Feb-2024 02:10 7464 +lua-ul.source.r70203.tar.xz 28-Feb-2024 02:10 11712 +lua-ul.source.tar.xz 28-Feb-2024 02:10 11712 +lua-ul.tar.xz 28-Feb-2024 02:10 7464 +lua-uni-algos.doc.r76195.tar.xz 31-Aug-2025 23:49 77452 +lua-uni-algos.doc.tar.xz 31-Aug-2025 23:49 77452 +lua-uni-algos.r76195.tar.xz 31-Aug-2025 23:49 12332 +lua-uni-algos.tar.xz 31-Aug-2025 23:49 12332 +lua-visual-debug.doc.r65464.tar.xz 05-Jan-2023 00:54 289572 +lua-visual-debug.doc.tar.xz 05-Jan-2023 00:54 289572 +lua-visual-debug.r65464.tar.xz 05-Jan-2023 00:54 3500 +lua-visual-debug.tar.xz 05-Jan-2023 00:54 3500 +lua-widow-control.doc.r70601.tar.xz 12-Mar-2024 00:47 1157084 +lua-widow-control.doc.tar.xz 12-Mar-2024 00:47 1157084 +lua-widow-control.r70601.tar.xz 12-Mar-2024 00:47 19976 +lua-widow-control.source.r70601.tar.xz 12-Mar-2024 00:47 59796 +lua-widow-control.source.tar.xz 12-Mar-2024 00:47 59796 +lua-widow-control.tar.xz 12-Mar-2024 00:47 19976 +luaaddplot.doc.r72350.tar.xz 22-Sep-2024 23:46 257160 +luaaddplot.doc.tar.xz 22-Sep-2024 23:46 257160 +luaaddplot.r72350.tar.xz 22-Sep-2024 23:46 1468 +luaaddplot.source.r72350.tar.xz 22-Sep-2024 23:46 4184 +luaaddplot.source.tar.xz 22-Sep-2024 23:46 4184 +luaaddplot.tar.xz 22-Sep-2024 23:46 1468 +luabibentry.doc.r55777.tar.xz 07-Jul-2020 23:57 144332 +luabibentry.doc.tar.xz 07-Jul-2020 23:57 144332 +luabibentry.r55777.tar.xz 07-Jul-2020 23:57 2344 +luabibentry.source.r55777.tar.xz 07-Jul-2020 23:57 5424 +luabibentry.source.tar.xz 07-Jul-2020 23:57 5424 +luabibentry.tar.xz 07-Jul-2020 23:57 2344 +luabidi.doc.r68432.tar.xz 02-Oct-2023 23:46 94532 +luabidi.doc.tar.xz 02-Oct-2023 23:46 94532 +luabidi.r68432.tar.xz 02-Oct-2023 23:46 2748 +luabidi.tar.xz 02-Oct-2023 23:46 2748 +luacas.doc.r67247.tar.xz 30-May-2023 23:44 657044 +luacas.doc.tar.xz 30-May-2023 23:44 657044 +luacas.r67247.tar.xz 30-May-2023 23:44 63948 +luacas.tar.xz 30-May-2023 23:44 63948 +luacensor.doc.r71922.tar.xz 28-Jul-2024 23:46 166608 +luacensor.doc.tar.xz 28-Jul-2024 23:46 166608 +luacensor.r71922.tar.xz 28-Jul-2024 23:46 8908 +luacensor.tar.xz 28-Jul-2024 23:46 8908 +luacode.doc.r25193.tar.xz 28-Feb-2019 02:51 412328 +luacode.doc.tar.xz 28-Feb-2019 02:51 412328 +luacode.r25193.tar.xz 28-Feb-2019 02:51 2188 +luacode.source.r25193.tar.xz 28-Feb-2019 02:51 9016 +luacode.source.tar.xz 28-Feb-2019 02:51 9016 +luacode.tar.xz 28-Feb-2019 02:51 2188 +luacolor.doc.r67987.tar.xz 19-Aug-2023 23:49 344248 +luacolor.doc.tar.xz 19-Aug-2023 23:49 344248 +luacolor.r67987.tar.xz 19-Aug-2023 23:49 4164 +luacolor.source.r67987.tar.xz 19-Aug-2023 23:49 9328 +luacolor.source.tar.xz 19-Aug-2023 23:49 9328 +luacolor.tar.xz 19-Aug-2023 23:49 4164 +luacomplex.doc.r68883.tar.xz 18-Nov-2023 00:45 88276 +luacomplex.doc.tar.xz 18-Nov-2023 00:45 88276 +luacomplex.r68883.tar.xz 18-Nov-2023 00:45 1708 +luacomplex.tar.xz 18-Nov-2023 00:45 1708 +luafindfont.aarch64-linux.r61207.tar.xz 03-Dec-2021 00:52 340 +luafindfont.aarch64-linux.tar.xz 03-Dec-2021 00:52 340 +luafindfont.amd64-freebsd.r61207.tar.xz 03-Dec-2021 00:52 344 +luafindfont.amd64-freebsd.tar.xz 03-Dec-2021 00:52 344 +luafindfont.amd64-netbsd.r61207.tar.xz 03-Dec-2021 00:52 340 +luafindfont.amd64-netbsd.tar.xz 03-Dec-2021 00:52 340 +luafindfont.armhf-linux.r61207.tar.xz 03-Dec-2021 00:52 340 +luafindfont.armhf-linux.tar.xz 03-Dec-2021 00:52 340 +luafindfont.doc.r75679.tar.xz 04-Jul-2025 23:48 116820 +luafindfont.doc.tar.xz 04-Jul-2025 23:48 116820 +luafindfont.i386-freebsd.r61207.tar.xz 03-Dec-2021 00:52 340 +luafindfont.i386-freebsd.tar.xz 03-Dec-2021 00:52 340 +luafindfont.i386-linux.r61207.tar.xz 03-Dec-2021 00:52 340 +luafindfont.i386-linux.tar.xz 03-Dec-2021 00:52 340 +luafindfont.i386-netbsd.r61207.tar.xz 03-Dec-2021 00:52 340 +luafindfont.i386-netbsd.tar.xz 03-Dec-2021 00:52 340 +luafindfont.i386-solaris.r61207.tar.xz 03-Dec-2021 00:52 340 +luafindfont.i386-solaris.tar.xz 03-Dec-2021 00:52 340 +luafindfont.r75679.tar.xz 04-Jul-2025 23:48 6140 +luafindfont.tar.xz 04-Jul-2025 23:48 6140 +luafindfont.universal-darwin.r61207.tar.xz 03-Dec-2021 00:52 344 +luafindfont.universal-darwin.tar.xz 03-Dec-2021 00:52 344 +luafindfont.windows.r65891.tar.xz 20-Feb-2023 22:13 2308 +luafindfont.windows.tar.xz 20-Feb-2023 22:13 2308 +luafindfont.x86_64-cygwin.r61207.tar.xz 03-Dec-2021 00:52 344 +luafindfont.x86_64-cygwin.tar.xz 03-Dec-2021 00:52 344 +luafindfont.x86_64-darwinlegacy.r61207.tar.xz 03-Dec-2021 00:52 348 +luafindfont.x86_64-darwinlegacy.tar.xz 03-Dec-2021 00:52 348 +luafindfont.x86_64-linux.r61207.tar.xz 03-Dec-2021 00:52 344 +luafindfont.x86_64-linux.tar.xz 03-Dec-2021 00:52 344 +luafindfont.x86_64-linuxmusl.r61207.tar.xz 03-Dec-2021 00:52 348 +luafindfont.x86_64-linuxmusl.tar.xz 03-Dec-2021 00:52 348 +luafindfont.x86_64-solaris.r61207.tar.xz 03-Dec-2021 00:52 340 +luafindfont.x86_64-solaris.tar.xz 03-Dec-2021 00:52 340 +luagcd.doc.r68893.tar.xz 19-Nov-2023 00:47 86468 +luagcd.doc.tar.xz 19-Nov-2023 00:47 86468 +luagcd.r68893.tar.xz 19-Nov-2023 00:47 2612 +luagcd.tar.xz 19-Nov-2023 00:47 2612 +luahbtex.aarch64-linux.r74669.tar.xz 18-Mar-2025 00:50 2324592 +luahbtex.aarch64-linux.tar.xz 18-Mar-2025 00:50 2324592 +luahbtex.amd64-freebsd.r74669.tar.xz 18-Mar-2025 00:50 2223368 +luahbtex.amd64-freebsd.tar.xz 18-Mar-2025 00:50 2223368 +luahbtex.amd64-netbsd.r74670.tar.xz 18-Mar-2025 00:50 2216804 +luahbtex.amd64-netbsd.tar.xz 18-Mar-2025 00:50 2216804 +luahbtex.armhf-linux.r74669.tar.xz 18-Mar-2025 00:50 2101812 +luahbtex.armhf-linux.tar.xz 18-Mar-2025 00:50 2101812 +luahbtex.doc.r73848.tar.xz 11-Feb-2025 00:48 32000 +luahbtex.doc.tar.xz 11-Feb-2025 00:48 32000 +luahbtex.i386-freebsd.r74669.tar.xz 18-Mar-2025 00:50 2221468 +luahbtex.i386-freebsd.tar.xz 18-Mar-2025 00:50 2221468 +luahbtex.i386-linux.r74669.tar.xz 18-Mar-2025 00:50 2674736 +luahbtex.i386-linux.tar.xz 18-Mar-2025 00:50 2674736 +luahbtex.i386-netbsd.r74670.tar.xz 18-Mar-2025 00:50 2053124 +luahbtex.i386-netbsd.tar.xz 18-Mar-2025 00:50 2053124 +luahbtex.i386-solaris.r74669.tar.xz 18-Mar-2025 00:50 2161888 +luahbtex.i386-solaris.tar.xz 18-Mar-2025 00:50 2161888 +luahbtex.r73848.tar.xz 11-Feb-2025 00:48 460 +luahbtex.tar.xz 11-Feb-2025 00:48 460 +luahbtex.universal-darwin.r74677.tar.xz 18-Mar-2025 00:51 4393824 +luahbtex.universal-darwin.tar.xz 18-Mar-2025 00:51 4393824 +luahbtex.windows.r75604.tar.xz 25-Jun-2025 23:50 1948616 +luahbtex.windows.tar.xz 25-Jun-2025 23:50 1948616 +luahbtex.x86_64-cygwin.r74672.tar.xz 18-Mar-2025 00:51 2160328 +luahbtex.x86_64-cygwin.tar.xz 18-Mar-2025 00:51 2160328 +luahbtex.x86_64-darwinlegacy.r74152.tar.xz 20-Feb-2025 00:50 1946432 +luahbtex.x86_64-darwinlegacy.tar.xz 20-Feb-2025 00:50 1946432 +luahbtex.x86_64-linux.r74669.tar.xz 18-Mar-2025 00:51 2487428 +luahbtex.x86_64-linux.tar.xz 18-Mar-2025 00:51 2487428 +luahbtex.x86_64-linuxmusl.r74669.tar.xz 18-Mar-2025 00:51 2585568 +luahbtex.x86_64-linuxmusl.tar.xz 18-Mar-2025 00:51 2585568 +luahbtex.x86_64-solaris.r74669.tar.xz 18-Mar-2025 00:51 2368504 +luahbtex.x86_64-solaris.tar.xz 18-Mar-2025 00:51 2368504 +luahttp.doc.r67348.tar.xz 12-Jun-2023 23:44 136004 +luahttp.doc.tar.xz 12-Jun-2023 23:44 136004 +luahttp.r67348.tar.xz 12-Jun-2023 23:44 5080 +luahttp.tar.xz 12-Jun-2023 23:44 5080 +luahyphenrules.doc.r56200.tar.xz 28-Aug-2020 23:56 41252 +luahyphenrules.doc.tar.xz 28-Aug-2020 23:56 41252 +luahyphenrules.r56200.tar.xz 28-Aug-2020 23:56 2368 +luahyphenrules.tar.xz 28-Aug-2020 23:56 2368 +luaimageembed.doc.r50788.tar.xz 06-Apr-2019 21:33 1524 +luaimageembed.doc.tar.xz 06-Apr-2019 21:33 1524 +luaimageembed.r50788.tar.xz 06-Apr-2019 21:33 1416 +luaimageembed.tar.xz 06-Apr-2019 21:33 1416 +luaindex.doc.r25882.tar.xz 28-Feb-2019 02:51 160892 +luaindex.doc.tar.xz 28-Feb-2019 02:51 160892 +luaindex.r25882.tar.xz 28-Feb-2019 02:51 4488 +luaindex.source.r25882.tar.xz 28-Feb-2019 02:51 13392 +luaindex.source.tar.xz 28-Feb-2019 02:51 13392 +luaindex.tar.xz 28-Feb-2019 02:51 4488 +luainputenc.doc.r75712.tar.xz 07-Jul-2025 23:51 405692 +luainputenc.doc.tar.xz 07-Jul-2025 23:51 405692 +luainputenc.r75712.tar.xz 07-Jul-2025 23:51 5016 +luainputenc.source.r75712.tar.xz 07-Jul-2025 23:51 12408 +luainputenc.source.tar.xz 07-Jul-2025 23:51 12408 +luainputenc.tar.xz 07-Jul-2025 23:51 5016 +luajittex.aarch64-linux.r74669.tar.xz 18-Mar-2025 00:51 3961180 +luajittex.aarch64-linux.tar.xz 18-Mar-2025 00:51 3961180 +luajittex.amd64-freebsd.r74669.tar.xz 18-Mar-2025 00:51 4093812 +luajittex.amd64-freebsd.tar.xz 18-Mar-2025 00:51 4093812 +luajittex.amd64-netbsd.r74670.tar.xz 18-Mar-2025 00:51 4083968 +luajittex.amd64-netbsd.tar.xz 18-Mar-2025 00:51 4083968 +luajittex.armhf-linux.r74669.tar.xz 18-Mar-2025 00:51 2445756 +luajittex.armhf-linux.tar.xz 18-Mar-2025 00:51 2445756 +luajittex.doc.r73848.tar.xz 11-Feb-2025 00:48 32136 +luajittex.doc.tar.xz 11-Feb-2025 00:48 32136 +luajittex.i386-freebsd.r74669.tar.xz 18-Mar-2025 00:51 4091120 +luajittex.i386-freebsd.tar.xz 18-Mar-2025 00:51 4091120 +luajittex.i386-linux.r74669.tar.xz 18-Mar-2025 00:51 4475496 +luajittex.i386-linux.tar.xz 18-Mar-2025 00:51 4475496 +luajittex.i386-netbsd.r74670.tar.xz 18-Mar-2025 00:51 3650888 +luajittex.i386-netbsd.tar.xz 18-Mar-2025 00:51 3650888 +luajittex.r73848.tar.xz 11-Feb-2025 00:48 484 +luajittex.tar.xz 11-Feb-2025 00:48 484 +luajittex.universal-darwin.r74677.tar.xz 18-Mar-2025 00:51 7611852 +luajittex.universal-darwin.tar.xz 18-Mar-2025 00:51 7611852 +luajittex.windows.r75604.tar.xz 25-Jun-2025 23:50 4007900 +luajittex.windows.tar.xz 25-Jun-2025 23:50 4007900 +luajittex.x86_64-cygwin.r74672.tar.xz 18-Mar-2025 00:51 2625236 +luajittex.x86_64-cygwin.tar.xz 18-Mar-2025 00:51 2625236 +luajittex.x86_64-darwinlegacy.r74152.tar.xz 20-Feb-2025 00:51 2338120 +luajittex.x86_64-darwinlegacy.tar.xz 20-Feb-2025 00:51 2338120 +luajittex.x86_64-linux.r74669.tar.xz 18-Mar-2025 00:52 4082820 +luajittex.x86_64-linux.tar.xz 18-Mar-2025 00:52 4082820 +luajittex.x86_64-linuxmusl.r74669.tar.xz 18-Mar-2025 00:52 4451016 +luajittex.x86_64-linuxmusl.tar.xz 18-Mar-2025 00:52 4451016 +luakeys.doc.r75824.tar.xz 19-Jul-2025 23:52 363972 +luakeys.doc.tar.xz 19-Jul-2025 23:52 363972 +luakeys.r75824.tar.xz 19-Jul-2025 23:52 16692 +luakeys.tar.xz 19-Jul-2025 23:52 16692 +lualatex-doc-de.doc.r30474.tar.xz 28-Feb-2019 02:51 137620 +lualatex-doc-de.doc.tar.xz 28-Feb-2019 02:51 137620 +lualatex-doc-de.r30474.tar.xz 28-Feb-2019 02:51 536 +lualatex-doc-de.tar.xz 28-Feb-2019 02:51 536 +lualatex-math.doc.r61464.tar.xz 02-Jan-2022 00:56 201244 +lualatex-math.doc.tar.xz 02-Jan-2022 00:56 201244 +lualatex-math.r61464.tar.xz 02-Jan-2022 00:56 3332 +lualatex-math.source.r61464.tar.xz 02-Jan-2022 00:56 9532 +lualatex-math.source.tar.xz 02-Jan-2022 00:56 9532 +lualatex-math.tar.xz 02-Jan-2022 00:56 3332 +lualatex-truncate.doc.r67201.tar.xz 23-May-2023 23:44 62752 +lualatex-truncate.doc.tar.xz 23-May-2023 23:44 62752 +lualatex-truncate.r67201.tar.xz 23-May-2023 23:44 1916 +lualatex-truncate.source.r67201.tar.xz 23-May-2023 23:44 5392 +lualatex-truncate.source.tar.xz 23-May-2023 23:44 5392 +lualatex-truncate.tar.xz 23-May-2023 23:44 1916 +lualibs.doc.r67994.tar.xz 20-Aug-2023 23:44 88736 +lualibs.doc.tar.xz 20-Aug-2023 23:44 88736 +lualibs.r67994.tar.xz 20-Aug-2023 23:44 133320 +lualibs.source.r67994.tar.xz 20-Aug-2023 23:44 8612 +lualibs.source.tar.xz 20-Aug-2023 23:44 8612 +lualibs.tar.xz 20-Aug-2023 23:44 133320 +lualinalg.doc.r68918.tar.xz 21-Nov-2023 00:45 195932 +lualinalg.doc.tar.xz 21-Nov-2023 00:45 195932 +lualinalg.r68918.tar.xz 21-Nov-2023 00:45 6732 +lualinalg.tar.xz 21-Nov-2023 00:45 6732 +luamathalign.doc.r63226.tar.xz 04-May-2022 23:53 393088 +luamathalign.doc.tar.xz 04-May-2022 23:53 393088 +luamathalign.r63226.tar.xz 04-May-2022 23:53 4076 +luamathalign.source.r63226.tar.xz 04-May-2022 23:53 5704 +luamathalign.source.tar.xz 04-May-2022 23:53 5704 +luamathalign.tar.xz 04-May-2022 23:53 4076 +luamaths.doc.r68883.tar.xz 18-Nov-2023 00:45 112448 +luamaths.doc.tar.xz 18-Nov-2023 00:45 112448 +luamaths.r68883.tar.xz 18-Nov-2023 00:45 4432 +luamaths.tar.xz 18-Nov-2023 00:45 4432 +luamesh.doc.r63875.tar.xz 11-Jul-2022 23:52 251676 +luamesh.doc.tar.xz 11-Jul-2022 23:52 251676 +luamesh.r63875.tar.xz 11-Jul-2022 23:52 12872 +luamesh.tar.xz 11-Jul-2022 23:52 12872 +luamml.doc.r75619.tar.xz 26-Jun-2025 23:48 201128 +luamml.doc.tar.xz 26-Jun-2025 23:48 201128 +luamml.r75619.tar.xz 26-Jun-2025 23:48 23324 +luamml.source.r75619.tar.xz 26-Jun-2025 23:48 8116 +luamml.source.tar.xz 26-Jun-2025 23:48 8116 +luamml.tar.xz 26-Jun-2025 23:48 23324 +luamodulartables.doc.r68893.tar.xz 19-Nov-2023 00:47 205824 +luamodulartables.doc.tar.xz 19-Nov-2023 00:47 205824 +luamodulartables.r68893.tar.xz 19-Nov-2023 00:47 1384 +luamodulartables.tar.xz 19-Nov-2023 00:47 1384 +luamplib.doc.r75315.tar.xz 26-May-2025 23:48 320320 +luamplib.doc.tar.xz 26-May-2025 23:48 320320 +luamplib.r75315.tar.xz 26-May-2025 23:48 28380 +luamplib.source.r75315.tar.xz 26-May-2025 23:48 54660 +luamplib.source.tar.xz 26-May-2025 23:48 54660 +luamplib.tar.xz 26-May-2025 23:48 28380 +luanumint.doc.r68918.tar.xz 21-Nov-2023 00:45 137048 +luanumint.doc.tar.xz 21-Nov-2023 00:45 137048 +luanumint.r68918.tar.xz 21-Nov-2023 00:45 2332 +luanumint.tar.xz 21-Nov-2023 00:45 2332 +luaoptions.doc.r64870.tar.xz 31-Oct-2022 00:53 32152 +luaoptions.doc.tar.xz 31-Oct-2022 00:53 32152 +luaoptions.r64870.tar.xz 31-Oct-2022 00:53 6052 +luaoptions.tar.xz 31-Oct-2022 00:53 6052 +luaotfload.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:51 348 +luaotfload.aarch64-linux.tar.xz 28-Feb-2019 02:51 348 +luaotfload.amd64-freebsd.r34647.tar.xz 28-Feb-2019 02:51 352 +luaotfload.amd64-freebsd.tar.xz 28-Feb-2019 02:51 352 +luaotfload.amd64-netbsd.r34647.tar.xz 28-Feb-2019 02:51 348 +luaotfload.amd64-netbsd.tar.xz 28-Feb-2019 02:51 348 +luaotfload.armhf-linux.r34647.tar.xz 28-Feb-2019 02:51 348 +luaotfload.armhf-linux.tar.xz 28-Feb-2019 02:51 348 +luaotfload.doc.r74324.tar.xz 28-Feb-2025 00:51 641648 +luaotfload.doc.tar.xz 28-Feb-2025 00:51 641648 +luaotfload.i386-freebsd.r34647.tar.xz 28-Feb-2019 02:51 348 +luaotfload.i386-freebsd.tar.xz 28-Feb-2019 02:51 348 +luaotfload.i386-linux.r34647.tar.xz 28-Feb-2019 02:51 348 +luaotfload.i386-linux.tar.xz 28-Feb-2019 02:51 348 +luaotfload.i386-netbsd.r34647.tar.xz 28-Feb-2019 02:51 348 +luaotfload.i386-netbsd.tar.xz 28-Feb-2019 02:51 348 +luaotfload.i386-solaris.r34647.tar.xz 28-Feb-2019 02:51 348 +luaotfload.i386-solaris.tar.xz 28-Feb-2019 02:51 348 +luaotfload.r74324.tar.xz 28-Feb-2025 00:51 623572 +luaotfload.source.r74324.tar.xz 28-Feb-2025 00:51 7296 +luaotfload.source.tar.xz 28-Feb-2025 00:51 7296 +luaotfload.tar.xz 28-Feb-2025 00:51 623572 +luaotfload.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 348 +luaotfload.universal-darwin.tar.xz 25-Feb-2021 18:16 348 +luaotfload.windows.r65891.tar.xz 20-Feb-2023 22:14 2316 +luaotfload.windows.tar.xz 20-Feb-2023 22:14 2316 +luaotfload.x86_64-cygwin.r34647.tar.xz 28-Feb-2019 02:51 348 +luaotfload.x86_64-cygwin.tar.xz 28-Feb-2019 02:51 348 +luaotfload.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:51 356 +luaotfload.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:51 356 +luaotfload.x86_64-linux.r34647.tar.xz 28-Feb-2019 02:51 348 +luaotfload.x86_64-linux.tar.xz 28-Feb-2019 02:51 348 +luaotfload.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:51 352 +luaotfload.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:51 352 +luaotfload.x86_64-solaris.r34647.tar.xz 28-Feb-2019 02:51 348 +luaotfload.x86_64-solaris.tar.xz 28-Feb-2019 02:51 348 +luapackageloader.doc.r54779.tar.xz 19-Apr-2020 16:10 35324 +luapackageloader.doc.tar.xz 19-Apr-2020 16:10 35324 +luapackageloader.r54779.tar.xz 19-Apr-2020 16:10 1700 +luapackageloader.tar.xz 19-Apr-2020 16:10 1700 +luaplot.doc.r68918.tar.xz 21-Nov-2023 00:45 127776 +luaplot.doc.tar.xz 21-Nov-2023 00:45 127776 +luaplot.r68918.tar.xz 21-Nov-2023 00:45 2232 +luaplot.tar.xz 21-Nov-2023 00:45 2232 +luaprogtable.doc.r56113.tar.xz 14-Aug-2020 23:56 442728 +luaprogtable.doc.tar.xz 14-Aug-2020 23:56 442728 +luaprogtable.r56113.tar.xz 14-Aug-2020 23:56 7092 +luaprogtable.tar.xz 14-Aug-2020 23:56 7092 +luapstricks.doc.r67207.tar.xz 24-May-2023 23:44 1252 +luapstricks.doc.tar.xz 24-May-2023 23:44 1252 +luapstricks.r67207.tar.xz 24-May-2023 23:44 33884 +luapstricks.tar.xz 24-May-2023 23:44 33884 +luaquotes.doc.r65652.tar.xz 28-Jan-2023 00:54 65436 +luaquotes.doc.tar.xz 28-Jan-2023 00:54 65436 +luaquotes.r65652.tar.xz 28-Jan-2023 00:54 3384 +luaquotes.tar.xz 28-Jan-2023 00:54 3384 +luarandom.doc.r68847.tar.xz 15-Nov-2023 00:45 70264 +luarandom.doc.tar.xz 15-Nov-2023 00:45 70264 +luarandom.r68847.tar.xz 15-Nov-2023 00:45 1416 +luarandom.tar.xz 15-Nov-2023 00:45 1416 +luaset.doc.r68883.tar.xz 18-Nov-2023 00:45 76644 +luaset.doc.tar.xz 18-Nov-2023 00:45 76644 +luaset.r68883.tar.xz 18-Nov-2023 00:45 1580 +luaset.tar.xz 18-Nov-2023 00:45 1580 +luasseq.doc.r65511.tar.xz 11-Jan-2023 00:52 146972 +luasseq.doc.tar.xz 11-Jan-2023 00:52 146972 +luasseq.r65511.tar.xz 11-Jan-2023 00:52 10276 +luasseq.source.r65511.tar.xz 11-Jan-2023 00:52 11388 +luasseq.source.tar.xz 11-Jan-2023 00:52 11388 +luasseq.tar.xz 11-Jan-2023 00:52 10276 +luatbls.doc.r73999.tar.xz 16-Feb-2025 01:01 83744 +luatbls.doc.tar.xz 16-Feb-2025 01:01 83744 +luatbls.r73999.tar.xz 16-Feb-2025 01:01 5056 +luatbls.tar.xz 16-Feb-2025 01:01 5056 +luatex-type-definitions.doc.r75890.tar.xz 25-Jul-2025 23:46 404032 +luatex-type-definitions.doc.tar.xz 25-Jul-2025 23:46 404032 +luatex-type-definitions.r75890.tar.xz 25-Jul-2025 23:46 145508 +luatex-type-definitions.tar.xz 25-Jul-2025 23:46 145508 +luatex.aarch64-linux.r74669.tar.xz 18-Mar-2025 00:52 1723660 +luatex.aarch64-linux.tar.xz 18-Mar-2025 00:52 1723660 +luatex.amd64-freebsd.r74669.tar.xz 18-Mar-2025 00:52 1621688 +luatex.amd64-freebsd.tar.xz 18-Mar-2025 00:52 1621688 +luatex.amd64-netbsd.r74670.tar.xz 18-Mar-2025 00:52 1612856 +luatex.amd64-netbsd.tar.xz 18-Mar-2025 00:52 1612856 +luatex.armhf-linux.r74669.tar.xz 18-Mar-2025 00:52 1635536 +luatex.armhf-linux.tar.xz 18-Mar-2025 00:52 1635536 +luatex.doc.r75423.tar.xz 07-Jun-2025 19:02 1993636 +luatex.doc.tar.xz 07-Jun-2025 19:02 1993636 +luatex.i386-freebsd.r74669.tar.xz 18-Mar-2025 00:52 1614916 +luatex.i386-freebsd.tar.xz 18-Mar-2025 00:52 1614916 +luatex.i386-linux.r74669.tar.xz 18-Mar-2025 00:52 1989948 +luatex.i386-linux.tar.xz 18-Mar-2025 00:52 1989948 +luatex.i386-netbsd.r74670.tar.xz 18-Mar-2025 00:52 1466116 +luatex.i386-netbsd.tar.xz 18-Mar-2025 00:52 1466116 +luatex.i386-solaris.r74669.tar.xz 18-Mar-2025 00:52 1699496 +luatex.i386-solaris.tar.xz 18-Mar-2025 00:52 1699496 +luatex.r75423.tar.xz 07-Jun-2025 19:02 9844 +luatex.tar.xz 07-Jun-2025 19:02 9844 +luatex.universal-darwin.r74677.tar.xz 18-Mar-2025 00:52 3067912 +luatex.universal-darwin.tar.xz 18-Mar-2025 00:52 3067912 +luatex.windows.r75604.tar.xz 25-Jun-2025 23:50 2111224 +luatex.windows.tar.xz 25-Jun-2025 23:50 2111224 +luatex.x86_64-cygwin.r74672.tar.xz 18-Mar-2025 00:52 1753332 +luatex.x86_64-cygwin.tar.xz 18-Mar-2025 00:52 1753332 +luatex.x86_64-darwinlegacy.r74152.tar.xz 20-Feb-2025 00:52 1613468 +luatex.x86_64-darwinlegacy.tar.xz 20-Feb-2025 00:52 1613468 +luatex.x86_64-linux.r74669.tar.xz 18-Mar-2025 00:52 1867516 +luatex.x86_64-linux.tar.xz 18-Mar-2025 00:52 1867516 +luatex.x86_64-linuxmusl.r74669.tar.xz 18-Mar-2025 00:52 1907456 +luatex.x86_64-linuxmusl.tar.xz 18-Mar-2025 00:52 1907456 +luatex.x86_64-solaris.r74669.tar.xz 18-Mar-2025 00:52 1878260 +luatex.x86_64-solaris.tar.xz 18-Mar-2025 00:52 1878260 +luatex85.doc.r41456.tar.xz 28-Feb-2019 02:52 171144 +luatex85.doc.tar.xz 28-Feb-2019 02:52 171144 +luatex85.r41456.tar.xz 28-Feb-2019 02:52 1740 +luatex85.source.r41456.tar.xz 28-Feb-2019 02:52 3788 +luatex85.source.tar.xz 28-Feb-2019 02:52 3788 +luatex85.tar.xz 28-Feb-2019 02:52 1740 +luatexbase.doc.r52663.tar.xz 07-Nov-2019 17:46 263752 +luatexbase.doc.tar.xz 07-Nov-2019 17:46 263752 +luatexbase.r52663.tar.xz 07-Nov-2019 17:46 3508 +luatexbase.source.r52663.tar.xz 07-Nov-2019 17:46 8444 +luatexbase.source.tar.xz 07-Nov-2019 17:46 8444 +luatexbase.tar.xz 07-Nov-2019 17:46 3508 +luatexja.doc.r76372.tar.xz 21-Sep-2025 23:50 3430676 +luatexja.doc.tar.xz 21-Sep-2025 23:50 3430676 +luatexja.r76372.tar.xz 21-Sep-2025 23:50 194824 +luatexja.source.r76372.tar.xz 21-Sep-2025 23:50 84276 +luatexja.source.tar.xz 21-Sep-2025 23:50 84276 +luatexja.tar.xz 21-Sep-2025 23:50 194824 +luatexko.doc.r76408.tar.xz 26-Sep-2025 23:46 357696 +luatexko.doc.tar.xz 26-Sep-2025 23:46 357696 +luatexko.r76408.tar.xz 26-Sep-2025 23:46 25664 +luatexko.tar.xz 26-Sep-2025 23:46 25664 +luatextra.doc.r20747.tar.xz 28-Feb-2019 02:52 317312 +luatextra.doc.tar.xz 28-Feb-2019 02:52 317312 +luatextra.r20747.tar.xz 28-Feb-2019 02:52 1056 +luatextra.source.r20747.tar.xz 28-Feb-2019 02:52 3492 +luatextra.source.tar.xz 28-Feb-2019 02:52 3492 +luatextra.tar.xz 28-Feb-2019 02:52 1056 +luatikz.doc.r73087.tar.xz 10-Dec-2024 00:49 115340 +luatikz.doc.tar.xz 10-Dec-2024 00:49 115340 +luatikz.r73087.tar.xz 10-Dec-2024 00:49 8156 +luatikz.tar.xz 10-Dec-2024 00:49 8156 +luatodonotes.doc.r76032.tar.xz 12-Aug-2025 23:48 209520 +luatodonotes.doc.tar.xz 12-Aug-2025 23:48 209520 +luatodonotes.r76032.tar.xz 12-Aug-2025 23:48 26608 +luatodonotes.source.r76032.tar.xz 12-Aug-2025 23:48 20840 +luatodonotes.source.tar.xz 12-Aug-2025 23:48 20840 +luatodonotes.tar.xz 12-Aug-2025 23:48 26608 +luatruthtable.doc.r68893.tar.xz 19-Nov-2023 00:47 94156 +luatruthtable.doc.tar.xz 19-Nov-2023 00:47 94156 +luatruthtable.r68893.tar.xz 19-Nov-2023 00:47 2320 +luatruthtable.tar.xz 19-Nov-2023 00:47 2320 +luavlna.doc.r71156.tar.xz 02-May-2024 23:47 87996 +luavlna.doc.tar.xz 02-May-2024 23:47 87996 +luavlna.r71156.tar.xz 02-May-2024 23:47 9164 +luavlna.tar.xz 02-May-2024 23:47 9164 +luaxml.doc.r72858.tar.xz 16-Nov-2024 00:47 147364 +luaxml.doc.tar.xz 16-Nov-2024 00:47 147364 +luaxml.r72858.tar.xz 16-Nov-2024 00:47 49960 +luaxml.tar.xz 16-Nov-2024 00:47 49960 +lucide-icons.doc.r75936.tar.xz 31-Jul-2025 23:46 581736 +lucide-icons.doc.tar.xz 31-Jul-2025 23:46 581736 +lucide-icons.r75936.tar.xz 31-Jul-2025 23:46 374624 +lucide-icons.tar.xz 31-Jul-2025 23:46 374624 +luciole.doc.r76217.tar.xz 02-Sep-2025 23:49 1688640 +luciole.doc.tar.xz 02-Sep-2025 23:49 1688640 +luciole.r76217.tar.xz 02-Sep-2025 23:49 320956 +luciole.tar.xz 02-Sep-2025 23:49 320956 +lutabulartools.doc.r73345.tar.xz 08-Jan-2025 15:16 88288 +lutabulartools.doc.tar.xz 08-Jan-2025 15:16 88288 +lutabulartools.r73345.tar.xz 08-Jan-2025 15:16 7532 +lutabulartools.tar.xz 08-Jan-2025 15:16 7532 +luwiantype.doc.r73719.tar.xz 04-Feb-2025 00:48 868824 +luwiantype.doc.tar.xz 04-Feb-2025 00:48 868824 +luwiantype.r73719.tar.xz 04-Feb-2025 00:48 194512 +luwiantype.tar.xz 04-Feb-2025 00:48 194512 +lwarp.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:52 344 +lwarp.aarch64-linux.tar.xz 28-Feb-2019 02:52 344 +lwarp.amd64-freebsd.r43292.tar.xz 28-Feb-2019 02:52 344 +lwarp.amd64-freebsd.tar.xz 28-Feb-2019 02:52 344 +lwarp.amd64-netbsd.r43292.tar.xz 28-Feb-2019 02:52 344 +lwarp.amd64-netbsd.tar.xz 28-Feb-2019 02:52 344 +lwarp.armhf-linux.r43292.tar.xz 28-Feb-2019 02:52 344 +lwarp.armhf-linux.tar.xz 28-Feb-2019 02:52 344 +lwarp.doc.r75010.tar.xz 23-Apr-2025 23:49 3155708 +lwarp.doc.tar.xz 23-Apr-2025 23:49 3155708 +lwarp.i386-freebsd.r43292.tar.xz 28-Feb-2019 02:52 344 +lwarp.i386-freebsd.tar.xz 28-Feb-2019 02:52 344 +lwarp.i386-linux.r43292.tar.xz 28-Feb-2019 02:52 344 +lwarp.i386-linux.tar.xz 28-Feb-2019 02:52 344 +lwarp.i386-netbsd.r43292.tar.xz 28-Feb-2019 02:52 344 +lwarp.i386-netbsd.tar.xz 28-Feb-2019 02:52 344 +lwarp.i386-solaris.r43292.tar.xz 28-Feb-2019 02:52 340 +lwarp.i386-solaris.tar.xz 28-Feb-2019 02:52 340 +lwarp.r75010.tar.xz 23-Apr-2025 23:49 224832 +lwarp.source.r75010.tar.xz 23-Apr-2025 23:49 479464 +lwarp.source.tar.xz 23-Apr-2025 23:49 479464 +lwarp.tar.xz 23-Apr-2025 23:49 224832 +lwarp.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +lwarp.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +lwarp.windows.r65891.tar.xz 20-Feb-2023 22:14 2308 +lwarp.windows.tar.xz 20-Feb-2023 22:14 2308 +lwarp.x86_64-cygwin.r43292.tar.xz 28-Feb-2019 02:52 344 +lwarp.x86_64-cygwin.tar.xz 28-Feb-2019 02:52 344 +lwarp.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:52 352 +lwarp.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:52 352 +lwarp.x86_64-linux.r43292.tar.xz 28-Feb-2019 02:52 344 +lwarp.x86_64-linux.tar.xz 28-Feb-2019 02:52 344 +lwarp.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:52 348 +lwarp.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:52 348 +lwarp.x86_64-solaris.r43292.tar.xz 28-Feb-2019 02:52 344 +lwarp.x86_64-solaris.tar.xz 28-Feb-2019 02:52 344 +lxfonts.doc.r73728.tar.xz 05-Feb-2025 00:47 534160 +lxfonts.doc.tar.xz 05-Feb-2025 00:47 534160 +lxfonts.r73728.tar.xz 05-Feb-2025 00:47 930900 +lxfonts.source.r73728.tar.xz 05-Feb-2025 00:47 9820 +lxfonts.source.tar.xz 05-Feb-2025 00:47 9820 +lxfonts.tar.xz 05-Feb-2025 00:47 930900 +ly1.doc.r63565.tar.xz 12-Jun-2022 23:53 3652 +ly1.doc.tar.xz 12-Jun-2022 23:53 3652 +ly1.r63565.tar.xz 12-Jun-2022 23:53 54900 +ly1.tar.xz 12-Jun-2022 23:53 54900 +lyluatex.doc.r66880.tar.xz 18-Apr-2023 23:53 834568 +lyluatex.doc.tar.xz 18-Apr-2023 23:53 834568 +lyluatex.r66880.tar.xz 18-Apr-2023 23:53 14988 +lyluatex.tar.xz 18-Apr-2023 23:53 14988 +m-tx.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:49 43748 +m-tx.aarch64-linux.tar.xz 13-Feb-2025 00:49 43748 +m-tx.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:54 39668 +m-tx.amd64-freebsd.tar.xz 09-Feb-2025 00:54 39668 +m-tx.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 40000 +m-tx.amd64-netbsd.tar.xz 09-Feb-2025 18:16 40000 +m-tx.armhf-linux.r73793.tar.xz 09-Feb-2025 00:54 38716 +m-tx.armhf-linux.tar.xz 09-Feb-2025 00:54 38716 +m-tx.doc.r75301.tar.xz 23-May-2025 23:46 739512 +m-tx.doc.tar.xz 23-May-2025 23:46 739512 +m-tx.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:54 39680 +m-tx.i386-freebsd.tar.xz 09-Feb-2025 00:54 39680 +m-tx.i386-linux.r73792.tar.xz 09-Feb-2025 00:54 51796 +m-tx.i386-linux.tar.xz 09-Feb-2025 00:54 51796 +m-tx.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 37632 +m-tx.i386-netbsd.tar.xz 09-Feb-2025 18:16 37632 +m-tx.i386-solaris.r73792.tar.xz 09-Feb-2025 00:54 44664 +m-tx.i386-solaris.tar.xz 09-Feb-2025 00:54 44664 +m-tx.r75301.tar.xz 23-May-2025 23:46 4528 +m-tx.tar.xz 23-May-2025 23:46 4528 +m-tx.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 87216 +m-tx.universal-darwin.tar.xz 09-Feb-2025 18:16 87216 +m-tx.windows.r73796.tar.xz 09-Feb-2025 18:16 46524 +m-tx.windows.tar.xz 09-Feb-2025 18:16 46524 +m-tx.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 44300 +m-tx.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 44300 +m-tx.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:49 43968 +m-tx.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:49 43968 +m-tx.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 44504 +m-tx.x86_64-linux.tar.xz 19-Feb-2025 00:47 44504 +m-tx.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:54 46232 +m-tx.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:54 46232 +m-tx.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:54 49340 +m-tx.x86_64-solaris.tar.xz 09-Feb-2025 00:54 49340 +macrolist.doc.r60139.tar.xz 01-Aug-2021 23:54 190676 +macrolist.doc.tar.xz 01-Aug-2021 23:54 190676 +macrolist.r60139.tar.xz 01-Aug-2021 23:54 2340 +macrolist.source.r60139.tar.xz 01-Aug-2021 23:54 4528 +macrolist.source.tar.xz 01-Aug-2021 23:54 4528 +macrolist.tar.xz 01-Aug-2021 23:54 2340 +macros2e.doc.r64967.tar.xz 08-Nov-2022 00:55 185624 +macros2e.doc.tar.xz 08-Nov-2022 00:55 185624 +macros2e.r64967.tar.xz 08-Nov-2022 00:55 816 +macros2e.tar.xz 08-Nov-2022 00:55 816 +macroswap.doc.r31498.tar.xz 28-Feb-2019 02:52 163332 +macroswap.doc.tar.xz 28-Feb-2019 02:52 163332 +macroswap.r31498.tar.xz 28-Feb-2019 02:52 1052 +macroswap.source.r31498.tar.xz 28-Feb-2019 02:52 3172 +macroswap.source.tar.xz 28-Feb-2019 02:52 3172 +macroswap.tar.xz 28-Feb-2019 02:52 1052 +mafr.doc.r15878.tar.xz 28-Feb-2019 02:52 60024 +mafr.doc.tar.xz 28-Feb-2019 02:52 60024 +mafr.r15878.tar.xz 28-Feb-2019 02:52 2196 +mafr.tar.xz 28-Feb-2019 02:52 2196 +magaz.doc.r24694.tar.xz 28-Feb-2019 02:52 231644 +magaz.doc.tar.xz 28-Feb-2019 02:52 231644 +magaz.r24694.tar.xz 28-Feb-2019 02:52 4416 +magaz.tar.xz 28-Feb-2019 02:52 4416 +magicnum.doc.r52983.tar.xz 01-Dec-2019 00:58 322116 +magicnum.doc.tar.xz 01-Dec-2019 00:58 322116 +magicnum.r52983.tar.xz 01-Dec-2019 00:58 4196 +magicnum.source.r52983.tar.xz 01-Dec-2019 00:58 10092 +magicnum.source.tar.xz 01-Dec-2019 00:58 10092 +magicnum.tar.xz 01-Dec-2019 00:58 4196 +magicwatermark.doc.r72044.tar.xz 16-Aug-2024 23:46 213352 +magicwatermark.doc.tar.xz 16-Aug-2024 23:46 213352 +magicwatermark.r72044.tar.xz 16-Aug-2024 23:46 2832 +magicwatermark.tar.xz 16-Aug-2024 23:46 2832 +magra.doc.r57373.tar.xz 11-Jan-2021 01:00 38364 +magra.doc.tar.xz 11-Jan-2021 01:00 38364 +magra.r57373.tar.xz 11-Jan-2021 01:00 179260 +magra.tar.xz 11-Jan-2021 01:00 179260 +mahjong.doc.r73437.tar.xz 13-Jan-2025 00:48 752376 +mahjong.doc.tar.xz 13-Jan-2025 00:48 752376 +mahjong.r73437.tar.xz 13-Jan-2025 00:48 95620 +mahjong.source.r73437.tar.xz 13-Jan-2025 00:48 6880 +mahjong.source.tar.xz 13-Jan-2025 00:48 6880 +mahjong.tar.xz 13-Jan-2025 00:48 95620 +mailing.doc.r71862.tar.xz 21-Jul-2024 23:46 146536 +mailing.doc.tar.xz 21-Jul-2024 23:46 146536 +mailing.r71862.tar.xz 21-Jul-2024 23:46 1756 +mailing.source.r71862.tar.xz 21-Jul-2024 23:46 3748 +mailing.source.tar.xz 21-Jul-2024 23:46 3748 +mailing.tar.xz 21-Jul-2024 23:46 1756 +mailmerge.doc.r15878.tar.xz 28-Feb-2019 02:52 91936 +mailmerge.doc.tar.xz 28-Feb-2019 02:52 91936 +mailmerge.r15878.tar.xz 28-Feb-2019 02:52 1928 +mailmerge.source.r15878.tar.xz 28-Feb-2019 02:52 4236 +mailmerge.source.tar.xz 28-Feb-2019 02:52 4236 +mailmerge.tar.xz 28-Feb-2019 02:52 1928 +maine-thesis.doc.r76419.tar.xz 27-Sep-2025 23:56 759544 +maine-thesis.doc.tar.xz 27-Sep-2025 23:56 759544 +maine-thesis.r76419.tar.xz 27-Sep-2025 23:56 7248 +maine-thesis.source.r76419.tar.xz 27-Sep-2025 23:56 38548 +maine-thesis.source.tar.xz 27-Sep-2025 23:56 38548 +maine-thesis.tar.xz 27-Sep-2025 23:56 7248 +make4ht.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:52 340 +make4ht.aarch64-linux.tar.xz 28-Feb-2019 02:52 340 +make4ht.amd64-freebsd.r37750.tar.xz 28-Feb-2019 02:52 340 +make4ht.amd64-freebsd.tar.xz 28-Feb-2019 02:52 340 +make4ht.amd64-netbsd.r37750.tar.xz 28-Feb-2019 02:52 340 +make4ht.amd64-netbsd.tar.xz 28-Feb-2019 02:52 340 +make4ht.armhf-linux.r37750.tar.xz 28-Feb-2019 02:52 340 +make4ht.armhf-linux.tar.xz 28-Feb-2019 02:52 340 +make4ht.doc.r74940.tar.xz 14-Apr-2025 23:50 193984 +make4ht.doc.tar.xz 14-Apr-2025 23:50 193984 +make4ht.i386-freebsd.r37750.tar.xz 28-Feb-2019 02:52 340 +make4ht.i386-freebsd.tar.xz 28-Feb-2019 02:52 340 +make4ht.i386-linux.r37750.tar.xz 28-Feb-2019 02:52 340 +make4ht.i386-linux.tar.xz 28-Feb-2019 02:52 340 +make4ht.i386-netbsd.r37750.tar.xz 28-Feb-2019 02:52 336 +make4ht.i386-netbsd.tar.xz 28-Feb-2019 02:52 336 +make4ht.i386-solaris.r37750.tar.xz 28-Feb-2019 02:52 340 +make4ht.i386-solaris.tar.xz 28-Feb-2019 02:52 340 +make4ht.r74940.tar.xz 14-Apr-2025 23:51 83480 +make4ht.tar.xz 14-Apr-2025 23:51 83480 +make4ht.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 336 +make4ht.universal-darwin.tar.xz 25-Feb-2021 18:16 336 +make4ht.windows.r65891.tar.xz 20-Feb-2023 22:14 2308 +make4ht.windows.tar.xz 20-Feb-2023 22:14 2308 +make4ht.x86_64-cygwin.r37750.tar.xz 28-Feb-2019 02:52 340 +make4ht.x86_64-cygwin.tar.xz 28-Feb-2019 02:52 340 +make4ht.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:52 348 +make4ht.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:52 348 +make4ht.x86_64-linux.r37750.tar.xz 28-Feb-2019 02:52 336 +make4ht.x86_64-linux.tar.xz 28-Feb-2019 02:52 336 +make4ht.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:52 340 +make4ht.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:52 340 +make4ht.x86_64-solaris.r37750.tar.xz 28-Feb-2019 02:52 340 +make4ht.x86_64-solaris.tar.xz 28-Feb-2019 02:52 340 +makebarcode.doc.r15878.tar.xz 28-Feb-2019 02:52 272060 +makebarcode.doc.tar.xz 28-Feb-2019 02:52 272060 +makebarcode.r15878.tar.xz 28-Feb-2019 02:52 4928 +makebarcode.tar.xz 28-Feb-2019 02:52 4928 +makebase.doc.r41012.tar.xz 28-Feb-2019 02:52 450432 +makebase.doc.tar.xz 28-Feb-2019 02:52 450432 +makebase.r41012.tar.xz 28-Feb-2019 02:52 1316 +makebase.source.r41012.tar.xz 28-Feb-2019 02:52 15000 +makebase.source.tar.xz 28-Feb-2019 02:52 15000 +makebase.tar.xz 28-Feb-2019 02:52 1316 +makebox.doc.r15878.tar.xz 28-Feb-2019 02:52 272640 +makebox.doc.tar.xz 28-Feb-2019 02:52 272640 +makebox.r15878.tar.xz 28-Feb-2019 02:52 952 +makebox.source.r15878.tar.xz 28-Feb-2019 02:52 2892 +makebox.source.tar.xz 28-Feb-2019 02:52 2892 +makebox.tar.xz 28-Feb-2019 02:52 952 +makecell.doc.r15878.tar.xz 28-Feb-2019 02:53 690256 +makecell.doc.tar.xz 28-Feb-2019 02:53 690256 +makecell.r15878.tar.xz 28-Feb-2019 02:53 4460 +makecell.source.r15878.tar.xz 28-Feb-2019 02:52 14792 +makecell.source.tar.xz 28-Feb-2019 02:52 14792 +makecell.tar.xz 28-Feb-2019 02:53 4460 +makecirc.doc.r15878.tar.xz 28-Feb-2019 02:53 473276 +makecirc.doc.tar.xz 28-Feb-2019 02:53 473276 +makecirc.r15878.tar.xz 28-Feb-2019 02:53 12296 +makecirc.tar.xz 28-Feb-2019 02:53 12296 +makecmds.doc.r15878.tar.xz 28-Feb-2019 02:53 115620 +makecmds.doc.tar.xz 28-Feb-2019 02:53 115620 +makecmds.r15878.tar.xz 28-Feb-2019 02:53 1340 +makecmds.source.r15878.tar.xz 28-Feb-2019 02:53 5288 +makecmds.source.tar.xz 28-Feb-2019 02:53 5288 +makecmds.tar.xz 28-Feb-2019 02:53 1340 +makecookbook.doc.r49311.tar.xz 28-Feb-2019 02:53 463616 +makecookbook.doc.tar.xz 28-Feb-2019 02:53 463616 +makecookbook.r49311.tar.xz 28-Feb-2019 02:53 880 +makecookbook.tar.xz 28-Feb-2019 02:53 880 +makedtx.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:53 340 +makedtx.aarch64-linux.tar.xz 28-Feb-2019 02:53 340 +makedtx.amd64-freebsd.r38769.tar.xz 28-Feb-2019 02:53 344 +makedtx.amd64-freebsd.tar.xz 28-Feb-2019 02:53 344 +makedtx.amd64-netbsd.r38769.tar.xz 28-Feb-2019 02:53 340 +makedtx.amd64-netbsd.tar.xz 28-Feb-2019 02:53 340 +makedtx.armhf-linux.r38769.tar.xz 28-Feb-2019 02:53 340 +makedtx.armhf-linux.tar.xz 28-Feb-2019 02:53 340 +makedtx.doc.r46702.tar.xz 28-Feb-2019 02:53 269240 +makedtx.doc.tar.xz 28-Feb-2019 02:53 269240 +makedtx.i386-freebsd.r38769.tar.xz 28-Feb-2019 02:53 344 +makedtx.i386-freebsd.tar.xz 28-Feb-2019 02:53 344 +makedtx.i386-linux.r38769.tar.xz 28-Feb-2019 02:53 340 +makedtx.i386-linux.tar.xz 28-Feb-2019 02:53 340 +makedtx.i386-netbsd.r38769.tar.xz 28-Feb-2019 02:53 340 +makedtx.i386-netbsd.tar.xz 28-Feb-2019 02:53 340 +makedtx.i386-solaris.r38769.tar.xz 28-Feb-2019 02:53 340 +makedtx.i386-solaris.tar.xz 28-Feb-2019 02:53 340 +makedtx.r46702.tar.xz 28-Feb-2019 02:53 7784 +makedtx.source.r46702.tar.xz 28-Feb-2019 02:53 16152 +makedtx.source.tar.xz 28-Feb-2019 02:53 16152 +makedtx.tar.xz 28-Feb-2019 02:53 7784 +makedtx.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +makedtx.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +makedtx.windows.r65891.tar.xz 20-Feb-2023 22:14 2308 +makedtx.windows.tar.xz 20-Feb-2023 22:14 2308 +makedtx.x86_64-cygwin.r38769.tar.xz 28-Feb-2019 02:53 344 +makedtx.x86_64-cygwin.tar.xz 28-Feb-2019 02:53 344 +makedtx.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:53 348 +makedtx.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:53 348 +makedtx.x86_64-linux.r38769.tar.xz 28-Feb-2019 02:53 340 +makedtx.x86_64-linux.tar.xz 28-Feb-2019 02:53 340 +makedtx.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:53 344 +makedtx.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:53 344 +makedtx.x86_64-solaris.r38769.tar.xz 28-Feb-2019 02:53 344 +makedtx.x86_64-solaris.tar.xz 28-Feb-2019 02:53 344 +makeglos.doc.r15878.tar.xz 28-Feb-2019 02:53 54248 +makeglos.doc.tar.xz 28-Feb-2019 02:53 54248 +makeglos.r15878.tar.xz 28-Feb-2019 02:53 808 +makeglos.tar.xz 28-Feb-2019 02:53 808 +makeindex.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:49 48188 +makeindex.aarch64-linux.tar.xz 13-Feb-2025 00:49 48188 +makeindex.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:54 46104 +makeindex.amd64-freebsd.tar.xz 09-Feb-2025 00:54 46104 +makeindex.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 45120 +makeindex.amd64-netbsd.tar.xz 09-Feb-2025 18:16 45120 +makeindex.armhf-linux.r73793.tar.xz 09-Feb-2025 00:54 47364 +makeindex.armhf-linux.tar.xz 09-Feb-2025 00:54 47364 +makeindex.doc.r75712.tar.xz 07-Jul-2025 23:51 466380 +makeindex.doc.tar.xz 07-Jul-2025 23:51 466380 +makeindex.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:54 46044 +makeindex.i386-freebsd.tar.xz 09-Feb-2025 00:54 46044 +makeindex.i386-linux.r73792.tar.xz 09-Feb-2025 00:54 56388 +makeindex.i386-linux.tar.xz 09-Feb-2025 00:54 56388 +makeindex.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 39648 +makeindex.i386-netbsd.tar.xz 09-Feb-2025 18:16 39648 +makeindex.i386-solaris.r73792.tar.xz 09-Feb-2025 00:54 48172 +makeindex.i386-solaris.tar.xz 09-Feb-2025 00:54 48172 +makeindex.r75712.tar.xz 07-Jul-2025 23:51 4600 +makeindex.tar.xz 07-Jul-2025 23:51 4600 +makeindex.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 95124 +makeindex.universal-darwin.tar.xz 09-Feb-2025 18:16 95124 +makeindex.windows.r73796.tar.xz 09-Feb-2025 18:16 20732 +makeindex.windows.tar.xz 09-Feb-2025 18:16 20732 +makeindex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 21816 +makeindex.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 21816 +makeindex.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:49 47040 +makeindex.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:49 47040 +makeindex.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 51060 +makeindex.x86_64-linux.tar.xz 19-Feb-2025 00:47 51060 +makeindex.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:54 52956 +makeindex.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:54 52956 +makeindex.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:54 54360 +makeindex.x86_64-solaris.tar.xz 09-Feb-2025 00:54 54360 +makelabels.doc.r60255.tar.xz 16-Aug-2021 23:52 712740 +makelabels.doc.tar.xz 16-Aug-2021 23:52 712740 +makelabels.r60255.tar.xz 16-Aug-2021 23:52 3120 +makelabels.source.r60255.tar.xz 16-Aug-2021 23:52 7476 +makelabels.source.tar.xz 16-Aug-2021 23:52 7476 +makelabels.tar.xz 16-Aug-2021 23:52 3120 +makeplot.doc.r15878.tar.xz 28-Feb-2019 02:53 129276 +makeplot.doc.tar.xz 28-Feb-2019 02:53 129276 +makeplot.r15878.tar.xz 28-Feb-2019 02:53 4660 +makeplot.source.r15878.tar.xz 28-Feb-2019 02:53 11680 +makeplot.source.tar.xz 28-Feb-2019 02:53 11680 +makeplot.tar.xz 28-Feb-2019 02:53 4660 +maker.doc.r44823.tar.xz 28-Feb-2019 02:53 692 +maker.doc.tar.xz 28-Feb-2019 02:53 692 +maker.r44823.tar.xz 28-Feb-2019 02:53 4336 +maker.tar.xz 28-Feb-2019 02:53 4336 +makerobust.doc.r52811.tar.xz 16-Nov-2019 00:54 66632 +makerobust.doc.tar.xz 16-Nov-2019 00:54 66632 +makerobust.r52811.tar.xz 16-Nov-2019 00:54 1036 +makerobust.tar.xz 16-Nov-2019 00:54 1036 +makeshape.doc.r28973.tar.xz 28-Feb-2019 02:53 750376 +makeshape.doc.tar.xz 28-Feb-2019 02:53 750376 +makeshape.r28973.tar.xz 28-Feb-2019 02:53 1888 +makeshape.source.r28973.tar.xz 28-Feb-2019 02:53 18928 +makeshape.source.tar.xz 28-Feb-2019 02:53 18928 +makeshape.tar.xz 28-Feb-2019 02:53 1888 +mandi.doc.r70231.tar.xz 29-Feb-2024 00:47 500192 +mandi.doc.tar.xz 29-Feb-2024 00:47 500192 +mandi.r70231.tar.xz 29-Feb-2024 00:47 11244 +mandi.source.r70231.tar.xz 29-Feb-2024 00:47 31164 +mandi.source.tar.xz 29-Feb-2024 00:47 31164 +mandi.tar.xz 29-Feb-2024 00:47 11244 +manfnt-font.r45777.tar.xz 28-Feb-2019 02:53 25916 +manfnt-font.tar.xz 28-Feb-2019 02:53 25916 +manfnt.doc.r54684.tar.xz 11-Apr-2020 23:55 249564 +manfnt.doc.tar.xz 11-Apr-2020 23:55 249564 +manfnt.r54684.tar.xz 11-Apr-2020 23:55 1420 +manfnt.source.r54684.tar.xz 11-Apr-2020 23:55 6648 +manfnt.source.tar.xz 11-Apr-2020 23:55 6648 +manfnt.tar.xz 11-Apr-2020 23:55 1420 +manuscript.doc.r36110.tar.xz 28-Feb-2019 02:53 53188 +manuscript.doc.tar.xz 28-Feb-2019 02:53 53188 +manuscript.r36110.tar.xz 28-Feb-2019 02:53 1732 +manuscript.source.r36110.tar.xz 28-Feb-2019 02:53 5636 +manuscript.source.tar.xz 28-Feb-2019 02:53 5636 +manuscript.tar.xz 28-Feb-2019 02:53 1732 +manyind.doc.r49874.tar.xz 28-Feb-2019 02:53 157580 +manyind.doc.tar.xz 28-Feb-2019 02:53 157580 +manyind.r49874.tar.xz 28-Feb-2019 02:53 2900 +manyind.tar.xz 28-Feb-2019 02:53 2900 +marathi.doc.r61719.tar.xz 24-Jan-2022 00:55 154916 +marathi.doc.tar.xz 24-Jan-2022 00:55 154916 +marathi.r61719.tar.xz 24-Jan-2022 00:55 5456 +marathi.source.r61719.tar.xz 24-Jan-2022 00:55 17940 +marathi.source.tar.xz 24-Jan-2022 00:55 17940 +marathi.tar.xz 24-Jan-2022 00:55 5456 +marcellus.doc.r64451.tar.xz 20-Sep-2022 23:52 19872 +marcellus.doc.tar.xz 20-Sep-2022 23:52 19872 +marcellus.r64451.tar.xz 20-Sep-2022 23:52 178108 +marcellus.tar.xz 20-Sep-2022 23:52 178108 +margbib.doc.r15878.tar.xz 28-Feb-2019 02:53 188416 +margbib.doc.tar.xz 28-Feb-2019 02:53 188416 +margbib.r15878.tar.xz 28-Feb-2019 02:53 1524 +margbib.source.r15878.tar.xz 28-Feb-2019 02:53 4220 +margbib.source.tar.xz 28-Feb-2019 02:53 4220 +margbib.tar.xz 28-Feb-2019 02:53 1524 +marginalia.doc.r76285.tar.xz 11-Sep-2025 23:51 827268 +marginalia.doc.tar.xz 11-Sep-2025 23:51 827268 +marginalia.r76285.tar.xz 11-Sep-2025 23:51 7456 +marginalia.source.r76285.tar.xz 11-Sep-2025 23:51 25060 +marginalia.source.tar.xz 11-Sep-2025 23:51 25060 +marginalia.tar.xz 11-Sep-2025 23:51 7456 +marginfit.doc.r48281.tar.xz 28-Feb-2019 02:53 215180 +marginfit.doc.tar.xz 28-Feb-2019 02:53 215180 +marginfit.r48281.tar.xz 28-Feb-2019 02:53 1888 +marginfit.source.r48281.tar.xz 28-Feb-2019 02:53 5788 +marginfit.source.tar.xz 28-Feb-2019 02:53 5788 +marginfit.tar.xz 28-Feb-2019 02:53 1888 +marginfix.doc.r55064.tar.xz 07-May-2020 23:55 243144 +marginfix.doc.tar.xz 07-May-2020 23:55 243144 +marginfix.r55064.tar.xz 07-May-2020 23:55 3752 +marginfix.source.r55064.tar.xz 07-May-2020 23:55 18268 +marginfix.source.tar.xz 07-May-2020 23:55 18268 +marginfix.tar.xz 07-May-2020 23:55 3752 +marginnote.doc.r68204.tar.xz 07-Sep-2023 23:44 469960 +marginnote.doc.tar.xz 07-Sep-2023 23:44 469960 +marginnote.r68204.tar.xz 07-Sep-2023 23:44 3312 +marginnote.source.r68204.tar.xz 07-Sep-2023 23:44 10208 +marginnote.source.tar.xz 07-Sep-2023 23:44 10208 +marginnote.tar.xz 07-Sep-2023 23:44 3312 +maritime.doc.r74037.tar.xz 17-Feb-2025 00:46 42860 +maritime.doc.tar.xz 17-Feb-2025 00:46 42860 +maritime.r74037.tar.xz 17-Feb-2025 00:46 3288 +maritime.tar.xz 17-Feb-2025 00:46 3288 +markdown.aarch64-linux.r73628.tar.xz 29-Jan-2025 00:46 344 +markdown.aarch64-linux.tar.xz 29-Jan-2025 00:46 344 +markdown.amd64-freebsd.r73628.tar.xz 29-Jan-2025 00:46 344 +markdown.amd64-freebsd.tar.xz 29-Jan-2025 00:46 344 +markdown.amd64-netbsd.r73628.tar.xz 29-Jan-2025 00:46 344 +markdown.amd64-netbsd.tar.xz 29-Jan-2025 00:46 344 +markdown.armhf-linux.r73628.tar.xz 29-Jan-2025 00:46 344 +markdown.armhf-linux.tar.xz 29-Jan-2025 00:46 344 +markdown.doc.r76103.tar.xz 20-Aug-2025 23:45 1582492 +markdown.doc.tar.xz 20-Aug-2025 23:45 1582492 +markdown.i386-freebsd.r73628.tar.xz 29-Jan-2025 00:46 344 +markdown.i386-freebsd.tar.xz 29-Jan-2025 00:46 344 +markdown.i386-linux.r73628.tar.xz 29-Jan-2025 00:46 344 +markdown.i386-linux.tar.xz 29-Jan-2025 00:46 344 +markdown.i386-netbsd.r73628.tar.xz 29-Jan-2025 00:46 344 +markdown.i386-netbsd.tar.xz 29-Jan-2025 00:46 344 +markdown.i386-solaris.r73628.tar.xz 29-Jan-2025 00:46 344 +markdown.i386-solaris.tar.xz 29-Jan-2025 00:46 344 +markdown.r76103.tar.xz 20-Aug-2025 23:45 98036 +markdown.source.r76103.tar.xz 20-Aug-2025 23:45 148800 +markdown.source.tar.xz 20-Aug-2025 23:45 148800 +markdown.tar.xz 20-Aug-2025 23:45 98036 +markdown.universal-darwin.r73628.tar.xz 29-Jan-2025 00:46 348 +markdown.universal-darwin.tar.xz 29-Jan-2025 00:46 348 +markdown.windows.r73628.tar.xz 29-Jan-2025 00:46 2304 +markdown.windows.tar.xz 29-Jan-2025 00:46 2304 +markdown.x86_64-cygwin.r73628.tar.xz 29-Jan-2025 00:46 344 +markdown.x86_64-cygwin.tar.xz 29-Jan-2025 00:46 344 +markdown.x86_64-darwinlegacy.r73628.tar.xz 29-Jan-2025 00:46 352 +markdown.x86_64-darwinlegacy.tar.xz 29-Jan-2025 00:46 352 +markdown.x86_64-linux.r73628.tar.xz 29-Jan-2025 00:46 344 +markdown.x86_64-linux.tar.xz 29-Jan-2025 00:46 344 +markdown.x86_64-linuxmusl.r73628.tar.xz 29-Jan-2025 00:46 348 +markdown.x86_64-linuxmusl.tar.xz 29-Jan-2025 00:46 348 +markdown.x86_64-solaris.r73628.tar.xz 29-Jan-2025 00:46 344 +markdown.x86_64-solaris.tar.xz 29-Jan-2025 00:46 344 +marvosym.doc.r29349.tar.xz 28-Feb-2019 02:53 426608 +marvosym.doc.tar.xz 28-Feb-2019 02:53 426608 +marvosym.r29349.tar.xz 28-Feb-2019 02:53 133476 +marvosym.source.r29349.tar.xz 28-Feb-2019 02:53 1256 +marvosym.source.tar.xz 28-Feb-2019 02:53 1256 +marvosym.tar.xz 28-Feb-2019 02:53 133476 +matapli.doc.r62632.tar.xz 12-Mar-2022 00:51 4769908 +matapli.doc.tar.xz 12-Mar-2022 00:51 4769908 +matapli.r62632.tar.xz 12-Mar-2022 00:51 8724 +matapli.tar.xz 12-Mar-2022 00:51 8724 +matc3.doc.r29845.tar.xz 28-Feb-2019 02:53 438856 +matc3.doc.tar.xz 28-Feb-2019 02:53 438856 +matc3.r29845.tar.xz 28-Feb-2019 02:53 1692 +matc3.source.r29845.tar.xz 28-Feb-2019 02:53 5928 +matc3.source.tar.xz 28-Feb-2019 02:53 5928 +matc3.tar.xz 28-Feb-2019 02:53 1692 +matc3mem.doc.r35773.tar.xz 28-Feb-2019 02:53 390784 +matc3mem.doc.tar.xz 28-Feb-2019 02:53 390784 +matc3mem.r35773.tar.xz 28-Feb-2019 02:53 2508 +matc3mem.source.r35773.tar.xz 28-Feb-2019 02:53 7308 +matc3mem.source.tar.xz 28-Feb-2019 02:53 7308 +matc3mem.tar.xz 28-Feb-2019 02:53 2508 +match_parens.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:53 344 +match_parens.aarch64-linux.tar.xz 28-Feb-2019 02:53 344 +match_parens.amd64-freebsd.r23500.tar.xz 28-Feb-2019 02:53 344 +match_parens.amd64-freebsd.tar.xz 28-Feb-2019 02:53 344 +match_parens.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:53 344 +match_parens.amd64-netbsd.tar.xz 28-Feb-2019 02:53 344 +match_parens.armhf-linux.r30015.tar.xz 28-Feb-2019 02:53 344 +match_parens.armhf-linux.tar.xz 28-Feb-2019 02:53 344 +match_parens.doc.r66681.tar.xz 26-Mar-2023 23:53 77220 +match_parens.doc.tar.xz 26-Mar-2023 23:53 77220 +match_parens.i386-freebsd.r23500.tar.xz 28-Feb-2019 02:53 344 +match_parens.i386-freebsd.tar.xz 28-Feb-2019 02:53 344 +match_parens.i386-linux.r23500.tar.xz 28-Feb-2019 02:53 344 +match_parens.i386-linux.tar.xz 28-Feb-2019 02:53 344 +match_parens.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:53 344 +match_parens.i386-netbsd.tar.xz 28-Feb-2019 02:53 344 +match_parens.i386-solaris.r23500.tar.xz 28-Feb-2019 02:53 344 +match_parens.i386-solaris.tar.xz 28-Feb-2019 02:53 344 +match_parens.r66681.tar.xz 26-Mar-2023 23:53 3372 +match_parens.tar.xz 26-Mar-2023 23:53 3372 +match_parens.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 344 +match_parens.universal-darwin.tar.xz 25-Feb-2021 18:16 344 +match_parens.windows.r65891.tar.xz 20-Feb-2023 22:14 2312 +match_parens.windows.tar.xz 20-Feb-2023 22:14 2312 +match_parens.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:53 344 +match_parens.x86_64-cygwin.tar.xz 28-Feb-2019 02:53 344 +match_parens.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:53 352 +match_parens.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:53 352 +match_parens.x86_64-linux.r23500.tar.xz 28-Feb-2019 02:53 344 +match_parens.x86_64-linux.tar.xz 28-Feb-2019 02:53 344 +match_parens.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:53 348 +match_parens.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:53 348 +match_parens.x86_64-solaris.r23500.tar.xz 28-Feb-2019 02:53 344 +match_parens.x86_64-solaris.tar.xz 28-Feb-2019 02:53 344 +math-into-latex-4.doc.r44131.tar.xz 28-Feb-2019 02:53 1650056 +math-into-latex-4.doc.tar.xz 28-Feb-2019 02:53 1650056 +math-into-latex-4.r44131.tar.xz 28-Feb-2019 02:53 548 +math-into-latex-4.tar.xz 28-Feb-2019 02:53 548 +math-operator.doc.r76273.tar.xz 10-Sep-2025 23:49 294020 +math-operator.doc.tar.xz 10-Sep-2025 23:49 294020 +math-operator.r76273.tar.xz 10-Sep-2025 23:49 6532 +math-operator.source.r76273.tar.xz 10-Sep-2025 23:49 22248 +math-operator.source.tar.xz 10-Sep-2025 23:49 22248 +math-operator.tar.xz 10-Sep-2025 23:49 6532 +mathabx-type1.doc.r21129.tar.xz 28-Feb-2019 02:53 916 +mathabx-type1.doc.tar.xz 28-Feb-2019 02:53 916 +mathabx-type1.r21129.tar.xz 28-Feb-2019 02:53 1858004 +mathabx-type1.tar.xz 28-Feb-2019 02:53 1858004 +mathabx.doc.r15878.tar.xz 28-Feb-2019 02:53 497084 +mathabx.doc.tar.xz 28-Feb-2019 02:53 497084 +mathabx.r15878.tar.xz 28-Feb-2019 02:53 102916 +mathabx.tar.xz 28-Feb-2019 02:53 102916 +mathador.doc.r76396.tar.xz 24-Sep-2025 23:49 422564 +mathador.doc.tar.xz 24-Sep-2025 23:49 422564 +mathador.r76396.tar.xz 24-Sep-2025 23:49 232144 +mathador.tar.xz 24-Sep-2025 23:49 232144 +mathalpha.doc.r73505.tar.xz 19-Jan-2025 00:56 2065180 +mathalpha.doc.tar.xz 19-Jan-2025 00:56 2065180 +mathalpha.r73505.tar.xz 19-Jan-2025 00:56 127100 +mathalpha.tar.xz 19-Jan-2025 00:56 127100 +mathastext.doc.r75447.tar.xz 07-Jun-2025 23:49 779476 +mathastext.doc.tar.xz 07-Jun-2025 23:49 779476 +mathastext.r75447.tar.xz 07-Jun-2025 23:49 18696 +mathastext.source.r75447.tar.xz 07-Jun-2025 23:49 128980 +mathastext.source.tar.xz 07-Jun-2025 23:49 128980 +mathastext.tar.xz 07-Jun-2025 23:49 18696 +mathcommand.doc.r59512.tar.xz 07-Jun-2021 23:51 452340 +mathcommand.doc.tar.xz 07-Jun-2021 23:51 452340 +mathcommand.r59512.tar.xz 07-Jun-2021 23:51 4748 +mathcommand.source.r59512.tar.xz 07-Jun-2021 23:51 12088 +mathcommand.source.tar.xz 07-Jun-2021 23:51 12088 +mathcommand.tar.xz 07-Jun-2021 23:51 4748 +mathcomp.doc.r15878.tar.xz 28-Feb-2019 02:53 166132 +mathcomp.doc.tar.xz 28-Feb-2019 02:53 166132 +mathcomp.r15878.tar.xz 28-Feb-2019 02:53 1176 +mathcomp.source.r15878.tar.xz 28-Feb-2019 02:53 3072 +mathcomp.source.tar.xz 28-Feb-2019 02:53 3072 +mathcomp.tar.xz 28-Feb-2019 02:53 1176 +mathdesign.doc.r31639.tar.xz 28-Feb-2019 02:53 587524 +mathdesign.doc.tar.xz 28-Feb-2019 02:53 587524 +mathdesign.r31639.tar.xz 28-Feb-2019 02:53 2170832 +mathdesign.tar.xz 28-Feb-2019 02:53 2170832 +mathdots.doc.r34301.tar.xz 28-Feb-2019 02:53 397300 +mathdots.doc.tar.xz 28-Feb-2019 02:53 397300 +mathdots.r34301.tar.xz 28-Feb-2019 02:53 2168 +mathdots.source.r34301.tar.xz 28-Feb-2019 02:53 7252 +mathdots.source.tar.xz 28-Feb-2019 02:53 7252 +mathdots.tar.xz 28-Feb-2019 02:53 2168 +mathexam.doc.r15878.tar.xz 28-Feb-2019 02:53 148812 +mathexam.doc.tar.xz 28-Feb-2019 02:53 148812 +mathexam.r15878.tar.xz 28-Feb-2019 02:53 1620 +mathexam.source.r15878.tar.xz 28-Feb-2019 02:53 5988 +mathexam.source.tar.xz 28-Feb-2019 02:53 5988 +mathexam.tar.xz 28-Feb-2019 02:53 1620 +mathfam256.doc.r53519.tar.xz 24-Jan-2020 00:57 88088 +mathfam256.doc.tar.xz 24-Jan-2020 00:57 88088 +mathfam256.r53519.tar.xz 24-Jan-2020 00:57 4292 +mathfam256.tar.xz 24-Jan-2020 00:57 4292 +mathfixs.doc.r74752.tar.xz 27-Mar-2025 00:50 355980 +mathfixs.doc.tar.xz 27-Mar-2025 00:50 355980 +mathfixs.r74752.tar.xz 27-Mar-2025 00:50 3860 +mathfixs.source.r74752.tar.xz 27-Mar-2025 00:50 17568 +mathfixs.source.tar.xz 27-Mar-2025 00:50 17568 +mathfixs.tar.xz 27-Mar-2025 00:50 3860 +mathfont.doc.r75413.tar.xz 06-Jun-2025 23:49 930848 +mathfont.doc.tar.xz 06-Jun-2025 23:49 930848 +mathfont.r75413.tar.xz 06-Jun-2025 23:49 23696 +mathfont.source.r75413.tar.xz 06-Jun-2025 23:49 69404 +mathfont.source.tar.xz 06-Jun-2025 23:49 69404 +mathfont.tar.xz 06-Jun-2025 23:49 23696 +mathgreeks.doc.r71248.tar.xz 12-May-2024 23:46 1706612 +mathgreeks.doc.tar.xz 12-May-2024 23:46 1706612 +mathgreeks.r71248.tar.xz 12-May-2024 23:46 5256 +mathgreeks.source.r71248.tar.xz 12-May-2024 23:46 12132 +mathgreeks.source.tar.xz 12-May-2024 23:46 12132 +mathgreeks.tar.xz 12-May-2024 23:46 5256 +mathlig.r54244.tar.xz 12-Mar-2020 00:56 2436 +mathlig.tar.xz 12-Mar-2020 00:56 2436 +mathpartir.doc.r39864.tar.xz 28-Feb-2019 02:53 271876 +mathpartir.doc.tar.xz 28-Feb-2019 02:53 271876 +mathpartir.r39864.tar.xz 28-Feb-2019 02:53 4608 +mathpartir.source.r39864.tar.xz 28-Feb-2019 02:53 11552 +mathpartir.source.tar.xz 28-Feb-2019 02:53 11552 +mathpartir.tar.xz 28-Feb-2019 02:53 4608 +mathpazo.doc.r52663.tar.xz 07-Nov-2019 17:46 373532 +mathpazo.doc.tar.xz 07-Nov-2019 17:46 373532 +mathpazo.r52663.tar.xz 07-Nov-2019 17:46 63640 +mathpazo.source.r52663.tar.xz 07-Nov-2019 17:46 17976 +mathpazo.source.tar.xz 07-Nov-2019 17:46 17976 +mathpazo.tar.xz 07-Nov-2019 17:46 63640 +mathpunctspace.doc.r46754.tar.xz 28-Feb-2019 02:53 190188 +mathpunctspace.doc.tar.xz 28-Feb-2019 02:53 190188 +mathpunctspace.r46754.tar.xz 28-Feb-2019 02:53 1356 +mathpunctspace.tar.xz 28-Feb-2019 02:53 1356 +maths-symbols.doc.r37763.tar.xz 28-Feb-2019 02:53 348784 +maths-symbols.doc.tar.xz 28-Feb-2019 02:53 348784 +maths-symbols.r37763.tar.xz 28-Feb-2019 02:53 520 +maths-symbols.tar.xz 28-Feb-2019 02:53 520 +mathsemantics.doc.r63241.tar.xz 06-May-2022 23:53 642040 +mathsemantics.doc.tar.xz 06-May-2022 23:53 642040 +mathsemantics.r63241.tar.xz 06-May-2022 23:53 7804 +mathsemantics.tar.xz 06-May-2022 23:53 7804 +mathspec.doc.r42773.tar.xz 28-Feb-2019 02:53 172736 +mathspec.doc.tar.xz 28-Feb-2019 02:53 172736 +mathspec.r42773.tar.xz 28-Feb-2019 02:53 9728 +mathspec.tar.xz 28-Feb-2019 02:53 9728 +mathspic.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:53 340 +mathspic.aarch64-linux.tar.xz 28-Feb-2019 02:53 340 +mathspic.amd64-freebsd.r23661.tar.xz 28-Feb-2019 02:53 340 +mathspic.amd64-freebsd.tar.xz 28-Feb-2019 02:53 340 +mathspic.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:53 344 +mathspic.amd64-netbsd.tar.xz 28-Feb-2019 02:53 344 +mathspic.armhf-linux.r30015.tar.xz 28-Feb-2019 02:53 340 +mathspic.armhf-linux.tar.xz 28-Feb-2019 02:53 340 +mathspic.doc.r31957.tar.xz 28-Feb-2019 02:53 2460876 +mathspic.doc.tar.xz 28-Feb-2019 02:53 2460876 +mathspic.i386-freebsd.r23661.tar.xz 28-Feb-2019 02:53 340 +mathspic.i386-freebsd.tar.xz 28-Feb-2019 02:53 340 +mathspic.i386-linux.r23661.tar.xz 28-Feb-2019 02:53 340 +mathspic.i386-linux.tar.xz 28-Feb-2019 02:53 340 +mathspic.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:53 344 +mathspic.i386-netbsd.tar.xz 28-Feb-2019 02:53 344 +mathspic.i386-solaris.r23661.tar.xz 28-Feb-2019 02:53 340 +mathspic.i386-solaris.tar.xz 28-Feb-2019 02:53 340 +mathspic.r31957.tar.xz 28-Feb-2019 02:53 18060 +mathspic.tar.xz 28-Feb-2019 02:53 18060 +mathspic.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +mathspic.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +mathspic.windows.r65891.tar.xz 20-Feb-2023 22:14 2308 +mathspic.windows.tar.xz 20-Feb-2023 22:14 2308 +mathspic.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:53 344 +mathspic.x86_64-cygwin.tar.xz 28-Feb-2019 02:53 344 +mathspic.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:53 348 +mathspic.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:53 348 +mathspic.x86_64-linux.r23661.tar.xz 28-Feb-2019 02:53 340 +mathspic.x86_64-linux.tar.xz 28-Feb-2019 02:53 340 +mathspic.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:53 348 +mathspic.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:53 348 +mathspic.x86_64-solaris.r23661.tar.xz 28-Feb-2019 02:53 340 +mathspic.x86_64-solaris.tar.xz 28-Feb-2019 02:53 340 +mathtools.doc.r72487.tar.xz 08-Oct-2024 23:47 1134160 +mathtools.doc.tar.xz 08-Oct-2024 23:47 1134160 +mathtools.r72487.tar.xz 08-Oct-2024 23:47 20544 +mathtools.source.r72487.tar.xz 08-Oct-2024 23:47 91568 +mathtools.source.tar.xz 08-Oct-2024 23:47 91568 +mathtools.tar.xz 08-Oct-2024 23:47 20544 +matlab-prettifier.doc.r34323.tar.xz 28-Feb-2019 02:53 663904 +matlab-prettifier.doc.tar.xz 28-Feb-2019 02:53 663904 +matlab-prettifier.r34323.tar.xz 28-Feb-2019 02:53 4140 +matlab-prettifier.source.r34323.tar.xz 28-Feb-2019 02:53 21700 +matlab-prettifier.source.tar.xz 28-Feb-2019 02:53 21700 +matlab-prettifier.tar.xz 28-Feb-2019 02:53 4140 +matrix-skeleton.doc.r65013.tar.xz 15-Nov-2022 00:54 152732 +matrix-skeleton.doc.tar.xz 15-Nov-2022 00:54 152732 +matrix-skeleton.r65013.tar.xz 15-Nov-2022 00:54 3544 +matrix-skeleton.tar.xz 15-Nov-2022 00:54 3544 +mattens.doc.r62326.tar.xz 02-Mar-2022 00:35 975600 +mattens.doc.tar.xz 02-Mar-2022 00:35 975600 +mattens.r62326.tar.xz 02-Mar-2022 00:35 2820 +mattens.source.r62326.tar.xz 02-Mar-2022 00:35 12372 +mattens.source.tar.xz 02-Mar-2022 00:35 12372 +mattens.tar.xz 02-Mar-2022 00:35 2820 +maybemath.doc.r15878.tar.xz 28-Feb-2019 02:53 60212 +maybemath.doc.tar.xz 28-Feb-2019 02:53 60212 +maybemath.r15878.tar.xz 28-Feb-2019 02:53 1520 +maybemath.tar.xz 28-Feb-2019 02:53 1520 +maze.doc.r65508.tar.xz 11-Jan-2023 00:52 182560 +maze.doc.tar.xz 11-Jan-2023 00:52 182560 +maze.r65508.tar.xz 11-Jan-2023 00:52 1376 +maze.tar.xz 11-Jan-2023 00:52 1376 +mcaption.doc.r15878.tar.xz 28-Feb-2019 02:53 121432 +mcaption.doc.tar.xz 28-Feb-2019 02:53 121432 +mcaption.r15878.tar.xz 28-Feb-2019 02:53 1744 +mcaption.source.r15878.tar.xz 28-Feb-2019 02:53 6548 +mcaption.source.tar.xz 28-Feb-2019 02:53 6548 +mcaption.tar.xz 28-Feb-2019 02:53 1744 +mceinleger.doc.r15878.tar.xz 28-Feb-2019 02:53 43372 +mceinleger.doc.tar.xz 28-Feb-2019 02:53 43372 +mceinleger.r15878.tar.xz 28-Feb-2019 02:53 1092 +mceinleger.tar.xz 28-Feb-2019 02:53 1092 +mcexam.doc.r60481.tar.xz 12-Sep-2021 23:52 232948 +mcexam.doc.tar.xz 12-Sep-2021 23:52 232948 +mcexam.r60481.tar.xz 12-Sep-2021 23:52 11396 +mcexam.tar.xz 12-Sep-2021 23:52 11396 +mcf2graph.doc.r76324.tar.xz 15-Sep-2025 23:45 1546708 +mcf2graph.doc.tar.xz 15-Sep-2025 23:45 1546708 +mcf2graph.r76324.tar.xz 15-Sep-2025 23:45 39916 +mcf2graph.tar.xz 15-Sep-2025 23:45 39916 +mcite.doc.r18173.tar.xz 28-Feb-2019 02:53 138716 +mcite.doc.tar.xz 28-Feb-2019 02:53 138716 +mcite.r18173.tar.xz 28-Feb-2019 02:53 2656 +mcite.source.r18173.tar.xz 28-Feb-2019 02:53 7060 +mcite.source.tar.xz 28-Feb-2019 02:53 7060 +mcite.tar.xz 28-Feb-2019 02:53 2656 +mciteplus.doc.r31648.tar.xz 28-Feb-2019 02:53 391980 +mciteplus.doc.tar.xz 28-Feb-2019 02:53 391980 +mciteplus.r31648.tar.xz 28-Feb-2019 02:53 34344 +mciteplus.tar.xz 28-Feb-2019 02:53 34344 +mcmthesis.doc.r69538.tar.xz 23-Jan-2024 00:45 463612 +mcmthesis.doc.tar.xz 23-Jan-2024 00:45 463612 +mcmthesis.r69538.tar.xz 23-Jan-2024 00:45 4292 +mcmthesis.source.r69538.tar.xz 23-Jan-2024 00:45 15848 +mcmthesis.source.tar.xz 23-Jan-2024 00:45 15848 +mcmthesis.tar.xz 23-Jan-2024 00:45 4292 +mdframed.doc.r31075.tar.xz 28-Feb-2019 02:53 1396108 +mdframed.doc.tar.xz 28-Feb-2019 02:53 1396108 +mdframed.r31075.tar.xz 28-Feb-2019 02:53 21404 +mdframed.source.r31075.tar.xz 28-Feb-2019 02:53 41792 +mdframed.source.tar.xz 28-Feb-2019 02:53 41792 +mdframed.tar.xz 28-Feb-2019 02:53 21404 +mdputu.doc.r20298.tar.xz 28-Feb-2019 02:53 196940 +mdputu.doc.tar.xz 28-Feb-2019 02:53 196940 +mdputu.r20298.tar.xz 28-Feb-2019 02:53 16964 +mdputu.tar.xz 28-Feb-2019 02:53 16964 +mdsymbol.doc.r28399.tar.xz 28-Feb-2019 02:53 392096 +mdsymbol.doc.tar.xz 28-Feb-2019 02:53 392096 +mdsymbol.r28399.tar.xz 28-Feb-2019 02:53 905656 +mdsymbol.source.r28399.tar.xz 28-Feb-2019 02:53 20092 +mdsymbol.source.tar.xz 28-Feb-2019 02:53 20092 +mdsymbol.tar.xz 28-Feb-2019 02:53 905656 +mdwtools.doc.r15878.tar.xz 28-Feb-2019 02:53 1605404 +mdwtools.doc.tar.xz 28-Feb-2019 02:53 1605404 +mdwtools.r15878.tar.xz 28-Feb-2019 02:53 19108 +mdwtools.source.r15878.tar.xz 28-Feb-2019 02:53 104804 +mdwtools.source.tar.xz 28-Feb-2019 02:53 104804 +mdwtools.tar.xz 28-Feb-2019 02:53 19108 +measurebox.doc.r75139.tar.xz 06-May-2025 23:47 81736 +measurebox.doc.tar.xz 06-May-2025 23:47 81736 +measurebox.r75139.tar.xz 06-May-2025 23:47 1888 +measurebox.tar.xz 06-May-2025 23:47 1888 +mecaso.doc.r60346.tar.xz 28-Aug-2021 23:53 221844 +mecaso.doc.tar.xz 28-Aug-2021 23:53 221844 +mecaso.r60346.tar.xz 28-Aug-2021 23:53 2832 +mecaso.tar.xz 28-Aug-2021 23:53 2832 +media4svg.doc.r64686.tar.xz 12-Oct-2022 23:55 170632 +media4svg.doc.tar.xz 12-Oct-2022 23:55 170632 +media4svg.r64686.tar.xz 12-Oct-2022 23:55 8788 +media4svg.tar.xz 12-Oct-2022 23:55 8788 +media9.doc.r75597.tar.xz 24-Jun-2025 23:49 3738000 +media9.doc.tar.xz 24-Jun-2025 23:49 3738000 +media9.r75597.tar.xz 24-Jun-2025 23:49 1895840 +media9.source.r75597.tar.xz 24-Jun-2025 23:49 1776704 +media9.source.tar.xz 24-Jun-2025 23:49 1776704 +media9.tar.xz 24-Jun-2025 23:49 1895840 +medmath.doc.r74208.tar.xz 23-Feb-2025 00:58 29356 +medmath.doc.tar.xz 23-Feb-2025 00:58 29356 +medmath.r74208.tar.xz 23-Feb-2025 00:58 4916 +medmath.tar.xz 23-Feb-2025 00:58 4916 +medstarbeamer.doc.r38828.tar.xz 28-Feb-2019 02:53 1496 +medstarbeamer.doc.tar.xz 28-Feb-2019 02:53 1496 +medstarbeamer.r38828.tar.xz 28-Feb-2019 02:53 2228 +medstarbeamer.tar.xz 28-Feb-2019 02:53 2228 +meetingmins.doc.r31878.tar.xz 28-Feb-2019 02:53 599084 +meetingmins.doc.tar.xz 28-Feb-2019 02:53 599084 +meetingmins.r31878.tar.xz 28-Feb-2019 02:53 2484 +meetingmins.source.r31878.tar.xz 28-Feb-2019 02:53 6908 +meetingmins.source.tar.xz 28-Feb-2019 02:53 6908 +meetingmins.tar.xz 28-Feb-2019 02:53 2484 +membranecomputing.doc.r64627.tar.xz 06-Oct-2022 23:54 283224 +membranecomputing.doc.tar.xz 06-Oct-2022 23:54 283224 +membranecomputing.r64627.tar.xz 06-Oct-2022 23:54 4892 +membranecomputing.tar.xz 06-Oct-2022 23:54 4892 +memdesign.doc.r48664.tar.xz 28-Feb-2019 02:53 1785516 +memdesign.doc.tar.xz 28-Feb-2019 02:53 1785516 +memdesign.r48664.tar.xz 28-Feb-2019 02:53 564 +memdesign.tar.xz 28-Feb-2019 02:53 564 +memexsupp.doc.r15878.tar.xz 28-Feb-2019 02:53 121636 +memexsupp.doc.tar.xz 28-Feb-2019 02:53 121636 +memexsupp.r15878.tar.xz 28-Feb-2019 02:53 1836 +memexsupp.tar.xz 28-Feb-2019 02:53 1836 +memoir.doc.r74555.tar.xz 11-Mar-2025 00:51 3148244 +memoir.doc.tar.xz 11-Mar-2025 00:51 3148244 +memoir.r74555.tar.xz 11-Mar-2025 00:51 70448 +memoir.source.r74555.tar.xz 11-Mar-2025 00:50 218996 +memoir.source.tar.xz 11-Mar-2025 00:50 218996 +memoir.tar.xz 11-Mar-2025 00:51 70448 +memoirchapterstyles.doc.r59766.tar.xz 01-Jul-2021 00:02 755384 +memoirchapterstyles.doc.tar.xz 01-Jul-2021 00:02 755384 +memoirchapterstyles.r59766.tar.xz 01-Jul-2021 00:02 572 +memoirchapterstyles.tar.xz 01-Jul-2021 00:02 572 +memoize.aarch64-linux.r68515.tar.xz 11-Oct-2023 23:45 396 +memoize.aarch64-linux.tar.xz 11-Oct-2023 23:45 396 +memoize.amd64-freebsd.r68515.tar.xz 11-Oct-2023 23:45 396 +memoize.amd64-freebsd.tar.xz 11-Oct-2023 23:45 396 +memoize.amd64-netbsd.r68515.tar.xz 11-Oct-2023 23:45 392 +memoize.amd64-netbsd.tar.xz 11-Oct-2023 23:45 392 +memoize.armhf-linux.r68515.tar.xz 11-Oct-2023 23:45 396 +memoize.armhf-linux.tar.xz 11-Oct-2023 23:45 396 +memoize.doc.r73025.tar.xz 04-Dec-2024 00:47 2682332 +memoize.doc.tar.xz 04-Dec-2024 00:47 2682332 +memoize.i386-freebsd.r68515.tar.xz 11-Oct-2023 23:45 396 +memoize.i386-freebsd.tar.xz 11-Oct-2023 23:45 396 +memoize.i386-linux.r68515.tar.xz 11-Oct-2023 23:45 396 +memoize.i386-linux.tar.xz 11-Oct-2023 23:45 396 +memoize.i386-netbsd.r68515.tar.xz 11-Oct-2023 23:45 396 +memoize.i386-netbsd.tar.xz 11-Oct-2023 23:45 396 +memoize.i386-solaris.r68515.tar.xz 11-Oct-2023 23:45 392 +memoize.i386-solaris.tar.xz 11-Oct-2023 23:45 392 +memoize.r73025.tar.xz 04-Dec-2024 00:47 28948 +memoize.source.r73025.tar.xz 04-Dec-2024 00:47 43072 +memoize.source.tar.xz 04-Dec-2024 00:47 43072 +memoize.tar.xz 04-Dec-2024 00:47 28948 +memoize.universal-darwin.r68515.tar.xz 11-Oct-2023 23:45 396 +memoize.universal-darwin.tar.xz 11-Oct-2023 23:45 396 +memoize.windows.r68515.tar.xz 11-Oct-2023 23:45 2404 +memoize.windows.tar.xz 11-Oct-2023 23:45 2404 +memoize.x86_64-cygwin.r68515.tar.xz 11-Oct-2023 23:45 400 +memoize.x86_64-cygwin.tar.xz 11-Oct-2023 23:45 400 +memoize.x86_64-darwinlegacy.r68515.tar.xz 11-Oct-2023 23:45 404 +memoize.x86_64-darwinlegacy.tar.xz 11-Oct-2023 23:45 404 +memoize.x86_64-linux.r68515.tar.xz 11-Oct-2023 23:45 396 +memoize.x86_64-linux.tar.xz 11-Oct-2023 23:45 396 +memoize.x86_64-linuxmusl.r68515.tar.xz 11-Oct-2023 23:45 396 +memoize.x86_64-linuxmusl.tar.xz 11-Oct-2023 23:45 396 +memoize.x86_64-solaris.r68515.tar.xz 11-Oct-2023 23:45 396 +memoize.x86_64-solaris.tar.xz 11-Oct-2023 23:45 396 +memory.doc.r30452.tar.xz 28-Feb-2019 02:53 29908 +memory.doc.tar.xz 28-Feb-2019 02:53 29908 +memory.r30452.tar.xz 28-Feb-2019 02:53 1168 +memory.source.r30452.tar.xz 28-Feb-2019 02:53 2768 +memory.source.tar.xz 28-Feb-2019 02:53 2768 +memory.tar.xz 28-Feb-2019 02:53 1168 +memorygraphs.doc.r49631.tar.xz 28-Feb-2019 02:53 191084 +memorygraphs.doc.tar.xz 28-Feb-2019 02:53 191084 +memorygraphs.r49631.tar.xz 28-Feb-2019 02:53 2048 +memorygraphs.tar.xz 28-Feb-2019 02:53 2048 +mendex-doc.doc.r75172.tar.xz 11-May-2025 23:51 242548 +mendex-doc.doc.tar.xz 11-May-2025 23:51 242548 +mendex-doc.r75172.tar.xz 11-May-2025 23:51 1368 +mendex-doc.source.r75172.tar.xz 11-May-2025 23:51 804 +mendex-doc.source.tar.xz 11-May-2025 23:51 804 +mendex-doc.tar.xz 11-May-2025 23:51 1368 +mensa-tex.doc.r45997.tar.xz 28-Feb-2019 02:53 168228 +mensa-tex.doc.tar.xz 28-Feb-2019 02:53 168228 +mensa-tex.r45997.tar.xz 28-Feb-2019 02:53 3996 +mensa-tex.tar.xz 28-Feb-2019 02:53 3996 +mentis.doc.r15878.tar.xz 28-Feb-2019 02:53 137680 +mentis.doc.tar.xz 28-Feb-2019 02:53 137680 +mentis.r15878.tar.xz 28-Feb-2019 02:53 4180 +mentis.source.r15878.tar.xz 28-Feb-2019 02:53 16980 +mentis.source.tar.xz 28-Feb-2019 02:53 16980 +mentis.tar.xz 28-Feb-2019 02:53 4180 +menu.doc.r15878.tar.xz 28-Feb-2019 02:53 115344 +menu.doc.tar.xz 28-Feb-2019 02:53 115344 +menu.r15878.tar.xz 28-Feb-2019 02:53 2132 +menu.source.r15878.tar.xz 28-Feb-2019 02:53 5648 +menu.source.tar.xz 28-Feb-2019 02:53 5648 +menu.tar.xz 28-Feb-2019 02:53 2132 +menucard.doc.r55643.tar.xz 23-Jun-2020 23:57 176668 +menucard.doc.tar.xz 23-Jun-2020 23:57 176668 +menucard.r55643.tar.xz 23-Jun-2020 23:57 1348 +menucard.source.r55643.tar.xz 23-Jun-2020 23:57 3764 +menucard.source.tar.xz 23-Jun-2020 23:57 3764 +menucard.tar.xz 23-Jun-2020 23:57 1348 +menukeys.doc.r64314.tar.xz 07-Sep-2022 23:54 606780 +menukeys.doc.tar.xz 07-Sep-2022 23:54 606780 +menukeys.r64314.tar.xz 07-Sep-2022 23:54 6240 +menukeys.source.r64314.tar.xz 07-Sep-2022 23:54 18728 +menukeys.source.tar.xz 07-Sep-2022 23:54 18728 +menukeys.tar.xz 07-Sep-2022 23:54 6240 +mercatormap.doc.r71976.tar.xz 05-Aug-2024 23:49 22583660 +mercatormap.doc.tar.xz 05-Aug-2024 23:49 22583660 +mercatormap.r71976.tar.xz 05-Aug-2024 23:49 21084 +mercatormap.tar.xz 05-Aug-2024 23:49 21084 +merriweather.doc.r75301.tar.xz 23-May-2025 23:46 413188 +merriweather.doc.tar.xz 23-May-2025 23:46 413188 +merriweather.r75301.tar.xz 23-May-2025 23:46 5408764 +merriweather.tar.xz 23-May-2025 23:46 5408764 +messagepassing.doc.r69123.tar.xz 14-Dec-2023 22:49 298068 +messagepassing.doc.tar.xz 14-Dec-2023 22:49 298068 +messagepassing.r69123.tar.xz 14-Dec-2023 22:49 2732 +messagepassing.source.r69123.tar.xz 14-Dec-2023 22:49 8860 +messagepassing.source.tar.xz 14-Dec-2023 22:49 8860 +messagepassing.tar.xz 14-Dec-2023 22:49 2732 +metafont-beginners.doc.r29803.tar.xz 28-Feb-2019 02:53 178916 +metafont-beginners.doc.tar.xz 28-Feb-2019 02:53 178916 +metafont-beginners.r29803.tar.xz 28-Feb-2019 02:53 496 +metafont-beginners.tar.xz 28-Feb-2019 02:53 496 +metafont.aarch64-linux.r74368.tar.xz 02-Mar-2025 01:10 188756 +metafont.aarch64-linux.tar.xz 02-Mar-2025 01:10 188756 +metafont.amd64-freebsd.r74368.tar.xz 02-Mar-2025 01:10 197744 +metafont.amd64-freebsd.tar.xz 02-Mar-2025 01:10 197744 +metafont.amd64-netbsd.r74367.tar.xz 02-Mar-2025 01:10 177404 +metafont.amd64-netbsd.tar.xz 02-Mar-2025 01:10 177404 +metafont.armhf-linux.r74368.tar.xz 02-Mar-2025 01:10 161972 +metafont.armhf-linux.tar.xz 02-Mar-2025 01:10 161972 +metafont.doc.r73848.tar.xz 11-Feb-2025 00:48 54564 +metafont.doc.tar.xz 11-Feb-2025 00:48 54564 +metafont.i386-freebsd.r74368.tar.xz 02-Mar-2025 01:10 197088 +metafont.i386-freebsd.tar.xz 02-Mar-2025 01:10 197088 +metafont.i386-linux.r74368.tar.xz 02-Mar-2025 01:10 198752 +metafont.i386-linux.tar.xz 02-Mar-2025 01:10 198752 +metafont.i386-netbsd.r74367.tar.xz 02-Mar-2025 01:10 147168 +metafont.i386-netbsd.tar.xz 02-Mar-2025 01:10 147168 +metafont.i386-solaris.r74368.tar.xz 02-Mar-2025 01:10 185956 +metafont.i386-solaris.tar.xz 02-Mar-2025 01:10 185956 +metafont.r73848.tar.xz 11-Feb-2025 00:48 8824 +metafont.tar.xz 11-Feb-2025 00:48 8824 +metafont.universal-darwin.r74380.tar.xz 02-Mar-2025 01:10 474536 +metafont.universal-darwin.tar.xz 02-Mar-2025 01:10 474536 +metafont.windows.r74338.tar.xz 01-Mar-2025 00:56 187468 +metafont.windows.tar.xz 01-Mar-2025 00:56 187468 +metafont.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 190396 +metafont.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 190396 +metafont.x86_64-darwinlegacy.r74380.tar.xz 02-Mar-2025 01:10 156228 +metafont.x86_64-darwinlegacy.tar.xz 02-Mar-2025 01:10 156228 +metafont.x86_64-linux.r74368.tar.xz 02-Mar-2025 01:10 230820 +metafont.x86_64-linux.tar.xz 02-Mar-2025 01:10 230820 +metafont.x86_64-linuxmusl.r74368.tar.xz 02-Mar-2025 01:10 212052 +metafont.x86_64-linuxmusl.tar.xz 02-Mar-2025 01:10 212052 +metafont.x86_64-solaris.r74368.tar.xz 02-Mar-2025 01:10 227212 +metafont.x86_64-solaris.tar.xz 02-Mar-2025 01:10 227212 +metago.doc.r15878.tar.xz 28-Feb-2019 02:53 27136 +metago.doc.tar.xz 28-Feb-2019 02:53 27136 +metago.r15878.tar.xz 28-Feb-2019 02:53 5048 +metago.tar.xz 28-Feb-2019 02:53 5048 +metalogo.doc.r18611.tar.xz 28-Feb-2019 02:53 77852 +metalogo.doc.tar.xz 28-Feb-2019 02:53 77852 +metalogo.r18611.tar.xz 28-Feb-2019 02:53 2228 +metalogo.source.r18611.tar.xz 28-Feb-2019 02:53 7148 +metalogo.source.tar.xz 28-Feb-2019 02:53 7148 +metalogo.tar.xz 28-Feb-2019 02:53 2228 +metalogox.doc.r73571.tar.xz 24-Jan-2025 00:50 598016 +metalogox.doc.tar.xz 24-Jan-2025 00:50 598016 +metalogox.r73571.tar.xz 24-Jan-2025 00:50 5064 +metalogox.source.r73571.tar.xz 24-Jan-2025 00:50 9932 +metalogox.source.tar.xz 24-Jan-2025 00:50 9932 +metalogox.tar.xz 24-Jan-2025 00:50 5064 +metanorma.doc.r55010.tar.xz 04-May-2020 23:53 84860 +metanorma.doc.tar.xz 04-May-2020 23:53 84860 +metanorma.r55010.tar.xz 04-May-2020 23:53 7536 +metanorma.tar.xz 04-May-2020 23:53 7536 +metaobj.doc.r15878.tar.xz 28-Feb-2019 02:53 585804 +metaobj.doc.tar.xz 28-Feb-2019 02:53 585804 +metaobj.r15878.tar.xz 28-Feb-2019 02:53 57644 +metaobj.tar.xz 28-Feb-2019 02:53 57644 +metaplot.doc.r15878.tar.xz 28-Feb-2019 02:53 289128 +metaplot.doc.tar.xz 28-Feb-2019 02:53 289128 +metaplot.r15878.tar.xz 28-Feb-2019 02:53 3884 +metaplot.tar.xz 28-Feb-2019 02:53 3884 +metapost-colorbrewer.doc.r48753.tar.xz 28-Feb-2019 02:53 219680 +metapost-colorbrewer.doc.tar.xz 28-Feb-2019 02:53 219680 +metapost-colorbrewer.r48753.tar.xz 28-Feb-2019 02:53 11784 +metapost-colorbrewer.tar.xz 28-Feb-2019 02:53 11784 +metapost-examples.doc.r15878.tar.xz 28-Feb-2019 02:53 21248 +metapost-examples.doc.tar.xz 28-Feb-2019 02:53 21248 +metapost-examples.r15878.tar.xz 28-Feb-2019 02:53 488 +metapost-examples.tar.xz 28-Feb-2019 02:53 488 +metapost.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:49 856224 +metapost.aarch64-linux.tar.xz 13-Feb-2025 00:49 856224 +metapost.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:54 812084 +metapost.amd64-freebsd.tar.xz 09-Feb-2025 00:54 812084 +metapost.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 813392 +metapost.amd64-netbsd.tar.xz 09-Feb-2025 18:16 813392 +metapost.armhf-linux.r73793.tar.xz 09-Feb-2025 00:54 805532 +metapost.armhf-linux.tar.xz 09-Feb-2025 00:54 805532 +metapost.doc.r73850.tar.xz 11-Feb-2025 00:48 2456140 +metapost.doc.tar.xz 11-Feb-2025 00:48 2456140 +metapost.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:54 811548 +metapost.i386-freebsd.tar.xz 09-Feb-2025 00:54 811548 +metapost.i386-linux.r73792.tar.xz 09-Feb-2025 00:54 1030752 +metapost.i386-linux.tar.xz 09-Feb-2025 00:54 1030752 +metapost.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 726028 +metapost.i386-netbsd.tar.xz 09-Feb-2025 18:16 726028 +metapost.i386-solaris.r73792.tar.xz 09-Feb-2025 00:54 912260 +metapost.i386-solaris.tar.xz 09-Feb-2025 00:54 912260 +metapost.r73850.tar.xz 11-Feb-2025 00:48 73768 +metapost.tar.xz 11-Feb-2025 00:48 73768 +metapost.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 1746848 +metapost.universal-darwin.tar.xz 09-Feb-2025 18:16 1746848 +metapost.windows.r73796.tar.xz 09-Feb-2025 18:16 967752 +metapost.windows.tar.xz 09-Feb-2025 18:16 967752 +metapost.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 920008 +metapost.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 920008 +metapost.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 840288 +metapost.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 840288 +metapost.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 951784 +metapost.x86_64-linux.tar.xz 19-Feb-2025 00:47 951784 +metapost.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:54 978720 +metapost.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:54 978720 +metapost.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:54 1006540 +metapost.x86_64-solaris.tar.xz 09-Feb-2025 00:54 1006540 +metastr.doc.r74751.tar.xz 27-Mar-2025 00:50 337980 +metastr.doc.tar.xz 27-Mar-2025 00:50 337980 +metastr.r74751.tar.xz 27-Mar-2025 00:50 7516 +metastr.source.r74751.tar.xz 27-Mar-2025 00:50 23424 +metastr.source.tar.xz 27-Mar-2025 00:50 23424 +metastr.tar.xz 27-Mar-2025 00:50 7516 +metatex.doc.r15878.tar.xz 28-Feb-2019 02:53 137060 +metatex.doc.tar.xz 28-Feb-2019 02:53 137060 +metatex.r15878.tar.xz 28-Feb-2019 02:53 3388 +metatex.tar.xz 28-Feb-2019 02:53 3388 +metatype1.r37105.tar.xz 28-Feb-2019 02:53 560 +metatype1.source.r37105.tar.xz 28-Feb-2019 02:53 235276 +metatype1.source.tar.xz 28-Feb-2019 02:53 235276 +metatype1.tar.xz 28-Feb-2019 02:53 560 +metauml.doc.r49923.tar.xz 28-Feb-2019 02:53 444408 +metauml.doc.tar.xz 28-Feb-2019 02:53 444408 +metauml.r49923.tar.xz 28-Feb-2019 02:53 20596 +metauml.tar.xz 28-Feb-2019 02:53 20596 +method.doc.r17485.tar.xz 28-Feb-2019 02:53 339016 +method.doc.tar.xz 28-Feb-2019 02:53 339016 +method.r17485.tar.xz 28-Feb-2019 02:53 2792 +method.source.r17485.tar.xz 28-Feb-2019 02:53 7108 +method.source.tar.xz 28-Feb-2019 02:53 7108 +method.tar.xz 28-Feb-2019 02:53 2792 +metre.doc.r18489.tar.xz 28-Feb-2019 02:53 135120 +metre.doc.tar.xz 28-Feb-2019 02:53 135120 +metre.r18489.tar.xz 28-Feb-2019 02:53 10756 +metre.source.r18489.tar.xz 28-Feb-2019 02:53 25376 +metre.source.tar.xz 28-Feb-2019 02:53 25376 +metre.tar.xz 28-Feb-2019 02:53 10756 +metrix.doc.r52323.tar.xz 10-Oct-2019 00:04 619964 +metrix.doc.tar.xz 10-Oct-2019 00:04 619964 +metrix.r52323.tar.xz 10-Oct-2019 00:04 5528 +metrix.source.r52323.tar.xz 10-Oct-2019 00:04 17688 +metrix.source.tar.xz 10-Oct-2019 00:04 17688 +metrix.tar.xz 10-Oct-2019 00:04 5528 +metsymb.doc.r68175.tar.xz 04-Sep-2023 23:45 410048 +metsymb.doc.tar.xz 04-Sep-2023 23:45 410048 +metsymb.r68175.tar.xz 04-Sep-2023 23:45 16840 +metsymb.source.r68175.tar.xz 04-Sep-2023 23:45 15712 +metsymb.source.tar.xz 04-Sep-2023 23:45 15712 +metsymb.tar.xz 04-Sep-2023 23:45 16840 +mex.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:54 356 +mex.aarch64-linux.tar.xz 28-Feb-2019 02:54 356 +mex.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:54 356 +mex.amd64-freebsd.tar.xz 28-Feb-2019 02:54 356 +mex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:54 352 +mex.amd64-netbsd.tar.xz 28-Feb-2019 02:54 352 +mex.armhf-linux.r30015.tar.xz 28-Feb-2019 02:54 356 +mex.armhf-linux.tar.xz 28-Feb-2019 02:54 356 +mex.doc.r58661.tar.xz 23-Mar-2021 18:31 35540 +mex.doc.tar.xz 23-Mar-2021 18:31 35540 +mex.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:54 356 +mex.i386-freebsd.tar.xz 28-Feb-2019 02:54 356 +mex.i386-linux.r3006.tar.xz 28-Feb-2019 02:54 352 +mex.i386-linux.tar.xz 28-Feb-2019 02:54 352 +mex.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:54 356 +mex.i386-netbsd.tar.xz 28-Feb-2019 02:54 356 +mex.i386-solaris.r8102.tar.xz 28-Feb-2019 02:54 356 +mex.i386-solaris.tar.xz 28-Feb-2019 02:54 356 +mex.r58661.tar.xz 23-Mar-2021 18:31 11468 +mex.source.r58661.tar.xz 23-Mar-2021 18:31 38840 +mex.source.tar.xz 23-Mar-2021 18:31 38840 +mex.tar.xz 23-Mar-2021 18:31 11468 +mex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 356 +mex.universal-darwin.tar.xz 25-Feb-2021 18:16 356 +mex.windows.r65891.tar.xz 20-Feb-2023 22:14 2416 +mex.windows.tar.xz 20-Feb-2023 22:14 2416 +mex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:54 360 +mex.x86_64-cygwin.tar.xz 28-Feb-2019 02:54 360 +mex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:54 364 +mex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:54 364 +mex.x86_64-linux.r3185.tar.xz 28-Feb-2019 02:54 352 +mex.x86_64-linux.tar.xz 28-Feb-2019 02:54 352 +mex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:54 360 +mex.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:54 360 +mex.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:54 356 +mex.x86_64-solaris.tar.xz 28-Feb-2019 02:54 356 +mf2pt1.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.aarch64-linux.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.amd64-freebsd.r23406.tar.xz 28-Feb-2019 02:54 344 +mf2pt1.amd64-freebsd.tar.xz 28-Feb-2019 02:54 344 +mf2pt1.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.amd64-netbsd.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.armhf-linux.r30015.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.armhf-linux.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.doc.r71883.tar.xz 23-Jul-2024 23:48 200976 +mf2pt1.doc.tar.xz 23-Jul-2024 23:48 200976 +mf2pt1.i386-freebsd.r23406.tar.xz 28-Feb-2019 02:54 344 +mf2pt1.i386-freebsd.tar.xz 28-Feb-2019 02:54 344 +mf2pt1.i386-linux.r23406.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.i386-linux.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:54 344 +mf2pt1.i386-netbsd.tar.xz 28-Feb-2019 02:54 344 +mf2pt1.i386-solaris.r23406.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.i386-solaris.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.r71883.tar.xz 23-Jul-2024 23:48 15164 +mf2pt1.tar.xz 23-Jul-2024 23:48 15164 +mf2pt1.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +mf2pt1.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +mf2pt1.windows.r65891.tar.xz 20-Feb-2023 22:14 2304 +mf2pt1.windows.tar.xz 20-Feb-2023 22:14 2304 +mf2pt1.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.x86_64-cygwin.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:54 348 +mf2pt1.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:54 348 +mf2pt1.x86_64-linux.r23406.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.x86_64-linux.tar.xz 28-Feb-2019 02:54 340 +mf2pt1.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:54 344 +mf2pt1.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:54 344 +mf2pt1.x86_64-solaris.r23406.tar.xz 28-Feb-2019 02:54 344 +mf2pt1.x86_64-solaris.tar.xz 28-Feb-2019 02:54 344 +mfb-oldstyle.doc.r71982.tar.xz 06-Aug-2024 23:48 1552288 +mfb-oldstyle.doc.tar.xz 06-Aug-2024 23:48 1552288 +mfb-oldstyle.r71982.tar.xz 06-Aug-2024 23:48 825848 +mfb-oldstyle.tar.xz 06-Aug-2024 23:48 825848 +mfirstuc.doc.r74838.tar.xz 03-Apr-2025 23:51 813244 +mfirstuc.doc.tar.xz 03-Apr-2025 23:51 813244 +mfirstuc.r74838.tar.xz 03-Apr-2025 23:51 5784 +mfirstuc.source.r74838.tar.xz 03-Apr-2025 23:51 11696 +mfirstuc.source.tar.xz 03-Apr-2025 23:51 11696 +mfirstuc.tar.xz 03-Apr-2025 23:51 5784 +mflogo-font.doc.r54512.tar.xz 24-Mar-2020 01:00 1072 +mflogo-font.doc.tar.xz 24-Mar-2020 01:00 1072 +mflogo-font.r54512.tar.xz 24-Mar-2020 01:00 18124 +mflogo-font.tar.xz 24-Mar-2020 01:00 18124 +mflogo.doc.r42428.tar.xz 28-Feb-2019 02:54 239476 +mflogo.doc.tar.xz 28-Feb-2019 02:54 239476 +mflogo.r42428.tar.xz 28-Feb-2019 02:54 1604 +mflogo.source.r42428.tar.xz 28-Feb-2019 02:54 5728 +mflogo.source.tar.xz 28-Feb-2019 02:54 5728 +mflogo.tar.xz 28-Feb-2019 02:54 1604 +mflua.aarch64-linux.r74368.tar.xz 02-Mar-2025 01:10 842416 +mflua.aarch64-linux.tar.xz 02-Mar-2025 01:10 842416 +mflua.amd64-freebsd.r74368.tar.xz 02-Mar-2025 01:10 817300 +mflua.amd64-freebsd.tar.xz 02-Mar-2025 01:10 817300 +mflua.amd64-netbsd.r74367.tar.xz 02-Mar-2025 01:10 808100 +mflua.amd64-netbsd.tar.xz 02-Mar-2025 01:10 808100 +mflua.armhf-linux.r74368.tar.xz 02-Mar-2025 01:10 729556 +mflua.armhf-linux.tar.xz 02-Mar-2025 01:10 729556 +mflua.doc.r73848.tar.xz 11-Feb-2025 00:48 22200 +mflua.doc.tar.xz 11-Feb-2025 00:48 22200 +mflua.i386-freebsd.r74368.tar.xz 02-Mar-2025 01:10 818164 +mflua.i386-freebsd.tar.xz 02-Mar-2025 01:10 818164 +mflua.i386-linux.r74368.tar.xz 02-Mar-2025 01:10 967784 +mflua.i386-linux.tar.xz 02-Mar-2025 01:10 967784 +mflua.i386-netbsd.r74367.tar.xz 02-Mar-2025 01:10 748136 +mflua.i386-netbsd.tar.xz 02-Mar-2025 01:10 748136 +mflua.i386-solaris.r74368.tar.xz 02-Mar-2025 01:10 518132 +mflua.i386-solaris.tar.xz 02-Mar-2025 01:10 518132 +mflua.r73848.tar.xz 11-Feb-2025 00:48 31672 +mflua.tar.xz 11-Feb-2025 00:48 31672 +mflua.universal-darwin.r74380.tar.xz 02-Mar-2025 01:10 1684044 +mflua.universal-darwin.tar.xz 02-Mar-2025 01:10 1684044 +mflua.windows.r74338.tar.xz 01-Mar-2025 00:56 1289180 +mflua.windows.tar.xz 01-Mar-2025 00:56 1289180 +mflua.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 526988 +mflua.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 526988 +mflua.x86_64-darwinlegacy.r74380.tar.xz 02-Mar-2025 01:10 769732 +mflua.x86_64-darwinlegacy.tar.xz 02-Mar-2025 01:10 769732 +mflua.x86_64-linux.r74368.tar.xz 02-Mar-2025 01:10 934436 +mflua.x86_64-linux.tar.xz 02-Mar-2025 01:10 934436 +mflua.x86_64-linuxmusl.r74368.tar.xz 02-Mar-2025 01:10 940912 +mflua.x86_64-linuxmusl.tar.xz 02-Mar-2025 01:10 940912 +mflua.x86_64-solaris.r74368.tar.xz 02-Mar-2025 01:10 585220 +mflua.x86_64-solaris.tar.xz 02-Mar-2025 01:10 585220 +mfnfss.doc.r46036.tar.xz 28-Feb-2019 02:54 448320 +mfnfss.doc.tar.xz 28-Feb-2019 02:54 448320 +mfnfss.r46036.tar.xz 28-Feb-2019 02:54 2140 +mfnfss.source.r46036.tar.xz 28-Feb-2019 02:54 17544 +mfnfss.source.tar.xz 28-Feb-2019 02:54 17544 +mfnfss.tar.xz 28-Feb-2019 02:54 2140 +mfpic.doc.r28444.tar.xz 28-Feb-2019 02:54 1174196 +mfpic.doc.tar.xz 28-Feb-2019 02:54 1174196 +mfpic.r28444.tar.xz 28-Feb-2019 02:54 47052 +mfpic.source.r28444.tar.xz 28-Feb-2019 02:54 166720 +mfpic.source.tar.xz 28-Feb-2019 02:54 166720 +mfpic.tar.xz 28-Feb-2019 02:54 47052 +mfpic4ode.doc.r75712.tar.xz 07-Jul-2025 23:51 629724 +mfpic4ode.doc.tar.xz 07-Jul-2025 23:51 629724 +mfpic4ode.r75712.tar.xz 07-Jul-2025 23:51 2340 +mfpic4ode.source.r75712.tar.xz 07-Jul-2025 23:51 5684 +mfpic4ode.source.tar.xz 07-Jul-2025 23:51 5684 +mfpic4ode.tar.xz 07-Jul-2025 23:51 2340 +mftinc.doc.r15878.tar.xz 28-Feb-2019 02:54 251032 +mftinc.doc.tar.xz 28-Feb-2019 02:54 251032 +mftinc.r15878.tar.xz 28-Feb-2019 02:54 2936 +mftinc.source.r15878.tar.xz 28-Feb-2019 02:54 17248 +mftinc.source.tar.xz 28-Feb-2019 02:54 17248 +mftinc.tar.xz 28-Feb-2019 02:54 2936 +mfware.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 119424 +mfware.aarch64-linux.tar.xz 13-Feb-2025 00:50 119424 +mfware.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:54 131752 +mfware.amd64-freebsd.tar.xz 09-Feb-2025 00:54 131752 +mfware.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 122568 +mfware.amd64-netbsd.tar.xz 09-Feb-2025 18:16 122568 +mfware.armhf-linux.r73793.tar.xz 09-Feb-2025 00:54 107708 +mfware.armhf-linux.tar.xz 09-Feb-2025 00:54 107708 +mfware.doc.r73848.tar.xz 11-Feb-2025 00:48 107884 +mfware.doc.tar.xz 11-Feb-2025 00:48 107884 +mfware.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:54 131768 +mfware.i386-freebsd.tar.xz 09-Feb-2025 00:54 131768 +mfware.i386-linux.r73792.tar.xz 09-Feb-2025 00:54 130012 +mfware.i386-linux.tar.xz 09-Feb-2025 00:54 130012 +mfware.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 103588 +mfware.i386-netbsd.tar.xz 09-Feb-2025 18:16 103588 +mfware.i386-solaris.r73792.tar.xz 09-Feb-2025 00:54 131484 +mfware.i386-solaris.tar.xz 09-Feb-2025 00:54 131484 +mfware.r73848.tar.xz 11-Feb-2025 00:48 3180 +mfware.tar.xz 11-Feb-2025 00:48 3180 +mfware.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 250396 +mfware.universal-darwin.tar.xz 09-Feb-2025 18:16 250396 +mfware.windows.r73796.tar.xz 09-Feb-2025 18:16 67796 +mfware.windows.tar.xz 09-Feb-2025 18:16 67796 +mfware.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 64244 +mfware.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 64244 +mfware.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 121588 +mfware.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 121588 +mfware.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 125408 +mfware.x86_64-linux.tar.xz 19-Feb-2025 00:47 125408 +mfware.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:54 131012 +mfware.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:54 131012 +mfware.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:54 152500 +mfware.x86_64-solaris.tar.xz 09-Feb-2025 00:54 152500 +mgltex.doc.r63255.tar.xz 07-May-2022 23:54 6576 +mgltex.doc.tar.xz 07-May-2022 23:54 6576 +mgltex.r63255.tar.xz 07-May-2022 23:54 6348 +mgltex.source.r63255.tar.xz 07-May-2022 23:54 31244 +mgltex.source.tar.xz 07-May-2022 23:54 31244 +mgltex.tar.xz 07-May-2022 23:54 6348 +mhchem.doc.r69639.tar.xz 31-Jan-2024 00:45 427988 +mhchem.doc.tar.xz 31-Jan-2024 00:45 427988 +mhchem.r69639.tar.xz 31-Jan-2024 00:45 185132 +mhchem.tar.xz 31-Jan-2024 00:45 185132 +mhequ.doc.r64978.tar.xz 10-Nov-2022 00:53 119848 +mhequ.doc.tar.xz 10-Nov-2022 00:53 119848 +mhequ.r64978.tar.xz 10-Nov-2022 00:53 4352 +mhequ.tar.xz 10-Nov-2022 00:53 4352 +mi-solns.doc.r49651.tar.xz 28-Feb-2019 02:54 459540 +mi-solns.doc.tar.xz 28-Feb-2019 02:54 459540 +mi-solns.r49651.tar.xz 28-Feb-2019 02:54 2296 +mi-solns.source.r49651.tar.xz 28-Feb-2019 02:54 6528 +mi-solns.source.tar.xz 28-Feb-2019 02:54 6528 +mi-solns.tar.xz 28-Feb-2019 02:54 2296 +miama.doc.r73481.tar.xz 17-Jan-2025 00:46 633156 +miama.doc.tar.xz 17-Jan-2025 00:46 633156 +miama.r73481.tar.xz 17-Jan-2025 00:46 518636 +miama.source.r73481.tar.xz 17-Jan-2025 00:46 5960 +miama.source.tar.xz 17-Jan-2025 00:46 5960 +miama.tar.xz 17-Jan-2025 00:46 518636 +microtype-de.doc.r54080.tar.xz 04-Mar-2020 22:52 1378208 +microtype-de.doc.tar.xz 04-Mar-2020 22:52 1378208 +microtype-de.r54080.tar.xz 04-Mar-2020 22:52 376 +microtype-de.tar.xz 04-Mar-2020 22:52 376 +microtype.doc.r75729.tar.xz 09-Jul-2025 23:49 2566540 +microtype.doc.tar.xz 09-Jul-2025 23:49 2566540 +microtype.r75729.tar.xz 09-Jul-2025 23:49 59144 +microtype.source.r75729.tar.xz 09-Jul-2025 23:49 178304 +microtype.source.tar.xz 09-Jul-2025 23:49 178304 +microtype.tar.xz 09-Jul-2025 23:49 59144 +midnight.doc.r15878.tar.xz 28-Feb-2019 02:54 330504 +midnight.doc.tar.xz 28-Feb-2019 02:54 330504 +midnight.r15878.tar.xz 28-Feb-2019 02:54 16348 +midnight.tar.xz 28-Feb-2019 02:54 16348 +midpage.doc.r17484.tar.xz 28-Feb-2019 02:54 189016 +midpage.doc.tar.xz 28-Feb-2019 02:54 189016 +midpage.r17484.tar.xz 28-Feb-2019 02:54 788 +midpage.tar.xz 28-Feb-2019 02:54 788 +miller.doc.r18789.tar.xz 28-Feb-2019 02:54 260992 +miller.doc.tar.xz 28-Feb-2019 02:54 260992 +miller.r18789.tar.xz 28-Feb-2019 02:54 1456 +miller.source.r18789.tar.xz 28-Feb-2019 02:54 2884 +miller.source.tar.xz 28-Feb-2019 02:54 2884 +miller.tar.xz 28-Feb-2019 02:54 1456 +milog.doc.r75447.tar.xz 07-Jun-2025 23:49 404064 +milog.doc.tar.xz 07-Jun-2025 23:49 404064 +milog.r75447.tar.xz 07-Jun-2025 23:49 3080 +milog.tar.xz 07-Jun-2025 23:49 3080 +milsymb.doc.r76389.tar.xz 23-Sep-2025 23:49 1554072 +milsymb.doc.tar.xz 23-Sep-2025 23:49 1554072 +milsymb.r76389.tar.xz 23-Sep-2025 23:49 22216 +milsymb.tar.xz 23-Sep-2025 23:49 22216 +mindflow.doc.r65236.tar.xz 11-Dec-2022 00:55 202452 +mindflow.doc.tar.xz 11-Dec-2022 00:55 202452 +mindflow.r65236.tar.xz 11-Dec-2022 00:55 2536 +mindflow.source.r65236.tar.xz 11-Dec-2022 00:55 6520 +mindflow.source.tar.xz 11-Dec-2022 00:55 6520 +mindflow.tar.xz 11-Dec-2022 00:55 2536 +minibox.doc.r30914.tar.xz 28-Feb-2019 02:54 281540 +minibox.doc.tar.xz 28-Feb-2019 02:54 281540 +minibox.r30914.tar.xz 28-Feb-2019 02:54 1052 +minibox.source.r30914.tar.xz 28-Feb-2019 02:54 3056 +minibox.source.tar.xz 28-Feb-2019 02:54 3056 +minibox.tar.xz 28-Feb-2019 02:54 1052 +minidocument.doc.r43752.tar.xz 28-Feb-2019 02:54 188224 +minidocument.doc.tar.xz 28-Feb-2019 02:54 188224 +minidocument.r43752.tar.xz 28-Feb-2019 02:54 1464 +minidocument.source.r43752.tar.xz 28-Feb-2019 02:54 3616 +minidocument.source.tar.xz 28-Feb-2019 02:54 3616 +minidocument.tar.xz 28-Feb-2019 02:54 1464 +minifp.doc.r32559.tar.xz 28-Feb-2019 02:54 435560 +minifp.doc.tar.xz 28-Feb-2019 02:54 435560 +minifp.r32559.tar.xz 28-Feb-2019 02:54 10000 +minifp.source.r32559.tar.xz 28-Feb-2019 02:54 43836 +minifp.source.tar.xz 28-Feb-2019 02:54 43836 +minifp.tar.xz 28-Feb-2019 02:54 10000 +minim-hatching.doc.r70885.tar.xz 07-Apr-2024 23:46 26052 +minim-hatching.doc.tar.xz 07-Apr-2024 23:46 26052 +minim-hatching.r70885.tar.xz 07-Apr-2024 23:46 2232 +minim-hatching.tar.xz 07-Apr-2024 23:46 2232 +minim-math.doc.r73816.tar.xz 10-Feb-2025 00:46 104980 +minim-math.doc.tar.xz 10-Feb-2025 00:46 104980 +minim-math.r73816.tar.xz 10-Feb-2025 00:46 34128 +minim-math.tar.xz 10-Feb-2025 00:46 34128 +minim-mp.doc.r73816.tar.xz 10-Feb-2025 00:46 139916 +minim-mp.doc.tar.xz 10-Feb-2025 00:46 139916 +minim-mp.r73816.tar.xz 10-Feb-2025 00:46 22600 +minim-mp.tar.xz 10-Feb-2025 00:46 22600 +minim-pdf.doc.r74207.tar.xz 23-Feb-2025 00:58 142736 +minim-pdf.doc.tar.xz 23-Feb-2025 00:58 142736 +minim-pdf.r74207.tar.xz 23-Feb-2025 00:58 17624 +minim-pdf.tar.xz 23-Feb-2025 00:58 17624 +minim-xmp.doc.r73816.tar.xz 10-Feb-2025 00:46 62172 +minim-xmp.doc.tar.xz 10-Feb-2025 00:46 62172 +minim-xmp.r73816.tar.xz 10-Feb-2025 00:46 6372 +minim-xmp.tar.xz 10-Feb-2025 00:46 6372 +minim.doc.r73816.tar.xz 10-Feb-2025 00:46 383500 +minim.doc.tar.xz 10-Feb-2025 00:46 383500 +minim.r73816.tar.xz 10-Feb-2025 00:46 25112 +minim.tar.xz 10-Feb-2025 00:46 25112 +minimalist.doc.r70302.tar.xz 01-Mar-2024 22:55 8120 +minimalist.doc.tar.xz 01-Mar-2024 22:55 8120 +minimalist.r70302.tar.xz 01-Mar-2024 22:55 13100 +minimalist.tar.xz 01-Mar-2024 22:55 13100 +minipage-marginpar.doc.r15878.tar.xz 28-Feb-2019 02:54 72252 +minipage-marginpar.doc.tar.xz 28-Feb-2019 02:54 72252 +minipage-marginpar.r15878.tar.xz 28-Feb-2019 02:54 1588 +minipage-marginpar.source.r15878.tar.xz 28-Feb-2019 02:54 6140 +minipage-marginpar.source.tar.xz 28-Feb-2019 02:54 6140 +minipage-marginpar.tar.xz 28-Feb-2019 02:54 1588 +miniplot.doc.r17483.tar.xz 28-Feb-2019 02:54 166228 +miniplot.doc.tar.xz 28-Feb-2019 02:54 166228 +miniplot.r17483.tar.xz 28-Feb-2019 02:54 6248 +miniplot.tar.xz 28-Feb-2019 02:54 6248 +minitoc.doc.r61719.tar.xz 24-Jan-2022 00:55 6354096 +minitoc.doc.tar.xz 24-Jan-2022 00:55 6354096 +minitoc.r61719.tar.xz 24-Jan-2022 00:55 41912 +minitoc.tar.xz 24-Jan-2022 00:55 41912 +minorrevision.doc.r32165.tar.xz 28-Feb-2019 02:54 166396 +minorrevision.doc.tar.xz 28-Feb-2019 02:54 166396 +minorrevision.r32165.tar.xz 28-Feb-2019 02:54 1584 +minorrevision.tar.xz 28-Feb-2019 02:54 1584 +minted.aarch64-linux.r72375.tar.xz 24-Sep-2024 23:48 340 +minted.aarch64-linux.tar.xz 24-Sep-2024 23:48 340 +minted.amd64-freebsd.r72375.tar.xz 24-Sep-2024 23:48 340 +minted.amd64-freebsd.tar.xz 24-Sep-2024 23:48 340 +minted.amd64-netbsd.r72375.tar.xz 24-Sep-2024 23:48 340 +minted.amd64-netbsd.tar.xz 24-Sep-2024 23:48 340 +minted.armhf-linux.r72375.tar.xz 24-Sep-2024 23:48 340 +minted.armhf-linux.tar.xz 24-Sep-2024 23:48 340 +minted.doc.r75223.tar.xz 15-May-2025 23:50 520288 +minted.doc.tar.xz 15-May-2025 23:50 520288 +minted.i386-freebsd.r72375.tar.xz 24-Sep-2024 23:48 340 +minted.i386-freebsd.tar.xz 24-Sep-2024 23:48 340 +minted.i386-linux.r72375.tar.xz 24-Sep-2024 23:48 340 +minted.i386-linux.tar.xz 24-Sep-2024 23:48 340 +minted.i386-netbsd.r72375.tar.xz 24-Sep-2024 23:48 340 +minted.i386-netbsd.tar.xz 24-Sep-2024 23:48 340 +minted.i386-solaris.r72375.tar.xz 24-Sep-2024 23:48 340 +minted.i386-solaris.tar.xz 24-Sep-2024 23:48 340 +minted.r75223.tar.xz 15-May-2025 23:50 1291540 +minted.source.r75223.tar.xz 15-May-2025 23:50 43108 +minted.source.tar.xz 15-May-2025 23:50 43108 +minted.tar.xz 15-May-2025 23:50 1291540 +minted.universal-darwin.r72375.tar.xz 24-Sep-2024 23:48 344 +minted.universal-darwin.tar.xz 24-Sep-2024 23:48 344 +minted.windows.r72375.tar.xz 24-Sep-2024 23:48 2304 +minted.windows.tar.xz 24-Sep-2024 23:48 2304 +minted.x86_64-cygwin.r72375.tar.xz 24-Sep-2024 23:48 340 +minted.x86_64-cygwin.tar.xz 24-Sep-2024 23:48 340 +minted.x86_64-darwinlegacy.r72375.tar.xz 24-Sep-2024 23:48 352 +minted.x86_64-darwinlegacy.tar.xz 24-Sep-2024 23:48 352 +minted.x86_64-linux.r72375.tar.xz 24-Sep-2024 23:48 340 +minted.x86_64-linux.tar.xz 24-Sep-2024 23:48 340 +minted.x86_64-linuxmusl.r72375.tar.xz 24-Sep-2024 23:48 344 +minted.x86_64-linuxmusl.tar.xz 24-Sep-2024 23:48 344 +minted.x86_64-solaris.r72375.tar.xz 24-Sep-2024 23:48 340 +minted.x86_64-solaris.tar.xz 24-Sep-2024 23:48 340 +mintspirit.doc.r64461.tar.xz 22-Sep-2022 23:53 308412 +mintspirit.doc.tar.xz 22-Sep-2022 23:53 308412 +mintspirit.r64461.tar.xz 22-Sep-2022 23:53 1105472 +mintspirit.tar.xz 22-Sep-2022 23:53 1105472 +minutes.doc.r42186.tar.xz 28-Feb-2019 02:54 393404 +minutes.doc.tar.xz 28-Feb-2019 02:54 393404 +minutes.r42186.tar.xz 28-Feb-2019 02:54 9028 +minutes.source.r42186.tar.xz 28-Feb-2019 02:54 24608 +minutes.source.tar.xz 28-Feb-2019 02:54 24608 +minutes.tar.xz 28-Feb-2019 02:54 9028 +mismath.doc.r71549.tar.xz 17-Jun-2024 23:46 420704 +mismath.doc.tar.xz 17-Jun-2024 23:46 420704 +mismath.r71549.tar.xz 17-Jun-2024 23:46 4940 +mismath.source.r71549.tar.xz 17-Jun-2024 23:46 27436 +mismath.source.tar.xz 17-Jun-2024 23:46 27436 +mismath.tar.xz 17-Jun-2024 23:46 4940 +missaali.doc.r61719.tar.xz 24-Jan-2022 00:55 14130568 +missaali.doc.tar.xz 24-Jan-2022 00:55 14130568 +missaali.r61719.tar.xz 24-Jan-2022 00:55 85820 +missaali.tar.xz 24-Jan-2022 00:55 85820 +mitthesis.doc.r75099.tar.xz 04-May-2025 23:47 4037228 +mitthesis.doc.tar.xz 04-May-2025 23:47 4037228 +mitthesis.r75099.tar.xz 04-May-2025 23:47 13684 +mitthesis.tar.xz 04-May-2025 23:47 13684 +mkgrkindex.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.aarch64-linux.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.amd64-freebsd.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.amd64-netbsd.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.armhf-linux.r30015.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.armhf-linux.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.doc.r26313.tar.xz 28-Feb-2019 02:54 91480 +mkgrkindex.doc.tar.xz 28-Feb-2019 02:54 91480 +mkgrkindex.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:54 344 +mkgrkindex.i386-freebsd.tar.xz 28-Feb-2019 02:54 344 +mkgrkindex.i386-linux.r14428.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.i386-linux.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.i386-netbsd.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.i386-solaris.r14428.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.i386-solaris.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.r26313.tar.xz 28-Feb-2019 02:54 2892 +mkgrkindex.tar.xz 28-Feb-2019 02:54 2892 +mkgrkindex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +mkgrkindex.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +mkgrkindex.windows.r65891.tar.xz 20-Feb-2023 22:15 2308 +mkgrkindex.windows.tar.xz 20-Feb-2023 22:15 2308 +mkgrkindex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:54 344 +mkgrkindex.x86_64-cygwin.tar.xz 28-Feb-2019 02:54 344 +mkgrkindex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:54 352 +mkgrkindex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:54 352 +mkgrkindex.x86_64-linux.r14428.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.x86_64-linux.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:54 344 +mkgrkindex.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:54 344 +mkgrkindex.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:54 340 +mkgrkindex.x86_64-solaris.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.aarch64-linux.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:54 344 +mkjobtexmf.amd64-freebsd.tar.xz 28-Feb-2019 02:54 344 +mkjobtexmf.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:54 344 +mkjobtexmf.amd64-netbsd.tar.xz 28-Feb-2019 02:54 344 +mkjobtexmf.armhf-linux.r30015.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.armhf-linux.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.doc.r29725.tar.xz 28-Feb-2019 02:54 80276 +mkjobtexmf.doc.tar.xz 28-Feb-2019 02:54 80276 +mkjobtexmf.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.i386-freebsd.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.i386-linux.r8457.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.i386-linux.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.i386-netbsd.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.i386-solaris.r8102.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.i386-solaris.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.r29725.tar.xz 28-Feb-2019 02:54 7444 +mkjobtexmf.source.r29725.tar.xz 28-Feb-2019 02:54 19828 +mkjobtexmf.source.tar.xz 28-Feb-2019 02:54 19828 +mkjobtexmf.tar.xz 28-Feb-2019 02:54 7444 +mkjobtexmf.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 340 +mkjobtexmf.universal-darwin.tar.xz 25-Feb-2021 18:16 340 +mkjobtexmf.windows.r65891.tar.xz 20-Feb-2023 22:15 2308 +mkjobtexmf.windows.tar.xz 20-Feb-2023 22:15 2308 +mkjobtexmf.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.x86_64-cygwin.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:54 348 +mkjobtexmf.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:54 348 +mkjobtexmf.x86_64-linux.r8601.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.x86_64-linux.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:54 348 +mkjobtexmf.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:54 348 +mkjobtexmf.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:54 340 +mkjobtexmf.x86_64-solaris.tar.xz 28-Feb-2019 02:54 340 +mkpattern.doc.r15878.tar.xz 28-Feb-2019 02:54 82968 +mkpattern.doc.tar.xz 28-Feb-2019 02:54 82968 +mkpattern.r15878.tar.xz 28-Feb-2019 02:54 4924 +mkpattern.tar.xz 28-Feb-2019 02:54 4924 +mkpic.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:54 336 +mkpic.aarch64-linux.tar.xz 28-Feb-2019 02:54 336 +mkpic.amd64-freebsd.r33688.tar.xz 28-Feb-2019 02:54 340 +mkpic.amd64-freebsd.tar.xz 28-Feb-2019 02:54 340 +mkpic.amd64-netbsd.r33688.tar.xz 28-Feb-2019 02:54 336 +mkpic.amd64-netbsd.tar.xz 28-Feb-2019 02:54 336 +mkpic.armhf-linux.r33688.tar.xz 28-Feb-2019 02:54 336 +mkpic.armhf-linux.tar.xz 28-Feb-2019 02:54 336 +mkpic.doc.r33700.tar.xz 28-Feb-2019 02:54 200688 +mkpic.doc.tar.xz 28-Feb-2019 02:54 200688 +mkpic.i386-freebsd.r33688.tar.xz 28-Feb-2019 02:54 336 +mkpic.i386-freebsd.tar.xz 28-Feb-2019 02:54 336 +mkpic.i386-linux.r33688.tar.xz 28-Feb-2019 02:54 336 +mkpic.i386-linux.tar.xz 28-Feb-2019 02:54 336 +mkpic.i386-netbsd.r33688.tar.xz 28-Feb-2019 02:54 336 +mkpic.i386-netbsd.tar.xz 28-Feb-2019 02:54 336 +mkpic.i386-solaris.r33688.tar.xz 28-Feb-2019 02:54 336 +mkpic.i386-solaris.tar.xz 28-Feb-2019 02:54 336 +mkpic.r33700.tar.xz 28-Feb-2019 02:54 9264 +mkpic.tar.xz 28-Feb-2019 02:54 9264 +mkpic.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 336 +mkpic.universal-darwin.tar.xz 25-Feb-2021 18:16 336 +mkpic.windows.r65891.tar.xz 20-Feb-2023 22:15 2304 +mkpic.windows.tar.xz 20-Feb-2023 22:15 2304 +mkpic.x86_64-cygwin.r33688.tar.xz 28-Feb-2019 02:54 340 +mkpic.x86_64-cygwin.tar.xz 28-Feb-2019 02:54 340 +mkpic.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:54 348 +mkpic.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:54 348 +mkpic.x86_64-linux.r33688.tar.xz 28-Feb-2019 02:54 336 +mkpic.x86_64-linux.tar.xz 28-Feb-2019 02:54 336 +mkpic.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:54 340 +mkpic.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:54 340 +mkpic.x86_64-solaris.r33688.tar.xz 28-Feb-2019 02:54 336 +mkpic.x86_64-solaris.tar.xz 28-Feb-2019 02:54 336 +mla-paper.doc.r54080.tar.xz 04-Mar-2020 22:52 2004 +mla-paper.doc.tar.xz 04-Mar-2020 22:52 2004 +mla-paper.r54080.tar.xz 04-Mar-2020 22:52 2316 +mla-paper.tar.xz 04-Mar-2020 22:52 2316 +mlacls.doc.r72271.tar.xz 13-Sep-2024 23:47 3028620 +mlacls.doc.tar.xz 13-Sep-2024 23:47 3028620 +mlacls.r72271.tar.xz 13-Sep-2024 23:47 3040 +mlacls.source.r72271.tar.xz 13-Sep-2024 23:47 10488 +mlacls.source.tar.xz 13-Sep-2024 23:47 10488 +mlacls.tar.xz 13-Sep-2024 23:47 3040 +mlawriter.doc.r67558.tar.xz 05-Jul-2023 23:44 41868 +mlawriter.doc.tar.xz 05-Jul-2023 23:44 41868 +mlawriter.r67558.tar.xz 05-Jul-2023 23:44 1468 +mlawriter.tar.xz 05-Jul-2023 23:44 1468 +mleftright.doc.r53021.tar.xz 05-Dec-2019 00:53 308648 +mleftright.doc.tar.xz 05-Dec-2019 00:53 308648 +mleftright.r53021.tar.xz 05-Dec-2019 00:53 2644 +mleftright.source.r53021.tar.xz 05-Dec-2019 00:53 6548 +mleftright.source.tar.xz 05-Dec-2019 00:53 6548 +mleftright.tar.xz 05-Dec-2019 00:53 2644 +mlist.doc.r15878.tar.xz 28-Feb-2019 02:54 186980 +mlist.doc.tar.xz 28-Feb-2019 02:54 186980 +mlist.r15878.tar.xz 28-Feb-2019 02:54 3068 +mlist.source.r15878.tar.xz 28-Feb-2019 02:54 15480 +mlist.source.tar.xz 28-Feb-2019 02:54 15480 +mlist.tar.xz 28-Feb-2019 02:54 3068 +mlmodern.doc.r57458.tar.xz 19-Jan-2021 00:58 46740 +mlmodern.doc.tar.xz 19-Jan-2021 00:58 46740 +mlmodern.r57458.tar.xz 19-Jan-2021 00:58 7595924 +mlmodern.tar.xz 19-Jan-2021 00:58 7595924 +mltex.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:54 340 +mltex.aarch64-linux.tar.xz 28-Feb-2019 02:54 340 +mltex.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:54 340 +mltex.amd64-freebsd.tar.xz 28-Feb-2019 02:54 340 +mltex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:54 336 +mltex.amd64-netbsd.tar.xz 28-Feb-2019 02:54 336 +mltex.armhf-linux.r30015.tar.xz 28-Feb-2019 02:54 336 +mltex.armhf-linux.tar.xz 28-Feb-2019 02:54 336 +mltex.doc.r71363.tar.xz 27-May-2024 13:11 8676 +mltex.doc.tar.xz 27-May-2024 13:11 8676 +mltex.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:54 340 +mltex.i386-freebsd.tar.xz 28-Feb-2019 02:54 340 +mltex.i386-linux.r3006.tar.xz 28-Feb-2019 02:54 336 +mltex.i386-linux.tar.xz 28-Feb-2019 02:54 336 +mltex.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:54 336 +mltex.i386-netbsd.tar.xz 28-Feb-2019 02:54 336 +mltex.i386-solaris.r8102.tar.xz 28-Feb-2019 02:54 336 +mltex.i386-solaris.tar.xz 28-Feb-2019 02:54 336 +mltex.r71363.tar.xz 27-May-2024 13:11 6420 +mltex.tar.xz 27-May-2024 13:11 6420 +mltex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 336 +mltex.universal-darwin.tar.xz 25-Feb-2021 18:16 336 +mltex.windows.r65891.tar.xz 20-Feb-2023 22:15 2380 +mltex.windows.tar.xz 20-Feb-2023 22:15 2380 +mltex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:54 344 +mltex.x86_64-cygwin.tar.xz 28-Feb-2019 02:54 344 +mltex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:54 348 +mltex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:54 348 +mltex.x86_64-linux.r3185.tar.xz 28-Feb-2019 02:54 336 +mltex.x86_64-linux.tar.xz 28-Feb-2019 02:54 336 +mltex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:54 340 +mltex.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:54 340 +mltex.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:54 340 +mltex.x86_64-solaris.tar.xz 28-Feb-2019 02:54 340 +mluexercise.doc.r56927.tar.xz 14-Nov-2020 00:57 455480 +mluexercise.doc.tar.xz 14-Nov-2020 00:57 455480 +mluexercise.r56927.tar.xz 14-Nov-2020 00:57 4784 +mluexercise.source.r56927.tar.xz 14-Nov-2020 00:57 9764 +mluexercise.source.tar.xz 14-Nov-2020 00:57 9764 +mluexercise.tar.xz 14-Nov-2020 00:57 4784 +mmap.doc.r15878.tar.xz 28-Feb-2019 02:54 1040 +mmap.doc.tar.xz 28-Feb-2019 02:54 1040 +mmap.r15878.tar.xz 28-Feb-2019 02:54 19252 +mmap.tar.xz 28-Feb-2019 02:54 19252 +mnhyphn.doc.r69727.tar.xz 07-Feb-2024 00:45 640 +mnhyphn.doc.tar.xz 07-Feb-2024 00:45 640 +mnhyphn.r69727.tar.xz 07-Feb-2024 00:45 2968 +mnhyphn.tar.xz 07-Feb-2024 00:45 2968 +mnotes.doc.r63406.tar.xz 26-May-2022 23:52 212872 +mnotes.doc.tar.xz 26-May-2022 23:52 212872 +mnotes.r63406.tar.xz 26-May-2022 23:52 2160 +mnotes.source.r63406.tar.xz 26-May-2022 23:52 6476 +mnotes.source.tar.xz 26-May-2022 23:52 6476 +mnotes.tar.xz 26-May-2022 23:52 2160 +mnras.doc.r68878.tar.xz 18-Nov-2023 00:45 365164 +mnras.doc.tar.xz 18-Nov-2023 00:45 365164 +mnras.r68878.tar.xz 18-Nov-2023 00:45 26004 +mnras.tar.xz 18-Nov-2023 00:45 26004 +mnsymbol.doc.r18651.tar.xz 28-Feb-2019 02:54 239032 +mnsymbol.doc.tar.xz 28-Feb-2019 02:54 239032 +mnsymbol.r18651.tar.xz 28-Feb-2019 02:54 4426364 +mnsymbol.source.r18651.tar.xz 28-Feb-2019 02:54 14064 +mnsymbol.source.tar.xz 28-Feb-2019 02:54 14064 +mnsymbol.tar.xz 28-Feb-2019 02:54 4426364 +modeles-factures-belges-assocs.doc.r67840.tar.xz 07-Aug-2023 23:43 260140 +modeles-factures-belges-assocs.doc.tar.xz 07-Aug-2023 23:43 260140 +modeles-factures-belges-assocs.r67840.tar.xz 07-Aug-2023 23:43 3036 +modeles-factures-belges-assocs.tar.xz 07-Aug-2023 23:43 3036 +moderncv.doc.r71837.tar.xz 18-Jul-2024 23:48 178768 +moderncv.doc.tar.xz 18-Jul-2024 23:48 178768 +moderncv.r71837.tar.xz 18-Jul-2024 23:48 38940 +moderncv.tar.xz 18-Jul-2024 23:48 38940 +modernposter.doc.r47269.tar.xz 28-Feb-2019 02:54 391208 +modernposter.doc.tar.xz 28-Feb-2019 02:54 391208 +modernposter.r47269.tar.xz 28-Feb-2019 02:54 2552 +modernposter.tar.xz 28-Feb-2019 02:54 2552 +moderntimeline.doc.r55518.tar.xz 11-Jun-2020 23:56 186684 +moderntimeline.doc.tar.xz 11-Jun-2020 23:56 186684 +moderntimeline.r55518.tar.xz 11-Jun-2020 23:56 2516 +moderntimeline.source.r55518.tar.xz 11-Jun-2020 23:56 6460 +moderntimeline.source.tar.xz 11-Jun-2020 23:56 6460 +moderntimeline.tar.xz 11-Jun-2020 23:56 2516 +modes.doc.r69113.tar.xz 14-Dec-2023 22:49 276696 +modes.doc.tar.xz 14-Dec-2023 22:49 276696 +modes.r69113.tar.xz 14-Dec-2023 22:49 27444 +modes.tar.xz 14-Dec-2023 22:49 27444 +modiagram.doc.r56886.tar.xz 10-Nov-2020 00:58 546580 +modiagram.doc.tar.xz 10-Nov-2020 00:58 546580 +modiagram.r56886.tar.xz 10-Nov-2020 00:58 8876 +modiagram.tar.xz 10-Nov-2020 00:58 8876 +modref.doc.r15878.tar.xz 28-Feb-2019 02:54 148376 +modref.doc.tar.xz 28-Feb-2019 02:54 148376 +modref.r15878.tar.xz 28-Feb-2019 02:54 2604 +modref.source.r15878.tar.xz 28-Feb-2019 02:54 14244 +modref.source.tar.xz 28-Feb-2019 02:54 14244 +modref.tar.xz 28-Feb-2019 02:54 2604 +modroman.doc.r29803.tar.xz 28-Feb-2019 02:54 1300104 +modroman.doc.tar.xz 28-Feb-2019 02:54 1300104 +modroman.r29803.tar.xz 28-Feb-2019 02:54 2444 +modroman.source.r29803.tar.xz 28-Feb-2019 02:54 18772 +modroman.source.tar.xz 28-Feb-2019 02:54 18772 +modroman.tar.xz 28-Feb-2019 02:54 2444 +modular.doc.r44142.tar.xz 28-Feb-2019 02:54 145240 +modular.doc.tar.xz 28-Feb-2019 02:54 145240 +modular.r44142.tar.xz 28-Feb-2019 02:54 1004 +modular.tar.xz 28-Feb-2019 02:54 1004 +modulus.doc.r47599.tar.xz 28-Feb-2019 02:54 174792 +modulus.doc.tar.xz 28-Feb-2019 02:54 174792 +modulus.r47599.tar.xz 28-Feb-2019 02:54 1212 +modulus.source.r47599.tar.xz 28-Feb-2019 02:54 3136 +modulus.source.tar.xz 28-Feb-2019 02:54 3136 +modulus.tar.xz 28-Feb-2019 02:54 1212 +mohe-book.doc.r74912.tar.xz 11-Apr-2025 23:50 536784 +mohe-book.doc.tar.xz 11-Apr-2025 23:50 536784 +mohe-book.r74912.tar.xz 11-Apr-2025 23:50 6088 +mohe-book.tar.xz 11-Apr-2025 23:50 6088 +moloch.doc.r76412.tar.xz 26-Sep-2025 23:46 470716 +moloch.doc.tar.xz 26-Sep-2025 23:46 470716 +moloch.r76412.tar.xz 26-Sep-2025 23:46 5272 +moloch.source.r76412.tar.xz 26-Sep-2025 23:46 9152 +moloch.source.tar.xz 26-Sep-2025 23:46 9152 +moloch.tar.xz 26-Sep-2025 23:46 5272 +mongolian-babel.doc.r15878.tar.xz 28-Feb-2019 02:54 89416 +mongolian-babel.doc.tar.xz 28-Feb-2019 02:54 89416 +mongolian-babel.r15878.tar.xz 28-Feb-2019 02:54 5300 +mongolian-babel.source.r15878.tar.xz 28-Feb-2019 02:54 12068 +mongolian-babel.source.tar.xz 28-Feb-2019 02:54 12068 +mongolian-babel.tar.xz 28-Feb-2019 02:54 5300 +monofill.doc.r28140.tar.xz 28-Feb-2019 02:54 290600 +monofill.doc.tar.xz 28-Feb-2019 02:54 290600 +monofill.r28140.tar.xz 28-Feb-2019 02:54 4116 +monofill.source.r28140.tar.xz 28-Feb-2019 02:54 3000 +monofill.source.tar.xz 28-Feb-2019 02:54 3000 +monofill.tar.xz 28-Feb-2019 02:54 4116 +montex.doc.r29349.tar.xz 28-Feb-2019 02:54 721228 +montex.doc.tar.xz 28-Feb-2019 02:54 721228 +montex.r29349.tar.xz 28-Feb-2019 02:54 1612052 +montex.tar.xz 28-Feb-2019 02:54 1612052 +montserrat.doc.r54512.tar.xz 24-Mar-2020 01:00 490212 +montserrat.doc.tar.xz 24-Mar-2020 01:00 490212 +montserrat.r54512.tar.xz 24-Mar-2020 01:00 13215444 +montserrat.tar.xz 24-Mar-2020 01:00 13215444 +moodle.doc.r65672.tar.xz 30-Jan-2023 00:52 421500 +moodle.doc.tar.xz 30-Jan-2023 00:52 421500 +moodle.r65672.tar.xz 30-Jan-2023 00:52 37152 +moodle.source.r65672.tar.xz 30-Jan-2023 00:52 75824 +moodle.source.tar.xz 30-Jan-2023 00:52 75824 +moodle.tar.xz 30-Jan-2023 00:52 37152 +moreenum.doc.r24479.tar.xz 28-Feb-2019 02:54 220832 +moreenum.doc.tar.xz 28-Feb-2019 02:54 220832 +moreenum.r24479.tar.xz 28-Feb-2019 02:54 2708 +moreenum.tar.xz 28-Feb-2019 02:54 2708 +morefloats.doc.r73637.tar.xz 30-Jan-2025 00:48 556532 +morefloats.doc.tar.xz 30-Jan-2025 00:48 556532 +morefloats.r73637.tar.xz 30-Jan-2025 00:48 4264 +morefloats.source.r73637.tar.xz 30-Jan-2025 00:48 13636 +morefloats.source.tar.xz 30-Jan-2025 00:48 13636 +morefloats.tar.xz 30-Jan-2025 00:48 4264 +morehype.doc.r38815.tar.xz 28-Feb-2019 02:54 2321852 +morehype.doc.tar.xz 28-Feb-2019 02:54 2321852 +morehype.r38815.tar.xz 28-Feb-2019 02:54 62492 +morehype.source.r38815.tar.xz 28-Feb-2019 02:54 14396 +morehype.source.tar.xz 28-Feb-2019 02:54 14396 +morehype.tar.xz 28-Feb-2019 02:54 62492 +moremath.doc.r72072.tar.xz 20-Aug-2024 23:46 978880 +moremath.doc.tar.xz 20-Aug-2024 23:46 978880 +moremath.r72072.tar.xz 20-Aug-2024 23:46 6496 +moremath.source.r72072.tar.xz 20-Aug-2024 23:46 30588 +moremath.source.tar.xz 20-Aug-2024 23:46 30588 +moremath.tar.xz 20-Aug-2024 23:46 6496 +moresize.doc.r17513.tar.xz 28-Feb-2019 02:54 248052 +moresize.doc.tar.xz 28-Feb-2019 02:54 248052 +moresize.r17513.tar.xz 28-Feb-2019 02:54 1532 +moresize.source.r17513.tar.xz 28-Feb-2019 02:54 9448 +moresize.source.tar.xz 28-Feb-2019 02:54 9448 +moresize.tar.xz 28-Feb-2019 02:54 1532 +moreverb.doc.r22126.tar.xz 28-Feb-2019 02:54 114952 +moreverb.doc.tar.xz 28-Feb-2019 02:54 114952 +moreverb.r22126.tar.xz 28-Feb-2019 02:54 2324 +moreverb.source.r22126.tar.xz 28-Feb-2019 02:54 7080 +moreverb.source.tar.xz 28-Feb-2019 02:54 7080 +moreverb.tar.xz 28-Feb-2019 02:54 2324 +morewrites.doc.r69679.tar.xz 03-Feb-2024 00:45 1254560 +morewrites.doc.tar.xz 03-Feb-2024 00:45 1254560 +morewrites.r69679.tar.xz 03-Feb-2024 00:45 5852 +morewrites.source.r69679.tar.xz 03-Feb-2024 00:45 20660 +morewrites.source.tar.xz 03-Feb-2024 00:45 20660 +morewrites.tar.xz 03-Feb-2024 00:45 5852 +morisawa.doc.r46946.tar.xz 28-Feb-2019 02:54 95032 +morisawa.doc.tar.xz 28-Feb-2019 02:54 95032 +morisawa.r46946.tar.xz 28-Feb-2019 02:54 8564 +morisawa.source.r46946.tar.xz 28-Feb-2019 02:54 3452 +morisawa.source.tar.xz 28-Feb-2019 02:54 3452 +morisawa.tar.xz 28-Feb-2019 02:54 8564 +movement-arrows.doc.r67270.tar.xz 02-Jun-2023 23:45 65944 +movement-arrows.doc.tar.xz 02-Jun-2023 23:45 65944 +movement-arrows.r67270.tar.xz 02-Jun-2023 23:45 1948 +movement-arrows.tar.xz 02-Jun-2023 23:45 1948 +movie15.doc.r26473.tar.xz 28-Feb-2019 02:54 484140 +movie15.doc.tar.xz 28-Feb-2019 02:54 484140 +movie15.r26473.tar.xz 28-Feb-2019 02:54 23660 +movie15.tar.xz 28-Feb-2019 02:54 23660 +mp-geom2d.doc.r75180.tar.xz 12-May-2025 23:50 2210576 +mp-geom2d.doc.tar.xz 12-May-2025 23:50 2210576 +mp-geom2d.r75180.tar.xz 12-May-2025 23:50 16940 +mp-geom2d.tar.xz 12-May-2025 23:50 16940 +mp-neuralnetwork.doc.r73627.tar.xz 29-Jan-2025 00:46 186564 +mp-neuralnetwork.doc.tar.xz 29-Jan-2025 00:46 186564 +mp-neuralnetwork.r73627.tar.xz 29-Jan-2025 00:46 3936 +mp-neuralnetwork.tar.xz 29-Jan-2025 00:46 3936 +mp3d.doc.r29349.tar.xz 28-Feb-2019 02:54 728740 +mp3d.doc.tar.xz 28-Feb-2019 02:54 728740 +mp3d.r29349.tar.xz 28-Feb-2019 02:54 22956 +mp3d.tar.xz 28-Feb-2019 02:54 22956 +mparhack.doc.r59066.tar.xz 03-May-2021 23:54 308392 +mparhack.doc.tar.xz 03-May-2021 23:54 308392 +mparhack.r59066.tar.xz 03-May-2021 23:54 2804 +mparhack.source.r59066.tar.xz 03-May-2021 23:54 10192 +mparhack.source.tar.xz 03-May-2021 23:54 10192 +mparhack.tar.xz 03-May-2021 23:54 2804 +mparrows.doc.r39729.tar.xz 28-Feb-2019 02:54 114292 +mparrows.doc.tar.xz 28-Feb-2019 02:54 114292 +mparrows.r39729.tar.xz 28-Feb-2019 02:54 1348 +mparrows.tar.xz 28-Feb-2019 02:54 1348 +mpattern.doc.r15878.tar.xz 28-Feb-2019 02:54 11328 +mpattern.doc.tar.xz 28-Feb-2019 02:54 11328 +mpattern.r15878.tar.xz 28-Feb-2019 02:54 2752 +mpattern.tar.xz 28-Feb-2019 02:54 2752 +mpchess.doc.r73149.tar.xz 18-Dec-2024 00:48 2427280 +mpchess.doc.tar.xz 18-Dec-2024 00:48 2427280 +mpchess.r73149.tar.xz 18-Dec-2024 00:48 30520 +mpchess.tar.xz 18-Dec-2024 00:48 30520 +mpcolornames.doc.r23252.tar.xz 28-Feb-2019 02:54 108768 +mpcolornames.doc.tar.xz 28-Feb-2019 02:54 108768 +mpcolornames.r23252.tar.xz 28-Feb-2019 02:54 6792 +mpcolornames.source.r23252.tar.xz 28-Feb-2019 02:54 3364 +mpcolornames.source.tar.xz 28-Feb-2019 02:54 3364 +mpcolornames.tar.xz 28-Feb-2019 02:54 6792 +mpfonts.doc.r54512.tar.xz 24-Mar-2020 01:00 9472 +mpfonts.doc.tar.xz 24-Mar-2020 01:00 9472 +mpfonts.r54512.tar.xz 24-Mar-2020 01:00 5977528 +mpfonts.tar.xz 24-Mar-2020 01:00 5977528 +mpgraphics.doc.r29776.tar.xz 28-Feb-2019 02:54 182260 +mpgraphics.doc.tar.xz 28-Feb-2019 02:54 182260 +mpgraphics.r29776.tar.xz 28-Feb-2019 02:54 4340 +mpgraphics.source.r29776.tar.xz 28-Feb-2019 02:54 9484 +mpgraphics.source.tar.xz 28-Feb-2019 02:54 9484 +mpgraphics.tar.xz 28-Feb-2019 02:54 4340 +mpkiviat.doc.r75712.tar.xz 07-Jul-2025 23:51 109416 +mpkiviat.doc.tar.xz 07-Jul-2025 23:51 109416 +mpkiviat.r75712.tar.xz 07-Jul-2025 23:51 2644 +mpkiviat.tar.xz 07-Jul-2025 23:51 2644 +mpman-ru.doc.r15878.tar.xz 28-Feb-2019 02:54 864700 +mpman-ru.doc.tar.xz 28-Feb-2019 02:54 864700 +mpman-ru.r15878.tar.xz 28-Feb-2019 02:54 428 +mpman-ru.tar.xz 28-Feb-2019 02:54 428 +mpostinl.doc.r75032.tar.xz 27-Apr-2025 00:06 351540 +mpostinl.doc.tar.xz 27-Apr-2025 00:06 351540 +mpostinl.r75032.tar.xz 27-Apr-2025 00:06 5128 +mpostinl.source.r75032.tar.xz 27-Apr-2025 00:06 22608 +mpostinl.source.tar.xz 27-Apr-2025 00:06 22608 +mpostinl.tar.xz 27-Apr-2025 00:06 5128 +mptopdf.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:54 348 +mptopdf.aarch64-linux.tar.xz 28-Feb-2019 02:54 348 +mptopdf.amd64-freebsd.r18674.tar.xz 28-Feb-2019 02:54 352 +mptopdf.amd64-freebsd.tar.xz 28-Feb-2019 02:54 352 +mptopdf.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:54 348 +mptopdf.amd64-netbsd.tar.xz 28-Feb-2019 02:54 348 +mptopdf.armhf-linux.r30015.tar.xz 28-Feb-2019 02:54 348 +mptopdf.armhf-linux.tar.xz 28-Feb-2019 02:54 348 +mptopdf.doc.r76423.tar.xz 27-Sep-2025 23:56 16620 +mptopdf.doc.tar.xz 27-Sep-2025 23:56 16620 +mptopdf.i386-freebsd.r18674.tar.xz 28-Feb-2019 02:54 352 +mptopdf.i386-freebsd.tar.xz 28-Feb-2019 02:54 352 +mptopdf.i386-linux.r18674.tar.xz 28-Feb-2019 02:54 348 +mptopdf.i386-linux.tar.xz 28-Feb-2019 02:54 348 +mptopdf.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:54 348 +mptopdf.i386-netbsd.tar.xz 28-Feb-2019 02:54 348 +mptopdf.i386-solaris.r18674.tar.xz 28-Feb-2019 02:54 348 +mptopdf.i386-solaris.tar.xz 28-Feb-2019 02:54 348 +mptopdf.r76423.tar.xz 27-Sep-2025 23:56 37336 +mptopdf.tar.xz 27-Sep-2025 23:56 37336 +mptopdf.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 348 +mptopdf.universal-darwin.tar.xz 25-Feb-2021 18:16 348 +mptopdf.windows.r65891.tar.xz 20-Feb-2023 22:15 2304 +mptopdf.windows.tar.xz 20-Feb-2023 22:15 2304 +mptopdf.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:54 352 +mptopdf.x86_64-cygwin.tar.xz 28-Feb-2019 02:54 352 +mptopdf.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:54 356 +mptopdf.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:54 356 +mptopdf.x86_64-linux.r18674.tar.xz 28-Feb-2019 02:54 348 +mptopdf.x86_64-linux.tar.xz 28-Feb-2019 02:54 348 +mptopdf.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:54 352 +mptopdf.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:54 352 +mptopdf.x86_64-solaris.r18674.tar.xz 28-Feb-2019 02:54 352 +mptopdf.x86_64-solaris.tar.xz 28-Feb-2019 02:54 352 +mptrees.doc.r70887.tar.xz 08-Apr-2024 23:46 575300 +mptrees.doc.tar.xz 08-Apr-2024 23:46 575300 +mptrees.r70887.tar.xz 08-Apr-2024 23:46 11920 +mptrees.tar.xz 08-Apr-2024 23:46 11920 +msc.doc.r67718.tar.xz 23-Jul-2023 23:45 251380 +msc.doc.tar.xz 23-Jul-2023 23:45 251380 +msc.r67718.tar.xz 23-Jul-2023 23:45 20168 +msc.tar.xz 23-Jul-2023 23:45 20168 +msg.doc.r49578.tar.xz 28-Feb-2019 02:54 763960 +msg.doc.tar.xz 28-Feb-2019 02:54 763960 +msg.r49578.tar.xz 28-Feb-2019 02:54 7808 +msg.source.r49578.tar.xz 28-Feb-2019 02:54 18688 +msg.source.tar.xz 28-Feb-2019 02:54 18688 +msg.tar.xz 28-Feb-2019 02:54 7808 +mslapa.doc.r54080.tar.xz 04-Mar-2020 22:52 277424 +mslapa.doc.tar.xz 04-Mar-2020 22:52 277424 +mslapa.r54080.tar.xz 04-Mar-2020 22:52 8972 +mslapa.tar.xz 04-Mar-2020 22:52 8972 +msu-thesis.doc.r71883.tar.xz 23-Jul-2024 23:48 540588 +msu-thesis.doc.tar.xz 23-Jul-2024 23:48 540588 +msu-thesis.r71883.tar.xz 23-Jul-2024 23:48 13800 +msu-thesis.tar.xz 23-Jul-2024 23:48 13800 +mtgreek.doc.r17967.tar.xz 28-Feb-2019 02:55 160144 +mtgreek.doc.tar.xz 28-Feb-2019 02:55 160144 +mtgreek.r17967.tar.xz 28-Feb-2019 02:55 1744 +mtgreek.source.r17967.tar.xz 28-Feb-2019 02:54 2800 +mtgreek.source.tar.xz 28-Feb-2019 02:54 2800 +mtgreek.tar.xz 28-Feb-2019 02:55 1744 +mucproc.doc.r43445.tar.xz 28-Feb-2019 02:55 334012 +mucproc.doc.tar.xz 28-Feb-2019 02:55 334012 +mucproc.r43445.tar.xz 28-Feb-2019 02:55 5280 +mucproc.source.r43445.tar.xz 28-Feb-2019 02:55 10308 +mucproc.source.tar.xz 28-Feb-2019 02:55 10308 +mucproc.tar.xz 28-Feb-2019 02:55 5280 +mugsthesis.doc.r75301.tar.xz 23-May-2025 23:46 394520 +mugsthesis.doc.tar.xz 23-May-2025 23:46 394520 +mugsthesis.r75301.tar.xz 23-May-2025 23:46 3028 +mugsthesis.source.r75301.tar.xz 23-May-2025 23:46 8316 +mugsthesis.source.tar.xz 23-May-2025 23:46 8316 +mugsthesis.tar.xz 23-May-2025 23:46 3028 +muling.doc.r66741.tar.xz 02-Apr-2023 23:54 152804 +muling.doc.tar.xz 02-Apr-2023 23:54 152804 +muling.r66741.tar.xz 02-Apr-2023 23:54 2752 +muling.source.r66741.tar.xz 02-Apr-2023 23:54 5376 +muling.source.tar.xz 02-Apr-2023 23:54 5376 +muling.tar.xz 02-Apr-2023 23:54 2752 +multenum.doc.r21775.tar.xz 28-Feb-2019 02:55 107660 +multenum.doc.tar.xz 28-Feb-2019 02:55 107660 +multenum.r21775.tar.xz 28-Feb-2019 02:55 1664 +multenum.tar.xz 28-Feb-2019 02:55 1664 +multi-sudoku.doc.r75941.tar.xz 01-Aug-2025 23:45 297860 +multi-sudoku.doc.tar.xz 01-Aug-2025 23:45 297860 +multi-sudoku.r75941.tar.xz 01-Aug-2025 23:45 1892 +multi-sudoku.tar.xz 01-Aug-2025 23:45 1892 +multiaudience.doc.r60688.tar.xz 03-Oct-2021 23:52 556568 +multiaudience.doc.tar.xz 03-Oct-2021 23:52 556568 +multiaudience.r60688.tar.xz 03-Oct-2021 23:52 1516 +multiaudience.source.r60688.tar.xz 03-Oct-2021 23:52 6040 +multiaudience.source.tar.xz 03-Oct-2021 23:52 6040 +multiaudience.tar.xz 03-Oct-2021 23:52 1516 +multibbl.doc.r15878.tar.xz 28-Feb-2019 02:55 77252 +multibbl.doc.tar.xz 28-Feb-2019 02:55 77252 +multibbl.r15878.tar.xz 28-Feb-2019 02:55 1936 +multibbl.source.r15878.tar.xz 28-Feb-2019 02:55 3840 +multibbl.source.tar.xz 28-Feb-2019 02:55 3840 +multibbl.tar.xz 28-Feb-2019 02:55 1936 +multibib.doc.r15878.tar.xz 28-Feb-2019 02:55 188844 +multibib.doc.tar.xz 28-Feb-2019 02:55 188844 +multibib.r15878.tar.xz 28-Feb-2019 02:55 16576 +multibib.source.r15878.tar.xz 28-Feb-2019 02:55 12980 +multibib.source.tar.xz 28-Feb-2019 02:55 12980 +multibib.tar.xz 28-Feb-2019 02:55 16576 +multibibliography.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:55 352 +multibibliography.aarch64-linux.tar.xz 28-Feb-2019 02:55 352 +multibibliography.amd64-freebsd.r30534.tar.xz 28-Feb-2019 02:55 348 +multibibliography.amd64-freebsd.tar.xz 28-Feb-2019 02:55 348 +multibibliography.amd64-netbsd.r30534.tar.xz 28-Feb-2019 02:55 348 +multibibliography.amd64-netbsd.tar.xz 28-Feb-2019 02:55 348 +multibibliography.armhf-linux.r30534.tar.xz 28-Feb-2019 02:55 348 +multibibliography.armhf-linux.tar.xz 28-Feb-2019 02:55 348 +multibibliography.doc.r30939.tar.xz 28-Feb-2019 02:55 456972 +multibibliography.doc.tar.xz 28-Feb-2019 02:55 456972 +multibibliography.i386-freebsd.r30534.tar.xz 28-Feb-2019 02:55 352 +multibibliography.i386-freebsd.tar.xz 28-Feb-2019 02:55 352 +multibibliography.i386-linux.r30534.tar.xz 28-Feb-2019 02:55 352 +multibibliography.i386-linux.tar.xz 28-Feb-2019 02:55 352 +multibibliography.i386-netbsd.r30534.tar.xz 28-Feb-2019 02:55 348 +multibibliography.i386-netbsd.tar.xz 28-Feb-2019 02:55 348 +multibibliography.i386-solaris.r30534.tar.xz 28-Feb-2019 02:55 352 +multibibliography.i386-solaris.tar.xz 28-Feb-2019 02:55 352 +multibibliography.r30939.tar.xz 28-Feb-2019 02:55 8300 +multibibliography.source.r30939.tar.xz 28-Feb-2019 02:55 4724 +multibibliography.source.tar.xz 28-Feb-2019 02:55 4724 +multibibliography.tar.xz 28-Feb-2019 02:55 8300 +multibibliography.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 348 +multibibliography.universal-darwin.tar.xz 25-Feb-2021 18:16 348 +multibibliography.windows.r65891.tar.xz 20-Feb-2023 22:15 2316 +multibibliography.windows.tar.xz 20-Feb-2023 22:15 2316 +multibibliography.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:55 348 +multibibliography.x86_64-cygwin.tar.xz 28-Feb-2019 02:55 348 +multibibliography.x86_64-darwinlegacy.r43871.ta..> 28-Feb-2019 02:55 356 +multibibliography.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:55 356 +multibibliography.x86_64-linux.r30534.tar.xz 28-Feb-2019 02:55 348 +multibibliography.x86_64-linux.tar.xz 28-Feb-2019 02:55 348 +multibibliography.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:55 356 +multibibliography.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:55 356 +multibibliography.x86_64-solaris.r30534.tar.xz 28-Feb-2019 02:55 348 +multibibliography.x86_64-solaris.tar.xz 28-Feb-2019 02:55 348 +multicap.doc.r15878.tar.xz 28-Feb-2019 02:55 91288 +multicap.doc.tar.xz 28-Feb-2019 02:55 91288 +multicap.r15878.tar.xz 28-Feb-2019 02:55 1708 +multicap.source.r15878.tar.xz 28-Feb-2019 02:55 6924 +multicap.source.tar.xz 28-Feb-2019 02:55 6924 +multicap.tar.xz 28-Feb-2019 02:55 1708 +multicolrule.doc.r56366.tar.xz 17-Sep-2020 23:55 580704 +multicolrule.doc.tar.xz 17-Sep-2020 23:55 580704 +multicolrule.r56366.tar.xz 17-Sep-2020 23:55 3964 +multicolrule.source.r56366.tar.xz 17-Sep-2020 23:55 19068 +multicolrule.source.tar.xz 17-Sep-2020 23:55 19068 +multicolrule.tar.xz 17-Sep-2020 23:55 3964 +multidef.doc.r40637.tar.xz 28-Feb-2019 02:55 196512 +multidef.doc.tar.xz 28-Feb-2019 02:55 196512 +multidef.r40637.tar.xz 28-Feb-2019 02:55 2544 +multidef.source.r40637.tar.xz 28-Feb-2019 02:55 4944 +multidef.source.tar.xz 28-Feb-2019 02:55 4944 +multidef.tar.xz 28-Feb-2019 02:55 2544 +multido.doc.r18302.tar.xz 28-Feb-2019 02:55 106732 +multido.doc.tar.xz 28-Feb-2019 02:55 106732 +multido.r18302.tar.xz 28-Feb-2019 02:55 3684 +multido.source.r18302.tar.xz 28-Feb-2019 02:55 976 +multido.source.tar.xz 28-Feb-2019 02:55 976 +multido.tar.xz 28-Feb-2019 02:55 3684 +multienv.doc.r64967.tar.xz 08-Nov-2022 00:55 208908 +multienv.doc.tar.xz 08-Nov-2022 00:55 208908 +multienv.r64967.tar.xz 08-Nov-2022 00:55 1884 +multienv.source.r64967.tar.xz 08-Nov-2022 00:55 4588 +multienv.source.tar.xz 08-Nov-2022 00:55 4588 +multienv.tar.xz 08-Nov-2022 00:55 1884 +multiexpand.doc.r45943.tar.xz 28-Feb-2019 02:55 378352 +multiexpand.doc.tar.xz 28-Feb-2019 02:55 378352 +multiexpand.r45943.tar.xz 28-Feb-2019 02:55 1572 +multiexpand.source.r45943.tar.xz 28-Feb-2019 02:55 5932 +multiexpand.source.tar.xz 28-Feb-2019 02:55 5932 +multiexpand.tar.xz 28-Feb-2019 02:55 1572 +multifootnote.doc.r70745.tar.xz 25-Mar-2024 00:46 62072 +multifootnote.doc.tar.xz 25-Mar-2024 00:46 62072 +multifootnote.r70745.tar.xz 25-Mar-2024 00:46 3908 +multifootnote.tar.xz 25-Mar-2024 00:46 3908 +multilang.doc.r49065.tar.xz 28-Feb-2019 02:55 414176 +multilang.doc.tar.xz 28-Feb-2019 02:55 414176 +multilang.r49065.tar.xz 28-Feb-2019 02:55 3436 +multilang.source.r49065.tar.xz 28-Feb-2019 02:55 17232 +multilang.source.tar.xz 28-Feb-2019 02:55 17232 +multilang.tar.xz 28-Feb-2019 02:55 3436 +multinotes.doc.r75610.tar.xz 25-Jun-2025 23:50 308432 +multinotes.doc.tar.xz 25-Jun-2025 23:50 308432 +multinotes.r75610.tar.xz 25-Jun-2025 23:50 6968 +multinotes.source.r75610.tar.xz 25-Jun-2025 23:50 10728 +multinotes.source.tar.xz 25-Jun-2025 23:50 10728 +multinotes.tar.xz 25-Jun-2025 23:50 6968 +multiobjective.doc.r75878.tar.xz 23-Jul-2025 23:50 95288 +multiobjective.doc.tar.xz 23-Jul-2025 23:50 95288 +multiobjective.r75878.tar.xz 23-Jul-2025 23:50 1416 +multiobjective.source.r75878.tar.xz 23-Jul-2025 23:50 2968 +multiobjective.source.tar.xz 23-Jul-2025 23:50 2968 +multiobjective.tar.xz 23-Jul-2025 23:50 1416 +multiple-choice.doc.r63722.tar.xz 25-Jun-2022 23:53 131468 +multiple-choice.doc.tar.xz 25-Jun-2022 23:53 131468 +multiple-choice.r63722.tar.xz 25-Jun-2022 23:53 1544 +multiple-choice.tar.xz 25-Jun-2022 23:53 1544 +multirow.doc.r72833.tar.xz 13-Nov-2024 00:48 619420 +multirow.doc.tar.xz 13-Nov-2024 00:48 619420 +multirow.r72833.tar.xz 13-Nov-2024 00:49 2824 +multirow.source.r72833.tar.xz 13-Nov-2024 00:48 20368 +multirow.source.tar.xz 13-Nov-2024 00:48 20368 +multirow.tar.xz 13-Nov-2024 00:49 2824 +multitoc.doc.r71520.tar.xz 14-Jun-2024 23:48 276500 +multitoc.doc.tar.xz 14-Jun-2024 23:48 276500 +multitoc.r71520.tar.xz 14-Jun-2024 23:48 1512 +multitoc.source.r71520.tar.xz 14-Jun-2024 23:48 5780 +multitoc.source.tar.xz 14-Jun-2024 23:48 5780 +multitoc.tar.xz 14-Jun-2024 23:48 1512 +munich.doc.r15878.tar.xz 28-Feb-2019 02:55 276956 +munich.doc.tar.xz 28-Feb-2019 02:55 276956 +munich.r15878.tar.xz 28-Feb-2019 02:55 6916 +munich.tar.xz 28-Feb-2019 02:55 6916 +musical.doc.r54758.tar.xz 15-Apr-2020 23:57 80296 +musical.doc.tar.xz 15-Apr-2020 23:57 80296 +musical.r54758.tar.xz 15-Apr-2020 23:57 5632 +musical.tar.xz 15-Apr-2020 23:57 5632 +musicography.doc.r68220.tar.xz 09-Sep-2023 23:50 403096 +musicography.doc.tar.xz 09-Sep-2023 23:50 403096 +musicography.r68220.tar.xz 09-Sep-2023 23:50 5092 +musicography.tar.xz 09-Sep-2023 23:50 5092 +musikui.doc.r47472.tar.xz 28-Feb-2019 02:55 430404 +musikui.doc.tar.xz 28-Feb-2019 02:55 430404 +musikui.r47472.tar.xz 28-Feb-2019 02:55 2392 +musikui.tar.xz 28-Feb-2019 02:55 2392 +musixguit.doc.r21649.tar.xz 28-Feb-2019 02:55 159672 +musixguit.doc.tar.xz 28-Feb-2019 02:55 159672 +musixguit.r21649.tar.xz 28-Feb-2019 02:55 2796 +musixguit.tar.xz 28-Feb-2019 02:55 2796 +musixtex-fonts.doc.r65517.tar.xz 12-Jan-2023 00:53 313048 +musixtex-fonts.doc.tar.xz 12-Jan-2023 00:53 313048 +musixtex-fonts.r65517.tar.xz 12-Jan-2023 00:53 5119944 +musixtex-fonts.tar.xz 12-Jan-2023 00:53 5119944 +musixtex.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:55 364 +musixtex.aarch64-linux.tar.xz 28-Feb-2019 02:55 364 +musixtex.amd64-freebsd.r37026.tar.xz 28-Feb-2019 02:55 364 +musixtex.amd64-freebsd.tar.xz 28-Feb-2019 02:55 364 +musixtex.amd64-netbsd.r37026.tar.xz 28-Feb-2019 02:55 364 +musixtex.amd64-netbsd.tar.xz 28-Feb-2019 02:55 364 +musixtex.armhf-linux.r37026.tar.xz 28-Feb-2019 02:55 364 +musixtex.armhf-linux.tar.xz 28-Feb-2019 02:55 364 +musixtex.doc.r76280.tar.xz 10-Sep-2025 23:49 2199232 +musixtex.doc.tar.xz 10-Sep-2025 23:49 2199232 +musixtex.i386-freebsd.r37026.tar.xz 28-Feb-2019 02:55 364 +musixtex.i386-freebsd.tar.xz 28-Feb-2019 02:55 364 +musixtex.i386-linux.r37026.tar.xz 28-Feb-2019 02:55 360 +musixtex.i386-linux.tar.xz 28-Feb-2019 02:55 360 +musixtex.i386-netbsd.r37026.tar.xz 28-Feb-2019 02:55 360 +musixtex.i386-netbsd.tar.xz 28-Feb-2019 02:55 360 +musixtex.i386-solaris.r22187.tar.xz 28-Feb-2019 02:55 364 +musixtex.i386-solaris.tar.xz 28-Feb-2019 02:55 364 +musixtex.r76280.tar.xz 10-Sep-2025 23:49 106744 +musixtex.source.r76280.tar.xz 10-Sep-2025 23:49 9012 +musixtex.source.tar.xz 10-Sep-2025 23:49 9012 +musixtex.tar.xz 10-Sep-2025 23:49 106744 +musixtex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:16 360 +musixtex.universal-darwin.tar.xz 25-Feb-2021 18:16 360 +musixtex.windows.r65891.tar.xz 20-Feb-2023 22:15 2352 +musixtex.windows.tar.xz 20-Feb-2023 22:15 2352 +musixtex.x86_64-cygwin.r37026.tar.xz 28-Feb-2019 02:55 364 +musixtex.x86_64-cygwin.tar.xz 28-Feb-2019 02:55 364 +musixtex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:55 372 +musixtex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:55 372 +musixtex.x86_64-linux.r37026.tar.xz 28-Feb-2019 02:55 360 +musixtex.x86_64-linux.tar.xz 28-Feb-2019 02:55 360 +musixtex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:55 368 +musixtex.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:55 368 +musixtex.x86_64-solaris.r22187.tar.xz 28-Feb-2019 02:55 364 +musixtex.x86_64-solaris.tar.xz 28-Feb-2019 02:55 364 +musixtnt.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 5624 +musixtnt.aarch64-linux.tar.xz 13-Feb-2025 00:50 5624 +musixtnt.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:54 7928 +musixtnt.amd64-freebsd.tar.xz 09-Feb-2025 00:54 7928 +musixtnt.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 8236 +musixtnt.amd64-netbsd.tar.xz 09-Feb-2025 18:16 8236 +musixtnt.armhf-linux.r73793.tar.xz 09-Feb-2025 00:54 5192 +musixtnt.armhf-linux.tar.xz 09-Feb-2025 00:54 5192 +musixtnt.doc.r69742.tar.xz 08-Feb-2024 00:46 119400 +musixtnt.doc.tar.xz 08-Feb-2024 00:46 119400 +musixtnt.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:54 7928 +musixtnt.i386-freebsd.tar.xz 09-Feb-2025 00:54 7928 +musixtnt.i386-linux.r73792.tar.xz 09-Feb-2025 00:54 6260 +musixtnt.i386-linux.tar.xz 09-Feb-2025 00:54 6260 +musixtnt.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 7404 +musixtnt.i386-netbsd.tar.xz 09-Feb-2025 18:16 7404 +musixtnt.i386-solaris.r73792.tar.xz 09-Feb-2025 00:54 8080 +musixtnt.i386-solaris.tar.xz 09-Feb-2025 00:54 8080 +musixtnt.r69742.tar.xz 08-Feb-2024 00:46 1460 +musixtnt.tar.xz 08-Feb-2024 00:46 1460 +musixtnt.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 20056 +musixtnt.universal-darwin.tar.xz 09-Feb-2025 18:16 20056 +musixtnt.windows.r73796.tar.xz 09-Feb-2025 18:16 6320 +musixtnt.windows.tar.xz 09-Feb-2025 18:16 6320 +musixtnt.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 5972 +musixtnt.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 5972 +musixtnt.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 7244 +musixtnt.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 7244 +musixtnt.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 5852 +musixtnt.x86_64-linux.tar.xz 19-Feb-2025 00:47 5852 +musixtnt.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:54 8212 +musixtnt.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:54 8212 +musixtnt.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:54 9156 +musixtnt.x86_64-solaris.tar.xz 09-Feb-2025 00:54 9156 +musuos.doc.r24857.tar.xz 28-Feb-2019 02:55 509936 +musuos.doc.tar.xz 28-Feb-2019 02:55 509936 +musuos.r24857.tar.xz 28-Feb-2019 02:55 3756 +musuos.source.r24857.tar.xz 28-Feb-2019 02:55 15972 +musuos.source.tar.xz 28-Feb-2019 02:55 15972 +musuos.tar.xz 28-Feb-2019 02:55 3756 +muthesis.doc.r23861.tar.xz 28-Feb-2019 02:55 628 +muthesis.doc.tar.xz 28-Feb-2019 02:55 628 +muthesis.r23861.tar.xz 28-Feb-2019 02:55 8164 +muthesis.tar.xz 28-Feb-2019 02:55 8164 +mversion.doc.r29370.tar.xz 28-Feb-2019 02:55 153968 +mversion.doc.tar.xz 28-Feb-2019 02:55 153968 +mversion.r29370.tar.xz 28-Feb-2019 02:55 1288 +mversion.source.r29370.tar.xz 28-Feb-2019 02:55 3072 +mversion.source.tar.xz 28-Feb-2019 02:55 3072 +mversion.tar.xz 28-Feb-2019 02:55 1288 +mwcls.doc.r75513.tar.xz 15-Jun-2025 23:49 331268 +mwcls.doc.tar.xz 15-Jun-2025 23:49 331268 +mwcls.r75513.tar.xz 15-Jun-2025 23:49 11176 +mwcls.source.r75513.tar.xz 15-Jun-2025 23:49 35244 +mwcls.source.tar.xz 15-Jun-2025 23:49 35244 +mwcls.tar.xz 15-Jun-2025 23:49 11176 +mwe.doc.r64967.tar.xz 08-Nov-2022 00:55 308880 +mwe.doc.tar.xz 08-Nov-2022 00:55 308880 +mwe.r64967.tar.xz 08-Nov-2022 00:55 807092 +mwe.source.r64967.tar.xz 08-Nov-2022 00:55 8444 +mwe.source.tar.xz 08-Nov-2022 00:55 8444 +mwe.tar.xz 08-Nov-2022 00:55 807092 +mweights.doc.r53520.tar.xz 24-Jan-2020 00:57 1336 +mweights.doc.tar.xz 24-Jan-2020 00:57 1336 +mweights.r53520.tar.xz 24-Jan-2020 00:57 1236 +mweights.tar.xz 24-Jan-2020 00:57 1236 +mxedruli.doc.r71991.tar.xz 07-Aug-2024 23:47 308528 +mxedruli.doc.tar.xz 07-Aug-2024 23:47 308528 +mxedruli.r71991.tar.xz 07-Aug-2024 23:47 138636 +mxedruli.tar.xz 07-Aug-2024 23:47 138636 +mycv.doc.r26807.tar.xz 28-Feb-2019 02:55 512164 +mycv.doc.tar.xz 28-Feb-2019 02:55 512164 +mycv.r26807.tar.xz 28-Feb-2019 02:55 8084 +mycv.source.r26807.tar.xz 28-Feb-2019 02:55 8664 +mycv.source.tar.xz 28-Feb-2019 02:55 8664 +mycv.tar.xz 28-Feb-2019 02:55 8084 +mylatex.doc.r56751.tar.xz 24-Oct-2020 23:57 728 +mylatex.doc.tar.xz 24-Oct-2020 23:57 728 +mylatex.r56751.tar.xz 24-Oct-2020 23:57 3976 +mylatex.tar.xz 24-Oct-2020 23:57 3976 +mylatexformat.doc.r21392.tar.xz 28-Feb-2019 02:55 141756 +mylatexformat.doc.tar.xz 28-Feb-2019 02:55 141756 +mylatexformat.r21392.tar.xz 28-Feb-2019 02:55 4628 +mylatexformat.source.r21392.tar.xz 28-Feb-2019 02:55 12888 +mylatexformat.source.tar.xz 28-Feb-2019 02:55 12888 +mylatexformat.tar.xz 28-Feb-2019 02:55 4628 +mynsfc.doc.r60280.tar.xz 19-Aug-2021 23:52 450800 +mynsfc.doc.tar.xz 19-Aug-2021 23:52 450800 +mynsfc.r60280.tar.xz 19-Aug-2021 23:52 2816 +mynsfc.source.r60280.tar.xz 19-Aug-2021 23:52 6004 +mynsfc.source.tar.xz 19-Aug-2021 23:52 6004 +mynsfc.tar.xz 19-Aug-2021 23:52 2816 +na-box.doc.r45130.tar.xz 28-Feb-2019 02:55 978596 +na-box.doc.tar.xz 28-Feb-2019 02:55 978596 +na-box.r45130.tar.xz 28-Feb-2019 02:55 2952 +na-box.tar.xz 28-Feb-2019 02:55 2952 +na-position.doc.r55559.tar.xz 15-Jun-2020 23:56 84476 +na-position.doc.tar.xz 15-Jun-2020 23:56 84476 +na-position.r55559.tar.xz 15-Jun-2020 23:56 1900 +na-position.tar.xz 15-Jun-2020 23:56 1900 +nag.doc.r24741.tar.xz 28-Feb-2019 02:55 438652 +nag.doc.tar.xz 28-Feb-2019 02:55 438652 +nag.r24741.tar.xz 28-Feb-2019 02:55 7800 +nag.source.r24741.tar.xz 28-Feb-2019 02:55 17648 +nag.source.tar.xz 28-Feb-2019 02:55 17648 +nag.tar.xz 28-Feb-2019 02:55 7800 +naive-ebnf.doc.r72843.tar.xz 14-Nov-2024 00:47 506916 +naive-ebnf.doc.tar.xz 14-Nov-2024 00:47 506916 +naive-ebnf.r72843.tar.xz 14-Nov-2024 00:47 2456 +naive-ebnf.source.r72843.tar.xz 14-Nov-2024 00:47 5904 +naive-ebnf.source.tar.xz 14-Nov-2024 00:47 5904 +naive-ebnf.tar.xz 14-Nov-2024 00:47 2456 +nameauth.doc.r76172.tar.xz 29-Aug-2025 23:49 1501656 +nameauth.doc.tar.xz 29-Aug-2025 23:49 1501656 +nameauth.r76172.tar.xz 29-Aug-2025 23:49 7516 +nameauth.source.r76172.tar.xz 29-Aug-2025 23:49 126572 +nameauth.source.tar.xz 29-Aug-2025 23:49 126572 +nameauth.tar.xz 29-Aug-2025 23:49 7516 +namedef.doc.r55881.tar.xz 19-Jul-2020 23:56 631916 +namedef.doc.tar.xz 19-Jul-2020 23:56 631916 +namedef.r55881.tar.xz 19-Jul-2020 23:56 3564 +namedef.source.r55881.tar.xz 19-Jul-2020 23:56 15372 +namedef.source.tar.xz 19-Jul-2020 23:56 15372 +namedef.tar.xz 19-Jul-2020 23:56 3564 +namedtensor.doc.r65346.tar.xz 24-Dec-2022 00:54 1608 +namedtensor.doc.tar.xz 24-Dec-2022 00:54 1608 +namedtensor.r65346.tar.xz 24-Dec-2022 00:54 708 +namedtensor.tar.xz 24-Dec-2022 00:54 708 +namespc.doc.r15878.tar.xz 28-Feb-2019 02:55 82880 +namespc.doc.tar.xz 28-Feb-2019 02:55 82880 +namespc.r15878.tar.xz 28-Feb-2019 02:55 976 +namespc.source.r15878.tar.xz 28-Feb-2019 02:55 3492 +namespc.source.tar.xz 28-Feb-2019 02:55 3492 +namespc.tar.xz 28-Feb-2019 02:55 976 +nanicolle.doc.r56224.tar.xz 01-Sep-2020 00:08 573728 +nanicolle.doc.tar.xz 01-Sep-2020 00:08 573728 +nanicolle.r56224.tar.xz 01-Sep-2020 00:08 5484 +nanicolle.tar.xz 01-Sep-2020 00:08 5484 +nanumtype1.doc.r29558.tar.xz 28-Feb-2019 02:55 78704 +nanumtype1.doc.tar.xz 28-Feb-2019 02:55 78704 +nanumtype1.r29558.tar.xz 28-Feb-2019 02:55 28242732 +nanumtype1.tar.xz 28-Feb-2019 02:55 28242732 +nar.r38100.tar.xz 28-Feb-2019 02:55 6324 +nar.tar.xz 28-Feb-2019 02:55 6324 +natbib.doc.r20668.tar.xz 28-Feb-2019 02:55 423668 +natbib.doc.tar.xz 28-Feb-2019 02:55 423668 +natbib.r20668.tar.xz 28-Feb-2019 02:55 16616 +natbib.source.r20668.tar.xz 28-Feb-2019 02:55 64136 +natbib.source.tar.xz 28-Feb-2019 02:55 64136 +natbib.tar.xz 28-Feb-2019 02:55 16616 +natded.doc.r32693.tar.xz 28-Feb-2019 02:55 339336 +natded.doc.tar.xz 28-Feb-2019 02:55 339336 +natded.r32693.tar.xz 28-Feb-2019 02:55 3044 +natded.tar.xz 28-Feb-2019 02:55 3044 +nath.doc.r15878.tar.xz 28-Feb-2019 02:55 133380 +nath.doc.tar.xz 28-Feb-2019 02:55 133380 +nath.r15878.tar.xz 28-Feb-2019 02:55 22156 +nath.tar.xz 28-Feb-2019 02:55 22156 +nature.doc.r21819.tar.xz 28-Feb-2019 02:55 3148 +nature.doc.tar.xz 28-Feb-2019 02:55 3148 +nature.r21819.tar.xz 28-Feb-2019 02:55 9504 +nature.tar.xz 28-Feb-2019 02:55 9504 +navigator.doc.r41413.tar.xz 28-Feb-2019 02:55 140676 +navigator.doc.tar.xz 28-Feb-2019 02:55 140676 +navigator.r41413.tar.xz 28-Feb-2019 02:55 6840 +navigator.tar.xz 28-Feb-2019 02:55 6840 +navydocs.doc.r41643.tar.xz 28-Feb-2019 02:55 1048836 +navydocs.doc.tar.xz 28-Feb-2019 02:55 1048836 +navydocs.r41643.tar.xz 28-Feb-2019 02:55 4116 +navydocs.source.r41643.tar.xz 28-Feb-2019 02:55 13888 +navydocs.source.tar.xz 28-Feb-2019 02:55 13888 +navydocs.tar.xz 28-Feb-2019 02:55 4116 +ncclatex.doc.r15878.tar.xz 28-Feb-2019 02:55 574580 +ncclatex.doc.tar.xz 28-Feb-2019 02:55 574580 +ncclatex.r15878.tar.xz 28-Feb-2019 02:55 17908 +ncclatex.tar.xz 28-Feb-2019 02:55 17908 +ncctools.doc.r51810.tar.xz 03-Aug-2019 23:53 2446624 +ncctools.doc.tar.xz 03-Aug-2019 23:53 2446624 +ncctools.r51810.tar.xz 03-Aug-2019 23:53 24572 +ncctools.source.r51810.tar.xz 03-Aug-2019 23:53 91436 +ncctools.source.tar.xz 03-Aug-2019 23:53 91436 +ncctools.tar.xz 03-Aug-2019 23:53 24572 +nchairx.doc.r60196.tar.xz 08-Aug-2021 23:52 664116 +nchairx.doc.tar.xz 08-Aug-2021 23:52 664116 +nchairx.r60196.tar.xz 08-Aug-2021 23:52 11384 +nchairx.source.r60196.tar.xz 08-Aug-2021 23:52 27160 +nchairx.source.tar.xz 08-Aug-2021 23:52 27160 +nchairx.tar.xz 08-Aug-2021 23:52 11384 +ncntrsbk.r61719.tar.xz 24-Jan-2022 00:55 290856 +ncntrsbk.tar.xz 24-Jan-2022 00:55 290856 +nddiss.doc.r45107.tar.xz 28-Feb-2019 02:55 384324 +nddiss.doc.tar.xz 28-Feb-2019 02:55 384324 +nddiss.r45107.tar.xz 28-Feb-2019 02:55 11852 +nddiss.source.r45107.tar.xz 28-Feb-2019 02:55 24516 +nddiss.source.tar.xz 28-Feb-2019 02:55 24516 +nddiss.tar.xz 28-Feb-2019 02:55 11852 +ndsu-thesis-2022.doc.r63881.tar.xz 12-Jul-2022 23:53 1567624 +ndsu-thesis-2022.doc.tar.xz 12-Jul-2022 23:53 1567624 +ndsu-thesis-2022.r63881.tar.xz 12-Jul-2022 23:53 8096 +ndsu-thesis-2022.tar.xz 12-Jul-2022 23:53 8096 +ndsu-thesis.doc.r46639.tar.xz 28-Feb-2019 02:55 139828 +ndsu-thesis.doc.tar.xz 28-Feb-2019 02:55 139828 +ndsu-thesis.r46639.tar.xz 28-Feb-2019 02:55 3556 +ndsu-thesis.tar.xz 28-Feb-2019 02:55 3556 +needspace.doc.r74631.tar.xz 16-Mar-2025 01:12 183912 +needspace.doc.tar.xz 16-Mar-2025 01:12 183912 +needspace.r74631.tar.xz 16-Mar-2025 01:12 940 +needspace.source.r74631.tar.xz 16-Mar-2025 01:12 2216 +needspace.source.tar.xz 16-Mar-2025 01:12 2216 +needspace.tar.xz 16-Mar-2025 01:12 940 +neoschool.doc.r76304.tar.xz 13-Sep-2025 23:54 458992 +neoschool.doc.tar.xz 13-Sep-2025 23:54 458992 +neoschool.r76304.tar.xz 13-Sep-2025 23:54 36428 +neoschool.tar.xz 13-Sep-2025 23:54 36428 +nestquot.r27323.tar.xz 28-Feb-2019 02:55 1920 +nestquot.tar.xz 28-Feb-2019 02:55 1920 +neuralnetwork.doc.r31500.tar.xz 28-Feb-2019 02:55 641544 +neuralnetwork.doc.tar.xz 28-Feb-2019 02:55 641544 +neuralnetwork.r31500.tar.xz 28-Feb-2019 02:55 3604 +neuralnetwork.tar.xz 28-Feb-2019 02:55 3604 +nevelok.doc.r39029.tar.xz 28-Feb-2019 02:55 211280 +nevelok.doc.tar.xz 28-Feb-2019 02:55 211280 +nevelok.r39029.tar.xz 28-Feb-2019 02:55 1860 +nevelok.source.r39029.tar.xz 28-Feb-2019 02:55 4000 +nevelok.source.tar.xz 28-Feb-2019 02:55 4000 +nevelok.tar.xz 28-Feb-2019 02:55 1860 +newcastle-bst.doc.r62856.tar.xz 21-Mar-2022 15:46 139940 +newcastle-bst.doc.tar.xz 21-Mar-2022 15:46 139940 +newcastle-bst.r62856.tar.xz 21-Mar-2022 15:46 6560 +newcastle-bst.tar.xz 21-Mar-2022 15:46 6560 +newcommand.doc.r18704.tar.xz 28-Feb-2019 02:55 407624 +newcommand.doc.tar.xz 28-Feb-2019 02:55 407624 +newcommand.r18704.tar.xz 28-Feb-2019 02:55 496 +newcommand.tar.xz 28-Feb-2019 02:55 496 +newcomputermodern.doc.r75675.tar.xz 03-Jul-2025 23:47 18421468 +newcomputermodern.doc.tar.xz 03-Jul-2025 23:47 18421468 +newcomputermodern.r75675.tar.xz 03-Jul-2025 23:47 7420224 +newcomputermodern.tar.xz 03-Jul-2025 23:47 7420224 +newenviron.doc.r29331.tar.xz 28-Feb-2019 02:55 1632 +newenviron.doc.tar.xz 28-Feb-2019 02:55 1632 +newenviron.r29331.tar.xz 28-Feb-2019 02:55 2488 +newenviron.tar.xz 28-Feb-2019 02:55 2488 +newfile.doc.r15878.tar.xz 28-Feb-2019 02:55 147644 +newfile.doc.tar.xz 28-Feb-2019 02:55 147644 +newfile.r15878.tar.xz 28-Feb-2019 02:55 2240 +newfile.source.r15878.tar.xz 28-Feb-2019 02:55 9220 +newfile.source.tar.xz 28-Feb-2019 02:55 9220 +newfile.tar.xz 28-Feb-2019 02:55 2240 +newfloat.doc.r68434.tar.xz 02-Oct-2023 23:46 118716 +newfloat.doc.tar.xz 02-Oct-2023 23:46 118716 +newfloat.r68434.tar.xz 02-Oct-2023 23:46 6816 +newfloat.source.r68434.tar.xz 02-Oct-2023 23:46 18424 +newfloat.source.tar.xz 02-Oct-2023 23:46 18424 +newfloat.tar.xz 02-Oct-2023 23:46 6816 +newlfm.doc.r15878.tar.xz 28-Feb-2019 02:55 342164 +newlfm.doc.tar.xz 28-Feb-2019 02:55 342164 +newlfm.r15878.tar.xz 28-Feb-2019 02:55 20156 +newlfm.source.r15878.tar.xz 28-Feb-2019 02:55 48828 +newlfm.source.tar.xz 28-Feb-2019 02:55 48828 +newlfm.tar.xz 28-Feb-2019 02:55 20156 +newpax.doc.r76395.tar.xz 24-Sep-2025 23:49 94696 +newpax.doc.tar.xz 24-Sep-2025 23:49 94696 +newpax.r76395.tar.xz 24-Sep-2025 23:49 9608 +newpax.source.r76395.tar.xz 24-Sep-2025 23:49 11248 +newpax.source.tar.xz 24-Sep-2025 23:49 11248 +newpax.tar.xz 24-Sep-2025 23:49 9608 +newpx.doc.r76279.tar.xz 10-Sep-2025 23:49 482276 +newpx.doc.tar.xz 10-Sep-2025 23:49 482276 +newpx.r76279.tar.xz 10-Sep-2025 23:49 4745452 +newpx.source.r76279.tar.xz 10-Sep-2025 23:49 392 +newpx.source.tar.xz 10-Sep-2025 23:49 392 +newpx.tar.xz 10-Sep-2025 23:49 4745452 +newsletr.doc.r15878.tar.xz 28-Feb-2019 02:55 137580 +newsletr.doc.tar.xz 28-Feb-2019 02:55 137580 +newsletr.r15878.tar.xz 28-Feb-2019 02:55 16788 +newsletr.tar.xz 28-Feb-2019 02:55 16788 +newspaper.doc.r15878.tar.xz 28-Feb-2019 02:55 196212 +newspaper.doc.tar.xz 28-Feb-2019 02:55 196212 +newspaper.r15878.tar.xz 28-Feb-2019 02:55 1924 +newspaper.source.r15878.tar.xz 28-Feb-2019 02:55 6804 +newspaper.source.tar.xz 28-Feb-2019 02:55 6804 +newspaper.tar.xz 28-Feb-2019 02:55 1924 +newtx.doc.r73393.tar.xz 11-Jan-2025 00:49 975484 +newtx.doc.tar.xz 11-Jan-2025 00:49 975484 +newtx.r73393.tar.xz 11-Jan-2025 00:49 6073228 +newtx.tar.xz 11-Jan-2025 00:49 6073228 +newtxsf.doc.r69597.tar.xz 27-Jan-2024 00:44 263284 +newtxsf.doc.tar.xz 27-Jan-2024 00:44 263284 +newtxsf.r69597.tar.xz 27-Jan-2024 00:44 106028 +newtxsf.tar.xz 27-Jan-2024 00:44 106028 +newtxtt.doc.r70620.tar.xz 14-Mar-2024 00:48 338392 +newtxtt.doc.tar.xz 14-Mar-2024 00:48 338392 +newtxtt.r70620.tar.xz 14-Mar-2024 00:48 166332 +newtxtt.tar.xz 14-Mar-2024 00:48 166332 +newunicodechar.doc.r47382.tar.xz 28-Feb-2019 02:56 389624 +newunicodechar.doc.tar.xz 28-Feb-2019 02:56 389624 +newunicodechar.r47382.tar.xz 28-Feb-2019 02:56 2116 +newunicodechar.source.r47382.tar.xz 28-Feb-2019 02:56 6964 +newunicodechar.source.tar.xz 28-Feb-2019 02:56 6964 +newunicodechar.tar.xz 28-Feb-2019 02:56 2116 +newvbtm.doc.r23996.tar.xz 28-Feb-2019 02:56 69108 +newvbtm.doc.tar.xz 28-Feb-2019 02:56 69108 +newvbtm.r23996.tar.xz 28-Feb-2019 02:56 3396 +newvbtm.source.r23996.tar.xz 28-Feb-2019 02:56 13024 +newvbtm.source.tar.xz 28-Feb-2019 02:56 13024 +newvbtm.tar.xz 28-Feb-2019 02:56 3396 +newverbs.doc.r64833.tar.xz 27-Oct-2022 23:53 228660 +newverbs.doc.tar.xz 27-Oct-2022 23:53 228660 +newverbs.r64833.tar.xz 27-Oct-2022 23:53 2848 +newverbs.source.r64833.tar.xz 27-Oct-2022 23:53 7520 +newverbs.source.tar.xz 27-Oct-2022 23:53 7520 +newverbs.tar.xz 27-Oct-2022 23:53 2848 +nextpage.r15878.tar.xz 28-Feb-2019 02:56 1172 +nextpage.tar.xz 28-Feb-2019 02:56 1172 +nfssext-cfr.doc.r75596.tar.xz 24-Jun-2025 23:49 863040 +nfssext-cfr.doc.tar.xz 24-Jun-2025 23:49 863040 +nfssext-cfr.r75596.tar.xz 24-Jun-2025 23:49 8956 +nfssext-cfr.source.r75596.tar.xz 24-Jun-2025 23:49 30088 +nfssext-cfr.source.tar.xz 24-Jun-2025 23:49 30088 +nfssext-cfr.tar.xz 24-Jun-2025 23:49 8956 +nicefilelist.doc.r74999.tar.xz 22-Apr-2025 23:49 646472 +nicefilelist.doc.tar.xz 22-Apr-2025 23:49 646472 +nicefilelist.r74999.tar.xz 22-Apr-2025 23:49 9020 +nicefilelist.source.r74999.tar.xz 22-Apr-2025 23:49 8252 +nicefilelist.source.tar.xz 22-Apr-2025 23:49 8252 +nicefilelist.tar.xz 22-Apr-2025 23:49 9020 +niceframe-type1.doc.r71849.tar.xz 19-Jul-2024 23:47 516 +niceframe-type1.doc.tar.xz 19-Jul-2024 23:47 516 +niceframe-type1.r71849.tar.xz 19-Jul-2024 23:47 275504 +niceframe-type1.tar.xz 19-Jul-2024 23:47 275504 +niceframe.doc.r36086.tar.xz 28-Feb-2019 02:56 225404 +niceframe.doc.tar.xz 28-Feb-2019 02:56 225404 +niceframe.r36086.tar.xz 28-Feb-2019 02:56 34512 +niceframe.source.r36086.tar.xz 28-Feb-2019 02:56 7064 +niceframe.source.tar.xz 28-Feb-2019 02:56 7064 +niceframe.tar.xz 28-Feb-2019 02:56 34512 +nicematrix.doc.r76149.tar.xz 26-Aug-2025 23:47 2297068 +nicematrix.doc.tar.xz 26-Aug-2025 23:47 2297068 +nicematrix.r76149.tar.xz 26-Aug-2025 23:47 44848 +nicematrix.source.r76149.tar.xz 26-Aug-2025 23:47 96752 +nicematrix.source.tar.xz 26-Aug-2025 23:47 96752 +nicematrix.tar.xz 26-Aug-2025 23:47 44848 +nicetext.doc.r38914.tar.xz 28-Feb-2019 02:56 2473836 +nicetext.doc.tar.xz 28-Feb-2019 02:56 2473836 +nicetext.r38914.tar.xz 28-Feb-2019 02:56 54740 +nicetext.source.r38914.tar.xz 28-Feb-2019 02:56 28908 +nicetext.source.tar.xz 28-Feb-2019 02:56 28908 +nicetext.tar.xz 28-Feb-2019 02:56 54740 +nidanfloat.doc.r48295.tar.xz 28-Feb-2019 02:56 225904 +nidanfloat.doc.tar.xz 28-Feb-2019 02:56 225904 +nidanfloat.r48295.tar.xz 28-Feb-2019 02:56 4172 +nidanfloat.source.r48295.tar.xz 28-Feb-2019 02:56 12840 +nidanfloat.source.tar.xz 28-Feb-2019 02:56 12840 +nidanfloat.tar.xz 28-Feb-2019 02:56 4172 +nih.doc.r15878.tar.xz 28-Feb-2019 02:56 32224 +nih.doc.tar.xz 28-Feb-2019 02:56 32224 +nih.r15878.tar.xz 28-Feb-2019 02:56 2728 +nih.tar.xz 28-Feb-2019 02:56 2728 +nihbiosketch.doc.r54191.tar.xz 08-Mar-2020 23:28 71944 +nihbiosketch.doc.tar.xz 08-Mar-2020 23:28 71944 +nihbiosketch.r54191.tar.xz 08-Mar-2020 23:28 2404 +nihbiosketch.tar.xz 08-Mar-2020 23:28 2404 +nimbus15.doc.r72894.tar.xz 20-Nov-2024 00:46 725092 +nimbus15.doc.tar.xz 20-Nov-2024 00:46 725092 +nimbus15.r72894.tar.xz 20-Nov-2024 00:46 3816244 +nimbus15.tar.xz 20-Nov-2024 00:46 3816244 +nimsticks.doc.r64118.tar.xz 14-Aug-2022 23:52 213532 +nimsticks.doc.tar.xz 14-Aug-2022 23:52 213532 +nimsticks.r64118.tar.xz 14-Aug-2022 23:52 2140 +nimsticks.source.r64118.tar.xz 14-Aug-2022 23:52 5548 +nimsticks.source.tar.xz 14-Aug-2022 23:52 5548 +nimsticks.tar.xz 14-Aug-2022 23:52 2140 +ninecolors.doc.r62006.tar.xz 14-Feb-2022 00:52 48184 +ninecolors.doc.tar.xz 14-Feb-2022 00:52 48184 +ninecolors.r62006.tar.xz 14-Feb-2022 00:52 2648 +ninecolors.tar.xz 14-Feb-2022 00:52 2648 +njurepo.doc.r50492.tar.xz 21-Mar-2019 01:24 1088508 +njurepo.doc.tar.xz 21-Mar-2019 01:24 1088508 +njurepo.r50492.tar.xz 21-Mar-2019 01:24 10944 +njurepo.source.r50492.tar.xz 21-Mar-2019 01:24 21544 +njurepo.source.tar.xz 21-Mar-2019 01:24 21544 +njurepo.tar.xz 21-Mar-2019 01:24 10944 +njustthesis.doc.r62451.tar.xz 06-Mar-2022 00:33 210180 +njustthesis.doc.tar.xz 06-Mar-2022 00:33 210180 +njustthesis.r62451.tar.xz 06-Mar-2022 00:33 4484 +njustthesis.source.r62451.tar.xz 06-Mar-2022 00:33 4832 +njustthesis.source.tar.xz 06-Mar-2022 00:33 4832 +njustthesis.tar.xz 06-Mar-2022 00:33 4484 +njuthesis.doc.r75285.tar.xz 22-May-2025 23:48 1331576 +njuthesis.doc.tar.xz 22-May-2025 23:48 1331576 +njuthesis.r75285.tar.xz 22-May-2025 23:48 23764 +njuthesis.source.r75285.tar.xz 22-May-2025 23:48 71096 +njuthesis.source.tar.xz 22-May-2025 23:48 71096 +njuthesis.tar.xz 22-May-2025 23:48 23764 +njuvisual.doc.r65261.tar.xz 14-Dec-2022 00:55 666060 +njuvisual.doc.tar.xz 14-Dec-2022 00:55 666060 +njuvisual.r65261.tar.xz 14-Dec-2022 00:55 211156 +njuvisual.source.r65261.tar.xz 14-Dec-2022 00:55 219728 +njuvisual.source.tar.xz 14-Dec-2022 00:55 219728 +njuvisual.tar.xz 14-Dec-2022 00:55 211156 +nkarta.doc.r16437.tar.xz 28-Feb-2019 02:56 93256 +nkarta.doc.tar.xz 28-Feb-2019 02:56 93256 +nkarta.r16437.tar.xz 28-Feb-2019 02:56 27392 +nkarta.source.r16437.tar.xz 28-Feb-2019 02:56 27360 +nkarta.source.tar.xz 28-Feb-2019 02:56 27360 +nkarta.tar.xz 28-Feb-2019 02:56 27392 +nl-interval.doc.r58328.tar.xz 14-Mar-2021 00:33 63444 +nl-interval.doc.tar.xz 14-Mar-2021 00:33 63444 +nl-interval.r58328.tar.xz 14-Mar-2021 00:33 1588 +nl-interval.tar.xz 14-Mar-2021 00:33 1588 +nlctdoc.doc.r74438.tar.xz 05-Mar-2025 00:50 728 +nlctdoc.doc.tar.xz 05-Mar-2025 00:50 728 +nlctdoc.r74438.tar.xz 05-Mar-2025 00:50 28116 +nlctdoc.tar.xz 05-Mar-2025 00:50 28116 +nmbib.doc.r71138.tar.xz 30-Apr-2024 23:47 457208 +nmbib.doc.tar.xz 30-Apr-2024 23:47 457208 +nmbib.r71138.tar.xz 30-Apr-2024 23:47 9076 +nmbib.source.r71138.tar.xz 30-Apr-2024 23:47 11956 +nmbib.source.tar.xz 30-Apr-2024 23:47 11956 +nmbib.tar.xz 30-Apr-2024 23:47 9076 +nndraw.doc.r59674.tar.xz 22-Jun-2021 23:53 103384 +nndraw.doc.tar.xz 22-Jun-2021 23:53 103384 +nndraw.r59674.tar.xz 22-Jun-2021 23:53 2216 +nndraw.source.r59674.tar.xz 22-Jun-2021 23:53 3276 +nndraw.source.tar.xz 22-Jun-2021 23:53 3276 +nndraw.tar.xz 22-Jun-2021 23:53 2216 +nnext.doc.r56575.tar.xz 06-Oct-2020 23:55 142212 +nnext.doc.tar.xz 06-Oct-2020 23:55 142212 +nnext.r56575.tar.xz 06-Oct-2020 23:55 1444 +nnext.source.r56575.tar.xz 06-Oct-2020 23:55 6340 +nnext.source.tar.xz 06-Oct-2020 23:55 6340 +nnext.tar.xz 06-Oct-2020 23:55 1444 +noconflict.doc.r30140.tar.xz 28-Feb-2019 02:56 1104 +noconflict.doc.tar.xz 28-Feb-2019 02:56 1104 +noconflict.r30140.tar.xz 28-Feb-2019 02:56 1688 +noconflict.tar.xz 28-Feb-2019 02:56 1688 +nodepthtext.doc.r73069.tar.xz 08-Dec-2024 01:13 359640 +nodepthtext.doc.tar.xz 08-Dec-2024 01:13 359640 +nodepthtext.r73069.tar.xz 08-Dec-2024 01:13 1048 +nodepthtext.tar.xz 08-Dec-2024 01:13 1048 +nodetree.doc.r75447.tar.xz 07-Jun-2025 23:49 286984 +nodetree.doc.tar.xz 07-Jun-2025 23:49 286984 +nodetree.r75447.tar.xz 07-Jun-2025 23:49 17992 +nodetree.source.r75447.tar.xz 07-Jun-2025 23:49 3388 +nodetree.source.tar.xz 07-Jun-2025 23:49 3388 +nodetree.tar.xz 07-Jun-2025 23:49 17992 +noindentafter.doc.r59195.tar.xz 14-May-2021 23:53 399864 +noindentafter.doc.tar.xz 14-May-2021 23:53 399864 +noindentafter.r59195.tar.xz 14-May-2021 23:53 1384 +noindentafter.source.r59195.tar.xz 14-May-2021 23:53 4696 +noindentafter.source.tar.xz 14-May-2021 23:53 4696 +noindentafter.tar.xz 14-May-2021 23:53 1384 +noitcrul.doc.r15878.tar.xz 28-Feb-2019 02:56 78216 +noitcrul.doc.tar.xz 28-Feb-2019 02:56 78216 +noitcrul.r15878.tar.xz 28-Feb-2019 02:56 1280 +noitcrul.source.r15878.tar.xz 28-Feb-2019 02:56 3760 +noitcrul.source.tar.xz 28-Feb-2019 02:56 3760 +noitcrul.tar.xz 28-Feb-2019 02:56 1280 +nolbreaks.doc.r26786.tar.xz 28-Feb-2019 02:56 123832 +nolbreaks.doc.tar.xz 28-Feb-2019 02:56 123832 +nolbreaks.r26786.tar.xz 28-Feb-2019 02:56 2596 +nolbreaks.tar.xz 28-Feb-2019 02:56 2596 +nomencl.doc.r61029.tar.xz 12-Nov-2021 00:53 547080 +nomencl.doc.tar.xz 12-Nov-2021 00:53 547080 +nomencl.r61029.tar.xz 12-Nov-2021 00:53 3772 +nomencl.source.r61029.tar.xz 12-Nov-2021 00:53 18876 +nomencl.source.tar.xz 12-Nov-2021 00:53 18876 +nomencl.tar.xz 12-Nov-2021 00:53 3772 +nomentbl.doc.r16549.tar.xz 28-Feb-2019 02:56 174560 +nomentbl.doc.tar.xz 28-Feb-2019 02:56 174560 +nomentbl.r16549.tar.xz 28-Feb-2019 02:56 2456 +nomentbl.source.r16549.tar.xz 28-Feb-2019 02:56 6048 +nomentbl.source.tar.xz 28-Feb-2019 02:56 6048 +nomentbl.tar.xz 28-Feb-2019 02:56 2456 +non-decimal-units.doc.r69742.tar.xz 08-Feb-2024 00:46 174560 +non-decimal-units.doc.tar.xz 08-Feb-2024 00:46 174560 +non-decimal-units.r69742.tar.xz 08-Feb-2024 00:46 6240 +non-decimal-units.tar.xz 08-Feb-2024 00:46 6240 +nonfloat.doc.r17598.tar.xz 28-Feb-2019 02:56 306696 +nonfloat.doc.tar.xz 28-Feb-2019 02:56 306696 +nonfloat.r17598.tar.xz 28-Feb-2019 02:56 1484 +nonfloat.source.r17598.tar.xz 28-Feb-2019 02:56 5596 +nonfloat.source.tar.xz 28-Feb-2019 02:56 5596 +nonfloat.tar.xz 28-Feb-2019 02:56 1484 +nonumonpart.doc.r22114.tar.xz 28-Feb-2019 02:56 782604 +nonumonpart.doc.tar.xz 28-Feb-2019 02:56 782604 +nonumonpart.r22114.tar.xz 28-Feb-2019 02:56 1176 +nonumonpart.source.r22114.tar.xz 28-Feb-2019 02:56 6716 +nonumonpart.source.tar.xz 28-Feb-2019 02:56 6716 +nonumonpart.tar.xz 28-Feb-2019 02:56 1176 +nopageno.doc.r18128.tar.xz 28-Feb-2019 02:56 170376 +nopageno.doc.tar.xz 28-Feb-2019 02:56 170376 +nopageno.r18128.tar.xz 28-Feb-2019 02:56 1020 +nopageno.tar.xz 28-Feb-2019 02:56 1020 +norasi-c90.r60831.tar.xz 21-Oct-2021 23:52 8716 +norasi-c90.source.r60831.tar.xz 21-Oct-2021 23:52 1440 +norasi-c90.source.tar.xz 21-Oct-2021 23:52 1440 +norasi-c90.tar.xz 21-Oct-2021 23:52 8716 +normalcolor.doc.r40125.tar.xz 28-Feb-2019 02:56 156456 +normalcolor.doc.tar.xz 28-Feb-2019 02:56 156456 +normalcolor.r40125.tar.xz 28-Feb-2019 02:56 1388 +normalcolor.source.r40125.tar.xz 28-Feb-2019 02:56 4048 +normalcolor.source.tar.xz 28-Feb-2019 02:56 4048 +normalcolor.tar.xz 28-Feb-2019 02:56 1388 +nostarch.doc.r67683.tar.xz 20-Jul-2023 23:46 616264 +nostarch.doc.tar.xz 20-Jul-2023 23:46 616264 +nostarch.r67683.tar.xz 20-Jul-2023 23:46 11144 +nostarch.source.r67683.tar.xz 20-Jul-2023 23:46 24468 +nostarch.source.tar.xz 20-Jul-2023 23:46 24468 +nostarch.tar.xz 20-Jul-2023 23:46 11144 +notebeamer.doc.r76093.tar.xz 19-Aug-2025 23:48 613856 +notebeamer.doc.tar.xz 19-Aug-2025 23:48 613856 +notebeamer.r76093.tar.xz 19-Aug-2025 23:48 2524 +notebeamer.source.r76093.tar.xz 19-Aug-2025 23:48 4944 +notebeamer.source.tar.xz 19-Aug-2025 23:48 4944 +notebeamer.tar.xz 19-Aug-2025 23:48 2524 +notes.doc.r42428.tar.xz 28-Feb-2019 02:56 75084 +notes.doc.tar.xz 28-Feb-2019 02:56 75084 +notes.r42428.tar.xz 28-Feb-2019 02:56 6912 +notes.source.r42428.tar.xz 28-Feb-2019 02:56 5768 +notes.source.tar.xz 28-Feb-2019 02:56 5768 +notes.tar.xz 28-Feb-2019 02:56 6912 +notes2bib.doc.r52231.tar.xz 01-Oct-2019 00:22 239940 +notes2bib.doc.tar.xz 01-Oct-2019 00:22 239940 +notes2bib.r52231.tar.xz 01-Oct-2019 00:22 4292 +notes2bib.source.r52231.tar.xz 01-Oct-2019 00:22 14180 +notes2bib.source.tar.xz 01-Oct-2019 00:22 14180 +notes2bib.tar.xz 01-Oct-2019 00:22 4292 +notespages.doc.r41906.tar.xz 28-Feb-2019 02:56 878820 +notespages.doc.tar.xz 28-Feb-2019 02:56 878820 +notespages.r41906.tar.xz 28-Feb-2019 02:56 5828 +notespages.source.r41906.tar.xz 28-Feb-2019 02:56 31444 +notespages.source.tar.xz 28-Feb-2019 02:56 31444 +notespages.tar.xz 28-Feb-2019 02:56 5828 +notestex.doc.r45396.tar.xz 28-Feb-2019 02:56 538532 +notestex.doc.tar.xz 28-Feb-2019 02:56 538532 +notestex.r45396.tar.xz 28-Feb-2019 02:56 6372 +notestex.tar.xz 28-Feb-2019 02:56 6372 +notex-bst.r42361.tar.xz 28-Feb-2019 02:56 4412 +notex-bst.tar.xz 28-Feb-2019 02:56 4412 +noto-emoji.doc.r62950.tar.xz 05-Apr-2022 23:53 612 +noto-emoji.doc.tar.xz 05-Apr-2022 23:53 612 +noto-emoji.r62950.tar.xz 05-Apr-2022 23:53 9251416 +noto-emoji.tar.xz 05-Apr-2022 23:53 9251416 +noto.doc.r64351.tar.xz 12-Sep-2022 23:54 340432 +noto.doc.tar.xz 12-Sep-2022 23:54 340432 +noto.r64351.tar.xz 12-Sep-2022 23:54 26607012 +noto.tar.xz 12-Sep-2022 23:54 26607012 +notoccite.doc.r75878.tar.xz 23-Jul-2025 23:50 227152 +notoccite.doc.tar.xz 23-Jul-2025 23:50 227152 +notoccite.r75878.tar.xz 23-Jul-2025 23:50 1416 +notoccite.tar.xz 23-Jul-2025 23:50 1416 +notomath.doc.r71429.tar.xz 04-Jun-2024 23:46 431804 +notomath.doc.tar.xz 04-Jun-2024 23:46 431804 +notomath.r71429.tar.xz 04-Jun-2024 23:46 213720 +notomath.tar.xz 04-Jun-2024 23:46 213720 +novabeamer-theme.doc.r74815.tar.xz 01-Apr-2025 23:52 369952 +novabeamer-theme.doc.tar.xz 01-Apr-2025 23:52 369952 +novabeamer-theme.r74815.tar.xz 01-Apr-2025 23:52 2176 +novabeamer-theme.tar.xz 01-Apr-2025 23:52 2176 +novel.doc.r71113.tar.xz 28-Apr-2024 23:47 4170696 +novel.doc.tar.xz 28-Apr-2024 23:47 4170696 +novel.r71113.tar.xz 28-Apr-2024 23:47 116492 +novel.tar.xz 28-Apr-2024 23:47 116492 +nowidow.doc.r24066.tar.xz 28-Feb-2019 02:57 175128 +nowidow.doc.tar.xz 28-Feb-2019 02:57 175128 +nowidow.r24066.tar.xz 28-Feb-2019 02:57 1200 +nowidow.source.r24066.tar.xz 28-Feb-2019 02:57 3340 +nowidow.source.tar.xz 28-Feb-2019 02:57 3340 +nowidow.tar.xz 28-Feb-2019 02:57 1200 +nox.doc.r30991.tar.xz 28-Feb-2019 02:57 175740 +nox.doc.tar.xz 28-Feb-2019 02:57 175740 +nox.r30991.tar.xz 28-Feb-2019 02:57 4380 +nox.tar.xz 28-Feb-2019 02:57 4380 +nrc.doc.r29027.tar.xz 28-Feb-2019 02:57 208276 +nrc.doc.tar.xz 28-Feb-2019 02:57 208276 +nrc.r29027.tar.xz 28-Feb-2019 02:57 14420 +nrc.source.r29027.tar.xz 28-Feb-2019 02:57 37568 +nrc.source.tar.xz 28-Feb-2019 02:57 37568 +nrc.tar.xz 28-Feb-2019 02:57 14420 +nstc-proposal.doc.r72795.tar.xz 08-Nov-2024 00:48 692212 +nstc-proposal.doc.tar.xz 08-Nov-2024 00:48 692212 +nstc-proposal.r72795.tar.xz 08-Nov-2024 00:48 3064 +nstc-proposal.source.r72795.tar.xz 08-Nov-2024 00:48 6484 +nstc-proposal.source.tar.xz 08-Nov-2024 00:48 6484 +nstc-proposal.tar.xz 08-Nov-2024 00:48 3064 +ntgclass.doc.r65522.tar.xz 12-Jan-2023 00:53 1665028 +ntgclass.doc.tar.xz 12-Jan-2023 00:53 1665028 +ntgclass.r65522.tar.xz 12-Jan-2023 00:53 16076 +ntgclass.source.r65522.tar.xz 12-Jan-2023 00:53 55736 +ntgclass.source.tar.xz 12-Jan-2023 00:53 55736 +ntgclass.tar.xz 12-Jan-2023 00:53 16076 +nth.r54252.tar.xz 13-Mar-2020 01:06 1380 +nth.tar.xz 13-Mar-2020 01:06 1380 +ntheorem-vn.doc.r15878.tar.xz 28-Feb-2019 02:57 379260 +ntheorem-vn.doc.tar.xz 28-Feb-2019 02:57 379260 +ntheorem-vn.r15878.tar.xz 28-Feb-2019 02:57 404 +ntheorem-vn.tar.xz 28-Feb-2019 02:57 404 +ntheorem.doc.r27609.tar.xz 28-Feb-2019 02:57 420704 +ntheorem.doc.tar.xz 28-Feb-2019 02:57 420704 +ntheorem.r27609.tar.xz 28-Feb-2019 02:57 9652 +ntheorem.source.r27609.tar.xz 28-Feb-2019 02:57 46428 +ntheorem.source.tar.xz 28-Feb-2019 02:57 46428 +ntheorem.tar.xz 28-Feb-2019 02:57 9652 +nuc.doc.r22256.tar.xz 28-Feb-2019 02:57 80404 +nuc.doc.tar.xz 28-Feb-2019 02:57 80404 +nuc.r22256.tar.xz 28-Feb-2019 02:57 1788 +nuc.tar.xz 28-Feb-2019 02:57 1788 +nucleardata.doc.r47307.tar.xz 28-Feb-2019 02:57 407408 +nucleardata.doc.tar.xz 28-Feb-2019 02:57 407408 +nucleardata.r47307.tar.xz 28-Feb-2019 02:57 128004 +nucleardata.source.r47307.tar.xz 28-Feb-2019 02:57 132560 +nucleardata.source.tar.xz 28-Feb-2019 02:57 132560 +nucleardata.tar.xz 28-Feb-2019 02:57 128004 +numberedblock.doc.r33109.tar.xz 28-Feb-2019 02:57 73436 +numberedblock.doc.tar.xz 28-Feb-2019 02:57 73436 +numberedblock.r33109.tar.xz 28-Feb-2019 02:57 2516 +numberedblock.tar.xz 28-Feb-2019 02:57 2516 +numberpt.doc.r51640.tar.xz 14-Jul-2019 23:54 326496 +numberpt.doc.tar.xz 14-Jul-2019 23:54 326496 +numberpt.r51640.tar.xz 14-Jul-2019 23:54 2452 +numberpt.source.r51640.tar.xz 14-Jul-2019 23:54 4400 +numberpt.source.tar.xz 14-Jul-2019 23:54 4400 +numberpt.tar.xz 14-Jul-2019 23:54 2452 +numbersets.doc.r72558.tar.xz 15-Oct-2024 23:48 62288 +numbersets.doc.tar.xz 15-Oct-2024 23:48 62288 +numbersets.r72558.tar.xz 15-Oct-2024 23:48 1484 +numbersets.tar.xz 15-Oct-2024 23:48 1484 +numerica-plus.doc.r68019.tar.xz 22-Aug-2023 23:44 606932 +numerica-plus.doc.tar.xz 22-Aug-2023 23:44 606932 +numerica-plus.r68019.tar.xz 22-Aug-2023 23:44 6052 +numerica-plus.tar.xz 22-Aug-2023 23:44 6052 +numerica-tables.doc.r72911.tar.xz 21-Nov-2024 00:48 717184 +numerica-tables.doc.tar.xz 21-Nov-2024 00:48 717184 +numerica-tables.r72911.tar.xz 21-Nov-2024 00:48 10312 +numerica-tables.tar.xz 21-Nov-2024 00:48 10312 +numerica.doc.r68021.tar.xz 22-Aug-2023 23:44 1124712 +numerica.doc.tar.xz 22-Aug-2023 23:44 1124712 +numerica.r68021.tar.xz 22-Aug-2023 23:44 21096 +numerica.tar.xz 22-Aug-2023 23:44 21096 +numericplots.doc.r31729.tar.xz 28-Feb-2019 02:57 442268 +numericplots.doc.tar.xz 28-Feb-2019 02:57 442268 +numericplots.r31729.tar.xz 28-Feb-2019 02:57 8808 +numericplots.tar.xz 28-Feb-2019 02:57 8808 +numname.doc.r18130.tar.xz 28-Feb-2019 02:57 110948 +numname.doc.tar.xz 28-Feb-2019 02:57 110948 +numname.r18130.tar.xz 28-Feb-2019 02:57 2944 +numname.tar.xz 28-Feb-2019 02:57 2944 +numnameru.doc.r44895.tar.xz 28-Feb-2019 02:57 68608 +numnameru.doc.tar.xz 28-Feb-2019 02:57 68608 +numnameru.r44895.tar.xz 28-Feb-2019 02:57 2512 +numnameru.tar.xz 28-Feb-2019 02:57 2512 +numprint.doc.r27498.tar.xz 28-Feb-2019 02:57 1178624 +numprint.doc.tar.xz 28-Feb-2019 02:57 1178624 +numprint.r27498.tar.xz 28-Feb-2019 02:57 10552 +numprint.source.r27498.tar.xz 28-Feb-2019 02:57 42884 +numprint.source.tar.xz 28-Feb-2019 02:57 42884 +numprint.tar.xz 28-Feb-2019 02:57 10552 +numspell.doc.r75098.tar.xz 04-May-2025 23:47 268468 +numspell.doc.tar.xz 04-May-2025 23:47 268468 +numspell.r75098.tar.xz 04-May-2025 23:47 13772 +numspell.tar.xz 04-May-2025 23:47 13772 +nunito.doc.r57429.tar.xz 16-Jan-2021 00:58 182360 +nunito.doc.tar.xz 16-Jan-2021 00:58 182360 +nunito.r57429.tar.xz 16-Jan-2021 00:58 4627580 +nunito.tar.xz 16-Jan-2021 00:58 4627580 +nwafuthesis.doc.r66895.tar.xz 19-Apr-2023 23:51 2293432 +nwafuthesis.doc.tar.xz 19-Apr-2023 23:51 2293432 +nwafuthesis.r66895.tar.xz 19-Apr-2023 23:51 20060 +nwafuthesis.source.r66895.tar.xz 19-Apr-2023 23:51 63032 +nwafuthesis.source.tar.xz 19-Apr-2023 23:51 63032 +nwafuthesis.tar.xz 19-Apr-2023 23:51 20060 +nwejm.doc.r70597.tar.xz 12-Mar-2024 00:48 1584436 +nwejm.doc.tar.xz 12-Mar-2024 00:48 1584436 +nwejm.r70597.tar.xz 12-Mar-2024 00:48 4089792 +nwejm.source.r70597.tar.xz 12-Mar-2024 00:48 49908 +nwejm.source.tar.xz 12-Mar-2024 00:48 49908 +nwejm.tar.xz 12-Mar-2024 00:48 4089792 +nxuthesis.doc.r74831.tar.xz 02-Apr-2025 23:49 376192 +nxuthesis.doc.tar.xz 02-Apr-2025 23:49 376192 +nxuthesis.r74831.tar.xz 02-Apr-2025 23:49 28720 +nxuthesis.tar.xz 02-Apr-2025 23:49 28720 +oberdiek.doc.r71916.tar.xz 27-Jul-2024 23:55 7399940 +oberdiek.doc.tar.xz 27-Jul-2024 23:55 7399940 +oberdiek.r71916.tar.xz 27-Jul-2024 23:55 35540 +oberdiek.source.r71916.tar.xz 27-Jul-2024 23:55 94772 +oberdiek.source.tar.xz 27-Jul-2024 23:55 94772 +oberdiek.tar.xz 27-Jul-2024 23:55 35540 +objectz.doc.r61719.tar.xz 24-Jan-2022 00:55 261448 +objectz.doc.tar.xz 24-Jan-2022 00:55 261448 +objectz.r61719.tar.xz 24-Jan-2022 00:55 9724 +objectz.source.r61719.tar.xz 24-Jan-2022 00:55 15088 +objectz.source.tar.xz 24-Jan-2022 00:55 15088 +objectz.tar.xz 24-Jan-2022 00:55 9724 +obnov.doc.r33355.tar.xz 28-Feb-2019 02:57 808596 +obnov.doc.tar.xz 28-Feb-2019 02:57 808596 +obnov.r33355.tar.xz 28-Feb-2019 02:57 58304 +obnov.tar.xz 28-Feb-2019 02:57 58304 +ocg-p.doc.r28803.tar.xz 28-Feb-2019 02:57 499988 +ocg-p.doc.tar.xz 28-Feb-2019 02:57 499988 +ocg-p.r28803.tar.xz 28-Feb-2019 02:57 4368 +ocg-p.tar.xz 28-Feb-2019 02:57 4368 +ocgx.doc.r54512.tar.xz 24-Mar-2020 01:02 991556 +ocgx.doc.tar.xz 24-Mar-2020 01:02 991556 +ocgx.r54512.tar.xz 24-Mar-2020 01:03 2096 +ocgx.source.r54512.tar.xz 24-Mar-2020 01:02 7776 +ocgx.source.tar.xz 24-Mar-2020 01:02 7776 +ocgx.tar.xz 24-Mar-2020 01:03 2096 +ocgx2.doc.r72300.tar.xz 16-Sep-2024 23:46 6488 +ocgx2.doc.tar.xz 16-Sep-2024 23:46 6488 +ocgx2.r72300.tar.xz 16-Sep-2024 23:46 16672 +ocgx2.tar.xz 16-Sep-2024 23:46 16672 +ocherokee.doc.r25689.tar.xz 28-Feb-2019 02:57 53440 +ocherokee.doc.tar.xz 28-Feb-2019 02:57 53440 +ocherokee.r25689.tar.xz 28-Feb-2019 02:57 70964 +ocherokee.tar.xz 28-Feb-2019 02:57 70964 +ocr-b-outline.doc.r20969.tar.xz 28-Feb-2019 02:57 1124 +ocr-b-outline.doc.tar.xz 28-Feb-2019 02:57 1124 +ocr-b-outline.r20969.tar.xz 28-Feb-2019 02:57 242544 +ocr-b-outline.source.r20969.tar.xz 28-Feb-2019 02:57 32724 +ocr-b-outline.source.tar.xz 28-Feb-2019 02:57 32724 +ocr-b-outline.tar.xz 28-Feb-2019 02:57 242544 +ocr-b.doc.r20852.tar.xz 28-Feb-2019 02:57 1352 +ocr-b.doc.tar.xz 28-Feb-2019 02:57 1352 +ocr-b.r20852.tar.xz 28-Feb-2019 02:57 10164 +ocr-b.tar.xz 28-Feb-2019 02:57 10164 +ocr-latex.doc.r15878.tar.xz 28-Feb-2019 02:57 172760 +ocr-latex.doc.tar.xz 28-Feb-2019 02:57 172760 +ocr-latex.r15878.tar.xz 28-Feb-2019 02:57 1752 +ocr-latex.tar.xz 28-Feb-2019 02:57 1752 +octave.doc.r66115.tar.xz 24-Feb-2023 01:01 256928 +octave.doc.tar.xz 24-Feb-2023 01:01 256928 +octave.r66115.tar.xz 24-Feb-2023 01:01 2312 +octave.tar.xz 24-Feb-2023 01:01 2312 +octavo.doc.r15878.tar.xz 28-Feb-2019 02:57 85180 +octavo.doc.tar.xz 28-Feb-2019 02:57 85180 +octavo.r15878.tar.xz 28-Feb-2019 02:57 6544 +octavo.source.r15878.tar.xz 28-Feb-2019 02:57 26140 +octavo.source.tar.xz 28-Feb-2019 02:57 26140 +octavo.tar.xz 28-Feb-2019 02:57 6544 +odesandpdes.doc.r69485.tar.xz 19-Jan-2024 00:44 281344 +odesandpdes.doc.tar.xz 19-Jan-2024 00:44 281344 +odesandpdes.r69485.tar.xz 19-Jan-2024 00:44 3288 +odesandpdes.source.r69485.tar.xz 19-Jan-2024 00:44 16544 +odesandpdes.source.tar.xz 19-Jan-2024 00:44 16544 +odesandpdes.tar.xz 19-Jan-2024 00:44 3288 +odsfile.doc.r72514.tar.xz 10-Oct-2024 23:46 114120 +odsfile.doc.tar.xz 10-Oct-2024 23:46 114120 +odsfile.r72514.tar.xz 10-Oct-2024 23:46 5940 +odsfile.tar.xz 10-Oct-2024 23:46 5940 +ofs.doc.r16991.tar.xz 28-Feb-2019 02:57 689980 +ofs.doc.tar.xz 28-Feb-2019 02:57 689980 +ofs.r16991.tar.xz 28-Feb-2019 02:57 52908 +ofs.tar.xz 28-Feb-2019 02:57 52908 +ogham.doc.r24876.tar.xz 28-Feb-2019 02:57 11932 +ogham.doc.tar.xz 28-Feb-2019 02:57 11932 +ogham.r24876.tar.xz 28-Feb-2019 02:57 1888 +ogham.tar.xz 28-Feb-2019 02:57 1888 +oinuit.doc.r28668.tar.xz 28-Feb-2019 02:57 150228 +oinuit.doc.tar.xz 28-Feb-2019 02:57 150228 +oinuit.r28668.tar.xz 28-Feb-2019 02:57 147668 +oinuit.source.r28668.tar.xz 28-Feb-2019 02:57 10304 +oinuit.source.tar.xz 28-Feb-2019 02:57 10304 +oinuit.tar.xz 28-Feb-2019 02:57 147668 +old-arrows.doc.r42872.tar.xz 28-Feb-2019 02:57 861792 +old-arrows.doc.tar.xz 28-Feb-2019 02:57 861792 +old-arrows.r42872.tar.xz 28-Feb-2019 02:57 32044 +old-arrows.tar.xz 28-Feb-2019 02:57 32044 +oldlatin.doc.r17932.tar.xz 28-Feb-2019 02:57 408808 +oldlatin.doc.tar.xz 28-Feb-2019 02:57 408808 +oldlatin.r17932.tar.xz 28-Feb-2019 02:57 33676 +oldlatin.tar.xz 28-Feb-2019 02:57 33676 +oldstandard.doc.r70421.tar.xz 06-Mar-2024 00:47 1532180 +oldstandard.doc.tar.xz 06-Mar-2024 00:47 1532180 +oldstandard.r70421.tar.xz 06-Mar-2024 00:47 2319232 +oldstandard.tar.xz 06-Mar-2024 00:47 2319232 +oldstyle.doc.r15878.tar.xz 28-Feb-2019 02:57 51512 +oldstyle.doc.tar.xz 28-Feb-2019 02:57 51512 +oldstyle.r15878.tar.xz 28-Feb-2019 02:57 1688 +oldstyle.source.r15878.tar.xz 28-Feb-2019 02:57 2636 +oldstyle.source.tar.xz 28-Feb-2019 02:57 2636 +oldstyle.tar.xz 28-Feb-2019 02:57 1688 +olsak-misc.doc.r74906.tar.xz 10-Apr-2025 23:50 43992 +olsak-misc.doc.tar.xz 10-Apr-2025 23:50 43992 +olsak-misc.r74906.tar.xz 10-Apr-2025 23:50 29376 +olsak-misc.tar.xz 10-Apr-2025 23:50 29376 +omega.doc.r33046.tar.xz 28-Feb-2019 02:57 196080 +omega.doc.tar.xz 28-Feb-2019 02:57 196080 +omega.r33046.tar.xz 28-Feb-2019 02:57 992228 +omega.tar.xz 28-Feb-2019 02:57 992228 +omegaware.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 257332 +omegaware.aarch64-linux.tar.xz 13-Feb-2025 00:50 257332 +omegaware.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:54 273080 +omegaware.amd64-freebsd.tar.xz 09-Feb-2025 00:54 273080 +omegaware.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 247468 +omegaware.amd64-netbsd.tar.xz 09-Feb-2025 18:16 247468 +omegaware.armhf-linux.r73793.tar.xz 09-Feb-2025 00:54 239984 +omegaware.armhf-linux.tar.xz 09-Feb-2025 00:54 239984 +omegaware.doc.r73848.tar.xz 11-Feb-2025 00:48 155756 +omegaware.doc.tar.xz 11-Feb-2025 00:48 155756 +omegaware.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:54 272944 +omegaware.i386-freebsd.tar.xz 09-Feb-2025 00:54 272944 +omegaware.i386-linux.r73792.tar.xz 09-Feb-2025 00:54 274512 +omegaware.i386-linux.tar.xz 09-Feb-2025 00:54 274512 +omegaware.i386-netbsd.r74618.tar.xz 15-Mar-2025 00:51 212488 +omegaware.i386-netbsd.tar.xz 15-Mar-2025 00:51 212488 +omegaware.i386-solaris.r73792.tar.xz 09-Feb-2025 00:54 272336 +omegaware.i386-solaris.tar.xz 09-Feb-2025 00:54 272336 +omegaware.r73848.tar.xz 11-Feb-2025 00:48 604 +omegaware.tar.xz 11-Feb-2025 00:48 604 +omegaware.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 543752 +omegaware.universal-darwin.tar.xz 09-Feb-2025 18:16 543752 +omegaware.windows.r73796.tar.xz 09-Feb-2025 18:16 203240 +omegaware.windows.tar.xz 09-Feb-2025 18:16 203240 +omegaware.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:50 188252 +omegaware.x86_64-cygwin.tar.xz 17-Mar-2025 00:50 188252 +omegaware.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 258232 +omegaware.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 258232 +omegaware.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 265564 +omegaware.x86_64-linux.tar.xz 19-Feb-2025 00:47 265564 +omegaware.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:54 278496 +omegaware.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:54 278496 +omegaware.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:54 308784 +omegaware.x86_64-solaris.tar.xz 09-Feb-2025 00:54 308784 +omgtudoc-asoiu.doc.r74183.tar.xz 22-Feb-2025 00:49 170208 +omgtudoc-asoiu.doc.tar.xz 22-Feb-2025 00:49 170208 +omgtudoc-asoiu.r74183.tar.xz 22-Feb-2025 00:49 6352 +omgtudoc-asoiu.source.r74183.tar.xz 22-Feb-2025 00:49 13556 +omgtudoc-asoiu.source.tar.xz 22-Feb-2025 00:49 13556 +omgtudoc-asoiu.tar.xz 22-Feb-2025 00:49 6352 +onedown.doc.r69067.tar.xz 09-Dec-2023 00:46 2262556 +onedown.doc.tar.xz 09-Dec-2023 00:46 2262556 +onedown.r69067.tar.xz 09-Dec-2023 00:46 18700 +onedown.source.r69067.tar.xz 09-Dec-2023 00:46 49664 +onedown.source.tar.xz 09-Dec-2023 00:46 49664 +onedown.tar.xz 09-Dec-2023 00:46 18700 +onepgnote.doc.r75332.tar.xz 27-May-2025 23:50 335972 +onepgnote.doc.tar.xz 27-May-2025 23:50 335972 +onepgnote.r75332.tar.xz 27-May-2025 23:50 2732 +onepgnote.tar.xz 27-May-2025 23:50 2732 +onlyamsmath.doc.r42927.tar.xz 28-Feb-2019 02:58 215088 +onlyamsmath.doc.tar.xz 28-Feb-2019 02:58 215088 +onlyamsmath.r42927.tar.xz 28-Feb-2019 02:58 1412 +onlyamsmath.source.r42927.tar.xz 28-Feb-2019 02:58 3920 +onlyamsmath.source.tar.xz 28-Feb-2019 02:58 3920 +onlyamsmath.tar.xz 28-Feb-2019 02:58 1412 +onrannual.doc.r17474.tar.xz 28-Feb-2019 02:58 155840 +onrannual.doc.tar.xz 28-Feb-2019 02:58 155840 +onrannual.r17474.tar.xz 28-Feb-2019 02:58 3024 +onrannual.tar.xz 28-Feb-2019 02:58 3024 +opbible.doc.r68465.tar.xz 07-Oct-2023 23:45 5446532 +opbible.doc.tar.xz 07-Oct-2023 23:45 5446532 +opbible.r68465.tar.xz 07-Oct-2023 23:45 29000 +opbible.tar.xz 07-Oct-2023 23:45 29000 +opcit.doc.r15878.tar.xz 28-Feb-2019 02:58 255312 +opcit.doc.tar.xz 28-Feb-2019 02:58 255312 +opcit.r15878.tar.xz 28-Feb-2019 02:58 6916 +opcit.source.r15878.tar.xz 28-Feb-2019 02:58 20876 +opcit.source.tar.xz 28-Feb-2019 02:58 20876 +opcit.tar.xz 28-Feb-2019 02:58 6916 +open-everyday-symbols.doc.r75127.tar.xz 05-May-2025 23:47 136840 +open-everyday-symbols.doc.tar.xz 05-May-2025 23:47 136840 +open-everyday-symbols.r75127.tar.xz 05-May-2025 23:47 2004 +open-everyday-symbols.tar.xz 05-May-2025 23:47 2004 +opencolor.doc.r66363.tar.xz 05-Mar-2023 22:38 198700 +opencolor.doc.tar.xz 05-Mar-2023 22:38 198700 +opencolor.r66363.tar.xz 05-Mar-2023 22:38 1536 +opencolor.tar.xz 05-Mar-2023 22:38 1536 +openmoji.doc.r75758.tar.xz 12-Jul-2025 23:59 5229744 +openmoji.doc.tar.xz 12-Jul-2025 23:59 5229744 +openmoji.r75758.tar.xz 12-Jul-2025 23:59 4976964 +openmoji.tar.xz 12-Jul-2025 23:59 4976964 +opensans.doc.r54512.tar.xz 24-Mar-2020 01:03 598552 +opensans.doc.tar.xz 24-Mar-2020 01:03 598552 +opensans.r54512.tar.xz 24-Mar-2020 01:03 2040336 +opensans.tar.xz 24-Mar-2020 01:03 2040336 +oplotsymbl.doc.r44951.tar.xz 28-Feb-2019 02:58 235340 +oplotsymbl.doc.tar.xz 28-Feb-2019 02:58 235340 +oplotsymbl.r44951.tar.xz 28-Feb-2019 02:58 4016 +oplotsymbl.tar.xz 28-Feb-2019 02:58 4016 +opteng.doc.r27331.tar.xz 28-Feb-2019 02:58 37400 +opteng.doc.tar.xz 28-Feb-2019 02:58 37400 +opteng.r27331.tar.xz 28-Feb-2019 02:58 5824 +opteng.tar.xz 28-Feb-2019 02:58 5824 +optex.aarch64-linux.r73828.tar.xz 10-Feb-2025 00:46 320 +optex.aarch64-linux.tar.xz 10-Feb-2025 00:46 320 +optex.amd64-freebsd.r73828.tar.xz 10-Feb-2025 00:46 320 +optex.amd64-freebsd.tar.xz 10-Feb-2025 00:46 320 +optex.amd64-netbsd.r73828.tar.xz 10-Feb-2025 00:46 320 +optex.amd64-netbsd.tar.xz 10-Feb-2025 00:46 320 +optex.armhf-linux.r73828.tar.xz 10-Feb-2025 00:46 316 +optex.armhf-linux.tar.xz 10-Feb-2025 00:46 316 +optex.doc.r75314.tar.xz 26-May-2025 23:48 1945364 +optex.doc.tar.xz 26-May-2025 23:48 1945364 +optex.i386-freebsd.r73828.tar.xz 10-Feb-2025 00:46 320 +optex.i386-freebsd.tar.xz 10-Feb-2025 00:46 320 +optex.i386-linux.r73828.tar.xz 10-Feb-2025 00:46 316 +optex.i386-linux.tar.xz 10-Feb-2025 00:46 316 +optex.i386-netbsd.r73828.tar.xz 10-Feb-2025 00:46 316 +optex.i386-netbsd.tar.xz 10-Feb-2025 00:46 316 +optex.i386-solaris.r73828.tar.xz 10-Feb-2025 00:46 316 +optex.i386-solaris.tar.xz 10-Feb-2025 00:46 316 +optex.r75314.tar.xz 26-May-2025 23:48 876840 +optex.tar.xz 26-May-2025 23:48 876840 +optex.universal-darwin.r73828.tar.xz 10-Feb-2025 00:46 320 +optex.universal-darwin.tar.xz 10-Feb-2025 00:46 320 +optex.windows.r75604.tar.xz 25-Jun-2025 23:50 2564 +optex.windows.tar.xz 25-Jun-2025 23:50 2564 +optex.x86_64-cygwin.r73828.tar.xz 10-Feb-2025 00:46 324 +optex.x86_64-cygwin.tar.xz 10-Feb-2025 00:46 324 +optex.x86_64-darwinlegacy.r73828.tar.xz 10-Feb-2025 00:46 324 +optex.x86_64-darwinlegacy.tar.xz 10-Feb-2025 00:46 324 +optex.x86_64-linux.r73828.tar.xz 10-Feb-2025 00:46 320 +optex.x86_64-linux.tar.xz 10-Feb-2025 00:46 320 +optex.x86_64-linuxmusl.r73828.tar.xz 10-Feb-2025 00:46 320 +optex.x86_64-linuxmusl.tar.xz 10-Feb-2025 00:46 320 +optex.x86_64-solaris.r73828.tar.xz 10-Feb-2025 00:46 320 +optex.x86_64-solaris.tar.xz 10-Feb-2025 00:46 320 +optexcount.aarch64-linux.r59817.tar.xz 03-Jul-2021 23:53 336 +optexcount.aarch64-linux.tar.xz 03-Jul-2021 23:53 336 +optexcount.amd64-freebsd.r59817.tar.xz 03-Jul-2021 23:53 336 +optexcount.amd64-freebsd.tar.xz 03-Jul-2021 23:53 336 +optexcount.amd64-netbsd.r59817.tar.xz 03-Jul-2021 23:53 336 +optexcount.amd64-netbsd.tar.xz 03-Jul-2021 23:53 336 +optexcount.armhf-linux.r59817.tar.xz 03-Jul-2021 23:53 336 +optexcount.armhf-linux.tar.xz 03-Jul-2021 23:53 336 +optexcount.doc.r59817.tar.xz 03-Jul-2021 23:53 33964 +optexcount.doc.tar.xz 03-Jul-2021 23:53 33964 +optexcount.i386-freebsd.r59817.tar.xz 03-Jul-2021 23:53 336 +optexcount.i386-freebsd.tar.xz 03-Jul-2021 23:53 336 +optexcount.i386-linux.r59817.tar.xz 03-Jul-2021 23:53 336 +optexcount.i386-linux.tar.xz 03-Jul-2021 23:53 336 +optexcount.i386-netbsd.r59817.tar.xz 03-Jul-2021 23:53 336 +optexcount.i386-netbsd.tar.xz 03-Jul-2021 23:53 336 +optexcount.i386-solaris.r59817.tar.xz 03-Jul-2021 23:53 336 +optexcount.i386-solaris.tar.xz 03-Jul-2021 23:53 336 +optexcount.r59817.tar.xz 03-Jul-2021 23:53 7312 +optexcount.source.r59817.tar.xz 03-Jul-2021 23:53 5984 +optexcount.source.tar.xz 03-Jul-2021 23:53 5984 +optexcount.tar.xz 03-Jul-2021 23:53 7312 +optexcount.universal-darwin.r59817.tar.xz 03-Jul-2021 23:53 340 +optexcount.universal-darwin.tar.xz 03-Jul-2021 23:53 340 +optexcount.windows.r65891.tar.xz 20-Feb-2023 22:15 2304 +optexcount.windows.tar.xz 20-Feb-2023 22:15 2304 +optexcount.x86_64-cygwin.r59817.tar.xz 03-Jul-2021 23:53 336 +optexcount.x86_64-cygwin.tar.xz 03-Jul-2021 23:53 336 +optexcount.x86_64-darwinlegacy.r59817.tar.xz 03-Jul-2021 23:53 344 +optexcount.x86_64-darwinlegacy.tar.xz 03-Jul-2021 23:53 344 +optexcount.x86_64-linux.r59817.tar.xz 03-Jul-2021 23:53 336 +optexcount.x86_64-linux.tar.xz 03-Jul-2021 23:53 336 +optexcount.x86_64-linuxmusl.r59817.tar.xz 03-Jul-2021 23:53 340 +optexcount.x86_64-linuxmusl.tar.xz 03-Jul-2021 23:53 340 +optexcount.x86_64-solaris.r59817.tar.xz 03-Jul-2021 23:53 336 +optexcount.x86_64-solaris.tar.xz 03-Jul-2021 23:53 336 +optidef.doc.r50941.tar.xz 02-May-2019 23:40 256448 +optidef.doc.tar.xz 02-May-2019 23:40 256448 +optidef.r50941.tar.xz 02-May-2019 23:40 4948 +optidef.tar.xz 02-May-2019 23:40 4948 +optikz.doc.r75922.tar.xz 29-Jul-2025 23:49 439364 +optikz.doc.tar.xz 29-Jul-2025 23:49 439364 +optikz.r75922.tar.xz 29-Jul-2025 23:49 4708 +optikz.tar.xz 29-Jul-2025 23:49 4708 +optional.doc.r18131.tar.xz 28-Feb-2019 02:58 295236 +optional.doc.tar.xz 28-Feb-2019 02:58 295236 +optional.r18131.tar.xz 28-Feb-2019 02:58 3352 +optional.tar.xz 28-Feb-2019 02:58 3352 +options.doc.r39030.tar.xz 28-Feb-2019 02:58 223064 +options.doc.tar.xz 28-Feb-2019 02:58 223064 +options.r39030.tar.xz 28-Feb-2019 02:58 11224 +options.tar.xz 28-Feb-2019 02:58 11224 +orcidlink.doc.r71633.tar.xz 27-Jun-2024 23:46 185992 +orcidlink.doc.tar.xz 27-Jun-2024 23:46 185992 +orcidlink.r71633.tar.xz 27-Jun-2024 23:46 1864 +orcidlink.source.r71633.tar.xz 27-Jun-2024 23:46 4220 +orcidlink.source.tar.xz 27-Jun-2024 23:46 4220 +orcidlink.tar.xz 27-Jun-2024 23:46 1864 +ordinalpt.doc.r15878.tar.xz 28-Feb-2019 02:58 258992 +ordinalpt.doc.tar.xz 28-Feb-2019 02:58 258992 +ordinalpt.r15878.tar.xz 28-Feb-2019 02:58 1900 +ordinalpt.source.r15878.tar.xz 28-Feb-2019 02:58 4580 +ordinalpt.source.tar.xz 28-Feb-2019 02:58 4580 +ordinalpt.tar.xz 28-Feb-2019 02:58 1900 +orientation.doc.r57390.tar.xz 12-Jan-2021 00:57 900 +orientation.doc.tar.xz 12-Jan-2021 00:57 900 +orientation.r57390.tar.xz 12-Jan-2021 00:57 928 +orientation.tar.xz 12-Jan-2021 00:57 928 +orkhun.doc.r15878.tar.xz 28-Feb-2019 02:58 106092 +orkhun.doc.tar.xz 28-Feb-2019 02:58 106092 +orkhun.r15878.tar.xz 28-Feb-2019 02:58 2776 +orkhun.tar.xz 28-Feb-2019 02:58 2776 +oscola.doc.r54328.tar.xz 16-Mar-2020 01:21 633720 +oscola.doc.tar.xz 16-Mar-2020 01:21 633720 +oscola.r54328.tar.xz 16-Mar-2020 01:21 22568 +oscola.tar.xz 16-Mar-2020 01:21 22568 +oststud.doc.r67217.tar.xz 25-May-2023 23:44 368556 +oststud.doc.tar.xz 25-May-2023 23:44 368556 +oststud.r67217.tar.xz 25-May-2023 23:44 6892 +oststud.source.r67217.tar.xz 25-May-2023 23:44 15896 +oststud.source.tar.xz 25-May-2023 23:44 15896 +oststud.tar.xz 25-May-2023 23:44 6892 +oswald.doc.r60784.tar.xz 17-Oct-2021 23:53 103472 +oswald.doc.tar.xz 17-Oct-2021 23:53 103472 +oswald.r60784.tar.xz 17-Oct-2021 23:53 916600 +oswald.tar.xz 17-Oct-2021 23:53 916600 +ot-tableau.doc.r67813.tar.xz 04-Aug-2023 23:44 109460 +ot-tableau.doc.tar.xz 04-Aug-2023 23:44 109460 +ot-tableau.r67813.tar.xz 04-Aug-2023 23:44 2540 +ot-tableau.tar.xz 04-Aug-2023 23:44 2540 +othello.doc.r15878.tar.xz 28-Feb-2019 02:58 12056 +othello.doc.tar.xz 28-Feb-2019 02:58 12056 +othello.r15878.tar.xz 28-Feb-2019 02:58 5456 +othello.tar.xz 28-Feb-2019 02:58 5456 +othelloboard.doc.r23714.tar.xz 28-Feb-2019 02:58 209224 +othelloboard.doc.tar.xz 28-Feb-2019 02:58 209224 +othelloboard.r23714.tar.xz 28-Feb-2019 02:58 6276 +othelloboard.tar.xz 28-Feb-2019 02:58 6276 +otibet.doc.r45777.tar.xz 28-Feb-2019 02:58 21248 +otibet.doc.tar.xz 28-Feb-2019 02:58 21248 +otibet.r45777.tar.xz 28-Feb-2019 02:58 96688 +otibet.source.r45777.tar.xz 28-Feb-2019 02:58 19456 +otibet.source.tar.xz 28-Feb-2019 02:58 19456 +otibet.tar.xz 28-Feb-2019 02:58 96688 +ou-tma.doc.r74896.tar.xz 09-Apr-2025 23:49 578024 +ou-tma.doc.tar.xz 09-Apr-2025 23:49 578024 +ou-tma.r74896.tar.xz 09-Apr-2025 23:49 3576 +ou-tma.source.r74896.tar.xz 09-Apr-2025 23:49 11908 +ou-tma.source.tar.xz 09-Apr-2025 23:49 11908 +ou-tma.tar.xz 09-Apr-2025 23:49 3576 +oubraces.doc.r21833.tar.xz 28-Feb-2019 02:58 60352 +oubraces.doc.tar.xz 28-Feb-2019 02:58 60352 +oubraces.r21833.tar.xz 28-Feb-2019 02:58 1660 +oubraces.tar.xz 28-Feb-2019 02:58 1660 +oup-authoring-template.doc.r76389.tar.xz 23-Sep-2025 23:49 322096 +oup-authoring-template.doc.tar.xz 23-Sep-2025 23:49 322096 +oup-authoring-template.r76389.tar.xz 23-Sep-2025 23:49 17492 +oup-authoring-template.tar.xz 23-Sep-2025 23:49 17492 +outerhbox.r54254.tar.xz 13-Mar-2020 01:06 1596 +outerhbox.tar.xz 13-Mar-2020 01:06 1596 +outilsgeomtikz.doc.r75985.tar.xz 05-Aug-2025 23:45 1021672 +outilsgeomtikz.doc.tar.xz 05-Aug-2025 23:45 1021672 +outilsgeomtikz.r75985.tar.xz 05-Aug-2025 23:45 6948 +outilsgeomtikz.tar.xz 05-Aug-2025 23:45 6948 +outline.doc.r18360.tar.xz 28-Feb-2019 02:58 234580 +outline.doc.tar.xz 28-Feb-2019 02:58 234580 +outline.r18360.tar.xz 28-Feb-2019 02:58 1528 +outline.tar.xz 28-Feb-2019 02:58 1528 +outliner.doc.r21095.tar.xz 28-Feb-2019 02:58 964 +outliner.doc.tar.xz 28-Feb-2019 02:58 964 +outliner.r21095.tar.xz 28-Feb-2019 02:58 3380 +outliner.tar.xz 28-Feb-2019 02:58 3380 +outlines.doc.r25192.tar.xz 28-Feb-2019 02:58 130384 +outlines.doc.tar.xz 28-Feb-2019 02:58 130384 +outlines.r25192.tar.xz 28-Feb-2019 02:58 2044 +outlines.tar.xz 28-Feb-2019 02:58 2044 +outlining.doc.r45601.tar.xz 28-Feb-2019 02:58 138744 +outlining.doc.tar.xz 28-Feb-2019 02:58 138744 +outlining.r45601.tar.xz 28-Feb-2019 02:58 1304 +outlining.source.r45601.tar.xz 28-Feb-2019 02:58 2504 +outlining.source.tar.xz 28-Feb-2019 02:58 2504 +outlining.tar.xz 28-Feb-2019 02:58 1304 +outoruby.doc.r74638.tar.xz 16-Mar-2025 01:12 386580 +outoruby.doc.tar.xz 16-Mar-2025 01:12 386580 +outoruby.r74638.tar.xz 16-Mar-2025 01:12 5400 +outoruby.source.r74638.tar.xz 16-Mar-2025 01:12 22940 +outoruby.source.tar.xz 16-Mar-2025 01:12 22940 +outoruby.tar.xz 16-Mar-2025 01:12 5400 +overarrows.doc.r75067.tar.xz 30-Apr-2025 23:52 581520 +overarrows.doc.tar.xz 30-Apr-2025 23:52 581520 +overarrows.r75067.tar.xz 30-Apr-2025 23:52 6124 +overarrows.source.r75067.tar.xz 30-Apr-2025 23:52 27516 +overarrows.source.tar.xz 30-Apr-2025 23:52 27516 +overarrows.tar.xz 30-Apr-2025 23:52 6124 +overlays.doc.r57866.tar.xz 24-Feb-2021 00:58 108816 +overlays.doc.tar.xz 24-Feb-2021 00:58 108816 +overlays.r57866.tar.xz 24-Feb-2021 00:58 2464 +overlays.tar.xz 24-Feb-2021 00:58 2464 +overlock.doc.r64495.tar.xz 25-Sep-2022 23:52 39916 +overlock.doc.tar.xz 25-Sep-2022 23:52 39916 +overlock.r64495.tar.xz 25-Sep-2022 23:52 590276 +overlock.tar.xz 25-Sep-2022 23:52 590276 +overpic.doc.r69343.tar.xz 08-Jan-2024 00:46 399404 +overpic.doc.tar.xz 08-Jan-2024 00:46 399404 +overpic.r69343.tar.xz 08-Jan-2024 00:46 1816 +overpic.source.r69343.tar.xz 08-Jan-2024 00:46 4992 +overpic.source.tar.xz 08-Jan-2024 00:46 4992 +overpic.tar.xz 08-Jan-2024 00:46 1816 +pacioli.doc.r24947.tar.xz 28-Feb-2019 02:58 26000 +pacioli.doc.tar.xz 28-Feb-2019 02:58 26000 +pacioli.r24947.tar.xz 28-Feb-2019 02:58 14936 +pacioli.source.r24947.tar.xz 28-Feb-2019 02:58 20624 +pacioli.source.tar.xz 28-Feb-2019 02:58 20624 +pacioli.tar.xz 28-Feb-2019 02:58 14936 +packdoc.doc.r73661.tar.xz 01-Feb-2025 00:53 466244 +packdoc.doc.tar.xz 01-Feb-2025 00:53 466244 +packdoc.r73661.tar.xz 01-Feb-2025 00:53 6272 +packdoc.tar.xz 01-Feb-2025 00:53 6272 +padcount.doc.r47621.tar.xz 28-Feb-2019 02:58 147788 +padcount.doc.tar.xz 28-Feb-2019 02:58 147788 +padcount.r47621.tar.xz 28-Feb-2019 02:58 1360 +padcount.source.r47621.tar.xz 28-Feb-2019 02:58 2952 +padcount.source.tar.xz 28-Feb-2019 02:58 2952 +padcount.tar.xz 28-Feb-2019 02:58 1360 +pagecolor.doc.r73636.tar.xz 30-Jan-2025 00:48 462996 +pagecolor.doc.tar.xz 30-Jan-2025 00:48 462996 +pagecolor.r73636.tar.xz 30-Jan-2025 00:48 2972 +pagecolor.source.r73636.tar.xz 30-Jan-2025 00:48 12000 +pagecolor.source.tar.xz 30-Jan-2025 00:48 12000 +pagecolor.tar.xz 30-Jan-2025 00:48 2972 +pagecont.doc.r15878.tar.xz 28-Feb-2019 02:58 73804 +pagecont.doc.tar.xz 28-Feb-2019 02:58 73804 +pagecont.r15878.tar.xz 28-Feb-2019 02:58 1344 +pagecont.source.r15878.tar.xz 28-Feb-2019 02:58 2920 +pagecont.source.tar.xz 28-Feb-2019 02:58 2920 +pagecont.tar.xz 28-Feb-2019 02:58 1344 +pagegrid.doc.r64470.tar.xz 22-Sep-2022 23:54 327708 +pagegrid.doc.tar.xz 22-Sep-2022 23:54 327708 +pagegrid.r64470.tar.xz 22-Sep-2022 23:54 3484 +pagegrid.source.r64470.tar.xz 22-Sep-2022 23:54 7368 +pagegrid.source.tar.xz 22-Sep-2022 23:54 7368 +pagegrid.tar.xz 22-Sep-2022 23:54 3484 +pagelayout.aarch64-linux.r65625.tar.xz 26-Jan-2023 00:53 368 +pagelayout.aarch64-linux.tar.xz 26-Jan-2023 00:53 368 +pagelayout.amd64-freebsd.r65625.tar.xz 26-Jan-2023 00:53 368 +pagelayout.amd64-freebsd.tar.xz 26-Jan-2023 00:53 368 +pagelayout.amd64-netbsd.r65625.tar.xz 26-Jan-2023 00:53 368 +pagelayout.amd64-netbsd.tar.xz 26-Jan-2023 00:53 368 +pagelayout.armhf-linux.r65625.tar.xz 26-Jan-2023 00:53 372 +pagelayout.armhf-linux.tar.xz 26-Jan-2023 00:53 372 +pagelayout.doc.r71937.tar.xz 31-Jul-2024 23:47 4598568 +pagelayout.doc.tar.xz 31-Jul-2024 23:47 4598568 +pagelayout.i386-freebsd.r65625.tar.xz 26-Jan-2023 00:53 368 +pagelayout.i386-freebsd.tar.xz 26-Jan-2023 00:53 368 +pagelayout.i386-linux.r65625.tar.xz 26-Jan-2023 00:53 368 +pagelayout.i386-linux.tar.xz 26-Jan-2023 00:53 368 +pagelayout.i386-netbsd.r65625.tar.xz 26-Jan-2023 00:53 368 +pagelayout.i386-netbsd.tar.xz 26-Jan-2023 00:53 368 +pagelayout.i386-solaris.r65625.tar.xz 26-Jan-2023 00:53 368 +pagelayout.i386-solaris.tar.xz 26-Jan-2023 00:53 368 +pagelayout.r71937.tar.xz 31-Jul-2024 23:47 25868 +pagelayout.tar.xz 31-Jul-2024 23:47 25868 +pagelayout.universal-darwin.r65625.tar.xz 26-Jan-2023 00:53 372 +pagelayout.universal-darwin.tar.xz 26-Jan-2023 00:53 372 +pagelayout.x86_64-cygwin.r65625.tar.xz 26-Jan-2023 00:53 372 +pagelayout.x86_64-cygwin.tar.xz 26-Jan-2023 00:53 372 +pagelayout.x86_64-darwinlegacy.r65625.tar.xz 26-Jan-2023 00:53 380 +pagelayout.x86_64-darwinlegacy.tar.xz 26-Jan-2023 00:53 380 +pagelayout.x86_64-linux.r65625.tar.xz 26-Jan-2023 00:53 368 +pagelayout.x86_64-linux.tar.xz 26-Jan-2023 00:53 368 +pagelayout.x86_64-linuxmusl.r65625.tar.xz 26-Jan-2023 00:53 372 +pagelayout.x86_64-linuxmusl.tar.xz 26-Jan-2023 00:53 372 +pagelayout.x86_64-solaris.r65625.tar.xz 26-Jan-2023 00:53 368 +pagelayout.x86_64-solaris.tar.xz 26-Jan-2023 00:53 368 +pagella-otf.doc.r64705.tar.xz 15-Oct-2022 23:55 295080 +pagella-otf.doc.tar.xz 15-Oct-2022 23:55 295080 +pagella-otf.r64705.tar.xz 15-Oct-2022 23:55 2332 +pagella-otf.tar.xz 15-Oct-2022 23:55 2332 +pagenote.doc.r63708.tar.xz 23-Jun-2022 23:57 138600 +pagenote.doc.tar.xz 23-Jun-2022 23:57 138600 +pagenote.r63708.tar.xz 23-Jun-2022 23:57 1996 +pagenote.source.r63708.tar.xz 23-Jun-2022 23:57 7884 +pagenote.source.tar.xz 23-Jun-2022 23:57 7884 +pagenote.tar.xz 23-Jun-2022 23:57 1996 +pagerange.doc.r16915.tar.xz 28-Feb-2019 02:58 81944 +pagerange.doc.tar.xz 28-Feb-2019 02:58 81944 +pagerange.r16915.tar.xz 28-Feb-2019 02:58 3932 +pagerange.tar.xz 28-Feb-2019 02:58 3932 +pagesel.doc.r75712.tar.xz 07-Jul-2025 23:51 331608 +pagesel.doc.tar.xz 07-Jul-2025 23:51 331608 +pagesel.r75712.tar.xz 07-Jul-2025 23:51 2476 +pagesel.source.r75712.tar.xz 07-Jul-2025 23:51 7128 +pagesel.source.tar.xz 07-Jul-2025 23:51 7128 +pagesel.tar.xz 07-Jul-2025 23:51 2476 +pageslts.doc.r76054.tar.xz 14-Aug-2025 23:50 889544 +pageslts.doc.tar.xz 14-Aug-2025 23:50 889544 +pageslts.r76054.tar.xz 14-Aug-2025 23:50 8728 +pageslts.source.r76054.tar.xz 14-Aug-2025 23:50 40152 +pageslts.source.tar.xz 14-Aug-2025 23:50 40152 +pageslts.tar.xz 14-Aug-2025 23:50 8728 +palatino.r61719.tar.xz 24-Jan-2022 00:55 325796 +palatino.tar.xz 24-Jan-2022 00:55 325796 +palette.doc.r60119.tar.xz 01-Aug-2021 02:10 179788 +palette.doc.tar.xz 01-Aug-2021 02:10 179788 +palette.r60119.tar.xz 01-Aug-2021 02:10 1768 +palette.source.r60119.tar.xz 01-Aug-2021 02:10 3848 +palette.source.tar.xz 01-Aug-2021 02:10 3848 +palette.tar.xz 01-Aug-2021 02:10 1768 +pangram.doc.r66300.tar.xz 03-Mar-2023 00:53 101260 +pangram.doc.tar.xz 03-Mar-2023 00:53 101260 +pangram.r66300.tar.xz 03-Mar-2023 00:53 1912 +pangram.source.r66300.tar.xz 03-Mar-2023 00:53 4700 +pangram.source.tar.xz 03-Mar-2023 00:53 4700 +pangram.tar.xz 03-Mar-2023 00:53 1912 +panneauxroute.doc.r73069.tar.xz 08-Dec-2024 01:13 653152 +panneauxroute.doc.tar.xz 08-Dec-2024 01:13 653152 +panneauxroute.r73069.tar.xz 08-Dec-2024 01:14 472612 +panneauxroute.tar.xz 08-Dec-2024 01:14 472612 +paper.doc.r34521.tar.xz 28-Feb-2019 02:58 128876 +paper.doc.tar.xz 28-Feb-2019 02:58 128876 +paper.r34521.tar.xz 28-Feb-2019 02:58 8144 +paper.source.r34521.tar.xz 28-Feb-2019 02:58 16644 +paper.source.tar.xz 28-Feb-2019 02:58 16644 +paper.tar.xz 28-Feb-2019 02:58 8144 +papercdcase.doc.r15878.tar.xz 28-Feb-2019 02:58 131280 +papercdcase.doc.tar.xz 28-Feb-2019 02:58 131280 +papercdcase.r15878.tar.xz 28-Feb-2019 02:58 3824 +papercdcase.source.r15878.tar.xz 28-Feb-2019 02:58 10444 +papercdcase.source.tar.xz 28-Feb-2019 02:58 10444 +papercdcase.tar.xz 28-Feb-2019 02:58 3824 +papermas.doc.r66835.tar.xz 12-Apr-2023 23:52 413200 +papermas.doc.tar.xz 12-Apr-2023 23:52 413200 +papermas.r66835.tar.xz 12-Apr-2023 23:52 3936 +papermas.source.r66835.tar.xz 12-Apr-2023 23:52 13084 +papermas.source.tar.xz 12-Apr-2023 23:52 13084 +papermas.tar.xz 12-Apr-2023 23:52 3936 +papertex.doc.r75878.tar.xz 23-Jul-2025 23:50 437092 +papertex.doc.tar.xz 23-Jul-2025 23:50 437092 +papertex.r75878.tar.xz 23-Jul-2025 23:50 5624 +papertex.source.r75878.tar.xz 23-Jul-2025 23:50 14808 +papertex.source.tar.xz 23-Jul-2025 23:50 14808 +papertex.tar.xz 23-Jul-2025 23:50 5624 +papiergurvan.doc.r73069.tar.xz 08-Dec-2024 01:14 536116 +papiergurvan.doc.tar.xz 08-Dec-2024 01:14 536116 +papiergurvan.r73069.tar.xz 08-Dec-2024 01:14 3252 +papiergurvan.tar.xz 08-Dec-2024 01:14 3252 +paracol.doc.r75786.tar.xz 15-Jul-2025 23:47 2466584 +paracol.doc.tar.xz 15-Jul-2025 23:47 2466584 +paracol.r75786.tar.xz 15-Jul-2025 23:47 19520 +paracol.source.r75786.tar.xz 15-Jul-2025 23:47 211616 +paracol.source.tar.xz 15-Jul-2025 23:47 211616 +paracol.tar.xz 15-Jul-2025 23:47 19520 +parades.doc.r40042.tar.xz 28-Feb-2019 02:58 213564 +parades.doc.tar.xz 28-Feb-2019 02:58 213564 +parades.r40042.tar.xz 28-Feb-2019 02:58 1044 +parades.tar.xz 28-Feb-2019 02:58 1044 +paralist.doc.r43021.tar.xz 28-Feb-2019 02:58 209088 +paralist.doc.tar.xz 28-Feb-2019 02:58 209088 +paralist.r43021.tar.xz 28-Feb-2019 02:58 3724 +paralist.source.r43021.tar.xz 28-Feb-2019 02:58 14836 +paralist.source.tar.xz 28-Feb-2019 02:58 14836 +paralist.tar.xz 28-Feb-2019 02:58 3724 +parallel.doc.r15878.tar.xz 28-Feb-2019 02:58 117072 +parallel.doc.tar.xz 28-Feb-2019 02:58 117072 +parallel.r15878.tar.xz 28-Feb-2019 02:58 3744 +parallel.source.r15878.tar.xz 28-Feb-2019 02:58 11060 +parallel.source.tar.xz 28-Feb-2019 02:58 11060 +parallel.tar.xz 28-Feb-2019 02:58 3744 +paratype.doc.r68624.tar.xz 23-Oct-2023 23:45 906420 +paratype.doc.tar.xz 23-Oct-2023 23:45 906420 +paratype.r68624.tar.xz 23-Oct-2023 23:45 4164728 +paratype.tar.xz 23-Oct-2023 23:45 4164728 +paresse.doc.r59228.tar.xz 16-May-2021 23:53 1335464 +paresse.doc.tar.xz 16-May-2021 23:53 1335464 +paresse.r59228.tar.xz 16-May-2021 23:53 3640 +paresse.source.r59228.tar.xz 16-May-2021 23:53 14060 +paresse.source.tar.xz 16-May-2021 23:53 14060 +paresse.tar.xz 16-May-2021 23:53 3640 +parnotes.doc.r71505.tar.xz 12-Jun-2024 23:47 63180 +parnotes.doc.tar.xz 12-Jun-2024 23:47 63180 +parnotes.r71505.tar.xz 12-Jun-2024 23:47 3880 +parnotes.tar.xz 12-Jun-2024 23:47 3880 +parrun.doc.r15878.tar.xz 28-Feb-2019 02:58 105064 +parrun.doc.tar.xz 28-Feb-2019 02:58 105064 +parrun.r15878.tar.xz 28-Feb-2019 02:58 2856 +parrun.source.r15878.tar.xz 28-Feb-2019 02:58 6912 +parrun.source.tar.xz 28-Feb-2019 02:58 6912 +parrun.tar.xz 28-Feb-2019 02:58 2856 +parsa.doc.r54840.tar.xz 22-Apr-2020 23:54 129988 +parsa.doc.tar.xz 22-Apr-2020 23:54 129988 +parsa.r54840.tar.xz 22-Apr-2020 23:54 6264 +parsa.tar.xz 22-Apr-2020 23:54 6264 +parselines.doc.r21475.tar.xz 28-Feb-2019 02:58 134028 +parselines.doc.tar.xz 28-Feb-2019 02:58 134028 +parselines.r21475.tar.xz 28-Feb-2019 02:58 1872 +parselines.source.r21475.tar.xz 28-Feb-2019 02:58 9128 +parselines.source.tar.xz 28-Feb-2019 02:58 9128 +parselines.tar.xz 28-Feb-2019 02:58 1872 +parsimatn.doc.r70775.tar.xz 27-Mar-2024 00:47 96048 +parsimatn.doc.tar.xz 27-Mar-2024 00:47 96048 +parsimatn.r70775.tar.xz 27-Mar-2024 00:47 385316 +parsimatn.tar.xz 27-Mar-2024 00:47 385316 +parsinevis.doc.r70776.tar.xz 27-Mar-2024 00:47 105020 +parsinevis.doc.tar.xz 27-Mar-2024 00:47 105020 +parsinevis.r70776.tar.xz 27-Mar-2024 00:47 134264 +parsinevis.tar.xz 27-Mar-2024 00:47 134264 +parskip.doc.r58358.tar.xz 15-Mar-2021 00:32 312668 +parskip.doc.tar.xz 15-Mar-2021 00:32 312668 +parskip.r58358.tar.xz 15-Mar-2021 00:32 2852 +parskip.source.r58358.tar.xz 15-Mar-2021 00:32 6176 +parskip.source.tar.xz 15-Mar-2021 00:32 6176 +parskip.tar.xz 15-Mar-2021 00:32 2852 +pas-cours.doc.r55859.tar.xz 17-Jul-2020 23:56 198984 +pas-cours.doc.tar.xz 17-Jul-2020 23:56 198984 +pas-cours.r55859.tar.xz 17-Jul-2020 23:56 2176 +pas-cours.tar.xz 17-Jul-2020 23:56 2176 +pas-crosswords.doc.r32313.tar.xz 28-Feb-2019 02:58 169180 +pas-crosswords.doc.tar.xz 28-Feb-2019 02:58 169180 +pas-crosswords.r32313.tar.xz 28-Feb-2019 02:58 2096 +pas-crosswords.tar.xz 28-Feb-2019 02:58 2096 +pas-cv.doc.r32263.tar.xz 28-Feb-2019 02:58 325552 +pas-cv.doc.tar.xz 28-Feb-2019 02:58 325552 +pas-cv.r32263.tar.xz 28-Feb-2019 02:58 8900 +pas-cv.tar.xz 28-Feb-2019 02:58 8900 +pas-tableur.doc.r72283.tar.xz 14-Sep-2024 23:59 6896 +pas-tableur.doc.tar.xz 14-Sep-2024 23:59 6896 +pas-tableur.r72283.tar.xz 14-Sep-2024 23:59 3836 +pas-tableur.tar.xz 14-Sep-2024 23:59 3836 +pascaltriangle.doc.r61774.tar.xz 29-Jan-2022 00:53 164512 +pascaltriangle.doc.tar.xz 29-Jan-2022 00:53 164512 +pascaltriangle.r61774.tar.xz 29-Jan-2022 00:53 3696 +pascaltriangle.tar.xz 29-Jan-2022 00:53 3696 +passivetex.r69742.tar.xz 08-Feb-2024 00:46 44640 +passivetex.tar.xz 08-Feb-2024 00:46 44640 +passopt.doc.r72638.tar.xz 23-Oct-2024 23:49 49380 +passopt.doc.tar.xz 23-Oct-2024 23:49 49380 +passopt.r72638.tar.xz 23-Oct-2024 23:49 1220 +passopt.tar.xz 23-Oct-2024 23:49 1220 +patch.r42428.tar.xz 28-Feb-2019 02:58 652 +patch.source.r42428.tar.xz 28-Feb-2019 02:58 8844 +patch.source.tar.xz 28-Feb-2019 02:58 8844 +patch.tar.xz 28-Feb-2019 02:58 652 +patchcmd.doc.r41379.tar.xz 28-Feb-2019 02:58 135956 +patchcmd.doc.tar.xz 28-Feb-2019 02:58 135956 +patchcmd.r41379.tar.xz 28-Feb-2019 02:58 1944 +patchcmd.source.r41379.tar.xz 28-Feb-2019 02:58 3340 +patchcmd.source.tar.xz 28-Feb-2019 02:58 3340 +patchcmd.tar.xz 28-Feb-2019 02:58 1944 +patgen.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 19172 +patgen.aarch64-linux.tar.xz 13-Feb-2025 00:50 19172 +patgen.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:54 19700 +patgen.amd64-freebsd.tar.xz 09-Feb-2025 00:54 19700 +patgen.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 18748 +patgen.amd64-netbsd.tar.xz 09-Feb-2025 18:16 18748 +patgen.armhf-linux.r73793.tar.xz 09-Feb-2025 00:54 17964 +patgen.armhf-linux.tar.xz 09-Feb-2025 00:54 17964 +patgen.doc.r73848.tar.xz 11-Feb-2025 00:48 30264 +patgen.doc.tar.xz 11-Feb-2025 00:48 30264 +patgen.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:54 19684 +patgen.i386-freebsd.tar.xz 09-Feb-2025 00:54 19684 +patgen.i386-linux.r73792.tar.xz 09-Feb-2025 00:54 21272 +patgen.i386-linux.tar.xz 09-Feb-2025 00:54 21272 +patgen.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 16244 +patgen.i386-netbsd.tar.xz 09-Feb-2025 18:16 16244 +patgen.i386-solaris.r73792.tar.xz 09-Feb-2025 00:54 21208 +patgen.i386-solaris.tar.xz 09-Feb-2025 00:54 21208 +patgen.r73848.tar.xz 11-Feb-2025 00:48 780 +patgen.tar.xz 11-Feb-2025 00:48 780 +patgen.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 48856 +patgen.universal-darwin.tar.xz 09-Feb-2025 18:16 48856 +patgen.windows.r73796.tar.xz 09-Feb-2025 18:16 15616 +patgen.windows.tar.xz 09-Feb-2025 18:16 15616 +patgen.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 14900 +patgen.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 14900 +patgen.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 20960 +patgen.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 20960 +patgen.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 18128 +patgen.x86_64-linux.tar.xz 19-Feb-2025 00:47 18128 +patgen.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:54 22240 +patgen.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:54 22240 +patgen.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:54 23676 +patgen.x86_64-solaris.tar.xz 09-Feb-2025 00:54 23676 +patgen2-tutorial.doc.r58841.tar.xz 11-Apr-2021 23:53 79160 +patgen2-tutorial.doc.tar.xz 11-Apr-2021 23:53 79160 +patgen2-tutorial.r58841.tar.xz 11-Apr-2021 23:53 400 +patgen2-tutorial.tar.xz 11-Apr-2021 23:53 400 +path.doc.r22045.tar.xz 28-Feb-2019 02:58 290328 +path.doc.tar.xz 28-Feb-2019 02:58 290328 +path.r22045.tar.xz 28-Feb-2019 02:58 5424 +path.tar.xz 28-Feb-2019 02:58 5424 +pats-resume.doc.r74532.tar.xz 09-Mar-2025 01:12 881716 +pats-resume.doc.tar.xz 09-Mar-2025 01:12 881716 +pats-resume.r74532.tar.xz 09-Mar-2025 01:12 1460 +pats-resume.tar.xz 09-Mar-2025 01:12 1460 +pauldoc.doc.r16005.tar.xz 28-Feb-2019 02:58 135448 +pauldoc.doc.tar.xz 28-Feb-2019 02:58 135448 +pauldoc.r16005.tar.xz 28-Feb-2019 02:58 1988 +pauldoc.source.r16005.tar.xz 28-Feb-2019 02:58 7760 +pauldoc.source.tar.xz 28-Feb-2019 02:58 7760 +pauldoc.tar.xz 28-Feb-2019 02:58 1988 +pawpict.doc.r21629.tar.xz 28-Feb-2019 02:58 820 +pawpict.doc.tar.xz 28-Feb-2019 02:58 820 +pawpict.r21629.tar.xz 28-Feb-2019 02:58 1160 +pawpict.source.r21629.tar.xz 28-Feb-2019 02:58 10104 +pawpict.source.tar.xz 28-Feb-2019 02:58 10104 +pawpict.tar.xz 28-Feb-2019 02:58 1160 +pax.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:58 352 +pax.aarch64-linux.tar.xz 28-Feb-2019 02:58 352 +pax.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:58 352 +pax.amd64-freebsd.tar.xz 28-Feb-2019 02:58 352 +pax.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:58 352 +pax.amd64-netbsd.tar.xz 28-Feb-2019 02:58 352 +pax.armhf-linux.r30015.tar.xz 28-Feb-2019 02:58 352 +pax.armhf-linux.tar.xz 28-Feb-2019 02:58 352 +pax.doc.r63509.tar.xz 07-Jun-2022 23:52 3064 +pax.doc.tar.xz 07-Jun-2022 23:52 3064 +pax.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:58 352 +pax.i386-freebsd.tar.xz 28-Feb-2019 02:58 352 +pax.i386-linux.r10843.tar.xz 28-Feb-2019 02:58 352 +pax.i386-linux.tar.xz 28-Feb-2019 02:58 352 +pax.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:58 352 +pax.i386-netbsd.tar.xz 28-Feb-2019 02:58 352 +pax.i386-solaris.r10843.tar.xz 28-Feb-2019 02:58 348 +pax.i386-solaris.tar.xz 28-Feb-2019 02:58 348 +pax.r63509.tar.xz 07-Jun-2022 23:52 5264960 +pax.source.r63509.tar.xz 07-Jun-2022 23:52 5267156 +pax.source.tar.xz 07-Jun-2022 23:52 5267156 +pax.tar.xz 07-Jun-2022 23:52 5264960 +pax.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 352 +pax.universal-darwin.tar.xz 25-Feb-2021 18:17 352 +pax.windows.r65891.tar.xz 20-Feb-2023 22:15 2308 +pax.windows.tar.xz 20-Feb-2023 22:15 2308 +pax.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:58 352 +pax.x86_64-cygwin.tar.xz 28-Feb-2019 02:58 352 +pax.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:58 360 +pax.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:58 360 +pax.x86_64-linux.r10843.tar.xz 28-Feb-2019 02:58 348 +pax.x86_64-linux.tar.xz 28-Feb-2019 02:58 348 +pax.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:58 356 +pax.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:58 356 +pax.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:58 352 +pax.x86_64-solaris.tar.xz 28-Feb-2019 02:58 352 +pb-diagram.doc.r15878.tar.xz 28-Feb-2019 02:58 123536 +pb-diagram.doc.tar.xz 28-Feb-2019 02:58 123536 +pb-diagram.r15878.tar.xz 28-Feb-2019 02:58 15624 +pb-diagram.tar.xz 28-Feb-2019 02:58 15624 +pbalance.doc.r67201.tar.xz 23-May-2023 23:44 48964 +pbalance.doc.tar.xz 23-May-2023 23:44 48964 +pbalance.r67201.tar.xz 23-May-2023 23:44 7008 +pbalance.source.r67201.tar.xz 23-May-2023 23:44 15960 +pbalance.source.tar.xz 23-May-2023 23:44 15960 +pbalance.tar.xz 23-May-2023 23:44 7008 +pbibtex-base.doc.r66085.tar.xz 24-Feb-2023 01:01 28024 +pbibtex-base.doc.tar.xz 24-Feb-2023 01:01 28024 +pbibtex-base.r66085.tar.xz 24-Feb-2023 01:01 14824 +pbibtex-base.tar.xz 24-Feb-2023 01:01 14824 +pbibtex-manual.doc.r66181.tar.xz 26-Feb-2023 23:50 995788 +pbibtex-manual.doc.tar.xz 26-Feb-2023 23:50 995788 +pbibtex-manual.r66181.tar.xz 26-Feb-2023 23:50 460 +pbibtex-manual.tar.xz 26-Feb-2023 23:50 460 +pbox.doc.r24807.tar.xz 28-Feb-2019 02:58 235996 +pbox.doc.tar.xz 28-Feb-2019 02:58 235996 +pbox.r24807.tar.xz 28-Feb-2019 02:58 1380 +pbox.source.r24807.tar.xz 28-Feb-2019 02:58 5728 +pbox.source.tar.xz 28-Feb-2019 02:58 5728 +pbox.tar.xz 28-Feb-2019 02:58 1380 +pbsheet.doc.r24830.tar.xz 28-Feb-2019 02:58 402592 +pbsheet.doc.tar.xz 28-Feb-2019 02:58 402592 +pbsheet.r24830.tar.xz 28-Feb-2019 02:58 5284 +pbsheet.source.r24830.tar.xz 28-Feb-2019 02:58 7164 +pbsheet.source.tar.xz 28-Feb-2019 02:58 7164 +pbsheet.tar.xz 28-Feb-2019 02:58 5284 +pdf-trans.doc.r32809.tar.xz 28-Feb-2019 02:58 61272 +pdf-trans.doc.tar.xz 28-Feb-2019 02:58 61272 +pdf-trans.r32809.tar.xz 28-Feb-2019 02:58 10768 +pdf-trans.tar.xz 28-Feb-2019 02:58 10768 +pdf14.doc.r17583.tar.xz 28-Feb-2019 02:58 362696 +pdf14.doc.tar.xz 28-Feb-2019 02:58 362696 +pdf14.r17583.tar.xz 28-Feb-2019 02:58 1152 +pdf14.source.r17583.tar.xz 28-Feb-2019 02:58 4164 +pdf14.source.tar.xz 28-Feb-2019 02:58 4164 +pdf14.tar.xz 28-Feb-2019 02:58 1152 +pdfannotations.doc.r68958.tar.xz 25-Nov-2023 00:43 5408 +pdfannotations.doc.tar.xz 25-Nov-2023 00:43 5408 +pdfannotations.r68958.tar.xz 25-Nov-2023 00:43 2424 +pdfannotations.tar.xz 25-Nov-2023 00:43 2424 +pdfarticle.doc.r51127.tar.xz 14-May-2019 23:39 42628 +pdfarticle.doc.tar.xz 14-May-2019 23:39 42628 +pdfarticle.r51127.tar.xz 14-May-2019 23:39 3868 +pdfarticle.tar.xz 14-May-2019 23:39 3868 +pdfbook2.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.aarch64-linux.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.amd64-freebsd.r37537.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.amd64-freebsd.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.amd64-netbsd.r37537.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.amd64-netbsd.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.armhf-linux.r37537.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.armhf-linux.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.doc.r53521.tar.xz 24-Jan-2020 00:57 21548 +pdfbook2.doc.tar.xz 24-Jan-2020 00:57 21548 +pdfbook2.i386-freebsd.r37537.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.i386-freebsd.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.i386-linux.r37537.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.i386-linux.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.i386-netbsd.r37537.tar.xz 28-Feb-2019 02:58 336 +pdfbook2.i386-netbsd.tar.xz 28-Feb-2019 02:58 336 +pdfbook2.i386-solaris.r37537.tar.xz 28-Feb-2019 02:58 336 +pdfbook2.i386-solaris.tar.xz 28-Feb-2019 02:58 336 +pdfbook2.r53521.tar.xz 24-Jan-2020 00:57 3548 +pdfbook2.tar.xz 24-Jan-2020 00:57 3548 +pdfbook2.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +pdfbook2.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +pdfbook2.x86_64-cygwin.r37537.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.x86_64-cygwin.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:58 348 +pdfbook2.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:58 348 +pdfbook2.x86_64-linux.r37537.tar.xz 28-Feb-2019 02:58 336 +pdfbook2.x86_64-linux.tar.xz 28-Feb-2019 02:58 336 +pdfbook2.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:58 344 +pdfbook2.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:58 344 +pdfbook2.x86_64-solaris.r37537.tar.xz 28-Feb-2019 02:58 340 +pdfbook2.x86_64-solaris.tar.xz 28-Feb-2019 02:58 340 +pdfcol.doc.r64469.tar.xz 22-Sep-2022 23:54 317332 +pdfcol.doc.tar.xz 22-Sep-2022 23:54 317332 +pdfcol.r64469.tar.xz 22-Sep-2022 23:54 2780 +pdfcol.source.r64469.tar.xz 22-Sep-2022 23:54 6448 +pdfcol.source.tar.xz 22-Sep-2022 23:54 6448 +pdfcol.tar.xz 22-Sep-2022 23:54 2780 +pdfcolfoot.doc.r75712.tar.xz 07-Jul-2025 23:51 310524 +pdfcolfoot.doc.tar.xz 07-Jul-2025 23:51 310524 +pdfcolfoot.r75712.tar.xz 07-Jul-2025 23:51 1956 +pdfcolfoot.source.r75712.tar.xz 07-Jul-2025 23:51 5492 +pdfcolfoot.source.tar.xz 07-Jul-2025 23:51 5492 +pdfcolfoot.tar.xz 07-Jul-2025 23:51 1956 +pdfcolmk.doc.r52912.tar.xz 25-Nov-2019 00:56 468 +pdfcolmk.doc.tar.xz 25-Nov-2019 00:56 468 +pdfcolmk.r52912.tar.xz 25-Nov-2019 00:56 1212 +pdfcolmk.tar.xz 25-Nov-2019 00:56 1212 +pdfcomment.doc.r75447.tar.xz 07-Jun-2025 23:49 1206148 +pdfcomment.doc.tar.xz 07-Jun-2025 23:49 1206148 +pdfcomment.r75447.tar.xz 07-Jun-2025 23:49 11252 +pdfcomment.tar.xz 07-Jun-2025 23:49 11252 +pdfcprot.doc.r18735.tar.xz 28-Feb-2019 02:58 379136 +pdfcprot.doc.tar.xz 28-Feb-2019 02:58 379136 +pdfcprot.r18735.tar.xz 28-Feb-2019 02:58 6808 +pdfcprot.source.r18735.tar.xz 28-Feb-2019 02:58 21220 +pdfcprot.source.tar.xz 28-Feb-2019 02:58 21220 +pdfcprot.tar.xz 28-Feb-2019 02:58 6808 +pdfcrop.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:58 364 +pdfcrop.aarch64-linux.tar.xz 28-Feb-2019 02:58 364 +pdfcrop.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:58 364 +pdfcrop.amd64-freebsd.tar.xz 28-Feb-2019 02:58 364 +pdfcrop.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.amd64-netbsd.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.armhf-linux.r30015.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.armhf-linux.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.doc.r66862.tar.xz 16-Apr-2023 23:53 4568 +pdfcrop.doc.tar.xz 16-Apr-2023 23:53 4568 +pdfcrop.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:58 364 +pdfcrop.i386-freebsd.tar.xz 28-Feb-2019 02:58 364 +pdfcrop.i386-linux.r14387.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.i386-linux.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.i386-netbsd.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.i386-solaris.r14387.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.i386-solaris.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.r66862.tar.xz 16-Apr-2023 23:53 11064 +pdfcrop.tar.xz 16-Apr-2023 23:53 11064 +pdfcrop.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 360 +pdfcrop.universal-darwin.tar.xz 25-Feb-2021 18:17 360 +pdfcrop.windows.r65891.tar.xz 20-Feb-2023 22:15 2352 +pdfcrop.windows.tar.xz 20-Feb-2023 22:15 2352 +pdfcrop.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:58 364 +pdfcrop.x86_64-cygwin.tar.xz 28-Feb-2019 02:58 364 +pdfcrop.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:58 372 +pdfcrop.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:58 372 +pdfcrop.x86_64-linux.r14387.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.x86_64-linux.tar.xz 28-Feb-2019 02:58 360 +pdfcrop.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:58 368 +pdfcrop.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:58 368 +pdfcrop.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:58 364 +pdfcrop.x86_64-solaris.tar.xz 28-Feb-2019 02:58 364 +pdfescape.doc.r53082.tar.xz 11-Dec-2019 00:54 342644 +pdfescape.doc.tar.xz 11-Dec-2019 00:54 342644 +pdfescape.r53082.tar.xz 11-Dec-2019 00:54 4264 +pdfescape.source.r53082.tar.xz 11-Dec-2019 00:54 8308 +pdfescape.source.tar.xz 11-Dec-2019 00:54 8308 +pdfescape.tar.xz 11-Dec-2019 00:54 4264 +pdfextra.doc.r65184.tar.xz 04-Dec-2022 22:10 629000 +pdfextra.doc.tar.xz 04-Dec-2022 22:10 629000 +pdfextra.r65184.tar.xz 04-Dec-2022 22:10 25512 +pdfextra.tar.xz 04-Dec-2022 22:10 25512 +pdfjam.aarch64-linux.r52858.tar.xz 19-Nov-2019 00:55 340 +pdfjam.aarch64-linux.tar.xz 19-Nov-2019 00:55 340 +pdfjam.amd64-freebsd.r52858.tar.xz 19-Nov-2019 00:55 340 +pdfjam.amd64-freebsd.tar.xz 19-Nov-2019 00:55 340 +pdfjam.amd64-netbsd.r52858.tar.xz 19-Nov-2019 00:55 340 +pdfjam.amd64-netbsd.tar.xz 19-Nov-2019 00:55 340 +pdfjam.armhf-linux.r52858.tar.xz 19-Nov-2019 00:55 340 +pdfjam.armhf-linux.tar.xz 19-Nov-2019 00:55 340 +pdfjam.doc.r75152.tar.xz 07-May-2025 23:46 49720 +pdfjam.doc.tar.xz 07-May-2025 23:46 49720 +pdfjam.i386-freebsd.r52858.tar.xz 19-Nov-2019 00:55 340 +pdfjam.i386-freebsd.tar.xz 19-Nov-2019 00:55 340 +pdfjam.i386-linux.r52858.tar.xz 19-Nov-2019 00:55 336 +pdfjam.i386-linux.tar.xz 19-Nov-2019 00:55 336 +pdfjam.i386-netbsd.r52858.tar.xz 19-Nov-2019 00:55 340 +pdfjam.i386-netbsd.tar.xz 19-Nov-2019 00:55 340 +pdfjam.i386-solaris.r52858.tar.xz 19-Nov-2019 00:55 340 +pdfjam.i386-solaris.tar.xz 19-Nov-2019 00:55 340 +pdfjam.r75152.tar.xz 07-May-2025 23:46 13808 +pdfjam.tar.xz 07-May-2025 23:46 13808 +pdfjam.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 336 +pdfjam.universal-darwin.tar.xz 25-Feb-2021 18:17 336 +pdfjam.x86_64-cygwin.r52858.tar.xz 19-Nov-2019 00:55 340 +pdfjam.x86_64-cygwin.tar.xz 19-Nov-2019 00:55 340 +pdfjam.x86_64-darwinlegacy.r52858.tar.xz 19-Nov-2019 00:55 348 +pdfjam.x86_64-darwinlegacy.tar.xz 19-Nov-2019 00:55 348 +pdfjam.x86_64-linux.r52858.tar.xz 19-Nov-2019 00:55 336 +pdfjam.x86_64-linux.tar.xz 19-Nov-2019 00:55 336 +pdfjam.x86_64-linuxmusl.r52858.tar.xz 19-Nov-2019 00:55 344 +pdfjam.x86_64-linuxmusl.tar.xz 19-Nov-2019 00:55 344 +pdfjam.x86_64-solaris.r52858.tar.xz 19-Nov-2019 00:55 340 +pdfjam.x86_64-solaris.tar.xz 19-Nov-2019 00:55 340 +pdflatexpicscale.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.aarch64-linux.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.amd64-freebsd.r41779.tar.xz 28-Feb-2019 02:58 352 +pdflatexpicscale.amd64-freebsd.tar.xz 28-Feb-2019 02:58 352 +pdflatexpicscale.amd64-netbsd.r41779.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.amd64-netbsd.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.armhf-linux.r41779.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.armhf-linux.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.doc.r72650.tar.xz 25-Oct-2024 23:50 93316 +pdflatexpicscale.doc.tar.xz 25-Oct-2024 23:50 93316 +pdflatexpicscale.i386-freebsd.r41779.tar.xz 28-Feb-2019 02:58 352 +pdflatexpicscale.i386-freebsd.tar.xz 28-Feb-2019 02:58 352 +pdflatexpicscale.i386-linux.r41779.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.i386-linux.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.i386-netbsd.r41779.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.i386-netbsd.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.i386-solaris.r41779.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.i386-solaris.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.r72650.tar.xz 25-Oct-2024 23:50 4992 +pdflatexpicscale.tar.xz 25-Oct-2024 23:50 4992 +pdflatexpicscale.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 348 +pdflatexpicscale.universal-darwin.tar.xz 25-Feb-2021 18:17 348 +pdflatexpicscale.windows.r65891.tar.xz 20-Feb-2023 22:15 2316 +pdflatexpicscale.windows.tar.xz 20-Feb-2023 22:15 2316 +pdflatexpicscale.x86_64-cygwin.r41779.tar.xz 28-Feb-2019 02:58 352 +pdflatexpicscale.x86_64-cygwin.tar.xz 28-Feb-2019 02:58 352 +pdflatexpicscale.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:58 356 +pdflatexpicscale.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:58 356 +pdflatexpicscale.x86_64-linux.r41779.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.x86_64-linux.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:58 352 +pdflatexpicscale.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:58 352 +pdflatexpicscale.x86_64-solaris.r41779.tar.xz 28-Feb-2019 02:58 348 +pdflatexpicscale.x86_64-solaris.tar.xz 28-Feb-2019 02:58 348 +pdflscape.doc.r75593.tar.xz 23-Jun-2025 23:48 313336 +pdflscape.doc.tar.xz 23-Jun-2025 23:48 313336 +pdflscape.r75593.tar.xz 23-Jun-2025 23:48 2584 +pdflscape.source.r75593.tar.xz 23-Jun-2025 23:48 6508 +pdflscape.source.tar.xz 23-Jun-2025 23:48 6508 +pdflscape.tar.xz 23-Jun-2025 23:48 2584 +pdfmanagement-testphase.doc.r75993.tar.xz 06-Aug-2025 23:48 4233940 +pdfmanagement-testphase.doc.tar.xz 06-Aug-2025 23:48 4233940 +pdfmanagement-testphase.r75993.tar.xz 06-Aug-2025 23:48 58348 +pdfmanagement-testphase.source.r75993.tar.xz 06-Aug-2025 23:48 142344 +pdfmanagement-testphase.source.tar.xz 06-Aug-2025 23:48 142344 +pdfmanagement-testphase.tar.xz 06-Aug-2025 23:48 58348 +pdfmarginpar.doc.r23492.tar.xz 28-Feb-2019 02:58 381552 +pdfmarginpar.doc.tar.xz 28-Feb-2019 02:58 381552 +pdfmarginpar.r23492.tar.xz 28-Feb-2019 02:58 2424 +pdfmarginpar.tar.xz 28-Feb-2019 02:58 2424 +pdfmsym.doc.r66618.tar.xz 22-Mar-2023 00:52 234168 +pdfmsym.doc.tar.xz 22-Mar-2023 00:52 234168 +pdfmsym.r66618.tar.xz 22-Mar-2023 00:52 7120 +pdfmsym.tar.xz 22-Mar-2023 00:52 7120 +pdfoverlay.doc.r64210.tar.xz 27-Aug-2022 23:53 565420 +pdfoverlay.doc.tar.xz 27-Aug-2022 23:53 565420 +pdfoverlay.r64210.tar.xz 27-Aug-2022 23:54 3008 +pdfoverlay.source.r64210.tar.xz 27-Aug-2022 23:53 5900 +pdfoverlay.source.tar.xz 27-Aug-2022 23:53 5900 +pdfoverlay.tar.xz 27-Aug-2022 23:54 3008 +pdfpagediff.doc.r37946.tar.xz 28-Feb-2019 02:58 740816 +pdfpagediff.doc.tar.xz 28-Feb-2019 02:58 740816 +pdfpagediff.r37946.tar.xz 28-Feb-2019 02:58 2924 +pdfpagediff.tar.xz 28-Feb-2019 02:58 2924 +pdfpages.doc.r75881.tar.xz 24-Jul-2025 23:48 182076 +pdfpages.doc.tar.xz 24-Jul-2025 23:48 182076 +pdfpages.r75881.tar.xz 24-Jul-2025 23:48 14564 +pdfpages.source.r75881.tar.xz 24-Jul-2025 23:48 37432 +pdfpages.source.tar.xz 24-Jul-2025 23:48 37432 +pdfpages.tar.xz 24-Jul-2025 23:48 14564 +pdfpc-movie.doc.r67201.tar.xz 23-May-2023 23:44 74980 +pdfpc-movie.doc.tar.xz 23-May-2023 23:44 74980 +pdfpc-movie.r67201.tar.xz 23-May-2023 23:44 2180 +pdfpc-movie.source.r67201.tar.xz 23-May-2023 23:44 5716 +pdfpc-movie.source.tar.xz 23-May-2023 23:44 5716 +pdfpc-movie.tar.xz 23-May-2023 23:44 2180 +pdfpc.doc.r68610.tar.xz 21-Oct-2023 23:50 207712 +pdfpc.doc.tar.xz 21-Oct-2023 23:50 207712 +pdfpc.r68610.tar.xz 21-Oct-2023 23:50 2384 +pdfpc.tar.xz 21-Oct-2023 23:50 2384 +pdfprivacy.doc.r45985.tar.xz 28-Feb-2019 02:58 263692 +pdfprivacy.doc.tar.xz 28-Feb-2019 02:58 263692 +pdfprivacy.r45985.tar.xz 28-Feb-2019 02:58 1488 +pdfprivacy.source.r45985.tar.xz 28-Feb-2019 02:58 5432 +pdfprivacy.source.tar.xz 28-Feb-2019 02:58 5432 +pdfprivacy.tar.xz 28-Feb-2019 02:58 1488 +pdfrender.doc.r69058.tar.xz 08-Dec-2023 00:45 394992 +pdfrender.doc.tar.xz 08-Dec-2023 00:45 394992 +pdfrender.r69058.tar.xz 08-Dec-2023 00:45 4972 +pdfrender.source.r69058.tar.xz 08-Dec-2023 00:45 10048 +pdfrender.source.tar.xz 08-Dec-2023 00:45 10048 +pdfrender.tar.xz 08-Dec-2023 00:45 4972 +pdfreview.doc.r50100.tar.xz 28-Feb-2019 02:58 576684 +pdfreview.doc.tar.xz 28-Feb-2019 02:58 576684 +pdfreview.r50100.tar.xz 28-Feb-2019 02:58 6448 +pdfreview.tar.xz 28-Feb-2019 02:58 6448 +pdfscreen.doc.r42428.tar.xz 28-Feb-2019 02:58 407468 +pdfscreen.doc.tar.xz 28-Feb-2019 02:58 407468 +pdfscreen.r42428.tar.xz 28-Feb-2019 02:58 84168 +pdfscreen.tar.xz 28-Feb-2019 02:58 84168 +pdfslide.doc.r15878.tar.xz 28-Feb-2019 02:58 165824 +pdfslide.doc.tar.xz 28-Feb-2019 02:58 165824 +pdfslide.r15878.tar.xz 28-Feb-2019 02:58 43896 +pdfslide.tar.xz 28-Feb-2019 02:58 43896 +pdfsync.doc.r20373.tar.xz 28-Feb-2019 02:58 259692 +pdfsync.doc.tar.xz 28-Feb-2019 02:58 259692 +pdfsync.r20373.tar.xz 28-Feb-2019 02:58 3872 +pdfsync.tar.xz 28-Feb-2019 02:58 3872 +pdftex-quiet.aarch64-linux.r49140.tar.xz 28-Feb-2019 02:58 344 +pdftex-quiet.aarch64-linux.tar.xz 28-Feb-2019 02:58 344 +pdftex-quiet.amd64-freebsd.r49140.tar.xz 28-Feb-2019 02:58 344 +pdftex-quiet.amd64-freebsd.tar.xz 28-Feb-2019 02:58 344 +pdftex-quiet.amd64-netbsd.r49140.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.amd64-netbsd.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.armhf-linux.r49140.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.armhf-linux.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.doc.r49169.tar.xz 28-Feb-2019 02:58 12516 +pdftex-quiet.doc.tar.xz 28-Feb-2019 02:58 12516 +pdftex-quiet.i386-freebsd.r49140.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.i386-freebsd.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.i386-linux.r49140.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.i386-linux.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.i386-netbsd.r49140.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.i386-netbsd.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.i386-solaris.r49140.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.i386-solaris.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.r49169.tar.xz 28-Feb-2019 02:58 2516 +pdftex-quiet.tar.xz 28-Feb-2019 02:58 2516 +pdftex-quiet.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +pdftex-quiet.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +pdftex-quiet.x86_64-cygwin.r49140.tar.xz 28-Feb-2019 02:58 344 +pdftex-quiet.x86_64-cygwin.tar.xz 28-Feb-2019 02:58 344 +pdftex-quiet.x86_64-darwinlegacy.r49140.tar.xz 28-Feb-2019 02:58 352 +pdftex-quiet.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:58 352 +pdftex-quiet.x86_64-linux.r49140.tar.xz 28-Feb-2019 02:58 344 +pdftex-quiet.x86_64-linux.tar.xz 28-Feb-2019 02:58 344 +pdftex-quiet.x86_64-linuxmusl.r49140.tar.xz 28-Feb-2019 02:58 348 +pdftex-quiet.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:58 348 +pdftex-quiet.x86_64-solaris.r49140.tar.xz 28-Feb-2019 02:58 340 +pdftex-quiet.x86_64-solaris.tar.xz 28-Feb-2019 02:58 340 +pdftex.aarch64-linux.r75253.tar.xz 18-May-2025 23:48 788440 +pdftex.aarch64-linux.tar.xz 18-May-2025 23:48 788440 +pdftex.amd64-freebsd.r75248.tar.xz 18-May-2025 00:11 772892 +pdftex.amd64-freebsd.tar.xz 18-May-2025 00:11 772892 +pdftex.amd64-netbsd.r75251.tar.xz 18-May-2025 23:48 758772 +pdftex.amd64-netbsd.tar.xz 18-May-2025 23:48 758772 +pdftex.armhf-linux.r75253.tar.xz 18-May-2025 23:48 725840 +pdftex.armhf-linux.tar.xz 18-May-2025 23:48 725840 +pdftex.doc.r74113.tar.xz 18-Feb-2025 22:37 3216692 +pdftex.doc.tar.xz 18-Feb-2025 22:37 3216692 +pdftex.i386-freebsd.r75248.tar.xz 18-May-2025 00:11 772844 +pdftex.i386-freebsd.tar.xz 18-May-2025 00:11 772844 +pdftex.i386-linux.r75248.tar.xz 18-May-2025 00:11 869992 +pdftex.i386-linux.tar.xz 18-May-2025 00:11 869992 +pdftex.i386-netbsd.r75251.tar.xz 18-May-2025 23:48 673572 +pdftex.i386-netbsd.tar.xz 18-May-2025 23:48 673572 +pdftex.i386-solaris.r75248.tar.xz 18-May-2025 00:11 851412 +pdftex.i386-solaris.tar.xz 18-May-2025 00:11 851412 +pdftex.r74113.tar.xz 18-Feb-2025 22:37 39588 +pdftex.tar.xz 18-Feb-2025 22:37 39588 +pdftex.universal-darwin.r75293.tar.xz 22-May-2025 23:48 1695652 +pdftex.universal-darwin.tar.xz 22-May-2025 23:48 1695652 +pdftex.windows.r75247.tar.xz 18-May-2025 00:11 835068 +pdftex.windows.tar.xz 18-May-2025 00:11 835068 +pdftex.x86_64-cygwin.r75262.tar.xz 19-May-2025 23:48 844440 +pdftex.x86_64-cygwin.tar.xz 19-May-2025 23:48 844440 +pdftex.x86_64-darwinlegacy.r74380.tar.xz 02-Mar-2025 01:10 786564 +pdftex.x86_64-darwinlegacy.tar.xz 02-Mar-2025 01:10 786564 +pdftex.x86_64-linux.r75248.tar.xz 18-May-2025 00:11 853960 +pdftex.x86_64-linux.tar.xz 18-May-2025 00:11 853960 +pdftex.x86_64-linuxmusl.r75248.tar.xz 18-May-2025 00:11 869280 +pdftex.x86_64-linuxmusl.tar.xz 18-May-2025 00:11 869280 +pdftex.x86_64-solaris.r75248.tar.xz 18-May-2025 00:11 935052 +pdftex.x86_64-solaris.tar.xz 18-May-2025 00:11 935052 +pdftexcmds.doc.r55777.tar.xz 07-Jul-2020 23:57 379844 +pdftexcmds.doc.tar.xz 07-Jul-2020 23:57 379844 +pdftexcmds.r55777.tar.xz 07-Jul-2020 23:57 6316 +pdftexcmds.source.r55777.tar.xz 07-Jul-2020 23:57 14052 +pdftexcmds.source.tar.xz 07-Jul-2020 23:57 14052 +pdftexcmds.tar.xz 07-Jul-2020 23:57 6316 +pdftoolbox.doc.r74832.tar.xz 02-Apr-2025 23:49 252540 +pdftoolbox.doc.tar.xz 02-Apr-2025 23:49 252540 +pdftoolbox.r74832.tar.xz 02-Apr-2025 23:49 19808 +pdftoolbox.tar.xz 02-Apr-2025 23:49 19808 +pdftosrc.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 333992 +pdftosrc.aarch64-linux.tar.xz 13-Feb-2025 00:50 333992 +pdftosrc.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 360368 +pdftosrc.amd64-freebsd.tar.xz 09-Feb-2025 00:55 360368 +pdftosrc.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 348792 +pdftosrc.amd64-netbsd.tar.xz 09-Feb-2025 18:16 348792 +pdftosrc.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 308120 +pdftosrc.armhf-linux.tar.xz 09-Feb-2025 00:55 308120 +pdftosrc.doc.r73848.tar.xz 11-Feb-2025 00:48 25200 +pdftosrc.doc.tar.xz 11-Feb-2025 00:48 25200 +pdftosrc.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 360348 +pdftosrc.i386-freebsd.tar.xz 09-Feb-2025 00:55 360348 +pdftosrc.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 362580 +pdftosrc.i386-linux.tar.xz 09-Feb-2025 00:55 362580 +pdftosrc.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 334640 +pdftosrc.i386-netbsd.tar.xz 09-Feb-2025 18:16 334640 +pdftosrc.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 413000 +pdftosrc.i386-solaris.tar.xz 09-Feb-2025 00:55 413000 +pdftosrc.r73848.tar.xz 11-Feb-2025 00:48 380 +pdftosrc.tar.xz 11-Feb-2025 00:48 380 +pdftosrc.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 664796 +pdftosrc.universal-darwin.tar.xz 09-Feb-2025 18:16 664796 +pdftosrc.windows.r73796.tar.xz 09-Feb-2025 18:16 364216 +pdftosrc.windows.tar.xz 09-Feb-2025 18:16 364216 +pdftosrc.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 383956 +pdftosrc.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 383956 +pdftosrc.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 347760 +pdftosrc.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 347760 +pdftosrc.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 352944 +pdftosrc.x86_64-linux.tar.xz 19-Feb-2025 00:47 352944 +pdftosrc.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 379656 +pdftosrc.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 379656 +pdftosrc.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 424456 +pdftosrc.x86_64-solaris.tar.xz 09-Feb-2025 00:55 424456 +pdftricks.doc.r15878.tar.xz 28-Feb-2019 02:59 217036 +pdftricks.doc.tar.xz 28-Feb-2019 02:59 217036 +pdftricks.r15878.tar.xz 28-Feb-2019 02:59 4360 +pdftricks.tar.xz 28-Feb-2019 02:59 4360 +pdftricks2.doc.r31016.tar.xz 28-Feb-2019 02:59 62624 +pdftricks2.doc.tar.xz 28-Feb-2019 02:59 62624 +pdftricks2.r31016.tar.xz 28-Feb-2019 02:59 5468 +pdftricks2.tar.xz 28-Feb-2019 02:59 5468 +pdfwin.doc.r68667.tar.xz 26-Oct-2023 23:45 291932 +pdfwin.doc.tar.xz 26-Oct-2023 23:45 291932 +pdfwin.r68667.tar.xz 26-Oct-2023 23:45 15876 +pdfwin.tar.xz 26-Oct-2023 23:45 15876 +pdfx.doc.r71681.tar.xz 01-Jul-2024 23:48 5162724 +pdfx.doc.tar.xz 01-Jul-2024 23:48 5162724 +pdfx.r71681.tar.xz 01-Jul-2024 23:48 90796 +pdfx.source.r71681.tar.xz 01-Jul-2024 23:48 67200 +pdfx.source.tar.xz 01-Jul-2024 23:48 67200 +pdfx.tar.xz 01-Jul-2024 23:48 90796 +pdfxup.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:59 340 +pdfxup.aarch64-linux.tar.xz 28-Feb-2019 02:59 340 +pdfxup.amd64-freebsd.r40690.tar.xz 28-Feb-2019 02:59 340 +pdfxup.amd64-freebsd.tar.xz 28-Feb-2019 02:59 340 +pdfxup.amd64-netbsd.r40690.tar.xz 28-Feb-2019 02:59 340 +pdfxup.amd64-netbsd.tar.xz 28-Feb-2019 02:59 340 +pdfxup.armhf-linux.r40690.tar.xz 28-Feb-2019 02:59 340 +pdfxup.armhf-linux.tar.xz 28-Feb-2019 02:59 340 +pdfxup.doc.r71513.tar.xz 13-Jun-2024 23:46 126024 +pdfxup.doc.tar.xz 13-Jun-2024 23:46 126024 +pdfxup.i386-freebsd.r40690.tar.xz 28-Feb-2019 02:59 340 +pdfxup.i386-freebsd.tar.xz 28-Feb-2019 02:59 340 +pdfxup.i386-linux.r40690.tar.xz 28-Feb-2019 02:59 336 +pdfxup.i386-linux.tar.xz 28-Feb-2019 02:59 336 +pdfxup.i386-netbsd.r40690.tar.xz 28-Feb-2019 02:59 340 +pdfxup.i386-netbsd.tar.xz 28-Feb-2019 02:59 340 +pdfxup.i386-solaris.r40690.tar.xz 28-Feb-2019 02:59 336 +pdfxup.i386-solaris.tar.xz 28-Feb-2019 02:59 336 +pdfxup.r71513.tar.xz 13-Jun-2024 23:46 15280 +pdfxup.tar.xz 13-Jun-2024 23:46 15280 +pdfxup.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +pdfxup.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +pdfxup.x86_64-cygwin.r40690.tar.xz 28-Feb-2019 02:59 340 +pdfxup.x86_64-cygwin.tar.xz 28-Feb-2019 02:59 340 +pdfxup.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:59 348 +pdfxup.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:59 348 +pdfxup.x86_64-linux.r40690.tar.xz 28-Feb-2019 02:59 336 +pdfxup.x86_64-linux.tar.xz 28-Feb-2019 02:59 336 +pdfxup.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:59 344 +pdfxup.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:59 344 +pdfxup.x86_64-solaris.r40690.tar.xz 28-Feb-2019 02:59 340 +pdfxup.x86_64-solaris.tar.xz 28-Feb-2019 02:59 340 +pecha.doc.r15878.tar.xz 28-Feb-2019 02:59 73072 +pecha.doc.tar.xz 28-Feb-2019 02:59 73072 +pecha.r15878.tar.xz 28-Feb-2019 02:59 10064 +pecha.tar.xz 28-Feb-2019 02:59 10064 +pedigree-perl.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.aarch64-linux.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.amd64-freebsd.r25962.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.amd64-freebsd.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.amd64-netbsd.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.armhf-linux.r30015.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.armhf-linux.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.doc.r64227.tar.xz 29-Aug-2022 23:53 265132 +pedigree-perl.doc.tar.xz 29-Aug-2022 23:53 265132 +pedigree-perl.i386-freebsd.r25962.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.i386-freebsd.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.i386-linux.r25962.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.i386-linux.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:59 344 +pedigree-perl.i386-netbsd.tar.xz 28-Feb-2019 02:59 344 +pedigree-perl.i386-solaris.r25962.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.i386-solaris.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.r64227.tar.xz 29-Aug-2022 23:53 17244 +pedigree-perl.source.r64227.tar.xz 29-Aug-2022 23:53 832 +pedigree-perl.source.tar.xz 29-Aug-2022 23:53 832 +pedigree-perl.tar.xz 29-Aug-2022 23:53 17244 +pedigree-perl.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 344 +pedigree-perl.universal-darwin.tar.xz 25-Feb-2021 18:17 344 +pedigree-perl.windows.r65891.tar.xz 20-Feb-2023 22:15 2316 +pedigree-perl.windows.tar.xz 20-Feb-2023 22:15 2316 +pedigree-perl.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.x86_64-cygwin.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:59 356 +pedigree-perl.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:59 356 +pedigree-perl.x86_64-linux.r25962.tar.xz 28-Feb-2019 02:59 344 +pedigree-perl.x86_64-linux.tar.xz 28-Feb-2019 02:59 344 +pedigree-perl.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:59 352 +pedigree-perl.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:59 352 +pedigree-perl.x86_64-solaris.r25962.tar.xz 28-Feb-2019 02:59 348 +pedigree-perl.x86_64-solaris.tar.xz 28-Feb-2019 02:59 348 +pegmatch.doc.r74035.tar.xz 17-Feb-2025 00:46 133996 +pegmatch.doc.tar.xz 17-Feb-2025 00:46 133996 +pegmatch.r74035.tar.xz 17-Feb-2025 00:46 4892 +pegmatch.tar.xz 17-Feb-2025 00:46 4892 +penlight.doc.r73362.tar.xz 08-Jan-2025 15:17 24276 +penlight.doc.tar.xz 08-Jan-2025 15:17 24276 +penlight.r73362.tar.xz 08-Jan-2025 15:17 102148 +penlight.tar.xz 08-Jan-2025 15:17 102148 +penlightplus.doc.r74000.tar.xz 16-Feb-2025 01:01 86740 +penlightplus.doc.tar.xz 16-Feb-2025 01:01 86740 +penlightplus.r74000.tar.xz 16-Feb-2025 01:01 12020 +penlightplus.tar.xz 16-Feb-2025 01:01 12020 +perception.doc.r48861.tar.xz 28-Feb-2019 02:59 416 +perception.doc.tar.xz 28-Feb-2019 02:59 416 +perception.r48861.tar.xz 28-Feb-2019 02:59 6304 +perception.tar.xz 28-Feb-2019 02:59 6304 +perfectcut.doc.r67201.tar.xz 23-May-2023 23:44 167564 +perfectcut.doc.tar.xz 23-May-2023 23:44 167564 +perfectcut.r67201.tar.xz 23-May-2023 23:44 4664 +perfectcut.tar.xz 23-May-2023 23:44 4664 +perltex.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:59 340 +perltex.aarch64-linux.tar.xz 28-Feb-2019 02:59 340 +perltex.amd64-freebsd.r16484.tar.xz 28-Feb-2019 02:59 340 +perltex.amd64-freebsd.tar.xz 28-Feb-2019 02:59 340 +perltex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:59 340 +perltex.amd64-netbsd.tar.xz 28-Feb-2019 02:59 340 +perltex.armhf-linux.r30015.tar.xz 28-Feb-2019 02:59 340 +perltex.armhf-linux.tar.xz 28-Feb-2019 02:59 340 +perltex.doc.r73044.tar.xz 06-Dec-2024 00:49 458464 +perltex.doc.tar.xz 06-Dec-2024 00:49 458464 +perltex.i386-freebsd.r16484.tar.xz 28-Feb-2019 02:59 340 +perltex.i386-freebsd.tar.xz 28-Feb-2019 02:59 340 +perltex.i386-linux.r16181.tar.xz 28-Feb-2019 02:59 340 +perltex.i386-linux.tar.xz 28-Feb-2019 02:59 340 +perltex.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:59 340 +perltex.i386-netbsd.tar.xz 28-Feb-2019 02:59 340 +perltex.i386-solaris.r16181.tar.xz 28-Feb-2019 02:59 340 +perltex.i386-solaris.tar.xz 28-Feb-2019 02:59 340 +perltex.r73044.tar.xz 06-Dec-2024 00:49 7336 +perltex.source.r73044.tar.xz 06-Dec-2024 00:49 31928 +perltex.source.tar.xz 06-Dec-2024 00:49 31928 +perltex.tar.xz 06-Dec-2024 00:49 7336 +perltex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +perltex.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +perltex.windows.r65891.tar.xz 20-Feb-2023 22:15 2300 +perltex.windows.tar.xz 20-Feb-2023 22:15 2300 +perltex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:59 340 +perltex.x86_64-cygwin.tar.xz 28-Feb-2019 02:59 340 +perltex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:59 348 +perltex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:59 348 +perltex.x86_64-linux.r16181.tar.xz 28-Feb-2019 02:59 340 +perltex.x86_64-linux.tar.xz 28-Feb-2019 02:59 340 +perltex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:59 344 +perltex.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:59 344 +perltex.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:59 340 +perltex.x86_64-solaris.tar.xz 28-Feb-2019 02:59 340 +permute.doc.r15878.tar.xz 28-Feb-2019 02:59 70116 +permute.doc.tar.xz 28-Feb-2019 02:59 70116 +permute.r15878.tar.xz 28-Feb-2019 02:59 2740 +permute.source.r15878.tar.xz 28-Feb-2019 02:59 11164 +permute.source.tar.xz 28-Feb-2019 02:59 11164 +permute.tar.xz 28-Feb-2019 02:59 2740 +persian-bib.doc.r37297.tar.xz 28-Feb-2019 02:59 186856 +persian-bib.doc.tar.xz 28-Feb-2019 02:59 186856 +persian-bib.r37297.tar.xz 28-Feb-2019 02:59 21692 +persian-bib.tar.xz 28-Feb-2019 02:59 21692 +petiteannonce.doc.r25915.tar.xz 28-Feb-2019 02:59 193556 +petiteannonce.doc.tar.xz 28-Feb-2019 02:59 193556 +petiteannonce.r25915.tar.xz 28-Feb-2019 02:59 3328 +petiteannonce.tar.xz 28-Feb-2019 02:59 3328 +petri-nets.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:59 348 +petri-nets.aarch64-linux.tar.xz 28-Feb-2019 02:59 348 +petri-nets.amd64-freebsd.r39165.tar.xz 28-Feb-2019 02:59 348 +petri-nets.amd64-freebsd.tar.xz 28-Feb-2019 02:59 348 +petri-nets.amd64-netbsd.r39165.tar.xz 28-Feb-2019 02:59 344 +petri-nets.amd64-netbsd.tar.xz 28-Feb-2019 02:59 344 +petri-nets.armhf-linux.r39165.tar.xz 28-Feb-2019 02:59 344 +petri-nets.armhf-linux.tar.xz 28-Feb-2019 02:59 344 +petri-nets.doc.r39165.tar.xz 28-Feb-2019 02:59 190288 +petri-nets.doc.tar.xz 28-Feb-2019 02:59 190288 +petri-nets.i386-freebsd.r39165.tar.xz 28-Feb-2019 02:59 348 +petri-nets.i386-freebsd.tar.xz 28-Feb-2019 02:59 348 +petri-nets.i386-linux.r39165.tar.xz 28-Feb-2019 02:59 344 +petri-nets.i386-linux.tar.xz 28-Feb-2019 02:59 344 +petri-nets.i386-netbsd.r39165.tar.xz 28-Feb-2019 02:59 344 +petri-nets.i386-netbsd.tar.xz 28-Feb-2019 02:59 344 +petri-nets.i386-solaris.r39165.tar.xz 28-Feb-2019 02:59 344 +petri-nets.i386-solaris.tar.xz 28-Feb-2019 02:59 344 +petri-nets.r39165.tar.xz 28-Feb-2019 02:59 7900 +petri-nets.tar.xz 28-Feb-2019 02:59 7900 +petri-nets.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 344 +petri-nets.universal-darwin.tar.xz 25-Feb-2021 18:17 344 +petri-nets.windows.r65891.tar.xz 20-Feb-2023 22:15 2316 +petri-nets.windows.tar.xz 20-Feb-2023 22:15 2316 +petri-nets.x86_64-cygwin.r39165.tar.xz 28-Feb-2019 02:59 348 +petri-nets.x86_64-cygwin.tar.xz 28-Feb-2019 02:59 348 +petri-nets.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:59 356 +petri-nets.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:59 356 +petri-nets.x86_64-linux.r39165.tar.xz 28-Feb-2019 02:59 344 +petri-nets.x86_64-linux.tar.xz 28-Feb-2019 02:59 344 +petri-nets.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:59 352 +petri-nets.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:59 352 +petri-nets.x86_64-solaris.r39165.tar.xz 28-Feb-2019 02:59 348 +petri-nets.x86_64-solaris.tar.xz 28-Feb-2019 02:59 348 +pfarrei.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:59 368 +pfarrei.aarch64-linux.tar.xz 28-Feb-2019 02:59 368 +pfarrei.amd64-freebsd.r29348.tar.xz 28-Feb-2019 02:59 368 +pfarrei.amd64-freebsd.tar.xz 28-Feb-2019 02:59 368 +pfarrei.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:59 368 +pfarrei.amd64-netbsd.tar.xz 28-Feb-2019 02:59 368 +pfarrei.armhf-linux.r30015.tar.xz 28-Feb-2019 02:59 364 +pfarrei.armhf-linux.tar.xz 28-Feb-2019 02:59 364 +pfarrei.doc.r68950.tar.xz 24-Nov-2023 00:43 479032 +pfarrei.doc.tar.xz 24-Nov-2023 00:43 479032 +pfarrei.i386-freebsd.r29348.tar.xz 28-Feb-2019 02:59 368 +pfarrei.i386-freebsd.tar.xz 28-Feb-2019 02:59 368 +pfarrei.i386-linux.r29348.tar.xz 28-Feb-2019 02:59 368 +pfarrei.i386-linux.tar.xz 28-Feb-2019 02:59 368 +pfarrei.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:59 368 +pfarrei.i386-netbsd.tar.xz 28-Feb-2019 02:59 368 +pfarrei.i386-solaris.r29348.tar.xz 28-Feb-2019 02:59 368 +pfarrei.i386-solaris.tar.xz 28-Feb-2019 02:59 368 +pfarrei.r68950.tar.xz 24-Nov-2023 00:43 4728 +pfarrei.source.r68950.tar.xz 24-Nov-2023 00:43 12688 +pfarrei.source.tar.xz 24-Nov-2023 00:43 12688 +pfarrei.tar.xz 24-Nov-2023 00:43 4728 +pfarrei.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 368 +pfarrei.universal-darwin.tar.xz 25-Feb-2021 18:17 368 +pfarrei.windows.r65891.tar.xz 20-Feb-2023 22:15 2364 +pfarrei.windows.tar.xz 20-Feb-2023 22:15 2364 +pfarrei.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:59 368 +pfarrei.x86_64-cygwin.tar.xz 28-Feb-2019 02:59 368 +pfarrei.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:59 376 +pfarrei.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:59 376 +pfarrei.x86_64-linux.r29348.tar.xz 28-Feb-2019 02:59 364 +pfarrei.x86_64-linux.tar.xz 28-Feb-2019 02:59 364 +pfarrei.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:59 376 +pfarrei.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:59 376 +pfarrei.x86_64-solaris.r29348.tar.xz 28-Feb-2019 02:59 368 +pfarrei.x86_64-solaris.tar.xz 28-Feb-2019 02:59 368 +pfdicons.doc.r60089.tar.xz 27-Jul-2021 23:52 955616 +pfdicons.doc.tar.xz 27-Jul-2021 23:52 955616 +pfdicons.r60089.tar.xz 27-Jul-2021 23:52 9108 +pfdicons.tar.xz 27-Jul-2021 23:52 9108 +pgf-blur.doc.r54512.tar.xz 24-Mar-2020 01:03 242488 +pgf-blur.doc.tar.xz 24-Mar-2020 01:03 242488 +pgf-blur.r54512.tar.xz 24-Mar-2020 01:03 2628 +pgf-blur.source.r54512.tar.xz 24-Mar-2020 01:03 9236 +pgf-blur.source.tar.xz 24-Mar-2020 01:03 9236 +pgf-blur.tar.xz 24-Mar-2020 01:03 2628 +pgf-go.doc.r74578.tar.xz 12-Mar-2025 00:50 1120328 +pgf-go.doc.tar.xz 12-Mar-2025 00:50 1120328 +pgf-go.r74578.tar.xz 12-Mar-2025 00:50 14024 +pgf-go.tar.xz 12-Mar-2025 00:50 14024 +pgf-interference.doc.r61562.tar.xz 11-Jan-2022 00:52 733184 +pgf-interference.doc.tar.xz 11-Jan-2022 00:52 733184 +pgf-interference.r61562.tar.xz 11-Jan-2022 00:52 3216 +pgf-interference.tar.xz 11-Jan-2022 00:52 3216 +pgf-periodictable.doc.r73886.tar.xz 12-Feb-2025 00:50 6158592 +pgf-periodictable.doc.tar.xz 12-Feb-2025 00:50 6158592 +pgf-periodictable.r73886.tar.xz 12-Feb-2025 00:50 520532 +pgf-periodictable.tar.xz 12-Feb-2025 00:50 520532 +pgf-pie.doc.r63603.tar.xz 15-Jun-2022 23:52 222616 +pgf-pie.doc.tar.xz 15-Jun-2022 23:52 222616 +pgf-pie.r63603.tar.xz 15-Jun-2022 23:52 3744 +pgf-pie.tar.xz 15-Jun-2022 23:52 3744 +pgf-soroban.doc.r32269.tar.xz 28-Feb-2019 02:59 351348 +pgf-soroban.doc.tar.xz 28-Feb-2019 02:59 351348 +pgf-soroban.r32269.tar.xz 28-Feb-2019 02:59 1852 +pgf-soroban.tar.xz 28-Feb-2019 02:59 1852 +pgf-spectra.doc.r75535.tar.xz 17-Jun-2025 23:49 2234452 +pgf-spectra.doc.tar.xz 17-Jun-2025 23:49 2234452 +pgf-spectra.r75535.tar.xz 17-Jun-2025 23:49 255388 +pgf-spectra.tar.xz 17-Jun-2025 23:49 255388 +pgf-umlcd.doc.r63386.tar.xz 23-May-2022 23:53 295968 +pgf-umlcd.doc.tar.xz 23-May-2022 23:53 295968 +pgf-umlcd.r63386.tar.xz 23-May-2022 23:53 3408 +pgf-umlcd.tar.xz 23-May-2022 23:53 3408 +pgf-umlsd.doc.r55342.tar.xz 30-May-2020 22:55 222752 +pgf-umlsd.doc.tar.xz 30-May-2020 22:55 222752 +pgf-umlsd.r55342.tar.xz 30-May-2020 22:55 3552 +pgf-umlsd.tar.xz 30-May-2020 22:55 3552 +pgf.doc.r76180.tar.xz 29-Aug-2025 23:49 10281484 +pgf.doc.tar.xz 29-Aug-2025 23:49 10281484 +pgf.r76180.tar.xz 29-Aug-2025 23:50 718188 +pgf.tar.xz 29-Aug-2025 23:50 718188 +pgfgantt.doc.r71565.tar.xz 19-Jun-2024 23:47 559648 +pgfgantt.doc.tar.xz 19-Jun-2024 23:47 559648 +pgfgantt.r71565.tar.xz 19-Jun-2024 23:47 7920 +pgfgantt.source.r71565.tar.xz 19-Jun-2024 23:47 34960 +pgfgantt.source.tar.xz 19-Jun-2024 23:47 34960 +pgfgantt.tar.xz 19-Jun-2024 23:47 7920 +pgfkeysearch.doc.r75348.tar.xz 29-May-2025 23:50 166080 +pgfkeysearch.doc.tar.xz 29-May-2025 23:50 166080 +pgfkeysearch.r75348.tar.xz 29-May-2025 23:50 2512 +pgfkeysearch.tar.xz 29-May-2025 23:50 2512 +pgfkeyx.doc.r26093.tar.xz 28-Feb-2019 02:59 1412 +pgfkeyx.doc.tar.xz 28-Feb-2019 02:59 1412 +pgfkeyx.r26093.tar.xz 28-Feb-2019 02:59 7088 +pgfkeyx.tar.xz 28-Feb-2019 02:59 7088 +pgfmath-xfp.doc.r73423.tar.xz 12-Jan-2025 00:45 258264 +pgfmath-xfp.doc.tar.xz 12-Jan-2025 00:45 258264 +pgfmath-xfp.r73423.tar.xz 12-Jan-2025 00:45 1924 +pgfmath-xfp.source.r73423.tar.xz 12-Jan-2025 00:45 5380 +pgfmath-xfp.source.tar.xz 12-Jan-2025 00:45 5380 +pgfmath-xfp.tar.xz 12-Jan-2025 00:45 1924 +pgfmolbio.doc.r71551.tar.xz 17-Jun-2024 23:46 859112 +pgfmolbio.doc.tar.xz 17-Jun-2024 23:46 859112 +pgfmolbio.r71551.tar.xz 17-Jun-2024 23:46 13788 +pgfmolbio.source.r71551.tar.xz 17-Jun-2024 23:46 44968 +pgfmolbio.source.tar.xz 17-Jun-2024 23:46 44968 +pgfmolbio.tar.xz 17-Jun-2024 23:46 13788 +pgfmorepages.doc.r54770.tar.xz 16-Apr-2020 23:55 62004 +pgfmorepages.doc.tar.xz 16-Apr-2020 23:55 62004 +pgfmorepages.r54770.tar.xz 16-Apr-2020 23:55 7012 +pgfmorepages.tar.xz 16-Apr-2020 23:55 7012 +pgfopts.doc.r56615.tar.xz 09-Oct-2020 23:59 175608 +pgfopts.doc.tar.xz 09-Oct-2020 23:59 175608 +pgfopts.r56615.tar.xz 09-Oct-2020 23:59 1928 +pgfopts.source.r56615.tar.xz 09-Oct-2020 23:59 6008 +pgfopts.source.tar.xz 09-Oct-2020 23:59 6008 +pgfopts.tar.xz 09-Oct-2020 23:59 1928 +pgfornament-han.doc.r72640.tar.xz 24-Oct-2024 23:47 2297192 +pgfornament-han.doc.tar.xz 24-Oct-2024 23:47 2297192 +pgfornament-han.r72640.tar.xz 24-Oct-2024 23:47 96704 +pgfornament-han.tar.xz 24-Oct-2024 23:47 96704 +pgfornament.doc.r72029.tar.xz 14-Aug-2024 23:46 2403676 +pgfornament.doc.tar.xz 14-Aug-2024 23:46 2403676 +pgfornament.r72029.tar.xz 14-Aug-2024 23:46 616696 +pgfornament.tar.xz 14-Aug-2024 23:46 616696 +pgfplots.doc.r76111.tar.xz 21-Aug-2025 23:48 12997776 +pgfplots.doc.tar.xz 21-Aug-2025 23:48 12997776 +pgfplots.r76111.tar.xz 21-Aug-2025 23:48 531060 +pgfplots.source.r76111.tar.xz 21-Aug-2025 23:48 488208 +pgfplots.source.tar.xz 21-Aug-2025 23:48 488208 +pgfplots.tar.xz 21-Aug-2025 23:48 531060 +pgfplotsthemebeamer.doc.r71954.tar.xz 02-Aug-2024 23:48 150560 +pgfplotsthemebeamer.doc.tar.xz 02-Aug-2024 23:48 150560 +pgfplotsthemebeamer.r71954.tar.xz 02-Aug-2024 23:48 1036 +pgfplotsthemebeamer.tar.xz 02-Aug-2024 23:48 1036 +phaistos.doc.r18651.tar.xz 28-Feb-2019 02:59 174564 +phaistos.doc.tar.xz 28-Feb-2019 02:59 174564 +phaistos.r18651.tar.xz 28-Feb-2019 02:59 183368 +phaistos.source.r18651.tar.xz 28-Feb-2019 02:59 3368 +phaistos.source.tar.xz 28-Feb-2019 02:59 3368 +phaistos.tar.xz 28-Feb-2019 02:59 183368 +phfcc.doc.r60731.tar.xz 11-Oct-2021 23:52 405660 +phfcc.doc.tar.xz 11-Oct-2021 23:52 405660 +phfcc.r60731.tar.xz 11-Oct-2021 23:52 5548 +phfcc.source.r60731.tar.xz 11-Oct-2021 23:52 22680 +phfcc.source.tar.xz 11-Oct-2021 23:52 22680 +phfcc.tar.xz 11-Oct-2021 23:52 5548 +phfextendedabstract.doc.r60732.tar.xz 11-Oct-2021 23:52 280996 +phfextendedabstract.doc.tar.xz 11-Oct-2021 23:52 280996 +phfextendedabstract.r60732.tar.xz 11-Oct-2021 23:52 3888 +phfextendedabstract.source.r60732.tar.xz 11-Oct-2021 23:52 14928 +phfextendedabstract.source.tar.xz 11-Oct-2021 23:52 14928 +phfextendedabstract.tar.xz 11-Oct-2021 23:52 3888 +phffullpagefigure.doc.r41857.tar.xz 28-Feb-2019 02:59 242800 +phffullpagefigure.doc.tar.xz 28-Feb-2019 02:59 242800 +phffullpagefigure.r41857.tar.xz 28-Feb-2019 02:59 2908 +phffullpagefigure.source.r41857.tar.xz 28-Feb-2019 02:59 10128 +phffullpagefigure.source.tar.xz 28-Feb-2019 02:59 10128 +phffullpagefigure.tar.xz 28-Feb-2019 02:59 2908 +phfnote.doc.r60733.tar.xz 11-Oct-2021 23:52 752440 +phfnote.doc.tar.xz 11-Oct-2021 23:52 752440 +phfnote.r60733.tar.xz 11-Oct-2021 23:52 18752 +phfnote.source.r60733.tar.xz 11-Oct-2021 23:52 39348 +phfnote.source.tar.xz 11-Oct-2021 23:52 39348 +phfnote.tar.xz 11-Oct-2021 23:52 18752 +phfparen.doc.r41859.tar.xz 28-Feb-2019 02:59 305996 +phfparen.doc.tar.xz 28-Feb-2019 02:59 305996 +phfparen.r41859.tar.xz 28-Feb-2019 02:59 2352 +phfparen.source.r41859.tar.xz 28-Feb-2019 02:59 9336 +phfparen.source.tar.xz 28-Feb-2019 02:59 9336 +phfparen.tar.xz 28-Feb-2019 02:59 2352 +phfqit.doc.r60734.tar.xz 11-Oct-2021 23:52 455784 +phfqit.doc.tar.xz 11-Oct-2021 23:52 455784 +phfqit.r60734.tar.xz 11-Oct-2021 23:52 4824 +phfqit.source.r60734.tar.xz 11-Oct-2021 23:52 23420 +phfqit.source.tar.xz 11-Oct-2021 23:52 23420 +phfqit.tar.xz 11-Oct-2021 23:52 4824 +phfquotetext.doc.r41869.tar.xz 28-Feb-2019 02:59 199404 +phfquotetext.doc.tar.xz 28-Feb-2019 02:59 199404 +phfquotetext.r41869.tar.xz 28-Feb-2019 02:59 1340 +phfquotetext.source.r41869.tar.xz 28-Feb-2019 02:59 4808 +phfquotetext.source.tar.xz 28-Feb-2019 02:59 4808 +phfquotetext.tar.xz 28-Feb-2019 02:59 1340 +phfsvnwatermark.doc.r41870.tar.xz 28-Feb-2019 02:59 204092 +phfsvnwatermark.doc.tar.xz 28-Feb-2019 02:59 204092 +phfsvnwatermark.r41870.tar.xz 28-Feb-2019 02:59 2260 +phfsvnwatermark.source.r41870.tar.xz 28-Feb-2019 02:59 6444 +phfsvnwatermark.source.tar.xz 28-Feb-2019 02:59 6444 +phfsvnwatermark.tar.xz 28-Feb-2019 02:59 2260 +phfthm.doc.r60735.tar.xz 11-Oct-2021 23:52 393356 +phfthm.doc.tar.xz 11-Oct-2021 23:52 393356 +phfthm.r60735.tar.xz 11-Oct-2021 23:52 5744 +phfthm.source.r60735.tar.xz 11-Oct-2021 23:52 27536 +phfthm.source.tar.xz 11-Oct-2021 23:52 27536 +phfthm.tar.xz 11-Oct-2021 23:52 5744 +philex.doc.r36396.tar.xz 28-Feb-2019 02:59 244388 +philex.doc.tar.xz 28-Feb-2019 02:59 244388 +philex.r36396.tar.xz 28-Feb-2019 02:59 4424 +philex.tar.xz 28-Feb-2019 02:59 4424 +philokalia.doc.r45356.tar.xz 28-Feb-2019 02:59 92820 +philokalia.doc.tar.xz 28-Feb-2019 02:59 92820 +philokalia.r45356.tar.xz 28-Feb-2019 02:59 76140 +philokalia.source.r45356.tar.xz 28-Feb-2019 02:59 6900 +philokalia.source.tar.xz 28-Feb-2019 02:59 6900 +philokalia.tar.xz 28-Feb-2019 02:59 76140 +philosophersimprint.doc.r56954.tar.xz 18-Nov-2020 00:57 479704 +philosophersimprint.doc.tar.xz 18-Nov-2020 00:57 479704 +philosophersimprint.r56954.tar.xz 18-Nov-2020 00:57 4604 +philosophersimprint.source.r56954.tar.xz 18-Nov-2020 00:57 13344 +philosophersimprint.source.tar.xz 18-Nov-2020 00:57 13344 +philosophersimprint.tar.xz 18-Nov-2020 00:57 4604 +phimisci.doc.r76409.tar.xz 26-Sep-2025 23:46 182828 +phimisci.doc.tar.xz 26-Sep-2025 23:46 182828 +phimisci.r76409.tar.xz 26-Sep-2025 23:46 9212 +phimisci.source.r76409.tar.xz 26-Sep-2025 23:46 20724 +phimisci.source.tar.xz 26-Sep-2025 23:46 20724 +phimisci.tar.xz 26-Sep-2025 23:46 9212 +phonenumbers.doc.r75152.tar.xz 07-May-2025 23:46 1162852 +phonenumbers.doc.tar.xz 07-May-2025 23:46 1162852 +phonenumbers.r75152.tar.xz 07-May-2025 23:46 71056 +phonenumbers.tar.xz 07-May-2025 23:46 71056 +phonetic.doc.r56468.tar.xz 28-Sep-2020 23:57 46824 +phonetic.doc.tar.xz 28-Sep-2020 23:57 46824 +phonetic.r56468.tar.xz 28-Sep-2020 23:57 23380 +phonetic.tar.xz 28-Sep-2020 23:57 23380 +phonrule.doc.r43963.tar.xz 28-Feb-2019 02:59 44080 +phonrule.doc.tar.xz 28-Feb-2019 02:59 44080 +phonrule.r43963.tar.xz 28-Feb-2019 02:59 1132 +phonrule.tar.xz 28-Feb-2019 02:59 1132 +photo.doc.r18739.tar.xz 28-Feb-2019 02:59 142148 +photo.doc.tar.xz 28-Feb-2019 02:59 142148 +photo.r18739.tar.xz 28-Feb-2019 02:59 2756 +photo.source.r18739.tar.xz 28-Feb-2019 02:59 8908 +photo.source.tar.xz 28-Feb-2019 02:59 8908 +photo.tar.xz 28-Feb-2019 02:59 2756 +photobook.doc.r71843.tar.xz 19-Jul-2024 23:47 157840 +photobook.doc.tar.xz 19-Jul-2024 23:47 157840 +photobook.r71843.tar.xz 19-Jul-2024 23:47 33576 +photobook.tar.xz 19-Jul-2024 23:47 33576 +physconst.doc.r58727.tar.xz 04-Apr-2021 23:52 209684 +physconst.doc.tar.xz 04-Apr-2021 23:52 209684 +physconst.r58727.tar.xz 04-Apr-2021 23:52 6016 +physconst.source.r58727.tar.xz 04-Apr-2021 23:52 18756 +physconst.source.tar.xz 04-Apr-2021 23:52 18756 +physconst.tar.xz 04-Apr-2021 23:52 6016 +physics-patch.doc.r75917.tar.xz 29-Jul-2025 23:49 115444 +physics-patch.doc.tar.xz 29-Jul-2025 23:49 115444 +physics-patch.r75917.tar.xz 29-Jul-2025 23:49 10768 +physics-patch.tar.xz 29-Jul-2025 23:49 10768 +physics.doc.r74247.tar.xz 24-Feb-2025 00:50 232876 +physics.doc.tar.xz 24-Feb-2025 00:50 232876 +physics.r74247.tar.xz 24-Feb-2025 00:50 5900 +physics.tar.xz 24-Feb-2025 00:50 5900 +physics2.doc.r69369.tar.xz 11-Jan-2024 00:45 313084 +physics2.doc.tar.xz 11-Jan-2024 00:45 313084 +physics2.r69369.tar.xz 11-Jan-2024 00:45 6904 +physics2.source.r69369.tar.xz 11-Jan-2024 00:45 11496 +physics2.source.tar.xz 11-Jan-2024 00:45 11496 +physics2.tar.xz 11-Jan-2024 00:45 6904 +physunits.doc.r58728.tar.xz 04-Apr-2021 23:52 104792 +physunits.doc.tar.xz 04-Apr-2021 23:52 104792 +physunits.r58728.tar.xz 04-Apr-2021 23:52 1744 +physunits.source.r58728.tar.xz 04-Apr-2021 23:52 6552 +physunits.source.tar.xz 04-Apr-2021 23:52 6552 +physunits.tar.xz 04-Apr-2021 23:52 1744 +piano.doc.r21574.tar.xz 28-Feb-2019 02:59 604 +piano.doc.tar.xz 28-Feb-2019 02:59 604 +piano.r21574.tar.xz 28-Feb-2019 02:59 1884 +piano.tar.xz 28-Feb-2019 02:59 1884 +picinpar.doc.r65097.tar.xz 25-Nov-2022 00:53 395152 +picinpar.doc.tar.xz 25-Nov-2022 00:53 395152 +picinpar.r65097.tar.xz 25-Nov-2022 00:53 5380 +picinpar.tar.xz 25-Nov-2022 00:53 5380 +pict2e.doc.r56504.tar.xz 01-Oct-2020 22:33 1109928 +pict2e.doc.tar.xz 01-Oct-2020 22:33 1109928 +pict2e.r56504.tar.xz 01-Oct-2020 22:33 7804 +pict2e.source.r56504.tar.xz 01-Oct-2020 22:33 33476 +pict2e.source.tar.xz 01-Oct-2020 22:33 33476 +pict2e.tar.xz 01-Oct-2020 22:33 7804 +pictex.doc.r59551.tar.xz 11-Jun-2021 23:52 1608 +pictex.doc.tar.xz 11-Jun-2021 23:52 1608 +pictex.r59551.tar.xz 11-Jun-2021 23:52 41444 +pictex.tar.xz 11-Jun-2021 23:52 41444 +pictex2.r15878.tar.xz 28-Feb-2019 02:59 3748 +pictex2.tar.xz 28-Feb-2019 02:59 3748 +pictexsum.doc.r24965.tar.xz 28-Feb-2019 02:59 192368 +pictexsum.doc.tar.xz 28-Feb-2019 02:59 192368 +pictexsum.r24965.tar.xz 28-Feb-2019 02:59 488 +pictexsum.tar.xz 28-Feb-2019 02:59 488 +pictochrono.doc.r75622.tar.xz 26-Jun-2025 23:48 245904 +pictochrono.doc.tar.xz 26-Jun-2025 23:48 245904 +pictochrono.r75622.tar.xz 26-Jun-2025 23:48 1796 +pictochrono.tar.xz 26-Jun-2025 23:48 1796 +picture.doc.r54867.tar.xz 24-Apr-2020 23:54 303384 +picture.doc.tar.xz 24-Apr-2020 23:54 303384 +picture.r54867.tar.xz 24-Apr-2020 23:54 2300 +picture.source.r54867.tar.xz 24-Apr-2020 23:54 5988 +picture.source.tar.xz 24-Apr-2020 23:54 5988 +picture.tar.xz 24-Apr-2020 23:54 2300 +piechartmp.doc.r19440.tar.xz 28-Feb-2019 02:59 41660 +piechartmp.doc.tar.xz 28-Feb-2019 02:59 41660 +piechartmp.r19440.tar.xz 28-Feb-2019 02:59 7216 +piechartmp.tar.xz 28-Feb-2019 02:59 7216 +piff.doc.r21894.tar.xz 28-Feb-2019 02:59 600376 +piff.doc.tar.xz 28-Feb-2019 02:59 600376 +piff.r21894.tar.xz 28-Feb-2019 02:59 2628 +piff.tar.xz 28-Feb-2019 02:59 2628 +pigpen.doc.r69687.tar.xz 04-Feb-2024 00:48 124532 +pigpen.doc.tar.xz 04-Feb-2024 00:48 124532 +pigpen.r69687.tar.xz 04-Feb-2024 00:48 6892 +pigpen.tar.xz 04-Feb-2024 00:48 6892 +pinlabel.doc.r24769.tar.xz 28-Feb-2019 02:59 250420 +pinlabel.doc.tar.xz 28-Feb-2019 02:59 250420 +pinlabel.r24769.tar.xz 28-Feb-2019 02:59 11060 +pinlabel.tar.xz 28-Feb-2019 02:59 11060 +pinoutikz.doc.r55966.tar.xz 27-Jul-2020 23:57 75816 +pinoutikz.doc.tar.xz 27-Jul-2020 23:57 75816 +pinoutikz.r55966.tar.xz 27-Jul-2020 23:57 2536 +pinoutikz.tar.xz 27-Jul-2020 23:57 2536 +pitex.doc.r24731.tar.xz 28-Feb-2019 02:59 110192 +pitex.doc.tar.xz 28-Feb-2019 02:59 110192 +pitex.r24731.tar.xz 28-Feb-2019 02:59 22664 +pitex.tar.xz 28-Feb-2019 02:59 22664 +piton.doc.r76303.tar.xz 13-Sep-2025 23:54 1044948 +piton.doc.tar.xz 13-Sep-2025 23:54 1044948 +piton.r76303.tar.xz 13-Sep-2025 23:54 26944 +piton.source.r76303.tar.xz 13-Sep-2025 23:54 78496 +piton.source.tar.xz 13-Sep-2025 23:54 78496 +piton.tar.xz 13-Sep-2025 23:54 26944 +pittetd.doc.r15878.tar.xz 28-Feb-2019 02:59 317704 +pittetd.doc.tar.xz 28-Feb-2019 02:59 317704 +pittetd.r15878.tar.xz 28-Feb-2019 02:59 8884 +pittetd.source.r15878.tar.xz 28-Feb-2019 02:59 38588 +pittetd.source.tar.xz 28-Feb-2019 02:59 38588 +pittetd.tar.xz 28-Feb-2019 02:59 8884 +pixelart.doc.r66012.tar.xz 22-Feb-2023 01:54 387308 +pixelart.doc.tar.xz 22-Feb-2023 01:54 387308 +pixelart.r66012.tar.xz 22-Feb-2023 01:54 6764 +pixelart.tar.xz 22-Feb-2023 01:54 6764 +pixelarttikz.doc.r75126.tar.xz 05-May-2025 23:47 1342624 +pixelarttikz.doc.tar.xz 05-May-2025 23:47 1342624 +pixelarttikz.r75126.tar.xz 05-May-2025 23:47 5740 +pixelarttikz.tar.xz 05-May-2025 23:47 5740 +pkfix-helper.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.aarch64-linux.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.amd64-freebsd.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.amd64-netbsd.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.armhf-linux.r30015.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.armhf-linux.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.doc.r56061.tar.xz 06-Aug-2020 23:56 393612 +pkfix-helper.doc.tar.xz 06-Aug-2020 23:56 393612 +pkfix-helper.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.i386-freebsd.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.i386-linux.r13663.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.i386-linux.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.i386-netbsd.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.i386-solaris.r13898.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.i386-solaris.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.r56061.tar.xz 06-Aug-2020 23:56 20208 +pkfix-helper.tar.xz 06-Aug-2020 23:56 20208 +pkfix-helper.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 344 +pkfix-helper.universal-darwin.tar.xz 25-Feb-2021 18:17 344 +pkfix-helper.windows.r65891.tar.xz 20-Feb-2023 22:15 2308 +pkfix-helper.windows.tar.xz 20-Feb-2023 22:15 2308 +pkfix-helper.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.x86_64-cygwin.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:59 352 +pkfix-helper.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:59 352 +pkfix-helper.x86_64-linux.r13777.tar.xz 28-Feb-2019 02:59 340 +pkfix-helper.x86_64-linux.tar.xz 28-Feb-2019 02:59 340 +pkfix-helper.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:59 348 +pkfix-helper.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:59 348 +pkfix-helper.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:59 344 +pkfix-helper.x86_64-solaris.tar.xz 28-Feb-2019 02:59 344 +pkfix.aarch64-linux.r46208.tar.xz 28-Feb-2019 02:59 340 +pkfix.aarch64-linux.tar.xz 28-Feb-2019 02:59 340 +pkfix.amd64-freebsd.r16472.tar.xz 28-Feb-2019 02:59 340 +pkfix.amd64-freebsd.tar.xz 28-Feb-2019 02:59 340 +pkfix.amd64-netbsd.r30191.tar.xz 28-Feb-2019 02:59 336 +pkfix.amd64-netbsd.tar.xz 28-Feb-2019 02:59 336 +pkfix.armhf-linux.r30015.tar.xz 28-Feb-2019 02:59 340 +pkfix.armhf-linux.tar.xz 28-Feb-2019 02:59 340 +pkfix.doc.r26032.tar.xz 28-Feb-2019 02:59 4376 +pkfix.doc.tar.xz 28-Feb-2019 02:59 4376 +pkfix.i386-freebsd.r16472.tar.xz 28-Feb-2019 02:59 340 +pkfix.i386-freebsd.tar.xz 28-Feb-2019 02:59 340 +pkfix.i386-linux.r13364.tar.xz 28-Feb-2019 02:59 340 +pkfix.i386-linux.tar.xz 28-Feb-2019 02:59 340 +pkfix.i386-netbsd.r30191.tar.xz 28-Feb-2019 02:59 336 +pkfix.i386-netbsd.tar.xz 28-Feb-2019 02:59 336 +pkfix.i386-solaris.r13364.tar.xz 28-Feb-2019 02:59 340 +pkfix.i386-solaris.tar.xz 28-Feb-2019 02:59 340 +pkfix.r26032.tar.xz 28-Feb-2019 02:59 7572 +pkfix.tar.xz 28-Feb-2019 02:59 7572 +pkfix.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +pkfix.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +pkfix.windows.r65891.tar.xz 20-Feb-2023 22:15 2300 +pkfix.windows.tar.xz 20-Feb-2023 22:15 2300 +pkfix.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 02:59 340 +pkfix.x86_64-cygwin.tar.xz 28-Feb-2019 02:59 340 +pkfix.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 02:59 348 +pkfix.x86_64-darwinlegacy.tar.xz 28-Feb-2019 02:59 348 +pkfix.x86_64-linux.r13364.tar.xz 28-Feb-2019 02:59 336 +pkfix.x86_64-linux.tar.xz 28-Feb-2019 02:59 336 +pkfix.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 02:59 344 +pkfix.x86_64-linuxmusl.tar.xz 28-Feb-2019 02:59 344 +pkfix.x86_64-solaris.r18442.tar.xz 28-Feb-2019 02:59 340 +pkfix.x86_64-solaris.tar.xz 28-Feb-2019 02:59 340 +pkgloader.doc.r47486.tar.xz 28-Feb-2019 02:59 475212 +pkgloader.doc.tar.xz 28-Feb-2019 02:59 475212 +pkgloader.r47486.tar.xz 28-Feb-2019 02:59 10336 +pkgloader.tar.xz 28-Feb-2019 02:59 10336 +pkuthss.doc.r70491.tar.xz 08-Mar-2024 00:47 466240 +pkuthss.doc.tar.xz 08-Mar-2024 00:47 466240 +pkuthss.r70491.tar.xz 08-Mar-2024 00:47 17048 +pkuthss.tar.xz 08-Mar-2024 00:47 17048 +pl.doc.r58661.tar.xz 23-Mar-2021 18:31 25344 +pl.doc.tar.xz 23-Mar-2021 18:31 25344 +pl.r58661.tar.xz 23-Mar-2021 18:31 1929852 +pl.tar.xz 23-Mar-2021 18:31 1929852 +placeat.doc.r45145.tar.xz 28-Feb-2019 02:59 95556 +placeat.doc.tar.xz 28-Feb-2019 02:59 95556 +placeat.r45145.tar.xz 28-Feb-2019 02:59 4000 +placeat.source.r45145.tar.xz 28-Feb-2019 02:59 11932 +placeat.source.tar.xz 28-Feb-2019 02:59 11932 +placeat.tar.xz 28-Feb-2019 02:59 4000 +placeins-plain.r15878.tar.xz 28-Feb-2019 02:59 2632 +placeins-plain.tar.xz 28-Feb-2019 02:59 2632 +placeins.doc.r19848.tar.xz 28-Feb-2019 02:59 257616 +placeins.doc.tar.xz 28-Feb-2019 02:59 257616 +placeins.r19848.tar.xz 28-Feb-2019 02:59 2300 +placeins.tar.xz 28-Feb-2019 02:59 2300 +plain-doc.doc.r28424.tar.xz 28-Feb-2019 02:59 4172 +plain-doc.doc.tar.xz 28-Feb-2019 02:59 4172 +plain-doc.r28424.tar.xz 28-Feb-2019 02:59 488 +plain-doc.tar.xz 28-Feb-2019 02:59 488 +plain-widow.doc.r75230.tar.xz 15-May-2025 23:50 33240 +plain-widow.doc.tar.xz 15-May-2025 23:50 33240 +plain-widow.r75230.tar.xz 15-May-2025 23:50 4552 +plain-widow.tar.xz 15-May-2025 23:50 4552 +plain.r75712.tar.xz 07-Jul-2025 23:51 29116 +plain.tar.xz 07-Jul-2025 23:51 29116 +plainpkg.doc.r27765.tar.xz 28-Feb-2019 02:59 357100 +plainpkg.doc.tar.xz 28-Feb-2019 02:59 357100 +plainpkg.r27765.tar.xz 28-Feb-2019 02:59 3304 +plainpkg.source.r27765.tar.xz 28-Feb-2019 02:59 5264 +plainpkg.source.tar.xz 28-Feb-2019 02:59 5264 +plainpkg.tar.xz 28-Feb-2019 02:59 3304 +plainyr.r52783.tar.xz 14-Nov-2019 00:55 5000 +plainyr.tar.xz 14-Nov-2019 00:55 5000 +plantslabels.doc.r29803.tar.xz 28-Feb-2019 02:59 218164 +plantslabels.doc.tar.xz 28-Feb-2019 02:59 218164 +plantslabels.r29803.tar.xz 28-Feb-2019 02:59 1260 +plantslabels.tar.xz 28-Feb-2019 02:59 1260 +plantuml.doc.r75196.tar.xz 13-May-2025 23:51 67952 +plantuml.doc.tar.xz 13-May-2025 23:51 67952 +plantuml.r75196.tar.xz 13-May-2025 23:51 2856 +plantuml.tar.xz 13-May-2025 23:51 2856 +plari.doc.r15878.tar.xz 28-Feb-2019 02:59 136708 +plari.doc.tar.xz 28-Feb-2019 02:59 136708 +plari.r15878.tar.xz 28-Feb-2019 02:59 2336 +plari.source.r15878.tar.xz 28-Feb-2019 02:59 3588 +plari.source.tar.xz 28-Feb-2019 02:59 3588 +plari.tar.xz 28-Feb-2019 02:59 2336 +plates.doc.r15878.tar.xz 28-Feb-2019 02:59 81112 +plates.doc.tar.xz 28-Feb-2019 02:59 81112 +plates.r15878.tar.xz 28-Feb-2019 02:59 6048 +plates.tar.xz 28-Feb-2019 02:59 6048 +platex-tools.doc.r72097.tar.xz 23-Aug-2024 23:49 576584 +platex-tools.doc.tar.xz 23-Aug-2024 23:49 576584 +platex-tools.r72097.tar.xz 23-Aug-2024 23:49 8284 +platex-tools.tar.xz 23-Aug-2024 23:49 8284 +platex.aarch64-linux.r67315.tar.xz 09-Jun-2023 21:54 340 +platex.aarch64-linux.tar.xz 09-Jun-2023 21:54 340 +platex.amd64-freebsd.r67315.tar.xz 09-Jun-2023 21:54 340 +platex.amd64-freebsd.tar.xz 09-Jun-2023 21:54 340 +platex.amd64-netbsd.r67315.tar.xz 09-Jun-2023 21:54 340 +platex.amd64-netbsd.tar.xz 09-Jun-2023 21:54 340 +platex.armhf-linux.r67315.tar.xz 09-Jun-2023 21:54 340 +platex.armhf-linux.tar.xz 09-Jun-2023 21:54 340 +platex.doc.r73848.tar.xz 11-Feb-2025 00:48 1984200 +platex.doc.tar.xz 11-Feb-2025 00:48 1984200 +platex.i386-freebsd.r67315.tar.xz 09-Jun-2023 21:54 340 +platex.i386-freebsd.tar.xz 09-Jun-2023 21:54 340 +platex.i386-linux.r67315.tar.xz 09-Jun-2023 21:54 340 +platex.i386-linux.tar.xz 09-Jun-2023 21:54 340 +platex.i386-netbsd.r67315.tar.xz 09-Jun-2023 21:54 340 +platex.i386-netbsd.tar.xz 09-Jun-2023 21:54 340 +platex.i386-solaris.r67315.tar.xz 09-Jun-2023 21:54 340 +platex.i386-solaris.tar.xz 09-Jun-2023 21:54 340 +platex.r73848.tar.xz 11-Feb-2025 00:48 42292 +platex.source.r73848.tar.xz 11-Feb-2025 00:48 140240 +platex.source.tar.xz 11-Feb-2025 00:48 140240 +platex.tar.xz 11-Feb-2025 00:48 42292 +platex.universal-darwin.r67315.tar.xz 09-Jun-2023 21:54 344 +platex.universal-darwin.tar.xz 09-Jun-2023 21:54 344 +platex.windows.r67319.tar.xz 09-Jun-2023 23:43 2388 +platex.windows.tar.xz 09-Jun-2023 23:43 2388 +platex.x86_64-cygwin.r67315.tar.xz 09-Jun-2023 21:54 348 +platex.x86_64-cygwin.tar.xz 09-Jun-2023 21:54 348 +platex.x86_64-darwinlegacy.r67315.tar.xz 09-Jun-2023 21:54 348 +platex.x86_64-darwinlegacy.tar.xz 09-Jun-2023 21:54 348 +platex.x86_64-linux.r67315.tar.xz 09-Jun-2023 21:54 344 +platex.x86_64-linux.tar.xz 09-Jun-2023 21:54 344 +platex.x86_64-linuxmusl.r67315.tar.xz 09-Jun-2023 21:54 348 +platex.x86_64-linuxmusl.tar.xz 09-Jun-2023 21:54 348 +platex.x86_64-solaris.r67315.tar.xz 09-Jun-2023 21:54 344 +platex.x86_64-solaris.tar.xz 09-Jun-2023 21:54 344 +platexcheat.doc.r49557.tar.xz 28-Feb-2019 02:59 531356 +platexcheat.doc.tar.xz 28-Feb-2019 02:59 531356 +platexcheat.r49557.tar.xz 28-Feb-2019 02:59 568 +platexcheat.tar.xz 28-Feb-2019 02:59 568 +plautopatch.doc.r64072.tar.xz 07-Aug-2022 23:54 137636 +plautopatch.doc.tar.xz 07-Aug-2022 23:54 137636 +plautopatch.r64072.tar.xz 07-Aug-2022 23:54 7076 +plautopatch.tar.xz 07-Aug-2022 23:54 7076 +play.doc.r15878.tar.xz 28-Feb-2019 02:59 552 +play.doc.tar.xz 28-Feb-2019 02:59 552 +play.r15878.tar.xz 28-Feb-2019 02:59 2196 +play.source.r15878.tar.xz 28-Feb-2019 02:59 4972 +play.source.tar.xz 28-Feb-2019 02:59 4972 +play.tar.xz 28-Feb-2019 02:59 2196 +playcards.doc.r67342.tar.xz 12-Jun-2023 23:44 424772 +playcards.doc.tar.xz 12-Jun-2023 23:44 424772 +playcards.r67342.tar.xz 12-Jun-2023 23:44 2184 +playcards.tar.xz 12-Jun-2023 23:44 2184 +playfair.doc.r64857.tar.xz 29-Oct-2022 23:53 251116 +playfair.doc.tar.xz 29-Oct-2022 23:53 251116 +playfair.r64857.tar.xz 29-Oct-2022 23:53 1679528 +playfair.tar.xz 29-Oct-2022 23:53 1679528 +plex-otf.doc.r74719.tar.xz 22-Mar-2025 00:48 569684 +plex-otf.doc.tar.xz 22-Mar-2025 00:48 569684 +plex-otf.r74719.tar.xz 22-Mar-2025 00:48 2860 +plex-otf.tar.xz 22-Mar-2025 00:48 2860 +plex.doc.r75912.tar.xz 28-Jul-2025 23:50 81708 +plex.doc.tar.xz 28-Jul-2025 23:50 81708 +plex.r75912.tar.xz 28-Jul-2025 23:50 11478120 +plex.tar.xz 28-Jul-2025 23:50 11478120 +plimsoll.doc.r56605.tar.xz 09-Oct-2020 23:59 219292 +plimsoll.doc.tar.xz 09-Oct-2020 23:59 219292 +plimsoll.r56605.tar.xz 09-Oct-2020 23:59 4692 +plimsoll.source.r56605.tar.xz 09-Oct-2020 23:59 2364 +plimsoll.source.tar.xz 09-Oct-2020 23:59 2364 +plimsoll.tar.xz 09-Oct-2020 23:59 4692 +plipsum.doc.r30353.tar.xz 28-Feb-2019 02:59 268364 +plipsum.doc.tar.xz 28-Feb-2019 02:59 268364 +plipsum.r30353.tar.xz 28-Feb-2019 02:59 33632 +plipsum.tar.xz 28-Feb-2019 02:59 33632 +plnfss.doc.r15878.tar.xz 28-Feb-2019 02:59 7696 +plnfss.doc.tar.xz 28-Feb-2019 02:59 7696 +plnfss.r15878.tar.xz 28-Feb-2019 02:59 6652 +plnfss.tar.xz 28-Feb-2019 02:59 6652 +plstmary.doc.r31088.tar.xz 28-Feb-2019 02:59 152416 +plstmary.doc.tar.xz 28-Feb-2019 02:59 152416 +plstmary.r31088.tar.xz 28-Feb-2019 02:59 2224 +plstmary.tar.xz 28-Feb-2019 02:59 2224 +plweb.doc.r15878.tar.xz 28-Feb-2019 02:59 104072 +plweb.doc.tar.xz 28-Feb-2019 02:59 104072 +plweb.r15878.tar.xz 28-Feb-2019 02:59 3872 +plweb.source.r15878.tar.xz 28-Feb-2019 02:59 11832 +plweb.source.tar.xz 28-Feb-2019 02:59 11832 +plweb.tar.xz 28-Feb-2019 02:59 3872 +pm-isomath.doc.r60368.tar.xz 29-Aug-2021 23:52 681608 +pm-isomath.doc.tar.xz 29-Aug-2021 23:52 681608 +pm-isomath.r60368.tar.xz 29-Aug-2021 23:52 2840 +pm-isomath.source.r60368.tar.xz 29-Aug-2021 23:52 19428 +pm-isomath.source.tar.xz 29-Aug-2021 23:52 19428 +pm-isomath.tar.xz 29-Aug-2021 23:52 2840 +pmboxdraw.doc.r53046.tar.xz 07-Dec-2019 00:54 594984 +pmboxdraw.doc.tar.xz 07-Dec-2019 00:54 594984 +pmboxdraw.r53046.tar.xz 07-Dec-2019 00:54 7216 +pmboxdraw.source.r53046.tar.xz 07-Dec-2019 00:54 14376 +pmboxdraw.source.tar.xz 07-Dec-2019 00:54 14376 +pmboxdraw.tar.xz 07-Dec-2019 00:54 7216 +pmdraw.doc.r75932.tar.xz 31-Jul-2025 23:46 432764 +pmdraw.doc.tar.xz 31-Jul-2025 23:46 432764 +pmdraw.r75932.tar.xz 31-Jul-2025 23:46 10260 +pmdraw.tar.xz 31-Jul-2025 23:46 10260 +pmgraph.doc.r15878.tar.xz 28-Feb-2019 03:00 129312 +pmgraph.doc.tar.xz 28-Feb-2019 03:00 129312 +pmgraph.r15878.tar.xz 28-Feb-2019 03:00 10064 +pmgraph.tar.xz 28-Feb-2019 03:00 10064 +pmhanguljamo.doc.r75644.tar.xz 29-Jun-2025 23:46 969708 +pmhanguljamo.doc.tar.xz 29-Jun-2025 23:46 969708 +pmhanguljamo.r75644.tar.xz 29-Jun-2025 23:46 10240 +pmhanguljamo.tar.xz 29-Jun-2025 23:46 10240 +pmx.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 246028 +pmx.aarch64-linux.tar.xz 13-Feb-2025 00:50 246028 +pmx.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 199624 +pmx.amd64-freebsd.tar.xz 09-Feb-2025 00:55 199624 +pmx.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 199736 +pmx.amd64-netbsd.tar.xz 09-Feb-2025 18:16 199736 +pmx.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 271856 +pmx.armhf-linux.tar.xz 09-Feb-2025 00:55 271856 +pmx.doc.r75301.tar.xz 23-May-2025 23:46 636776 +pmx.doc.tar.xz 23-May-2025 23:46 636776 +pmx.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 199536 +pmx.i386-freebsd.tar.xz 09-Feb-2025 00:55 199536 +pmx.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 245116 +pmx.i386-linux.tar.xz 09-Feb-2025 00:55 245116 +pmx.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 159240 +pmx.i386-netbsd.tar.xz 09-Feb-2025 18:16 159240 +pmx.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 201608 +pmx.i386-solaris.tar.xz 09-Feb-2025 00:55 201608 +pmx.r75301.tar.xz 23-May-2025 23:46 10188 +pmx.tar.xz 23-May-2025 23:46 10188 +pmx.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 472608 +pmx.universal-darwin.tar.xz 09-Feb-2025 18:16 472608 +pmx.windows.r73796.tar.xz 09-Feb-2025 18:16 248924 +pmx.windows.tar.xz 09-Feb-2025 18:16 248924 +pmx.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 256744 +pmx.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 256744 +pmx.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 224584 +pmx.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 224584 +pmx.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 222320 +pmx.x86_64-linux.tar.xz 19-Feb-2025 00:47 222320 +pmx.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 252292 +pmx.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 252292 +pmx.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 227364 +pmx.x86_64-solaris.tar.xz 09-Feb-2025 00:55 227364 +pmxchords.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:00 344 +pmxchords.aarch64-linux.tar.xz 28-Feb-2019 03:00 344 +pmxchords.amd64-freebsd.r32405.tar.xz 28-Feb-2019 03:00 344 +pmxchords.amd64-freebsd.tar.xz 28-Feb-2019 03:00 344 +pmxchords.amd64-netbsd.r32405.tar.xz 28-Feb-2019 03:00 344 +pmxchords.amd64-netbsd.tar.xz 28-Feb-2019 03:00 344 +pmxchords.armhf-linux.r32405.tar.xz 28-Feb-2019 03:00 344 +pmxchords.armhf-linux.tar.xz 28-Feb-2019 03:00 344 +pmxchords.doc.r73868.tar.xz 11-Feb-2025 00:48 404040 +pmxchords.doc.tar.xz 11-Feb-2025 00:48 404040 +pmxchords.i386-freebsd.r32405.tar.xz 28-Feb-2019 03:00 344 +pmxchords.i386-freebsd.tar.xz 28-Feb-2019 03:00 344 +pmxchords.i386-linux.r32405.tar.xz 28-Feb-2019 03:00 344 +pmxchords.i386-linux.tar.xz 28-Feb-2019 03:00 344 +pmxchords.i386-netbsd.r32405.tar.xz 28-Feb-2019 03:00 344 +pmxchords.i386-netbsd.tar.xz 28-Feb-2019 03:00 344 +pmxchords.i386-solaris.r32405.tar.xz 28-Feb-2019 03:00 344 +pmxchords.i386-solaris.tar.xz 28-Feb-2019 03:00 344 +pmxchords.r73868.tar.xz 11-Feb-2025 00:48 5532 +pmxchords.tar.xz 11-Feb-2025 00:48 5532 +pmxchords.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +pmxchords.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +pmxchords.windows.r65891.tar.xz 20-Feb-2023 22:15 2308 +pmxchords.windows.tar.xz 20-Feb-2023 22:15 2308 +pmxchords.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:00 344 +pmxchords.x86_64-cygwin.tar.xz 28-Feb-2019 03:00 344 +pmxchords.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:00 352 +pmxchords.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:00 352 +pmxchords.x86_64-linux.r32405.tar.xz 28-Feb-2019 03:00 340 +pmxchords.x86_64-linux.tar.xz 28-Feb-2019 03:00 340 +pmxchords.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:00 348 +pmxchords.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:00 348 +pmxchords.x86_64-solaris.r32405.tar.xz 28-Feb-2019 03:00 344 +pmxchords.x86_64-solaris.tar.xz 28-Feb-2019 03:00 344 +pnas2009.r16287.tar.xz 28-Feb-2019 03:00 4032 +pnas2009.tar.xz 28-Feb-2019 03:00 4032 +poemscol.doc.r56082.tar.xz 09-Aug-2020 23:57 771156 +poemscol.doc.tar.xz 09-Aug-2020 23:57 771156 +poemscol.r56082.tar.xz 09-Aug-2020 23:57 19736 +poemscol.source.r56082.tar.xz 09-Aug-2020 23:57 91164 +poemscol.source.tar.xz 09-Aug-2020 23:57 91164 +poemscol.tar.xz 09-Aug-2020 23:57 19736 +poetry.doc.r53129.tar.xz 15-Dec-2019 00:53 267148 +poetry.doc.tar.xz 15-Dec-2019 00:53 267148 +poetry.r53129.tar.xz 15-Dec-2019 00:53 3288 +poetry.source.r53129.tar.xz 15-Dec-2019 00:53 17256 +poetry.source.tar.xz 15-Dec-2019 00:53 17256 +poetry.tar.xz 15-Dec-2019 00:53 3288 +poetrytex.doc.r68353.tar.xz 24-Sep-2023 00:07 292288 +poetrytex.doc.tar.xz 24-Sep-2023 00:07 292288 +poetrytex.r68353.tar.xz 24-Sep-2023 00:07 3072 +poetrytex.source.r68353.tar.xz 24-Sep-2023 00:07 13964 +poetrytex.source.tar.xz 24-Sep-2023 00:07 13964 +poetrytex.tar.xz 24-Sep-2023 00:07 3072 +poiretone.doc.r64856.tar.xz 29-Oct-2022 23:53 12964 +poiretone.doc.tar.xz 29-Oct-2022 23:53 12964 +poiretone.r64856.tar.xz 29-Oct-2022 23:53 172672 +poiretone.tar.xz 29-Oct-2022 23:53 172672 +polexpr.doc.r63337.tar.xz 19-May-2022 23:54 123176 +polexpr.doc.tar.xz 19-May-2022 23:54 123176 +polexpr.r63337.tar.xz 19-May-2022 23:54 39920 +polexpr.tar.xz 19-May-2022 23:54 39920 +polski.doc.r60322.tar.xz 25-Aug-2021 23:52 284808 +polski.doc.tar.xz 25-Aug-2021 23:52 284808 +polski.r60322.tar.xz 25-Aug-2021 23:52 9296 +polski.source.r60322.tar.xz 25-Aug-2021 23:52 30572 +polski.source.tar.xz 25-Aug-2021 23:52 30572 +polski.tar.xz 25-Aug-2021 23:52 9296 +poltawski.doc.r67718.tar.xz 23-Jul-2023 23:45 1392140 +poltawski.doc.tar.xz 23-Jul-2023 23:45 1392140 +poltawski.r67718.tar.xz 23-Jul-2023 23:45 6817740 +poltawski.tar.xz 23-Jul-2023 23:45 6817740 +polyglossia.doc.r76378.tar.xz 22-Sep-2025 23:50 437732 +polyglossia.doc.tar.xz 22-Sep-2025 23:50 437732 +polyglossia.r76378.tar.xz 22-Sep-2025 23:50 124704 +polyglossia.tar.xz 22-Sep-2025 23:50 124704 +polyhedra.doc.r68770.tar.xz 10-Nov-2023 00:45 186376 +polyhedra.doc.tar.xz 10-Nov-2023 00:45 186376 +polyhedra.r68770.tar.xz 10-Nov-2023 00:45 3500 +polyhedra.tar.xz 10-Nov-2023 00:45 3500 +polynom.doc.r44832.tar.xz 28-Feb-2019 03:00 400020 +polynom.doc.tar.xz 28-Feb-2019 03:00 400020 +polynom.r44832.tar.xz 28-Feb-2019 03:00 11156 +polynom.source.r44832.tar.xz 28-Feb-2019 03:00 30328 +polynom.source.tar.xz 28-Feb-2019 03:00 30328 +polynom.tar.xz 28-Feb-2019 03:00 11156 +polynomial.doc.r15878.tar.xz 28-Feb-2019 03:00 134132 +polynomial.doc.tar.xz 28-Feb-2019 03:00 134132 +polynomial.r15878.tar.xz 28-Feb-2019 03:00 2404 +polynomial.source.r15878.tar.xz 28-Feb-2019 03:00 4216 +polynomial.source.tar.xz 28-Feb-2019 03:00 4216 +polynomial.tar.xz 28-Feb-2019 03:00 2404 +polyomino.doc.r75885.tar.xz 24-Jul-2025 23:48 108128 +polyomino.doc.tar.xz 24-Jul-2025 23:48 108128 +polyomino.r75885.tar.xz 24-Jul-2025 23:48 2892 +polyomino.tar.xz 24-Jul-2025 23:48 2892 +polytable.doc.r55837.tar.xz 14-Jul-2020 23:55 446940 +polytable.doc.tar.xz 14-Jul-2020 23:55 446940 +polytable.r55837.tar.xz 14-Jul-2020 23:55 6408 +polytable.source.r55837.tar.xz 14-Jul-2020 23:55 21528 +polytable.source.tar.xz 14-Jul-2020 23:55 21528 +polytable.tar.xz 14-Jul-2020 23:55 6408 +poormanlog.doc.r63400.tar.xz 25-May-2022 23:53 2092 +poormanlog.doc.tar.xz 25-May-2022 23:53 2092 +poormanlog.r63400.tar.xz 25-May-2022 23:53 3812 +poormanlog.tar.xz 25-May-2022 23:53 3812 +postage.doc.r55920.tar.xz 23-Jul-2020 23:58 307920 +postage.doc.tar.xz 23-Jul-2020 23:58 307920 +postage.r55920.tar.xz 23-Jul-2020 23:58 2012 +postage.source.r55920.tar.xz 23-Jul-2020 23:58 4660 +postage.source.tar.xz 23-Jul-2020 23:58 4660 +postage.tar.xz 23-Jul-2020 23:58 2012 +postcards.doc.r75878.tar.xz 23-Jul-2025 23:50 1364 +postcards.doc.tar.xz 23-Jul-2025 23:50 1364 +postcards.r75878.tar.xz 23-Jul-2025 23:50 1836 +postcards.tar.xz 23-Jul-2025 23:50 1836 +poster-mac.doc.r18305.tar.xz 28-Feb-2019 03:00 93292 +poster-mac.doc.tar.xz 28-Feb-2019 03:00 93292 +poster-mac.r18305.tar.xz 28-Feb-2019 03:00 3152 +poster-mac.tar.xz 28-Feb-2019 03:00 3152 +postit.doc.r75925.tar.xz 30-Jul-2025 23:43 873260 +postit.doc.tar.xz 30-Jul-2025 23:43 873260 +postit.r75925.tar.xz 30-Jul-2025 23:43 4656 +postit.tar.xz 30-Jul-2025 23:43 4656 +postnotes.doc.r73045.tar.xz 06-Dec-2024 00:50 1090784 +postnotes.doc.tar.xz 06-Dec-2024 00:50 1090784 +postnotes.r73045.tar.xz 06-Dec-2024 00:50 11072 +postnotes.source.r73045.tar.xz 06-Dec-2024 00:49 31472 +postnotes.source.tar.xz 06-Dec-2024 00:49 31472 +postnotes.tar.xz 06-Dec-2024 00:50 11072 +powerdot-fuberlin.doc.r52922.tar.xz 26-Nov-2019 00:55 280080 +powerdot-fuberlin.doc.tar.xz 26-Nov-2019 00:55 280080 +powerdot-fuberlin.r52922.tar.xz 26-Nov-2019 00:55 2704 +powerdot-fuberlin.tar.xz 26-Nov-2019 00:55 2704 +powerdot-tuliplab.doc.r47963.tar.xz 28-Feb-2019 03:00 9412 +powerdot-tuliplab.doc.tar.xz 28-Feb-2019 03:00 9412 +powerdot-tuliplab.r47963.tar.xz 28-Feb-2019 03:00 1271908 +powerdot-tuliplab.tar.xz 28-Feb-2019 03:00 1271908 +powerdot.doc.r59272.tar.xz 20-May-2021 21:46 948160 +powerdot.doc.tar.xz 20-May-2021 21:46 948160 +powerdot.r59272.tar.xz 20-May-2021 21:46 26268 +powerdot.source.r59272.tar.xz 20-May-2021 21:46 67080 +powerdot.source.tar.xz 20-May-2021 21:46 67080 +powerdot.tar.xz 20-May-2021 21:46 26268 +ppmcheckpdf.aarch64-linux.r73030.tar.xz 04-Dec-2024 00:48 344 +ppmcheckpdf.aarch64-linux.tar.xz 04-Dec-2024 00:48 344 +ppmcheckpdf.amd64-freebsd.r73030.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.amd64-freebsd.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.amd64-netbsd.r73030.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.amd64-netbsd.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.armhf-linux.r73030.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.armhf-linux.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.doc.r74165.tar.xz 21-Feb-2025 00:51 38796 +ppmcheckpdf.doc.tar.xz 21-Feb-2025 00:51 38796 +ppmcheckpdf.i386-freebsd.r73030.tar.xz 04-Dec-2024 00:48 344 +ppmcheckpdf.i386-freebsd.tar.xz 04-Dec-2024 00:48 344 +ppmcheckpdf.i386-linux.r73030.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.i386-linux.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.i386-netbsd.r73030.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.i386-netbsd.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.i386-solaris.r73030.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.i386-solaris.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.r74165.tar.xz 21-Feb-2025 00:51 2708 +ppmcheckpdf.tar.xz 21-Feb-2025 00:51 2708 +ppmcheckpdf.universal-darwin.r73030.tar.xz 04-Dec-2024 00:48 344 +ppmcheckpdf.universal-darwin.tar.xz 04-Dec-2024 00:48 344 +ppmcheckpdf.windows.r73030.tar.xz 04-Dec-2024 00:48 2308 +ppmcheckpdf.windows.tar.xz 04-Dec-2024 00:48 2308 +ppmcheckpdf.x86_64-cygwin.r73030.tar.xz 04-Dec-2024 00:48 344 +ppmcheckpdf.x86_64-cygwin.tar.xz 04-Dec-2024 00:48 344 +ppmcheckpdf.x86_64-darwinlegacy.r73030.tar.xz 04-Dec-2024 00:48 348 +ppmcheckpdf.x86_64-darwinlegacy.tar.xz 04-Dec-2024 00:48 348 +ppmcheckpdf.x86_64-linux.r73030.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.x86_64-linux.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.x86_64-linuxmusl.r73030.tar.xz 04-Dec-2024 00:48 344 +ppmcheckpdf.x86_64-linuxmusl.tar.xz 04-Dec-2024 00:48 344 +ppmcheckpdf.x86_64-solaris.r73030.tar.xz 04-Dec-2024 00:48 340 +ppmcheckpdf.x86_64-solaris.tar.xz 04-Dec-2024 00:48 340 +ppr-prv.doc.r15878.tar.xz 28-Feb-2019 03:00 317360 +ppr-prv.doc.tar.xz 28-Feb-2019 03:00 317360 +ppr-prv.r15878.tar.xz 28-Feb-2019 03:00 5596 +ppr-prv.source.r15878.tar.xz 28-Feb-2019 03:00 9460 +ppr-prv.source.tar.xz 28-Feb-2019 03:00 9460 +ppr-prv.tar.xz 28-Feb-2019 03:00 5596 +ppt-slides.doc.r74971.tar.xz 17-Apr-2025 23:50 640444 +ppt-slides.doc.tar.xz 17-Apr-2025 23:50 640444 +ppt-slides.r74971.tar.xz 17-Apr-2025 23:50 4132 +ppt-slides.source.r74971.tar.xz 17-Apr-2025 23:50 6724 +ppt-slides.source.tar.xz 17-Apr-2025 23:50 6724 +ppt-slides.tar.xz 17-Apr-2025 23:50 4132 +pracjourn.doc.r61719.tar.xz 24-Jan-2022 00:55 386136 +pracjourn.doc.tar.xz 24-Jan-2022 00:55 386136 +pracjourn.r61719.tar.xz 24-Jan-2022 00:55 4628 +pracjourn.source.r61719.tar.xz 24-Jan-2022 00:55 15248 +pracjourn.source.tar.xz 24-Jan-2022 00:55 15248 +pracjourn.tar.xz 24-Jan-2022 00:55 4628 +practicalreports.doc.r52312.tar.xz 07-Oct-2019 23:54 185896 +practicalreports.doc.tar.xz 07-Oct-2019 23:54 185896 +practicalreports.r52312.tar.xz 07-Oct-2019 23:54 1964 +practicalreports.tar.xz 07-Oct-2019 23:54 1964 +precattl.doc.r63967.tar.xz 23-Jul-2022 23:55 379548 +precattl.doc.tar.xz 23-Jul-2022 23:55 379548 +precattl.r63967.tar.xz 23-Jul-2022 23:55 3588 +precattl.tar.xz 23-Jul-2022 23:55 3588 +prelim2e.doc.r57000.tar.xz 25-Nov-2020 00:56 427020 +prelim2e.doc.tar.xz 25-Nov-2020 00:56 427020 +prelim2e.r57000.tar.xz 25-Nov-2020 00:56 1904 +prelim2e.source.r57000.tar.xz 25-Nov-2020 00:56 6284 +prelim2e.source.tar.xz 25-Nov-2020 00:56 6284 +prelim2e.tar.xz 25-Nov-2020 00:56 1904 +preprint.doc.r30447.tar.xz 28-Feb-2019 03:00 634332 +preprint.doc.tar.xz 28-Feb-2019 03:00 634332 +preprint.r30447.tar.xz 28-Feb-2019 03:00 7064 +preprint.source.r30447.tar.xz 28-Feb-2019 03:00 36616 +preprint.source.tar.xz 28-Feb-2019 03:00 36616 +preprint.tar.xz 28-Feb-2019 03:00 7064 +prerex.doc.r54512.tar.xz 24-Mar-2020 01:03 791552 +prerex.doc.tar.xz 24-Mar-2020 01:03 791552 +prerex.r54512.tar.xz 24-Mar-2020 01:03 5408 +prerex.tar.xz 24-Mar-2020 01:03 5408 +present.doc.r50048.tar.xz 28-Feb-2019 03:00 814492 +present.doc.tar.xz 28-Feb-2019 03:00 814492 +present.r50048.tar.xz 28-Feb-2019 03:00 4364 +present.tar.xz 28-Feb-2019 03:00 4364 +pressrelease.doc.r35147.tar.xz 28-Feb-2019 03:00 617876 +pressrelease.doc.tar.xz 28-Feb-2019 03:00 617876 +pressrelease.r35147.tar.xz 28-Feb-2019 03:00 4040 +pressrelease.source.r35147.tar.xz 28-Feb-2019 03:00 10660 +pressrelease.source.tar.xz 28-Feb-2019 03:00 10660 +pressrelease.tar.xz 28-Feb-2019 03:00 4040 +prettyref.doc.r15878.tar.xz 28-Feb-2019 03:00 32696 +prettyref.doc.tar.xz 28-Feb-2019 03:00 32696 +prettyref.r15878.tar.xz 28-Feb-2019 03:00 1212 +prettyref.source.r15878.tar.xz 28-Feb-2019 03:00 2464 +prettyref.source.tar.xz 28-Feb-2019 03:00 2464 +prettyref.tar.xz 28-Feb-2019 03:00 1212 +prettytok.doc.r66884.tar.xz 18-Apr-2023 23:53 493056 +prettytok.doc.tar.xz 18-Apr-2023 23:53 493056 +prettytok.r66884.tar.xz 18-Apr-2023 23:53 6032 +prettytok.tar.xz 18-Apr-2023 23:53 6032 +preview.doc.r71662.tar.xz 01-Jul-2024 14:56 337316 +preview.doc.tar.xz 01-Jul-2024 14:56 337316 +preview.r71662.tar.xz 01-Jul-2024 14:56 6864 +preview.source.r71662.tar.xz 01-Jul-2024 14:56 22724 +preview.source.tar.xz 01-Jul-2024 14:56 22724 +preview.tar.xz 01-Jul-2024 14:56 6864 +prftree.doc.r54080.tar.xz 04-Mar-2020 22:53 363452 +prftree.doc.tar.xz 04-Mar-2020 22:53 363452 +prftree.r54080.tar.xz 04-Mar-2020 22:53 11776 +prftree.tar.xz 04-Mar-2020 22:53 11776 +principia.doc.r74710.tar.xz 21-Mar-2025 00:49 431444 +principia.doc.tar.xz 21-Mar-2025 00:49 431444 +principia.r74710.tar.xz 21-Mar-2025 00:49 8908 +principia.tar.xz 21-Mar-2025 00:49 8908 +printlen.doc.r19847.tar.xz 28-Feb-2019 03:00 245536 +printlen.doc.tar.xz 28-Feb-2019 03:00 245536 +printlen.r19847.tar.xz 28-Feb-2019 03:00 1868 +printlen.tar.xz 28-Feb-2019 03:00 1868 +prisma-flow-diagram.doc.r74874.tar.xz 07-Apr-2025 23:50 102352 +prisma-flow-diagram.doc.tar.xz 07-Apr-2025 23:50 102352 +prisma-flow-diagram.r74874.tar.xz 07-Apr-2025 23:50 1260 +prisma-flow-diagram.tar.xz 07-Apr-2025 23:50 1260 +proba.doc.r15878.tar.xz 28-Feb-2019 03:00 73056 +proba.doc.tar.xz 28-Feb-2019 03:00 73056 +proba.r15878.tar.xz 28-Feb-2019 03:00 1488 +proba.source.r15878.tar.xz 28-Feb-2019 03:00 3140 +proba.source.tar.xz 28-Feb-2019 03:00 3140 +proba.tar.xz 28-Feb-2019 03:00 1488 +probsoln.doc.r44783.tar.xz 28-Feb-2019 03:00 954428 +probsoln.doc.tar.xz 28-Feb-2019 03:00 954428 +probsoln.r44783.tar.xz 28-Feb-2019 03:00 7076 +probsoln.source.r44783.tar.xz 28-Feb-2019 03:00 25472 +probsoln.source.tar.xz 28-Feb-2019 03:00 25472 +probsoln.tar.xz 28-Feb-2019 03:00 7076 +prociagssymp.doc.r70888.tar.xz 08-Apr-2024 23:46 141996 +prociagssymp.doc.tar.xz 08-Apr-2024 23:46 141996 +prociagssymp.r70888.tar.xz 08-Apr-2024 23:46 1276 +prociagssymp.source.r70888.tar.xz 08-Apr-2024 23:46 3840 +prociagssymp.source.tar.xz 08-Apr-2024 23:46 3840 +prociagssymp.tar.xz 08-Apr-2024 23:46 1276 +prodint.doc.r21893.tar.xz 28-Feb-2019 03:00 32328 +prodint.doc.tar.xz 28-Feb-2019 03:00 32328 +prodint.r21893.tar.xz 28-Feb-2019 03:00 3856 +prodint.tar.xz 28-Feb-2019 03:00 3856 +productbox.doc.r20886.tar.xz 28-Feb-2019 03:00 378272 +productbox.doc.tar.xz 28-Feb-2019 03:00 378272 +productbox.r20886.tar.xz 28-Feb-2019 03:00 4944 +productbox.source.r20886.tar.xz 28-Feb-2019 03:00 15512 +productbox.source.tar.xz 28-Feb-2019 03:00 15512 +productbox.tar.xz 28-Feb-2019 03:00 4944 +profcollege.doc.r76163.tar.xz 27-Aug-2025 23:49 16634392 +profcollege.doc.tar.xz 27-Aug-2025 23:49 16634392 +profcollege.r76163.tar.xz 27-Aug-2025 23:49 1427820 +profcollege.tar.xz 27-Aug-2025 23:49 1427820 +proflabo.doc.r63147.tar.xz 27-Apr-2022 14:30 134096 +proflabo.doc.tar.xz 27-Apr-2022 14:30 134096 +proflabo.r63147.tar.xz 27-Apr-2022 14:30 2748 +proflabo.tar.xz 27-Apr-2022 14:30 2748 +proflycee.doc.r76393.tar.xz 24-Sep-2025 23:49 2707740 +proflycee.doc.tar.xz 24-Sep-2025 23:49 2707740 +proflycee.r76393.tar.xz 24-Sep-2025 23:49 485520 +proflycee.tar.xz 24-Sep-2025 23:49 485520 +profmaquette.doc.r75354.tar.xz 30-May-2025 23:48 452940 +profmaquette.doc.tar.xz 30-May-2025 23:48 452940 +profmaquette.r75354.tar.xz 30-May-2025 23:48 33944 +profmaquette.tar.xz 30-May-2025 23:48 33944 +profsio.doc.r76398.tar.xz 24-Sep-2025 23:49 579188 +profsio.doc.tar.xz 24-Sep-2025 23:49 579188 +profsio.r76398.tar.xz 24-Sep-2025 23:49 21076 +profsio.tar.xz 24-Sep-2025 23:49 21076 +program.doc.r44214.tar.xz 28-Feb-2019 03:00 49880 +program.doc.tar.xz 28-Feb-2019 03:00 49880 +program.r44214.tar.xz 28-Feb-2019 03:00 11780 +program.tar.xz 28-Feb-2019 03:00 11780 +progress.doc.r19519.tar.xz 28-Feb-2019 03:00 80808 +progress.doc.tar.xz 28-Feb-2019 03:00 80808 +progress.r19519.tar.xz 28-Feb-2019 03:00 4192 +progress.tar.xz 28-Feb-2019 03:00 4192 +progressbar.doc.r33822.tar.xz 28-Feb-2019 03:00 86236 +progressbar.doc.tar.xz 28-Feb-2019 03:00 86236 +progressbar.r33822.tar.xz 28-Feb-2019 03:00 2324 +progressbar.tar.xz 28-Feb-2019 03:00 2324 +projlib.doc.r72789.tar.xz 08-Nov-2024 00:48 41896 +projlib.doc.tar.xz 08-Nov-2024 00:48 41896 +projlib.r72789.tar.xz 08-Nov-2024 00:48 31436 +projlib.source.r72789.tar.xz 08-Nov-2024 00:48 31664 +projlib.source.tar.xz 08-Nov-2024 00:48 31664 +projlib.tar.xz 08-Nov-2024 00:48 31436 +pronunciation.doc.r73701.tar.xz 03-Feb-2025 00:44 132956 +pronunciation.doc.tar.xz 03-Feb-2025 00:44 132956 +pronunciation.r73701.tar.xz 03-Feb-2025 00:44 147840 +pronunciation.tar.xz 03-Feb-2025 00:44 147840 +proof-at-the-end.doc.r75479.tar.xz 11-Jun-2025 23:47 466564 +proof-at-the-end.doc.tar.xz 11-Jun-2025 23:47 466564 +proof-at-the-end.r75479.tar.xz 11-Jun-2025 23:47 7384 +proof-at-the-end.source.r75479.tar.xz 11-Jun-2025 23:47 21236 +proof-at-the-end.source.tar.xz 11-Jun-2025 23:47 21236 +proof-at-the-end.tar.xz 11-Jun-2025 23:47 7384 +proofread.doc.r61719.tar.xz 24-Jan-2022 00:55 290844 +proofread.doc.tar.xz 24-Jan-2022 00:55 290844 +proofread.r61719.tar.xz 24-Jan-2022 00:55 2588 +proofread.source.r61719.tar.xz 24-Jan-2022 00:55 6352 +proofread.source.tar.xz 24-Jan-2022 00:55 6352 +proofread.tar.xz 24-Jan-2022 00:55 2588 +prooftrees.doc.r76232.tar.xz 04-Sep-2025 23:50 1393856 +prooftrees.doc.tar.xz 04-Sep-2025 23:50 1393856 +prooftrees.r76232.tar.xz 04-Sep-2025 23:50 9232 +prooftrees.source.r76232.tar.xz 04-Sep-2025 23:50 42780 +prooftrees.source.tar.xz 04-Sep-2025 23:50 42780 +prooftrees.tar.xz 04-Sep-2025 23:50 9232 +properties.doc.r15878.tar.xz 28-Feb-2019 03:00 1104 +properties.doc.tar.xz 28-Feb-2019 03:00 1104 +properties.r15878.tar.xz 28-Feb-2019 03:00 1188 +properties.tar.xz 28-Feb-2019 03:00 1188 +proposal.doc.r40538.tar.xz 28-Feb-2019 03:00 1079828 +proposal.doc.tar.xz 28-Feb-2019 03:00 1079828 +proposal.r40538.tar.xz 28-Feb-2019 03:00 17220 +proposal.source.r40538.tar.xz 28-Feb-2019 03:00 49544 +proposal.source.tar.xz 28-Feb-2019 03:00 49544 +proposal.tar.xz 28-Feb-2019 03:00 17220 +prosper.doc.r33033.tar.xz 28-Feb-2019 03:00 340196 +prosper.doc.tar.xz 28-Feb-2019 03:00 340196 +prosper.r33033.tar.xz 28-Feb-2019 03:00 94984 +prosper.tar.xz 28-Feb-2019 03:00 94984 +protex.doc.r41633.tar.xz 28-Feb-2019 03:00 5496 +protex.doc.tar.xz 28-Feb-2019 03:00 5496 +protex.r41633.tar.xz 28-Feb-2019 03:00 14552 +protex.tar.xz 28-Feb-2019 03:00 14552 +protocol.doc.r25562.tar.xz 28-Feb-2019 03:00 324704 +protocol.doc.tar.xz 28-Feb-2019 03:00 324704 +protocol.r25562.tar.xz 28-Feb-2019 03:00 2796 +protocol.source.r25562.tar.xz 28-Feb-2019 03:00 6556 +protocol.source.tar.xz 28-Feb-2019 03:00 6556 +protocol.tar.xz 28-Feb-2019 03:00 2796 +prtec.doc.r71883.tar.xz 23-Jul-2024 23:48 385976 +prtec.doc.tar.xz 23-Jul-2024 23:48 385976 +prtec.r71883.tar.xz 23-Jul-2024 23:48 11628 +prtec.tar.xz 23-Jul-2024 23:48 11628 +przechlewski-book.doc.r23552.tar.xz 28-Feb-2019 03:00 289780 +przechlewski-book.doc.tar.xz 28-Feb-2019 03:00 289780 +przechlewski-book.r23552.tar.xz 28-Feb-2019 03:00 9680 +przechlewski-book.tar.xz 28-Feb-2019 03:00 9680 +ps2eps.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 3928 +ps2eps.aarch64-linux.tar.xz 13-Feb-2025 00:50 3928 +ps2eps.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 4240 +ps2eps.amd64-freebsd.tar.xz 09-Feb-2025 00:55 4240 +ps2eps.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 4584 +ps2eps.amd64-netbsd.tar.xz 09-Feb-2025 18:16 4584 +ps2eps.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 3992 +ps2eps.armhf-linux.tar.xz 09-Feb-2025 00:55 3992 +ps2eps.doc.r62856.tar.xz 21-Mar-2022 15:46 60664 +ps2eps.doc.tar.xz 21-Mar-2022 15:46 60664 +ps2eps.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 4244 +ps2eps.i386-freebsd.tar.xz 09-Feb-2025 00:55 4244 +ps2eps.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 4176 +ps2eps.i386-linux.tar.xz 09-Feb-2025 00:55 4176 +ps2eps.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 4548 +ps2eps.i386-netbsd.tar.xz 09-Feb-2025 18:16 4548 +ps2eps.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 4644 +ps2eps.i386-solaris.tar.xz 09-Feb-2025 00:55 4644 +ps2eps.r62856.tar.xz 21-Mar-2022 15:46 10892 +ps2eps.tar.xz 21-Mar-2022 15:46 10892 +ps2eps.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 12368 +ps2eps.universal-darwin.tar.xz 09-Feb-2025 18:16 12368 +ps2eps.windows.r73796.tar.xz 09-Feb-2025 18:16 5820 +ps2eps.windows.tar.xz 09-Feb-2025 18:16 5820 +ps2eps.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 4512 +ps2eps.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 4512 +ps2eps.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 3552 +ps2eps.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 3552 +ps2eps.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 4292 +ps2eps.x86_64-linux.tar.xz 19-Feb-2025 00:47 4292 +ps2eps.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 3976 +ps2eps.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 3976 +ps2eps.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 4992 +ps2eps.x86_64-solaris.tar.xz 09-Feb-2025 00:55 4992 +ps2pk.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 86080 +ps2pk.aarch64-linux.tar.xz 13-Feb-2025 00:50 86080 +ps2pk.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 84268 +ps2pk.amd64-freebsd.tar.xz 09-Feb-2025 00:55 84268 +ps2pk.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 83336 +ps2pk.amd64-netbsd.tar.xz 09-Feb-2025 18:16 83336 +ps2pk.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 79096 +ps2pk.armhf-linux.tar.xz 09-Feb-2025 00:55 79096 +ps2pk.doc.r75712.tar.xz 07-Jul-2025 23:51 62484 +ps2pk.doc.tar.xz 07-Jul-2025 23:51 62484 +ps2pk.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 84280 +ps2pk.i386-freebsd.tar.xz 09-Feb-2025 00:55 84280 +ps2pk.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 99600 +ps2pk.i386-linux.tar.xz 09-Feb-2025 00:55 99600 +ps2pk.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 74160 +ps2pk.i386-netbsd.tar.xz 09-Feb-2025 18:16 74160 +ps2pk.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 88676 +ps2pk.i386-solaris.tar.xz 09-Feb-2025 00:55 88676 +ps2pk.r75712.tar.xz 07-Jul-2025 23:51 508 +ps2pk.tar.xz 07-Jul-2025 23:51 508 +ps2pk.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 176088 +ps2pk.universal-darwin.tar.xz 09-Feb-2025 18:16 176088 +ps2pk.windows.r73796.tar.xz 09-Feb-2025 18:16 60724 +ps2pk.windows.tar.xz 09-Feb-2025 18:16 60724 +ps2pk.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 61800 +ps2pk.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 61800 +ps2pk.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 85088 +ps2pk.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 85088 +ps2pk.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 91832 +ps2pk.x86_64-linux.tar.xz 19-Feb-2025 00:47 91832 +ps2pk.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 94396 +ps2pk.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 94396 +ps2pk.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 99396 +ps2pk.x86_64-solaris.tar.xz 09-Feb-2025 00:55 99396 +psbao.doc.r55013.tar.xz 04-May-2020 23:53 96528 +psbao.doc.tar.xz 04-May-2020 23:53 96528 +psbao.r55013.tar.xz 04-May-2020 23:53 4116 +psbao.tar.xz 04-May-2020 23:53 4116 +pseudo.doc.r66638.tar.xz 22-Mar-2023 00:52 1026976 +pseudo.doc.tar.xz 22-Mar-2023 00:52 1026976 +pseudo.r66638.tar.xz 22-Mar-2023 00:52 6868 +pseudo.tar.xz 22-Mar-2023 00:52 6868 +pseudocode.doc.r54080.tar.xz 04-Mar-2020 22:53 134004 +pseudocode.doc.tar.xz 04-Mar-2020 22:53 134004 +pseudocode.r54080.tar.xz 04-Mar-2020 22:53 2420 +pseudocode.tar.xz 04-Mar-2020 22:53 2420 +psfrag-italian.doc.r15878.tar.xz 28-Feb-2019 03:00 136192 +psfrag-italian.doc.tar.xz 28-Feb-2019 03:00 136192 +psfrag-italian.r15878.tar.xz 28-Feb-2019 03:00 400 +psfrag-italian.tar.xz 28-Feb-2019 03:00 400 +psfrag.doc.r15878.tar.xz 28-Feb-2019 03:00 68776 +psfrag.doc.tar.xz 28-Feb-2019 03:00 68776 +psfrag.r15878.tar.xz 28-Feb-2019 03:00 4464 +psfrag.source.r15878.tar.xz 28-Feb-2019 03:00 13816 +psfrag.source.tar.xz 28-Feb-2019 03:00 13816 +psfrag.tar.xz 28-Feb-2019 03:00 4464 +psfragx.doc.r26243.tar.xz 28-Feb-2019 03:00 365048 +psfragx.doc.tar.xz 28-Feb-2019 03:00 365048 +psfragx.r26243.tar.xz 28-Feb-2019 03:00 3792 +psfragx.source.r26243.tar.xz 28-Feb-2019 03:00 16584 +psfragx.source.tar.xz 28-Feb-2019 03:00 16584 +psfragx.tar.xz 28-Feb-2019 03:00 3792 +psgo.doc.r15878.tar.xz 28-Feb-2019 03:00 86520 +psgo.doc.tar.xz 28-Feb-2019 03:00 86520 +psgo.r15878.tar.xz 28-Feb-2019 03:00 3036 +psgo.tar.xz 28-Feb-2019 03:00 3036 +psizzl.doc.r69742.tar.xz 08-Feb-2024 00:46 5448 +psizzl.doc.tar.xz 08-Feb-2024 00:46 5448 +psizzl.r69742.tar.xz 08-Feb-2024 00:46 23072 +psizzl.source.r69742.tar.xz 08-Feb-2024 00:46 636 +psizzl.source.tar.xz 08-Feb-2024 00:46 636 +psizzl.tar.xz 08-Feb-2024 00:46 23072 +pslatex.r67469.tar.xz 25-Jun-2023 23:45 5832 +pslatex.source.r67469.tar.xz 25-Jun-2023 23:45 1204 +pslatex.source.tar.xz 25-Jun-2023 23:45 1204 +pslatex.tar.xz 25-Jun-2023 23:45 5832 +psnfss.doc.r54694.tar.xz 12-Apr-2020 23:55 260860 +psnfss.doc.tar.xz 12-Apr-2020 23:55 260860 +psnfss.r54694.tar.xz 12-Apr-2020 23:55 11936 +psnfss.source.r54694.tar.xz 12-Apr-2020 23:54 8176 +psnfss.source.tar.xz 12-Apr-2020 23:54 8176 +psnfss.tar.xz 12-Apr-2020 23:55 11936 +pspicture.doc.r15878.tar.xz 28-Feb-2019 03:00 42636 +pspicture.doc.tar.xz 28-Feb-2019 03:00 42636 +pspicture.r15878.tar.xz 28-Feb-2019 03:00 1804 +pspicture.source.r15878.tar.xz 28-Feb-2019 03:00 6036 +pspicture.source.tar.xz 28-Feb-2019 03:00 6036 +pspicture.tar.xz 28-Feb-2019 03:00 1804 +pst-2dplot.doc.r15878.tar.xz 28-Feb-2019 03:00 69600 +pst-2dplot.doc.tar.xz 28-Feb-2019 03:00 69600 +pst-2dplot.r15878.tar.xz 28-Feb-2019 03:00 1876 +pst-2dplot.tar.xz 28-Feb-2019 03:00 1876 +pst-3d.doc.r17257.tar.xz 28-Feb-2019 03:00 100796 +pst-3d.doc.tar.xz 28-Feb-2019 03:00 100796 +pst-3d.r17257.tar.xz 28-Feb-2019 03:00 3460 +pst-3d.source.r17257.tar.xz 28-Feb-2019 03:00 948 +pst-3d.source.tar.xz 28-Feb-2019 03:00 948 +pst-3d.tar.xz 28-Feb-2019 03:00 3460 +pst-3dplot.doc.r68727.tar.xz 03-Nov-2023 00:46 2753668 +pst-3dplot.doc.tar.xz 03-Nov-2023 00:46 2753668 +pst-3dplot.r68727.tar.xz 03-Nov-2023 00:46 21936 +pst-3dplot.tar.xz 03-Nov-2023 00:46 21936 +pst-abspos.doc.r15878.tar.xz 28-Feb-2019 03:00 57048 +pst-abspos.doc.tar.xz 28-Feb-2019 03:00 57048 +pst-abspos.r15878.tar.xz 28-Feb-2019 03:00 2004 +pst-abspos.source.r15878.tar.xz 28-Feb-2019 03:00 944 +pst-abspos.source.tar.xz 28-Feb-2019 03:00 944 +pst-abspos.tar.xz 28-Feb-2019 03:00 2004 +pst-am.doc.r19591.tar.xz 28-Feb-2019 03:00 843332 +pst-am.doc.tar.xz 28-Feb-2019 03:00 843332 +pst-am.r19591.tar.xz 28-Feb-2019 03:00 3020 +pst-am.source.r19591.tar.xz 28-Feb-2019 03:00 928 +pst-am.source.tar.xz 28-Feb-2019 03:00 928 +pst-am.tar.xz 28-Feb-2019 03:00 3020 +pst-antiprism.doc.r46643.tar.xz 28-Feb-2019 03:00 302008 +pst-antiprism.doc.tar.xz 28-Feb-2019 03:00 302008 +pst-antiprism.r46643.tar.xz 28-Feb-2019 03:00 2584 +pst-antiprism.tar.xz 28-Feb-2019 03:00 2584 +pst-arrow.doc.r61069.tar.xz 17-Nov-2021 00:54 138288 +pst-arrow.doc.tar.xz 17-Nov-2021 00:54 138288 +pst-arrow.r61069.tar.xz 17-Nov-2021 00:54 3356 +pst-arrow.tar.xz 17-Nov-2021 00:54 3356 +pst-asr.doc.r22138.tar.xz 28-Feb-2019 03:00 271600 +pst-asr.doc.tar.xz 28-Feb-2019 03:00 271600 +pst-asr.r22138.tar.xz 28-Feb-2019 03:00 6156 +pst-asr.tar.xz 28-Feb-2019 03:00 6156 +pst-bar.doc.r64331.tar.xz 10-Sep-2022 23:53 142976 +pst-bar.doc.tar.xz 10-Sep-2022 23:53 142976 +pst-bar.r64331.tar.xz 10-Sep-2022 23:53 3892 +pst-bar.tar.xz 10-Sep-2022 23:53 3892 +pst-barcode.doc.r64182.tar.xz 23-Aug-2022 23:56 1363564 +pst-barcode.doc.tar.xz 23-Aug-2022 23:56 1363564 +pst-barcode.r64182.tar.xz 23-Aug-2022 23:56 129680 +pst-barcode.tar.xz 23-Aug-2022 23:56 129680 +pst-bezier.doc.r41981.tar.xz 28-Feb-2019 03:00 972072 +pst-bezier.doc.tar.xz 28-Feb-2019 03:00 972072 +pst-bezier.r41981.tar.xz 28-Feb-2019 03:00 6256 +pst-bezier.tar.xz 28-Feb-2019 03:00 6256 +pst-blur.doc.r15878.tar.xz 28-Feb-2019 03:00 79100 +pst-blur.doc.tar.xz 28-Feb-2019 03:00 79100 +pst-blur.r15878.tar.xz 28-Feb-2019 03:00 2248 +pst-blur.source.r15878.tar.xz 28-Feb-2019 03:00 7156 +pst-blur.source.tar.xz 28-Feb-2019 03:00 7156 +pst-blur.tar.xz 28-Feb-2019 03:00 2248 +pst-bspline.doc.r40685.tar.xz 28-Feb-2019 03:00 161708 +pst-bspline.doc.tar.xz 28-Feb-2019 03:00 161708 +pst-bspline.r40685.tar.xz 28-Feb-2019 03:00 8552 +pst-bspline.tar.xz 28-Feb-2019 03:00 8552 +pst-calculate.doc.r49817.tar.xz 28-Feb-2019 03:00 33152 +pst-calculate.doc.tar.xz 28-Feb-2019 03:00 33152 +pst-calculate.r49817.tar.xz 28-Feb-2019 03:00 1284 +pst-calculate.tar.xz 28-Feb-2019 03:00 1284 +pst-calendar.doc.r60480.tar.xz 12-Sep-2021 23:53 142076 +pst-calendar.doc.tar.xz 12-Sep-2021 23:53 142076 +pst-calendar.r60480.tar.xz 12-Sep-2021 23:53 4328 +pst-calendar.tar.xz 12-Sep-2021 23:53 4328 +pst-cie.doc.r60959.tar.xz 06-Nov-2021 00:52 20261756 +pst-cie.doc.tar.xz 06-Nov-2021 00:52 20261756 +pst-cie.r60959.tar.xz 06-Nov-2021 00:53 17948 +pst-cie.tar.xz 06-Nov-2021 00:53 17948 +pst-circ.doc.r72519.tar.xz 10-Oct-2024 23:46 522164 +pst-circ.doc.tar.xz 10-Oct-2024 23:46 522164 +pst-circ.r72519.tar.xz 10-Oct-2024 23:46 25072 +pst-circ.tar.xz 10-Oct-2024 23:46 25072 +pst-coil.doc.r75878.tar.xz 23-Jul-2025 23:50 3702000 +pst-coil.doc.tar.xz 23-Jul-2025 23:50 3702000 +pst-coil.r75878.tar.xz 23-Jul-2025 23:50 4456 +pst-coil.tar.xz 23-Jul-2025 23:50 4456 +pst-contourplot.doc.r48230.tar.xz 28-Feb-2019 03:00 764392 +pst-contourplot.doc.tar.xz 28-Feb-2019 03:00 764392 +pst-contourplot.r48230.tar.xz 28-Feb-2019 03:00 3624 +pst-contourplot.tar.xz 28-Feb-2019 03:00 3624 +pst-cox.doc.r15878.tar.xz 28-Feb-2019 03:00 1069364 +pst-cox.doc.tar.xz 28-Feb-2019 03:00 1069364 +pst-cox.r15878.tar.xz 28-Feb-2019 03:00 221952 +pst-cox.tar.xz 28-Feb-2019 03:00 221952 +pst-dart.doc.r60476.tar.xz 11-Sep-2021 23:51 340900 +pst-dart.doc.tar.xz 11-Sep-2021 23:51 340900 +pst-dart.r60476.tar.xz 11-Sep-2021 23:51 2228 +pst-dart.tar.xz 11-Sep-2021 23:51 2228 +pst-dbicons.doc.r17556.tar.xz 28-Feb-2019 03:00 133024 +pst-dbicons.doc.tar.xz 28-Feb-2019 03:00 133024 +pst-dbicons.r17556.tar.xz 28-Feb-2019 03:00 3332 +pst-dbicons.source.r17556.tar.xz 28-Feb-2019 03:00 10216 +pst-dbicons.source.tar.xz 28-Feb-2019 03:00 10216 +pst-dbicons.tar.xz 28-Feb-2019 03:00 3332 +pst-diffraction.doc.r71819.tar.xz 16-Jul-2024 23:48 22674048 +pst-diffraction.doc.tar.xz 16-Jul-2024 23:48 22674048 +pst-diffraction.r71819.tar.xz 16-Jul-2024 23:48 5188 +pst-diffraction.tar.xz 16-Jul-2024 23:48 5188 +pst-electricfield.doc.r29803.tar.xz 28-Feb-2019 03:00 5271200 +pst-electricfield.doc.tar.xz 28-Feb-2019 03:00 5271200 +pst-electricfield.r29803.tar.xz 28-Feb-2019 03:00 3700 +pst-electricfield.source.r29803.tar.xz 28-Feb-2019 03:00 1536 +pst-electricfield.source.tar.xz 28-Feb-2019 03:00 1536 +pst-electricfield.tar.xz 28-Feb-2019 03:00 3700 +pst-eps.doc.r15878.tar.xz 28-Feb-2019 03:00 78588 +pst-eps.doc.tar.xz 28-Feb-2019 03:00 78588 +pst-eps.r15878.tar.xz 28-Feb-2019 03:00 2968 +pst-eps.source.r15878.tar.xz 28-Feb-2019 03:00 816 +pst-eps.source.tar.xz 28-Feb-2019 03:00 816 +pst-eps.tar.xz 28-Feb-2019 03:00 2968 +pst-eucl-translation-bg.doc.r19296.tar.xz 28-Feb-2019 03:00 362324 +pst-eucl-translation-bg.doc.tar.xz 28-Feb-2019 03:00 362324 +pst-eucl-translation-bg.r19296.tar.xz 28-Feb-2019 03:00 448 +pst-eucl-translation-bg.tar.xz 28-Feb-2019 03:00 448 +pst-eucl.doc.r66924.tar.xz 23-Apr-2023 23:54 1622988 +pst-eucl.doc.tar.xz 23-Apr-2023 23:54 1622988 +pst-eucl.r66924.tar.xz 23-Apr-2023 23:54 53388 +pst-eucl.tar.xz 23-Apr-2023 23:54 53388 +pst-exa.doc.r45289.tar.xz 28-Feb-2019 03:00 63352 +pst-exa.doc.tar.xz 28-Feb-2019 03:00 63352 +pst-exa.r45289.tar.xz 28-Feb-2019 03:00 3236 +pst-exa.tar.xz 28-Feb-2019 03:00 3236 +pst-feyn.doc.r48781.tar.xz 28-Feb-2019 03:01 140408 +pst-feyn.doc.tar.xz 28-Feb-2019 03:01 140408 +pst-feyn.r48781.tar.xz 28-Feb-2019 03:01 6228 +pst-feyn.tar.xz 28-Feb-2019 03:01 6228 +pst-fill.doc.r60671.tar.xz 01-Oct-2021 23:56 838084 +pst-fill.doc.tar.xz 01-Oct-2021 23:56 838084 +pst-fill.r60671.tar.xz 01-Oct-2021 23:56 3864 +pst-fill.tar.xz 01-Oct-2021 23:56 3864 +pst-fit.doc.r70686.tar.xz 19-Mar-2024 00:45 131236 +pst-fit.doc.tar.xz 19-Mar-2024 00:45 131236 +pst-fit.r70686.tar.xz 19-Mar-2024 00:45 8188 +pst-fit.tar.xz 19-Mar-2024 00:45 8188 +pst-flags.doc.r65501.tar.xz 10-Jan-2023 00:52 1230264 +pst-flags.doc.tar.xz 10-Jan-2023 00:52 1230264 +pst-flags.r65501.tar.xz 10-Jan-2023 00:52 1243392 +pst-flags.tar.xz 10-Jan-2023 00:52 1243392 +pst-fr3d.doc.r15878.tar.xz 28-Feb-2019 03:01 171192 +pst-fr3d.doc.tar.xz 28-Feb-2019 03:01 171192 +pst-fr3d.r15878.tar.xz 28-Feb-2019 03:01 2132 +pst-fr3d.source.r15878.tar.xz 28-Feb-2019 03:01 7608 +pst-fr3d.source.tar.xz 28-Feb-2019 03:01 7608 +pst-fr3d.tar.xz 28-Feb-2019 03:01 2132 +pst-fractal.doc.r64714.tar.xz 15-Oct-2022 23:55 21927176 +pst-fractal.doc.tar.xz 15-Oct-2022 23:55 21927176 +pst-fractal.r64714.tar.xz 15-Oct-2022 23:56 10716 +pst-fractal.tar.xz 15-Oct-2022 23:56 10716 +pst-fun.doc.r17909.tar.xz 28-Feb-2019 03:01 380444 +pst-fun.doc.tar.xz 28-Feb-2019 03:01 380444 +pst-fun.r17909.tar.xz 28-Feb-2019 03:01 24440 +pst-fun.source.r17909.tar.xz 28-Feb-2019 03:01 932 +pst-fun.source.tar.xz 28-Feb-2019 03:01 932 +pst-fun.tar.xz 28-Feb-2019 03:01 24440 +pst-func.doc.r70822.tar.xz 31-Mar-2024 23:49 4038724 +pst-func.doc.tar.xz 31-Mar-2024 23:49 4038724 +pst-func.r70822.tar.xz 31-Mar-2024 23:50 21008 +pst-func.tar.xz 31-Mar-2024 23:50 21008 +pst-gantt.doc.r35832.tar.xz 28-Feb-2019 03:01 87420 +pst-gantt.doc.tar.xz 28-Feb-2019 03:01 87420 +pst-gantt.r35832.tar.xz 28-Feb-2019 03:01 2716 +pst-gantt.tar.xz 28-Feb-2019 03:01 2716 +pst-geo.doc.r74247.tar.xz 24-Feb-2025 00:50 137077840 +pst-geo.doc.tar.xz 24-Feb-2025 00:50 137077840 +pst-geo.r74247.tar.xz 24-Feb-2025 00:50 24297580 +pst-geo.tar.xz 24-Feb-2025 00:50 24297580 +pst-geometrictools.doc.r70953.tar.xz 15-Apr-2024 23:47 225964 +pst-geometrictools.doc.tar.xz 15-Apr-2024 23:47 225964 +pst-geometrictools.r70953.tar.xz 15-Apr-2024 23:47 7484 +pst-geometrictools.tar.xz 15-Apr-2024 23:47 7484 +pst-gr3d.doc.r15878.tar.xz 28-Feb-2019 03:01 157396 +pst-gr3d.doc.tar.xz 28-Feb-2019 03:01 157396 +pst-gr3d.r15878.tar.xz 28-Feb-2019 03:01 2500 +pst-gr3d.source.r15878.tar.xz 28-Feb-2019 03:01 8788 +pst-gr3d.source.tar.xz 28-Feb-2019 03:01 8788 +pst-gr3d.tar.xz 28-Feb-2019 03:01 2500 +pst-grad.doc.r15878.tar.xz 28-Feb-2019 03:01 215188 +pst-grad.doc.tar.xz 28-Feb-2019 03:01 215188 +pst-grad.r15878.tar.xz 28-Feb-2019 03:01 3796 +pst-grad.tar.xz 28-Feb-2019 03:01 3796 +pst-graphicx.doc.r21717.tar.xz 28-Feb-2019 03:01 752 +pst-graphicx.doc.tar.xz 28-Feb-2019 03:01 752 +pst-graphicx.r21717.tar.xz 28-Feb-2019 03:01 1112 +pst-graphicx.tar.xz 28-Feb-2019 03:01 1112 +pst-hsb.doc.r66739.tar.xz 02-Apr-2023 23:54 199780 +pst-hsb.doc.tar.xz 02-Apr-2023 23:54 199780 +pst-hsb.r66739.tar.xz 02-Apr-2023 23:54 2292 +pst-hsb.tar.xz 02-Apr-2023 23:54 2292 +pst-infixplot.doc.r15878.tar.xz 28-Feb-2019 03:01 155392 +pst-infixplot.doc.tar.xz 28-Feb-2019 03:01 155392 +pst-infixplot.r15878.tar.xz 28-Feb-2019 03:01 3340 +pst-infixplot.tar.xz 28-Feb-2019 03:01 3340 +pst-intersect.doc.r33210.tar.xz 28-Feb-2019 03:01 165404 +pst-intersect.doc.tar.xz 28-Feb-2019 03:01 165404 +pst-intersect.r33210.tar.xz 28-Feb-2019 03:01 9820 +pst-intersect.source.r33210.tar.xz 28-Feb-2019 03:01 27412 +pst-intersect.source.tar.xz 28-Feb-2019 03:01 27412 +pst-intersect.tar.xz 28-Feb-2019 03:01 9820 +pst-jtree.doc.r20946.tar.xz 28-Feb-2019 03:01 304048 +pst-jtree.doc.tar.xz 28-Feb-2019 03:01 304048 +pst-jtree.r20946.tar.xz 28-Feb-2019 03:01 6296 +pst-jtree.tar.xz 28-Feb-2019 03:01 6296 +pst-knot.doc.r16033.tar.xz 28-Feb-2019 03:01 53744 +pst-knot.doc.tar.xz 28-Feb-2019 03:01 53744 +pst-knot.r16033.tar.xz 28-Feb-2019 03:01 14940 +pst-knot.tar.xz 28-Feb-2019 03:01 14940 +pst-labo.doc.r74874.tar.xz 07-Apr-2025 23:50 2120924 +pst-labo.doc.tar.xz 07-Apr-2025 23:50 2120924 +pst-labo.r74874.tar.xz 07-Apr-2025 23:50 11456 +pst-labo.tar.xz 07-Apr-2025 23:50 11456 +pst-layout.doc.r29803.tar.xz 28-Feb-2019 03:01 82676 +pst-layout.doc.tar.xz 28-Feb-2019 03:01 82676 +pst-layout.r29803.tar.xz 28-Feb-2019 03:01 3780 +pst-layout.tar.xz 28-Feb-2019 03:01 3780 +pst-lens.doc.r15878.tar.xz 28-Feb-2019 03:01 453808 +pst-lens.doc.tar.xz 28-Feb-2019 03:01 453808 +pst-lens.r15878.tar.xz 28-Feb-2019 03:01 2060 +pst-lens.source.r15878.tar.xz 28-Feb-2019 03:01 10572 +pst-lens.source.tar.xz 28-Feb-2019 03:01 10572 +pst-lens.tar.xz 28-Feb-2019 03:01 2060 +pst-light3d.doc.r15878.tar.xz 28-Feb-2019 03:01 836124 +pst-light3d.doc.tar.xz 28-Feb-2019 03:01 836124 +pst-light3d.r15878.tar.xz 28-Feb-2019 03:01 2536 +pst-light3d.source.r15878.tar.xz 28-Feb-2019 03:01 824 +pst-light3d.source.tar.xz 28-Feb-2019 03:01 824 +pst-light3d.tar.xz 28-Feb-2019 03:01 2536 +pst-lsystem.doc.r49556.tar.xz 28-Feb-2019 03:01 2763276 +pst-lsystem.doc.tar.xz 28-Feb-2019 03:01 2763276 +pst-lsystem.r49556.tar.xz 28-Feb-2019 03:01 2564 +pst-lsystem.tar.xz 28-Feb-2019 03:01 2564 +pst-magneticfield.doc.r69493.tar.xz 20-Jan-2024 00:45 23094696 +pst-magneticfield.doc.tar.xz 20-Jan-2024 00:45 23094696 +pst-magneticfield.r69493.tar.xz 20-Jan-2024 00:45 5508 +pst-magneticfield.tar.xz 20-Jan-2024 00:45 5508 +pst-marble.doc.r50925.tar.xz 02-May-2019 23:40 20207432 +pst-marble.doc.tar.xz 02-May-2019 23:40 20207432 +pst-marble.r50925.tar.xz 02-May-2019 23:40 8560 +pst-marble.tar.xz 02-May-2019 23:40 8560 +pst-math.doc.r67535.tar.xz 03-Jul-2023 23:43 226768 +pst-math.doc.tar.xz 03-Jul-2023 23:43 226768 +pst-math.r67535.tar.xz 03-Jul-2023 23:43 5208 +pst-math.tar.xz 03-Jul-2023 23:43 5208 +pst-mirror.doc.r71294.tar.xz 18-May-2024 23:56 7288916 +pst-mirror.doc.tar.xz 18-May-2024 23:56 7288916 +pst-mirror.r71294.tar.xz 18-May-2024 23:56 12212 +pst-mirror.tar.xz 18-May-2024 23:56 12212 +pst-moire.doc.r60411.tar.xz 03-Sep-2021 23:52 8296868 +pst-moire.doc.tar.xz 03-Sep-2021 23:52 8296868 +pst-moire.r60411.tar.xz 03-Sep-2021 23:52 5328 +pst-moire.tar.xz 03-Sep-2021 23:52 5328 +pst-node.doc.r71773.tar.xz 11-Jul-2024 23:47 709828 +pst-node.doc.tar.xz 11-Jul-2024 23:47 709828 +pst-node.r71773.tar.xz 11-Jul-2024 23:47 25348 +pst-node.tar.xz 11-Jul-2024 23:47 25348 +pst-ob3d.doc.r54514.tar.xz 25-Mar-2020 15:13 168200 +pst-ob3d.doc.tar.xz 25-Mar-2020 15:13 168200 +pst-ob3d.r54514.tar.xz 25-Mar-2020 15:13 2720 +pst-ob3d.source.r54514.tar.xz 25-Mar-2020 15:13 9788 +pst-ob3d.source.tar.xz 25-Mar-2020 15:13 9788 +pst-ob3d.tar.xz 25-Mar-2020 15:13 2720 +pst-ode.doc.r69296.tar.xz 05-Jan-2024 00:45 122324 +pst-ode.doc.tar.xz 05-Jan-2024 00:45 122324 +pst-ode.r69296.tar.xz 05-Jan-2024 00:45 5636 +pst-ode.tar.xz 05-Jan-2024 00:45 5636 +pst-optexp.doc.r62977.tar.xz 07-Apr-2022 23:53 3194708 +pst-optexp.doc.tar.xz 07-Apr-2022 23:53 3194708 +pst-optexp.r62977.tar.xz 07-Apr-2022 23:53 37772 +pst-optexp.source.r62977.tar.xz 07-Apr-2022 23:53 155324 +pst-optexp.source.tar.xz 07-Apr-2022 23:53 155324 +pst-optexp.tar.xz 07-Apr-2022 23:53 37772 +pst-optic.doc.r72694.tar.xz 29-Oct-2024 00:46 322452 +pst-optic.doc.tar.xz 29-Oct-2024 00:46 322452 +pst-optic.r72694.tar.xz 29-Oct-2024 00:46 14964 +pst-optic.tar.xz 29-Oct-2024 00:46 14964 +pst-osci.doc.r68781.tar.xz 10-Nov-2023 00:45 1664720 +pst-osci.doc.tar.xz 10-Nov-2023 00:45 1664720 +pst-osci.r68781.tar.xz 10-Nov-2023 00:45 3420 +pst-osci.tar.xz 10-Nov-2023 00:45 3420 +pst-ovl.doc.r54963.tar.xz 01-May-2020 23:57 30000 +pst-ovl.doc.tar.xz 01-May-2020 23:57 30000 +pst-ovl.r54963.tar.xz 01-May-2020 23:57 1932 +pst-ovl.tar.xz 01-May-2020 23:57 1932 +pst-pad.doc.r15878.tar.xz 28-Feb-2019 03:02 137484 +pst-pad.doc.tar.xz 28-Feb-2019 03:02 137484 +pst-pad.r15878.tar.xz 28-Feb-2019 03:02 4408 +pst-pad.source.r15878.tar.xz 28-Feb-2019 03:02 640 +pst-pad.source.tar.xz 28-Feb-2019 03:02 640 +pst-pad.tar.xz 28-Feb-2019 03:02 4408 +pst-pdf.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.aarch64-linux.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.amd64-freebsd.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.amd64-netbsd.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.armhf-linux.r30015.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.armhf-linux.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.doc.r56622.tar.xz 10-Oct-2020 23:56 964004 +pst-pdf.doc.tar.xz 10-Oct-2020 23:56 964004 +pst-pdf.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.i386-freebsd.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.i386-linux.r7838.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.i386-linux.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.i386-netbsd.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.i386-solaris.r8102.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.i386-solaris.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.r56622.tar.xz 10-Oct-2020 23:56 7512 +pst-pdf.source.r56622.tar.xz 10-Oct-2020 23:56 162608 +pst-pdf.source.tar.xz 10-Oct-2020 23:56 162608 +pst-pdf.tar.xz 10-Oct-2020 23:56 7512 +pst-pdf.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 344 +pst-pdf.universal-darwin.tar.xz 25-Feb-2021 18:17 344 +pst-pdf.windows.r65891.tar.xz 20-Feb-2023 22:15 3168 +pst-pdf.windows.tar.xz 20-Feb-2023 22:15 3168 +pst-pdf.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.x86_64-cygwin.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:02 352 +pst-pdf.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:02 352 +pst-pdf.x86_64-linux.r8601.tar.xz 28-Feb-2019 03:02 340 +pst-pdf.x86_64-linux.tar.xz 28-Feb-2019 03:02 340 +pst-pdf.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:02 344 +pst-pdf.x86_64-solaris.tar.xz 28-Feb-2019 03:02 344 +pst-pdgr.doc.r45875.tar.xz 28-Feb-2019 03:02 171680 +pst-pdgr.doc.tar.xz 28-Feb-2019 03:02 171680 +pst-pdgr.r45875.tar.xz 28-Feb-2019 03:02 3384 +pst-pdgr.source.r45875.tar.xz 28-Feb-2019 03:02 16788 +pst-pdgr.source.tar.xz 28-Feb-2019 03:02 16788 +pst-pdgr.tar.xz 28-Feb-2019 03:02 3384 +pst-perspective.doc.r39585.tar.xz 28-Feb-2019 03:02 1274264 +pst-perspective.doc.tar.xz 28-Feb-2019 03:02 1274264 +pst-perspective.r39585.tar.xz 28-Feb-2019 03:02 3556 +pst-perspective.tar.xz 28-Feb-2019 03:02 3556 +pst-platon.doc.r16538.tar.xz 28-Feb-2019 03:02 90668 +pst-platon.doc.tar.xz 28-Feb-2019 03:02 90668 +pst-platon.r16538.tar.xz 28-Feb-2019 03:02 2788 +pst-platon.source.r16538.tar.xz 28-Feb-2019 03:02 936 +pst-platon.source.tar.xz 28-Feb-2019 03:02 936 +pst-platon.tar.xz 28-Feb-2019 03:02 2788 +pst-plot.doc.r65346.tar.xz 24-Dec-2022 00:54 1346672 +pst-plot.doc.tar.xz 24-Dec-2022 00:54 1346672 +pst-plot.r65346.tar.xz 24-Dec-2022 00:54 22724 +pst-plot.tar.xz 24-Dec-2022 00:54 22724 +pst-poker.doc.r75726.tar.xz 09-Jul-2025 23:49 1266088 +pst-poker.doc.tar.xz 09-Jul-2025 23:49 1266088 +pst-poker.r75726.tar.xz 09-Jul-2025 23:49 2315568 +pst-poker.tar.xz 09-Jul-2025 23:49 2315568 +pst-poly.doc.r35062.tar.xz 28-Feb-2019 03:02 141292 +pst-poly.doc.tar.xz 28-Feb-2019 03:02 141292 +pst-poly.r35062.tar.xz 28-Feb-2019 03:02 3176 +pst-poly.tar.xz 28-Feb-2019 03:02 3176 +pst-pulley.doc.r62977.tar.xz 07-Apr-2022 23:53 122132 +pst-pulley.doc.tar.xz 07-Apr-2022 23:53 122132 +pst-pulley.r62977.tar.xz 07-Apr-2022 23:53 4748 +pst-pulley.tar.xz 07-Apr-2022 23:53 4748 +pst-qtree.doc.r15878.tar.xz 28-Feb-2019 03:02 24596 +pst-qtree.doc.tar.xz 28-Feb-2019 03:02 24596 +pst-qtree.r15878.tar.xz 28-Feb-2019 03:02 1844 +pst-qtree.tar.xz 28-Feb-2019 03:02 1844 +pst-rputover.doc.r44724.tar.xz 28-Feb-2019 03:02 85380 +pst-rputover.doc.tar.xz 28-Feb-2019 03:02 85380 +pst-rputover.r44724.tar.xz 28-Feb-2019 03:02 2600 +pst-rputover.tar.xz 28-Feb-2019 03:02 2600 +pst-rubans.doc.r23464.tar.xz 28-Feb-2019 03:02 565612 +pst-rubans.doc.tar.xz 28-Feb-2019 03:02 565612 +pst-rubans.r23464.tar.xz 28-Feb-2019 03:02 3136 +pst-rubans.source.r23464.tar.xz 28-Feb-2019 03:02 960 +pst-rubans.source.tar.xz 28-Feb-2019 03:02 960 +pst-rubans.tar.xz 28-Feb-2019 03:02 3136 +pst-shell.doc.r56070.tar.xz 07-Aug-2020 23:57 15919656 +pst-shell.doc.tar.xz 07-Aug-2020 23:57 15919656 +pst-shell.r56070.tar.xz 07-Aug-2020 23:58 3116 +pst-shell.source.r56070.tar.xz 07-Aug-2020 23:57 1100 +pst-shell.source.tar.xz 07-Aug-2020 23:57 1100 +pst-shell.tar.xz 07-Aug-2020 23:58 3116 +pst-sigsys.doc.r21667.tar.xz 28-Feb-2019 03:02 286952 +pst-sigsys.doc.tar.xz 28-Feb-2019 03:02 286952 +pst-sigsys.r21667.tar.xz 28-Feb-2019 03:02 4696 +pst-sigsys.tar.xz 28-Feb-2019 03:02 4696 +pst-slpe.doc.r24391.tar.xz 28-Feb-2019 03:02 244888 +pst-slpe.doc.tar.xz 28-Feb-2019 03:02 244888 +pst-slpe.r24391.tar.xz 28-Feb-2019 03:02 3176 +pst-slpe.source.r24391.tar.xz 28-Feb-2019 03:02 12612 +pst-slpe.source.tar.xz 28-Feb-2019 03:02 12612 +pst-slpe.tar.xz 28-Feb-2019 03:02 3176 +pst-solarsystem.doc.r69675.tar.xz 03-Feb-2024 00:45 466476 +pst-solarsystem.doc.tar.xz 03-Feb-2024 00:45 466476 +pst-solarsystem.r69675.tar.xz 03-Feb-2024 00:45 5172 +pst-solarsystem.tar.xz 03-Feb-2024 00:45 5172 +pst-solides3d.doc.r68786.tar.xz 10-Nov-2023 00:45 5751600 +pst-solides3d.doc.tar.xz 10-Nov-2023 00:45 5751600 +pst-solides3d.r68786.tar.xz 10-Nov-2023 00:45 55756 +pst-solides3d.tar.xz 10-Nov-2023 00:45 55756 +pst-soroban.doc.r15878.tar.xz 28-Feb-2019 03:02 84524 +pst-soroban.doc.tar.xz 28-Feb-2019 03:02 84524 +pst-soroban.r15878.tar.xz 28-Feb-2019 03:02 1652 +pst-soroban.source.r15878.tar.xz 28-Feb-2019 03:02 824 +pst-soroban.source.tar.xz 28-Feb-2019 03:02 824 +pst-soroban.tar.xz 28-Feb-2019 03:02 1652 +pst-spectra.doc.r15878.tar.xz 28-Feb-2019 03:02 185432 +pst-spectra.doc.tar.xz 28-Feb-2019 03:02 185432 +pst-spectra.r15878.tar.xz 28-Feb-2019 03:02 77276 +pst-spectra.tar.xz 28-Feb-2019 03:02 77276 +pst-spinner.doc.r66115.tar.xz 24-Feb-2023 01:01 1383004 +pst-spinner.doc.tar.xz 24-Feb-2023 01:01 1383004 +pst-spinner.r66115.tar.xz 24-Feb-2023 01:01 2804 +pst-spinner.tar.xz 24-Feb-2023 01:01 2804 +pst-stru.doc.r38613.tar.xz 28-Feb-2019 03:02 160184 +pst-stru.doc.tar.xz 28-Feb-2019 03:02 160184 +pst-stru.r38613.tar.xz 28-Feb-2019 03:02 3336 +pst-stru.tar.xz 28-Feb-2019 03:02 3336 +pst-support.doc.r15878.tar.xz 28-Feb-2019 03:02 6580 +pst-support.doc.tar.xz 28-Feb-2019 03:02 6580 +pst-support.r15878.tar.xz 28-Feb-2019 03:02 432 +pst-support.tar.xz 28-Feb-2019 03:02 432 +pst-text.doc.r49542.tar.xz 28-Feb-2019 03:02 169860 +pst-text.doc.tar.xz 28-Feb-2019 03:02 169860 +pst-text.r49542.tar.xz 28-Feb-2019 03:02 4204 +pst-text.tar.xz 28-Feb-2019 03:02 4204 +pst-thick.doc.r16369.tar.xz 28-Feb-2019 03:02 472840 +pst-thick.doc.tar.xz 28-Feb-2019 03:02 472840 +pst-thick.r16369.tar.xz 28-Feb-2019 03:02 1968 +pst-thick.source.r16369.tar.xz 28-Feb-2019 03:02 948 +pst-thick.source.tar.xz 28-Feb-2019 03:02 948 +pst-thick.tar.xz 28-Feb-2019 03:02 1968 +pst-tools.doc.r60621.tar.xz 26-Sep-2021 23:53 106384 +pst-tools.doc.tar.xz 26-Sep-2021 23:53 106384 +pst-tools.r60621.tar.xz 26-Sep-2021 23:53 6564 +pst-tools.tar.xz 26-Sep-2021 23:53 6564 +pst-tree.doc.r60421.tar.xz 04-Sep-2021 23:51 205684 +pst-tree.doc.tar.xz 04-Sep-2021 23:51 205684 +pst-tree.r60421.tar.xz 04-Sep-2021 23:51 6712 +pst-tree.tar.xz 04-Sep-2021 23:51 6712 +pst-turtle.doc.r52261.tar.xz 02-Oct-2019 23:55 45192 +pst-turtle.doc.tar.xz 02-Oct-2019 23:55 45192 +pst-turtle.r52261.tar.xz 02-Oct-2019 23:55 3836 +pst-turtle.tar.xz 02-Oct-2019 23:55 3836 +pst-tvz.doc.r23451.tar.xz 28-Feb-2019 03:02 274160 +pst-tvz.doc.tar.xz 28-Feb-2019 03:02 274160 +pst-tvz.r23451.tar.xz 28-Feb-2019 03:02 16140 +pst-tvz.source.r23451.tar.xz 28-Feb-2019 03:02 944 +pst-tvz.source.tar.xz 28-Feb-2019 03:02 944 +pst-tvz.tar.xz 28-Feb-2019 03:02 16140 +pst-uml.doc.r15878.tar.xz 28-Feb-2019 03:02 409404 +pst-uml.doc.tar.xz 28-Feb-2019 03:02 409404 +pst-uml.r15878.tar.xz 28-Feb-2019 03:02 7340 +pst-uml.source.r15878.tar.xz 28-Feb-2019 03:02 2396 +pst-uml.source.tar.xz 28-Feb-2019 03:02 2396 +pst-uml.tar.xz 28-Feb-2019 03:02 7340 +pst-vectorian.doc.r60488.tar.xz 12-Sep-2021 23:53 738340 +pst-vectorian.doc.tar.xz 12-Sep-2021 23:53 738340 +pst-vectorian.r60488.tar.xz 12-Sep-2021 23:53 546776 +pst-vectorian.tar.xz 12-Sep-2021 23:53 546776 +pst-vehicle.doc.r61438.tar.xz 30-Dec-2021 00:54 2689052 +pst-vehicle.doc.tar.xz 30-Dec-2021 00:54 2689052 +pst-vehicle.r61438.tar.xz 30-Dec-2021 00:54 8744 +pst-vehicle.tar.xz 30-Dec-2021 00:54 8744 +pst-venn.doc.r49316.tar.xz 28-Feb-2019 03:02 35532 +pst-venn.doc.tar.xz 28-Feb-2019 03:02 35532 +pst-venn.r49316.tar.xz 28-Feb-2019 03:02 1448 +pst-venn.tar.xz 28-Feb-2019 03:02 1448 +pst-vowel.doc.r25228.tar.xz 28-Feb-2019 03:02 81968 +pst-vowel.doc.tar.xz 28-Feb-2019 03:02 81968 +pst-vowel.r25228.tar.xz 28-Feb-2019 03:02 2024 +pst-vowel.tar.xz 28-Feb-2019 03:02 2024 +pst2pdf.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.aarch64-linux.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.amd64-freebsd.r29333.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.amd64-freebsd.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.amd64-netbsd.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.armhf-linux.r30015.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.armhf-linux.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.doc.r56172.tar.xz 24-Aug-2020 23:57 342228 +pst2pdf.doc.tar.xz 24-Aug-2020 23:57 342228 +pst2pdf.i386-freebsd.r29333.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.i386-freebsd.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.i386-linux.r29333.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.i386-linux.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.i386-netbsd.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.i386-solaris.r29333.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.i386-solaris.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.r56172.tar.xz 24-Aug-2020 23:57 20956 +pst2pdf.tar.xz 24-Aug-2020 23:57 20956 +pst2pdf.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +pst2pdf.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +pst2pdf.windows.r65891.tar.xz 20-Feb-2023 22:15 2308 +pst2pdf.windows.tar.xz 20-Feb-2023 22:15 2308 +pst2pdf.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.x86_64-cygwin.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:02 348 +pst2pdf.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:02 348 +pst2pdf.x86_64-linux.r29333.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.x86_64-linux.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:02 344 +pst2pdf.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:02 344 +pst2pdf.x86_64-solaris.r29333.tar.xz 28-Feb-2019 03:02 340 +pst2pdf.x86_64-solaris.tar.xz 28-Feb-2019 03:02 340 +pstool.doc.r46393.tar.xz 28-Feb-2019 03:02 373708 +pstool.doc.tar.xz 28-Feb-2019 03:02 373708 +pstool.r46393.tar.xz 28-Feb-2019 03:02 6984 +pstool.tar.xz 28-Feb-2019 03:02 6984 +pstricks-add.doc.r66887.tar.xz 18-Apr-2023 23:53 10668848 +pstricks-add.doc.tar.xz 18-Apr-2023 23:53 10668848 +pstricks-add.r66887.tar.xz 18-Apr-2023 23:53 21972 +pstricks-add.tar.xz 18-Apr-2023 23:53 21972 +pstricks.doc.r75486.tar.xz 12-Jun-2025 23:49 11186720 +pstricks.doc.tar.xz 12-Jun-2025 23:49 11186720 +pstricks.r75486.tar.xz 12-Jun-2025 23:49 89056 +pstricks.tar.xz 12-Jun-2025 23:49 89056 +pstricks_calcnotes.doc.r34363.tar.xz 28-Feb-2019 03:02 1133128 +pstricks_calcnotes.doc.tar.xz 28-Feb-2019 03:02 1133128 +pstricks_calcnotes.r34363.tar.xz 28-Feb-2019 03:02 512 +pstricks_calcnotes.tar.xz 28-Feb-2019 03:02 512 +pstring.doc.r42857.tar.xz 28-Feb-2019 03:02 123272 +pstring.doc.tar.xz 28-Feb-2019 03:02 123272 +pstring.r42857.tar.xz 28-Feb-2019 03:02 7384 +pstring.tar.xz 28-Feb-2019 03:02 7384 +psutils.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 63080 +psutils.aarch64-linux.tar.xz 13-Feb-2025 00:50 63080 +psutils.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 73320 +psutils.amd64-freebsd.tar.xz 09-Feb-2025 00:55 73320 +psutils.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 68972 +psutils.amd64-netbsd.tar.xz 09-Feb-2025 18:16 68972 +psutils.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 54624 +psutils.armhf-linux.tar.xz 09-Feb-2025 00:55 54624 +psutils.doc.r61719.tar.xz 24-Jan-2022 00:55 135820 +psutils.doc.tar.xz 24-Jan-2022 00:55 135820 +psutils.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 73192 +psutils.i386-freebsd.tar.xz 09-Feb-2025 00:55 73192 +psutils.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 72760 +psutils.i386-linux.tar.xz 09-Feb-2025 00:55 72760 +psutils.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 62796 +psutils.i386-netbsd.tar.xz 09-Feb-2025 18:16 62796 +psutils.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 73756 +psutils.i386-solaris.tar.xz 09-Feb-2025 00:55 73756 +psutils.r61719.tar.xz 24-Jan-2022 00:55 5364 +psutils.tar.xz 24-Jan-2022 00:55 5364 +psutils.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 133300 +psutils.universal-darwin.tar.xz 09-Feb-2025 18:16 133300 +psutils.windows.r73796.tar.xz 09-Feb-2025 18:16 27700 +psutils.windows.tar.xz 09-Feb-2025 18:16 27700 +psutils.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 23464 +psutils.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 23464 +psutils.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 63580 +psutils.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 63580 +psutils.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 70140 +psutils.x86_64-linux.tar.xz 19-Feb-2025 00:47 70140 +psutils.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 75836 +psutils.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 75836 +psutils.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 80792 +psutils.x86_64-solaris.tar.xz 09-Feb-2025 00:55 80792 +ptex-base.doc.r64072.tar.xz 07-Aug-2022 23:54 1540 +ptex-base.doc.tar.xz 07-Aug-2022 23:54 1540 +ptex-base.r64072.tar.xz 07-Aug-2022 23:54 10060 +ptex-base.tar.xz 07-Aug-2022 23:54 10060 +ptex-fontmaps.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.aarch64-linux.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.amd64-freebsd.r44206.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.amd64-freebsd.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.amd64-netbsd.r44206.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.amd64-netbsd.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.armhf-linux.r44206.tar.xz 28-Feb-2019 03:03 432 +ptex-fontmaps.armhf-linux.tar.xz 28-Feb-2019 03:03 432 +ptex-fontmaps.doc.r65953.tar.xz 20-Feb-2023 22:15 156528 +ptex-fontmaps.doc.tar.xz 20-Feb-2023 22:15 156528 +ptex-fontmaps.i386-freebsd.r44206.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.i386-freebsd.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.i386-linux.r44206.tar.xz 28-Feb-2019 03:03 432 +ptex-fontmaps.i386-linux.tar.xz 28-Feb-2019 03:03 432 +ptex-fontmaps.i386-netbsd.r44206.tar.xz 28-Feb-2019 03:03 432 +ptex-fontmaps.i386-netbsd.tar.xz 28-Feb-2019 03:03 432 +ptex-fontmaps.i386-solaris.r44206.tar.xz 28-Feb-2019 03:03 432 +ptex-fontmaps.i386-solaris.tar.xz 28-Feb-2019 03:03 432 +ptex-fontmaps.r65953.tar.xz 20-Feb-2023 22:15 43332 +ptex-fontmaps.source.r65953.tar.xz 20-Feb-2023 22:15 305384 +ptex-fontmaps.source.tar.xz 20-Feb-2023 22:15 305384 +ptex-fontmaps.tar.xz 20-Feb-2023 22:15 43332 +ptex-fontmaps.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 432 +ptex-fontmaps.universal-darwin.tar.xz 25-Feb-2021 18:17 432 +ptex-fontmaps.windows.r65891.tar.xz 20-Feb-2023 22:15 2428 +ptex-fontmaps.windows.tar.xz 20-Feb-2023 22:15 2428 +ptex-fontmaps.x86_64-cygwin.r44206.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.x86_64-cygwin.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.x86_64-darwinlegacy.r44206.tar.xz 28-Feb-2019 03:03 440 +ptex-fontmaps.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:03 440 +ptex-fontmaps.x86_64-linux.r44206.tar.xz 28-Feb-2019 03:03 432 +ptex-fontmaps.x86_64-linux.tar.xz 28-Feb-2019 03:03 432 +ptex-fontmaps.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:03 436 +ptex-fontmaps.x86_64-solaris.r44206.tar.xz 28-Feb-2019 03:03 432 +ptex-fontmaps.x86_64-solaris.tar.xz 28-Feb-2019 03:03 432 +ptex-fonts.doc.r64330.tar.xz 10-Sep-2022 23:53 1640 +ptex-fonts.doc.tar.xz 10-Sep-2022 23:53 1640 +ptex-fonts.r64330.tar.xz 10-Sep-2022 23:53 14264 +ptex-fonts.tar.xz 10-Sep-2022 23:53 14264 +ptex-manual.doc.r75173.tar.xz 11-May-2025 23:51 3094188 +ptex-manual.doc.tar.xz 11-May-2025 23:51 3094188 +ptex-manual.r75173.tar.xz 11-May-2025 23:51 392 +ptex-manual.tar.xz 11-May-2025 23:51 392 +ptex.aarch64-linux.r74368.tar.xz 02-Mar-2025 01:10 944988 +ptex.aarch64-linux.tar.xz 02-Mar-2025 01:10 944988 +ptex.amd64-freebsd.r74121.tar.xz 19-Feb-2025 00:47 903084 +ptex.amd64-freebsd.tar.xz 19-Feb-2025 00:47 903084 +ptex.amd64-netbsd.r74100.tar.xz 18-Feb-2025 22:37 901240 +ptex.amd64-netbsd.tar.xz 18-Feb-2025 22:37 901240 +ptex.armhf-linux.r74368.tar.xz 02-Mar-2025 01:10 883680 +ptex.armhf-linux.tar.xz 02-Mar-2025 01:10 883680 +ptex.doc.r73848.tar.xz 11-Feb-2025 00:48 164320 +ptex.doc.tar.xz 11-Feb-2025 00:48 164320 +ptex.i386-freebsd.r74121.tar.xz 19-Feb-2025 00:47 903604 +ptex.i386-freebsd.tar.xz 19-Feb-2025 00:47 903604 +ptex.i386-linux.r74121.tar.xz 19-Feb-2025 00:47 1129928 +ptex.i386-linux.tar.xz 19-Feb-2025 00:47 1129928 +ptex.i386-netbsd.r74100.tar.xz 18-Feb-2025 22:37 808968 +ptex.i386-netbsd.tar.xz 18-Feb-2025 22:37 808968 +ptex.i386-solaris.r74121.tar.xz 19-Feb-2025 00:47 1013104 +ptex.i386-solaris.tar.xz 19-Feb-2025 00:47 1013104 +ptex.r73848.tar.xz 11-Feb-2025 00:48 696 +ptex.tar.xz 11-Feb-2025 00:48 696 +ptex.universal-darwin.r74152.tar.xz 20-Feb-2025 00:52 1922856 +ptex.universal-darwin.tar.xz 20-Feb-2025 00:52 1922856 +ptex.windows.r74122.tar.xz 19-Feb-2025 00:47 1159496 +ptex.windows.tar.xz 19-Feb-2025 00:47 1159496 +ptex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 985896 +ptex.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 985896 +ptex.x86_64-darwinlegacy.r74152.tar.xz 20-Feb-2025 00:52 932340 +ptex.x86_64-darwinlegacy.tar.xz 20-Feb-2025 00:52 932340 +ptex.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 1048760 +ptex.x86_64-linux.tar.xz 19-Feb-2025 00:47 1048760 +ptex.x86_64-linuxmusl.r74121.tar.xz 19-Feb-2025 00:47 1075852 +ptex.x86_64-linuxmusl.tar.xz 19-Feb-2025 00:47 1075852 +ptex.x86_64-solaris.r74121.tar.xz 19-Feb-2025 00:47 1119080 +ptex.x86_64-solaris.tar.xz 19-Feb-2025 00:47 1119080 +ptex2pdf.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.aarch64-linux.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.amd64-freebsd.r29335.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.amd64-freebsd.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.amd64-netbsd.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.armhf-linux.r30015.tar.xz 28-Feb-2019 03:03 340 +ptex2pdf.armhf-linux.tar.xz 28-Feb-2019 03:03 340 +ptex2pdf.doc.r65953.tar.xz 20-Feb-2023 22:15 8644 +ptex2pdf.doc.tar.xz 20-Feb-2023 22:15 8644 +ptex2pdf.i386-freebsd.r29335.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.i386-freebsd.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.i386-linux.r29335.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.i386-linux.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:03 340 +ptex2pdf.i386-netbsd.tar.xz 28-Feb-2019 03:03 340 +ptex2pdf.i386-solaris.r29335.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.i386-solaris.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.r65953.tar.xz 20-Feb-2023 22:15 7848 +ptex2pdf.tar.xz 20-Feb-2023 22:15 7848 +ptex2pdf.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 344 +ptex2pdf.universal-darwin.tar.xz 25-Feb-2021 18:17 344 +ptex2pdf.windows.r65891.tar.xz 20-Feb-2023 22:15 2308 +ptex2pdf.windows.tar.xz 20-Feb-2023 22:15 2308 +ptex2pdf.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.x86_64-cygwin.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:03 352 +ptex2pdf.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:03 352 +ptex2pdf.x86_64-linux.r29335.tar.xz 28-Feb-2019 03:03 340 +ptex2pdf.x86_64-linux.tar.xz 28-Feb-2019 03:03 340 +ptex2pdf.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:03 348 +ptex2pdf.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:03 348 +ptex2pdf.x86_64-solaris.r29335.tar.xz 28-Feb-2019 03:03 344 +ptex2pdf.x86_64-solaris.tar.xz 28-Feb-2019 03:03 344 +ptext.doc.r30171.tar.xz 28-Feb-2019 03:03 56200 +ptext.doc.tar.xz 28-Feb-2019 03:03 56200 +ptext.r30171.tar.xz 28-Feb-2019 03:03 21740 +ptext.tar.xz 28-Feb-2019 03:03 21740 +ptlatexcommands.doc.r67125.tar.xz 15-May-2023 23:44 131832 +ptlatexcommands.doc.tar.xz 15-May-2023 23:44 131832 +ptlatexcommands.r67125.tar.xz 15-May-2023 23:44 3412 +ptlatexcommands.source.r67125.tar.xz 15-May-2023 23:44 4476 +ptlatexcommands.source.tar.xz 15-May-2023 23:44 4476 +ptlatexcommands.tar.xz 15-May-2023 23:44 3412 +ptolemaicastronomy.doc.r50810.tar.xz 06-Apr-2019 21:34 246244 +ptolemaicastronomy.doc.tar.xz 06-Apr-2019 21:34 246244 +ptolemaicastronomy.r50810.tar.xz 06-Apr-2019 21:34 1600 +ptolemaicastronomy.source.r50810.tar.xz 06-Apr-2019 21:34 4856 +ptolemaicastronomy.source.tar.xz 06-Apr-2019 21:34 4856 +ptolemaicastronomy.tar.xz 06-Apr-2019 21:34 1600 +ptptex.doc.r19440.tar.xz 28-Feb-2019 03:03 192944 +ptptex.doc.tar.xz 28-Feb-2019 03:03 192944 +ptptex.r19440.tar.xz 28-Feb-2019 03:03 9492 +ptptex.tar.xz 28-Feb-2019 03:03 9492 +punk-latex.doc.r27389.tar.xz 28-Feb-2019 03:03 150276 +punk-latex.doc.tar.xz 28-Feb-2019 03:03 150276 +punk-latex.r27389.tar.xz 28-Feb-2019 03:03 888 +punk-latex.tar.xz 28-Feb-2019 03:03 888 +punk.doc.r27388.tar.xz 28-Feb-2019 03:03 1044 +punk.doc.tar.xz 28-Feb-2019 03:03 1044 +punk.r27388.tar.xz 28-Feb-2019 03:03 6052 +punk.tar.xz 28-Feb-2019 03:03 6052 +punknova.doc.r24649.tar.xz 28-Feb-2019 03:03 141900 +punknova.doc.tar.xz 28-Feb-2019 03:03 141900 +punknova.r24649.tar.xz 28-Feb-2019 03:03 814008 +punknova.tar.xz 28-Feb-2019 03:03 814008 +purifyeps.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:03 340 +purifyeps.aarch64-linux.tar.xz 28-Feb-2019 03:03 340 +purifyeps.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:03 340 +purifyeps.amd64-freebsd.tar.xz 28-Feb-2019 03:03 340 +purifyeps.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:03 340 +purifyeps.amd64-netbsd.tar.xz 28-Feb-2019 03:03 340 +purifyeps.armhf-linux.r30015.tar.xz 28-Feb-2019 03:03 340 +purifyeps.armhf-linux.tar.xz 28-Feb-2019 03:03 340 +purifyeps.doc.r29725.tar.xz 28-Feb-2019 03:03 15056 +purifyeps.doc.tar.xz 28-Feb-2019 03:03 15056 +purifyeps.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:03 340 +purifyeps.i386-freebsd.tar.xz 28-Feb-2019 03:03 340 +purifyeps.i386-linux.r13663.tar.xz 28-Feb-2019 03:03 340 +purifyeps.i386-linux.tar.xz 28-Feb-2019 03:03 340 +purifyeps.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:03 340 +purifyeps.i386-netbsd.tar.xz 28-Feb-2019 03:03 340 +purifyeps.i386-solaris.r13898.tar.xz 28-Feb-2019 03:03 340 +purifyeps.i386-solaris.tar.xz 28-Feb-2019 03:03 340 +purifyeps.r29725.tar.xz 28-Feb-2019 03:03 6212 +purifyeps.tar.xz 28-Feb-2019 03:03 6212 +purifyeps.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +purifyeps.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +purifyeps.windows.r65891.tar.xz 20-Feb-2023 22:15 2304 +purifyeps.windows.tar.xz 20-Feb-2023 22:15 2304 +purifyeps.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:03 340 +purifyeps.x86_64-cygwin.tar.xz 28-Feb-2019 03:03 340 +purifyeps.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:03 348 +purifyeps.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:03 348 +purifyeps.x86_64-linux.r13777.tar.xz 28-Feb-2019 03:03 340 +purifyeps.x86_64-linux.tar.xz 28-Feb-2019 03:03 340 +purifyeps.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:03 344 +purifyeps.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:03 344 +purifyeps.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:03 340 +purifyeps.x86_64-solaris.tar.xz 28-Feb-2019 03:03 340 +puyotikz.doc.r57254.tar.xz 30-Dec-2020 00:57 201144 +puyotikz.doc.tar.xz 30-Dec-2020 00:57 201144 +puyotikz.r57254.tar.xz 30-Dec-2020 00:57 3968 +puyotikz.tar.xz 30-Dec-2020 00:57 3968 +pwebmac.doc.r74648.tar.xz 17-Mar-2025 00:51 17964 +pwebmac.doc.tar.xz 17-Mar-2025 00:51 17964 +pwebmac.r74648.tar.xz 17-Mar-2025 00:51 9248 +pwebmac.tar.xz 17-Mar-2025 00:51 9248 +pxbase.doc.r66187.tar.xz 26-Feb-2023 23:51 167592 +pxbase.doc.tar.xz 26-Feb-2023 23:51 167592 +pxbase.r66187.tar.xz 26-Feb-2023 23:51 12464 +pxbase.tar.xz 26-Feb-2023 23:51 12464 +pxchfon.doc.r72097.tar.xz 23-Aug-2024 23:49 358776 +pxchfon.doc.tar.xz 23-Aug-2024 23:49 358776 +pxchfon.r72097.tar.xz 23-Aug-2024 23:49 21080 +pxchfon.tar.xz 23-Aug-2024 23:49 21080 +pxcjkcat.doc.r74144.tar.xz 20-Feb-2025 00:52 219168 +pxcjkcat.doc.tar.xz 20-Feb-2025 00:52 219168 +pxcjkcat.r74144.tar.xz 20-Feb-2025 00:52 10756 +pxcjkcat.tar.xz 20-Feb-2025 00:52 10756 +pxfonts.doc.r15878.tar.xz 28-Feb-2019 03:03 421672 +pxfonts.doc.tar.xz 28-Feb-2019 03:03 421672 +pxfonts.r15878.tar.xz 28-Feb-2019 03:03 459980 +pxfonts.tar.xz 28-Feb-2019 03:03 459980 +pxgreeks.doc.r21838.tar.xz 28-Feb-2019 03:03 56340 +pxgreeks.doc.tar.xz 28-Feb-2019 03:03 56340 +pxgreeks.r21838.tar.xz 28-Feb-2019 03:03 2120 +pxgreeks.source.r21838.tar.xz 28-Feb-2019 03:03 4644 +pxgreeks.source.tar.xz 28-Feb-2019 03:03 4644 +pxgreeks.tar.xz 28-Feb-2019 03:03 2120 +pxjahyper.doc.r72114.tar.xz 26-Aug-2024 23:47 175884 +pxjahyper.doc.tar.xz 26-Aug-2024 23:47 175884 +pxjahyper.r72114.tar.xz 26-Aug-2024 23:47 21248 +pxjahyper.tar.xz 26-Aug-2024 23:47 21248 +pxjodel.doc.r76323.tar.xz 15-Sep-2025 23:45 111896 +pxjodel.doc.tar.xz 15-Sep-2025 23:45 111896 +pxjodel.r76323.tar.xz 15-Sep-2025 23:45 12580 +pxjodel.tar.xz 15-Sep-2025 23:45 12580 +pxpgfmark.doc.r30212.tar.xz 28-Feb-2019 03:03 1640 +pxpgfmark.doc.tar.xz 28-Feb-2019 03:03 1640 +pxpgfmark.r30212.tar.xz 28-Feb-2019 03:03 792 +pxpgfmark.tar.xz 28-Feb-2019 03:03 792 +pxpic.doc.r67955.tar.xz 17-Aug-2023 23:43 358564 +pxpic.doc.tar.xz 17-Aug-2023 23:43 358564 +pxpic.r67955.tar.xz 17-Aug-2023 23:43 3200 +pxpic.source.r67955.tar.xz 17-Aug-2023 23:43 15028 +pxpic.source.tar.xz 17-Aug-2023 23:43 15028 +pxpic.tar.xz 17-Aug-2023 23:43 3200 +pxrubrica.doc.r66298.tar.xz 03-Mar-2023 00:53 725496 +pxrubrica.doc.tar.xz 03-Mar-2023 00:53 725496 +pxrubrica.r66298.tar.xz 03-Mar-2023 00:53 13672 +pxrubrica.source.r66298.tar.xz 03-Mar-2023 00:53 38436 +pxrubrica.source.tar.xz 03-Mar-2023 00:53 38436 +pxrubrica.tar.xz 03-Mar-2023 00:53 13672 +pxtatescale.doc.r63967.tar.xz 23-Jul-2022 23:55 1620 +pxtatescale.doc.tar.xz 23-Jul-2022 23:55 1620 +pxtatescale.r63967.tar.xz 23-Jul-2022 23:55 996 +pxtatescale.tar.xz 23-Jul-2022 23:55 996 +pxtxalfa.doc.r60847.tar.xz 23-Oct-2021 23:54 209364 +pxtxalfa.doc.tar.xz 23-Oct-2021 23:54 209364 +pxtxalfa.r60847.tar.xz 23-Oct-2021 23:54 8928 +pxtxalfa.tar.xz 23-Oct-2021 23:54 8928 +pxufont.doc.r67573.tar.xz 07-Jul-2023 23:45 2252 +pxufont.doc.tar.xz 07-Jul-2023 23:45 2252 +pxufont.r67573.tar.xz 07-Jul-2023 23:45 148984 +pxufont.tar.xz 07-Jul-2023 23:45 148984 +pygmentex.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:03 340 +pygmentex.aarch64-linux.tar.xz 28-Feb-2019 03:03 340 +pygmentex.amd64-freebsd.r34996.tar.xz 28-Feb-2019 03:03 340 +pygmentex.amd64-freebsd.tar.xz 28-Feb-2019 03:03 340 +pygmentex.amd64-netbsd.r34996.tar.xz 28-Feb-2019 03:03 340 +pygmentex.amd64-netbsd.tar.xz 28-Feb-2019 03:03 340 +pygmentex.armhf-linux.r34996.tar.xz 28-Feb-2019 03:03 340 +pygmentex.armhf-linux.tar.xz 28-Feb-2019 03:03 340 +pygmentex.doc.r64131.tar.xz 16-Aug-2022 23:52 715568 +pygmentex.doc.tar.xz 16-Aug-2022 23:52 715568 +pygmentex.i386-freebsd.r34996.tar.xz 28-Feb-2019 03:03 344 +pygmentex.i386-freebsd.tar.xz 28-Feb-2019 03:03 344 +pygmentex.i386-linux.r34996.tar.xz 28-Feb-2019 03:03 340 +pygmentex.i386-linux.tar.xz 28-Feb-2019 03:03 340 +pygmentex.i386-netbsd.r34996.tar.xz 28-Feb-2019 03:03 340 +pygmentex.i386-netbsd.tar.xz 28-Feb-2019 03:03 340 +pygmentex.i386-solaris.r34996.tar.xz 28-Feb-2019 03:03 340 +pygmentex.i386-solaris.tar.xz 28-Feb-2019 03:03 340 +pygmentex.r64131.tar.xz 16-Aug-2022 23:52 7560 +pygmentex.tar.xz 16-Aug-2022 23:52 7560 +pygmentex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +pygmentex.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +pygmentex.windows.r65891.tar.xz 20-Feb-2023 22:15 2308 +pygmentex.windows.tar.xz 20-Feb-2023 22:15 2308 +pygmentex.x86_64-cygwin.r34996.tar.xz 28-Feb-2019 03:03 340 +pygmentex.x86_64-cygwin.tar.xz 28-Feb-2019 03:03 340 +pygmentex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:03 348 +pygmentex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:03 348 +pygmentex.x86_64-linux.r34996.tar.xz 28-Feb-2019 03:03 340 +pygmentex.x86_64-linux.tar.xz 28-Feb-2019 03:03 340 +pygmentex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:03 348 +pygmentex.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:03 348 +pygmentex.x86_64-solaris.r34996.tar.xz 28-Feb-2019 03:03 340 +pygmentex.x86_64-solaris.tar.xz 28-Feb-2019 03:03 340 +pyluatex.doc.r69372.tar.xz 11-Jan-2024 00:45 100840 +pyluatex.doc.tar.xz 11-Jan-2024 00:45 100840 +pyluatex.r69372.tar.xz 11-Jan-2024 00:45 5128 +pyluatex.tar.xz 11-Jan-2024 00:45 5128 +pynotebook.doc.r75593.tar.xz 23-Jun-2025 23:48 531680 +pynotebook.doc.tar.xz 23-Jun-2025 23:48 531680 +pynotebook.r75593.tar.xz 23-Jun-2025 23:48 3376 +pynotebook.tar.xz 23-Jun-2025 23:48 3376 +python.doc.r60162.tar.xz 04-Aug-2021 23:53 864 +python.doc.tar.xz 04-Aug-2021 23:53 864 +python.r60162.tar.xz 04-Aug-2021 23:53 2012 +python.tar.xz 04-Aug-2021 23:53 2012 +pythonhighlight.doc.r70698.tar.xz 19-Mar-2024 00:45 1480 +pythonhighlight.doc.tar.xz 19-Mar-2024 00:45 1480 +pythonhighlight.r70698.tar.xz 19-Mar-2024 00:45 2464 +pythonhighlight.tar.xz 19-Mar-2024 00:45 2464 +pythonimmediate.doc.r76135.tar.xz 24-Aug-2025 23:49 169204 +pythonimmediate.doc.tar.xz 24-Aug-2025 23:49 169204 +pythonimmediate.r76135.tar.xz 24-Aug-2025 23:49 4792 +pythonimmediate.tar.xz 24-Aug-2025 23:49 4792 +pythontex.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:03 364 +pythontex.aarch64-linux.tar.xz 28-Feb-2019 03:03 364 +pythontex.amd64-freebsd.r31638.tar.xz 28-Feb-2019 03:03 364 +pythontex.amd64-freebsd.tar.xz 28-Feb-2019 03:03 364 +pythontex.amd64-netbsd.r31638.tar.xz 28-Feb-2019 03:03 364 +pythontex.amd64-netbsd.tar.xz 28-Feb-2019 03:03 364 +pythontex.armhf-linux.r31638.tar.xz 28-Feb-2019 03:03 364 +pythontex.armhf-linux.tar.xz 28-Feb-2019 03:03 364 +pythontex.doc.r59514.tar.xz 07-Jun-2021 23:51 1553140 +pythontex.doc.tar.xz 07-Jun-2021 23:51 1553140 +pythontex.i386-freebsd.r31638.tar.xz 28-Feb-2019 03:03 364 +pythontex.i386-freebsd.tar.xz 28-Feb-2019 03:03 364 +pythontex.i386-linux.r31638.tar.xz 28-Feb-2019 03:03 360 +pythontex.i386-linux.tar.xz 28-Feb-2019 03:03 360 +pythontex.i386-netbsd.r31638.tar.xz 28-Feb-2019 03:03 360 +pythontex.i386-netbsd.tar.xz 28-Feb-2019 03:03 360 +pythontex.i386-solaris.r31638.tar.xz 28-Feb-2019 03:03 364 +pythontex.i386-solaris.tar.xz 28-Feb-2019 03:03 364 +pythontex.r59514.tar.xz 07-Jun-2021 23:51 66988 +pythontex.source.r59514.tar.xz 07-Jun-2021 23:51 83944 +pythontex.source.tar.xz 07-Jun-2021 23:51 83944 +pythontex.tar.xz 07-Jun-2021 23:51 66988 +pythontex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 368 +pythontex.universal-darwin.tar.xz 25-Feb-2021 18:17 368 +pythontex.windows.r65891.tar.xz 20-Feb-2023 22:15 2352 +pythontex.windows.tar.xz 20-Feb-2023 22:15 2352 +pythontex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:03 364 +pythontex.x86_64-cygwin.tar.xz 28-Feb-2019 03:03 364 +pythontex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:03 372 +pythontex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:03 372 +pythontex.x86_64-linux.r31638.tar.xz 28-Feb-2019 03:03 364 +pythontex.x86_64-linux.tar.xz 28-Feb-2019 03:03 364 +pythontex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:03 368 +pythontex.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:03 368 +pythontex.x86_64-solaris.r31638.tar.xz 28-Feb-2019 03:03 364 +pythontex.x86_64-solaris.tar.xz 28-Feb-2019 03:03 364 +q-and-a.doc.r69164.tar.xz 19-Dec-2023 00:43 583820 +q-and-a.doc.tar.xz 19-Dec-2023 00:43 583820 +q-and-a.r69164.tar.xz 19-Dec-2023 00:43 9376 +q-and-a.tar.xz 19-Dec-2023 00:43 9376 +qcircuit.doc.r48400.tar.xz 28-Feb-2019 03:03 298344 +qcircuit.doc.tar.xz 28-Feb-2019 03:03 298344 +qcircuit.r48400.tar.xz 28-Feb-2019 03:03 4452 +qcircuit.tar.xz 28-Feb-2019 03:03 4452 +qcm.doc.r63833.tar.xz 07-Jul-2022 23:55 94864 +qcm.doc.tar.xz 07-Jul-2022 23:55 94864 +qcm.r63833.tar.xz 07-Jul-2022 23:55 3528 +qcm.source.r63833.tar.xz 07-Jul-2022 23:55 9308 +qcm.source.tar.xz 07-Jul-2022 23:55 9308 +qcm.tar.xz 07-Jul-2022 23:55 3528 +qobitree.doc.r15878.tar.xz 28-Feb-2019 03:03 3656 +qobitree.doc.tar.xz 28-Feb-2019 03:03 3656 +qobitree.r15878.tar.xz 28-Feb-2019 03:03 2884 +qobitree.tar.xz 28-Feb-2019 03:03 2884 +qpxqtx.doc.r45797.tar.xz 28-Feb-2019 03:03 7044 +qpxqtx.doc.tar.xz 28-Feb-2019 03:03 7044 +qpxqtx.r45797.tar.xz 28-Feb-2019 03:03 12932 +qpxqtx.tar.xz 28-Feb-2019 03:03 12932 +qrbill.doc.r67724.tar.xz 24-Jul-2023 23:45 92884 +qrbill.doc.tar.xz 24-Jul-2023 23:45 92884 +qrbill.r67724.tar.xz 24-Jul-2023 23:45 23148 +qrbill.source.r67724.tar.xz 24-Jul-2023 23:45 16068 +qrbill.source.tar.xz 24-Jul-2023 23:45 16068 +qrbill.tar.xz 24-Jul-2023 23:45 23148 +qrcode.doc.r36065.tar.xz 28-Feb-2019 03:03 245688 +qrcode.doc.tar.xz 28-Feb-2019 03:03 245688 +qrcode.r36065.tar.xz 28-Feb-2019 03:03 19636 +qrcode.source.r36065.tar.xz 28-Feb-2019 03:03 26296 +qrcode.source.tar.xz 28-Feb-2019 03:03 26296 +qrcode.tar.xz 28-Feb-2019 03:03 19636 +qrcodetikz.doc.r75341.tar.xz 28-May-2025 23:52 551780 +qrcodetikz.doc.tar.xz 28-May-2025 23:52 551780 +qrcodetikz.r75341.tar.xz 28-May-2025 23:52 3256 +qrcodetikz.source.r75341.tar.xz 28-May-2025 23:52 14468 +qrcodetikz.source.tar.xz 28-May-2025 23:52 14468 +qrcodetikz.tar.xz 28-May-2025 23:52 3256 +qsharp.doc.r49722.tar.xz 28-Feb-2019 03:03 7208 +qsharp.doc.tar.xz 28-Feb-2019 03:03 7208 +qsharp.r49722.tar.xz 28-Feb-2019 03:03 1120 +qsharp.source.r49722.tar.xz 28-Feb-2019 03:03 2620 +qsharp.source.tar.xz 28-Feb-2019 03:03 2620 +qsharp.tar.xz 28-Feb-2019 03:03 1120 +qstest.doc.r73069.tar.xz 08-Dec-2024 01:14 218496 +qstest.doc.tar.xz 08-Dec-2024 01:14 218496 +qstest.r73069.tar.xz 08-Dec-2024 01:14 4852 +qstest.source.r73069.tar.xz 08-Dec-2024 01:14 23596 +qstest.source.tar.xz 08-Dec-2024 01:14 23596 +qstest.tar.xz 08-Dec-2024 01:14 4852 +qsymbols.doc.r15878.tar.xz 28-Feb-2019 03:03 129428 +qsymbols.doc.tar.xz 28-Feb-2019 03:03 129428 +qsymbols.r15878.tar.xz 28-Feb-2019 03:03 7680 +qsymbols.source.r15878.tar.xz 28-Feb-2019 03:03 1652 +qsymbols.source.tar.xz 28-Feb-2019 03:03 1652 +qsymbols.tar.xz 28-Feb-2019 03:03 7680 +qtree.doc.r15878.tar.xz 28-Feb-2019 03:03 209544 +qtree.doc.tar.xz 28-Feb-2019 03:03 209544 +qtree.r15878.tar.xz 28-Feb-2019 03:03 8156 +qtree.tar.xz 28-Feb-2019 03:03 8156 +qualitype.doc.r54512.tar.xz 24-Mar-2020 01:03 26460 +qualitype.doc.tar.xz 24-Mar-2020 01:03 26460 +qualitype.r54512.tar.xz 24-Mar-2020 01:03 2404264 +qualitype.tar.xz 24-Mar-2020 01:03 2404264 +quantikz.doc.r67206.tar.xz 24-May-2023 23:44 589436 +quantikz.doc.tar.xz 24-May-2023 23:44 589436 +quantikz.r67206.tar.xz 24-May-2023 23:44 20232 +quantikz.tar.xz 24-May-2023 23:44 20232 +quantum-chemistry-bonn.doc.r75406.tar.xz 05-Jun-2025 23:51 264476 +quantum-chemistry-bonn.doc.tar.xz 05-Jun-2025 23:51 264476 +quantum-chemistry-bonn.r75406.tar.xz 05-Jun-2025 23:51 2100 +quantum-chemistry-bonn.tar.xz 05-Jun-2025 23:51 2100 +quantumarticle.doc.r65242.tar.xz 12-Dec-2022 00:54 1284404 +quantumarticle.doc.tar.xz 12-Dec-2022 00:54 1284404 +quantumarticle.r65242.tar.xz 12-Dec-2022 00:54 24896 +quantumarticle.tar.xz 12-Dec-2022 00:54 24896 +quantumcubemodel.doc.r76130.tar.xz 24-Aug-2025 00:12 121148 +quantumcubemodel.doc.tar.xz 24-Aug-2025 00:12 121148 +quantumcubemodel.r76130.tar.xz 24-Aug-2025 00:12 2468 +quantumcubemodel.tar.xz 24-Aug-2025 00:12 2468 +quattrocento.doc.r64372.tar.xz 13-Sep-2022 23:53 147688 +quattrocento.doc.tar.xz 13-Sep-2022 23:53 147688 +quattrocento.r64372.tar.xz 13-Sep-2022 23:53 729176 +quattrocento.tar.xz 13-Sep-2022 23:53 729176 +quickreaction.doc.r66867.tar.xz 17-Apr-2023 23:54 251604 +quickreaction.doc.tar.xz 17-Apr-2023 23:54 251604 +quickreaction.r66867.tar.xz 17-Apr-2023 23:54 1680 +quickreaction.tar.xz 17-Apr-2023 23:54 1680 +quicktype.doc.r42183.tar.xz 28-Feb-2019 03:03 181576 +quicktype.doc.tar.xz 28-Feb-2019 03:03 181576 +quicktype.r42183.tar.xz 28-Feb-2019 03:03 1024 +quicktype.tar.xz 28-Feb-2019 03:03 1024 +quiver.doc.r75606.tar.xz 25-Jun-2025 23:50 187056 +quiver.doc.tar.xz 25-Jun-2025 23:50 187056 +quiver.r75606.tar.xz 25-Jun-2025 23:50 1476 +quiver.tar.xz 25-Jun-2025 23:50 1476 +quiz2socrative.doc.r52276.tar.xz 03-Oct-2019 23:54 212988 +quiz2socrative.doc.tar.xz 03-Oct-2019 23:54 212988 +quiz2socrative.r52276.tar.xz 03-Oct-2019 23:54 2400 +quiz2socrative.tar.xz 03-Oct-2019 23:54 2400 +quizztex.doc.r75977.tar.xz 05-Aug-2025 23:45 547352 +quizztex.doc.tar.xz 05-Aug-2025 23:45 547352 +quizztex.r75977.tar.xz 05-Aug-2025 23:45 5872 +quizztex.tar.xz 05-Aug-2025 23:45 5872 +quotchap.doc.r56926.tar.xz 14-Nov-2020 00:57 292964 +quotchap.doc.tar.xz 14-Nov-2020 00:57 292964 +quotchap.r56926.tar.xz 14-Nov-2020 00:57 2936 +quotchap.source.r56926.tar.xz 14-Nov-2020 00:57 7588 +quotchap.source.tar.xz 14-Nov-2020 00:57 7588 +quotchap.tar.xz 14-Nov-2020 00:57 2936 +quoting.doc.r32818.tar.xz 28-Feb-2019 03:03 307136 +quoting.doc.tar.xz 28-Feb-2019 03:03 307136 +quoting.r32818.tar.xz 28-Feb-2019 03:03 1832 +quoting.source.r32818.tar.xz 28-Feb-2019 03:03 8292 +quoting.source.tar.xz 28-Feb-2019 03:03 8292 +quoting.tar.xz 28-Feb-2019 03:03 1832 +quotmark.doc.r15878.tar.xz 28-Feb-2019 03:03 140616 +quotmark.doc.tar.xz 28-Feb-2019 03:03 140616 +quotmark.r15878.tar.xz 28-Feb-2019 03:03 5160 +quotmark.source.r15878.tar.xz 28-Feb-2019 03:03 8952 +quotmark.source.tar.xz 28-Feb-2019 03:03 8952 +quotmark.tar.xz 28-Feb-2019 03:03 5160 +quran-bn.doc.r74830.tar.xz 02-Apr-2025 23:49 146340 +quran-bn.doc.tar.xz 02-Apr-2025 23:49 146340 +quran-bn.r74830.tar.xz 02-Apr-2025 23:49 535164 +quran-bn.tar.xz 02-Apr-2025 23:49 535164 +quran-de.doc.r74874.tar.xz 07-Apr-2025 23:50 130268 +quran-de.doc.tar.xz 07-Apr-2025 23:50 130268 +quran-de.r74874.tar.xz 07-Apr-2025 23:50 619316 +quran-de.tar.xz 07-Apr-2025 23:50 619316 +quran-en.doc.r74874.tar.xz 07-Apr-2025 23:50 149148 +quran-en.doc.tar.xz 07-Apr-2025 23:50 149148 +quran-en.r74874.tar.xz 07-Apr-2025 23:50 2712608 +quran-en.tar.xz 07-Apr-2025 23:50 2712608 +quran-es.doc.r74874.tar.xz 07-Apr-2025 23:50 121016 +quran-es.doc.tar.xz 07-Apr-2025 23:50 121016 +quran-es.r74874.tar.xz 07-Apr-2025 23:50 633536 +quran-es.tar.xz 07-Apr-2025 23:50 633536 +quran-id.doc.r74874.tar.xz 07-Apr-2025 23:50 125336 +quran-id.doc.tar.xz 07-Apr-2025 23:50 125336 +quran-id.r74874.tar.xz 07-Apr-2025 23:50 794592 +quran-id.tar.xz 07-Apr-2025 23:50 794592 +quran-ur.doc.r74829.tar.xz 02-Apr-2025 23:49 154000 +quran-ur.doc.tar.xz 02-Apr-2025 23:49 154000 +quran-ur.r74829.tar.xz 02-Apr-2025 23:49 1870404 +quran-ur.tar.xz 02-Apr-2025 23:49 1870404 +quran.doc.r75029.tar.xz 27-Apr-2025 00:06 1050484 +quran.doc.tar.xz 27-Apr-2025 00:06 1050484 +quran.r75029.tar.xz 27-Apr-2025 00:06 1629644 +quran.tar.xz 27-Apr-2025 00:06 1629644 +qworld.doc.r75910.tar.xz 28-Jul-2025 23:50 1010040 +qworld.doc.tar.xz 28-Jul-2025 23:50 1010040 +qworld.r75910.tar.xz 28-Jul-2025 23:50 9736 +qworld.tar.xz 28-Jul-2025 23:50 9736 +qyxf-book.doc.r75712.tar.xz 07-Jul-2025 23:51 599896 +qyxf-book.doc.tar.xz 07-Jul-2025 23:51 599896 +qyxf-book.r75712.tar.xz 07-Jul-2025 23:51 5084 +qyxf-book.tar.xz 07-Jul-2025 23:51 5084 +r_und_s.doc.r15878.tar.xz 28-Feb-2019 03:04 3584 +r_und_s.doc.tar.xz 28-Feb-2019 03:04 3584 +r_und_s.r15878.tar.xz 28-Feb-2019 03:04 15440 +r_und_s.tar.xz 28-Feb-2019 03:04 15440 +ragged2e.doc.r67441.tar.xz 22-Jun-2023 23:45 727552 +ragged2e.doc.tar.xz 22-Jun-2023 23:45 727552 +ragged2e.r67441.tar.xz 22-Jun-2023 23:45 3048 +ragged2e.source.r67441.tar.xz 22-Jun-2023 23:45 12024 +ragged2e.source.tar.xz 22-Jun-2023 23:45 12024 +ragged2e.tar.xz 22-Jun-2023 23:45 3048 +rainbowbrackets.doc.r75976.tar.xz 05-Aug-2025 23:45 227012 +rainbowbrackets.doc.tar.xz 05-Aug-2025 23:45 227012 +rainbowbrackets.r75976.tar.xz 05-Aug-2025 23:45 3144 +rainbowbrackets.tar.xz 05-Aug-2025 23:45 3144 +raleway.doc.r74901.tar.xz 09-Apr-2025 23:49 290152 +raleway.doc.tar.xz 09-Apr-2025 23:49 290152 +raleway.r74901.tar.xz 09-Apr-2025 23:49 3416796 +raleway.tar.xz 09-Apr-2025 23:49 3416796 +ran_toks.doc.r59515.tar.xz 07-Jun-2021 23:51 524452 +ran_toks.doc.tar.xz 07-Jun-2021 23:51 524452 +ran_toks.r59515.tar.xz 07-Jun-2021 23:51 5324 +ran_toks.source.r59515.tar.xz 07-Jun-2021 23:51 12204 +ran_toks.source.tar.xz 07-Jun-2021 23:51 12204 +ran_toks.tar.xz 07-Jun-2021 23:51 5324 +randbild.doc.r15878.tar.xz 28-Feb-2019 03:04 67312 +randbild.doc.tar.xz 28-Feb-2019 03:04 67312 +randbild.r15878.tar.xz 28-Feb-2019 03:04 1552 +randbild.source.r15878.tar.xz 28-Feb-2019 03:04 5340 +randbild.source.tar.xz 28-Feb-2019 03:04 5340 +randbild.tar.xz 28-Feb-2019 03:04 1552 +randexam.doc.r71883.tar.xz 23-Jul-2024 23:48 229972 +randexam.doc.tar.xz 23-Jul-2024 23:48 229972 +randexam.r71883.tar.xz 23-Jul-2024 23:48 11892 +randexam.tar.xz 23-Jul-2024 23:48 11892 +randintlist.doc.r76164.tar.xz 27-Aug-2025 23:49 200508 +randintlist.doc.tar.xz 27-Aug-2025 23:49 200508 +randintlist.r76164.tar.xz 27-Aug-2025 23:49 3052 +randintlist.tar.xz 27-Aug-2025 23:49 3052 +random.doc.r54723.tar.xz 14-Apr-2020 23:54 78384 +random.doc.tar.xz 14-Apr-2020 23:54 78384 +random.r54723.tar.xz 14-Apr-2020 23:54 2224 +random.tar.xz 14-Apr-2020 23:54 2224 +randomlist.doc.r45281.tar.xz 28-Feb-2019 03:04 391560 +randomlist.doc.tar.xz 28-Feb-2019 03:04 391560 +randomlist.r45281.tar.xz 28-Feb-2019 03:04 4996 +randomlist.source.r45281.tar.xz 28-Feb-2019 03:04 18212 +randomlist.source.tar.xz 28-Feb-2019 03:04 18212 +randomlist.tar.xz 28-Feb-2019 03:04 4996 +randomwalk.doc.r49513.tar.xz 28-Feb-2019 03:04 479868 +randomwalk.doc.tar.xz 28-Feb-2019 03:04 479868 +randomwalk.r49513.tar.xz 28-Feb-2019 03:04 2196 +randomwalk.source.r49513.tar.xz 28-Feb-2019 03:04 5092 +randomwalk.source.tar.xz 28-Feb-2019 03:04 5092 +randomwalk.tar.xz 28-Feb-2019 03:04 2196 +randtext.doc.r15878.tar.xz 28-Feb-2019 03:04 672 +randtext.doc.tar.xz 28-Feb-2019 03:04 672 +randtext.r15878.tar.xz 28-Feb-2019 03:04 2804 +randtext.tar.xz 28-Feb-2019 03:04 2804 +rank-2-roots.doc.r75301.tar.xz 23-May-2025 23:46 447772 +rank-2-roots.doc.tar.xz 23-May-2025 23:46 447772 +rank-2-roots.r75301.tar.xz 23-May-2025 23:46 4300 +rank-2-roots.tar.xz 23-May-2025 23:46 4300 +rbt-mathnotes.doc.r61193.tar.xz 01-Dec-2021 01:00 215032 +rbt-mathnotes.doc.tar.xz 01-Dec-2021 01:00 215032 +rbt-mathnotes.r61193.tar.xz 01-Dec-2021 01:00 12292 +rbt-mathnotes.tar.xz 01-Dec-2021 01:00 12292 +rccol.doc.r15878.tar.xz 28-Feb-2019 03:04 143228 +rccol.doc.tar.xz 28-Feb-2019 03:04 143228 +rccol.r15878.tar.xz 28-Feb-2019 03:04 2160 +rccol.source.r15878.tar.xz 28-Feb-2019 03:04 9172 +rccol.source.tar.xz 28-Feb-2019 03:04 9172 +rccol.tar.xz 28-Feb-2019 03:04 2160 +rcs-multi.doc.r64967.tar.xz 08-Nov-2022 00:55 651132 +rcs-multi.doc.tar.xz 08-Nov-2022 00:55 651132 +rcs-multi.r64967.tar.xz 08-Nov-2022 00:55 3032 +rcs-multi.source.r64967.tar.xz 08-Nov-2022 00:55 13584 +rcs-multi.source.tar.xz 08-Nov-2022 00:55 13584 +rcs-multi.tar.xz 08-Nov-2022 00:55 3032 +rcs.doc.r15878.tar.xz 28-Feb-2019 03:04 121328 +rcs.doc.tar.xz 28-Feb-2019 03:04 121328 +rcs.r15878.tar.xz 28-Feb-2019 03:04 12512 +rcs.source.r15878.tar.xz 28-Feb-2019 03:04 23544 +rcs.source.tar.xz 28-Feb-2019 03:04 23544 +rcs.tar.xz 28-Feb-2019 03:04 12512 +rcsinfo.doc.r15878.tar.xz 28-Feb-2019 03:04 148308 +rcsinfo.doc.tar.xz 28-Feb-2019 03:04 148308 +rcsinfo.r15878.tar.xz 28-Feb-2019 03:04 3120 +rcsinfo.source.r15878.tar.xz 28-Feb-2019 03:04 13612 +rcsinfo.source.tar.xz 28-Feb-2019 03:04 13612 +rcsinfo.tar.xz 28-Feb-2019 03:04 3120 +readablecv.doc.r67986.tar.xz 19-Aug-2023 23:49 207192 +readablecv.doc.tar.xz 19-Aug-2023 23:49 207192 +readablecv.r67986.tar.xz 19-Aug-2023 23:49 3948 +readablecv.tar.xz 19-Aug-2023 23:49 3948 +readarray.doc.r60540.tar.xz 18-Sep-2021 23:53 506352 +readarray.doc.tar.xz 18-Sep-2021 23:53 506352 +readarray.r60540.tar.xz 18-Sep-2021 23:53 5492 +readarray.tar.xz 18-Sep-2021 23:53 5492 +realboxes.doc.r64967.tar.xz 08-Nov-2022 00:55 175812 +realboxes.doc.tar.xz 08-Nov-2022 00:55 175812 +realboxes.r64967.tar.xz 08-Nov-2022 00:55 3016 +realboxes.source.r64967.tar.xz 08-Nov-2022 00:55 7416 +realboxes.source.tar.xz 08-Nov-2022 00:55 7416 +realboxes.tar.xz 08-Nov-2022 00:55 3016 +realhats.doc.r66924.tar.xz 23-Apr-2023 23:54 1888312 +realhats.doc.tar.xz 23-Apr-2023 23:54 1888312 +realhats.r66924.tar.xz 23-Apr-2023 23:54 1782004 +realhats.source.r66924.tar.xz 23-Apr-2023 23:54 3128 +realhats.source.tar.xz 23-Apr-2023 23:54 3128 +realhats.tar.xz 23-Apr-2023 23:54 1782004 +realscripts.doc.r56594.tar.xz 07-Oct-2020 23:55 104544 +realscripts.doc.tar.xz 07-Oct-2020 23:55 104544 +realscripts.r56594.tar.xz 07-Oct-2020 23:55 1880 +realscripts.source.r56594.tar.xz 07-Oct-2020 23:55 4468 +realscripts.source.tar.xz 07-Oct-2020 23:55 4468 +realscripts.tar.xz 07-Oct-2020 23:55 1880 +realtranspose.doc.r56623.tar.xz 10-Oct-2020 23:56 89376 +realtranspose.doc.tar.xz 10-Oct-2020 23:56 89376 +realtranspose.r56623.tar.xz 10-Oct-2020 23:56 1552 +realtranspose.source.r56623.tar.xz 10-Oct-2020 23:56 1540 +realtranspose.source.tar.xz 10-Oct-2020 23:56 1540 +realtranspose.tar.xz 10-Oct-2020 23:56 1552 +rebuttal.doc.r72851.tar.xz 15-Nov-2024 00:48 629700 +rebuttal.doc.tar.xz 15-Nov-2024 00:48 629700 +rebuttal.r72851.tar.xz 15-Nov-2024 00:48 3800 +rebuttal.source.r72851.tar.xz 15-Nov-2024 00:48 8692 +rebuttal.source.tar.xz 15-Nov-2024 00:48 8692 +rebuttal.tar.xz 15-Nov-2024 00:48 3800 +rec-thy.doc.r74983.tar.xz 20-Apr-2025 00:00 360840 +rec-thy.doc.tar.xz 20-Apr-2025 00:00 360840 +rec-thy.r74983.tar.xz 20-Apr-2025 00:00 14648 +rec-thy.tar.xz 20-Apr-2025 00:00 14648 +recipe.doc.r54080.tar.xz 04-Mar-2020 22:53 23600 +recipe.doc.tar.xz 04-Mar-2020 22:53 23600 +recipe.r54080.tar.xz 04-Mar-2020 22:53 1956 +recipe.tar.xz 04-Mar-2020 22:53 1956 +recipebook.doc.r75878.tar.xz 23-Jul-2025 23:50 927924 +recipebook.doc.tar.xz 23-Jul-2025 23:50 927924 +recipebook.r75878.tar.xz 23-Jul-2025 23:50 4056 +recipebook.tar.xz 23-Jul-2025 23:50 4056 +recipecard.doc.r15878.tar.xz 28-Feb-2019 03:04 186552 +recipecard.doc.tar.xz 28-Feb-2019 03:04 186552 +recipecard.r15878.tar.xz 28-Feb-2019 03:04 2644 +recipecard.source.r15878.tar.xz 28-Feb-2019 03:04 9372 +recipecard.source.tar.xz 28-Feb-2019 03:04 9372 +recipecard.tar.xz 28-Feb-2019 03:04 2644 +recorder-fingering.doc.r73711.tar.xz 04-Feb-2025 00:48 181416 +recorder-fingering.doc.tar.xz 04-Feb-2025 00:48 181416 +recorder-fingering.r73711.tar.xz 04-Feb-2025 00:48 6220 +recorder-fingering.tar.xz 04-Feb-2025 00:48 6220 +rectopma.doc.r70885.tar.xz 07-Apr-2024 23:46 230780 +rectopma.doc.tar.xz 07-Apr-2024 23:46 230780 +rectopma.r70885.tar.xz 07-Apr-2024 23:46 1000 +rectopma.source.r70885.tar.xz 07-Apr-2024 23:46 2536 +rectopma.source.tar.xz 07-Apr-2024 23:46 2536 +rectopma.tar.xz 07-Apr-2024 23:46 1000 +recycle.doc.r15878.tar.xz 28-Feb-2019 03:04 768 +recycle.doc.tar.xz 28-Feb-2019 03:04 768 +recycle.r15878.tar.xz 28-Feb-2019 03:04 9820 +recycle.tar.xz 28-Feb-2019 03:04 9820 +refcheck.doc.r75629.tar.xz 27-Jun-2025 23:46 183380 +refcheck.doc.tar.xz 27-Jun-2025 23:46 183380 +refcheck.r75629.tar.xz 27-Jun-2025 23:46 3608 +refcheck.tar.xz 27-Jun-2025 23:46 3608 +refcount.doc.r53164.tar.xz 18-Dec-2019 00:54 325408 +refcount.doc.tar.xz 18-Dec-2019 00:54 325408 +refcount.r53164.tar.xz 18-Dec-2019 00:54 3040 +refcount.source.r53164.tar.xz 18-Dec-2019 00:54 7464 +refcount.source.tar.xz 18-Dec-2019 00:54 7464 +refcount.tar.xz 18-Dec-2019 00:54 3040 +refenums.doc.r44131.tar.xz 28-Feb-2019 03:04 188004 +refenums.doc.tar.xz 28-Feb-2019 03:04 188004 +refenums.r44131.tar.xz 28-Feb-2019 03:04 2180 +refenums.tar.xz 28-Feb-2019 03:04 2180 +reflectgraphics.doc.r40612.tar.xz 28-Feb-2019 03:04 236908 +reflectgraphics.doc.tar.xz 28-Feb-2019 03:04 236908 +reflectgraphics.r40612.tar.xz 28-Feb-2019 03:04 2308 +reflectgraphics.source.r40612.tar.xz 28-Feb-2019 03:04 7788 +reflectgraphics.source.tar.xz 28-Feb-2019 03:04 7788 +reflectgraphics.tar.xz 28-Feb-2019 03:04 2308 +refman.doc.r15878.tar.xz 28-Feb-2019 03:04 643176 +refman.doc.tar.xz 28-Feb-2019 03:04 643176 +refman.r15878.tar.xz 28-Feb-2019 03:04 9348 +refman.source.r15878.tar.xz 28-Feb-2019 03:04 28680 +refman.source.tar.xz 28-Feb-2019 03:04 28680 +refman.tar.xz 28-Feb-2019 03:04 9348 +refstyle.doc.r69680.tar.xz 03-Feb-2024 00:46 735800 +refstyle.doc.tar.xz 03-Feb-2024 00:46 735800 +refstyle.r69680.tar.xz 03-Feb-2024 00:46 6108 +refstyle.source.r69680.tar.xz 03-Feb-2024 00:46 21784 +refstyle.source.tar.xz 03-Feb-2024 00:46 21784 +refstyle.tar.xz 03-Feb-2024 00:46 6108 +regcount.doc.r19979.tar.xz 28-Feb-2019 03:04 197208 +regcount.doc.tar.xz 28-Feb-2019 03:04 197208 +regcount.r19979.tar.xz 28-Feb-2019 03:04 1684 +regcount.source.r19979.tar.xz 28-Feb-2019 03:04 3792 +regcount.source.tar.xz 28-Feb-2019 03:04 3792 +regcount.tar.xz 28-Feb-2019 03:04 1684 +regexpatch.doc.r58668.tar.xz 23-Mar-2021 22:49 532336 +regexpatch.doc.tar.xz 23-Mar-2021 22:49 532336 +regexpatch.r58668.tar.xz 23-Mar-2021 22:49 3680 +regexpatch.source.r58668.tar.xz 23-Mar-2021 22:49 12568 +regexpatch.source.tar.xz 23-Mar-2021 22:49 12568 +regexpatch.tar.xz 23-Mar-2021 22:49 3680 +register.doc.r54485.tar.xz 23-Mar-2020 00:56 314992 +register.doc.tar.xz 23-Mar-2020 00:56 314992 +register.r54485.tar.xz 23-Mar-2020 00:56 4648 +register.source.r54485.tar.xz 23-Mar-2020 00:56 15436 +register.source.tar.xz 23-Mar-2020 00:56 15436 +register.tar.xz 23-Mar-2020 00:56 4648 +regstats.doc.r73635.tar.xz 30-Jan-2025 00:48 515816 +regstats.doc.tar.xz 30-Jan-2025 00:48 515816 +regstats.r73635.tar.xz 30-Jan-2025 00:48 3960 +regstats.source.r73635.tar.xz 30-Jan-2025 00:48 15936 +regstats.source.tar.xz 30-Jan-2025 00:48 15936 +regstats.tar.xz 30-Jan-2025 00:48 3960 +regulatory.doc.r72197.tar.xz 05-Sep-2024 23:47 445288 +regulatory.doc.tar.xz 05-Sep-2024 23:47 445288 +regulatory.r72197.tar.xz 05-Sep-2024 23:47 5672 +regulatory.tar.xz 05-Sep-2024 23:47 5672 +reledmac.doc.r76230.tar.xz 04-Sep-2025 23:50 10880956 +reledmac.doc.tar.xz 04-Sep-2025 23:50 10880956 +reledmac.r76230.tar.xz 04-Sep-2025 23:50 56440 +reledmac.source.r76230.tar.xz 04-Sep-2025 23:50 211496 +reledmac.source.tar.xz 04-Sep-2025 23:50 211496 +reledmac.tar.xz 04-Sep-2025 23:50 56440 +relenc.doc.r22050.tar.xz 28-Feb-2019 03:04 26504 +relenc.doc.tar.xz 28-Feb-2019 03:04 26504 +relenc.r22050.tar.xz 28-Feb-2019 03:04 11188 +relenc.source.r22050.tar.xz 28-Feb-2019 03:04 26728 +relenc.source.tar.xz 28-Feb-2019 03:04 26728 +relenc.tar.xz 28-Feb-2019 03:04 11188 +relsize.doc.r30707.tar.xz 28-Feb-2019 03:04 309064 +relsize.doc.tar.xz 28-Feb-2019 03:04 309064 +relsize.r30707.tar.xz 28-Feb-2019 03:04 5716 +relsize.tar.xz 28-Feb-2019 03:04 5716 +reotex.doc.r34924.tar.xz 28-Feb-2019 03:04 200404 +reotex.doc.tar.xz 28-Feb-2019 03:04 200404 +reotex.r34924.tar.xz 28-Feb-2019 03:04 4116 +reotex.tar.xz 28-Feb-2019 03:04 4116 +repeatindex.doc.r24305.tar.xz 28-Feb-2019 03:04 1216 +repeatindex.doc.tar.xz 28-Feb-2019 03:04 1216 +repeatindex.r24305.tar.xz 28-Feb-2019 03:04 1904 +repeatindex.tar.xz 28-Feb-2019 03:04 1904 +repere.doc.r66998.tar.xz 03-May-2023 23:53 703336 +repere.doc.tar.xz 03-May-2023 23:53 703336 +repere.r66998.tar.xz 03-May-2023 23:53 28380 +repere.tar.xz 03-May-2023 23:53 28380 +repltext.doc.r56433.tar.xz 25-Sep-2020 23:56 426068 +repltext.doc.tar.xz 25-Sep-2020 23:56 426068 +repltext.r56433.tar.xz 25-Sep-2020 23:56 1412 +repltext.source.r56433.tar.xz 25-Sep-2020 23:56 7104 +repltext.source.tar.xz 25-Sep-2020 23:56 7104 +repltext.tar.xz 25-Sep-2020 23:56 1412 +reptheorem.doc.r76224.tar.xz 03-Sep-2025 23:49 255056 +reptheorem.doc.tar.xz 03-Sep-2025 23:49 255056 +reptheorem.r76224.tar.xz 03-Sep-2025 23:49 2156 +reptheorem.source.r76224.tar.xz 03-Sep-2025 23:49 6276 +reptheorem.source.tar.xz 03-Sep-2025 23:49 6276 +reptheorem.tar.xz 03-Sep-2025 23:49 2156 +rerunfilecheck.doc.r75559.tar.xz 21-Jun-2025 23:54 330212 +rerunfilecheck.doc.tar.xz 21-Jun-2025 23:54 330212 +rerunfilecheck.r75559.tar.xz 21-Jun-2025 23:54 3132 +rerunfilecheck.source.r75559.tar.xz 21-Jun-2025 23:54 7244 +rerunfilecheck.source.tar.xz 21-Jun-2025 23:54 7244 +rerunfilecheck.tar.xz 21-Jun-2025 23:54 3132 +rescansync.doc.r63856.tar.xz 09-Jul-2022 23:53 380868 +rescansync.doc.tar.xz 09-Jul-2022 23:53 380868 +rescansync.r63856.tar.xz 09-Jul-2022 23:53 2096 +rescansync.tar.xz 09-Jul-2022 23:53 2096 +resmes.doc.r65375.tar.xz 28-Dec-2022 00:54 67908 +resmes.doc.tar.xz 28-Dec-2022 00:54 67908 +resmes.r65375.tar.xz 28-Dec-2022 00:55 940 +resmes.source.r65375.tar.xz 28-Dec-2022 00:54 1404 +resmes.source.tar.xz 28-Dec-2022 00:54 1404 +resmes.tar.xz 28-Dec-2022 00:55 940 +resolsysteme.doc.r73069.tar.xz 08-Dec-2024 01:14 481512 +resolsysteme.doc.tar.xz 08-Dec-2024 01:14 481512 +resolsysteme.r73069.tar.xz 08-Dec-2024 01:14 8396 +resolsysteme.tar.xz 08-Dec-2024 01:14 8396 +resphilosophica.doc.r75672.tar.xz 03-Jul-2025 23:47 515836 +resphilosophica.doc.tar.xz 03-Jul-2025 23:47 515836 +resphilosophica.r75672.tar.xz 03-Jul-2025 23:47 12164 +resphilosophica.source.r75672.tar.xz 03-Jul-2025 23:47 18036 +resphilosophica.source.tar.xz 03-Jul-2025 23:47 18036 +resphilosophica.tar.xz 03-Jul-2025 23:47 12164 +responsive.doc.r71800.tar.xz 14-Jul-2024 23:47 82712 +responsive.doc.tar.xz 14-Jul-2024 23:47 82712 +responsive.r71800.tar.xz 14-Jul-2024 23:47 4316 +responsive.tar.xz 14-Jul-2024 23:47 4316 +rest-api.doc.r57068.tar.xz 05-Dec-2020 00:57 142288 +rest-api.doc.tar.xz 05-Dec-2020 00:57 142288 +rest-api.r57068.tar.xz 05-Dec-2020 00:57 2892 +rest-api.source.r57068.tar.xz 05-Dec-2020 00:57 5324 +rest-api.source.tar.xz 05-Dec-2020 00:57 5324 +rest-api.tar.xz 05-Dec-2020 00:57 2892 +resumecls.doc.r54815.tar.xz 20-Apr-2020 23:56 157668 +resumecls.doc.tar.xz 20-Apr-2020 23:56 157668 +resumecls.r54815.tar.xz 20-Apr-2020 23:56 1636 +resumecls.source.r54815.tar.xz 20-Apr-2020 23:56 4692 +resumecls.source.tar.xz 20-Apr-2020 23:56 4692 +resumecls.tar.xz 20-Apr-2020 23:56 1636 +resumemac.doc.r15878.tar.xz 28-Feb-2019 03:04 1676 +resumemac.doc.tar.xz 28-Feb-2019 03:04 1676 +resumemac.r15878.tar.xz 28-Feb-2019 03:04 3040 +resumemac.tar.xz 28-Feb-2019 03:04 3040 +retosmatematicos.doc.r76358.tar.xz 19-Sep-2025 23:47 242392 +retosmatematicos.doc.tar.xz 19-Sep-2025 23:47 242392 +retosmatematicos.r76358.tar.xz 19-Sep-2025 23:47 5296 +retosmatematicos.tar.xz 19-Sep-2025 23:47 5296 +returntogrid.doc.r48485.tar.xz 28-Feb-2019 03:04 148880 +returntogrid.doc.tar.xz 28-Feb-2019 03:04 148880 +returntogrid.r48485.tar.xz 28-Feb-2019 03:04 3948 +returntogrid.tar.xz 28-Feb-2019 03:04 3948 +reverxii.doc.r63753.tar.xz 28-Jun-2022 23:54 229340 +reverxii.doc.tar.xz 28-Jun-2022 23:54 229340 +reverxii.r63753.tar.xz 28-Jun-2022 23:54 1216 +reverxii.source.r63753.tar.xz 28-Jun-2022 23:54 7072 +reverxii.source.tar.xz 28-Jun-2022 23:54 7072 +reverxii.tar.xz 28-Jun-2022 23:54 1216 +revquantum.doc.r43505.tar.xz 28-Feb-2019 03:04 252604 +revquantum.doc.tar.xz 28-Feb-2019 03:04 252604 +revquantum.r43505.tar.xz 28-Feb-2019 03:04 3948 +revquantum.source.r43505.tar.xz 28-Feb-2019 03:04 8792 +revquantum.source.tar.xz 28-Feb-2019 03:04 8792 +revquantum.tar.xz 28-Feb-2019 03:04 3948 +revtex.doc.r67271.tar.xz 02-Jun-2023 23:45 5065364 +revtex.doc.tar.xz 02-Jun-2023 23:45 5065364 +revtex.r67271.tar.xz 02-Jun-2023 23:45 67824 +revtex.source.r67271.tar.xz 02-Jun-2023 23:45 195432 +revtex.source.tar.xz 02-Jun-2023 23:45 195432 +revtex.tar.xz 02-Jun-2023 23:45 67824 +revtex4-1.doc.r56590.tar.xz 07-Oct-2020 22:21 5428696 +revtex4-1.doc.tar.xz 07-Oct-2020 22:21 5428696 +revtex4-1.r56590.tar.xz 07-Oct-2020 22:22 61308 +revtex4-1.source.r56590.tar.xz 07-Oct-2020 22:21 79740 +revtex4-1.source.tar.xz 07-Oct-2020 22:21 79740 +revtex4-1.tar.xz 07-Oct-2020 22:22 61308 +revtex4.doc.r56589.tar.xz 07-Oct-2020 22:21 1485440 +revtex4.doc.tar.xz 07-Oct-2020 22:21 1485440 +revtex4.r56589.tar.xz 07-Oct-2020 22:21 47488 +revtex4.source.r56589.tar.xz 07-Oct-2020 22:21 136108 +revtex4.source.tar.xz 07-Oct-2020 22:21 136108 +revtex4.tar.xz 07-Oct-2020 22:21 47488 +rgltxdoc.doc.r53858.tar.xz 22-Feb-2020 00:55 161168 +rgltxdoc.doc.tar.xz 22-Feb-2020 00:55 161168 +rgltxdoc.r53858.tar.xz 22-Feb-2020 00:55 3340 +rgltxdoc.source.r53858.tar.xz 22-Feb-2020 00:55 9516 +rgltxdoc.source.tar.xz 22-Feb-2020 00:55 9516 +rgltxdoc.tar.xz 22-Feb-2020 00:55 3340 +ribbonproofs.doc.r31137.tar.xz 28-Feb-2019 03:04 335072 +ribbonproofs.doc.tar.xz 28-Feb-2019 03:04 335072 +ribbonproofs.r31137.tar.xz 28-Feb-2019 03:04 11420 +ribbonproofs.tar.xz 28-Feb-2019 03:04 11420 +rigidnotation.doc.r71264.tar.xz 14-May-2024 23:47 273576 +rigidnotation.doc.tar.xz 14-May-2024 23:47 273576 +rigidnotation.r71264.tar.xz 14-May-2024 23:47 2140 +rigidnotation.source.r71264.tar.xz 14-May-2024 23:47 5184 +rigidnotation.source.tar.xz 14-May-2024 23:47 5184 +rigidnotation.tar.xz 14-May-2024 23:47 2140 +rit-fonts.doc.r74984.tar.xz 20-Apr-2025 00:00 481008 +rit-fonts.doc.tar.xz 20-Apr-2025 00:00 481008 +rit-fonts.r74984.tar.xz 20-Apr-2025 00:00 4521780 +rit-fonts.tar.xz 20-Apr-2025 00:00 4521780 +rjlparshap.doc.r15878.tar.xz 28-Feb-2019 03:04 110516 +rjlparshap.doc.tar.xz 28-Feb-2019 03:04 110516 +rjlparshap.r15878.tar.xz 28-Feb-2019 03:04 1852 +rjlparshap.source.r15878.tar.xz 28-Feb-2019 03:04 7580 +rjlparshap.source.tar.xz 28-Feb-2019 03:04 7580 +rjlparshap.tar.xz 28-Feb-2019 03:04 1852 +rlepsf.doc.r19082.tar.xz 28-Feb-2019 03:04 59272 +rlepsf.doc.tar.xz 28-Feb-2019 03:04 59272 +rlepsf.r19082.tar.xz 28-Feb-2019 03:04 3012 +rlepsf.tar.xz 28-Feb-2019 03:04 3012 +rmathbr.doc.r57173.tar.xz 20-Dec-2020 00:57 252508 +rmathbr.doc.tar.xz 20-Dec-2020 00:57 252508 +rmathbr.r57173.tar.xz 20-Dec-2020 00:57 8656 +rmathbr.source.r57173.tar.xz 20-Dec-2020 00:57 14392 +rmathbr.source.tar.xz 20-Dec-2020 00:57 14392 +rmathbr.tar.xz 20-Dec-2020 00:57 8656 +rmpage.doc.r54080.tar.xz 04-Mar-2020 22:53 553688 +rmpage.doc.tar.xz 04-Mar-2020 22:53 553688 +rmpage.r54080.tar.xz 04-Mar-2020 22:53 61812 +rmpage.tar.xz 04-Mar-2020 22:53 61812 +robotarm.doc.r63116.tar.xz 23-Apr-2022 23:53 184700 +robotarm.doc.tar.xz 23-Apr-2022 23:53 184700 +robotarm.r63116.tar.xz 23-Apr-2022 23:53 2924 +robotarm.source.r63116.tar.xz 23-Apr-2022 23:53 6884 +robotarm.source.tar.xz 23-Apr-2022 23:53 6884 +robotarm.tar.xz 23-Apr-2022 23:53 2924 +roboto.doc.r64350.tar.xz 12-Sep-2022 23:54 514128 +roboto.doc.tar.xz 12-Sep-2022 23:54 514128 +roboto.r64350.tar.xz 12-Sep-2022 23:54 25354284 +roboto.tar.xz 12-Sep-2022 23:54 25354284 +robust-externalize.doc.r74882.tar.xz 08-Apr-2025 23:51 1446564 +robust-externalize.doc.tar.xz 08-Apr-2025 23:51 1446564 +robust-externalize.r74882.tar.xz 08-Apr-2025 23:51 36876 +robust-externalize.tar.xz 08-Apr-2025 23:51 36876 +robustcommand.doc.r15878.tar.xz 28-Feb-2019 03:04 57844 +robustcommand.doc.tar.xz 28-Feb-2019 03:04 57844 +robustcommand.r15878.tar.xz 28-Feb-2019 03:04 1176 +robustcommand.source.r15878.tar.xz 28-Feb-2019 03:04 2852 +robustcommand.source.tar.xz 28-Feb-2019 03:04 2852 +robustcommand.tar.xz 28-Feb-2019 03:04 1176 +robustindex.doc.r49877.tar.xz 28-Feb-2019 03:04 420516 +robustindex.doc.tar.xz 28-Feb-2019 03:04 420516 +robustindex.r49877.tar.xz 28-Feb-2019 03:04 5032 +robustindex.tar.xz 28-Feb-2019 03:04 5032 +roex.r45818.tar.xz 28-Feb-2019 03:04 19996 +roex.source.r45818.tar.xz 28-Feb-2019 03:04 8420 +roex.source.tar.xz 28-Feb-2019 03:04 8420 +roex.tar.xz 28-Feb-2019 03:04 19996 +rojud.doc.r56895.tar.xz 10-Nov-2020 00:58 187136 +rojud.doc.tar.xz 10-Nov-2020 00:58 187136 +rojud.r56895.tar.xz 10-Nov-2020 00:58 333376 +rojud.tar.xz 10-Nov-2020 00:58 333376 +romanbar.doc.r73634.tar.xz 30-Jan-2025 00:48 363812 +romanbar.doc.tar.xz 30-Jan-2025 00:48 363812 +romanbar.r73634.tar.xz 30-Jan-2025 00:48 2200 +romanbar.source.r73634.tar.xz 30-Jan-2025 00:48 8784 +romanbar.source.tar.xz 30-Jan-2025 00:48 8784 +romanbar.tar.xz 30-Jan-2025 00:48 2200 +romanbarpagenumber.doc.r36236.tar.xz 28-Feb-2019 03:04 213792 +romanbarpagenumber.doc.tar.xz 28-Feb-2019 03:04 213792 +romanbarpagenumber.r36236.tar.xz 28-Feb-2019 03:04 876 +romanbarpagenumber.source.r36236.tar.xz 28-Feb-2019 03:04 3144 +romanbarpagenumber.source.tar.xz 28-Feb-2019 03:04 3144 +romanbarpagenumber.tar.xz 28-Feb-2019 03:04 876 +romandeadf.doc.r72484.tar.xz 07-Oct-2024 23:49 1504324 +romandeadf.doc.tar.xz 07-Oct-2024 23:49 1504324 +romandeadf.r72484.tar.xz 07-Oct-2024 23:49 472312 +romandeadf.source.r72484.tar.xz 07-Oct-2024 23:49 19616 +romandeadf.source.tar.xz 07-Oct-2024 23:49 19616 +romandeadf.tar.xz 07-Oct-2024 23:49 472312 +romanneg.doc.r20087.tar.xz 28-Feb-2019 03:04 184164 +romanneg.doc.tar.xz 28-Feb-2019 03:04 184164 +romanneg.r20087.tar.xz 28-Feb-2019 03:04 1208 +romanneg.tar.xz 28-Feb-2019 03:04 1208 +romannum.doc.r15878.tar.xz 28-Feb-2019 03:04 126676 +romannum.doc.tar.xz 28-Feb-2019 03:04 126676 +romannum.r15878.tar.xz 28-Feb-2019 03:04 1684 +romannum.source.r15878.tar.xz 28-Feb-2019 03:04 5784 +romannum.source.tar.xz 28-Feb-2019 03:04 5784 +romannum.tar.xz 28-Feb-2019 03:04 1684 +rorlink.doc.r67461.tar.xz 24-Jun-2023 23:47 223320 +rorlink.doc.tar.xz 24-Jun-2023 23:47 223320 +rorlink.r67461.tar.xz 24-Jun-2023 23:47 2880 +rorlink.source.r67461.tar.xz 24-Jun-2023 23:47 4704 +rorlink.source.tar.xz 24-Jun-2023 23:47 4704 +rorlink.tar.xz 24-Jun-2023 23:47 2880 +rosario.doc.r51688.tar.xz 21-Jul-2019 23:53 499816 +rosario.doc.tar.xz 21-Jul-2019 23:53 499816 +rosario.r51688.tar.xz 21-Jul-2019 23:53 1387528 +rosario.source.r51688.tar.xz 21-Jul-2019 23:53 7348 +rosario.source.tar.xz 21-Jul-2019 23:53 7348 +rosario.tar.xz 21-Jul-2019 23:53 1387528 +rotfloat.doc.r18292.tar.xz 28-Feb-2019 03:04 214720 +rotfloat.doc.tar.xz 28-Feb-2019 03:04 214720 +rotfloat.r18292.tar.xz 28-Feb-2019 03:04 1528 +rotfloat.source.r18292.tar.xz 28-Feb-2019 03:04 6108 +rotfloat.source.tar.xz 28-Feb-2019 03:04 6108 +rotfloat.tar.xz 28-Feb-2019 03:04 1528 +rotpages.doc.r18740.tar.xz 28-Feb-2019 03:04 125096 +rotpages.doc.tar.xz 28-Feb-2019 03:04 125096 +rotpages.r18740.tar.xz 28-Feb-2019 03:04 2296 +rotpages.tar.xz 28-Feb-2019 03:04 2296 +rouequestions.doc.r67670.tar.xz 19-Jul-2023 23:44 244880 +rouequestions.doc.tar.xz 19-Jul-2023 23:44 244880 +rouequestions.r67670.tar.xz 19-Jul-2023 23:44 2032 +rouequestions.tar.xz 19-Jul-2023 23:44 2032 +roundbox.doc.r29675.tar.xz 28-Feb-2019 03:04 884 +roundbox.doc.tar.xz 28-Feb-2019 03:04 884 +roundbox.r29675.tar.xz 28-Feb-2019 03:04 1508 +roundbox.tar.xz 28-Feb-2019 03:04 1508 +roundrect.doc.r39796.tar.xz 28-Feb-2019 03:04 284140 +roundrect.doc.tar.xz 28-Feb-2019 03:04 284140 +roundrect.r39796.tar.xz 28-Feb-2019 03:04 2200 +roundrect.source.r39796.tar.xz 28-Feb-2019 03:04 7076 +roundrect.source.tar.xz 28-Feb-2019 03:04 7076 +roundrect.tar.xz 28-Feb-2019 03:04 2200 +rpgicons.doc.r76402.tar.xz 25-Sep-2025 23:49 463032 +rpgicons.doc.tar.xz 25-Sep-2025 23:49 463032 +rpgicons.r76402.tar.xz 25-Sep-2025 23:49 17616 +rpgicons.tar.xz 25-Sep-2025 23:49 17616 +rrgtrees.doc.r27322.tar.xz 28-Feb-2019 03:04 90388 +rrgtrees.doc.tar.xz 28-Feb-2019 03:04 90388 +rrgtrees.r27322.tar.xz 28-Feb-2019 03:04 3284 +rrgtrees.source.r27322.tar.xz 28-Feb-2019 03:04 11056 +rrgtrees.source.tar.xz 28-Feb-2019 03:04 11056 +rrgtrees.tar.xz 28-Feb-2019 03:04 3284 +rsc.doc.r41923.tar.xz 28-Feb-2019 03:04 187208 +rsc.doc.tar.xz 28-Feb-2019 03:04 187208 +rsc.r41923.tar.xz 28-Feb-2019 03:04 7124 +rsc.source.r41923.tar.xz 28-Feb-2019 03:04 14708 +rsc.source.tar.xz 28-Feb-2019 03:04 14708 +rsc.tar.xz 28-Feb-2019 03:04 7124 +rsfs.doc.r15878.tar.xz 28-Feb-2019 03:04 2280 +rsfs.doc.tar.xz 28-Feb-2019 03:04 2280 +rsfs.r15878.tar.xz 28-Feb-2019 03:04 56092 +rsfs.tar.xz 28-Feb-2019 03:04 56092 +rsfso.doc.r60849.tar.xz 23-Oct-2021 23:54 149180 +rsfso.doc.tar.xz 23-Oct-2021 23:54 149180 +rsfso.r60849.tar.xz 23-Oct-2021 23:54 3780 +rsfso.tar.xz 23-Oct-2021 23:54 3780 +rterface.doc.r30084.tar.xz 28-Feb-2019 03:04 51296 +rterface.doc.tar.xz 28-Feb-2019 03:04 51296 +rterface.r30084.tar.xz 28-Feb-2019 03:04 1664 +rterface.tar.xz 28-Feb-2019 03:04 1664 +rtkinenc.doc.r20003.tar.xz 28-Feb-2019 03:04 258108 +rtkinenc.doc.tar.xz 28-Feb-2019 03:04 258108 +rtkinenc.r20003.tar.xz 28-Feb-2019 03:04 2516 +rtkinenc.source.r20003.tar.xz 28-Feb-2019 03:04 6632 +rtkinenc.source.tar.xz 28-Feb-2019 03:04 6632 +rtkinenc.tar.xz 28-Feb-2019 03:04 2516 +rtklage.doc.r15878.tar.xz 28-Feb-2019 03:04 62656 +rtklage.doc.tar.xz 28-Feb-2019 03:04 62656 +rtklage.r15878.tar.xz 28-Feb-2019 03:04 1464 +rtklage.tar.xz 28-Feb-2019 03:04 1464 +rub-kunstgeschichte.doc.r73739.tar.xz 06-Feb-2025 00:48 523352 +rub-kunstgeschichte.doc.tar.xz 06-Feb-2025 00:48 523352 +rub-kunstgeschichte.r73739.tar.xz 06-Feb-2025 00:48 3376 +rub-kunstgeschichte.source.r73739.tar.xz 06-Feb-2025 00:48 9768 +rub-kunstgeschichte.source.tar.xz 06-Feb-2025 00:48 9768 +rub-kunstgeschichte.tar.xz 06-Feb-2025 00:48 3376 +rubik.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:04 348 +rubik.aarch64-linux.tar.xz 28-Feb-2019 03:04 348 +rubik.amd64-freebsd.r32919.tar.xz 28-Feb-2019 03:04 348 +rubik.amd64-freebsd.tar.xz 28-Feb-2019 03:04 348 +rubik.amd64-netbsd.r32919.tar.xz 28-Feb-2019 03:04 348 +rubik.amd64-netbsd.tar.xz 28-Feb-2019 03:04 348 +rubik.armhf-linux.r32919.tar.xz 28-Feb-2019 03:04 348 +rubik.armhf-linux.tar.xz 28-Feb-2019 03:04 348 +rubik.doc.r46791.tar.xz 28-Feb-2019 03:04 3201592 +rubik.doc.tar.xz 28-Feb-2019 03:04 3201592 +rubik.i386-freebsd.r32919.tar.xz 28-Feb-2019 03:04 348 +rubik.i386-freebsd.tar.xz 28-Feb-2019 03:04 348 +rubik.i386-linux.r32919.tar.xz 28-Feb-2019 03:04 348 +rubik.i386-linux.tar.xz 28-Feb-2019 03:04 348 +rubik.i386-netbsd.r32919.tar.xz 28-Feb-2019 03:04 348 +rubik.i386-netbsd.tar.xz 28-Feb-2019 03:04 348 +rubik.i386-solaris.r32919.tar.xz 28-Feb-2019 03:04 348 +rubik.i386-solaris.tar.xz 28-Feb-2019 03:04 348 +rubik.r46791.tar.xz 28-Feb-2019 03:04 39000 +rubik.source.r46791.tar.xz 28-Feb-2019 03:04 86520 +rubik.source.tar.xz 28-Feb-2019 03:04 86520 +rubik.tar.xz 28-Feb-2019 03:04 39000 +rubik.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 348 +rubik.universal-darwin.tar.xz 25-Feb-2021 18:17 348 +rubik.windows.r65891.tar.xz 20-Feb-2023 22:15 2308 +rubik.windows.tar.xz 20-Feb-2023 22:15 2308 +rubik.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:04 348 +rubik.x86_64-cygwin.tar.xz 28-Feb-2019 03:04 348 +rubik.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:04 356 +rubik.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:04 356 +rubik.x86_64-linux.r32919.tar.xz 28-Feb-2019 03:04 348 +rubik.x86_64-linux.tar.xz 28-Feb-2019 03:04 348 +rubik.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:04 352 +rubik.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:04 352 +rubik.x86_64-solaris.r32919.tar.xz 28-Feb-2019 03:04 348 +rubik.x86_64-solaris.tar.xz 28-Feb-2019 03:04 348 +ruhyphen.r21081.tar.xz 28-Feb-2019 03:04 56732 +ruhyphen.source.r21081.tar.xz 28-Feb-2019 03:04 13656 +ruhyphen.source.tar.xz 28-Feb-2019 03:04 13656 +ruhyphen.tar.xz 28-Feb-2019 03:04 56732 +ruler.r54251.tar.xz 13-Mar-2020 01:07 6620 +ruler.tar.xz 13-Mar-2020 01:07 6620 +rulerbox.doc.r50984.tar.xz 04-May-2019 23:39 58888 +rulerbox.doc.tar.xz 04-May-2019 23:39 58888 +rulerbox.r50984.tar.xz 04-May-2019 23:39 1776 +rulerbox.tar.xz 04-May-2019 23:39 1776 +rulercompass.doc.r32392.tar.xz 28-Feb-2019 03:04 481212 +rulercompass.doc.tar.xz 28-Feb-2019 03:04 481212 +rulercompass.r32392.tar.xz 28-Feb-2019 03:04 3888 +rulercompass.source.r32392.tar.xz 28-Feb-2019 03:04 6072 +rulercompass.source.tar.xz 28-Feb-2019 03:04 6072 +rulercompass.tar.xz 28-Feb-2019 03:04 3888 +runcode.doc.r73500.tar.xz 19-Jan-2025 00:56 420804 +runcode.doc.tar.xz 19-Jan-2025 00:56 420804 +runcode.r73500.tar.xz 19-Jan-2025 00:56 5760 +runcode.tar.xz 19-Jan-2025 00:56 5760 +runtexfile.aarch64-linux.r75830.tar.xz 19-Jul-2025 23:53 340 +runtexfile.aarch64-linux.tar.xz 19-Jul-2025 23:53 340 +runtexfile.amd64-freebsd.r75830.tar.xz 19-Jul-2025 23:53 344 +runtexfile.amd64-freebsd.tar.xz 19-Jul-2025 23:53 344 +runtexfile.amd64-netbsd.r75830.tar.xz 19-Jul-2025 23:53 340 +runtexfile.amd64-netbsd.tar.xz 19-Jul-2025 23:53 340 +runtexfile.armhf-linux.r75830.tar.xz 19-Jul-2025 23:53 340 +runtexfile.armhf-linux.tar.xz 19-Jul-2025 23:53 340 +runtexfile.doc.r76046.tar.xz 13-Aug-2025 23:46 751944 +runtexfile.doc.tar.xz 13-Aug-2025 23:46 751944 +runtexfile.i386-freebsd.r75830.tar.xz 19-Jul-2025 23:53 340 +runtexfile.i386-freebsd.tar.xz 19-Jul-2025 23:53 340 +runtexfile.i386-linux.r75830.tar.xz 19-Jul-2025 23:53 340 +runtexfile.i386-linux.tar.xz 19-Jul-2025 23:53 340 +runtexfile.i386-netbsd.r75830.tar.xz 19-Jul-2025 23:53 340 +runtexfile.i386-netbsd.tar.xz 19-Jul-2025 23:53 340 +runtexfile.i386-solaris.r75830.tar.xz 19-Jul-2025 23:53 340 +runtexfile.i386-solaris.tar.xz 19-Jul-2025 23:53 340 +runtexfile.r76046.tar.xz 13-Aug-2025 23:46 2492 +runtexfile.tar.xz 13-Aug-2025 23:46 2492 +runtexfile.universal-darwin.r75830.tar.xz 19-Jul-2025 23:53 344 +runtexfile.universal-darwin.tar.xz 19-Jul-2025 23:53 344 +runtexfile.windows.r75830.tar.xz 19-Jul-2025 23:53 2308 +runtexfile.windows.tar.xz 19-Jul-2025 23:53 2308 +runtexfile.x86_64-cygwin.r75830.tar.xz 19-Jul-2025 23:53 344 +runtexfile.x86_64-cygwin.tar.xz 19-Jul-2025 23:53 344 +runtexfile.x86_64-darwinlegacy.r75830.tar.xz 19-Jul-2025 23:53 352 +runtexfile.x86_64-darwinlegacy.tar.xz 19-Jul-2025 23:53 352 +runtexfile.x86_64-linux.r75830.tar.xz 19-Jul-2025 23:53 344 +runtexfile.x86_64-linux.tar.xz 19-Jul-2025 23:53 344 +runtexfile.x86_64-linuxmusl.r75830.tar.xz 19-Jul-2025 23:53 348 +runtexfile.x86_64-linuxmusl.tar.xz 19-Jul-2025 23:53 348 +runtexfile.x86_64-solaris.r75830.tar.xz 19-Jul-2025 23:53 344 +runtexfile.x86_64-solaris.tar.xz 19-Jul-2025 23:53 344 +runtexshebang.aarch64-linux.r68232.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.aarch64-linux.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.amd64-freebsd.r68232.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.amd64-freebsd.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.amd64-netbsd.r68232.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.amd64-netbsd.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.armhf-linux.r68232.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.armhf-linux.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.doc.r68882.tar.xz 18-Nov-2023 00:45 2532 +runtexshebang.doc.tar.xz 18-Nov-2023 00:45 2532 +runtexshebang.i386-freebsd.r68232.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.i386-freebsd.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.i386-linux.r68232.tar.xz 10-Sep-2023 23:45 340 +runtexshebang.i386-linux.tar.xz 10-Sep-2023 23:45 340 +runtexshebang.i386-netbsd.r68232.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.i386-netbsd.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.i386-solaris.r68232.tar.xz 10-Sep-2023 23:45 340 +runtexshebang.i386-solaris.tar.xz 10-Sep-2023 23:45 340 +runtexshebang.r68882.tar.xz 18-Nov-2023 00:45 2264 +runtexshebang.tar.xz 18-Nov-2023 00:45 2264 +runtexshebang.universal-darwin.r68232.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.universal-darwin.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.windows.r68232.tar.xz 10-Sep-2023 23:45 2308 +runtexshebang.windows.tar.xz 10-Sep-2023 23:45 2308 +runtexshebang.x86_64-cygwin.r68232.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.x86_64-cygwin.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.x86_64-darwinlegacy.r68232.tar.xz 10-Sep-2023 23:45 352 +runtexshebang.x86_64-darwinlegacy.tar.xz 10-Sep-2023 23:45 352 +runtexshebang.x86_64-linux.r68232.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.x86_64-linux.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.x86_64-linuxmusl.r68232.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.x86_64-linuxmusl.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.x86_64-solaris.r68232.tar.xz 10-Sep-2023 23:45 344 +runtexshebang.x86_64-solaris.tar.xz 10-Sep-2023 23:45 344 +ruscap.doc.r71123.tar.xz 29-Apr-2024 23:46 10752 +ruscap.doc.tar.xz 29-Apr-2024 23:46 10752 +ruscap.r71123.tar.xz 29-Apr-2024 23:46 2928 +ruscap.tar.xz 29-Apr-2024 23:46 2928 +russ.doc.r25209.tar.xz 28-Feb-2019 03:04 297660 +russ.doc.tar.xz 28-Feb-2019 03:04 297660 +russ.r25209.tar.xz 28-Feb-2019 03:04 25540 +russ.tar.xz 28-Feb-2019 03:04 25540 +rutitlepage.doc.r62143.tar.xz 23-Feb-2022 00:52 198592 +rutitlepage.doc.tar.xz 23-Feb-2022 00:52 198592 +rutitlepage.r62143.tar.xz 23-Feb-2022 00:52 2658324 +rutitlepage.source.r62143.tar.xz 23-Feb-2022 00:52 3792 +rutitlepage.source.tar.xz 23-Feb-2022 00:52 3792 +rutitlepage.tar.xz 23-Feb-2022 00:52 2658324 +rviewport.doc.r23739.tar.xz 28-Feb-2019 03:04 178752 +rviewport.doc.tar.xz 28-Feb-2019 03:04 178752 +rviewport.r23739.tar.xz 28-Feb-2019 03:04 1440 +rviewport.source.r23739.tar.xz 28-Feb-2019 03:04 3308 +rviewport.source.tar.xz 28-Feb-2019 03:04 3308 +rviewport.tar.xz 28-Feb-2019 03:04 1440 +rvwrite.doc.r19614.tar.xz 28-Feb-2019 03:04 80392 +rvwrite.doc.tar.xz 28-Feb-2019 03:04 80392 +rvwrite.r19614.tar.xz 28-Feb-2019 03:04 1540 +rvwrite.tar.xz 28-Feb-2019 03:04 1540 +ryersonsgsthesis.doc.r50119.tar.xz 28-Feb-2019 03:04 68364 +ryersonsgsthesis.doc.tar.xz 28-Feb-2019 03:04 68364 +ryersonsgsthesis.r50119.tar.xz 28-Feb-2019 03:04 4256 +ryersonsgsthesis.tar.xz 28-Feb-2019 03:04 4256 +ryethesis.doc.r33945.tar.xz 28-Feb-2019 03:04 449056 +ryethesis.doc.tar.xz 28-Feb-2019 03:04 449056 +ryethesis.r33945.tar.xz 28-Feb-2019 03:04 4700 +ryethesis.source.r33945.tar.xz 28-Feb-2019 03:04 12508 +ryethesis.source.tar.xz 28-Feb-2019 03:04 12508 +ryethesis.tar.xz 28-Feb-2019 03:04 4700 +sa-tikz.doc.r32815.tar.xz 28-Feb-2019 03:04 891020 +sa-tikz.doc.tar.xz 28-Feb-2019 03:04 891020 +sa-tikz.r32815.tar.xz 28-Feb-2019 03:04 5480 +sa-tikz.tar.xz 28-Feb-2019 03:04 5480 +sacsymb.doc.r65768.tar.xz 10-Feb-2023 00:53 40936 +sacsymb.doc.tar.xz 10-Feb-2023 00:53 40936 +sacsymb.r65768.tar.xz 10-Feb-2023 00:53 1364 +sacsymb.tar.xz 10-Feb-2023 00:53 1364 +sageep.doc.r15878.tar.xz 28-Feb-2019 03:04 282876 +sageep.doc.tar.xz 28-Feb-2019 03:04 282876 +sageep.r15878.tar.xz 28-Feb-2019 03:04 7772 +sageep.source.r15878.tar.xz 28-Feb-2019 03:04 6944 +sageep.source.tar.xz 28-Feb-2019 03:04 6944 +sageep.tar.xz 28-Feb-2019 03:04 7772 +sanitize-umlaut.doc.r67126.tar.xz 15-May-2023 23:44 402216 +sanitize-umlaut.doc.tar.xz 15-May-2023 23:44 402216 +sanitize-umlaut.r67126.tar.xz 15-May-2023 23:44 2048 +sanitize-umlaut.tar.xz 15-May-2023 23:44 2048 +sankey.doc.r73396.tar.xz 11-Jan-2025 00:49 843860 +sankey.doc.tar.xz 11-Jan-2025 00:49 843860 +sankey.r73396.tar.xz 11-Jan-2025 00:49 9676 +sankey.source.r73396.tar.xz 11-Jan-2025 00:49 27784 +sankey.source.tar.xz 11-Jan-2025 00:49 27784 +sankey.tar.xz 11-Jan-2025 00:49 9676 +sanskrit-t1.doc.r55475.tar.xz 07-Jun-2020 23:57 290432 +sanskrit-t1.doc.tar.xz 07-Jun-2020 23:57 290432 +sanskrit-t1.r55475.tar.xz 07-Jun-2020 23:57 454128 +sanskrit-t1.tar.xz 07-Jun-2020 23:57 454128 +sanskrit.doc.r64502.tar.xz 25-Sep-2022 23:52 543200 +sanskrit.doc.tar.xz 25-Sep-2022 23:52 543200 +sanskrit.r64502.tar.xz 25-Sep-2022 23:52 16328 +sanskrit.source.r64502.tar.xz 25-Sep-2022 23:52 22476 +sanskrit.source.tar.xz 25-Sep-2022 23:52 22476 +sanskrit.tar.xz 25-Sep-2022 23:52 16328 +sansmath.doc.r17997.tar.xz 28-Feb-2019 03:04 182264 +sansmath.doc.tar.xz 28-Feb-2019 03:04 182264 +sansmath.r17997.tar.xz 28-Feb-2019 03:04 3356 +sansmath.tar.xz 28-Feb-2019 03:04 3356 +sansmathaccent.doc.r53628.tar.xz 02-Feb-2020 00:58 158040 +sansmathaccent.doc.tar.xz 02-Feb-2020 00:58 158040 +sansmathaccent.r53628.tar.xz 02-Feb-2020 00:58 10604 +sansmathaccent.tar.xz 02-Feb-2020 00:58 10604 +sansmathfonts.doc.r72563.tar.xz 16-Oct-2024 23:46 403788 +sansmathfonts.doc.tar.xz 16-Oct-2024 23:46 403788 +sansmathfonts.r72563.tar.xz 16-Oct-2024 23:46 4278388 +sansmathfonts.tar.xz 16-Oct-2024 23:46 4278388 +sapthesis.doc.r63810.tar.xz 04-Jul-2022 23:51 276796 +sapthesis.doc.tar.xz 04-Jul-2022 23:51 276796 +sapthesis.r63810.tar.xz 04-Jul-2022 23:51 30276 +sapthesis.tar.xz 04-Jul-2022 23:51 30276 +sasnrdisplay.doc.r63255.tar.xz 07-May-2022 23:54 211572 +sasnrdisplay.doc.tar.xz 07-May-2022 23:54 211572 +sasnrdisplay.r63255.tar.xz 07-May-2022 23:54 7296 +sasnrdisplay.tar.xz 07-May-2022 23:54 7296 +sauerj.doc.r15878.tar.xz 28-Feb-2019 03:04 543096 +sauerj.doc.tar.xz 28-Feb-2019 03:04 543096 +sauerj.r15878.tar.xz 28-Feb-2019 03:04 5004 +sauerj.source.r15878.tar.xz 28-Feb-2019 03:04 29484 +sauerj.source.tar.xz 28-Feb-2019 03:04 29484 +sauerj.tar.xz 28-Feb-2019 03:04 5004 +sauter.r13293.tar.xz 28-Feb-2019 03:04 12500 +sauter.tar.xz 28-Feb-2019 03:04 12500 +sauterfonts.doc.r15878.tar.xz 28-Feb-2019 03:04 624 +sauterfonts.doc.tar.xz 28-Feb-2019 03:04 624 +sauterfonts.r15878.tar.xz 28-Feb-2019 03:04 3968 +sauterfonts.source.r15878.tar.xz 28-Feb-2019 03:04 4908 +sauterfonts.source.tar.xz 28-Feb-2019 03:04 4908 +sauterfonts.tar.xz 28-Feb-2019 03:04 3968 +saveenv.doc.r65346.tar.xz 24-Dec-2022 00:54 399688 +saveenv.doc.tar.xz 24-Dec-2022 00:54 399688 +saveenv.r65346.tar.xz 24-Dec-2022 00:54 2196 +saveenv.tar.xz 24-Dec-2022 00:54 2196 +savefnmark.doc.r15878.tar.xz 28-Feb-2019 03:04 173704 +savefnmark.doc.tar.xz 28-Feb-2019 03:04 173704 +savefnmark.r15878.tar.xz 28-Feb-2019 03:04 1380 +savefnmark.source.r15878.tar.xz 28-Feb-2019 03:04 3980 +savefnmark.source.tar.xz 28-Feb-2019 03:04 3980 +savefnmark.tar.xz 28-Feb-2019 03:04 1380 +savesym.r31565.tar.xz 28-Feb-2019 03:04 1356 +savesym.tar.xz 28-Feb-2019 03:04 1356 +savetrees.doc.r40525.tar.xz 28-Feb-2019 03:04 489504 +savetrees.doc.tar.xz 28-Feb-2019 03:04 489504 +savetrees.r40525.tar.xz 28-Feb-2019 03:04 8612 +savetrees.source.r40525.tar.xz 28-Feb-2019 03:04 25844 +savetrees.source.tar.xz 28-Feb-2019 03:04 25844 +savetrees.tar.xz 28-Feb-2019 03:04 8612 +scale.doc.r15878.tar.xz 28-Feb-2019 03:04 7156 +scale.doc.tar.xz 28-Feb-2019 03:04 7156 +scale.r15878.tar.xz 28-Feb-2019 03:04 1836 +scale.source.r15878.tar.xz 28-Feb-2019 03:04 3568 +scale.source.tar.xz 28-Feb-2019 03:04 3568 +scale.tar.xz 28-Feb-2019 03:04 1836 +scalebar.doc.r15878.tar.xz 28-Feb-2019 03:04 49036 +scalebar.doc.tar.xz 28-Feb-2019 03:04 49036 +scalebar.r15878.tar.xz 28-Feb-2019 03:04 1560 +scalebar.source.r15878.tar.xz 28-Feb-2019 03:04 6640 +scalebar.source.tar.xz 28-Feb-2019 03:04 6640 +scalebar.tar.xz 28-Feb-2019 03:04 1560 +scalerel.doc.r42809.tar.xz 28-Feb-2019 03:04 330228 +scalerel.doc.tar.xz 28-Feb-2019 03:04 330228 +scalerel.r42809.tar.xz 28-Feb-2019 03:04 3052 +scalerel.tar.xz 28-Feb-2019 03:04 3052 +scaletextbullet.doc.r74858.tar.xz 05-Apr-2025 23:58 120664 +scaletextbullet.doc.tar.xz 05-Apr-2025 23:58 120664 +scaletextbullet.r74858.tar.xz 05-Apr-2025 23:58 2276 +scaletextbullet.tar.xz 05-Apr-2025 23:58 2276 +scanpages.doc.r42633.tar.xz 28-Feb-2019 03:04 133820 +scanpages.doc.tar.xz 28-Feb-2019 03:04 133820 +scanpages.r42633.tar.xz 28-Feb-2019 03:04 4580 +scanpages.tar.xz 28-Feb-2019 03:04 4580 +schedule.doc.r51805.tar.xz 02-Aug-2019 23:53 243892 +schedule.doc.tar.xz 02-Aug-2019 23:53 243892 +schedule.r51805.tar.xz 02-Aug-2019 23:53 4656 +schedule.source.r51805.tar.xz 02-Aug-2019 23:53 8040 +schedule.source.tar.xz 02-Aug-2019 23:53 8040 +schedule.tar.xz 02-Aug-2019 23:53 4656 +schemabloc.doc.r68445.tar.xz 03-Oct-2023 23:45 204048 +schemabloc.doc.tar.xz 03-Oct-2023 23:45 204048 +schemabloc.r68445.tar.xz 03-Oct-2023 23:45 2592 +schemabloc.tar.xz 03-Oct-2023 23:45 2592 +schemata.doc.r76178.tar.xz 29-Aug-2025 23:50 837676 +schemata.doc.tar.xz 29-Aug-2025 23:50 837676 +schemata.r76178.tar.xz 29-Aug-2025 23:50 2308 +schemata.source.r76178.tar.xz 29-Aug-2025 23:50 27260 +schemata.source.tar.xz 29-Aug-2025 23:50 27260 +schemata.tar.xz 29-Aug-2025 23:50 2308 +scheme-basic.r54191.tar.xz 08-Mar-2020 23:29 440 +scheme-basic.tar.xz 08-Mar-2020 23:29 440 +scheme-bookpub.r63547.tar.xz 11-Jun-2022 23:56 620 +scheme-bookpub.tar.xz 11-Jun-2022 23:56 620 +scheme-context.r75426.tar.xz 07-Jun-2025 19:02 848 +scheme-context.tar.xz 07-Jun-2025 19:02 848 +scheme-full.r54074.tar.xz 04-Mar-2020 22:53 564 +scheme-full.tar.xz 04-Mar-2020 22:53 564 +scheme-gust.r59755.tar.xz 29-Jun-2021 23:53 604 +scheme-gust.tar.xz 29-Jun-2021 23:53 604 +scheme-infraonly.r54191.tar.xz 08-Mar-2020 23:29 464 +scheme-infraonly.tar.xz 08-Mar-2020 23:29 464 +scheme-medium.r54074.tar.xz 04-Mar-2020 22:53 532 +scheme-medium.tar.xz 04-Mar-2020 22:53 532 +scheme-minimal.r54191.tar.xz 08-Mar-2020 23:29 424 +scheme-minimal.tar.xz 08-Mar-2020 23:29 424 +scheme-small.r71080.tar.xz 25-Apr-2024 23:47 656 +scheme-small.tar.xz 25-Apr-2024 23:47 656 +scheme-tetex.r74022.tar.xz 16-Feb-2025 01:01 724 +scheme-tetex.tar.xz 16-Feb-2025 01:01 724 +schola-otf.doc.r64734.tar.xz 17-Oct-2022 23:55 485732 +schola-otf.doc.tar.xz 17-Oct-2022 23:55 485732 +schola-otf.r64734.tar.xz 17-Oct-2022 23:55 2340 +schola-otf.tar.xz 17-Oct-2022 23:55 2340 +scholax.doc.r61836.tar.xz 02-Feb-2022 00:57 341700 +scholax.doc.tar.xz 02-Feb-2022 00:57 341700 +scholax.r61836.tar.xz 02-Feb-2022 00:57 1884328 +scholax.tar.xz 02-Feb-2022 00:57 1884328 +schooldocs.doc.r73466.tar.xz 16-Jan-2025 00:47 522380 +schooldocs.doc.tar.xz 16-Jan-2025 00:47 522380 +schooldocs.r73466.tar.xz 16-Jan-2025 00:47 3084 +schooldocs.source.r73466.tar.xz 16-Jan-2025 00:47 11056 +schooldocs.source.tar.xz 16-Jan-2025 00:47 11056 +schooldocs.tar.xz 16-Jan-2025 00:47 3084 +schule.doc.r70846.tar.xz 03-Apr-2024 23:49 3887680 +schule.doc.tar.xz 03-Apr-2024 23:49 3887680 +schule.r70846.tar.xz 03-Apr-2024 23:49 40900 +schule.tar.xz 03-Apr-2024 23:49 40900 +schulmathematik.doc.r75635.tar.xz 28-Jun-2025 23:52 369168 +schulmathematik.doc.tar.xz 28-Jun-2025 23:52 369168 +schulmathematik.r75635.tar.xz 28-Jun-2025 23:52 14172 +schulmathematik.tar.xz 28-Jun-2025 23:52 14172 +schulschriften.doc.r59388.tar.xz 29-May-2021 23:53 720848 +schulschriften.doc.tar.xz 29-May-2021 23:53 720848 +schulschriften.r59388.tar.xz 29-May-2021 23:53 48836 +schulschriften.tar.xz 29-May-2021 23:53 48836 +schwalbe-chess.doc.r73582.tar.xz 25-Jan-2025 00:45 212692 +schwalbe-chess.doc.tar.xz 25-Jan-2025 00:45 212692 +schwalbe-chess.r73582.tar.xz 25-Jan-2025 00:45 8052 +schwalbe-chess.source.r73582.tar.xz 25-Jan-2025 00:45 16952 +schwalbe-chess.source.tar.xz 25-Jan-2025 00:45 16952 +schwalbe-chess.tar.xz 25-Jan-2025 00:45 8052 +scientific-thesis-cover.doc.r47923.tar.xz 28-Feb-2019 03:05 131328 +scientific-thesis-cover.doc.tar.xz 28-Feb-2019 03:05 131328 +scientific-thesis-cover.r47923.tar.xz 28-Feb-2019 03:05 4916 +scientific-thesis-cover.source.r47923.tar.xz 28-Feb-2019 03:05 532 +scientific-thesis-cover.source.tar.xz 28-Feb-2019 03:05 532 +scientific-thesis-cover.tar.xz 28-Feb-2019 03:05 4916 +scikgtex.doc.r66764.tar.xz 04-Apr-2023 23:53 854156 +scikgtex.doc.tar.xz 04-Apr-2023 23:53 854156 +scikgtex.r66764.tar.xz 04-Apr-2023 23:53 6924 +scikgtex.tar.xz 04-Apr-2023 23:53 6924 +sciposter.doc.r15878.tar.xz 28-Feb-2019 03:05 160588 +sciposter.doc.tar.xz 28-Feb-2019 03:05 160588 +sciposter.r15878.tar.xz 28-Feb-2019 03:05 6612 +sciposter.tar.xz 28-Feb-2019 03:05 6612 +sclang-prettifier.doc.r35087.tar.xz 28-Feb-2019 03:05 513152 +sclang-prettifier.doc.tar.xz 28-Feb-2019 03:05 513152 +sclang-prettifier.r35087.tar.xz 28-Feb-2019 03:05 2248 +sclang-prettifier.source.r35087.tar.xz 28-Feb-2019 03:05 9276 +sclang-prettifier.source.tar.xz 28-Feb-2019 03:05 9276 +sclang-prettifier.tar.xz 28-Feb-2019 03:05 2248 +scontents.doc.r75234.tar.xz 16-May-2025 23:48 459196 +scontents.doc.tar.xz 16-May-2025 23:48 459196 +scontents.r75234.tar.xz 16-May-2025 23:48 9560 +scontents.source.r75234.tar.xz 16-May-2025 23:48 36032 +scontents.source.tar.xz 16-May-2025 23:48 36032 +scontents.tar.xz 16-May-2025 23:48 9560 +scrabble.doc.r75811.tar.xz 17-Jul-2025 23:49 1024300 +scrabble.doc.tar.xz 17-Jul-2025 23:49 1024300 +scrabble.r75811.tar.xz 17-Jul-2025 23:49 4516 +scrabble.tar.xz 17-Jul-2025 23:49 4516 +scrambledenvs.doc.r60615.tar.xz 26-Sep-2021 23:53 193772 +scrambledenvs.doc.tar.xz 26-Sep-2021 23:53 193772 +scrambledenvs.r60615.tar.xz 26-Sep-2021 23:53 2408 +scrambledenvs.source.r60615.tar.xz 26-Sep-2021 23:53 5752 +scrambledenvs.source.tar.xz 26-Sep-2021 23:53 5752 +scrambledenvs.tar.xz 26-Sep-2021 23:53 2408 +scratch.doc.r66655.tar.xz 24-Mar-2023 00:56 506808 +scratch.doc.tar.xz 24-Mar-2023 00:56 506808 +scratch.r66655.tar.xz 24-Mar-2023 00:56 8344 +scratch.tar.xz 24-Mar-2023 00:56 8344 +scratch3.doc.r61921.tar.xz 07-Feb-2022 00:54 528692 +scratch3.doc.tar.xz 07-Feb-2022 00:54 528692 +scratch3.r61921.tar.xz 07-Feb-2022 00:54 8832 +scratch3.tar.xz 07-Feb-2022 00:54 8832 +scratchx.doc.r44906.tar.xz 28-Feb-2019 03:05 427720 +scratchx.doc.tar.xz 28-Feb-2019 03:05 427720 +scratchx.r44906.tar.xz 28-Feb-2019 03:05 7280 +scratchx.tar.xz 28-Feb-2019 03:05 7280 +screenplay-pkg.doc.r44965.tar.xz 28-Feb-2019 03:05 163776 +screenplay-pkg.doc.tar.xz 28-Feb-2019 03:05 163776 +screenplay-pkg.r44965.tar.xz 28-Feb-2019 03:05 2524 +screenplay-pkg.tar.xz 28-Feb-2019 03:05 2524 +screenplay.doc.r27223.tar.xz 28-Feb-2019 03:05 154500 +screenplay.doc.tar.xz 28-Feb-2019 03:05 154500 +screenplay.r27223.tar.xz 28-Feb-2019 03:05 2764 +screenplay.source.r27223.tar.xz 28-Feb-2019 03:05 17316 +screenplay.source.tar.xz 28-Feb-2019 03:05 17316 +screenplay.tar.xz 28-Feb-2019 03:05 2764 +scrhack.doc.r72608.tar.xz 20-Oct-2024 23:47 562960 +scrhack.doc.tar.xz 20-Oct-2024 23:47 562960 +scrhack.r72608.tar.xz 20-Oct-2024 23:47 9320 +scrhack.source.r72608.tar.xz 20-Oct-2024 23:47 20980 +scrhack.source.tar.xz 20-Oct-2024 23:47 20980 +scrhack.tar.xz 20-Oct-2024 23:47 9320 +scripture.doc.r76010.tar.xz 09-Aug-2025 23:57 980048 +scripture.doc.tar.xz 09-Aug-2025 23:57 980048 +scripture.r76010.tar.xz 09-Aug-2025 23:57 13804 +scripture.source.r76010.tar.xz 09-Aug-2025 23:57 35672 +scripture.source.tar.xz 09-Aug-2025 23:57 35672 +scripture.tar.xz 09-Aug-2025 23:57 13804 +scrjrnl.doc.r74998.tar.xz 22-Apr-2025 23:49 79552 +scrjrnl.doc.tar.xz 22-Apr-2025 23:49 79552 +scrjrnl.r74998.tar.xz 22-Apr-2025 23:49 2704 +scrjrnl.source.r74998.tar.xz 22-Apr-2025 23:49 4920 +scrjrnl.source.tar.xz 22-Apr-2025 23:49 4920 +scrjrnl.tar.xz 22-Apr-2025 23:49 2704 +scrlayer-fancyhdr.doc.r73851.tar.xz 11-Feb-2025 00:48 327112 +scrlayer-fancyhdr.doc.tar.xz 11-Feb-2025 00:48 327112 +scrlayer-fancyhdr.r73851.tar.xz 11-Feb-2025 00:48 1564 +scrlayer-fancyhdr.source.r73851.tar.xz 11-Feb-2025 00:48 10812 +scrlayer-fancyhdr.source.tar.xz 11-Feb-2025 00:48 10812 +scrlayer-fancyhdr.tar.xz 11-Feb-2025 00:48 1564 +scrlttr2copy.doc.r56733.tar.xz 22-Oct-2020 23:56 88404 +scrlttr2copy.doc.tar.xz 22-Oct-2020 23:56 88404 +scrlttr2copy.r56733.tar.xz 22-Oct-2020 23:56 1876 +scrlttr2copy.tar.xz 22-Oct-2020 23:56 1876 +scrwfile.doc.r66872.tar.xz 17-Apr-2023 23:54 600308 +scrwfile.doc.tar.xz 17-Apr-2023 23:54 600308 +scrwfile.r66872.tar.xz 17-Apr-2023 23:54 2876 +scrwfile.source.r66872.tar.xz 17-Apr-2023 23:54 13992 +scrwfile.source.tar.xz 17-Apr-2023 23:54 13992 +scrwfile.tar.xz 17-Apr-2023 23:54 2876 +scsnowman.doc.r66115.tar.xz 24-Feb-2023 01:01 501308 +scsnowman.doc.tar.xz 24-Feb-2023 01:01 501308 +scsnowman.r66115.tar.xz 24-Feb-2023 01:01 6360 +scsnowman.tar.xz 24-Feb-2023 01:01 6360 +sdaps.doc.r65345.tar.xz 24-Dec-2022 00:54 277328 +sdaps.doc.tar.xz 24-Dec-2022 00:54 277328 +sdaps.r65345.tar.xz 24-Dec-2022 00:54 32028 +sdaps.source.r65345.tar.xz 24-Dec-2022 00:54 29416 +sdaps.source.tar.xz 24-Dec-2022 00:54 29416 +sdaps.tar.xz 24-Dec-2022 00:54 32028 +sdrt.doc.r15878.tar.xz 28-Feb-2019 03:05 178944 +sdrt.doc.tar.xz 28-Feb-2019 03:05 178944 +sdrt.r15878.tar.xz 28-Feb-2019 03:05 2680 +sdrt.tar.xz 28-Feb-2019 03:05 2680 +sduthesis.doc.r41401.tar.xz 28-Feb-2019 03:05 1565692 +sduthesis.doc.tar.xz 28-Feb-2019 03:05 1565692 +sduthesis.r41401.tar.xz 28-Feb-2019 03:05 1230616 +sduthesis.source.r41401.tar.xz 28-Feb-2019 03:05 24124 +sduthesis.source.tar.xz 28-Feb-2019 03:05 24124 +sduthesis.tar.xz 28-Feb-2019 03:05 1230616 +se2thesis.doc.r72569.tar.xz 16-Oct-2024 23:46 595196 +se2thesis.doc.tar.xz 16-Oct-2024 23:46 595196 +se2thesis.r72569.tar.xz 16-Oct-2024 23:46 9896 +se2thesis.source.r72569.tar.xz 16-Oct-2024 23:46 27000 +se2thesis.source.tar.xz 16-Oct-2024 23:46 27000 +se2thesis.tar.xz 16-Oct-2024 23:46 9896 +seatingchart.doc.r75897.tar.xz 26-Jul-2025 23:49 1023336 +seatingchart.doc.tar.xz 26-Jul-2025 23:49 1023336 +seatingchart.r75897.tar.xz 26-Jul-2025 23:49 7736 +seatingchart.tar.xz 26-Jul-2025 23:49 7736 +secdot.doc.r20208.tar.xz 28-Feb-2019 03:05 256480 +secdot.doc.tar.xz 28-Feb-2019 03:05 256480 +secdot.r20208.tar.xz 28-Feb-2019 03:05 1572 +secdot.tar.xz 28-Feb-2019 03:05 1572 +secnum.doc.r61813.tar.xz 31-Jan-2022 00:53 445424 +secnum.doc.tar.xz 31-Jan-2022 00:53 445424 +secnum.r61813.tar.xz 31-Jan-2022 00:53 2268 +secnum.source.r61813.tar.xz 31-Jan-2022 00:53 5876 +secnum.source.tar.xz 31-Jan-2022 00:53 5876 +secnum.tar.xz 31-Jan-2022 00:53 2268 +section.doc.r20180.tar.xz 28-Feb-2019 03:05 357024 +section.doc.tar.xz 28-Feb-2019 03:05 357024 +section.r20180.tar.xz 28-Feb-2019 03:05 9860 +section.tar.xz 28-Feb-2019 03:05 9860 +sectionbox.doc.r37749.tar.xz 28-Feb-2019 03:05 192044 +sectionbox.doc.tar.xz 28-Feb-2019 03:05 192044 +sectionbox.r37749.tar.xz 28-Feb-2019 03:05 1856 +sectionbox.tar.xz 28-Feb-2019 03:05 1856 +sectionbreak.doc.r50339.tar.xz 12-Mar-2019 01:24 50844 +sectionbreak.doc.tar.xz 12-Mar-2019 01:24 50844 +sectionbreak.r50339.tar.xz 12-Mar-2019 01:24 1332 +sectionbreak.tar.xz 12-Mar-2019 01:24 1332 +sectsty.doc.r15878.tar.xz 28-Feb-2019 03:05 216820 +sectsty.doc.tar.xz 28-Feb-2019 03:05 216820 +sectsty.r15878.tar.xz 28-Feb-2019 03:05 4852 +sectsty.source.r15878.tar.xz 28-Feb-2019 03:05 21356 +sectsty.source.tar.xz 28-Feb-2019 03:05 21356 +sectsty.tar.xz 28-Feb-2019 03:05 4852 +seealso.doc.r43595.tar.xz 28-Feb-2019 03:05 251844 +seealso.doc.tar.xz 28-Feb-2019 03:05 251844 +seealso.r43595.tar.xz 28-Feb-2019 03:05 2240 +seealso.source.r43595.tar.xz 28-Feb-2019 03:05 11592 +seealso.source.tar.xz 28-Feb-2019 03:05 11592 +seealso.tar.xz 28-Feb-2019 03:05 2240 +seetexk.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 25540 +seetexk.aarch64-linux.tar.xz 13-Feb-2025 00:50 25540 +seetexk.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 38728 +seetexk.amd64-freebsd.tar.xz 09-Feb-2025 00:55 38728 +seetexk.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 31772 +seetexk.amd64-netbsd.tar.xz 09-Feb-2025 18:16 31772 +seetexk.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 23412 +seetexk.armhf-linux.tar.xz 09-Feb-2025 00:55 23412 +seetexk.doc.r57972.tar.xz 28-Feb-2021 16:31 70108 +seetexk.doc.tar.xz 28-Feb-2021 16:31 70108 +seetexk.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 38736 +seetexk.i386-freebsd.tar.xz 09-Feb-2025 00:55 38736 +seetexk.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 28544 +seetexk.i386-linux.tar.xz 09-Feb-2025 00:55 28544 +seetexk.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 26648 +seetexk.i386-netbsd.tar.xz 09-Feb-2025 18:16 26648 +seetexk.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 38132 +seetexk.i386-solaris.tar.xz 09-Feb-2025 00:55 38132 +seetexk.r57972.tar.xz 28-Feb-2021 16:31 616 +seetexk.tar.xz 28-Feb-2021 16:31 616 +seetexk.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 66888 +seetexk.universal-darwin.tar.xz 09-Feb-2025 18:16 66888 +seetexk.windows.r73796.tar.xz 09-Feb-2025 18:16 26536 +seetexk.windows.tar.xz 09-Feb-2025 18:16 26536 +seetexk.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 25720 +seetexk.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 25720 +seetexk.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 29904 +seetexk.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 29904 +seetexk.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 27660 +seetexk.x86_64-linux.tar.xz 19-Feb-2025 00:47 27660 +seetexk.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 32412 +seetexk.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 32412 +seetexk.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 37792 +seetexk.x86_64-solaris.tar.xz 09-Feb-2025 00:55 37792 +selectp.doc.r20185.tar.xz 28-Feb-2019 03:05 280200 +selectp.doc.tar.xz 28-Feb-2019 03:05 280200 +selectp.r20185.tar.xz 28-Feb-2019 03:05 4196 +selectp.tar.xz 28-Feb-2019 03:05 4196 +selinput.doc.r53098.tar.xz 12-Dec-2019 00:54 536588 +selinput.doc.tar.xz 12-Dec-2019 00:54 536588 +selinput.r53098.tar.xz 12-Dec-2019 00:54 2548 +selinput.source.r53098.tar.xz 12-Dec-2019 00:54 6840 +selinput.source.tar.xz 12-Dec-2019 00:54 6840 +selinput.tar.xz 12-Dec-2019 00:54 2548 +selnolig.doc.r68747.tar.xz 08-Nov-2023 00:46 509908 +selnolig.doc.tar.xz 08-Nov-2023 00:46 509908 +selnolig.r68747.tar.xz 08-Nov-2023 00:46 53988 +selnolig.tar.xz 08-Nov-2023 00:46 53988 +semantex.doc.r65679.tar.xz 30-Jan-2023 00:52 420772 +semantex.doc.tar.xz 30-Jan-2023 00:52 420772 +semantex.r65679.tar.xz 30-Jan-2023 00:52 26512 +semantex.tar.xz 30-Jan-2023 00:52 26512 +semantic-markup.doc.r53607.tar.xz 31-Jan-2020 00:55 270076 +semantic-markup.doc.tar.xz 31-Jan-2020 00:55 270076 +semantic-markup.r53607.tar.xz 31-Jan-2020 00:55 2500 +semantic-markup.tar.xz 31-Jan-2020 00:55 2500 +semantic.doc.r15878.tar.xz 28-Feb-2019 03:05 357820 +semantic.doc.tar.xz 28-Feb-2019 03:05 357820 +semantic.r15878.tar.xz 28-Feb-2019 03:05 6616 +semantic.source.r15878.tar.xz 28-Feb-2019 03:05 32236 +semantic.source.tar.xz 28-Feb-2019 03:05 32236 +semantic.tar.xz 28-Feb-2019 03:05 6616 +semaphor.doc.r18651.tar.xz 28-Feb-2019 03:05 266760 +semaphor.doc.tar.xz 28-Feb-2019 03:05 266760 +semaphor.r18651.tar.xz 28-Feb-2019 03:05 244948 +semaphor.tar.xz 28-Feb-2019 03:05 244948 +semesterplanner.doc.r56841.tar.xz 03-Nov-2020 00:56 76732 +semesterplanner.doc.tar.xz 03-Nov-2020 00:56 76732 +semesterplanner.r56841.tar.xz 03-Nov-2020 00:56 1900 +semesterplanner.source.r56841.tar.xz 03-Nov-2020 00:56 2944 +semesterplanner.source.tar.xz 03-Nov-2020 00:56 2944 +semesterplanner.tar.xz 03-Nov-2020 00:56 1900 +semesterplannerlua.doc.r71322.tar.xz 22-May-2024 23:47 141408 +semesterplannerlua.doc.tar.xz 22-May-2024 23:47 141408 +semesterplannerlua.r71322.tar.xz 22-May-2024 23:47 8396 +semesterplannerlua.source.r71322.tar.xz 22-May-2024 23:47 10592 +semesterplannerlua.source.tar.xz 22-May-2024 23:47 10592 +semesterplannerlua.tar.xz 22-May-2024 23:47 8396 +seminar.doc.r59801.tar.xz 01-Jul-2021 23:56 348624 +seminar.doc.tar.xz 01-Jul-2021 23:56 348624 +seminar.r59801.tar.xz 01-Jul-2021 23:56 30320 +seminar.tar.xz 01-Jul-2021 23:56 30320 +semioneside.doc.r15878.tar.xz 28-Feb-2019 03:05 129076 +semioneside.doc.tar.xz 28-Feb-2019 03:05 129076 +semioneside.r15878.tar.xz 28-Feb-2019 03:05 1204 +semioneside.source.r15878.tar.xz 28-Feb-2019 03:05 6308 +semioneside.source.tar.xz 28-Feb-2019 03:05 6308 +semioneside.tar.xz 28-Feb-2019 03:05 1204 +semproc.doc.r37568.tar.xz 28-Feb-2019 03:05 364736 +semproc.doc.tar.xz 28-Feb-2019 03:05 364736 +semproc.r37568.tar.xz 28-Feb-2019 03:05 2616 +semproc.source.r37568.tar.xz 28-Feb-2019 03:05 6888 +semproc.source.tar.xz 28-Feb-2019 03:05 6888 +semproc.tar.xz 28-Feb-2019 03:05 2616 +semtex.doc.r56530.tar.xz 03-Oct-2020 23:56 65952 +semtex.doc.tar.xz 03-Oct-2020 23:56 65952 +semtex.r56530.tar.xz 03-Oct-2020 23:56 1196 +semtex.tar.xz 03-Oct-2020 23:56 1196 +sepfootnotes.doc.r71883.tar.xz 23-Jul-2024 23:48 212960 +sepfootnotes.doc.tar.xz 23-Jul-2024 23:48 212960 +sepfootnotes.r71883.tar.xz 23-Jul-2024 23:48 2412 +sepfootnotes.tar.xz 23-Jul-2024 23:48 2412 +sepnum.doc.r20186.tar.xz 28-Feb-2019 03:05 354104 +sepnum.doc.tar.xz 28-Feb-2019 03:05 354104 +sepnum.r20186.tar.xz 28-Feb-2019 03:05 2680 +sepnum.tar.xz 28-Feb-2019 03:05 2680 +seqsplit.doc.r15878.tar.xz 28-Feb-2019 03:05 110396 +seqsplit.doc.tar.xz 28-Feb-2019 03:05 110396 +seqsplit.r15878.tar.xz 28-Feb-2019 03:05 1296 +seqsplit.source.r15878.tar.xz 28-Feb-2019 03:05 5408 +seqsplit.source.tar.xz 28-Feb-2019 03:05 5408 +seqsplit.tar.xz 28-Feb-2019 03:05 1296 +serbian-apostrophe.doc.r23799.tar.xz 28-Feb-2019 03:05 462196 +serbian-apostrophe.doc.tar.xz 28-Feb-2019 03:05 462196 +serbian-apostrophe.r23799.tar.xz 28-Feb-2019 03:05 10988 +serbian-apostrophe.tar.xz 28-Feb-2019 03:05 10988 +serbian-date-lat.doc.r23446.tar.xz 28-Feb-2019 03:05 352304 +serbian-date-lat.doc.tar.xz 28-Feb-2019 03:05 352304 +serbian-date-lat.r23446.tar.xz 28-Feb-2019 03:05 776 +serbian-date-lat.tar.xz 28-Feb-2019 03:05 776 +serbian-def-cyr.doc.r23734.tar.xz 28-Feb-2019 03:05 235684 +serbian-def-cyr.doc.tar.xz 28-Feb-2019 03:05 235684 +serbian-def-cyr.r23734.tar.xz 28-Feb-2019 03:05 1820 +serbian-def-cyr.tar.xz 28-Feb-2019 03:05 1820 +serbian-lig.doc.r53127.tar.xz 15-Dec-2019 00:53 416972 +serbian-lig.doc.tar.xz 15-Dec-2019 00:53 416972 +serbian-lig.r53127.tar.xz 15-Dec-2019 00:53 8708 +serbian-lig.tar.xz 15-Dec-2019 00:53 8708 +sesamanuel.doc.r36613.tar.xz 28-Feb-2019 03:05 858604 +sesamanuel.doc.tar.xz 28-Feb-2019 03:05 858604 +sesamanuel.r36613.tar.xz 28-Feb-2019 03:05 28800 +sesamanuel.source.r36613.tar.xz 28-Feb-2019 03:05 66020 +sesamanuel.source.tar.xz 28-Feb-2019 03:05 66020 +sesamanuel.tar.xz 28-Feb-2019 03:05 28800 +sesstime.doc.r74748.tar.xz 27-Mar-2025 00:50 324160 +sesstime.doc.tar.xz 27-Mar-2025 00:50 324160 +sesstime.r74748.tar.xz 27-Mar-2025 00:50 3528 +sesstime.source.r74748.tar.xz 27-Mar-2025 00:50 15684 +sesstime.source.tar.xz 27-Mar-2025 00:50 15684 +sesstime.tar.xz 27-Mar-2025 00:50 3528 +setdeck.doc.r40613.tar.xz 28-Feb-2019 03:05 62808 +setdeck.doc.tar.xz 28-Feb-2019 03:05 62808 +setdeck.r40613.tar.xz 28-Feb-2019 03:05 2528 +setdeck.tar.xz 28-Feb-2019 03:05 2528 +setspace.doc.r65206.tar.xz 06-Dec-2022 00:55 196928 +setspace.doc.tar.xz 06-Dec-2022 00:55 196928 +setspace.r65206.tar.xz 06-Dec-2022 00:55 7360 +setspace.tar.xz 06-Dec-2022 00:55 7360 +setspaceenhanced.doc.r72852.tar.xz 15-Nov-2024 00:48 320980 +setspaceenhanced.doc.tar.xz 15-Nov-2024 00:48 320980 +setspaceenhanced.r72852.tar.xz 15-Nov-2024 00:48 1984 +setspaceenhanced.source.r72852.tar.xz 15-Nov-2024 00:48 8956 +setspaceenhanced.source.tar.xz 15-Nov-2024 00:48 8956 +setspaceenhanced.tar.xz 15-Nov-2024 00:48 1984 +seu-ml-assign.doc.r62933.tar.xz 05-Apr-2022 23:53 175096 +seu-ml-assign.doc.tar.xz 05-Apr-2022 23:53 175096 +seu-ml-assign.r62933.tar.xz 05-Apr-2022 23:53 4772 +seu-ml-assign.tar.xz 05-Apr-2022 23:53 4772 +seuthesis.doc.r33042.tar.xz 28-Feb-2019 03:05 2221748 +seuthesis.doc.tar.xz 28-Feb-2019 03:05 2221748 +seuthesis.r33042.tar.xz 28-Feb-2019 03:05 10520 +seuthesis.source.r33042.tar.xz 28-Feb-2019 03:05 18188 +seuthesis.source.tar.xz 28-Feb-2019 03:05 18188 +seuthesis.tar.xz 28-Feb-2019 03:05 10520 +seuthesix.doc.r40088.tar.xz 28-Feb-2019 03:05 3026736 +seuthesix.doc.tar.xz 28-Feb-2019 03:05 3026736 +seuthesix.r40088.tar.xz 28-Feb-2019 03:05 9908 +seuthesix.source.r40088.tar.xz 28-Feb-2019 03:05 548 +seuthesix.source.tar.xz 28-Feb-2019 03:05 548 +seuthesix.tar.xz 28-Feb-2019 03:05 9908 +sexam.doc.r46628.tar.xz 28-Feb-2019 03:05 992712 +sexam.doc.tar.xz 28-Feb-2019 03:05 992712 +sexam.r46628.tar.xz 28-Feb-2019 03:05 2480 +sexam.tar.xz 28-Feb-2019 03:05 2480 +sf298.doc.r41653.tar.xz 28-Feb-2019 03:05 420024 +sf298.doc.tar.xz 28-Feb-2019 03:05 420024 +sf298.r41653.tar.xz 28-Feb-2019 03:05 6988 +sf298.source.r41653.tar.xz 28-Feb-2019 03:05 22544 +sf298.source.tar.xz 28-Feb-2019 03:05 22544 +sf298.tar.xz 28-Feb-2019 03:05 6988 +sfee.doc.r70718.tar.xz 22-Mar-2024 00:46 272500 +sfee.doc.tar.xz 22-Mar-2024 00:46 272500 +sfee.r70718.tar.xz 22-Mar-2024 00:46 37648 +sfee.source.r70718.tar.xz 22-Mar-2024 00:46 3328 +sfee.source.tar.xz 22-Mar-2024 00:46 3328 +sfee.tar.xz 22-Mar-2024 00:46 37648 +sffms.doc.r15878.tar.xz 28-Feb-2019 03:05 156244 +sffms.doc.tar.xz 28-Feb-2019 03:05 156244 +sffms.r15878.tar.xz 28-Feb-2019 03:05 3376 +sffms.source.r15878.tar.xz 28-Feb-2019 03:05 15740 +sffms.source.tar.xz 28-Feb-2019 03:05 15740 +sffms.tar.xz 28-Feb-2019 03:05 3376 +sfg.doc.r20209.tar.xz 28-Feb-2019 03:05 388384 +sfg.doc.tar.xz 28-Feb-2019 03:05 388384 +sfg.r20209.tar.xz 28-Feb-2019 03:05 6172 +sfg.tar.xz 28-Feb-2019 03:05 6172 +sfmath.r15878.tar.xz 28-Feb-2019 03:05 4472 +sfmath.tar.xz 28-Feb-2019 03:05 4472 +sgame.doc.r30959.tar.xz 28-Feb-2019 03:05 69168 +sgame.doc.tar.xz 28-Feb-2019 03:05 69168 +sgame.r30959.tar.xz 28-Feb-2019 03:05 4560 +sgame.tar.xz 28-Feb-2019 03:05 4560 +shade.doc.r22212.tar.xz 28-Feb-2019 03:05 14040 +shade.doc.tar.xz 28-Feb-2019 03:05 14040 +shade.r22212.tar.xz 28-Feb-2019 03:05 1652 +shade.tar.xz 28-Feb-2019 03:05 1652 +shadethm.doc.r53350.tar.xz 09-Jan-2020 00:59 360628 +shadethm.doc.tar.xz 09-Jan-2020 00:59 360628 +shadethm.r53350.tar.xz 09-Jan-2020 00:59 7540 +shadethm.tar.xz 09-Jan-2020 00:59 7540 +shadow.doc.r20312.tar.xz 28-Feb-2019 03:05 223584 +shadow.doc.tar.xz 28-Feb-2019 03:05 223584 +shadow.r20312.tar.xz 28-Feb-2019 03:05 1948 +shadow.tar.xz 28-Feb-2019 03:05 1948 +shadowtext.doc.r26522.tar.xz 28-Feb-2019 03:05 145128 +shadowtext.doc.tar.xz 28-Feb-2019 03:05 145128 +shadowtext.r26522.tar.xz 28-Feb-2019 03:05 1484 +shadowtext.tar.xz 28-Feb-2019 03:05 1484 +shapepar.doc.r69343.tar.xz 08-Jan-2024 00:46 169104 +shapepar.doc.tar.xz 08-Jan-2024 00:46 169104 +shapepar.r69343.tar.xz 08-Jan-2024 00:46 15956 +shapepar.tar.xz 08-Jan-2024 00:46 15956 +shapes.doc.r42428.tar.xz 28-Feb-2019 03:05 183000 +shapes.doc.tar.xz 28-Feb-2019 03:05 183000 +shapes.r42428.tar.xz 28-Feb-2019 03:05 1888 +shapes.source.r42428.tar.xz 28-Feb-2019 03:05 4620 +shapes.source.tar.xz 28-Feb-2019 03:05 4620 +shapes.tar.xz 28-Feb-2019 03:05 1888 +shdoc.doc.r41991.tar.xz 28-Feb-2019 03:05 543984 +shdoc.doc.tar.xz 28-Feb-2019 03:05 543984 +shdoc.r41991.tar.xz 28-Feb-2019 03:05 2996 +shdoc.source.r41991.tar.xz 28-Feb-2019 03:05 16536 +shdoc.source.tar.xz 28-Feb-2019 03:05 16536 +shdoc.tar.xz 28-Feb-2019 03:05 2996 +shipunov.doc.r52334.tar.xz 10-Oct-2019 23:54 3039828 +shipunov.doc.tar.xz 10-Oct-2019 23:54 3039828 +shipunov.r52334.tar.xz 10-Oct-2019 23:54 19652 +shipunov.tar.xz 10-Oct-2019 23:54 19652 +shobhika.doc.r50555.tar.xz 24-Mar-2019 01:24 26936 +shobhika.doc.tar.xz 24-Mar-2019 01:24 26936 +shobhika.r50555.tar.xz 24-Mar-2019 01:24 421140 +shobhika.tar.xz 24-Mar-2019 01:24 421140 +short-math-guide.doc.r46126.tar.xz 28-Feb-2019 03:05 563828 +short-math-guide.doc.tar.xz 28-Feb-2019 03:05 563828 +short-math-guide.r46126.tar.xz 28-Feb-2019 03:05 612 +short-math-guide.tar.xz 28-Feb-2019 03:05 612 +shortmathj.doc.r67201.tar.xz 23-May-2023 23:44 120012 +shortmathj.doc.tar.xz 23-May-2023 23:44 120012 +shortmathj.r67201.tar.xz 23-May-2023 23:44 47364 +shortmathj.tar.xz 23-May-2023 23:44 47364 +shorttoc.doc.r15878.tar.xz 28-Feb-2019 03:05 192508 +shorttoc.doc.tar.xz 28-Feb-2019 03:05 192508 +shorttoc.r15878.tar.xz 28-Feb-2019 03:05 1344 +shorttoc.source.r15878.tar.xz 28-Feb-2019 03:05 3876 +shorttoc.source.tar.xz 28-Feb-2019 03:05 3876 +shorttoc.tar.xz 28-Feb-2019 03:05 1344 +show-pdf-tags.aarch64-linux.r75482.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.aarch64-linux.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.amd64-freebsd.r75482.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.amd64-freebsd.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.amd64-netbsd.r75482.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.amd64-netbsd.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.armhf-linux.r75482.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.armhf-linux.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.doc.r75745.tar.xz 11-Jul-2025 23:49 83148 +show-pdf-tags.doc.tar.xz 11-Jul-2025 23:49 83148 +show-pdf-tags.i386-freebsd.r75482.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.i386-freebsd.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.i386-linux.r75482.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.i386-linux.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.i386-netbsd.r75482.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.i386-netbsd.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.i386-solaris.r75482.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.i386-solaris.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.r75745.tar.xz 11-Jul-2025 23:49 13728 +show-pdf-tags.tar.xz 11-Jul-2025 23:49 13728 +show-pdf-tags.universal-darwin.r75482.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.universal-darwin.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.windows.r75590.tar.xz 23-Jun-2025 23:48 2544 +show-pdf-tags.windows.tar.xz 23-Jun-2025 23:48 2544 +show-pdf-tags.x86_64-cygwin.r75482.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.x86_64-cygwin.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.x86_64-darwinlegacy.r75482.tar.xz 11-Jun-2025 23:47 352 +show-pdf-tags.x86_64-darwinlegacy.tar.xz 11-Jun-2025 23:47 352 +show-pdf-tags.x86_64-linux.r75482.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.x86_64-linux.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.x86_64-linuxmusl.r75482.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.x86_64-linuxmusl.tar.xz 11-Jun-2025 23:47 348 +show-pdf-tags.x86_64-solaris.r75482.tar.xz 11-Jun-2025 23:47 344 +show-pdf-tags.x86_64-solaris.tar.xz 11-Jun-2025 23:47 344 +show2e.doc.r15878.tar.xz 28-Feb-2019 03:05 61116 +show2e.doc.tar.xz 28-Feb-2019 03:05 61116 +show2e.r15878.tar.xz 28-Feb-2019 03:05 1216 +show2e.source.r15878.tar.xz 28-Feb-2019 03:05 4340 +show2e.source.tar.xz 28-Feb-2019 03:05 4340 +show2e.tar.xz 28-Feb-2019 03:05 1216 +showcharinbox.doc.r29803.tar.xz 28-Feb-2019 03:05 72044 +showcharinbox.doc.tar.xz 28-Feb-2019 03:05 72044 +showcharinbox.r29803.tar.xz 28-Feb-2019 03:05 1952 +showcharinbox.source.r29803.tar.xz 28-Feb-2019 03:05 3668 +showcharinbox.source.tar.xz 28-Feb-2019 03:05 3668 +showcharinbox.tar.xz 28-Feb-2019 03:05 1952 +showdim.doc.r28918.tar.xz 28-Feb-2019 03:05 928 +showdim.doc.tar.xz 28-Feb-2019 03:05 928 +showdim.r28918.tar.xz 28-Feb-2019 03:05 1652 +showdim.tar.xz 28-Feb-2019 03:05 1652 +showexpl.doc.r57414.tar.xz 14-Jan-2021 00:57 604612 +showexpl.doc.tar.xz 14-Jan-2021 00:57 604612 +showexpl.r57414.tar.xz 14-Jan-2021 00:57 4184 +showexpl.source.r57414.tar.xz 14-Jan-2021 00:57 9180 +showexpl.source.tar.xz 14-Jan-2021 00:57 9180 +showexpl.tar.xz 14-Jan-2021 00:57 4184 +showhyphenation.doc.r67602.tar.xz 10-Jul-2023 23:45 54552 +showhyphenation.doc.tar.xz 10-Jul-2023 23:45 54552 +showhyphenation.r67602.tar.xz 10-Jul-2023 23:45 3272 +showhyphenation.tar.xz 10-Jul-2023 23:45 3272 +showkerning.doc.r67603.tar.xz 10-Jul-2023 23:45 41536 +showkerning.doc.tar.xz 10-Jul-2023 23:45 41536 +showkerning.r67603.tar.xz 10-Jul-2023 23:45 2832 +showkerning.tar.xz 10-Jul-2023 23:45 2832 +showlabels.doc.r76188.tar.xz 31-Aug-2025 00:06 236508 +showlabels.doc.tar.xz 31-Aug-2025 00:06 236508 +showlabels.r76188.tar.xz 31-Aug-2025 00:06 3212 +showlabels.source.r76188.tar.xz 31-Aug-2025 00:06 17560 +showlabels.source.tar.xz 31-Aug-2025 00:06 17560 +showlabels.tar.xz 31-Aug-2025 00:06 3212 +showtags.doc.r20336.tar.xz 28-Feb-2019 03:05 211912 +showtags.doc.tar.xz 28-Feb-2019 03:05 211912 +showtags.r20336.tar.xz 28-Feb-2019 03:05 2052 +showtags.tar.xz 28-Feb-2019 03:05 2052 +shtthesis.doc.r62441.tar.xz 05-Mar-2022 18:48 2123460 +shtthesis.doc.tar.xz 05-Mar-2022 18:48 2123460 +shtthesis.r62441.tar.xz 05-Mar-2022 18:48 11700 +shtthesis.tar.xz 05-Mar-2022 18:48 11700 +shuffle.doc.r15878.tar.xz 28-Feb-2019 03:05 279692 +shuffle.doc.tar.xz 28-Feb-2019 03:05 279692 +shuffle.r15878.tar.xz 28-Feb-2019 03:05 3644 +shuffle.source.r15878.tar.xz 28-Feb-2019 03:05 3264 +shuffle.source.tar.xz 28-Feb-2019 03:05 3264 +shuffle.tar.xz 28-Feb-2019 03:05 3644 +sidecap.doc.r65618.tar.xz 26-Jan-2023 00:53 320340 +sidecap.doc.tar.xz 26-Jan-2023 00:53 320340 +sidecap.r65618.tar.xz 26-Jan-2023 00:53 3424 +sidecap.source.r65618.tar.xz 26-Jan-2023 00:53 7852 +sidecap.source.tar.xz 26-Jan-2023 00:53 7852 +sidecap.tar.xz 26-Jan-2023 00:53 3424 +sidenotes.doc.r72264.tar.xz 12-Sep-2024 23:46 316728 +sidenotes.doc.tar.xz 12-Sep-2024 23:46 316728 +sidenotes.r72264.tar.xz 12-Sep-2024 23:46 4280 +sidenotes.source.r72264.tar.xz 12-Sep-2024 23:46 6008 +sidenotes.source.tar.xz 12-Sep-2024 23:46 6008 +sidenotes.tar.xz 12-Sep-2024 23:46 4280 +sidenotesplus.doc.r74143.tar.xz 20-Feb-2025 00:52 321420 +sidenotesplus.doc.tar.xz 20-Feb-2025 00:52 321420 +sidenotesplus.r74143.tar.xz 20-Feb-2025 00:52 5684 +sidenotesplus.source.r74143.tar.xz 20-Feb-2025 00:52 10008 +sidenotesplus.source.tar.xz 20-Feb-2025 00:52 10008 +sidenotesplus.tar.xz 20-Feb-2025 00:52 5684 +sides.doc.r15878.tar.xz 28-Feb-2019 03:05 46528 +sides.doc.tar.xz 28-Feb-2019 03:05 46528 +sides.r15878.tar.xz 28-Feb-2019 03:05 3100 +sides.tar.xz 28-Feb-2019 03:05 3100 +signchart.doc.r39707.tar.xz 28-Feb-2019 03:05 308744 +signchart.doc.tar.xz 28-Feb-2019 03:05 308744 +signchart.r39707.tar.xz 28-Feb-2019 03:05 1756 +signchart.source.r39707.tar.xz 28-Feb-2019 03:05 3856 +signchart.source.tar.xz 28-Feb-2019 03:05 3856 +signchart.tar.xz 28-Feb-2019 03:05 1756 +silence.doc.r27028.tar.xz 28-Feb-2019 03:05 466940 +silence.doc.tar.xz 28-Feb-2019 03:05 466940 +silence.r27028.tar.xz 28-Feb-2019 03:05 3620 +silence.source.r27028.tar.xz 28-Feb-2019 03:05 17724 +silence.source.tar.xz 28-Feb-2019 03:05 17724 +silence.tar.xz 28-Feb-2019 03:05 3620 +sillypage.doc.r71889.tar.xz 24-Jul-2024 23:48 293444 +sillypage.doc.tar.xz 24-Jul-2024 23:48 293444 +sillypage.r71889.tar.xz 24-Jul-2024 23:48 16784 +sillypage.source.r71889.tar.xz 24-Jul-2024 23:48 4832 +sillypage.source.tar.xz 24-Jul-2024 23:48 4832 +sillypage.tar.xz 24-Jul-2024 23:48 16784 +sim-os-menus.doc.r75975.tar.xz 05-Aug-2025 23:45 713948 +sim-os-menus.doc.tar.xz 05-Aug-2025 23:45 713948 +sim-os-menus.r75975.tar.xz 05-Aug-2025 23:45 6868 +sim-os-menus.tar.xz 05-Aug-2025 23:45 6868 +simple-resume-cv.doc.r43057.tar.xz 28-Feb-2019 03:05 96196 +simple-resume-cv.doc.tar.xz 28-Feb-2019 03:05 96196 +simple-resume-cv.r43057.tar.xz 28-Feb-2019 03:05 3432 +simple-resume-cv.tar.xz 28-Feb-2019 03:05 3432 +simple-thesis-dissertation.doc.r43058.tar.xz 28-Feb-2019 03:05 198560 +simple-thesis-dissertation.doc.tar.xz 28-Feb-2019 03:05 198560 +simple-thesis-dissertation.r43058.tar.xz 28-Feb-2019 03:05 5208 +simple-thesis-dissertation.tar.xz 28-Feb-2019 03:05 5208 +simplebnf.doc.r75712.tar.xz 07-Jul-2025 23:51 85440 +simplebnf.doc.tar.xz 07-Jul-2025 23:51 85440 +simplebnf.r75712.tar.xz 07-Jul-2025 23:51 4368 +simplebnf.tar.xz 07-Jul-2025 23:51 4368 +simplecd.doc.r29260.tar.xz 28-Feb-2019 03:05 915604 +simplecd.doc.tar.xz 28-Feb-2019 03:05 915604 +simplecd.r29260.tar.xz 28-Feb-2019 03:05 6232 +simplecd.source.r29260.tar.xz 28-Feb-2019 03:05 17260 +simplecd.source.tar.xz 28-Feb-2019 03:05 17260 +simplecd.tar.xz 28-Feb-2019 03:05 6232 +simplecv.doc.r35537.tar.xz 28-Feb-2019 03:05 292656 +simplecv.doc.tar.xz 28-Feb-2019 03:05 292656 +simplecv.r35537.tar.xz 28-Feb-2019 03:05 2112 +simplecv.source.r35537.tar.xz 28-Feb-2019 03:05 5844 +simplecv.source.tar.xz 28-Feb-2019 03:05 5844 +simplecv.tar.xz 28-Feb-2019 03:05 2112 +simpleicons.doc.r76414.tar.xz 26-Sep-2025 23:46 2622872 +simpleicons.doc.tar.xz 26-Sep-2025 23:46 2622872 +simpleicons.r76414.tar.xz 26-Sep-2025 23:46 3576008 +simpleicons.tar.xz 26-Sep-2025 23:46 3576008 +simpleinvoice.doc.r45673.tar.xz 28-Feb-2019 03:05 224844 +simpleinvoice.doc.tar.xz 28-Feb-2019 03:05 224844 +simpleinvoice.r45673.tar.xz 28-Feb-2019 03:05 2420 +simpleinvoice.tar.xz 28-Feb-2019 03:05 2420 +simplekv.doc.r75515.tar.xz 15-Jun-2025 23:49 103476 +simplekv.doc.tar.xz 15-Jun-2025 23:49 103476 +simplekv.r75515.tar.xz 15-Jun-2025 23:49 3888 +simplekv.tar.xz 15-Jun-2025 23:49 3888 +simplenodes.doc.r62888.tar.xz 04-Apr-2022 23:55 208680 +simplenodes.doc.tar.xz 04-Apr-2022 23:55 208680 +simplenodes.r62888.tar.xz 04-Apr-2022 23:55 2172 +simplenodes.tar.xz 04-Apr-2022 23:55 2172 +simpleoptics.doc.r62977.tar.xz 07-Apr-2022 23:53 83476 +simpleoptics.doc.tar.xz 07-Apr-2022 23:53 83476 +simpleoptics.r62977.tar.xz 07-Apr-2022 23:53 1100 +simpleoptics.tar.xz 07-Apr-2022 23:53 1100 +simpler-wick.doc.r71991.tar.xz 07-Aug-2024 23:47 57996 +simpler-wick.doc.tar.xz 07-Aug-2024 23:47 57996 +simpler-wick.r71991.tar.xz 07-Aug-2024 23:47 2604 +simpler-wick.tar.xz 07-Aug-2024 23:47 2604 +simples-matrices.doc.r63802.tar.xz 03-Jul-2022 23:52 1527324 +simples-matrices.doc.tar.xz 03-Jul-2022 23:52 1527324 +simples-matrices.r63802.tar.xz 03-Jul-2022 23:52 2508 +simples-matrices.source.r63802.tar.xz 03-Jul-2022 23:52 14124 +simples-matrices.source.tar.xz 03-Jul-2022 23:52 14124 +simples-matrices.tar.xz 03-Jul-2022 23:52 2508 +simplewick.doc.r15878.tar.xz 28-Feb-2019 03:05 71624 +simplewick.doc.tar.xz 28-Feb-2019 03:05 71624 +simplewick.r15878.tar.xz 28-Feb-2019 03:05 2348 +simplewick.source.r15878.tar.xz 28-Feb-2019 03:05 4412 +simplewick.source.tar.xz 28-Feb-2019 03:05 4412 +simplewick.tar.xz 28-Feb-2019 03:05 2348 +simplified-latex.doc.r20620.tar.xz 28-Feb-2019 03:05 942836 +simplified-latex.doc.tar.xz 28-Feb-2019 03:05 942836 +simplified-latex.r20620.tar.xz 28-Feb-2019 03:05 380 +simplified-latex.tar.xz 28-Feb-2019 03:05 380 +simplivre.doc.r70314.tar.xz 01-Mar-2024 22:56 272120 +simplivre.doc.tar.xz 01-Mar-2024 22:56 272120 +simplivre.r70314.tar.xz 01-Mar-2024 22:56 5344 +simplivre.tar.xz 01-Mar-2024 22:56 5344 +simurgh.doc.r31719.tar.xz 28-Feb-2019 03:05 136908 +simurgh.doc.tar.xz 28-Feb-2019 03:05 136908 +simurgh.r31719.tar.xz 28-Feb-2019 03:05 246476 +simurgh.tar.xz 28-Feb-2019 03:05 246476 +sistyle.doc.r59682.tar.xz 23-Jun-2021 23:53 323456 +sistyle.doc.tar.xz 23-Jun-2021 23:53 323456 +sistyle.r59682.tar.xz 23-Jun-2021 23:53 3544 +sistyle.source.r59682.tar.xz 23-Jun-2021 23:53 18220 +sistyle.source.tar.xz 23-Jun-2021 23:53 18220 +sistyle.tar.xz 23-Jun-2021 23:53 3544 +sitem.doc.r22136.tar.xz 28-Feb-2019 03:05 73456 +sitem.doc.tar.xz 28-Feb-2019 03:05 73456 +sitem.r22136.tar.xz 28-Feb-2019 03:05 1004 +sitem.source.r22136.tar.xz 28-Feb-2019 03:05 1428 +sitem.source.tar.xz 28-Feb-2019 03:05 1428 +sitem.tar.xz 28-Feb-2019 03:05 1004 +siunits.doc.r59702.tar.xz 25-Jun-2021 23:52 250232 +siunits.doc.tar.xz 25-Jun-2021 23:52 250232 +siunits.r59702.tar.xz 25-Jun-2021 23:52 6040 +siunits.source.r59702.tar.xz 25-Jun-2021 23:52 34532 +siunits.source.tar.xz 25-Jun-2021 23:52 34532 +siunits.tar.xz 25-Jun-2021 23:52 6040 +siunitx.doc.r75734.tar.xz 10-Jul-2025 23:50 728300 +siunitx.doc.tar.xz 10-Jul-2025 23:50 728300 +siunitx.r75734.tar.xz 10-Jul-2025 23:50 69208 +siunitx.source.r75734.tar.xz 10-Jul-2025 23:50 126828 +siunitx.source.tar.xz 10-Jul-2025 23:50 126828 +siunitx.tar.xz 10-Jul-2025 23:50 69208 +sjtutex.doc.r74786.tar.xz 30-Mar-2025 01:04 712528 +sjtutex.doc.tar.xz 30-Mar-2025 01:04 712528 +sjtutex.r74786.tar.xz 30-Mar-2025 01:04 349336 +sjtutex.source.r74786.tar.xz 30-Mar-2025 01:04 41844 +sjtutex.source.tar.xz 30-Mar-2025 01:04 41844 +sjtutex.tar.xz 30-Mar-2025 01:04 349336 +skak.doc.r61719.tar.xz 24-Jan-2022 00:55 200108 +skak.doc.tar.xz 24-Jan-2022 00:55 200108 +skak.r61719.tar.xz 24-Jan-2022 00:55 20756 +skak.tar.xz 24-Jan-2022 00:55 20756 +skaknew.doc.r20031.tar.xz 28-Feb-2019 03:05 316212 +skaknew.doc.tar.xz 28-Feb-2019 03:05 316212 +skaknew.r20031.tar.xz 28-Feb-2019 03:05 160064 +skaknew.tar.xz 28-Feb-2019 03:05 160064 +skb.doc.r22781.tar.xz 28-Feb-2019 03:05 1398720 +skb.doc.tar.xz 28-Feb-2019 03:05 1398720 +skb.r22781.tar.xz 28-Feb-2019 03:05 6468 +skb.source.r22781.tar.xz 28-Feb-2019 03:05 21144 +skb.source.tar.xz 28-Feb-2019 03:05 21144 +skb.tar.xz 28-Feb-2019 03:05 6468 +skdoc.doc.r73385.tar.xz 10-Jan-2025 00:50 337132 +skdoc.doc.tar.xz 10-Jan-2025 00:50 337132 +skdoc.r73385.tar.xz 10-Jan-2025 00:50 9736 +skdoc.source.r73385.tar.xz 10-Jan-2025 00:50 27816 +skdoc.source.tar.xz 10-Jan-2025 00:50 27816 +skdoc.tar.xz 10-Jan-2025 00:50 9736 +skeldoc.doc.r73465.tar.xz 16-Jan-2025 00:47 234988 +skeldoc.doc.tar.xz 16-Jan-2025 00:47 234988 +skeldoc.r73465.tar.xz 16-Jan-2025 00:47 6520 +skeldoc.tar.xz 16-Jan-2025 00:47 6520 +skeycommand.doc.r24652.tar.xz 28-Feb-2019 03:05 328064 +skeycommand.doc.tar.xz 28-Feb-2019 03:05 328064 +skeycommand.r24652.tar.xz 28-Feb-2019 03:05 4876 +skeycommand.tar.xz 28-Feb-2019 03:05 4876 +skeyval.doc.r30560.tar.xz 28-Feb-2019 03:05 328384 +skeyval.doc.tar.xz 28-Feb-2019 03:05 328384 +skeyval.r30560.tar.xz 28-Feb-2019 03:05 99184 +skeyval.tar.xz 28-Feb-2019 03:05 99184 +skills.doc.r56734.tar.xz 22-Oct-2020 23:56 75196 +skills.doc.tar.xz 22-Oct-2020 23:56 75196 +skills.r56734.tar.xz 22-Oct-2020 23:56 3564 +skills.tar.xz 22-Oct-2020 23:56 3564 +skmath.doc.r52411.tar.xz 16-Oct-2019 23:54 304460 +skmath.doc.tar.xz 16-Oct-2019 23:54 304460 +skmath.r52411.tar.xz 16-Oct-2019 23:54 3572 +skmath.source.r52411.tar.xz 16-Oct-2019 23:54 8580 +skmath.source.tar.xz 16-Oct-2019 23:54 8580 +skmath.tar.xz 16-Oct-2019 23:54 3572 +skrapport.doc.r52412.tar.xz 16-Oct-2019 23:54 289336 +skrapport.doc.tar.xz 16-Oct-2019 23:54 289336 +skrapport.r52412.tar.xz 16-Oct-2019 23:54 12736 +skrapport.source.r52412.tar.xz 16-Oct-2019 23:54 31356 +skrapport.source.tar.xz 16-Oct-2019 23:54 31356 +skrapport.tar.xz 16-Oct-2019 23:54 12736 +skull.r51907.tar.xz 19-Aug-2019 23:53 1752 +skull.source.r51907.tar.xz 19-Aug-2019 23:53 2276 +skull.source.tar.xz 19-Aug-2019 23:53 2276 +skull.tar.xz 19-Aug-2019 23:53 1752 +slantsc.doc.r25007.tar.xz 28-Feb-2019 03:05 386948 +slantsc.doc.tar.xz 28-Feb-2019 03:05 386948 +slantsc.r25007.tar.xz 28-Feb-2019 03:05 1296 +slantsc.source.r25007.tar.xz 28-Feb-2019 03:05 4648 +slantsc.source.tar.xz 28-Feb-2019 03:05 4648 +slantsc.tar.xz 28-Feb-2019 03:05 1296 +slideshow.doc.r15878.tar.xz 28-Feb-2019 03:05 105052 +slideshow.doc.tar.xz 28-Feb-2019 03:05 105052 +slideshow.r15878.tar.xz 28-Feb-2019 03:05 8544 +slideshow.tar.xz 28-Feb-2019 03:05 8544 +smalltableof.doc.r20333.tar.xz 28-Feb-2019 03:05 177112 +smalltableof.doc.tar.xz 28-Feb-2019 03:05 177112 +smalltableof.r20333.tar.xz 28-Feb-2019 03:05 996 +smalltableof.tar.xz 28-Feb-2019 03:05 996 +smart-eqn.doc.r61719.tar.xz 24-Jan-2022 00:55 84356 +smart-eqn.doc.tar.xz 24-Jan-2022 00:55 84356 +smart-eqn.r61719.tar.xz 24-Jan-2022 00:55 2556 +smart-eqn.source.r61719.tar.xz 24-Jan-2022 00:55 5804 +smart-eqn.source.tar.xz 24-Jan-2022 00:55 5804 +smart-eqn.tar.xz 24-Jan-2022 00:55 2556 +smartdiagram.doc.r42781.tar.xz 28-Feb-2019 03:05 258768 +smartdiagram.doc.tar.xz 28-Feb-2019 03:05 258768 +smartdiagram.r42781.tar.xz 28-Feb-2019 03:05 6524 +smartdiagram.source.r42781.tar.xz 28-Feb-2019 03:05 16864 +smartdiagram.source.tar.xz 28-Feb-2019 03:05 16864 +smartdiagram.tar.xz 28-Feb-2019 03:05 6524 +smartref.doc.r20311.tar.xz 28-Feb-2019 03:05 319192 +smartref.doc.tar.xz 28-Feb-2019 03:05 319192 +smartref.r20311.tar.xz 28-Feb-2019 03:05 3100 +smartref.tar.xz 28-Feb-2019 03:05 3100 +smartunits.doc.r39592.tar.xz 28-Feb-2019 03:05 340260 +smartunits.doc.tar.xz 28-Feb-2019 03:05 340260 +smartunits.r39592.tar.xz 28-Feb-2019 03:05 3408 +smartunits.tar.xz 28-Feb-2019 03:05 3408 +smflatex.doc.r58910.tar.xz 18-Apr-2021 23:52 828572 +smflatex.doc.tar.xz 18-Apr-2021 23:52 828572 +smflatex.r58910.tar.xz 18-Apr-2021 23:52 28272 +smflatex.source.r58910.tar.xz 18-Apr-2021 23:52 51112 +smflatex.source.tar.xz 18-Apr-2021 23:52 51112 +smflatex.tar.xz 18-Apr-2021 23:52 28272 +snapshot.doc.r56735.tar.xz 22-Oct-2020 23:56 237516 +snapshot.doc.tar.xz 22-Oct-2020 23:56 237516 +snapshot.r56735.tar.xz 22-Oct-2020 23:57 5496 +snapshot.source.r56735.tar.xz 22-Oct-2020 23:56 14884 +snapshot.source.tar.xz 22-Oct-2020 23:56 14884 +snapshot.tar.xz 22-Oct-2020 23:57 5496 +snaptodo.doc.r70676.tar.xz 18-Mar-2024 00:46 241824 +snaptodo.doc.tar.xz 18-Mar-2024 00:46 241824 +snaptodo.r70676.tar.xz 18-Mar-2024 00:46 1984 +snaptodo.tar.xz 18-Mar-2024 00:46 1984 +snotez.doc.r61992.tar.xz 13-Feb-2022 00:53 481648 +snotez.doc.tar.xz 13-Feb-2022 00:53 481648 +snotez.r61992.tar.xz 13-Feb-2022 00:53 3216 +snotez.tar.xz 13-Feb-2022 00:53 3216 +songbook.doc.r18136.tar.xz 28-Feb-2019 03:05 1248060 +songbook.doc.tar.xz 28-Feb-2019 03:05 1248060 +songbook.r18136.tar.xz 28-Feb-2019 03:05 9680 +songbook.source.r18136.tar.xz 28-Feb-2019 03:05 43224 +songbook.source.tar.xz 28-Feb-2019 03:05 43224 +songbook.tar.xz 28-Feb-2019 03:05 9680 +songproj.doc.r66704.tar.xz 29-Mar-2023 23:52 129596 +songproj.doc.tar.xz 29-Mar-2023 23:52 129596 +songproj.r66704.tar.xz 29-Mar-2023 23:52 3944 +songproj.source.r66704.tar.xz 29-Mar-2023 23:52 9732 +songproj.source.tar.xz 29-Mar-2023 23:52 9732 +songproj.tar.xz 29-Mar-2023 23:52 3944 +songs.doc.r51494.tar.xz 27-Jun-2019 23:53 1166396 +songs.doc.tar.xz 27-Jun-2019 23:53 1166396 +songs.r51494.tar.xz 27-Jun-2019 23:53 20712 +songs.source.r51494.tar.xz 27-Jun-2019 23:53 94680 +songs.source.tar.xz 27-Jun-2019 23:53 94680 +songs.tar.xz 27-Jun-2019 23:53 20712 +sort-by-letters.doc.r27128.tar.xz 28-Feb-2019 03:05 1520 +sort-by-letters.doc.tar.xz 28-Feb-2019 03:05 1520 +sort-by-letters.r27128.tar.xz 28-Feb-2019 03:05 11200 +sort-by-letters.tar.xz 28-Feb-2019 03:05 11200 +soton.doc.r16215.tar.xz 28-Feb-2019 03:05 480 +soton.doc.tar.xz 28-Feb-2019 03:05 480 +soton.r16215.tar.xz 28-Feb-2019 03:05 1384 +soton.tar.xz 28-Feb-2019 03:05 1384 +soul.doc.r67365.tar.xz 14-Jun-2023 23:44 822656 +soul.doc.tar.xz 14-Jun-2023 23:44 822656 +soul.r67365.tar.xz 14-Jun-2023 23:44 8944 +soul.source.r67365.tar.xz 14-Jun-2023 23:44 40516 +soul.source.tar.xz 14-Jun-2023 23:44 40516 +soul.tar.xz 14-Jun-2023 23:44 8944 +soulpos.doc.r60772.tar.xz 15-Oct-2021 23:52 177844 +soulpos.doc.tar.xz 15-Oct-2021 23:52 177844 +soulpos.r60772.tar.xz 15-Oct-2021 23:52 3220 +soulpos.tar.xz 15-Oct-2021 23:52 3220 +soup.doc.r50815.tar.xz 06-Apr-2019 21:34 113216 +soup.doc.tar.xz 06-Apr-2019 21:34 113216 +soup.r50815.tar.xz 06-Apr-2019 21:34 3424 +soup.source.r50815.tar.xz 06-Apr-2019 21:34 7288 +soup.source.tar.xz 06-Apr-2019 21:34 7288 +soup.tar.xz 06-Apr-2019 21:34 3424 +sourcecodepro.doc.r74885.tar.xz 08-Apr-2025 23:51 541648 +sourcecodepro.doc.tar.xz 08-Apr-2025 23:51 541648 +sourcecodepro.r74885.tar.xz 08-Apr-2025 23:51 3495584 +sourcecodepro.tar.xz 08-Apr-2025 23:51 3495584 +sourcesanspro.doc.r54892.tar.xz 26-Apr-2020 23:56 671484 +sourcesanspro.doc.tar.xz 26-Apr-2020 23:56 671484 +sourcesanspro.r54892.tar.xz 26-Apr-2020 23:56 5153396 +sourcesanspro.tar.xz 26-Apr-2020 23:56 5153396 +sourceserifpro.doc.r54512.tar.xz 24-Mar-2020 01:03 542680 +sourceserifpro.doc.tar.xz 24-Mar-2020 01:03 542680 +sourceserifpro.r54512.tar.xz 24-Mar-2020 01:03 3673368 +sourceserifpro.tar.xz 24-Mar-2020 01:03 3673368 +spacekern.doc.r67604.tar.xz 10-Jul-2023 23:45 56840 +spacekern.doc.tar.xz 10-Jul-2023 23:45 56840 +spacekern.r67604.tar.xz 10-Jul-2023 23:45 2952 +spacekern.tar.xz 10-Jul-2023 23:45 2952 +spacingtricks.doc.r69048.tar.xz 07-Dec-2023 00:45 158848 +spacingtricks.doc.tar.xz 07-Dec-2023 00:45 158848 +spacingtricks.r69048.tar.xz 07-Dec-2023 00:45 2024 +spacingtricks.source.r69048.tar.xz 07-Dec-2023 00:45 12436 +spacingtricks.source.tar.xz 07-Dec-2023 00:45 12436 +spacingtricks.tar.xz 07-Dec-2023 00:45 2024 +spalign.doc.r42225.tar.xz 28-Feb-2019 03:05 120216 +spalign.doc.tar.xz 28-Feb-2019 03:05 120216 +spalign.r42225.tar.xz 28-Feb-2019 03:05 2848 +spalign.source.r42225.tar.xz 28-Feb-2019 03:05 12044 +spalign.source.tar.xz 28-Feb-2019 03:05 12044 +spalign.tar.xz 28-Feb-2019 03:05 2848 +spark-otf.doc.r62481.tar.xz 07-Mar-2022 00:33 93948 +spark-otf.doc.tar.xz 07-Mar-2022 00:33 93948 +spark-otf.r62481.tar.xz 07-Mar-2022 00:33 174132 +spark-otf.tar.xz 07-Mar-2022 00:33 174132 +sparklines.doc.r42821.tar.xz 28-Feb-2019 03:05 140580 +sparklines.doc.tar.xz 28-Feb-2019 03:05 140580 +sparklines.r42821.tar.xz 28-Feb-2019 03:05 2624 +sparklines.tar.xz 28-Feb-2019 03:05 2624 +spath3.doc.r71396.tar.xz 31-May-2024 23:48 1682276 +spath3.doc.tar.xz 31-May-2024 23:48 1682276 +spath3.r71396.tar.xz 31-May-2024 23:48 25664 +spath3.source.r71396.tar.xz 31-May-2024 23:48 37744 +spath3.source.tar.xz 31-May-2024 23:48 37744 +spath3.tar.xz 31-May-2024 23:48 25664 +spbmark.doc.r75778.tar.xz 14-Jul-2025 23:48 98464 +spbmark.doc.tar.xz 14-Jul-2025 23:48 98464 +spbmark.r75778.tar.xz 14-Jul-2025 23:48 4468 +spbmark.tar.xz 14-Jul-2025 23:48 4468 +spectral.doc.r64528.tar.xz 27-Sep-2022 23:53 80968 +spectral.doc.tar.xz 27-Sep-2022 23:53 80968 +spectral.r64528.tar.xz 27-Sep-2022 23:53 3545188 +spectral.tar.xz 27-Sep-2022 23:53 3545188 +spectralsequences.doc.r65667.tar.xz 30-Jan-2023 00:52 2103268 +spectralsequences.doc.tar.xz 30-Jan-2023 00:52 2103268 +spectralsequences.r65667.tar.xz 30-Jan-2023 00:52 72236 +spectralsequences.tar.xz 30-Jan-2023 00:52 72236 +spelatex.doc.r73664.tar.xz 01-Feb-2025 00:53 20359120 +spelatex.doc.tar.xz 01-Feb-2025 00:53 20359120 +spelatex.r73664.tar.xz 01-Feb-2025 00:54 4744 +spelatex.source.r73664.tar.xz 01-Feb-2025 00:53 25004 +spelatex.source.tar.xz 01-Feb-2025 00:53 25004 +spelatex.tar.xz 01-Feb-2025 00:54 4744 +spelling.doc.r73571.tar.xz 24-Jan-2025 00:50 142560 +spelling.doc.tar.xz 24-Jan-2025 00:50 142560 +spelling.r73571.tar.xz 24-Jan-2025 00:50 14076 +spelling.tar.xz 24-Jan-2025 00:50 14076 +sphack.doc.r20842.tar.xz 28-Feb-2019 03:05 243456 +sphack.doc.tar.xz 28-Feb-2019 03:05 243456 +sphack.r20842.tar.xz 28-Feb-2019 03:05 2216 +sphack.tar.xz 28-Feb-2019 03:05 2216 +sphdthesis.doc.r34374.tar.xz 28-Feb-2019 03:05 550152 +sphdthesis.doc.tar.xz 28-Feb-2019 03:05 550152 +sphdthesis.r34374.tar.xz 28-Feb-2019 03:05 6208 +sphdthesis.tar.xz 28-Feb-2019 03:05 6208 +spie.doc.r75447.tar.xz 07-Jun-2025 23:49 134196 +spie.doc.tar.xz 07-Jun-2025 23:49 134196 +spie.r75447.tar.xz 07-Jun-2025 23:49 10104 +spie.tar.xz 07-Jun-2025 23:49 10104 +spix.aarch64-linux.r55933.tar.xz 24-Jul-2020 23:57 336 +spix.aarch64-linux.tar.xz 24-Jul-2020 23:57 336 +spix.amd64-freebsd.r55933.tar.xz 24-Jul-2020 23:57 336 +spix.amd64-freebsd.tar.xz 24-Jul-2020 23:57 336 +spix.amd64-netbsd.r55933.tar.xz 24-Jul-2020 23:57 336 +spix.amd64-netbsd.tar.xz 24-Jul-2020 23:57 336 +spix.armhf-linux.r55933.tar.xz 24-Jul-2020 23:57 336 +spix.armhf-linux.tar.xz 24-Jul-2020 23:57 336 +spix.doc.r65050.tar.xz 19-Nov-2022 00:52 1550884 +spix.doc.tar.xz 19-Nov-2022 00:52 1550884 +spix.i386-freebsd.r55933.tar.xz 24-Jul-2020 23:57 336 +spix.i386-freebsd.tar.xz 24-Jul-2020 23:57 336 +spix.i386-linux.r55933.tar.xz 24-Jul-2020 23:57 336 +spix.i386-linux.tar.xz 24-Jul-2020 23:57 336 +spix.i386-netbsd.r55933.tar.xz 24-Jul-2020 23:57 336 +spix.i386-netbsd.tar.xz 24-Jul-2020 23:57 336 +spix.i386-solaris.r55933.tar.xz 24-Jul-2020 23:57 336 +spix.i386-solaris.tar.xz 24-Jul-2020 23:57 336 +spix.r65050.tar.xz 19-Nov-2022 00:52 2332 +spix.tar.xz 19-Nov-2022 00:52 2332 +spix.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +spix.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +spix.windows.r65891.tar.xz 20-Feb-2023 22:15 2304 +spix.windows.tar.xz 20-Feb-2023 22:15 2304 +spix.x86_64-cygwin.r55933.tar.xz 24-Jul-2020 23:57 340 +spix.x86_64-cygwin.tar.xz 24-Jul-2020 23:57 340 +spix.x86_64-darwinlegacy.r55933.tar.xz 24-Jul-2020 23:57 348 +spix.x86_64-darwinlegacy.tar.xz 24-Jul-2020 23:57 348 +spix.x86_64-linux.r55933.tar.xz 24-Jul-2020 23:57 340 +spix.x86_64-linux.tar.xz 24-Jul-2020 23:57 340 +spix.x86_64-linuxmusl.r55933.tar.xz 24-Jul-2020 23:57 344 +spix.x86_64-linuxmusl.tar.xz 24-Jul-2020 23:57 344 +spix.x86_64-solaris.r55933.tar.xz 24-Jul-2020 23:57 336 +spix.x86_64-solaris.tar.xz 24-Jul-2020 23:57 336 +splines.doc.r15878.tar.xz 28-Feb-2019 03:05 87904 +splines.doc.tar.xz 28-Feb-2019 03:05 87904 +splines.r15878.tar.xz 28-Feb-2019 03:05 2416 +splines.source.r15878.tar.xz 28-Feb-2019 03:05 6084 +splines.source.tar.xz 28-Feb-2019 03:05 6084 +splines.tar.xz 28-Feb-2019 03:05 2416 +splitbib.doc.r15878.tar.xz 28-Feb-2019 03:05 143484 +splitbib.doc.tar.xz 28-Feb-2019 03:05 143484 +splitbib.r15878.tar.xz 28-Feb-2019 03:05 4852 +splitbib.source.r15878.tar.xz 28-Feb-2019 03:05 11124 +splitbib.source.tar.xz 28-Feb-2019 03:05 11124 +splitbib.tar.xz 28-Feb-2019 03:05 4852 +splitindex.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:05 344 +splitindex.aarch64-linux.tar.xz 28-Feb-2019 03:05 344 +splitindex.amd64-freebsd.r29688.tar.xz 28-Feb-2019 03:05 344 +splitindex.amd64-freebsd.tar.xz 28-Feb-2019 03:05 344 +splitindex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:05 344 +splitindex.amd64-netbsd.tar.xz 28-Feb-2019 03:05 344 +splitindex.armhf-linux.r30015.tar.xz 28-Feb-2019 03:05 344 +splitindex.armhf-linux.tar.xz 28-Feb-2019 03:05 344 +splitindex.doc.r39766.tar.xz 28-Feb-2019 03:05 442388 +splitindex.doc.tar.xz 28-Feb-2019 03:05 442388 +splitindex.i386-freebsd.r29688.tar.xz 28-Feb-2019 03:05 344 +splitindex.i386-freebsd.tar.xz 28-Feb-2019 03:05 344 +splitindex.i386-linux.r29688.tar.xz 28-Feb-2019 03:05 344 +splitindex.i386-linux.tar.xz 28-Feb-2019 03:05 344 +splitindex.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:05 344 +splitindex.i386-netbsd.tar.xz 28-Feb-2019 03:05 344 +splitindex.i386-solaris.r29688.tar.xz 28-Feb-2019 03:05 344 +splitindex.i386-solaris.tar.xz 28-Feb-2019 03:05 344 +splitindex.r39766.tar.xz 28-Feb-2019 03:05 8084 +splitindex.source.r39766.tar.xz 28-Feb-2019 03:05 24252 +splitindex.source.tar.xz 28-Feb-2019 03:05 24252 +splitindex.tar.xz 28-Feb-2019 03:05 8084 +splitindex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 344 +splitindex.universal-darwin.tar.xz 25-Feb-2021 18:17 344 +splitindex.windows.r65891.tar.xz 20-Feb-2023 22:15 2304 +splitindex.windows.tar.xz 20-Feb-2023 22:15 2304 +splitindex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:05 344 +splitindex.x86_64-cygwin.tar.xz 28-Feb-2019 03:05 344 +splitindex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:05 352 +splitindex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:05 352 +splitindex.x86_64-linux.r29688.tar.xz 28-Feb-2019 03:05 344 +splitindex.x86_64-linux.tar.xz 28-Feb-2019 03:05 344 +splitindex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:05 348 +splitindex.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:05 348 +splitindex.x86_64-solaris.r29688.tar.xz 28-Feb-2019 03:05 344 +splitindex.x86_64-solaris.tar.xz 28-Feb-2019 03:05 344 +spot.doc.r22408.tar.xz 28-Feb-2019 03:05 233272 +spot.doc.tar.xz 28-Feb-2019 03:05 233272 +spot.r22408.tar.xz 28-Feb-2019 03:05 2520 +spot.source.r22408.tar.xz 28-Feb-2019 03:05 9784 +spot.source.tar.xz 28-Feb-2019 03:05 9784 +spot.tar.xz 28-Feb-2019 03:05 2520 +spotcolor.doc.r15878.tar.xz 28-Feb-2019 03:05 57820 +spotcolor.doc.tar.xz 28-Feb-2019 03:05 57820 +spotcolor.r15878.tar.xz 28-Feb-2019 03:05 8944 +spotcolor.tar.xz 28-Feb-2019 03:05 8944 +spreadtab.doc.r74630.tar.xz 16-Mar-2025 01:12 432416 +spreadtab.doc.tar.xz 16-Mar-2025 01:12 432416 +spreadtab.r74630.tar.xz 16-Mar-2025 01:12 23064 +spreadtab.tar.xz 16-Mar-2025 01:12 23064 +spverbatim.doc.r15878.tar.xz 28-Feb-2019 03:05 101460 +spverbatim.doc.tar.xz 28-Feb-2019 03:05 101460 +spverbatim.r15878.tar.xz 28-Feb-2019 03:05 1196 +spverbatim.source.r15878.tar.xz 28-Feb-2019 03:05 3612 +spverbatim.source.tar.xz 28-Feb-2019 03:05 3612 +spverbatim.tar.xz 28-Feb-2019 03:05 1196 +sqltex.aarch64-linux.r72338.tar.xz 21-Sep-2024 23:58 336 +sqltex.aarch64-linux.tar.xz 21-Sep-2024 23:58 336 +sqltex.amd64-freebsd.r72338.tar.xz 21-Sep-2024 23:58 336 +sqltex.amd64-freebsd.tar.xz 21-Sep-2024 23:58 336 +sqltex.amd64-netbsd.r72338.tar.xz 21-Sep-2024 23:58 336 +sqltex.amd64-netbsd.tar.xz 21-Sep-2024 23:58 336 +sqltex.armhf-linux.r72338.tar.xz 21-Sep-2024 23:58 336 +sqltex.armhf-linux.tar.xz 21-Sep-2024 23:58 336 +sqltex.doc.r72396.tar.xz 28-Sep-2024 23:59 319512 +sqltex.doc.tar.xz 28-Sep-2024 23:59 319512 +sqltex.i386-freebsd.r72338.tar.xz 21-Sep-2024 23:58 336 +sqltex.i386-freebsd.tar.xz 21-Sep-2024 23:58 336 +sqltex.i386-linux.r72338.tar.xz 21-Sep-2024 23:58 332 +sqltex.i386-linux.tar.xz 21-Sep-2024 23:58 332 +sqltex.i386-netbsd.r72338.tar.xz 21-Sep-2024 23:58 332 +sqltex.i386-netbsd.tar.xz 21-Sep-2024 23:58 332 +sqltex.i386-solaris.r72338.tar.xz 21-Sep-2024 23:58 332 +sqltex.i386-solaris.tar.xz 21-Sep-2024 23:58 332 +sqltex.r72396.tar.xz 28-Sep-2024 23:59 12852 +sqltex.source.r72396.tar.xz 28-Sep-2024 23:59 48988 +sqltex.source.tar.xz 28-Sep-2024 23:59 48988 +sqltex.tar.xz 28-Sep-2024 23:59 12852 +sqltex.universal-darwin.r72338.tar.xz 21-Sep-2024 23:58 336 +sqltex.universal-darwin.tar.xz 21-Sep-2024 23:58 336 +sqltex.windows.r72338.tar.xz 21-Sep-2024 23:58 2304 +sqltex.windows.tar.xz 21-Sep-2024 23:58 2304 +sqltex.x86_64-cygwin.r72338.tar.xz 21-Sep-2024 23:58 336 +sqltex.x86_64-cygwin.tar.xz 21-Sep-2024 23:58 336 +sqltex.x86_64-darwinlegacy.r72338.tar.xz 21-Sep-2024 23:58 344 +sqltex.x86_64-darwinlegacy.tar.xz 21-Sep-2024 23:58 344 +sqltex.x86_64-linux.r72338.tar.xz 21-Sep-2024 23:58 336 +sqltex.x86_64-linux.tar.xz 21-Sep-2024 23:58 336 +sqltex.x86_64-linuxmusl.r72338.tar.xz 21-Sep-2024 23:58 340 +sqltex.x86_64-linuxmusl.tar.xz 21-Sep-2024 23:58 340 +sqltex.x86_64-solaris.r72338.tar.xz 21-Sep-2024 23:58 336 +sqltex.x86_64-solaris.tar.xz 21-Sep-2024 23:58 336 +sr-vorl.doc.r59333.tar.xz 24-May-2021 23:52 452688 +sr-vorl.doc.tar.xz 24-May-2021 23:52 452688 +sr-vorl.r59333.tar.xz 24-May-2021 23:52 4280 +sr-vorl.source.r59333.tar.xz 24-May-2021 23:52 18872 +sr-vorl.source.tar.xz 24-May-2021 23:52 18872 +sr-vorl.tar.xz 24-May-2021 23:52 4280 +srbook-mem.doc.r45818.tar.xz 28-Feb-2019 03:05 263956 +srbook-mem.doc.tar.xz 28-Feb-2019 03:05 263956 +srbook-mem.r45818.tar.xz 28-Feb-2019 03:05 1084 +srbook-mem.tar.xz 28-Feb-2019 03:05 1084 +srbtiks.doc.r63308.tar.xz 15-May-2022 23:54 905120 +srbtiks.doc.tar.xz 15-May-2022 23:54 905120 +srbtiks.r63308.tar.xz 15-May-2022 23:54 19200 +srbtiks.tar.xz 15-May-2022 23:54 19200 +srcltx.doc.r15878.tar.xz 28-Feb-2019 03:05 109796 +srcltx.doc.tar.xz 28-Feb-2019 03:05 109796 +srcltx.r15878.tar.xz 28-Feb-2019 03:05 2344 +srcltx.source.r15878.tar.xz 28-Feb-2019 03:05 8676 +srcltx.source.tar.xz 28-Feb-2019 03:05 8676 +srcltx.tar.xz 28-Feb-2019 03:05 2344 +srcredact.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:05 344 +srcredact.aarch64-linux.tar.xz 28-Feb-2019 03:05 344 +srcredact.amd64-freebsd.r38710.tar.xz 28-Feb-2019 03:05 344 +srcredact.amd64-freebsd.tar.xz 28-Feb-2019 03:05 344 +srcredact.amd64-netbsd.r38710.tar.xz 28-Feb-2019 03:05 340 +srcredact.amd64-netbsd.tar.xz 28-Feb-2019 03:05 340 +srcredact.armhf-linux.r38710.tar.xz 28-Feb-2019 03:05 340 +srcredact.armhf-linux.tar.xz 28-Feb-2019 03:05 340 +srcredact.doc.r38710.tar.xz 28-Feb-2019 03:05 384380 +srcredact.doc.tar.xz 28-Feb-2019 03:05 384380 +srcredact.i386-freebsd.r38710.tar.xz 28-Feb-2019 03:05 344 +srcredact.i386-freebsd.tar.xz 28-Feb-2019 03:05 344 +srcredact.i386-linux.r38710.tar.xz 28-Feb-2019 03:05 344 +srcredact.i386-linux.tar.xz 28-Feb-2019 03:05 344 +srcredact.i386-netbsd.r38710.tar.xz 28-Feb-2019 03:05 340 +srcredact.i386-netbsd.tar.xz 28-Feb-2019 03:05 340 +srcredact.i386-solaris.r38710.tar.xz 28-Feb-2019 03:05 340 +srcredact.i386-solaris.tar.xz 28-Feb-2019 03:05 340 +srcredact.r38710.tar.xz 28-Feb-2019 03:05 4240 +srcredact.tar.xz 28-Feb-2019 03:05 4240 +srcredact.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 344 +srcredact.universal-darwin.tar.xz 25-Feb-2021 18:17 344 +srcredact.windows.r65891.tar.xz 20-Feb-2023 22:15 2308 +srcredact.windows.tar.xz 20-Feb-2023 22:15 2308 +srcredact.x86_64-cygwin.r38710.tar.xz 28-Feb-2019 03:05 344 +srcredact.x86_64-cygwin.tar.xz 28-Feb-2019 03:05 344 +srcredact.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:06 348 +srcredact.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:06 348 +srcredact.x86_64-linux.r38710.tar.xz 28-Feb-2019 03:06 340 +srcredact.x86_64-linux.tar.xz 28-Feb-2019 03:06 340 +srcredact.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:06 348 +srcredact.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:06 348 +srcredact.x86_64-solaris.r38710.tar.xz 28-Feb-2019 03:06 340 +srcredact.x86_64-solaris.tar.xz 28-Feb-2019 03:06 340 +srdp-mathematik.doc.r75162.tar.xz 09-May-2025 23:48 147368 +srdp-mathematik.doc.tar.xz 09-May-2025 23:48 147368 +srdp-mathematik.r75162.tar.xz 09-May-2025 23:48 30940 +srdp-mathematik.tar.xz 09-May-2025 23:48 30940 +sseq.doc.r31585.tar.xz 28-Feb-2019 03:06 215196 +sseq.doc.tar.xz 28-Feb-2019 03:06 215196 +sseq.r31585.tar.xz 28-Feb-2019 03:06 8160 +sseq.source.r31585.tar.xz 28-Feb-2019 03:06 16176 +sseq.source.tar.xz 28-Feb-2019 03:06 16176 +sseq.tar.xz 28-Feb-2019 03:06 8160 +sshrc-insight.doc.r76065.tar.xz 15-Aug-2025 23:50 488576 +sshrc-insight.doc.tar.xz 15-Aug-2025 23:50 488576 +sshrc-insight.r76065.tar.xz 15-Aug-2025 23:50 3840 +sshrc-insight.source.r76065.tar.xz 15-Aug-2025 23:50 12408 +sshrc-insight.source.tar.xz 15-Aug-2025 23:50 12408 +sshrc-insight.tar.xz 15-Aug-2025 23:50 3840 +sslides.doc.r32293.tar.xz 28-Feb-2019 03:06 22356 +sslides.doc.tar.xz 28-Feb-2019 03:06 22356 +sslides.r32293.tar.xz 28-Feb-2019 03:06 1116 +sslides.tar.xz 28-Feb-2019 03:06 1116 +stack.r15878.tar.xz 28-Feb-2019 03:06 1812 +stack.source.r15878.tar.xz 28-Feb-2019 03:06 4104 +stack.source.tar.xz 28-Feb-2019 03:06 4104 +stack.tar.xz 28-Feb-2019 03:06 1812 +stackengine.doc.r75878.tar.xz 23-Jul-2025 23:50 367112 +stackengine.doc.tar.xz 23-Jul-2025 23:50 367112 +stackengine.r75878.tar.xz 23-Jul-2025 23:50 5360 +stackengine.tar.xz 23-Jul-2025 23:50 5360 +stage.doc.r62929.tar.xz 05-Apr-2022 23:53 158680 +stage.doc.tar.xz 05-Apr-2022 23:53 158680 +stage.r62929.tar.xz 05-Apr-2022 23:53 2800 +stage.source.r62929.tar.xz 05-Apr-2022 23:53 436 +stage.source.tar.xz 05-Apr-2022 23:53 436 +stage.tar.xz 05-Apr-2022 23:53 2800 +standalone.doc.r74247.tar.xz 24-Feb-2025 00:50 282048 +standalone.doc.tar.xz 24-Feb-2025 00:50 282048 +standalone.r74247.tar.xz 24-Feb-2025 00:50 12452 +standalone.source.r74247.tar.xz 24-Feb-2025 00:50 39764 +standalone.source.tar.xz 24-Feb-2025 00:50 39764 +standalone.tar.xz 24-Feb-2025 00:50 12452 +standardsectioning.doc.r71479.tar.xz 10-Jun-2024 23:49 229164 +standardsectioning.doc.tar.xz 10-Jun-2024 23:49 229164 +standardsectioning.r71479.tar.xz 10-Jun-2024 23:49 2996 +standardsectioning.source.r71479.tar.xz 10-Jun-2024 23:49 7684 +standardsectioning.source.tar.xz 10-Jun-2024 23:49 7684 +standardsectioning.tar.xz 10-Jun-2024 23:49 2996 +stanli.doc.r54512.tar.xz 24-Mar-2020 01:03 461048 +stanli.doc.tar.xz 24-Mar-2020 01:03 461048 +stanli.r54512.tar.xz 24-Mar-2020 01:03 9720 +stanli.tar.xz 24-Mar-2020 01:03 9720 +starfont.doc.r19982.tar.xz 28-Feb-2019 03:06 494536 +starfont.doc.tar.xz 28-Feb-2019 03:06 494536 +starfont.r19982.tar.xz 28-Feb-2019 03:06 179532 +starfont.tar.xz 28-Feb-2019 03:06 179532 +starray.doc.r75974.tar.xz 05-Aug-2025 23:45 247628 +starray.doc.tar.xz 05-Aug-2025 23:45 247628 +starray.r75974.tar.xz 05-Aug-2025 23:45 9528 +starray.tar.xz 05-Aug-2025 23:45 9528 +startex.doc.r69742.tar.xz 08-Feb-2024 00:46 511988 +startex.doc.tar.xz 08-Feb-2024 00:46 511988 +startex.r69742.tar.xz 08-Feb-2024 00:46 10160 +startex.source.r69742.tar.xz 08-Feb-2024 00:46 25200 +startex.source.tar.xz 08-Feb-2024 00:46 25200 +startex.tar.xz 08-Feb-2024 00:46 10160 +statex.doc.r20306.tar.xz 28-Feb-2019 03:06 177212 +statex.doc.tar.xz 28-Feb-2019 03:06 177212 +statex.r20306.tar.xz 28-Feb-2019 03:06 4884 +statex.tar.xz 28-Feb-2019 03:06 4884 +statex2.doc.r23961.tar.xz 28-Feb-2019 03:06 177524 +statex2.doc.tar.xz 28-Feb-2019 03:06 177524 +statex2.r23961.tar.xz 28-Feb-2019 03:06 5296 +statex2.tar.xz 28-Feb-2019 03:06 5296 +statistics.doc.r67201.tar.xz 23-May-2023 23:44 439308 +statistics.doc.tar.xz 23-May-2023 23:44 439308 +statistics.r67201.tar.xz 23-May-2023 23:44 8400 +statistics.source.r67201.tar.xz 23-May-2023 23:44 23732 +statistics.source.tar.xz 23-May-2023 23:44 23732 +statistics.tar.xz 23-May-2023 23:44 8400 +statistik.doc.r20334.tar.xz 28-Feb-2019 03:06 94864 +statistik.doc.tar.xz 28-Feb-2019 03:06 94864 +statistik.r20334.tar.xz 28-Feb-2019 03:06 2164 +statistik.source.r20334.tar.xz 28-Feb-2019 03:06 4544 +statistik.source.tar.xz 28-Feb-2019 03:06 4544 +statistik.tar.xz 28-Feb-2019 03:06 2164 +statmath.doc.r46925.tar.xz 28-Feb-2019 03:06 205828 +statmath.doc.tar.xz 28-Feb-2019 03:06 205828 +statmath.r46925.tar.xz 28-Feb-2019 03:06 1712 +statmath.source.r46925.tar.xz 28-Feb-2019 03:06 3544 +statmath.source.tar.xz 28-Feb-2019 03:06 3544 +statmath.tar.xz 28-Feb-2019 03:06 1712 +staves.doc.r15878.tar.xz 28-Feb-2019 03:06 230488 +staves.doc.tar.xz 28-Feb-2019 03:06 230488 +staves.r15878.tar.xz 28-Feb-2019 03:06 121996 +staves.source.r15878.tar.xz 28-Feb-2019 03:06 3748 +staves.source.tar.xz 28-Feb-2019 03:06 3748 +staves.tar.xz 28-Feb-2019 03:06 121996 +stdclsdv.doc.r15878.tar.xz 28-Feb-2019 03:06 127960 +stdclsdv.doc.tar.xz 28-Feb-2019 03:06 127960 +stdclsdv.r15878.tar.xz 28-Feb-2019 03:06 1500 +stdclsdv.source.r15878.tar.xz 28-Feb-2019 03:06 5384 +stdclsdv.source.tar.xz 28-Feb-2019 03:06 5384 +stdclsdv.tar.xz 28-Feb-2019 03:06 1500 +stdpage.doc.r15878.tar.xz 28-Feb-2019 03:06 102708 +stdpage.doc.tar.xz 28-Feb-2019 03:06 102708 +stdpage.r15878.tar.xz 28-Feb-2019 03:06 2076 +stdpage.source.r15878.tar.xz 28-Feb-2019 03:06 7392 +stdpage.source.tar.xz 28-Feb-2019 03:06 7392 +stdpage.tar.xz 28-Feb-2019 03:06 2076 +stealcaps.doc.r64967.tar.xz 08-Nov-2022 00:55 439092 +stealcaps.doc.tar.xz 08-Nov-2022 00:55 439092 +stealcaps.r64967.tar.xz 08-Nov-2022 00:55 1696 +stealcaps.source.r64967.tar.xz 08-Nov-2022 00:55 3612 +stealcaps.source.tar.xz 08-Nov-2022 00:55 3612 +stealcaps.tar.xz 08-Nov-2022 00:55 1696 +steinmetz.doc.r15878.tar.xz 28-Feb-2019 03:06 102708 +steinmetz.doc.tar.xz 28-Feb-2019 03:06 102708 +steinmetz.r15878.tar.xz 28-Feb-2019 03:06 1352 +steinmetz.source.r15878.tar.xz 28-Feb-2019 03:06 4880 +steinmetz.source.tar.xz 28-Feb-2019 03:06 4880 +steinmetz.tar.xz 28-Feb-2019 03:06 1352 +stellenbosch-2.doc.r68183.tar.xz 05-Sep-2023 23:44 5403040 +stellenbosch-2.doc.tar.xz 05-Sep-2023 23:44 5403040 +stellenbosch-2.r68183.tar.xz 05-Sep-2023 23:44 1550016 +stellenbosch-2.source.r68183.tar.xz 05-Sep-2023 23:44 2065420 +stellenbosch-2.source.tar.xz 05-Sep-2023 23:44 2065420 +stellenbosch-2.tar.xz 05-Sep-2023 23:44 1550016 +stellenbosch.doc.r68039.tar.xz 23-Aug-2023 23:45 3071164 +stellenbosch.doc.tar.xz 23-Aug-2023 23:45 3071164 +stellenbosch.r68039.tar.xz 23-Aug-2023 23:45 703440 +stellenbosch.source.r68039.tar.xz 23-Aug-2023 23:45 415332 +stellenbosch.source.tar.xz 23-Aug-2023 23:45 415332 +stellenbosch.tar.xz 23-Aug-2023 23:45 703440 +step.doc.r57307.tar.xz 04-Jan-2021 00:57 36316 +step.doc.tar.xz 04-Jan-2021 00:57 36316 +step.r57307.tar.xz 04-Jan-2021 00:57 1296664 +step.tar.xz 04-Jan-2021 00:57 1296664 +stepgreek.doc.r57074.tar.xz 06-Dec-2020 00:58 2856 +stepgreek.doc.tar.xz 06-Dec-2020 00:58 2856 +stepgreek.r57074.tar.xz 06-Dec-2020 00:58 451624 +stepgreek.tar.xz 06-Dec-2020 00:58 451624 +stex.doc.r68569.tar.xz 16-Oct-2023 23:44 6361456 +stex.doc.tar.xz 16-Oct-2023 23:44 6361456 +stex.r68569.tar.xz 16-Oct-2023 23:44 91048 +stex.source.r68569.tar.xz 16-Oct-2023 23:44 50020 +stex.source.tar.xz 16-Oct-2023 23:44 50020 +stex.tar.xz 16-Oct-2023 23:44 91048 +stickstoo.doc.r72368.tar.xz 23-Sep-2024 23:49 406440 +stickstoo.doc.tar.xz 23-Sep-2024 23:49 406440 +stickstoo.r72368.tar.xz 23-Sep-2024 23:49 2668708 +stickstoo.tar.xz 23-Sep-2024 23:49 2668708 +stix.doc.r54512.tar.xz 24-Mar-2020 01:04 1838228 +stix.doc.tar.xz 24-Mar-2020 01:04 1838228 +stix.r54512.tar.xz 24-Mar-2020 01:04 2595396 +stix.source.r54512.tar.xz 24-Mar-2020 01:04 27808 +stix.source.tar.xz 24-Mar-2020 01:04 27808 +stix.tar.xz 24-Mar-2020 01:04 2595396 +stix2-otf.doc.r58735.tar.xz 04-Apr-2021 23:52 1252812 +stix2-otf.doc.tar.xz 04-Apr-2021 23:52 1252812 +stix2-otf.r58735.tar.xz 04-Apr-2021 23:52 1382984 +stix2-otf.tar.xz 04-Apr-2021 23:52 1382984 +stix2-type1.doc.r57448.tar.xz 17-Jan-2021 00:57 1393108 +stix2-type1.doc.tar.xz 17-Jan-2021 00:57 1393108 +stix2-type1.r57448.tar.xz 17-Jan-2021 00:57 3110736 +stix2-type1.source.r57448.tar.xz 17-Jan-2021 00:57 28092 +stix2-type1.source.tar.xz 17-Jan-2021 00:57 28092 +stix2-type1.tar.xz 17-Jan-2021 00:57 3110736 +stmaryrd.doc.r22027.tar.xz 28-Feb-2019 03:06 78724 +stmaryrd.doc.tar.xz 28-Feb-2019 03:06 78724 +stmaryrd.r22027.tar.xz 28-Feb-2019 03:06 166148 +stmaryrd.source.r22027.tar.xz 28-Feb-2019 03:06 6248 +stmaryrd.source.tar.xz 28-Feb-2019 03:06 6248 +stmaryrd.tar.xz 28-Feb-2019 03:06 166148 +stocksize.doc.r72957.tar.xz 25-Nov-2024 00:46 111372 +stocksize.doc.tar.xz 25-Nov-2024 00:46 111372 +stocksize.r72957.tar.xz 25-Nov-2024 00:46 1536 +stocksize.tar.xz 25-Nov-2024 00:46 1536 +storebox.doc.r64967.tar.xz 08-Nov-2022 00:55 194352 +storebox.doc.tar.xz 08-Nov-2022 00:55 194352 +storebox.r64967.tar.xz 08-Nov-2022 00:55 2980 +storebox.source.r64967.tar.xz 08-Nov-2022 00:55 6216 +storebox.source.tar.xz 08-Nov-2022 00:55 6216 +storebox.tar.xz 08-Nov-2022 00:55 2980 +storecmd.doc.r24431.tar.xz 28-Feb-2019 03:06 242396 +storecmd.doc.tar.xz 28-Feb-2019 03:06 242396 +storecmd.r24431.tar.xz 28-Feb-2019 03:06 3304 +storecmd.tar.xz 28-Feb-2019 03:06 3304 +strands.doc.r59906.tar.xz 12-Jul-2021 23:53 142224 +strands.doc.tar.xz 12-Jul-2021 23:53 142224 +strands.r59906.tar.xz 12-Jul-2021 23:53 7268 +strands.source.r59906.tar.xz 12-Jul-2021 23:53 9124 +strands.source.tar.xz 12-Jul-2021 23:53 9124 +strands.tar.xz 12-Jul-2021 23:53 7268 +stretchy.doc.r75140.tar.xz 06-May-2025 23:47 156196 +stretchy.doc.tar.xz 06-May-2025 23:47 156196 +stretchy.r75140.tar.xz 06-May-2025 23:47 5296 +stretchy.tar.xz 06-May-2025 23:47 5296 +stricttex.doc.r56320.tar.xz 11-Sep-2020 23:57 57536 +stricttex.doc.tar.xz 11-Sep-2020 23:57 57536 +stricttex.r56320.tar.xz 11-Sep-2020 23:57 1880 +stricttex.tar.xz 11-Sep-2020 23:57 1880 +string-diagrams.doc.r67363.tar.xz 14-Jun-2023 23:44 538072 +string-diagrams.doc.tar.xz 14-Jun-2023 23:44 538072 +string-diagrams.r67363.tar.xz 14-Jun-2023 23:44 2324 +string-diagrams.source.r67363.tar.xz 14-Jun-2023 23:44 5124 +string-diagrams.source.tar.xz 14-Jun-2023 23:44 5124 +string-diagrams.tar.xz 14-Jun-2023 23:44 2324 +stringenc.doc.r52982.tar.xz 01-Dec-2019 00:58 664768 +stringenc.doc.tar.xz 01-Dec-2019 00:58 664768 +stringenc.r52982.tar.xz 01-Dec-2019 00:58 23376 +stringenc.source.r52982.tar.xz 01-Dec-2019 00:58 30628 +stringenc.source.tar.xz 01-Dec-2019 00:58 30628 +stringenc.tar.xz 01-Dec-2019 00:58 23376 +stringstrings.doc.r57097.tar.xz 09-Dec-2020 00:56 381756 +stringstrings.doc.tar.xz 09-Dec-2020 00:56 381756 +stringstrings.r57097.tar.xz 09-Dec-2020 00:56 9224 +stringstrings.source.r57097.tar.xz 09-Dec-2020 00:56 33268 +stringstrings.source.tar.xz 09-Dec-2020 00:56 33268 +stringstrings.tar.xz 09-Dec-2020 00:56 9224 +structmech.doc.r66724.tar.xz 01-Apr-2023 00:01 154216 +structmech.doc.tar.xz 01-Apr-2023 00:01 154216 +structmech.r66724.tar.xz 01-Apr-2023 00:01 3880 +structmech.tar.xz 01-Apr-2023 00:01 3880 +struktex.doc.r75565.tar.xz 21-Jun-2025 23:54 829392 +struktex.doc.tar.xz 21-Jun-2025 23:54 829392 +struktex.r75565.tar.xz 21-Jun-2025 23:54 10288 +struktex.source.r75565.tar.xz 21-Jun-2025 23:54 68304 +struktex.source.tar.xz 21-Jun-2025 23:54 68304 +struktex.tar.xz 21-Jun-2025 23:54 10288 +sttools.doc.r75777.tar.xz 14-Jul-2025 23:48 682968 +sttools.doc.tar.xz 14-Jul-2025 23:48 682968 +sttools.r75777.tar.xz 14-Jul-2025 23:48 13280 +sttools.source.r75777.tar.xz 14-Jul-2025 23:48 20540 +sttools.source.tar.xz 14-Jul-2025 23:48 20540 +sttools.tar.xz 14-Jul-2025 23:48 13280 +stubs.doc.r75437.tar.xz 07-Jun-2025 19:02 23904 +stubs.doc.tar.xz 07-Jun-2025 19:02 23904 +stubs.r75437.tar.xz 07-Jun-2025 19:02 1696 +stubs.tar.xz 07-Jun-2025 19:02 1696 +studenthandouts.doc.r43516.tar.xz 28-Feb-2019 03:06 318548 +studenthandouts.doc.tar.xz 28-Feb-2019 03:06 318548 +studenthandouts.r43516.tar.xz 28-Feb-2019 03:06 4352 +studenthandouts.tar.xz 28-Feb-2019 03:06 4352 +sty2dtx.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.aarch64-linux.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.amd64-freebsd.r21215.tar.xz 28-Feb-2019 03:06 344 +sty2dtx.amd64-freebsd.tar.xz 28-Feb-2019 03:06 344 +sty2dtx.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.amd64-netbsd.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.armhf-linux.r30015.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.armhf-linux.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.doc.r64967.tar.xz 08-Nov-2022 00:55 184132 +sty2dtx.doc.tar.xz 08-Nov-2022 00:55 184132 +sty2dtx.i386-freebsd.r21215.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.i386-freebsd.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.i386-linux.r21215.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.i386-linux.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.i386-netbsd.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.i386-solaris.r21215.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.i386-solaris.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.r64967.tar.xz 08-Nov-2022 00:55 8764 +sty2dtx.tar.xz 08-Nov-2022 00:55 8764 +sty2dtx.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +sty2dtx.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +sty2dtx.windows.r65891.tar.xz 20-Feb-2023 22:15 2304 +sty2dtx.windows.tar.xz 20-Feb-2023 22:15 2304 +sty2dtx.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:06 344 +sty2dtx.x86_64-cygwin.tar.xz 28-Feb-2019 03:06 344 +sty2dtx.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:06 352 +sty2dtx.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:06 352 +sty2dtx.x86_64-linux.r21215.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.x86_64-linux.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:06 344 +sty2dtx.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:06 344 +sty2dtx.x86_64-solaris.r21215.tar.xz 28-Feb-2019 03:06 340 +sty2dtx.x86_64-solaris.tar.xz 28-Feb-2019 03:06 340 +styledcmd.doc.r70491.tar.xz 08-Mar-2024 00:47 371440 +styledcmd.doc.tar.xz 08-Mar-2024 00:47 371440 +styledcmd.r70491.tar.xz 08-Mar-2024 00:47 2620 +styledcmd.source.r70491.tar.xz 08-Mar-2024 00:47 6088 +styledcmd.source.tar.xz 08-Mar-2024 00:47 6088 +styledcmd.tar.xz 08-Mar-2024 00:47 2620 +suanpan-l3.doc.r72540.tar.xz 13-Oct-2024 23:48 438584 +suanpan-l3.doc.tar.xz 13-Oct-2024 23:48 438584 +suanpan-l3.r72540.tar.xz 13-Oct-2024 23:48 7940 +suanpan-l3.tar.xz 13-Oct-2024 23:48 7940 +suanpan.doc.r15878.tar.xz 28-Feb-2019 03:06 544 +suanpan.doc.tar.xz 28-Feb-2019 03:06 544 +suanpan.r15878.tar.xz 28-Feb-2019 03:06 4528 +suanpan.tar.xz 28-Feb-2019 03:06 4528 +subdepth.doc.r15878.tar.xz 28-Feb-2019 03:06 95520 +subdepth.doc.tar.xz 28-Feb-2019 03:06 95520 +subdepth.r15878.tar.xz 28-Feb-2019 03:06 1644 +subdepth.source.r15878.tar.xz 28-Feb-2019 03:06 3636 +subdepth.source.tar.xz 28-Feb-2019 03:06 3636 +subdepth.tar.xz 28-Feb-2019 03:06 1644 +subdocs.doc.r51480.tar.xz 26-Jun-2019 23:55 1160 +subdocs.doc.tar.xz 26-Jun-2019 23:55 1160 +subdocs.r51480.tar.xz 26-Jun-2019 23:55 2884 +subdocs.tar.xz 26-Jun-2019 23:55 2884 +subeqn.doc.r71864.tar.xz 21-Jul-2024 23:46 288164 +subeqn.doc.tar.xz 21-Jul-2024 23:46 288164 +subeqn.r71864.tar.xz 21-Jul-2024 23:46 1528 +subeqn.source.r71864.tar.xz 21-Jul-2024 23:46 3876 +subeqn.source.tar.xz 21-Jul-2024 23:46 3876 +subeqn.tar.xz 21-Jul-2024 23:46 1528 +subeqnarray.doc.r71865.tar.xz 21-Jul-2024 23:46 273836 +subeqnarray.doc.tar.xz 21-Jul-2024 23:46 273836 +subeqnarray.r71865.tar.xz 21-Jul-2024 23:46 2204 +subeqnarray.source.r71865.tar.xz 21-Jul-2024 23:46 4744 +subeqnarray.source.tar.xz 21-Jul-2024 23:46 4744 +subeqnarray.tar.xz 21-Jul-2024 23:46 2204 +subfig.doc.r15878.tar.xz 28-Feb-2019 03:06 453616 +subfig.doc.tar.xz 28-Feb-2019 03:06 453616 +subfig.r15878.tar.xz 28-Feb-2019 03:06 6896 +subfig.source.r15878.tar.xz 28-Feb-2019 03:06 43120 +subfig.source.tar.xz 28-Feb-2019 03:06 43120 +subfig.tar.xz 28-Feb-2019 03:06 6896 +subfigmat.doc.r20308.tar.xz 28-Feb-2019 03:06 286940 +subfigmat.doc.tar.xz 28-Feb-2019 03:06 286940 +subfigmat.r20308.tar.xz 28-Feb-2019 03:06 2592 +subfigmat.tar.xz 28-Feb-2019 03:06 2592 +subfigure.doc.r15878.tar.xz 28-Feb-2019 03:06 344716 +subfigure.doc.tar.xz 28-Feb-2019 03:06 344716 +subfigure.r15878.tar.xz 28-Feb-2019 03:06 4868 +subfigure.source.r15878.tar.xz 28-Feb-2019 03:06 36364 +subfigure.source.tar.xz 28-Feb-2019 03:06 36364 +subfigure.tar.xz 28-Feb-2019 03:06 4868 +subfiles.doc.r56977.tar.xz 22-Nov-2020 00:57 236484 +subfiles.doc.tar.xz 22-Nov-2020 00:57 236484 +subfiles.r56977.tar.xz 22-Nov-2020 00:57 2284 +subfiles.source.r56977.tar.xz 22-Nov-2020 00:57 9080 +subfiles.source.tar.xz 22-Nov-2020 00:57 9080 +subfiles.tar.xz 22-Nov-2020 00:57 2284 +subfloat.doc.r29349.tar.xz 28-Feb-2019 03:06 89332 +subfloat.doc.tar.xz 28-Feb-2019 03:06 89332 +subfloat.r29349.tar.xz 28-Feb-2019 03:06 2032 +subfloat.source.r29349.tar.xz 28-Feb-2019 03:06 7148 +subfloat.source.tar.xz 28-Feb-2019 03:06 7148 +subfloat.tar.xz 28-Feb-2019 03:06 2032 +substances.doc.r40989.tar.xz 28-Feb-2019 03:06 578964 +substances.doc.tar.xz 28-Feb-2019 03:06 578964 +substances.r40989.tar.xz 28-Feb-2019 03:06 4780 +substances.tar.xz 28-Feb-2019 03:06 4780 +substr.doc.r16117.tar.xz 28-Feb-2019 03:06 17760 +substr.doc.tar.xz 28-Feb-2019 03:06 17760 +substr.r16117.tar.xz 28-Feb-2019 03:06 2040 +substr.tar.xz 28-Feb-2019 03:06 2040 +subsupscripts.doc.r16080.tar.xz 28-Feb-2019 03:06 101524 +subsupscripts.doc.tar.xz 28-Feb-2019 03:06 101524 +subsupscripts.r16080.tar.xz 28-Feb-2019 03:06 896 +subsupscripts.tar.xz 28-Feb-2019 03:06 896 +subtext.doc.r51273.tar.xz 30-May-2019 23:38 43244 +subtext.doc.tar.xz 30-May-2019 23:38 43244 +subtext.r51273.tar.xz 30-May-2019 23:38 1180 +subtext.tar.xz 30-May-2019 23:38 1180 +sudoku.doc.r67189.tar.xz 22-May-2023 23:43 54904 +sudoku.doc.tar.xz 22-May-2023 23:43 54904 +sudoku.r67189.tar.xz 22-May-2023 23:43 1844 +sudoku.source.r67189.tar.xz 22-May-2023 23:43 4360 +sudoku.source.tar.xz 22-May-2023 23:43 4360 +sudoku.tar.xz 22-May-2023 23:43 1844 +sudokubundle.doc.r15878.tar.xz 28-Feb-2019 03:06 281764 +sudokubundle.doc.tar.xz 28-Feb-2019 03:06 281764 +sudokubundle.r15878.tar.xz 28-Feb-2019 03:06 8244 +sudokubundle.source.r15878.tar.xz 28-Feb-2019 03:06 27196 +sudokubundle.source.tar.xz 28-Feb-2019 03:06 27196 +sudokubundle.tar.xz 28-Feb-2019 03:06 8244 +suftesi.doc.r73055.tar.xz 07-Dec-2024 00:50 1044088 +suftesi.doc.tar.xz 07-Dec-2024 00:50 1044088 +suftesi.r73055.tar.xz 07-Dec-2024 00:50 14836 +suftesi.source.r73055.tar.xz 07-Dec-2024 00:50 43100 +suftesi.source.tar.xz 07-Dec-2024 00:50 43100 +suftesi.tar.xz 07-Dec-2024 00:50 14836 +sugconf.doc.r58752.tar.xz 05-Apr-2021 23:52 73408 +sugconf.doc.tar.xz 05-Apr-2021 23:52 73408 +sugconf.r58752.tar.xz 05-Apr-2021 23:52 2608 +sugconf.tar.xz 05-Apr-2021 23:52 2608 +sunpath.doc.r72604.tar.xz 20-Oct-2024 23:47 438612 +sunpath.doc.tar.xz 20-Oct-2024 23:47 438612 +sunpath.r72604.tar.xz 20-Oct-2024 23:47 1880 +sunpath.source.r72604.tar.xz 20-Oct-2024 23:47 3800 +sunpath.source.tar.xz 20-Oct-2024 23:47 3800 +sunpath.tar.xz 20-Oct-2024 23:47 1880 +superiors.doc.r69387.tar.xz 12-Jan-2024 00:46 259492 +superiors.doc.tar.xz 12-Jan-2024 00:46 259492 +superiors.r69387.tar.xz 12-Jan-2024 00:46 2328 +superiors.tar.xz 12-Jan-2024 00:46 2328 +supertabular.doc.r71854.tar.xz 20-Jul-2024 23:54 289204 +supertabular.doc.tar.xz 20-Jul-2024 23:54 289204 +supertabular.r71854.tar.xz 20-Jul-2024 23:54 4020 +supertabular.source.r71854.tar.xz 20-Jul-2024 23:54 14488 +supertabular.source.tar.xz 20-Jul-2024 23:54 14488 +supertabular.tar.xz 20-Jul-2024 23:54 4020 +suppose.doc.r59281.tar.xz 20-May-2021 21:46 197208 +suppose.doc.tar.xz 20-May-2021 21:46 197208 +suppose.r59281.tar.xz 20-May-2021 21:46 2448 +suppose.tar.xz 20-May-2021 21:46 2448 +susy.doc.r19440.tar.xz 28-Feb-2019 03:06 744 +susy.doc.tar.xz 28-Feb-2019 03:06 744 +susy.r19440.tar.xz 28-Feb-2019 03:06 944 +susy.tar.xz 28-Feb-2019 03:06 944 +svg-inkscape.doc.r32199.tar.xz 28-Feb-2019 03:06 197212 +svg-inkscape.doc.tar.xz 28-Feb-2019 03:06 197212 +svg-inkscape.r32199.tar.xz 28-Feb-2019 03:06 648 +svg-inkscape.tar.xz 28-Feb-2019 03:06 648 +svg.doc.r70626.tar.xz 14-Mar-2024 00:48 1077432 +svg.doc.tar.xz 14-Mar-2024 00:48 1077432 +svg.r70626.tar.xz 14-Mar-2024 00:48 14160 +svg.source.r70626.tar.xz 14-Mar-2024 00:48 43044 +svg.source.tar.xz 14-Mar-2024 00:48 43044 +svg.tar.xz 14-Mar-2024 00:48 14160 +svgcolor.doc.r15878.tar.xz 28-Feb-2019 03:06 1380 +svgcolor.doc.tar.xz 28-Feb-2019 03:06 1380 +svgcolor.r15878.tar.xz 28-Feb-2019 03:06 3452 +svgcolor.tar.xz 28-Feb-2019 03:06 3452 +svn-multi.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:06 344 +svn-multi.aarch64-linux.tar.xz 28-Feb-2019 03:06 344 +svn-multi.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:06 344 +svn-multi.amd64-freebsd.tar.xz 28-Feb-2019 03:06 344 +svn-multi.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:06 340 +svn-multi.amd64-netbsd.tar.xz 28-Feb-2019 03:06 340 +svn-multi.armhf-linux.r30015.tar.xz 28-Feb-2019 03:06 340 +svn-multi.armhf-linux.tar.xz 28-Feb-2019 03:06 340 +svn-multi.doc.r64967.tar.xz 08-Nov-2022 00:55 401628 +svn-multi.doc.tar.xz 08-Nov-2022 00:55 401628 +svn-multi.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:06 344 +svn-multi.i386-freebsd.tar.xz 28-Feb-2019 03:06 344 +svn-multi.i386-linux.r13663.tar.xz 28-Feb-2019 03:06 344 +svn-multi.i386-linux.tar.xz 28-Feb-2019 03:06 344 +svn-multi.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:06 344 +svn-multi.i386-netbsd.tar.xz 28-Feb-2019 03:06 344 +svn-multi.i386-solaris.r13898.tar.xz 28-Feb-2019 03:06 344 +svn-multi.i386-solaris.tar.xz 28-Feb-2019 03:06 344 +svn-multi.r64967.tar.xz 08-Nov-2022 00:55 12452 +svn-multi.source.r64967.tar.xz 08-Nov-2022 00:55 39000 +svn-multi.source.tar.xz 08-Nov-2022 00:55 39000 +svn-multi.tar.xz 08-Nov-2022 00:55 12452 +svn-multi.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 344 +svn-multi.universal-darwin.tar.xz 25-Feb-2021 18:17 344 +svn-multi.windows.r65891.tar.xz 20-Feb-2023 22:15 2312 +svn-multi.windows.tar.xz 20-Feb-2023 22:15 2312 +svn-multi.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:06 344 +svn-multi.x86_64-cygwin.tar.xz 28-Feb-2019 03:06 344 +svn-multi.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:06 352 +svn-multi.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:06 352 +svn-multi.x86_64-linux.r13777.tar.xz 28-Feb-2019 03:06 344 +svn-multi.x86_64-linux.tar.xz 28-Feb-2019 03:06 344 +svn-multi.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:06 348 +svn-multi.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:06 348 +svn-multi.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:06 344 +svn-multi.x86_64-solaris.tar.xz 28-Feb-2019 03:06 344 +svn-prov.doc.r64967.tar.xz 08-Nov-2022 00:55 242148 +svn-prov.doc.tar.xz 08-Nov-2022 00:55 242148 +svn-prov.r64967.tar.xz 08-Nov-2022 00:55 2412 +svn-prov.source.r64967.tar.xz 08-Nov-2022 00:55 9996 +svn-prov.source.tar.xz 08-Nov-2022 00:55 9996 +svn-prov.tar.xz 08-Nov-2022 00:55 2412 +svn.doc.r15878.tar.xz 28-Feb-2019 03:06 441216 +svn.doc.tar.xz 28-Feb-2019 03:06 441216 +svn.r15878.tar.xz 28-Feb-2019 03:06 1616 +svn.source.r15878.tar.xz 28-Feb-2019 03:06 7644 +svn.source.tar.xz 28-Feb-2019 03:06 7644 +svn.tar.xz 28-Feb-2019 03:06 1616 +svninfo.doc.r62157.tar.xz 24-Feb-2022 00:54 258436 +svninfo.doc.tar.xz 24-Feb-2022 00:54 258436 +svninfo.r62157.tar.xz 24-Feb-2022 00:54 3916 +svninfo.source.r62157.tar.xz 24-Feb-2022 00:54 12712 +svninfo.source.tar.xz 24-Feb-2022 00:54 12712 +svninfo.tar.xz 24-Feb-2022 00:54 3916 +svrsymbols.doc.r50019.tar.xz 28-Feb-2019 03:06 58768 +svrsymbols.doc.tar.xz 28-Feb-2019 03:06 58768 +svrsymbols.r50019.tar.xz 28-Feb-2019 03:06 67560 +svrsymbols.source.r50019.tar.xz 28-Feb-2019 03:06 3936 +svrsymbols.source.tar.xz 28-Feb-2019 03:06 3936 +svrsymbols.tar.xz 28-Feb-2019 03:06 67560 +swebib.doc.r15878.tar.xz 28-Feb-2019 03:06 492 +swebib.doc.tar.xz 28-Feb-2019 03:06 492 +swebib.r15878.tar.xz 28-Feb-2019 03:06 6892 +swebib.tar.xz 28-Feb-2019 03:06 6892 +swfigure.doc.r63255.tar.xz 07-May-2022 23:54 2926592 +swfigure.doc.tar.xz 07-May-2022 23:54 2926592 +swfigure.r63255.tar.xz 07-May-2022 23:54 4148 +swfigure.source.r63255.tar.xz 07-May-2022 23:54 21240 +swfigure.source.tar.xz 07-May-2022 23:54 21240 +swfigure.tar.xz 07-May-2022 23:54 4148 +swimgraf.doc.r25446.tar.xz 28-Feb-2019 03:06 51084 +swimgraf.doc.tar.xz 28-Feb-2019 03:06 51084 +swimgraf.r25446.tar.xz 28-Feb-2019 03:06 11364 +swimgraf.tar.xz 28-Feb-2019 03:06 11364 +switch.doc.r75263.tar.xz 19-May-2025 23:48 204304 +switch.doc.tar.xz 19-May-2025 23:48 204304 +switch.r75263.tar.xz 19-May-2025 23:48 1636 +switch.tar.xz 19-May-2025 23:48 1636 +swrule.r54267.tar.xz 13-Mar-2020 01:07 1512 +swrule.tar.xz 13-Mar-2020 01:07 1512 +swungdash.doc.r64204.tar.xz 26-Aug-2022 23:53 65076 +swungdash.doc.tar.xz 26-Aug-2022 23:53 65076 +swungdash.r64204.tar.xz 26-Aug-2022 23:53 1240 +swungdash.tar.xz 26-Aug-2022 23:53 1240 +syllogism.doc.r15878.tar.xz 28-Feb-2019 03:06 310384 +syllogism.doc.tar.xz 28-Feb-2019 03:06 310384 +syllogism.r15878.tar.xz 28-Feb-2019 03:06 2728 +syllogism.tar.xz 28-Feb-2019 03:06 2728 +symbats3.doc.r63833.tar.xz 07-Jul-2022 23:55 188116 +symbats3.doc.tar.xz 07-Jul-2022 23:55 188116 +symbats3.r63833.tar.xz 07-Jul-2022 23:55 6152 +symbats3.tar.xz 07-Jul-2022 23:55 6152 +symbol.r61719.tar.xz 24-Jan-2022 00:55 36104 +symbol.tar.xz 24-Jan-2022 00:55 36104 +sympycalc.doc.r73069.tar.xz 08-Dec-2024 01:14 145792 +sympycalc.doc.tar.xz 08-Dec-2024 01:14 145792 +sympycalc.r73069.tar.xz 08-Dec-2024 01:14 2232 +sympycalc.tar.xz 08-Dec-2024 01:14 2232 +sympytexpackage.doc.r57090.tar.xz 08-Dec-2020 00:58 1844 +sympytexpackage.doc.tar.xz 08-Dec-2020 00:58 1844 +sympytexpackage.r57090.tar.xz 08-Dec-2020 00:58 3636 +sympytexpackage.source.r57090.tar.xz 08-Dec-2020 00:58 17084 +sympytexpackage.source.tar.xz 08-Dec-2020 00:58 17084 +sympytexpackage.tar.xz 08-Dec-2020 00:58 3636 +synctex.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 72684 +synctex.aarch64-linux.tar.xz 13-Feb-2025 00:50 72684 +synctex.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 77148 +synctex.amd64-freebsd.tar.xz 09-Feb-2025 00:55 77148 +synctex.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 76612 +synctex.amd64-netbsd.tar.xz 09-Feb-2025 18:16 76612 +synctex.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 61640 +synctex.armhf-linux.tar.xz 09-Feb-2025 00:55 61640 +synctex.doc.r66203.tar.xz 26-Feb-2023 23:51 41936 +synctex.doc.tar.xz 26-Feb-2023 23:51 41936 +synctex.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 76120 +synctex.i386-freebsd.tar.xz 09-Feb-2025 00:55 76120 +synctex.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 78188 +synctex.i386-linux.tar.xz 09-Feb-2025 00:55 78188 +synctex.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 64904 +synctex.i386-netbsd.tar.xz 09-Feb-2025 18:16 64904 +synctex.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 70552 +synctex.i386-solaris.tar.xz 09-Feb-2025 00:55 70552 +synctex.r66203.tar.xz 26-Feb-2023 23:51 464 +synctex.tar.xz 26-Feb-2023 23:51 464 +synctex.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 136120 +synctex.universal-darwin.tar.xz 09-Feb-2025 18:16 136120 +synctex.windows.r73796.tar.xz 09-Feb-2025 18:16 179572 +synctex.windows.tar.xz 09-Feb-2025 18:16 179572 +synctex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 73896 +synctex.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 73896 +synctex.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 69916 +synctex.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 69916 +synctex.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 75980 +synctex.x86_64-linux.tar.xz 19-Feb-2025 00:47 75980 +synctex.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 78080 +synctex.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 78080 +synctex.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 80684 +synctex.x86_64-solaris.tar.xz 09-Feb-2025 00:55 80684 +synproof.doc.r15878.tar.xz 28-Feb-2019 03:06 61492 +synproof.doc.tar.xz 28-Feb-2019 03:06 61492 +synproof.r15878.tar.xz 28-Feb-2019 03:06 2200 +synproof.tar.xz 28-Feb-2019 03:06 2200 +syntax.doc.r15878.tar.xz 28-Feb-2019 03:06 104576 +syntax.doc.tar.xz 28-Feb-2019 03:06 104576 +syntax.r15878.tar.xz 28-Feb-2019 03:06 2632 +syntax.tar.xz 28-Feb-2019 03:06 2632 +syntaxdi.doc.r56685.tar.xz 17-Oct-2020 23:56 187844 +syntaxdi.doc.tar.xz 17-Oct-2020 23:56 187844 +syntaxdi.r56685.tar.xz 17-Oct-2020 23:56 1340 +syntaxdi.tar.xz 17-Oct-2020 23:56 1340 +synthslant.doc.r71883.tar.xz 23-Jul-2024 23:48 1146520 +synthslant.doc.tar.xz 23-Jul-2024 23:48 1146520 +synthslant.r71883.tar.xz 23-Jul-2024 23:48 2824 +synthslant.source.r71883.tar.xz 23-Jul-2024 23:48 159780 +synthslant.source.tar.xz 23-Jul-2024 23:48 159780 +synthslant.tar.xz 23-Jul-2024 23:48 2824 +syntrace.doc.r15878.tar.xz 28-Feb-2019 03:06 48700 +syntrace.doc.tar.xz 28-Feb-2019 03:06 48700 +syntrace.r15878.tar.xz 28-Feb-2019 03:06 1496 +syntrace.source.r15878.tar.xz 28-Feb-2019 03:06 2684 +syntrace.source.tar.xz 28-Feb-2019 03:06 2684 +syntrace.tar.xz 28-Feb-2019 03:06 1496 +synttree.doc.r16252.tar.xz 28-Feb-2019 03:06 133628 +synttree.doc.tar.xz 28-Feb-2019 03:06 133628 +synttree.r16252.tar.xz 28-Feb-2019 03:06 3568 +synttree.source.r16252.tar.xz 28-Feb-2019 03:06 10124 +synttree.source.tar.xz 28-Feb-2019 03:06 10124 +synttree.tar.xz 28-Feb-2019 03:06 3568 +systeme.doc.r76421.tar.xz 27-Sep-2025 23:56 173920 +systeme.doc.tar.xz 27-Sep-2025 23:56 173920 +systeme.r76421.tar.xz 27-Sep-2025 23:56 11496 +systeme.tar.xz 27-Sep-2025 23:56 11496 +sysuthesis.doc.r76075.tar.xz 17-Aug-2025 23:47 677012 +sysuthesis.doc.tar.xz 17-Aug-2025 23:47 677012 +sysuthesis.r76075.tar.xz 17-Aug-2025 23:47 51448 +sysuthesis.source.r76075.tar.xz 17-Aug-2025 23:47 63480 +sysuthesis.source.tar.xz 17-Aug-2025 23:47 63480 +sysuthesis.tar.xz 17-Aug-2025 23:47 51448 +t-angles.doc.r71991.tar.xz 07-Aug-2024 23:47 117652 +t-angles.doc.tar.xz 07-Aug-2024 23:47 117652 +t-angles.r71991.tar.xz 07-Aug-2024 23:47 5652 +t-angles.tar.xz 07-Aug-2024 23:47 5652 +t1utils.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 40008 +t1utils.aarch64-linux.tar.xz 13-Feb-2025 00:50 40008 +t1utils.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 41316 +t1utils.amd64-freebsd.tar.xz 09-Feb-2025 00:55 41316 +t1utils.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 40128 +t1utils.amd64-netbsd.tar.xz 09-Feb-2025 18:16 40128 +t1utils.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 33964 +t1utils.armhf-linux.tar.xz 09-Feb-2025 00:55 33964 +t1utils.doc.r57972.tar.xz 28-Feb-2021 16:31 94444 +t1utils.doc.tar.xz 28-Feb-2021 16:31 94444 +t1utils.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 41332 +t1utils.i386-freebsd.tar.xz 09-Feb-2025 00:55 41332 +t1utils.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 42900 +t1utils.i386-linux.tar.xz 09-Feb-2025 00:55 42900 +t1utils.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 36728 +t1utils.i386-netbsd.tar.xz 09-Feb-2025 18:16 36728 +t1utils.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 44372 +t1utils.i386-solaris.tar.xz 09-Feb-2025 00:55 44372 +t1utils.r57972.tar.xz 28-Feb-2021 16:31 592 +t1utils.tar.xz 28-Feb-2021 16:31 592 +t1utils.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 105860 +t1utils.universal-darwin.tar.xz 09-Feb-2025 18:16 105860 +t1utils.windows.r73796.tar.xz 09-Feb-2025 18:16 41072 +t1utils.windows.tar.xz 09-Feb-2025 18:16 41072 +t1utils.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 37408 +t1utils.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 37408 +t1utils.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 39964 +t1utils.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 39964 +t1utils.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 41020 +t1utils.x86_64-linux.tar.xz 19-Feb-2025 00:47 41020 +t1utils.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 42676 +t1utils.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 42676 +t1utils.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 48752 +t1utils.x86_64-solaris.tar.xz 09-Feb-2025 00:55 48752 +t2.doc.r47870.tar.xz 28-Feb-2019 03:06 28752 +t2.doc.tar.xz 28-Feb-2019 03:06 28752 +t2.r47870.tar.xz 28-Feb-2019 03:06 27072 +t2.tar.xz 28-Feb-2019 03:06 27072 +tabbing.doc.r59715.tar.xz 26-Jun-2021 23:53 216508 +tabbing.doc.tar.xz 26-Jun-2021 23:53 216508 +tabbing.r59715.tar.xz 26-Jun-2021 23:53 1336 +tabbing.source.r59715.tar.xz 26-Jun-2021 23:53 3736 +tabbing.source.tar.xz 26-Jun-2021 23:53 3736 +tabbing.tar.xz 26-Jun-2021 23:53 1336 +tabfigures.doc.r25202.tar.xz 28-Feb-2019 03:06 246772 +tabfigures.doc.tar.xz 28-Feb-2019 03:06 246772 +tabfigures.r25202.tar.xz 28-Feb-2019 03:06 2172 +tabfigures.source.r25202.tar.xz 28-Feb-2019 03:06 5452 +tabfigures.source.tar.xz 28-Feb-2019 03:06 5452 +tabfigures.tar.xz 28-Feb-2019 03:06 2172 +table-fct.doc.r41849.tar.xz 28-Feb-2019 03:06 880 +table-fct.doc.tar.xz 28-Feb-2019 03:06 880 +table-fct.r41849.tar.xz 28-Feb-2019 03:06 2308 +table-fct.tar.xz 28-Feb-2019 03:06 2308 +tableaux.doc.r42413.tar.xz 28-Feb-2019 03:06 57272 +tableaux.doc.tar.xz 28-Feb-2019 03:06 57272 +tableaux.r42413.tar.xz 28-Feb-2019 03:06 2920 +tableaux.tar.xz 28-Feb-2019 03:06 2920 +tablefootnote.doc.r32804.tar.xz 28-Feb-2019 03:06 505020 +tablefootnote.doc.tar.xz 28-Feb-2019 03:06 505020 +tablefootnote.r32804.tar.xz 28-Feb-2019 03:06 4056 +tablefootnote.source.r32804.tar.xz 28-Feb-2019 03:06 16288 +tablefootnote.source.tar.xz 28-Feb-2019 03:06 16288 +tablefootnote.tar.xz 28-Feb-2019 03:06 4056 +tableof.doc.r72313.tar.xz 17-Sep-2024 23:47 64828 +tableof.doc.tar.xz 17-Sep-2024 23:47 64828 +tableof.r72313.tar.xz 17-Sep-2024 23:47 2480 +tableof.source.r72313.tar.xz 17-Sep-2024 23:47 12712 +tableof.source.tar.xz 17-Sep-2024 23:47 12712 +tableof.tar.xz 17-Sep-2024 23:47 2480 +tablericons.doc.r75749.tar.xz 11-Jul-2025 23:49 2069584 +tablericons.doc.tar.xz 11-Jul-2025 23:49 2069584 +tablericons.r75749.tar.xz 11-Jul-2025 23:49 1777528 +tablericons.tar.xz 11-Jul-2025 23:49 1777528 +tablists.doc.r15878.tar.xz 28-Feb-2019 03:06 211336 +tablists.doc.tar.xz 28-Feb-2019 03:06 211336 +tablists.r15878.tar.xz 28-Feb-2019 03:06 2756 +tablists.source.r15878.tar.xz 28-Feb-2019 03:06 8040 +tablists.source.tar.xz 28-Feb-2019 03:06 8040 +tablists.tar.xz 28-Feb-2019 03:06 2756 +tablor.doc.r31855.tar.xz 28-Feb-2019 03:06 449356 +tablor.doc.tar.xz 28-Feb-2019 03:06 449356 +tablor.r31855.tar.xz 28-Feb-2019 03:06 12620 +tablor.tar.xz 28-Feb-2019 03:06 12620 +tabls.doc.r17255.tar.xz 28-Feb-2019 03:06 226408 +tabls.doc.tar.xz 28-Feb-2019 03:06 226408 +tabls.r17255.tar.xz 28-Feb-2019 03:06 4348 +tabls.tar.xz 28-Feb-2019 03:06 4348 +tablvar.doc.r72007.tar.xz 10-Aug-2024 23:51 279584 +tablvar.doc.tar.xz 10-Aug-2024 23:51 279584 +tablvar.r72007.tar.xz 10-Aug-2024 23:51 5136 +tablvar.source.r72007.tar.xz 10-Aug-2024 23:51 28944 +tablvar.source.tar.xz 10-Aug-2024 23:51 28944 +tablvar.tar.xz 10-Aug-2024 23:51 5136 +tabriz-thesis.doc.r51729.tar.xz 25-Jul-2019 22:58 217336 +tabriz-thesis.doc.tar.xz 25-Jul-2019 22:58 217336 +tabriz-thesis.r51729.tar.xz 25-Jul-2019 22:58 3504 +tabriz-thesis.tar.xz 25-Jul-2019 22:58 3504 +tabstackengine.doc.r46848.tar.xz 28-Feb-2019 03:06 582016 +tabstackengine.doc.tar.xz 28-Feb-2019 03:06 582016 +tabstackengine.r46848.tar.xz 28-Feb-2019 03:06 5168 +tabstackengine.tar.xz 28-Feb-2019 03:06 5168 +tabto-generic.r15878.tar.xz 28-Feb-2019 03:06 1256 +tabto-generic.tar.xz 28-Feb-2019 03:06 1256 +tabto-ltx.doc.r54080.tar.xz 04-Mar-2020 22:53 53812 +tabto-ltx.doc.tar.xz 04-Mar-2020 22:53 53812 +tabto-ltx.r54080.tar.xz 04-Mar-2020 22:53 3476 +tabto-ltx.tar.xz 04-Mar-2020 22:53 3476 +tabu.doc.r61719.tar.xz 24-Jan-2022 00:55 1458868 +tabu.doc.tar.xz 24-Jan-2022 00:55 1458868 +tabu.r61719.tar.xz 24-Jan-2022 00:55 23900 +tabu.source.r61719.tar.xz 24-Jan-2022 00:55 76080 +tabu.source.tar.xz 24-Jan-2022 00:55 76080 +tabu.tar.xz 24-Jan-2022 00:55 23900 +tabular2.doc.r76241.tar.xz 06-Sep-2025 23:58 820828 +tabular2.doc.tar.xz 06-Sep-2025 23:58 820828 +tabular2.r76241.tar.xz 06-Sep-2025 23:58 9204 +tabular2.source.r76241.tar.xz 06-Sep-2025 23:58 22804 +tabular2.source.tar.xz 06-Sep-2025 23:58 22804 +tabular2.tar.xz 06-Sep-2025 23:58 9204 +tabularborder.doc.r17885.tar.xz 28-Feb-2019 03:06 99284 +tabularborder.doc.tar.xz 28-Feb-2019 03:06 99284 +tabularborder.r17885.tar.xz 28-Feb-2019 03:06 1496 +tabularborder.source.r17885.tar.xz 28-Feb-2019 03:06 4216 +tabularborder.source.tar.xz 28-Feb-2019 03:06 4216 +tabularborder.tar.xz 28-Feb-2019 03:06 1496 +tabularcalc.doc.r15878.tar.xz 28-Feb-2019 03:06 789972 +tabularcalc.doc.tar.xz 28-Feb-2019 03:06 789972 +tabularcalc.r15878.tar.xz 28-Feb-2019 03:06 4964 +tabularcalc.tar.xz 28-Feb-2019 03:06 4964 +tabularew.doc.r15878.tar.xz 28-Feb-2019 03:06 142128 +tabularew.doc.tar.xz 28-Feb-2019 03:06 142128 +tabularew.r15878.tar.xz 28-Feb-2019 03:06 2128 +tabularew.source.r15878.tar.xz 28-Feb-2019 03:06 7140 +tabularew.source.tar.xz 28-Feb-2019 03:06 7140 +tabularew.tar.xz 28-Feb-2019 03:06 2128 +tabularray-abnt.doc.r76009.tar.xz 09-Aug-2025 23:57 93420 +tabularray-abnt.doc.tar.xz 09-Aug-2025 23:57 93420 +tabularray-abnt.r76009.tar.xz 09-Aug-2025 23:57 5320 +tabularray-abnt.tar.xz 09-Aug-2025 23:57 5320 +tabularray.doc.r76184.tar.xz 29-Aug-2025 23:50 774640 +tabularray.doc.tar.xz 29-Aug-2025 23:50 774640 +tabularray.r76184.tar.xz 29-Aug-2025 23:50 49280 +tabularray.tar.xz 29-Aug-2025 23:50 49280 +tabulary.doc.r71463.tar.xz 10-Jun-2024 23:49 314932 +tabulary.doc.tar.xz 10-Jun-2024 23:49 314932 +tabulary.r71463.tar.xz 10-Jun-2024 23:49 4656 +tabulary.source.r71463.tar.xz 10-Jun-2024 23:49 8916 +tabulary.source.tar.xz 10-Jun-2024 23:49 8916 +tabulary.tar.xz 10-Jun-2024 23:49 4656 +tabvar.doc.r63921.tar.xz 17-Jul-2022 23:53 619144 +tabvar.doc.tar.xz 17-Jul-2022 23:53 619144 +tabvar.r63921.tar.xz 17-Jul-2022 23:53 8484 +tabvar.source.r63921.tar.xz 17-Jul-2022 23:53 11084 +tabvar.source.tar.xz 17-Jul-2022 23:53 11084 +tabvar.tar.xz 17-Jul-2022 23:53 8484 +tagging.doc.r52064.tar.xz 10-Sep-2019 23:55 114580 +tagging.doc.tar.xz 10-Sep-2019 23:55 114580 +tagging.r52064.tar.xz 10-Sep-2019 23:55 1292 +tagging.tar.xz 10-Sep-2019 23:55 1292 +tagpair.doc.r42138.tar.xz 28-Feb-2019 03:06 68912 +tagpair.doc.tar.xz 28-Feb-2019 03:06 68912 +tagpair.r42138.tar.xz 28-Feb-2019 03:06 1244 +tagpair.tar.xz 28-Feb-2019 03:06 1244 +tagpdf.doc.r75798.tar.xz 16-Jul-2025 23:46 1943980 +tagpdf.doc.tar.xz 16-Jul-2025 23:46 1943980 +tagpdf.r75798.tar.xz 16-Jul-2025 23:46 42628 +tagpdf.source.r75798.tar.xz 16-Jul-2025 23:46 78940 +tagpdf.source.tar.xz 16-Jul-2025 23:46 78940 +tagpdf.tar.xz 16-Jul-2025 23:46 42628 +talk.doc.r76392.tar.xz 24-Sep-2025 23:49 358232 +talk.doc.tar.xz 24-Sep-2025 23:49 358232 +talk.r76392.tar.xz 24-Sep-2025 23:49 6148 +talk.source.r76392.tar.xz 24-Sep-2025 23:49 640 +talk.source.tar.xz 24-Sep-2025 23:49 640 +talk.tar.xz 24-Sep-2025 23:49 6148 +talos.doc.r61820.tar.xz 02-Feb-2022 00:57 64584 +talos.doc.tar.xz 02-Feb-2022 00:57 64584 +talos.r61820.tar.xz 02-Feb-2022 00:57 97120 +talos.tar.xz 02-Feb-2022 00:57 97120 +tamefloats.doc.r27345.tar.xz 28-Feb-2019 03:06 2236 +tamefloats.doc.tar.xz 28-Feb-2019 03:06 2236 +tamefloats.r27345.tar.xz 28-Feb-2019 03:06 4372 +tamefloats.tar.xz 28-Feb-2019 03:06 4372 +tamethebeast.doc.r15878.tar.xz 28-Feb-2019 03:06 811124 +tamethebeast.doc.tar.xz 28-Feb-2019 03:06 811124 +tamethebeast.r15878.tar.xz 28-Feb-2019 03:06 436 +tamethebeast.tar.xz 28-Feb-2019 03:06 436 +tango.doc.r71825.tar.xz 17-Jul-2024 23:48 433228 +tango.doc.tar.xz 17-Jul-2024 23:48 433228 +tango.r71825.tar.xz 17-Jul-2024 23:48 10060 +tango.tar.xz 17-Jul-2024 23:48 10060 +tangocolors.doc.r66733.tar.xz 02-Apr-2023 00:19 119648 +tangocolors.doc.tar.xz 02-Apr-2023 00:19 119648 +tangocolors.r66733.tar.xz 02-Apr-2023 00:19 1688 +tangocolors.source.r66733.tar.xz 02-Apr-2023 00:19 3020 +tangocolors.source.tar.xz 02-Apr-2023 00:19 3020 +tangocolors.tar.xz 02-Apr-2023 00:19 1688 +tangramtikz.doc.r75123.tar.xz 05-May-2025 23:47 874424 +tangramtikz.doc.tar.xz 05-May-2025 23:47 874424 +tangramtikz.r75123.tar.xz 05-May-2025 23:47 7820 +tangramtikz.tar.xz 05-May-2025 23:47 7820 +tap.doc.r31731.tar.xz 28-Feb-2019 03:06 27740 +tap.doc.tar.xz 28-Feb-2019 03:06 27740 +tap.r31731.tar.xz 28-Feb-2019 03:06 10672 +tap.tar.xz 28-Feb-2019 03:06 10672 +tapir.doc.r20484.tar.xz 28-Feb-2019 03:06 53796 +tapir.doc.tar.xz 28-Feb-2019 03:06 53796 +tapir.r20484.tar.xz 28-Feb-2019 03:06 51876 +tapir.tar.xz 28-Feb-2019 03:06 51876 +tasks.doc.r61541.tar.xz 09-Jan-2022 00:53 495524 +tasks.doc.tar.xz 09-Jan-2022 00:53 495524 +tasks.r61541.tar.xz 09-Jan-2022 00:53 7500 +tasks.tar.xz 09-Jan-2022 00:53 7500 +tblr-extras.doc.r71623.tar.xz 25-Jun-2024 23:47 39364 +tblr-extras.doc.tar.xz 25-Jun-2024 23:47 39364 +tblr-extras.r71623.tar.xz 25-Jun-2024 23:47 2832 +tblr-extras.tar.xz 25-Jun-2024 23:47 2832 +tcldoc.doc.r22018.tar.xz 28-Feb-2019 03:06 462992 +tcldoc.doc.tar.xz 28-Feb-2019 03:06 462992 +tcldoc.r22018.tar.xz 28-Feb-2019 03:06 7004 +tcldoc.source.r22018.tar.xz 28-Feb-2019 03:06 41140 +tcldoc.source.tar.xz 28-Feb-2019 03:06 41140 +tcldoc.tar.xz 28-Feb-2019 03:06 7004 +tcolorbox.doc.r76263.tar.xz 09-Sep-2025 23:50 4751652 +tcolorbox.doc.tar.xz 09-Sep-2025 23:50 4751652 +tcolorbox.r76263.tar.xz 09-Sep-2025 23:50 234860 +tcolorbox.tar.xz 09-Sep-2025 23:50 234860 +tdclock.doc.r33043.tar.xz 28-Feb-2019 03:06 244100 +tdclock.doc.tar.xz 28-Feb-2019 03:06 244100 +tdclock.r33043.tar.xz 28-Feb-2019 03:06 3944 +tdclock.tar.xz 28-Feb-2019 03:06 3944 +tds.doc.r64477.tar.xz 22-Sep-2022 23:54 260804 +tds.doc.tar.xz 22-Sep-2022 23:54 260804 +tds.r64477.tar.xz 22-Sep-2022 23:54 468 +tds.tar.xz 22-Sep-2022 23:54 468 +tdsfrmath.doc.r15878.tar.xz 28-Feb-2019 03:06 717616 +tdsfrmath.doc.tar.xz 28-Feb-2019 03:06 717616 +tdsfrmath.r15878.tar.xz 28-Feb-2019 03:06 5480 +tdsfrmath.source.r15878.tar.xz 28-Feb-2019 03:06 33688 +tdsfrmath.source.tar.xz 28-Feb-2019 03:06 33688 +tdsfrmath.tar.xz 28-Feb-2019 03:06 5480 +technics.doc.r29349.tar.xz 28-Feb-2019 03:06 80880 +technics.doc.tar.xz 28-Feb-2019 03:06 80880 +technics.r29349.tar.xz 28-Feb-2019 03:06 1792 +technics.tar.xz 28-Feb-2019 03:06 1792 +technion-thesis-template.doc.r49889.tar.xz 28-Feb-2019 03:06 120248 +technion-thesis-template.doc.tar.xz 28-Feb-2019 03:06 120248 +technion-thesis-template.r49889.tar.xz 28-Feb-2019 03:06 6760 +technion-thesis-template.tar.xz 28-Feb-2019 03:06 6760 +ted.doc.r15878.tar.xz 28-Feb-2019 03:06 165928 +ted.doc.tar.xz 28-Feb-2019 03:06 165928 +ted.r15878.tar.xz 28-Feb-2019 03:06 3148 +ted.source.r15878.tar.xz 28-Feb-2019 03:06 15216 +ted.source.tar.xz 28-Feb-2019 03:06 15216 +ted.tar.xz 28-Feb-2019 03:06 3148 +telprint.doc.r71914.tar.xz 27-Jul-2024 23:55 320184 +telprint.doc.tar.xz 27-Jul-2024 23:55 320184 +telprint.r71914.tar.xz 27-Jul-2024 23:55 2412 +telprint.source.r71914.tar.xz 27-Jul-2024 23:55 7056 +telprint.source.tar.xz 27-Jul-2024 23:55 7056 +telprint.tar.xz 27-Jul-2024 23:55 2412 +templates-fenn.doc.r15878.tar.xz 28-Feb-2019 03:06 5992 +templates-fenn.doc.tar.xz 28-Feb-2019 03:06 5992 +templates-fenn.r15878.tar.xz 28-Feb-2019 03:06 704 +templates-fenn.tar.xz 28-Feb-2019 03:06 704 +templates-sommer.doc.r15878.tar.xz 28-Feb-2019 03:06 14424 +templates-sommer.doc.tar.xz 28-Feb-2019 03:06 14424 +templates-sommer.r15878.tar.xz 28-Feb-2019 03:06 508 +templates-sommer.tar.xz 28-Feb-2019 03:06 508 +templatetools.doc.r67201.tar.xz 23-May-2023 23:44 440896 +templatetools.doc.tar.xz 23-May-2023 23:44 440896 +templatetools.r67201.tar.xz 23-May-2023 23:44 2104 +templatetools.source.r67201.tar.xz 23-May-2023 23:44 6796 +templatetools.source.tar.xz 23-May-2023 23:44 6796 +templatetools.tar.xz 23-May-2023 23:44 2104 +tempora.doc.r39596.tar.xz 28-Feb-2019 03:06 250588 +tempora.doc.tar.xz 28-Feb-2019 03:06 250588 +tempora.r39596.tar.xz 28-Feb-2019 03:06 1260752 +tempora.tar.xz 28-Feb-2019 03:06 1260752 +temporal-logic.doc.r72575.tar.xz 17-Oct-2024 23:48 521448 +temporal-logic.doc.tar.xz 17-Oct-2024 23:48 521448 +temporal-logic.r72575.tar.xz 17-Oct-2024 23:48 1908 +temporal-logic.source.r72575.tar.xz 17-Oct-2024 23:48 5536 +temporal-logic.source.tar.xz 17-Oct-2024 23:48 5536 +temporal-logic.tar.xz 17-Oct-2024 23:48 1908 +tengwarscript.doc.r34594.tar.xz 28-Feb-2019 03:06 472140 +tengwarscript.doc.tar.xz 28-Feb-2019 03:06 472140 +tengwarscript.r34594.tar.xz 28-Feb-2019 03:06 32276 +tengwarscript.source.r34594.tar.xz 28-Feb-2019 03:06 24200 +tengwarscript.source.tar.xz 28-Feb-2019 03:06 24200 +tengwarscript.tar.xz 28-Feb-2019 03:06 32276 +tensind.doc.r51481.tar.xz 26-Jun-2019 23:55 219304 +tensind.doc.tar.xz 26-Jun-2019 23:55 219304 +tensind.r51481.tar.xz 26-Jun-2019 23:55 2708 +tensind.tar.xz 26-Jun-2019 23:55 2708 +tensor.doc.r67667.tar.xz 18-Jul-2023 23:45 320720 +tensor.doc.tar.xz 18-Jul-2023 23:45 320720 +tensor.r67667.tar.xz 18-Jul-2023 23:45 2272 +tensor.source.r67667.tar.xz 18-Jul-2023 23:45 8976 +tensor.source.tar.xz 18-Jul-2023 23:45 8976 +tensor.tar.xz 18-Jul-2023 23:45 2272 +tensormatrix.doc.r76005.tar.xz 08-Aug-2025 23:53 100876 +tensormatrix.doc.tar.xz 08-Aug-2025 23:53 100876 +tensormatrix.r76005.tar.xz 08-Aug-2025 23:53 1188 +tensormatrix.tar.xz 08-Aug-2025 23:53 1188 +termcal-de.doc.r47111.tar.xz 28-Feb-2019 03:06 107488 +termcal-de.doc.tar.xz 28-Feb-2019 03:06 107488 +termcal-de.r47111.tar.xz 28-Feb-2019 03:06 2164 +termcal-de.source.r47111.tar.xz 28-Feb-2019 03:06 9640 +termcal-de.source.tar.xz 28-Feb-2019 03:06 9640 +termcal-de.tar.xz 28-Feb-2019 03:06 2164 +termcal.doc.r22514.tar.xz 28-Feb-2019 03:06 75500 +termcal.doc.tar.xz 28-Feb-2019 03:06 75500 +termcal.r22514.tar.xz 28-Feb-2019 03:06 2616 +termcal.source.r22514.tar.xz 28-Feb-2019 03:06 7624 +termcal.source.tar.xz 28-Feb-2019 03:06 7624 +termcal.tar.xz 28-Feb-2019 03:06 2616 +termes-otf.doc.r64733.tar.xz 17-Oct-2022 23:55 464160 +termes-otf.doc.tar.xz 17-Oct-2022 23:55 464160 +termes-otf.r64733.tar.xz 17-Oct-2022 23:55 2320 +termes-otf.tar.xz 17-Oct-2022 23:55 2320 +termlist.doc.r18923.tar.xz 28-Feb-2019 03:06 160640 +termlist.doc.tar.xz 28-Feb-2019 03:06 160640 +termlist.r18923.tar.xz 28-Feb-2019 03:06 1232 +termlist.source.r18923.tar.xz 28-Feb-2019 03:06 4356 +termlist.source.tar.xz 28-Feb-2019 03:06 4356 +termlist.tar.xz 28-Feb-2019 03:06 1232 +termmenu.doc.r37700.tar.xz 28-Feb-2019 03:06 473824 +termmenu.doc.tar.xz 28-Feb-2019 03:06 473824 +termmenu.r37700.tar.xz 28-Feb-2019 03:06 2016 +termmenu.source.r37700.tar.xz 28-Feb-2019 03:06 6808 +termmenu.source.tar.xz 28-Feb-2019 03:06 6808 +termmenu.tar.xz 28-Feb-2019 03:06 2016 +termsim.doc.r61414.tar.xz 27-Dec-2021 00:53 390080 +termsim.doc.tar.xz 27-Dec-2021 00:53 390080 +termsim.r61414.tar.xz 27-Dec-2021 00:53 3860 +termsim.source.r61414.tar.xz 27-Dec-2021 00:53 9472 +termsim.source.tar.xz 27-Dec-2021 00:53 9472 +termsim.tar.xz 27-Dec-2021 00:53 3860 +testhyphens.doc.r73486.tar.xz 18-Jan-2025 00:46 76476 +testhyphens.doc.tar.xz 18-Jan-2025 00:46 76476 +testhyphens.r73486.tar.xz 18-Jan-2025 00:46 1448 +testhyphens.source.r73486.tar.xz 18-Jan-2025 00:46 8660 +testhyphens.source.tar.xz 18-Jan-2025 00:46 8660 +testhyphens.tar.xz 18-Jan-2025 00:46 1448 +testidx.doc.r60966.tar.xz 06-Nov-2021 00:53 3323724 +testidx.doc.tar.xz 06-Nov-2021 00:53 3323724 +testidx.r60966.tar.xz 06-Nov-2021 00:53 44064 +testidx.source.r60966.tar.xz 06-Nov-2021 00:53 51652 +testidx.source.tar.xz 06-Nov-2021 00:53 51652 +testidx.tar.xz 06-Nov-2021 00:53 44064 +tetragonos.doc.r49732.tar.xz 28-Feb-2019 03:06 108080 +tetragonos.doc.tar.xz 28-Feb-2019 03:06 108080 +tetragonos.r49732.tar.xz 28-Feb-2019 03:06 207756 +tetragonos.tar.xz 28-Feb-2019 03:06 207756 +teubner.doc.r68074.tar.xz 26-Aug-2023 23:46 1117812 +teubner.doc.tar.xz 26-Aug-2023 23:46 1117812 +teubner.r68074.tar.xz 26-Aug-2023 23:46 9956 +teubner.source.r68074.tar.xz 26-Aug-2023 23:46 41972 +teubner.source.tar.xz 26-Aug-2023 23:46 41972 +teubner.tar.xz 26-Aug-2023 23:46 9956 +tex-ewd.doc.r15878.tar.xz 28-Feb-2019 03:06 7684 +tex-ewd.doc.tar.xz 28-Feb-2019 03:06 7684 +tex-ewd.r15878.tar.xz 28-Feb-2019 03:06 3388 +tex-ewd.tar.xz 28-Feb-2019 03:06 3388 +tex-font-errors-cheatsheet.doc.r18314.tar.xz 28-Feb-2019 03:06 219316 +tex-font-errors-cheatsheet.doc.tar.xz 28-Feb-2019 03:06 219316 +tex-font-errors-cheatsheet.r18314.tar.xz 28-Feb-2019 03:06 548 +tex-font-errors-cheatsheet.tar.xz 28-Feb-2019 03:06 548 +tex-gyre-math.doc.r41264.tar.xz 28-Feb-2019 03:07 436052 +tex-gyre-math.doc.tar.xz 28-Feb-2019 03:07 436052 +tex-gyre-math.r41264.tar.xz 28-Feb-2019 03:07 1182712 +tex-gyre-math.source.r41264.tar.xz 28-Feb-2019 03:07 474164 +tex-gyre-math.source.tar.xz 28-Feb-2019 03:07 474164 +tex-gyre-math.tar.xz 28-Feb-2019 03:07 1182712 +tex-gyre.doc.r68624.tar.xz 23-Oct-2023 23:45 11141772 +tex-gyre.doc.tar.xz 23-Oct-2023 23:45 11141772 +tex-gyre.r68624.tar.xz 23-Oct-2023 23:45 7748428 +tex-gyre.source.r68624.tar.xz 23-Oct-2023 23:45 1016896 +tex-gyre.source.tar.xz 23-Oct-2023 23:45 1016896 +tex-gyre.tar.xz 23-Oct-2023 23:45 7748428 +tex-ini-files.doc.r73863.tar.xz 11-Feb-2025 00:48 1392 +tex-ini-files.doc.tar.xz 11-Feb-2025 00:48 1392 +tex-ini-files.r73863.tar.xz 11-Feb-2025 00:48 4400 +tex-ini-files.tar.xz 11-Feb-2025 00:48 4400 +tex-label.doc.r16372.tar.xz 28-Feb-2019 03:07 36596 +tex-label.doc.tar.xz 28-Feb-2019 03:07 36596 +tex-label.r16372.tar.xz 28-Feb-2019 03:07 940 +tex-label.source.r16372.tar.xz 28-Feb-2019 03:07 420 +tex-label.source.tar.xz 28-Feb-2019 03:07 420 +tex-label.tar.xz 28-Feb-2019 03:07 940 +tex-locale.doc.r48500.tar.xz 28-Feb-2019 03:07 940332 +tex-locale.doc.tar.xz 28-Feb-2019 03:07 940332 +tex-locale.r48500.tar.xz 28-Feb-2019 03:07 12328 +tex-locale.source.r48500.tar.xz 28-Feb-2019 03:07 44596 +tex-locale.source.tar.xz 28-Feb-2019 03:07 44596 +tex-locale.tar.xz 28-Feb-2019 03:07 12328 +tex-nutshell.doc.r70375.tar.xz 04-Mar-2024 00:46 315532 +tex-nutshell.doc.tar.xz 04-Mar-2024 00:46 315532 +tex-nutshell.r70375.tar.xz 04-Mar-2024 00:46 524 +tex-nutshell.tar.xz 04-Mar-2024 00:46 524 +tex-overview.doc.r41403.tar.xz 28-Feb-2019 03:07 260424 +tex-overview.doc.tar.xz 28-Feb-2019 03:07 260424 +tex-overview.r41403.tar.xz 28-Feb-2019 03:07 432 +tex-overview.tar.xz 28-Feb-2019 03:07 432 +tex-ps.doc.r15878.tar.xz 28-Feb-2019 03:07 246188 +tex-ps.doc.tar.xz 28-Feb-2019 03:07 246188 +tex-ps.r15878.tar.xz 28-Feb-2019 03:07 21404 +tex-ps.tar.xz 28-Feb-2019 03:07 21404 +tex-virtual-academy-pl.doc.r67718.tar.xz 23-Jul-2023 23:46 1080060 +tex-virtual-academy-pl.doc.tar.xz 23-Jul-2023 23:46 1080060 +tex-virtual-academy-pl.r67718.tar.xz 23-Jul-2023 23:46 492 +tex-virtual-academy-pl.tar.xz 23-Jul-2023 23:46 492 +tex-vpat.doc.r72067.tar.xz 19-Aug-2024 23:48 146764 +tex-vpat.doc.tar.xz 19-Aug-2024 23:48 146764 +tex-vpat.r72067.tar.xz 19-Aug-2024 23:48 504 +tex-vpat.tar.xz 19-Aug-2024 23:48 504 +tex.aarch64-linux.r74368.tar.xz 02-Mar-2025 01:10 176324 +tex.aarch64-linux.tar.xz 02-Mar-2025 01:10 176324 +tex.amd64-freebsd.r74368.tar.xz 02-Mar-2025 01:10 156420 +tex.amd64-freebsd.tar.xz 02-Mar-2025 01:10 156420 +tex.amd64-netbsd.r74367.tar.xz 02-Mar-2025 01:10 154344 +tex.amd64-netbsd.tar.xz 02-Mar-2025 01:10 154344 +tex.armhf-linux.r74368.tar.xz 02-Mar-2025 01:10 165440 +tex.armhf-linux.tar.xz 02-Mar-2025 01:10 165440 +tex.doc.r73848.tar.xz 11-Feb-2025 00:48 45432 +tex.doc.tar.xz 11-Feb-2025 00:48 45432 +tex.i386-freebsd.r74368.tar.xz 02-Mar-2025 01:10 156456 +tex.i386-freebsd.tar.xz 02-Mar-2025 01:10 156456 +tex.i386-linux.r74368.tar.xz 02-Mar-2025 01:10 192716 +tex.i386-linux.tar.xz 02-Mar-2025 01:10 192716 +tex.i386-netbsd.r74367.tar.xz 02-Mar-2025 01:10 128408 +tex.i386-netbsd.tar.xz 02-Mar-2025 01:10 128408 +tex.i386-solaris.r74368.tar.xz 02-Mar-2025 01:10 169304 +tex.i386-solaris.tar.xz 02-Mar-2025 01:10 169304 +tex.r73848.tar.xz 11-Feb-2025 00:48 896 +tex.tar.xz 11-Feb-2025 00:48 896 +tex.universal-darwin.r74380.tar.xz 02-Mar-2025 01:10 438420 +tex.universal-darwin.tar.xz 02-Mar-2025 01:10 438420 +tex.windows.r74338.tar.xz 01-Mar-2025 00:56 156580 +tex.windows.tar.xz 01-Mar-2025 00:56 156580 +tex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 173092 +tex.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 173092 +tex.x86_64-darwinlegacy.r74380.tar.xz 02-Mar-2025 01:10 172148 +tex.x86_64-darwinlegacy.tar.xz 02-Mar-2025 01:10 172148 +tex.x86_64-linux.r74368.tar.xz 02-Mar-2025 01:10 200912 +tex.x86_64-linux.tar.xz 02-Mar-2025 01:10 200912 +tex.x86_64-linuxmusl.r74368.tar.xz 02-Mar-2025 01:10 187236 +tex.x86_64-linuxmusl.tar.xz 02-Mar-2025 01:10 187236 +tex.x86_64-solaris.r74368.tar.xz 02-Mar-2025 01:10 197936 +tex.x86_64-solaris.tar.xz 02-Mar-2025 01:10 197936 +tex4ebook.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.aarch64-linux.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.amd64-freebsd.r37771.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.amd64-freebsd.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.amd64-netbsd.r37771.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.amd64-netbsd.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.armhf-linux.r37771.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.armhf-linux.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.doc.r75774.tar.xz 14-Jul-2025 23:48 104860 +tex4ebook.doc.tar.xz 14-Jul-2025 23:48 104860 +tex4ebook.i386-freebsd.r37771.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.i386-freebsd.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.i386-linux.r37771.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.i386-linux.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.i386-netbsd.r37771.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.i386-netbsd.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.i386-solaris.r37771.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.i386-solaris.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.r75774.tar.xz 14-Jul-2025 23:48 18912 +tex4ebook.tar.xz 14-Jul-2025 23:48 18912 +tex4ebook.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +tex4ebook.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +tex4ebook.windows.r65891.tar.xz 20-Feb-2023 22:16 2308 +tex4ebook.windows.tar.xz 20-Feb-2023 22:16 2308 +tex4ebook.x86_64-cygwin.r37771.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.x86_64-cygwin.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:07 348 +tex4ebook.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:07 348 +tex4ebook.x86_64-linux.r37771.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.x86_64-linux.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:07 344 +tex4ebook.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:07 344 +tex4ebook.x86_64-solaris.r37771.tar.xz 28-Feb-2019 03:07 340 +tex4ebook.x86_64-solaris.tar.xz 28-Feb-2019 03:07 340 +tex4ht.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 85112 +tex4ht.aarch64-linux.tar.xz 13-Feb-2025 00:50 85112 +tex4ht.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 90688 +tex4ht.amd64-freebsd.tar.xz 09-Feb-2025 00:55 90688 +tex4ht.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 88716 +tex4ht.amd64-netbsd.tar.xz 09-Feb-2025 18:16 88716 +tex4ht.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 83760 +tex4ht.armhf-linux.tar.xz 09-Feb-2025 00:55 83760 +tex4ht.doc.r76352.tar.xz 18-Sep-2025 23:44 136384 +tex4ht.doc.tar.xz 18-Sep-2025 23:44 136384 +tex4ht.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 90692 +tex4ht.i386-freebsd.tar.xz 09-Feb-2025 00:55 90692 +tex4ht.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 95568 +tex4ht.i386-linux.tar.xz 09-Feb-2025 00:55 95568 +tex4ht.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 77288 +tex4ht.i386-netbsd.tar.xz 09-Feb-2025 18:16 77288 +tex4ht.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 87660 +tex4ht.i386-solaris.tar.xz 09-Feb-2025 00:55 87660 +tex4ht.r76352.tar.xz 18-Sep-2025 23:45 1148208 +tex4ht.source.r76352.tar.xz 18-Sep-2025 23:44 1522428 +tex4ht.source.tar.xz 18-Sep-2025 23:44 1522428 +tex4ht.tar.xz 18-Sep-2025 23:45 1148208 +tex4ht.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 185880 +tex4ht.universal-darwin.tar.xz 09-Feb-2025 18:16 185880 +tex4ht.windows.r73796.tar.xz 09-Feb-2025 18:16 61956 +tex4ht.windows.tar.xz 09-Feb-2025 18:16 61956 +tex4ht.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 57932 +tex4ht.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 57932 +tex4ht.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 85656 +tex4ht.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 85656 +tex4ht.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 93776 +tex4ht.x86_64-linux.tar.xz 19-Feb-2025 00:47 93776 +tex4ht.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 96204 +tex4ht.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 96204 +tex4ht.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 99320 +tex4ht.x86_64-solaris.tar.xz 09-Feb-2025 00:55 99320 +texaccents.aarch64-linux.r64447.tar.xz 19-Sep-2022 23:53 340 +texaccents.aarch64-linux.tar.xz 19-Sep-2022 23:53 340 +texaccents.amd64-freebsd.r64447.tar.xz 19-Sep-2022 23:53 340 +texaccents.amd64-freebsd.tar.xz 19-Sep-2022 23:53 340 +texaccents.amd64-netbsd.r64447.tar.xz 19-Sep-2022 23:53 340 +texaccents.amd64-netbsd.tar.xz 19-Sep-2022 23:53 340 +texaccents.armhf-linux.r64447.tar.xz 19-Sep-2022 23:53 340 +texaccents.armhf-linux.tar.xz 19-Sep-2022 23:53 340 +texaccents.doc.r64447.tar.xz 19-Sep-2022 23:53 68972 +texaccents.doc.tar.xz 19-Sep-2022 23:53 68972 +texaccents.i386-freebsd.r64447.tar.xz 19-Sep-2022 23:53 340 +texaccents.i386-freebsd.tar.xz 19-Sep-2022 23:53 340 +texaccents.i386-linux.r64447.tar.xz 19-Sep-2022 23:53 340 +texaccents.i386-linux.tar.xz 19-Sep-2022 23:53 340 +texaccents.i386-netbsd.r64447.tar.xz 19-Sep-2022 23:53 336 +texaccents.i386-netbsd.tar.xz 19-Sep-2022 23:53 336 +texaccents.i386-solaris.r64447.tar.xz 19-Sep-2022 23:53 340 +texaccents.i386-solaris.tar.xz 19-Sep-2022 23:53 340 +texaccents.r64447.tar.xz 19-Sep-2022 23:53 4752 +texaccents.source.r64447.tar.xz 19-Sep-2022 23:53 2344 +texaccents.source.tar.xz 19-Sep-2022 23:53 2344 +texaccents.tar.xz 19-Sep-2022 23:53 4752 +texaccents.universal-darwin.r64447.tar.xz 19-Sep-2022 23:53 344 +texaccents.universal-darwin.tar.xz 19-Sep-2022 23:53 344 +texaccents.windows.r65891.tar.xz 20-Feb-2023 22:16 84952 +texaccents.windows.tar.xz 20-Feb-2023 22:16 84952 +texaccents.x86_64-cygwin.r64447.tar.xz 19-Sep-2022 23:53 340 +texaccents.x86_64-cygwin.tar.xz 19-Sep-2022 23:53 340 +texaccents.x86_64-darwinlegacy.r64447.tar.xz 19-Sep-2022 23:53 348 +texaccents.x86_64-darwinlegacy.tar.xz 19-Sep-2022 23:53 348 +texaccents.x86_64-linux.r64447.tar.xz 19-Sep-2022 23:53 340 +texaccents.x86_64-linux.tar.xz 19-Sep-2022 23:53 340 +texaccents.x86_64-linuxmusl.r64447.tar.xz 19-Sep-2022 23:53 344 +texaccents.x86_64-linuxmusl.tar.xz 19-Sep-2022 23:53 344 +texaccents.x86_64-solaris.r64447.tar.xz 19-Sep-2022 23:53 340 +texaccents.x86_64-solaris.tar.xz 19-Sep-2022 23:53 340 +texapi.doc.r54080.tar.xz 04-Mar-2020 22:53 148348 +texapi.doc.tar.xz 04-Mar-2020 22:53 148348 +texapi.r54080.tar.xz 04-Mar-2020 22:53 7416 +texapi.tar.xz 04-Mar-2020 22:53 7416 +texblend.aarch64-linux.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.aarch64-linux.tar.xz 25-Nov-2023 00:43 336 +texblend.amd64-freebsd.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.amd64-freebsd.tar.xz 25-Nov-2023 00:43 336 +texblend.amd64-netbsd.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.amd64-netbsd.tar.xz 25-Nov-2023 00:43 336 +texblend.armhf-linux.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.armhf-linux.tar.xz 25-Nov-2023 00:43 336 +texblend.doc.r68961.tar.xz 25-Nov-2023 00:43 50052 +texblend.doc.tar.xz 25-Nov-2023 00:43 50052 +texblend.i386-freebsd.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.i386-freebsd.tar.xz 25-Nov-2023 00:43 336 +texblend.i386-linux.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.i386-linux.tar.xz 25-Nov-2023 00:43 336 +texblend.i386-netbsd.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.i386-netbsd.tar.xz 25-Nov-2023 00:43 336 +texblend.i386-solaris.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.i386-solaris.tar.xz 25-Nov-2023 00:43 336 +texblend.r68961.tar.xz 25-Nov-2023 00:43 3604 +texblend.tar.xz 25-Nov-2023 00:43 3604 +texblend.universal-darwin.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.universal-darwin.tar.xz 25-Nov-2023 00:43 336 +texblend.windows.r68961.tar.xz 25-Nov-2023 00:43 2304 +texblend.windows.tar.xz 25-Nov-2023 00:43 2304 +texblend.x86_64-cygwin.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.x86_64-cygwin.tar.xz 25-Nov-2023 00:43 336 +texblend.x86_64-darwinlegacy.r68961.tar.xz 25-Nov-2023 00:43 344 +texblend.x86_64-darwinlegacy.tar.xz 25-Nov-2023 00:43 344 +texblend.x86_64-linux.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.x86_64-linux.tar.xz 25-Nov-2023 00:43 336 +texblend.x86_64-linuxmusl.r68961.tar.xz 25-Nov-2023 00:43 340 +texblend.x86_64-linuxmusl.tar.xz 25-Nov-2023 00:43 340 +texblend.x86_64-solaris.r68961.tar.xz 25-Nov-2023 00:43 336 +texblend.x86_64-solaris.tar.xz 25-Nov-2023 00:43 336 +texbytopic.doc.r68950.tar.xz 24-Nov-2023 00:43 1132796 +texbytopic.doc.tar.xz 24-Nov-2023 00:43 1132796 +texbytopic.r68950.tar.xz 24-Nov-2023 00:43 704 +texbytopic.tar.xz 24-Nov-2023 00:43 704 +texcount.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:07 340 +texcount.aarch64-linux.tar.xz 28-Feb-2019 03:07 340 +texcount.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:07 340 +texcount.amd64-freebsd.tar.xz 28-Feb-2019 03:07 340 +texcount.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:07 340 +texcount.amd64-netbsd.tar.xz 28-Feb-2019 03:07 340 +texcount.armhf-linux.r30015.tar.xz 28-Feb-2019 03:07 340 +texcount.armhf-linux.tar.xz 28-Feb-2019 03:07 340 +texcount.doc.r49013.tar.xz 28-Feb-2019 03:07 559548 +texcount.doc.tar.xz 28-Feb-2019 03:07 559548 +texcount.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:07 340 +texcount.i386-freebsd.tar.xz 28-Feb-2019 03:07 340 +texcount.i386-linux.r13013.tar.xz 28-Feb-2019 03:07 340 +texcount.i386-linux.tar.xz 28-Feb-2019 03:07 340 +texcount.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:07 340 +texcount.i386-netbsd.tar.xz 28-Feb-2019 03:07 340 +texcount.i386-solaris.r13013.tar.xz 28-Feb-2019 03:07 340 +texcount.i386-solaris.tar.xz 28-Feb-2019 03:07 340 +texcount.r49013.tar.xz 28-Feb-2019 03:07 35908 +texcount.tar.xz 28-Feb-2019 03:07 35908 +texcount.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +texcount.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +texcount.windows.r65891.tar.xz 20-Feb-2023 22:16 2304 +texcount.windows.tar.xz 20-Feb-2023 22:16 2304 +texcount.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:07 344 +texcount.x86_64-cygwin.tar.xz 28-Feb-2019 03:07 344 +texcount.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:07 348 +texcount.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:07 348 +texcount.x86_64-linux.r13013.tar.xz 28-Feb-2019 03:07 340 +texcount.x86_64-linux.tar.xz 28-Feb-2019 03:07 340 +texcount.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:07 344 +texcount.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:07 344 +texcount.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:07 340 +texcount.x86_64-solaris.tar.xz 28-Feb-2019 03:07 340 +texdate.doc.r49362.tar.xz 28-Feb-2019 03:07 256872 +texdate.doc.tar.xz 28-Feb-2019 03:07 256872 +texdate.r49362.tar.xz 28-Feb-2019 03:07 3976 +texdate.source.r49362.tar.xz 28-Feb-2019 03:07 11800 +texdate.source.tar.xz 28-Feb-2019 03:07 11800 +texdate.tar.xz 28-Feb-2019 03:07 3976 +texdef.aarch64-linux.r46228.tar.xz 28-Feb-2019 03:07 368 +texdef.aarch64-linux.tar.xz 28-Feb-2019 03:07 368 +texdef.amd64-freebsd.r45011.tar.xz 28-Feb-2019 03:07 368 +texdef.amd64-freebsd.tar.xz 28-Feb-2019 03:07 368 +texdef.amd64-netbsd.r45011.tar.xz 28-Feb-2019 03:07 364 +texdef.amd64-netbsd.tar.xz 28-Feb-2019 03:07 364 +texdef.armhf-linux.r45011.tar.xz 28-Feb-2019 03:07 368 +texdef.armhf-linux.tar.xz 28-Feb-2019 03:07 368 +texdef.doc.r74067.tar.xz 18-Feb-2025 00:52 165032 +texdef.doc.tar.xz 18-Feb-2025 00:52 165032 +texdef.i386-freebsd.r45011.tar.xz 28-Feb-2019 03:07 368 +texdef.i386-freebsd.tar.xz 28-Feb-2019 03:07 368 +texdef.i386-linux.r45011.tar.xz 28-Feb-2019 03:07 364 +texdef.i386-linux.tar.xz 28-Feb-2019 03:07 364 +texdef.i386-netbsd.r45011.tar.xz 28-Feb-2019 03:07 364 +texdef.i386-netbsd.tar.xz 28-Feb-2019 03:07 364 +texdef.i386-solaris.r45011.tar.xz 28-Feb-2019 03:07 368 +texdef.i386-solaris.tar.xz 28-Feb-2019 03:07 368 +texdef.r74067.tar.xz 18-Feb-2025 00:52 9472 +texdef.tar.xz 18-Feb-2025 00:52 9472 +texdef.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 364 +texdef.universal-darwin.tar.xz 25-Feb-2021 18:17 364 +texdef.windows.r65891.tar.xz 20-Feb-2023 22:16 2352 +texdef.windows.tar.xz 20-Feb-2023 22:16 2352 +texdef.x86_64-cygwin.r45011.tar.xz 28-Feb-2019 03:07 368 +texdef.x86_64-cygwin.tar.xz 28-Feb-2019 03:07 368 +texdef.x86_64-darwinlegacy.r45011.tar.xz 28-Feb-2019 03:07 376 +texdef.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:07 376 +texdef.x86_64-linux.r45011.tar.xz 28-Feb-2019 03:07 364 +texdef.x86_64-linux.tar.xz 28-Feb-2019 03:07 364 +texdef.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:07 372 +texdef.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:07 372 +texdef.x86_64-solaris.r45011.tar.xz 28-Feb-2019 03:07 368 +texdef.x86_64-solaris.tar.xz 28-Feb-2019 03:07 368 +texdiff.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:07 336 +texdiff.aarch64-linux.tar.xz 28-Feb-2019 03:07 336 +texdiff.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:07 340 +texdiff.amd64-freebsd.tar.xz 28-Feb-2019 03:07 340 +texdiff.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:07 336 +texdiff.amd64-netbsd.tar.xz 28-Feb-2019 03:07 336 +texdiff.armhf-linux.r30015.tar.xz 28-Feb-2019 03:07 336 +texdiff.armhf-linux.tar.xz 28-Feb-2019 03:07 336 +texdiff.doc.r29752.tar.xz 28-Feb-2019 03:07 10296 +texdiff.doc.tar.xz 28-Feb-2019 03:07 10296 +texdiff.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:07 340 +texdiff.i386-freebsd.tar.xz 28-Feb-2019 03:07 340 +texdiff.i386-linux.r15506.tar.xz 28-Feb-2019 03:07 336 +texdiff.i386-linux.tar.xz 28-Feb-2019 03:07 336 +texdiff.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:07 336 +texdiff.i386-netbsd.tar.xz 28-Feb-2019 03:07 336 +texdiff.i386-solaris.r15506.tar.xz 28-Feb-2019 03:07 336 +texdiff.i386-solaris.tar.xz 28-Feb-2019 03:07 336 +texdiff.r29752.tar.xz 28-Feb-2019 03:07 7172 +texdiff.tar.xz 28-Feb-2019 03:07 7172 +texdiff.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 336 +texdiff.universal-darwin.tar.xz 25-Feb-2021 18:17 336 +texdiff.windows.r65891.tar.xz 20-Feb-2023 22:16 2300 +texdiff.windows.tar.xz 20-Feb-2023 22:16 2300 +texdiff.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:07 340 +texdiff.x86_64-cygwin.tar.xz 28-Feb-2019 03:07 340 +texdiff.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:07 344 +texdiff.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:07 344 +texdiff.x86_64-linux.r15506.tar.xz 28-Feb-2019 03:07 336 +texdiff.x86_64-linux.tar.xz 28-Feb-2019 03:07 336 +texdiff.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:07 340 +texdiff.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:07 340 +texdiff.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:07 340 +texdiff.x86_64-solaris.tar.xz 28-Feb-2019 03:07 340 +texdimens.doc.r61070.tar.xz 17-Nov-2021 00:54 121624 +texdimens.doc.tar.xz 17-Nov-2021 00:54 121624 +texdimens.r61070.tar.xz 17-Nov-2021 00:54 11436 +texdimens.tar.xz 17-Nov-2021 00:54 11436 +texdirflatten.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.aarch64-linux.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.amd64-freebsd.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:07 340 +texdirflatten.amd64-netbsd.tar.xz 28-Feb-2019 03:07 340 +texdirflatten.armhf-linux.r30015.tar.xz 28-Feb-2019 03:07 340 +texdirflatten.armhf-linux.tar.xz 28-Feb-2019 03:07 340 +texdirflatten.doc.r55064.tar.xz 07-May-2020 23:55 11016 +texdirflatten.doc.tar.xz 07-May-2020 23:55 11016 +texdirflatten.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.i386-freebsd.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.i386-linux.r12782.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.i386-linux.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.i386-netbsd.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.i386-solaris.r12782.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.i386-solaris.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.r55064.tar.xz 07-May-2020 23:55 4836 +texdirflatten.tar.xz 07-May-2020 23:55 4836 +texdirflatten.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 344 +texdirflatten.universal-darwin.tar.xz 25-Feb-2021 18:17 344 +texdirflatten.windows.r65891.tar.xz 20-Feb-2023 22:16 2308 +texdirflatten.windows.tar.xz 20-Feb-2023 22:16 2308 +texdirflatten.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.x86_64-cygwin.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:07 352 +texdirflatten.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:07 352 +texdirflatten.x86_64-linux.r12782.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.x86_64-linux.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:07 348 +texdirflatten.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:07 348 +texdirflatten.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:07 344 +texdirflatten.x86_64-solaris.tar.xz 28-Feb-2019 03:07 344 +texdoc.aarch64-linux.r47948.tar.xz 28-Feb-2019 03:07 340 +texdoc.aarch64-linux.tar.xz 28-Feb-2019 03:07 340 +texdoc.amd64-freebsd.r47948.tar.xz 28-Feb-2019 03:07 344 +texdoc.amd64-freebsd.tar.xz 28-Feb-2019 03:07 344 +texdoc.amd64-netbsd.r47948.tar.xz 28-Feb-2019 03:07 340 +texdoc.amd64-netbsd.tar.xz 28-Feb-2019 03:07 340 +texdoc.armhf-linux.r47948.tar.xz 28-Feb-2019 03:07 340 +texdoc.armhf-linux.tar.xz 28-Feb-2019 03:07 340 +texdoc.doc.r73876.tar.xz 12-Feb-2025 00:50 142460 +texdoc.doc.tar.xz 12-Feb-2025 00:50 142460 +texdoc.i386-freebsd.r47948.tar.xz 28-Feb-2019 03:07 340 +texdoc.i386-freebsd.tar.xz 28-Feb-2019 03:07 340 +texdoc.i386-linux.r47948.tar.xz 28-Feb-2019 03:07 340 +texdoc.i386-linux.tar.xz 28-Feb-2019 03:07 340 +texdoc.i386-netbsd.r47948.tar.xz 28-Feb-2019 03:07 340 +texdoc.i386-netbsd.tar.xz 28-Feb-2019 03:07 340 +texdoc.i386-solaris.r47948.tar.xz 28-Feb-2019 03:07 340 +texdoc.i386-solaris.tar.xz 28-Feb-2019 03:07 340 +texdoc.r73876.tar.xz 12-Feb-2025 00:50 31020 +texdoc.tar.xz 12-Feb-2025 00:50 31020 +texdoc.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +texdoc.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +texdoc.windows.r65891.tar.xz 20-Feb-2023 22:16 2304 +texdoc.windows.tar.xz 20-Feb-2023 22:16 2304 +texdoc.x86_64-cygwin.r47948.tar.xz 28-Feb-2019 03:07 344 +texdoc.x86_64-cygwin.tar.xz 28-Feb-2019 03:07 344 +texdoc.x86_64-darwinlegacy.r47948.tar.xz 28-Feb-2019 03:07 348 +texdoc.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:07 348 +texdoc.x86_64-linux.r47948.tar.xz 28-Feb-2019 03:07 340 +texdoc.x86_64-linux.tar.xz 28-Feb-2019 03:07 340 +texdoc.x86_64-linuxmusl.r47948.tar.xz 28-Feb-2019 03:07 344 +texdoc.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:07 344 +texdoc.x86_64-solaris.r47948.tar.xz 28-Feb-2019 03:07 340 +texdoc.x86_64-solaris.tar.xz 28-Feb-2019 03:07 340 +texdoctk.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:07 344 +texdoctk.aarch64-linux.tar.xz 28-Feb-2019 03:07 344 +texdoctk.amd64-freebsd.r29785.tar.xz 28-Feb-2019 03:07 344 +texdoctk.amd64-freebsd.tar.xz 28-Feb-2019 03:07 344 +texdoctk.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:07 340 +texdoctk.amd64-netbsd.tar.xz 28-Feb-2019 03:07 340 +texdoctk.armhf-linux.r30015.tar.xz 28-Feb-2019 03:07 340 +texdoctk.armhf-linux.tar.xz 28-Feb-2019 03:07 340 +texdoctk.doc.r62186.tar.xz 26-Feb-2022 18:06 30728 +texdoctk.doc.tar.xz 26-Feb-2022 18:06 30728 +texdoctk.i386-freebsd.r29785.tar.xz 28-Feb-2019 03:07 340 +texdoctk.i386-freebsd.tar.xz 28-Feb-2019 03:07 340 +texdoctk.i386-linux.r29741.tar.xz 28-Feb-2019 03:07 340 +texdoctk.i386-linux.tar.xz 28-Feb-2019 03:07 340 +texdoctk.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:07 340 +texdoctk.i386-netbsd.tar.xz 28-Feb-2019 03:07 340 +texdoctk.i386-solaris.r29806.tar.xz 28-Feb-2019 03:07 340 +texdoctk.i386-solaris.tar.xz 28-Feb-2019 03:07 340 +texdoctk.r62186.tar.xz 26-Feb-2022 18:06 26712 +texdoctk.tar.xz 26-Feb-2022 18:06 26712 +texdoctk.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +texdoctk.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +texdoctk.windows.r65891.tar.xz 20-Feb-2023 22:16 2440 +texdoctk.windows.tar.xz 20-Feb-2023 22:16 2440 +texdoctk.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:07 344 +texdoctk.x86_64-cygwin.tar.xz 28-Feb-2019 03:07 344 +texdoctk.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:07 348 +texdoctk.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:07 348 +texdoctk.x86_64-linux.r29820.tar.xz 28-Feb-2019 03:07 340 +texdoctk.x86_64-linux.tar.xz 28-Feb-2019 03:07 340 +texdoctk.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:07 348 +texdoctk.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:07 348 +texdoctk.x86_64-solaris.r29807.tar.xz 28-Feb-2019 03:07 340 +texdoctk.x86_64-solaris.tar.xz 28-Feb-2019 03:07 340 +texdraw.doc.r64477.tar.xz 22-Sep-2022 23:54 243624 +texdraw.doc.tar.xz 22-Sep-2022 23:54 243624 +texdraw.r64477.tar.xz 22-Sep-2022 23:54 15528 +texdraw.tar.xz 22-Sep-2022 23:54 15528 +texfindpkg.aarch64-linux.r66777.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.aarch64-linux.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.amd64-freebsd.r66777.tar.xz 05-Apr-2023 23:53 344 +texfindpkg.amd64-freebsd.tar.xz 05-Apr-2023 23:53 344 +texfindpkg.amd64-netbsd.r66777.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.amd64-netbsd.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.armhf-linux.r66777.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.armhf-linux.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.doc.r72937.tar.xz 23-Nov-2024 00:48 12708 +texfindpkg.doc.tar.xz 23-Nov-2024 00:48 12708 +texfindpkg.i386-freebsd.r66777.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.i386-freebsd.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.i386-linux.r66777.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.i386-linux.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.i386-netbsd.r66777.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.i386-netbsd.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.i386-solaris.r66777.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.i386-solaris.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.r72937.tar.xz 23-Nov-2024 00:48 871300 +texfindpkg.source.r72937.tar.xz 23-Nov-2024 00:48 3076 +texfindpkg.source.tar.xz 23-Nov-2024 00:48 3076 +texfindpkg.tar.xz 23-Nov-2024 00:48 871300 +texfindpkg.universal-darwin.r66777.tar.xz 05-Apr-2023 23:53 344 +texfindpkg.universal-darwin.tar.xz 05-Apr-2023 23:53 344 +texfindpkg.windows.r66777.tar.xz 05-Apr-2023 23:53 2308 +texfindpkg.windows.tar.xz 05-Apr-2023 23:53 2308 +texfindpkg.x86_64-cygwin.r66777.tar.xz 05-Apr-2023 23:53 344 +texfindpkg.x86_64-cygwin.tar.xz 05-Apr-2023 23:53 344 +texfindpkg.x86_64-darwinlegacy.r66777.tar.xz 05-Apr-2023 23:53 352 +texfindpkg.x86_64-darwinlegacy.tar.xz 05-Apr-2023 23:53 352 +texfindpkg.x86_64-linux.r66777.tar.xz 05-Apr-2023 23:53 344 +texfindpkg.x86_64-linux.tar.xz 05-Apr-2023 23:53 344 +texfindpkg.x86_64-linuxmusl.r66777.tar.xz 05-Apr-2023 23:53 348 +texfindpkg.x86_64-linuxmusl.tar.xz 05-Apr-2023 23:53 348 +texfindpkg.x86_64-solaris.r66777.tar.xz 05-Apr-2023 23:53 340 +texfindpkg.x86_64-solaris.tar.xz 05-Apr-2023 23:53 340 +texfot.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:07 340 +texfot.aarch64-linux.tar.xz 28-Feb-2019 03:07 340 +texfot.amd64-freebsd.r33155.tar.xz 28-Feb-2019 03:07 340 +texfot.amd64-freebsd.tar.xz 28-Feb-2019 03:07 340 +texfot.amd64-netbsd.r33155.tar.xz 28-Feb-2019 03:07 336 +texfot.amd64-netbsd.tar.xz 28-Feb-2019 03:07 336 +texfot.armhf-linux.r33155.tar.xz 28-Feb-2019 03:07 336 +texfot.armhf-linux.tar.xz 28-Feb-2019 03:07 336 +texfot.doc.r70969.tar.xz 17-Apr-2024 23:45 34016 +texfot.doc.tar.xz 17-Apr-2024 23:45 34016 +texfot.i386-freebsd.r33155.tar.xz 28-Feb-2019 03:07 340 +texfot.i386-freebsd.tar.xz 28-Feb-2019 03:07 340 +texfot.i386-linux.r33155.tar.xz 28-Feb-2019 03:07 340 +texfot.i386-linux.tar.xz 28-Feb-2019 03:07 340 +texfot.i386-netbsd.r33155.tar.xz 28-Feb-2019 03:07 336 +texfot.i386-netbsd.tar.xz 28-Feb-2019 03:07 336 +texfot.i386-solaris.r33155.tar.xz 28-Feb-2019 03:07 340 +texfot.i386-solaris.tar.xz 28-Feb-2019 03:07 340 +texfot.r70969.tar.xz 17-Apr-2024 23:45 6948 +texfot.tar.xz 17-Apr-2024 23:45 6948 +texfot.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +texfot.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +texfot.windows.r65891.tar.xz 20-Feb-2023 22:16 2304 +texfot.windows.tar.xz 20-Feb-2023 22:16 2304 +texfot.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:07 340 +texfot.x86_64-cygwin.tar.xz 28-Feb-2019 03:07 340 +texfot.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:07 348 +texfot.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:07 348 +texfot.x86_64-linux.r33155.tar.xz 28-Feb-2019 03:07 336 +texfot.x86_64-linux.tar.xz 28-Feb-2019 03:07 336 +texfot.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:07 344 +texfot.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:07 344 +texfot.x86_64-solaris.r33155.tar.xz 28-Feb-2019 03:07 340 +texfot.x86_64-solaris.tar.xz 28-Feb-2019 03:07 340 +texilikechaps.r28553.tar.xz 28-Feb-2019 03:07 1956 +texilikechaps.tar.xz 28-Feb-2019 03:07 1956 +texilikecover.r15878.tar.xz 28-Feb-2019 03:07 956 +texilikecover.tar.xz 28-Feb-2019 03:07 956 +texinfo.r75764.tar.xz 13-Jul-2025 00:00 105568 +texinfo.tar.xz 13-Jul-2025 00:00 105568 +texlive-common.doc.r75685.tar.xz 04-Jul-2025 23:48 499604 +texlive-common.doc.tar.xz 04-Jul-2025 23:48 499604 +texlive-common.r75685.tar.xz 04-Jul-2025 23:48 348 +texlive-common.tar.xz 04-Jul-2025 23:48 348 +texlive-cz.doc.r72437.tar.xz 01-Oct-2024 23:49 1223016 +texlive-cz.doc.tar.xz 01-Oct-2024 23:49 1223016 +texlive-cz.r72437.tar.xz 01-Oct-2024 23:49 280 +texlive-cz.tar.xz 01-Oct-2024 23:49 280 +texlive-de.doc.r74226.tar.xz 24-Feb-2025 00:50 1600736 +texlive-de.doc.tar.xz 24-Feb-2025 00:50 1600736 +texlive-de.r74226.tar.xz 24-Feb-2025 00:50 272 +texlive-de.tar.xz 24-Feb-2025 00:50 272 +texlive-en.doc.r74120.tar.xz 19-Feb-2025 00:47 1884828 +texlive-en.doc.tar.xz 19-Feb-2025 00:47 1884828 +texlive-en.r74120.tar.xz 19-Feb-2025 00:47 276 +texlive-en.tar.xz 19-Feb-2025 00:47 276 +texlive-es.doc.r74997.tar.xz 22-Apr-2025 23:49 6082304 +texlive-es.doc.tar.xz 22-Apr-2025 23:49 6082304 +texlive-es.r74997.tar.xz 22-Apr-2025 23:49 276 +texlive-es.tar.xz 22-Apr-2025 23:49 276 +texlive-fr.doc.r74301.tar.xz 27-Feb-2025 00:50 1293272 +texlive-fr.doc.tar.xz 27-Feb-2025 00:50 1293272 +texlive-fr.r74301.tar.xz 27-Feb-2025 00:50 272 +texlive-fr.tar.xz 27-Feb-2025 00:50 272 +texlive-it.doc.r58653.tar.xz 23-Mar-2021 18:32 1307232 +texlive-it.doc.tar.xz 23-Mar-2021 18:32 1307232 +texlive-it.r58653.tar.xz 23-Mar-2021 18:32 276 +texlive-it.tar.xz 23-Mar-2021 18:32 276 +texlive-ja.doc.r74739.tar.xz 26-Mar-2025 00:48 1967460 +texlive-ja.doc.tar.xz 26-Mar-2025 00:48 1967460 +texlive-ja.r74739.tar.xz 26-Mar-2025 00:48 276 +texlive-ja.tar.xz 26-Mar-2025 00:48 276 +texlive-msg-translations.r75868.tar.xz 22-Jul-2025 21:36 153352 +texlive-msg-translations.tar.xz 22-Jul-2025 21:36 153352 +texlive-pl.doc.r74803.tar.xz 31-Mar-2025 23:52 1202204 +texlive-pl.doc.tar.xz 31-Mar-2025 23:52 1202204 +texlive-pl.r74803.tar.xz 31-Mar-2025 23:52 276 +texlive-pl.tar.xz 31-Mar-2025 23:52 276 +texlive-ru.doc.r58426.tar.xz 17-Mar-2021 00:31 958120 +texlive-ru.doc.tar.xz 17-Mar-2021 00:31 958120 +texlive-ru.r58426.tar.xz 17-Mar-2021 00:31 276 +texlive-ru.tar.xz 17-Mar-2021 00:31 276 +texlive-scripts-extra.aarch64-linux.r71749.tar.xz 08-Jul-2024 23:47 908 +texlive-scripts-extra.aarch64-linux.tar.xz 08-Jul-2024 23:47 908 +texlive-scripts-extra.amd64-freebsd.r71749.tar.xz 08-Jul-2024 23:47 920 +texlive-scripts-extra.amd64-freebsd.tar.xz 08-Jul-2024 23:47 920 +texlive-scripts-extra.amd64-netbsd.r71749.tar.xz 08-Jul-2024 23:47 908 +texlive-scripts-extra.amd64-netbsd.tar.xz 08-Jul-2024 23:47 908 +texlive-scripts-extra.armhf-linux.r71749.tar.xz 08-Jul-2024 23:47 904 +texlive-scripts-extra.armhf-linux.tar.xz 08-Jul-2024 23:47 904 +texlive-scripts-extra.doc.r71746.tar.xz 08-Jul-2024 23:47 197200 +texlive-scripts-extra.doc.tar.xz 08-Jul-2024 23:47 197200 +texlive-scripts-extra.i386-freebsd.r71749.tar.xz 08-Jul-2024 23:47 916 +texlive-scripts-extra.i386-freebsd.tar.xz 08-Jul-2024 23:47 916 +texlive-scripts-extra.i386-linux.r71749.tar.xz 08-Jul-2024 23:47 916 +texlive-scripts-extra.i386-linux.tar.xz 08-Jul-2024 23:47 916 +texlive-scripts-extra.i386-netbsd.r71749.tar.xz 08-Jul-2024 23:47 904 +texlive-scripts-extra.i386-netbsd.tar.xz 08-Jul-2024 23:47 904 +texlive-scripts-extra.i386-solaris.r71749.tar.xz 08-Jul-2024 23:47 908 +texlive-scripts-extra.i386-solaris.tar.xz 08-Jul-2024 23:47 908 +texlive-scripts-extra.r71746.tar.xz 08-Jul-2024 23:47 22016 +texlive-scripts-extra.tar.xz 08-Jul-2024 23:47 22016 +texlive-scripts-extra.universal-darwin.r71749.t..> 08-Jul-2024 23:47 912 +texlive-scripts-extra.universal-darwin.tar.xz 08-Jul-2024 23:47 912 +texlive-scripts-extra.windows.r73796.tar.xz 09-Feb-2025 18:16 5080 +texlive-scripts-extra.windows.tar.xz 09-Feb-2025 18:16 5080 +texlive-scripts-extra.x86_64-cygwin.r71749.tar.xz 08-Jul-2024 23:47 908 +texlive-scripts-extra.x86_64-cygwin.tar.xz 08-Jul-2024 23:47 908 +texlive-scripts-extra.x86_64-darwinlegacy.r7174..> 08-Jul-2024 23:47 924 +texlive-scripts-extra.x86_64-darwinlegacy.tar.xz 08-Jul-2024 23:47 924 +texlive-scripts-extra.x86_64-linux.r71749.tar.xz 08-Jul-2024 23:47 920 +texlive-scripts-extra.x86_64-linux.tar.xz 08-Jul-2024 23:47 920 +texlive-scripts-extra.x86_64-linuxmusl.r71749.t..> 08-Jul-2024 23:47 912 +texlive-scripts-extra.x86_64-linuxmusl.tar.xz 08-Jul-2024 23:47 912 +texlive-scripts-extra.x86_64-solaris.r71749.tar.xz 08-Jul-2024 23:47 920 +texlive-scripts-extra.x86_64-solaris.tar.xz 08-Jul-2024 23:47 920 +texlive-scripts.aarch64-linux.r64356.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.aarch64-linux.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.amd64-freebsd.r64356.tar.xz 12-Sep-2022 23:55 600 +texlive-scripts.amd64-freebsd.tar.xz 12-Sep-2022 23:55 600 +texlive-scripts.amd64-netbsd.r64356.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.amd64-netbsd.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.armhf-linux.r64356.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.armhf-linux.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.doc.r76425.tar.xz 27-Sep-2025 23:56 454180 +texlive-scripts.doc.tar.xz 27-Sep-2025 23:56 454180 +texlive-scripts.i386-freebsd.r64356.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.i386-freebsd.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.i386-linux.r64356.tar.xz 12-Sep-2022 23:55 592 +texlive-scripts.i386-linux.tar.xz 12-Sep-2022 23:55 592 +texlive-scripts.i386-netbsd.r64356.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.i386-netbsd.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.i386-solaris.r64356.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.i386-solaris.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.r76425.tar.xz 27-Sep-2025 23:56 115036 +texlive-scripts.tar.xz 27-Sep-2025 23:56 115036 +texlive-scripts.universal-darwin.r64356.tar.xz 12-Sep-2022 23:55 580 +texlive-scripts.universal-darwin.tar.xz 12-Sep-2022 23:55 580 +texlive-scripts.windows.r74918.tar.xz 12-Apr-2025 23:58 60580 +texlive-scripts.windows.tar.xz 12-Apr-2025 23:58 60580 +texlive-scripts.x86_64-cygwin.r64356.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.x86_64-cygwin.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.x86_64-darwinlegacy.r64356.tar.xz 12-Sep-2022 23:55 600 +texlive-scripts.x86_64-darwinlegacy.tar.xz 12-Sep-2022 23:55 600 +texlive-scripts.x86_64-linux.r64356.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.x86_64-linux.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.x86_64-linuxmusl.r64356.tar.xz 12-Sep-2022 23:55 608 +texlive-scripts.x86_64-linuxmusl.tar.xz 12-Sep-2022 23:55 608 +texlive-scripts.x86_64-solaris.r64356.tar.xz 12-Sep-2022 23:55 596 +texlive-scripts.x86_64-solaris.tar.xz 12-Sep-2022 23:55 596 +texlive-sr.doc.r54594.tar.xz 28-Mar-2020 00:55 1101040 +texlive-sr.doc.tar.xz 28-Mar-2020 00:55 1101040 +texlive-sr.r54594.tar.xz 28-Mar-2020 00:55 272 +texlive-sr.tar.xz 28-Mar-2020 00:55 272 +texlive-zh-cn.doc.r74098.tar.xz 18-Feb-2025 22:37 1171468 +texlive-zh-cn.doc.tar.xz 18-Feb-2025 22:37 1171468 +texlive-zh-cn.r74098.tar.xz 18-Feb-2025 22:37 280 +texlive-zh-cn.tar.xz 18-Feb-2025 22:37 280 +texlive.infra.aarch64-linux.r70811.tar.xz 31-Mar-2024 00:54 82688 +texlive.infra.aarch64-linux.tar.xz 31-Mar-2024 00:54 82688 +texlive.infra.amd64-freebsd.r69786.tar.xz 26-Feb-2024 00:47 343216 +texlive.infra.amd64-freebsd.tar.xz 26-Feb-2024 00:47 343216 +texlive.infra.amd64-netbsd.r70811.tar.xz 31-Mar-2024 00:54 377904 +texlive.infra.amd64-netbsd.tar.xz 31-Mar-2024 00:54 377904 +texlive.infra.armhf-linux.r61925.tar.xz 10-Feb-2022 00:55 159564 +texlive.infra.armhf-linux.tar.xz 10-Feb-2022 00:55 159564 +texlive.infra.doc.r75590.tar.xz 23-Jun-2025 23:49 209416 +texlive.infra.doc.tar.xz 23-Jun-2025 23:49 209416 +texlive.infra.i386-freebsd.r69786.tar.xz 26-Feb-2024 00:47 310752 +texlive.infra.i386-freebsd.tar.xz 26-Feb-2024 00:47 310752 +texlive.infra.i386-linux.r69786.tar.xz 26-Feb-2024 00:47 155788 +texlive.infra.i386-linux.tar.xz 26-Feb-2024 00:47 155788 +texlive.infra.i386-netbsd.r70811.tar.xz 31-Mar-2024 00:54 362788 +texlive.infra.i386-netbsd.tar.xz 31-Mar-2024 00:54 362788 +texlive.infra.i386-solaris.r69786.tar.xz 26-Feb-2024 00:47 306484 +texlive.infra.i386-solaris.tar.xz 26-Feb-2024 00:47 306484 +texlive.infra.r75590.tar.xz 23-Jun-2025 23:49 414776 +texlive.infra.tar.xz 23-Jun-2025 23:49 414776 +texlive.infra.universal-darwin.r70811.tar.xz 31-Mar-2024 00:54 308364 +texlive.infra.universal-darwin.tar.xz 31-Mar-2024 00:54 308364 +texlive.infra.windows.r75566.tar.xz 23-Jun-2025 23:49 3085484 +texlive.infra.windows.tar.xz 23-Jun-2025 23:49 3085484 +texlive.infra.x86_64-cygwin.r70811.tar.xz 31-Mar-2024 00:54 180096 +texlive.infra.x86_64-cygwin.tar.xz 31-Mar-2024 00:54 180096 +texlive.infra.x86_64-darwinlegacy.r69786.tar.xz 26-Feb-2024 00:47 326496 +texlive.infra.x86_64-darwinlegacy.tar.xz 26-Feb-2024 00:47 326496 +texlive.infra.x86_64-linux.r70811.tar.xz 31-Mar-2024 00:54 145484 +texlive.infra.x86_64-linux.tar.xz 31-Mar-2024 00:54 145484 +texlive.infra.x86_64-linuxmusl.r69786.tar.xz 26-Feb-2024 00:47 536780 +texlive.infra.x86_64-linuxmusl.tar.xz 26-Feb-2024 00:47 536780 +texlive.infra.x86_64-solaris.r69786.tar.xz 26-Feb-2024 00:47 332328 +texlive.infra.x86_64-solaris.tar.xz 26-Feb-2024 00:47 332328 +texliveonfly.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.aarch64-linux.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.amd64-freebsd.r24062.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.amd64-freebsd.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.amd64-netbsd.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.armhf-linux.r30015.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.armhf-linux.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.doc.r55777.tar.xz 07-Jul-2020 23:58 700 +texliveonfly.doc.tar.xz 07-Jul-2020 23:58 700 +texliveonfly.i386-freebsd.r24062.tar.xz 28-Feb-2019 03:08 348 +texliveonfly.i386-freebsd.tar.xz 28-Feb-2019 03:08 348 +texliveonfly.i386-linux.r24062.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.i386-linux.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.i386-netbsd.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.i386-solaris.r24062.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.i386-solaris.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.r55777.tar.xz 07-Jul-2020 23:58 6132 +texliveonfly.tar.xz 07-Jul-2020 23:58 6132 +texliveonfly.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 348 +texliveonfly.universal-darwin.tar.xz 25-Feb-2021 18:17 348 +texliveonfly.windows.r65891.tar.xz 20-Feb-2023 22:16 2312 +texliveonfly.windows.tar.xz 20-Feb-2023 22:16 2312 +texliveonfly.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.x86_64-cygwin.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:08 352 +texliveonfly.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:08 352 +texliveonfly.x86_64-linux.r24062.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.x86_64-linux.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:08 352 +texliveonfly.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:08 352 +texliveonfly.x86_64-solaris.r24062.tar.xz 28-Feb-2019 03:08 344 +texliveonfly.x86_64-solaris.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.aarch64-linux.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.amd64-freebsd.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.amd64-netbsd.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.armhf-linux.r30015.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.armhf-linux.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.doc.r54526.tar.xz 25-Mar-2020 15:13 760 +texloganalyser.doc.tar.xz 25-Mar-2020 15:13 760 +texloganalyser.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.i386-freebsd.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.i386-linux.r13663.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.i386-linux.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.i386-netbsd.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.i386-solaris.r13898.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.i386-solaris.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.r54526.tar.xz 25-Mar-2020 15:13 4180 +texloganalyser.tar.xz 25-Mar-2020 15:13 4180 +texloganalyser.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +texloganalyser.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +texloganalyser.windows.r65891.tar.xz 20-Feb-2023 22:16 2312 +texloganalyser.windows.tar.xz 20-Feb-2023 22:16 2312 +texloganalyser.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.x86_64-cygwin.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:08 352 +texloganalyser.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:08 352 +texloganalyser.x86_64-linux.r13777.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.x86_64-linux.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:08 348 +texloganalyser.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:08 348 +texloganalyser.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:08 344 +texloganalyser.x86_64-solaris.tar.xz 28-Feb-2019 03:08 344 +texlogfilter.aarch64-linux.r61780.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.aarch64-linux.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.amd64-freebsd.r61780.tar.xz 29-Jan-2022 00:53 344 +texlogfilter.amd64-freebsd.tar.xz 29-Jan-2022 00:53 344 +texlogfilter.amd64-netbsd.r61780.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.amd64-netbsd.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.armhf-linux.r61780.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.armhf-linux.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.doc.r71525.tar.xz 14-Jun-2024 23:48 29540 +texlogfilter.doc.tar.xz 14-Jun-2024 23:48 29540 +texlogfilter.i386-freebsd.r61780.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.i386-freebsd.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.i386-linux.r61780.tar.xz 29-Jan-2022 00:53 336 +texlogfilter.i386-linux.tar.xz 29-Jan-2022 00:53 336 +texlogfilter.i386-netbsd.r61780.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.i386-netbsd.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.i386-solaris.r61780.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.i386-solaris.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.r71525.tar.xz 14-Jun-2024 23:48 3944 +texlogfilter.tar.xz 14-Jun-2024 23:48 3944 +texlogfilter.universal-darwin.r61780.tar.xz 29-Jan-2022 00:53 344 +texlogfilter.universal-darwin.tar.xz 29-Jan-2022 00:53 344 +texlogfilter.windows.r65891.tar.xz 20-Feb-2023 22:16 2308 +texlogfilter.windows.tar.xz 20-Feb-2023 22:16 2308 +texlogfilter.x86_64-cygwin.r61780.tar.xz 29-Jan-2022 00:53 344 +texlogfilter.x86_64-cygwin.tar.xz 29-Jan-2022 00:53 344 +texlogfilter.x86_64-darwinlegacy.r61780.tar.xz 29-Jan-2022 00:53 348 +texlogfilter.x86_64-darwinlegacy.tar.xz 29-Jan-2022 00:53 348 +texlogfilter.x86_64-linux.r61780.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.x86_64-linux.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.x86_64-linuxmusl.r61780.tar.xz 29-Jan-2022 00:53 344 +texlogfilter.x86_64-linuxmusl.tar.xz 29-Jan-2022 00:53 344 +texlogfilter.x86_64-solaris.r61780.tar.xz 29-Jan-2022 00:53 340 +texlogfilter.x86_64-solaris.tar.xz 29-Jan-2022 00:53 340 +texlogos.r19083.tar.xz 28-Feb-2019 03:08 1960 +texlogos.tar.xz 28-Feb-2019 03:08 1960 +texlogsieve.aarch64-linux.r61328.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.aarch64-linux.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.amd64-freebsd.r61328.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.amd64-freebsd.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.amd64-netbsd.r61328.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.amd64-netbsd.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.armhf-linux.r61328.tar.xz 17-Dec-2021 00:53 336 +texlogsieve.armhf-linux.tar.xz 17-Dec-2021 00:53 336 +texlogsieve.doc.r74565.tar.xz 12-Mar-2025 00:50 119668 +texlogsieve.doc.tar.xz 12-Mar-2025 00:50 119668 +texlogsieve.i386-freebsd.r61328.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.i386-freebsd.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.i386-linux.r61328.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.i386-linux.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.i386-netbsd.r61328.tar.xz 17-Dec-2021 00:53 336 +texlogsieve.i386-netbsd.tar.xz 17-Dec-2021 00:53 336 +texlogsieve.i386-solaris.r61328.tar.xz 17-Dec-2021 00:53 336 +texlogsieve.i386-solaris.tar.xz 17-Dec-2021 00:53 336 +texlogsieve.r74565.tar.xz 12-Mar-2025 00:50 49752 +texlogsieve.tar.xz 12-Mar-2025 00:50 49752 +texlogsieve.universal-darwin.r61328.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.universal-darwin.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.windows.r65891.tar.xz 20-Feb-2023 22:16 2308 +texlogsieve.windows.tar.xz 20-Feb-2023 22:16 2308 +texlogsieve.x86_64-cygwin.r61328.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.x86_64-cygwin.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.x86_64-darwinlegacy.r61328.tar.xz 17-Dec-2021 00:53 348 +texlogsieve.x86_64-darwinlegacy.tar.xz 17-Dec-2021 00:53 348 +texlogsieve.x86_64-linux.r61328.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.x86_64-linux.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.x86_64-linuxmusl.r61328.tar.xz 17-Dec-2021 00:53 344 +texlogsieve.x86_64-linuxmusl.tar.xz 17-Dec-2021 00:53 344 +texlogsieve.x86_64-solaris.r61328.tar.xz 17-Dec-2021 00:53 340 +texlogsieve.x86_64-solaris.tar.xz 17-Dec-2021 00:53 340 +texmate.doc.r15878.tar.xz 28-Feb-2019 03:08 233672 +texmate.doc.tar.xz 28-Feb-2019 03:08 233672 +texmate.r15878.tar.xz 28-Feb-2019 03:08 6000 +texmate.source.r15878.tar.xz 28-Feb-2019 03:08 6644 +texmate.source.tar.xz 28-Feb-2019 03:08 6644 +texmate.tar.xz 28-Feb-2019 03:08 6000 +texments.doc.r15878.tar.xz 28-Feb-2019 03:08 87000 +texments.doc.tar.xz 28-Feb-2019 03:08 87000 +texments.r15878.tar.xz 28-Feb-2019 03:08 1352 +texments.source.r15878.tar.xz 28-Feb-2019 03:08 4868 +texments.source.tar.xz 28-Feb-2019 03:08 4868 +texments.tar.xz 28-Feb-2019 03:08 1352 +texnegar.doc.r57692.tar.xz 10-Feb-2021 00:58 2104876 +texnegar.doc.tar.xz 10-Feb-2021 00:58 2104876 +texnegar.r57692.tar.xz 10-Feb-2021 00:58 14600 +texnegar.source.r57692.tar.xz 10-Feb-2021 00:58 17216 +texnegar.source.tar.xz 10-Feb-2021 00:58 17216 +texnegar.tar.xz 10-Feb-2021 00:58 14600 +texonly.doc.r50985.tar.xz 04-May-2019 23:39 73548 +texonly.doc.tar.xz 04-May-2019 23:39 73548 +texonly.r50985.tar.xz 04-May-2019 23:39 456 +texonly.tar.xz 04-May-2019 23:39 456 +texosquery.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:08 384 +texosquery.aarch64-linux.tar.xz 28-Feb-2019 03:08 384 +texosquery.amd64-freebsd.r43596.tar.xz 28-Feb-2019 03:08 384 +texosquery.amd64-freebsd.tar.xz 28-Feb-2019 03:08 384 +texosquery.amd64-netbsd.r43596.tar.xz 28-Feb-2019 03:08 380 +texosquery.amd64-netbsd.tar.xz 28-Feb-2019 03:08 380 +texosquery.armhf-linux.r43596.tar.xz 28-Feb-2019 03:08 384 +texosquery.armhf-linux.tar.xz 28-Feb-2019 03:08 384 +texosquery.doc.r53676.tar.xz 05-Feb-2020 00:55 503224 +texosquery.doc.tar.xz 05-Feb-2020 00:55 503224 +texosquery.i386-freebsd.r43596.tar.xz 28-Feb-2019 03:08 384 +texosquery.i386-freebsd.tar.xz 28-Feb-2019 03:08 384 +texosquery.i386-linux.r43596.tar.xz 28-Feb-2019 03:08 380 +texosquery.i386-linux.tar.xz 28-Feb-2019 03:08 380 +texosquery.i386-netbsd.r43596.tar.xz 28-Feb-2019 03:08 380 +texosquery.i386-netbsd.tar.xz 28-Feb-2019 03:08 380 +texosquery.i386-solaris.r43596.tar.xz 28-Feb-2019 03:08 380 +texosquery.i386-solaris.tar.xz 28-Feb-2019 03:08 380 +texosquery.r53676.tar.xz 05-Feb-2020 00:55 170304 +texosquery.source.r53676.tar.xz 05-Feb-2020 00:55 71404 +texosquery.source.tar.xz 05-Feb-2020 00:55 71404 +texosquery.tar.xz 05-Feb-2020 00:55 170304 +texosquery.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 380 +texosquery.universal-darwin.tar.xz 25-Feb-2021 18:17 380 +texosquery.windows.r65959.tar.xz 20-Feb-2023 22:16 2384 +texosquery.windows.tar.xz 20-Feb-2023 22:16 2384 +texosquery.x86_64-cygwin.r43596.tar.xz 28-Feb-2019 03:08 384 +texosquery.x86_64-cygwin.tar.xz 28-Feb-2019 03:08 384 +texosquery.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:08 388 +texosquery.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:08 388 +texosquery.x86_64-linux.r43596.tar.xz 28-Feb-2019 03:08 380 +texosquery.x86_64-linux.tar.xz 28-Feb-2019 03:08 380 +texosquery.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:08 388 +texosquery.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:08 388 +texosquery.x86_64-solaris.r43596.tar.xz 28-Feb-2019 03:08 384 +texosquery.x86_64-solaris.tar.xz 28-Feb-2019 03:08 384 +texplate.aarch64-linux.r53444.tar.xz 18-Jan-2020 00:54 336 +texplate.aarch64-linux.tar.xz 18-Jan-2020 00:54 336 +texplate.amd64-freebsd.r53444.tar.xz 18-Jan-2020 00:54 340 +texplate.amd64-freebsd.tar.xz 18-Jan-2020 00:54 340 +texplate.amd64-netbsd.r53444.tar.xz 18-Jan-2020 00:54 340 +texplate.amd64-netbsd.tar.xz 18-Jan-2020 00:54 340 +texplate.armhf-linux.r53444.tar.xz 18-Jan-2020 00:54 336 +texplate.armhf-linux.tar.xz 18-Jan-2020 00:54 336 +texplate.doc.r71963.tar.xz 03-Aug-2024 23:59 114940 +texplate.doc.tar.xz 03-Aug-2024 23:59 114940 +texplate.i386-freebsd.r53444.tar.xz 18-Jan-2020 00:54 340 +texplate.i386-freebsd.tar.xz 18-Jan-2020 00:54 340 +texplate.i386-linux.r53444.tar.xz 18-Jan-2020 00:54 340 +texplate.i386-linux.tar.xz 18-Jan-2020 00:54 340 +texplate.i386-netbsd.r53444.tar.xz 18-Jan-2020 00:54 336 +texplate.i386-netbsd.tar.xz 18-Jan-2020 00:54 336 +texplate.i386-solaris.r53444.tar.xz 18-Jan-2020 00:54 340 +texplate.i386-solaris.tar.xz 18-Jan-2020 00:54 340 +texplate.r71963.tar.xz 03-Aug-2024 23:59 3372272 +texplate.source.r71963.tar.xz 03-Aug-2024 23:59 8440 +texplate.source.tar.xz 03-Aug-2024 23:59 8440 +texplate.tar.xz 03-Aug-2024 23:59 3372272 +texplate.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +texplate.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +texplate.windows.r65891.tar.xz 20-Feb-2023 22:16 2304 +texplate.windows.tar.xz 20-Feb-2023 22:16 2304 +texplate.x86_64-cygwin.r53444.tar.xz 18-Jan-2020 00:54 340 +texplate.x86_64-cygwin.tar.xz 18-Jan-2020 00:54 340 +texplate.x86_64-darwinlegacy.r53444.tar.xz 18-Jan-2020 00:54 348 +texplate.x86_64-darwinlegacy.tar.xz 18-Jan-2020 00:54 348 +texplate.x86_64-linux.r53444.tar.xz 18-Jan-2020 00:54 340 +texplate.x86_64-linux.tar.xz 18-Jan-2020 00:54 340 +texplate.x86_64-linuxmusl.r53444.tar.xz 18-Jan-2020 00:54 344 +texplate.x86_64-linuxmusl.tar.xz 18-Jan-2020 00:54 344 +texplate.x86_64-solaris.r53444.tar.xz 18-Jan-2020 00:54 340 +texplate.x86_64-solaris.tar.xz 18-Jan-2020 00:54 340 +texpower.doc.r29349.tar.xz 28-Feb-2019 03:08 330264 +texpower.doc.tar.xz 28-Feb-2019 03:08 330264 +texpower.r29349.tar.xz 28-Feb-2019 03:08 40504 +texpower.source.r29349.tar.xz 28-Feb-2019 03:08 111840 +texpower.source.tar.xz 28-Feb-2019 03:08 111840 +texpower.tar.xz 28-Feb-2019 03:08 40504 +texproposal.doc.r43151.tar.xz 28-Feb-2019 03:08 2152096 +texproposal.doc.tar.xz 28-Feb-2019 03:08 2152096 +texproposal.r43151.tar.xz 28-Feb-2019 03:08 872 +texproposal.tar.xz 28-Feb-2019 03:08 872 +texshade.doc.r69371.tar.xz 11-Jan-2024 00:45 1003064 +texshade.doc.tar.xz 11-Jan-2024 00:45 1003064 +texshade.r69371.tar.xz 11-Jan-2024 00:45 62952 +texshade.source.r69371.tar.xz 11-Jan-2024 00:45 316868 +texshade.source.tar.xz 11-Jan-2024 00:45 316868 +texshade.tar.xz 11-Jan-2024 00:45 62952 +texsis.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:08 324 +texsis.aarch64-linux.tar.xz 28-Feb-2019 03:08 324 +texsis.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:08 324 +texsis.amd64-freebsd.tar.xz 28-Feb-2019 03:08 324 +texsis.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:08 324 +texsis.amd64-netbsd.tar.xz 28-Feb-2019 03:08 324 +texsis.armhf-linux.r30015.tar.xz 28-Feb-2019 03:08 324 +texsis.armhf-linux.tar.xz 28-Feb-2019 03:08 324 +texsis.doc.r69742.tar.xz 08-Feb-2024 00:46 130016 +texsis.doc.tar.xz 08-Feb-2024 00:46 130016 +texsis.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:08 324 +texsis.i386-freebsd.tar.xz 28-Feb-2019 03:08 324 +texsis.i386-linux.r3006.tar.xz 28-Feb-2019 03:08 320 +texsis.i386-linux.tar.xz 28-Feb-2019 03:08 320 +texsis.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:08 320 +texsis.i386-netbsd.tar.xz 28-Feb-2019 03:08 320 +texsis.i386-solaris.r8102.tar.xz 28-Feb-2019 03:08 320 +texsis.i386-solaris.tar.xz 28-Feb-2019 03:08 320 +texsis.r69742.tar.xz 08-Feb-2024 00:46 111108 +texsis.tar.xz 08-Feb-2024 00:46 111108 +texsis.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 320 +texsis.universal-darwin.tar.xz 25-Feb-2021 18:17 320 +texsis.windows.r65891.tar.xz 20-Feb-2023 22:16 2332 +texsis.windows.tar.xz 20-Feb-2023 22:16 2332 +texsis.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:08 328 +texsis.x86_64-cygwin.tar.xz 28-Feb-2019 03:08 328 +texsis.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:08 332 +texsis.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:08 332 +texsis.x86_64-linux.r3185.tar.xz 28-Feb-2019 03:08 320 +texsis.x86_64-linux.tar.xz 28-Feb-2019 03:08 320 +texsis.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:08 324 +texsis.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:08 324 +texsis.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:08 324 +texsis.x86_64-solaris.tar.xz 28-Feb-2019 03:08 324 +texsurgery.doc.r59885.tar.xz 09-Jul-2021 23:53 136868 +texsurgery.doc.tar.xz 09-Jul-2021 23:53 136868 +texsurgery.r59885.tar.xz 09-Jul-2021 23:53 2236 +texsurgery.tar.xz 09-Jul-2021 23:53 2236 +textcase.doc.r75878.tar.xz 23-Jul-2025 23:51 226104 +textcase.doc.tar.xz 23-Jul-2025 23:51 226104 +textcase.r75878.tar.xz 23-Jul-2025 23:51 1908 +textcase.source.r75878.tar.xz 23-Jul-2025 23:51 5556 +textcase.source.tar.xz 23-Jul-2025 23:51 5556 +textcase.tar.xz 23-Jul-2025 23:51 1908 +textcsc.doc.r67193.tar.xz 22-May-2023 23:44 53976 +textcsc.doc.tar.xz 22-May-2023 23:44 53976 +textcsc.r67193.tar.xz 22-May-2023 23:44 1132 +textcsc.tar.xz 22-May-2023 23:44 1132 +textfit.doc.r20591.tar.xz 28-Feb-2019 03:08 162372 +textfit.doc.tar.xz 28-Feb-2019 03:08 162372 +textfit.r20591.tar.xz 28-Feb-2019 03:08 2204 +textfit.source.r20591.tar.xz 28-Feb-2019 03:08 3592 +textfit.source.tar.xz 28-Feb-2019 03:08 3592 +textfit.tar.xz 28-Feb-2019 03:08 2204 +textglos.doc.r30788.tar.xz 28-Feb-2019 03:08 421316 +textglos.doc.tar.xz 28-Feb-2019 03:08 421316 +textglos.r30788.tar.xz 28-Feb-2019 03:08 1832 +textglos.source.r30788.tar.xz 28-Feb-2019 03:08 7652 +textglos.source.tar.xz 28-Feb-2019 03:08 7652 +textglos.tar.xz 28-Feb-2019 03:08 1832 +textgreek.doc.r44192.tar.xz 28-Feb-2019 03:08 459404 +textgreek.doc.tar.xz 28-Feb-2019 03:08 459404 +textgreek.r44192.tar.xz 28-Feb-2019 03:08 2624 +textgreek.source.r44192.tar.xz 28-Feb-2019 03:08 8180 +textgreek.source.tar.xz 28-Feb-2019 03:08 8180 +textgreek.tar.xz 28-Feb-2019 03:08 2624 +textmerg.doc.r20677.tar.xz 28-Feb-2019 03:08 253648 +textmerg.doc.tar.xz 28-Feb-2019 03:08 253648 +textmerg.r20677.tar.xz 28-Feb-2019 03:08 1928 +textmerg.source.r20677.tar.xz 28-Feb-2019 03:08 9948 +textmerg.source.tar.xz 28-Feb-2019 03:08 9948 +textmerg.tar.xz 28-Feb-2019 03:08 1928 +textopo.doc.r23796.tar.xz 28-Feb-2019 03:08 578472 +textopo.doc.tar.xz 28-Feb-2019 03:08 578472 +textopo.r23796.tar.xz 28-Feb-2019 03:08 31844 +textopo.source.r23796.tar.xz 28-Feb-2019 03:08 81908 +textopo.source.tar.xz 28-Feb-2019 03:08 81908 +textopo.tar.xz 28-Feb-2019 03:08 31844 +textpath.doc.r15878.tar.xz 28-Feb-2019 03:08 237628 +textpath.doc.tar.xz 28-Feb-2019 03:08 237628 +textpath.r15878.tar.xz 28-Feb-2019 03:08 4328 +textpath.tar.xz 28-Feb-2019 03:08 4328 +textpos.doc.r75712.tar.xz 07-Jul-2025 23:51 354048 +textpos.doc.tar.xz 07-Jul-2025 23:51 354048 +textpos.r75712.tar.xz 07-Jul-2025 23:51 4224 +textpos.source.r75712.tar.xz 07-Jul-2025 23:51 24740 +textpos.source.tar.xz 07-Jul-2025 23:51 24740 +textpos.tar.xz 07-Jul-2025 23:51 4224 +textualicomma.doc.r67201.tar.xz 23-May-2023 23:44 118032 +textualicomma.doc.tar.xz 23-May-2023 23:44 118032 +textualicomma.r67201.tar.xz 23-May-2023 23:44 1988 +textualicomma.source.r67201.tar.xz 23-May-2023 23:44 5352 +textualicomma.source.tar.xz 23-May-2023 23:44 5352 +textualicomma.tar.xz 23-May-2023 23:44 1988 +texvc.doc.r71883.tar.xz 23-Jul-2024 23:48 305180 +texvc.doc.tar.xz 23-Jul-2024 23:48 305180 +texvc.r71883.tar.xz 23-Jul-2024 23:48 1532 +texvc.source.r71883.tar.xz 23-Jul-2024 23:48 4432 +texvc.source.tar.xz 23-Jul-2024 23:48 4432 +texvc.tar.xz 23-Jul-2024 23:48 1532 +texware.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 49380 +texware.aarch64-linux.tar.xz 13-Feb-2025 00:50 49380 +texware.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 50772 +texware.amd64-freebsd.tar.xz 09-Feb-2025 00:55 50772 +texware.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 48520 +texware.amd64-netbsd.tar.xz 09-Feb-2025 18:16 48520 +texware.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 46864 +texware.armhf-linux.tar.xz 09-Feb-2025 00:55 46864 +texware.doc.r73848.tar.xz 11-Feb-2025 00:48 36820 +texware.doc.tar.xz 11-Feb-2025 00:48 36820 +texware.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 50824 +texware.i386-freebsd.tar.xz 09-Feb-2025 00:55 50824 +texware.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 56644 +texware.i386-linux.tar.xz 09-Feb-2025 00:55 56644 +texware.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 43588 +texware.i386-netbsd.tar.xz 09-Feb-2025 18:16 43588 +texware.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 52792 +texware.i386-solaris.tar.xz 09-Feb-2025 00:55 52792 +texware.r73848.tar.xz 11-Feb-2025 00:48 636 +texware.tar.xz 11-Feb-2025 00:48 636 +texware.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 103652 +texware.universal-darwin.tar.xz 09-Feb-2025 18:16 103652 +texware.windows.r73796.tar.xz 09-Feb-2025 18:16 21208 +texware.windows.tar.xz 09-Feb-2025 18:16 21208 +texware.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 20568 +texware.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 20568 +texware.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 51424 +texware.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 51424 +texware.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 51700 +texware.x86_64-linux.tar.xz 19-Feb-2025 00:47 51700 +texware.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 56024 +texware.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 56024 +texware.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 58988 +texware.x86_64-solaris.tar.xz 09-Feb-2025 00:55 58988 +texworks.doc.r71515.tar.xz 13-Jun-2024 23:46 732 +texworks.doc.tar.xz 13-Jun-2024 23:46 732 +texworks.r71515.tar.xz 13-Jun-2024 23:46 492 +texworks.tar.xz 13-Jun-2024 23:46 492 +texworks.windows.r74508.tar.xz 08-Mar-2025 00:49 19279732 +texworks.windows.tar.xz 08-Mar-2025 00:49 19279732 +tfrupee.doc.r20770.tar.xz 28-Feb-2019 03:08 113240 +tfrupee.doc.tar.xz 28-Feb-2019 03:08 113240 +tfrupee.r20770.tar.xz 28-Feb-2019 03:08 601352 +tfrupee.source.r20770.tar.xz 28-Feb-2019 03:08 538548 +tfrupee.source.tar.xz 28-Feb-2019 03:08 538548 +tfrupee.tar.xz 28-Feb-2019 03:08 601352 +thaienum.doc.r44140.tar.xz 28-Feb-2019 03:08 184444 +thaienum.doc.tar.xz 28-Feb-2019 03:08 184444 +thaienum.r44140.tar.xz 28-Feb-2019 03:08 1556 +thaienum.tar.xz 28-Feb-2019 03:08 1556 +thaispec.doc.r58019.tar.xz 02-Mar-2021 00:27 86548 +thaispec.doc.tar.xz 02-Mar-2021 00:27 86548 +thaispec.r58019.tar.xz 02-Mar-2021 00:27 3240 +thaispec.source.r58019.tar.xz 02-Mar-2021 00:27 7068 +thaispec.source.tar.xz 02-Mar-2021 00:27 7068 +thaispec.tar.xz 02-Mar-2021 00:27 3240 +thalie.doc.r65249.tar.xz 13-Dec-2022 00:55 258292 +thalie.doc.tar.xz 13-Dec-2022 00:55 258292 +thalie.r65249.tar.xz 13-Dec-2022 00:55 5592 +thalie.tar.xz 13-Dec-2022 00:55 5592 +theanodidot.doc.r64518.tar.xz 26-Sep-2022 23:53 44216 +theanodidot.doc.tar.xz 26-Sep-2022 23:53 44216 +theanodidot.r64518.tar.xz 26-Sep-2022 23:53 377196 +theanodidot.tar.xz 26-Sep-2022 23:53 377196 +theanomodern.doc.r64520.tar.xz 26-Sep-2022 23:53 33272 +theanomodern.doc.tar.xz 26-Sep-2022 23:53 33272 +theanomodern.r64520.tar.xz 26-Sep-2022 23:53 401120 +theanomodern.tar.xz 26-Sep-2022 23:53 401120 +theanooldstyle.doc.r64519.tar.xz 26-Sep-2022 23:53 34680 +theanooldstyle.doc.tar.xz 26-Sep-2022 23:53 34680 +theanooldstyle.r64519.tar.xz 26-Sep-2022 23:53 493056 +theanooldstyle.tar.xz 26-Sep-2022 23:53 493056 +theatre.doc.r45363.tar.xz 28-Feb-2019 03:08 124012 +theatre.doc.tar.xz 28-Feb-2019 03:08 124012 +theatre.r45363.tar.xz 28-Feb-2019 03:08 500 +theatre.tar.xz 28-Feb-2019 03:08 500 +thematicpuzzle.doc.r75984.tar.xz 05-Aug-2025 23:45 411048 +thematicpuzzle.doc.tar.xz 05-Aug-2025 23:45 411048 +thematicpuzzle.r75984.tar.xz 05-Aug-2025 23:45 2748 +thematicpuzzle.tar.xz 05-Aug-2025 23:45 2748 +theoremref.doc.r54512.tar.xz 24-Mar-2020 01:04 333032 +theoremref.doc.tar.xz 24-Mar-2020 01:04 333032 +theoremref.r54512.tar.xz 24-Mar-2020 01:04 4104 +theoremref.tar.xz 24-Mar-2020 01:04 4104 +thermodynamics.doc.r71522.tar.xz 14-Jun-2024 23:48 328944 +thermodynamics.doc.tar.xz 14-Jun-2024 23:48 328944 +thermodynamics.r71522.tar.xz 14-Jun-2024 23:48 11124 +thermodynamics.source.r71522.tar.xz 14-Jun-2024 23:48 42000 +thermodynamics.source.tar.xz 14-Jun-2024 23:48 42000 +thermodynamics.tar.xz 14-Jun-2024 23:48 11124 +thesis-ekf.doc.r70980.tar.xz 19-Apr-2024 16:31 197892 +thesis-ekf.doc.tar.xz 19-Apr-2024 16:31 197892 +thesis-ekf.r70980.tar.xz 19-Apr-2024 16:31 113128 +thesis-ekf.source.r70980.tar.xz 19-Apr-2024 16:31 8944 +thesis-ekf.source.tar.xz 19-Apr-2024 16:31 8944 +thesis-ekf.tar.xz 19-Apr-2024 16:31 113128 +thesis-gwu.doc.r54287.tar.xz 14-Mar-2020 00:43 405812 +thesis-gwu.doc.tar.xz 14-Mar-2020 00:43 405812 +thesis-gwu.r54287.tar.xz 14-Mar-2020 00:43 9780 +thesis-gwu.tar.xz 14-Mar-2020 00:43 9780 +thesis-qom.doc.r63524.tar.xz 10-Jun-2022 01:10 1292672 +thesis-qom.doc.tar.xz 10-Jun-2022 01:10 1292672 +thesis-qom.r63524.tar.xz 10-Jun-2022 01:10 13320 +thesis-qom.tar.xz 10-Jun-2022 01:10 13320 +thesis-titlepage-fhac.doc.r15878.tar.xz 28-Feb-2019 03:08 135708 +thesis-titlepage-fhac.doc.tar.xz 28-Feb-2019 03:08 135708 +thesis-titlepage-fhac.r15878.tar.xz 28-Feb-2019 03:08 3132 +thesis-titlepage-fhac.source.r15878.tar.xz 28-Feb-2019 03:08 8004 +thesis-titlepage-fhac.source.tar.xz 28-Feb-2019 03:08 8004 +thesis-titlepage-fhac.tar.xz 28-Feb-2019 03:08 3132 +thinsp.doc.r39669.tar.xz 28-Feb-2019 03:08 297648 +thinsp.doc.tar.xz 28-Feb-2019 03:08 297648 +thinsp.r39669.tar.xz 28-Feb-2019 03:08 1352 +thinsp.tar.xz 28-Feb-2019 03:08 1352 +thmbox.doc.r15878.tar.xz 28-Feb-2019 03:08 93936 +thmbox.doc.tar.xz 28-Feb-2019 03:08 93936 +thmbox.r15878.tar.xz 28-Feb-2019 03:08 2416 +thmbox.source.r15878.tar.xz 28-Feb-2019 03:08 8324 +thmbox.source.tar.xz 28-Feb-2019 03:08 8324 +thmbox.tar.xz 28-Feb-2019 03:08 2416 +thmtools.doc.r67018.tar.xz 04-May-2023 23:54 264936 +thmtools.doc.tar.xz 04-May-2023 23:54 264936 +thmtools.r67018.tar.xz 04-May-2023 23:54 13416 +thmtools.source.r67018.tar.xz 04-May-2023 23:54 20760 +thmtools.source.tar.xz 04-May-2023 23:54 20760 +thmtools.tar.xz 04-May-2023 23:54 13416 +threadcol.doc.r28754.tar.xz 28-Feb-2019 03:08 290856 +threadcol.doc.tar.xz 28-Feb-2019 03:08 290856 +threadcol.r28754.tar.xz 28-Feb-2019 03:08 1764 +threadcol.source.r28754.tar.xz 28-Feb-2019 03:08 93120 +threadcol.source.tar.xz 28-Feb-2019 03:08 93120 +threadcol.tar.xz 28-Feb-2019 03:08 1764 +threeddice.doc.r20675.tar.xz 28-Feb-2019 03:08 119008 +threeddice.doc.tar.xz 28-Feb-2019 03:08 119008 +threeddice.r20675.tar.xz 28-Feb-2019 03:08 2212 +threeddice.tar.xz 28-Feb-2019 03:08 2212 +threeparttable.doc.r17383.tar.xz 28-Feb-2019 03:08 280024 +threeparttable.doc.tar.xz 28-Feb-2019 03:08 280024 +threeparttable.r17383.tar.xz 28-Feb-2019 03:08 5448 +threeparttable.tar.xz 28-Feb-2019 03:08 5448 +threeparttablex.doc.r34206.tar.xz 28-Feb-2019 03:08 64400 +threeparttablex.doc.tar.xz 28-Feb-2019 03:08 64400 +threeparttablex.r34206.tar.xz 28-Feb-2019 03:08 2320 +threeparttablex.tar.xz 28-Feb-2019 03:08 2320 +thuaslogos.doc.r51347.tar.xz 08-Jun-2019 23:38 745228 +thuaslogos.doc.tar.xz 08-Jun-2019 23:38 745228 +thuaslogos.r51347.tar.xz 08-Jun-2019 23:38 44452 +thuaslogos.tar.xz 08-Jun-2019 23:38 44452 +thubeamer.doc.r61071.tar.xz 17-Nov-2021 00:54 695128 +thubeamer.doc.tar.xz 17-Nov-2021 00:54 695128 +thubeamer.r61071.tar.xz 17-Nov-2021 00:54 121904 +thubeamer.source.r61071.tar.xz 17-Nov-2021 00:54 8136 +thubeamer.source.tar.xz 17-Nov-2021 00:54 8136 +thubeamer.tar.xz 17-Nov-2021 00:54 121904 +thucoursework.doc.r56435.tar.xz 25-Sep-2020 23:56 505568 +thucoursework.doc.tar.xz 25-Sep-2020 23:56 505568 +thucoursework.r56435.tar.xz 25-Sep-2020 23:56 2228 +thucoursework.source.r56435.tar.xz 25-Sep-2020 23:56 9256 +thucoursework.source.tar.xz 25-Sep-2020 23:56 9256 +thucoursework.tar.xz 25-Sep-2020 23:56 2228 +thumb.doc.r16549.tar.xz 28-Feb-2019 03:08 194472 +thumb.doc.tar.xz 28-Feb-2019 03:08 194472 +thumb.r16549.tar.xz 28-Feb-2019 03:08 3972 +thumb.source.r16549.tar.xz 28-Feb-2019 03:08 11880 +thumb.source.tar.xz 28-Feb-2019 03:08 11880 +thumb.tar.xz 28-Feb-2019 03:08 3972 +thumbpdf.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.aarch64-linux.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:08 344 +thumbpdf.amd64-freebsd.tar.xz 28-Feb-2019 03:08 344 +thumbpdf.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.amd64-netbsd.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.armhf-linux.r30015.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.armhf-linux.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.doc.r62518.tar.xz 09-Mar-2022 00:53 31216 +thumbpdf.doc.tar.xz 09-Mar-2022 00:53 31216 +thumbpdf.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:08 344 +thumbpdf.i386-freebsd.tar.xz 28-Feb-2019 03:08 344 +thumbpdf.i386-linux.r6898.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.i386-linux.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.i386-netbsd.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.i386-solaris.r8102.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.i386-solaris.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.r62518.tar.xz 09-Mar-2022 00:53 18860 +thumbpdf.tar.xz 09-Mar-2022 00:53 18860 +thumbpdf.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +thumbpdf.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +thumbpdf.windows.r65891.tar.xz 20-Feb-2023 22:17 2308 +thumbpdf.windows.tar.xz 20-Feb-2023 22:17 2308 +thumbpdf.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:08 344 +thumbpdf.x86_64-cygwin.tar.xz 28-Feb-2019 03:08 344 +thumbpdf.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:08 352 +thumbpdf.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:08 352 +thumbpdf.x86_64-linux.r8601.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.x86_64-linux.tar.xz 28-Feb-2019 03:08 340 +thumbpdf.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:08 344 +thumbpdf.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:08 344 +thumbpdf.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:08 344 +thumbpdf.x86_64-solaris.tar.xz 28-Feb-2019 03:08 344 +thumbs.doc.r33134.tar.xz 28-Feb-2019 03:08 701996 +thumbs.doc.tar.xz 28-Feb-2019 03:08 701996 +thumbs.r33134.tar.xz 28-Feb-2019 03:08 10936 +thumbs.source.r33134.tar.xz 28-Feb-2019 03:08 33908 +thumbs.source.tar.xz 28-Feb-2019 03:08 33908 +thumbs.tar.xz 28-Feb-2019 03:08 10936 +thumby.doc.r16736.tar.xz 28-Feb-2019 03:08 155976 +thumby.doc.tar.xz 28-Feb-2019 03:08 155976 +thumby.r16736.tar.xz 28-Feb-2019 03:08 3268 +thumby.tar.xz 28-Feb-2019 03:08 3268 +thuthesis.doc.r74775.tar.xz 29-Mar-2025 00:50 1652656 +thuthesis.doc.tar.xz 29-Mar-2025 00:50 1652656 +thuthesis.r74775.tar.xz 29-Mar-2025 00:50 147816 +thuthesis.source.r74775.tar.xz 29-Mar-2025 00:50 48208 +thuthesis.source.tar.xz 29-Mar-2025 00:50 48208 +thuthesis.tar.xz 29-Mar-2025 00:50 147816 +ticket.doc.r42280.tar.xz 28-Feb-2019 03:08 488008 +ticket.doc.tar.xz 28-Feb-2019 03:08 488008 +ticket.r42280.tar.xz 28-Feb-2019 03:08 3996 +ticket.tar.xz 28-Feb-2019 03:08 3996 +ticollege.doc.r36306.tar.xz 28-Feb-2019 03:08 371572 +ticollege.doc.tar.xz 28-Feb-2019 03:08 371572 +ticollege.r36306.tar.xz 28-Feb-2019 03:08 5040 +ticollege.tar.xz 28-Feb-2019 03:08 5040 +tictactoe.doc.r75712.tar.xz 07-Jul-2025 23:51 289872 +tictactoe.doc.tar.xz 07-Jul-2025 23:51 289872 +tictactoe.r75712.tar.xz 07-Jul-2025 23:51 2576 +tictactoe.source.r75712.tar.xz 07-Jul-2025 23:51 6952 +tictactoe.source.tar.xz 07-Jul-2025 23:51 6952 +tictactoe.tar.xz 07-Jul-2025 23:51 2576 +tidyres.doc.r67738.tar.xz 26-Jul-2023 23:45 56480 +tidyres.doc.tar.xz 26-Jul-2023 23:45 56480 +tidyres.r67738.tar.xz 26-Jul-2023 23:45 1972 +tidyres.tar.xz 26-Jul-2023 23:45 1972 +tie.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 33148 +tie.aarch64-linux.tar.xz 13-Feb-2025 00:50 33148 +tie.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 32404 +tie.amd64-freebsd.tar.xz 09-Feb-2025 00:55 32404 +tie.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 31480 +tie.amd64-netbsd.tar.xz 09-Feb-2025 18:16 31480 +tie.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 30524 +tie.armhf-linux.tar.xz 09-Feb-2025 00:55 30524 +tie.doc.r73848.tar.xz 11-Feb-2025 00:48 16896 +tie.doc.tar.xz 11-Feb-2025 00:48 16896 +tie.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 32392 +tie.i386-freebsd.tar.xz 09-Feb-2025 00:55 32392 +tie.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 39524 +tie.i386-linux.tar.xz 09-Feb-2025 00:55 39524 +tie.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 29012 +tie.i386-netbsd.tar.xz 09-Feb-2025 18:16 29012 +tie.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 34000 +tie.i386-solaris.tar.xz 09-Feb-2025 00:55 34000 +tie.r73848.tar.xz 11-Feb-2025 00:48 476 +tie.tar.xz 11-Feb-2025 00:48 476 +tie.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 64496 +tie.universal-darwin.tar.xz 09-Feb-2025 18:16 64496 +tie.windows.r73796.tar.xz 09-Feb-2025 18:16 5724 +tie.windows.tar.xz 09-Feb-2025 18:16 5724 +tie.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 5152 +tie.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 5152 +tie.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 32304 +tie.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 32304 +tie.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 35072 +tie.x86_64-linux.tar.xz 19-Feb-2025 00:47 35072 +tie.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 35996 +tie.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 35996 +tie.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 37324 +tie.x86_64-solaris.tar.xz 09-Feb-2025 00:55 37324 +tiet-question-paper.doc.r71601.tar.xz 23-Jun-2024 23:47 79244 +tiet-question-paper.doc.tar.xz 23-Jun-2024 23:47 79244 +tiet-question-paper.r71601.tar.xz 23-Jun-2024 23:47 3000 +tiet-question-paper.tar.xz 23-Jun-2024 23:47 3000 +tikz-3dplot.doc.r25087.tar.xz 28-Feb-2019 03:08 391432 +tikz-3dplot.doc.tar.xz 28-Feb-2019 03:08 391432 +tikz-3dplot.r25087.tar.xz 28-Feb-2019 03:08 7812 +tikz-3dplot.tar.xz 28-Feb-2019 03:08 7812 +tikz-among-us.doc.r60880.tar.xz 28-Oct-2021 23:53 5137144 +tikz-among-us.doc.tar.xz 28-Oct-2021 23:53 5137144 +tikz-among-us.r60880.tar.xz 28-Oct-2021 23:53 6536 +tikz-among-us.tar.xz 28-Oct-2021 23:53 6536 +tikz-bagua.doc.r64103.tar.xz 12-Aug-2022 23:52 179120 +tikz-bagua.doc.tar.xz 12-Aug-2022 23:52 179120 +tikz-bagua.r64103.tar.xz 12-Aug-2022 23:52 2036 +tikz-bagua.tar.xz 12-Aug-2022 23:52 2036 +tikz-bayesnet.doc.r38295.tar.xz 28-Feb-2019 03:08 20444 +tikz-bayesnet.doc.tar.xz 28-Feb-2019 03:08 20444 +tikz-bayesnet.r38295.tar.xz 28-Feb-2019 03:08 1748 +tikz-bayesnet.tar.xz 28-Feb-2019 03:08 1748 +tikz-bbox.doc.r57444.tar.xz 17-Jan-2021 00:57 238660 +tikz-bbox.doc.tar.xz 17-Jan-2021 00:57 238660 +tikz-bbox.r57444.tar.xz 17-Jan-2021 00:57 1512 +tikz-bbox.tar.xz 17-Jan-2021 00:57 1512 +tikz-bpmn.doc.r73368.tar.xz 09-Jan-2025 00:49 53668 +tikz-bpmn.doc.tar.xz 09-Jan-2025 00:49 53668 +tikz-bpmn.r73368.tar.xz 09-Jan-2025 00:49 9584 +tikz-bpmn.tar.xz 09-Jan-2025 00:49 9584 +tikz-cd.doc.r59133.tar.xz 08-May-2021 23:54 279924 +tikz-cd.doc.tar.xz 08-May-2021 23:54 279924 +tikz-cd.r59133.tar.xz 08-May-2021 23:54 6364 +tikz-cd.tar.xz 08-May-2021 23:54 6364 +tikz-cookingsymbols.doc.r75636.tar.xz 28-Jun-2025 23:52 91424 +tikz-cookingsymbols.doc.tar.xz 28-Jun-2025 23:52 91424 +tikz-cookingsymbols.r75636.tar.xz 28-Jun-2025 23:52 3080 +tikz-cookingsymbols.tar.xz 28-Jun-2025 23:52 3080 +tikz-decofonts.doc.r76308.tar.xz 13-Sep-2025 23:54 222420 +tikz-decofonts.doc.tar.xz 13-Sep-2025 23:54 222420 +tikz-decofonts.r76308.tar.xz 13-Sep-2025 23:54 9156 +tikz-decofonts.tar.xz 13-Sep-2025 23:54 9156 +tikz-dependency.doc.r54512.tar.xz 24-Mar-2020 01:04 500028 +tikz-dependency.doc.tar.xz 24-Mar-2020 01:04 500028 +tikz-dependency.r54512.tar.xz 24-Mar-2020 01:04 15728 +tikz-dependency.tar.xz 24-Mar-2020 01:04 15728 +tikz-dimline.doc.r35805.tar.xz 28-Feb-2019 03:08 162296 +tikz-dimline.doc.tar.xz 28-Feb-2019 03:08 162296 +tikz-dimline.r35805.tar.xz 28-Feb-2019 03:08 2000 +tikz-dimline.tar.xz 28-Feb-2019 03:08 2000 +tikz-ext.doc.r75014.tar.xz 24-Apr-2025 23:50 707752 +tikz-ext.doc.tar.xz 24-Apr-2025 23:50 707752 +tikz-ext.r75014.tar.xz 24-Apr-2025 23:50 42256 +tikz-ext.tar.xz 24-Apr-2025 23:50 42256 +tikz-feynhand.doc.r51915.tar.xz 20-Aug-2019 23:53 316036 +tikz-feynhand.doc.tar.xz 20-Aug-2019 23:53 316036 +tikz-feynhand.r51915.tar.xz 20-Aug-2019 23:53 6912 +tikz-feynhand.tar.xz 20-Aug-2019 23:53 6912 +tikz-feynman.doc.r56615.tar.xz 10-Oct-2020 00:00 322304 +tikz-feynman.doc.tar.xz 10-Oct-2020 00:00 322304 +tikz-feynman.r56615.tar.xz 10-Oct-2020 00:00 15440 +tikz-feynman.tar.xz 10-Oct-2020 00:00 15440 +tikz-imagelabels.doc.r51490.tar.xz 27-Jun-2019 23:53 972112 +tikz-imagelabels.doc.tar.xz 27-Jun-2019 23:53 972112 +tikz-imagelabels.r51490.tar.xz 27-Jun-2019 23:53 2124 +tikz-imagelabels.source.r51490.tar.xz 27-Jun-2019 23:53 8216 +tikz-imagelabels.source.tar.xz 27-Jun-2019 23:53 8216 +tikz-imagelabels.tar.xz 27-Jun-2019 23:53 2124 +tikz-inet.doc.r15878.tar.xz 28-Feb-2019 03:08 115776 +tikz-inet.doc.tar.xz 28-Feb-2019 03:08 115776 +tikz-inet.r15878.tar.xz 28-Feb-2019 03:08 2832 +tikz-inet.tar.xz 28-Feb-2019 03:08 2832 +tikz-kalender.doc.r52890.tar.xz 23-Nov-2019 00:54 118464 +tikz-kalender.doc.tar.xz 23-Nov-2019 00:54 118464 +tikz-kalender.r52890.tar.xz 23-Nov-2019 00:54 4436 +tikz-kalender.tar.xz 23-Nov-2019 00:54 4436 +tikz-karnaugh.doc.r62040.tar.xz 17-Feb-2022 00:53 358532 +tikz-karnaugh.doc.tar.xz 17-Feb-2022 00:53 358532 +tikz-karnaugh.r62040.tar.xz 17-Feb-2022 00:53 6712 +tikz-karnaugh.tar.xz 17-Feb-2022 00:53 6712 +tikz-ladder.doc.r62992.tar.xz 10-Apr-2022 23:53 292640 +tikz-ladder.doc.tar.xz 10-Apr-2022 23:53 292640 +tikz-ladder.r62992.tar.xz 10-Apr-2022 23:53 4880 +tikz-ladder.tar.xz 10-Apr-2022 23:53 4880 +tikz-lake-fig.doc.r55288.tar.xz 26-May-2020 22:06 61388 +tikz-lake-fig.doc.tar.xz 26-May-2020 22:06 61388 +tikz-lake-fig.r55288.tar.xz 26-May-2020 22:06 4320 +tikz-lake-fig.tar.xz 26-May-2020 22:06 4320 +tikz-layers.doc.r46660.tar.xz 28-Feb-2019 03:08 960 +tikz-layers.doc.tar.xz 28-Feb-2019 03:08 960 +tikz-layers.r46660.tar.xz 28-Feb-2019 03:08 1084 +tikz-layers.tar.xz 28-Feb-2019 03:08 1084 +tikz-mirror-lens.doc.r65500.tar.xz 10-Jan-2023 00:52 1213548 +tikz-mirror-lens.doc.tar.xz 10-Jan-2023 00:52 1213548 +tikz-mirror-lens.r65500.tar.xz 10-Jan-2023 00:52 2876 +tikz-mirror-lens.tar.xz 10-Jan-2023 00:52 2876 +tikz-nef.doc.r55920.tar.xz 23-Jul-2020 23:58 97016 +tikz-nef.doc.tar.xz 23-Jul-2020 23:58 97016 +tikz-nef.r55920.tar.xz 23-Jul-2020 23:58 1288 +tikz-nef.tar.xz 23-Jul-2020 23:58 1288 +tikz-network.doc.r51884.tar.xz 15-Aug-2019 23:54 825808 +tikz-network.doc.tar.xz 15-Aug-2019 23:54 825808 +tikz-network.r51884.tar.xz 15-Aug-2019 23:54 8296 +tikz-network.tar.xz 15-Aug-2019 23:54 8296 +tikz-nfold.doc.r67718.tar.xz 23-Jul-2023 23:46 274432 +tikz-nfold.doc.tar.xz 23-Jul-2023 23:46 274432 +tikz-nfold.r67718.tar.xz 23-Jul-2023 23:46 7816 +tikz-nfold.tar.xz 23-Jul-2023 23:46 7816 +tikz-opm.doc.r32769.tar.xz 28-Feb-2019 03:08 75232 +tikz-opm.doc.tar.xz 28-Feb-2019 03:08 75232 +tikz-opm.r32769.tar.xz 28-Feb-2019 03:08 1872 +tikz-opm.tar.xz 28-Feb-2019 03:08 1872 +tikz-optics.doc.r62977.tar.xz 07-Apr-2022 23:53 393040 +tikz-optics.doc.tar.xz 07-Apr-2022 23:53 393040 +tikz-optics.r62977.tar.xz 07-Apr-2022 23:53 13160 +tikz-optics.tar.xz 07-Apr-2022 23:53 13160 +tikz-osci.doc.r68636.tar.xz 24-Oct-2023 23:45 229352 +tikz-osci.doc.tar.xz 24-Oct-2023 23:45 229352 +tikz-osci.r68636.tar.xz 24-Oct-2023 23:45 3988 +tikz-osci.tar.xz 24-Oct-2023 23:45 3988 +tikz-page.doc.r42039.tar.xz 28-Feb-2019 03:08 564660 +tikz-page.doc.tar.xz 28-Feb-2019 03:08 564660 +tikz-page.r42039.tar.xz 28-Feb-2019 03:08 3600 +tikz-page.source.r42039.tar.xz 28-Feb-2019 03:08 6820 +tikz-page.source.tar.xz 28-Feb-2019 03:08 6820 +tikz-page.tar.xz 28-Feb-2019 03:08 3600 +tikz-palattice.doc.r43442.tar.xz 28-Feb-2019 03:08 518248 +tikz-palattice.doc.tar.xz 28-Feb-2019 03:08 518248 +tikz-palattice.r43442.tar.xz 28-Feb-2019 03:08 5440 +tikz-palattice.tar.xz 28-Feb-2019 03:08 5440 +tikz-planets.doc.r75210.tar.xz 14-May-2025 23:49 176432 +tikz-planets.doc.tar.xz 14-May-2025 23:49 176432 +tikz-planets.r75210.tar.xz 14-May-2025 23:49 4312 +tikz-planets.tar.xz 14-May-2025 23:49 4312 +tikz-qtree.doc.r26108.tar.xz 28-Feb-2019 03:08 111032 +tikz-qtree.doc.tar.xz 28-Feb-2019 03:08 111032 +tikz-qtree.r26108.tar.xz 28-Feb-2019 03:08 7216 +tikz-qtree.tar.xz 28-Feb-2019 03:08 7216 +tikz-relay.doc.r64072.tar.xz 07-Aug-2022 23:55 624812 +tikz-relay.doc.tar.xz 07-Aug-2022 23:55 624812 +tikz-relay.r64072.tar.xz 07-Aug-2022 23:55 6280 +tikz-relay.tar.xz 07-Aug-2022 23:55 6280 +tikz-sfc.doc.r49424.tar.xz 28-Feb-2019 03:08 331232 +tikz-sfc.doc.tar.xz 28-Feb-2019 03:08 331232 +tikz-sfc.r49424.tar.xz 28-Feb-2019 03:08 2824 +tikz-sfc.tar.xz 28-Feb-2019 03:08 2824 +tikz-shields.doc.r75933.tar.xz 31-Jul-2025 23:46 346896 +tikz-shields.doc.tar.xz 31-Jul-2025 23:46 346896 +tikz-shields.r75933.tar.xz 31-Jul-2025 23:46 2580 +tikz-shields.tar.xz 31-Jul-2025 23:46 2580 +tikz-swigs.doc.r59889.tar.xz 11-Jul-2021 23:52 171860 +tikz-swigs.doc.tar.xz 11-Jul-2021 23:52 171860 +tikz-swigs.r59889.tar.xz 11-Jul-2021 23:52 5740 +tikz-swigs.tar.xz 11-Jul-2021 23:52 5740 +tikz-timing.doc.r64967.tar.xz 08-Nov-2022 00:55 468644 +tikz-timing.doc.tar.xz 08-Nov-2022 00:55 468644 +tikz-timing.r64967.tar.xz 08-Nov-2022 00:55 19084 +tikz-timing.source.r64967.tar.xz 08-Nov-2022 00:55 54980 +tikz-timing.source.tar.xz 08-Nov-2022 00:55 54980 +tikz-timing.tar.xz 08-Nov-2022 00:55 19084 +tikz-trackschematic.doc.r63480.tar.xz 03-Jun-2022 23:52 688904 +tikz-trackschematic.doc.tar.xz 03-Jun-2022 23:52 688904 +tikz-trackschematic.r63480.tar.xz 03-Jun-2022 23:52 15740 +tikz-trackschematic.tar.xz 03-Jun-2022 23:52 15740 +tikz-triminos.doc.r73533.tar.xz 21-Jan-2025 00:46 168324 +tikz-triminos.doc.tar.xz 21-Jan-2025 00:46 168324 +tikz-triminos.r73533.tar.xz 21-Jan-2025 00:46 2252 +tikz-triminos.tar.xz 21-Jan-2025 00:46 2252 +tikz-truchet.doc.r50020.tar.xz 28-Feb-2019 03:08 119856 +tikz-truchet.doc.tar.xz 28-Feb-2019 03:08 119856 +tikz-truchet.r50020.tar.xz 28-Feb-2019 03:08 2236 +tikz-truchet.source.r50020.tar.xz 28-Feb-2019 03:08 3476 +tikz-truchet.source.tar.xz 28-Feb-2019 03:08 3476 +tikz-truchet.tar.xz 28-Feb-2019 03:08 2236 +tikz2d-fr.doc.r73069.tar.xz 08-Dec-2024 01:14 579244 +tikz2d-fr.doc.tar.xz 08-Dec-2024 01:14 579244 +tikz2d-fr.r73069.tar.xz 08-Dec-2024 01:14 2716 +tikz2d-fr.tar.xz 08-Dec-2024 01:14 2716 +tikz3d-fr.doc.r75291.tar.xz 22-May-2025 23:48 736260 +tikz3d-fr.doc.tar.xz 22-May-2025 23:48 736260 +tikz3d-fr.r75291.tar.xz 22-May-2025 23:48 4664 +tikz3d-fr.tar.xz 22-May-2025 23:48 4664 +tikzbrickfigurines.doc.r76088.tar.xz 18-Aug-2025 23:48 286560 +tikzbrickfigurines.doc.tar.xz 18-Aug-2025 23:48 286560 +tikzbrickfigurines.r76088.tar.xz 18-Aug-2025 23:48 6940 +tikzbrickfigurines.tar.xz 18-Aug-2025 23:48 6940 +tikzbricks.doc.r73140.tar.xz 17-Dec-2024 00:50 246684 +tikzbricks.doc.tar.xz 17-Dec-2024 00:50 246684 +tikzbricks.r73140.tar.xz 17-Dec-2024 00:50 2388 +tikzbricks.tar.xz 17-Dec-2024 00:50 2388 +tikzcalendarnotes.doc.r75712.tar.xz 07-Jul-2025 23:51 585272 +tikzcalendarnotes.doc.tar.xz 07-Jul-2025 23:51 585272 +tikzcalendarnotes.r75712.tar.xz 07-Jul-2025 23:51 9276 +tikzcalendarnotes.tar.xz 07-Jul-2025 23:51 9276 +tikzcodeblocks.doc.r54758.tar.xz 15-Apr-2020 23:57 481372 +tikzcodeblocks.doc.tar.xz 15-Apr-2020 23:57 481372 +tikzcodeblocks.r54758.tar.xz 15-Apr-2020 23:57 5772 +tikzcodeblocks.tar.xz 15-Apr-2020 23:57 5772 +tikzdotncross.doc.r73605.tar.xz 27-Jan-2025 00:48 220704 +tikzdotncross.doc.tar.xz 27-Jan-2025 00:48 220704 +tikzdotncross.r73605.tar.xz 27-Jan-2025 00:48 3368 +tikzdotncross.tar.xz 27-Jan-2025 00:48 3368 +tikzducks.doc.r73659.tar.xz 01-Feb-2025 00:54 407664 +tikzducks.doc.tar.xz 01-Feb-2025 00:54 407664 +tikzducks.r73659.tar.xz 01-Feb-2025 00:54 18892 +tikzducks.tar.xz 01-Feb-2025 00:54 18892 +tikzfill.doc.r67847.tar.xz 08-Aug-2023 23:44 626980 +tikzfill.doc.tar.xz 08-Aug-2023 23:44 626980 +tikzfill.r67847.tar.xz 08-Aug-2023 23:44 4652 +tikzfill.tar.xz 08-Aug-2023 23:44 4652 +tikzfxgraph.doc.r74987.tar.xz 20-Apr-2025 23:46 596980 +tikzfxgraph.doc.tar.xz 20-Apr-2025 23:46 596980 +tikzfxgraph.r74987.tar.xz 20-Apr-2025 23:46 4644 +tikzfxgraph.tar.xz 20-Apr-2025 23:46 4644 +tikzinclude.doc.r28715.tar.xz 28-Feb-2019 03:08 171152 +tikzinclude.doc.tar.xz 28-Feb-2019 03:08 171152 +tikzinclude.r28715.tar.xz 28-Feb-2019 03:08 1336 +tikzinclude.source.r28715.tar.xz 28-Feb-2019 03:08 3468 +tikzinclude.source.tar.xz 28-Feb-2019 03:08 3468 +tikzinclude.tar.xz 28-Feb-2019 03:08 1336 +tikzlings.doc.r74735.tar.xz 25-Mar-2025 00:49 866988 +tikzlings.doc.tar.xz 25-Mar-2025 00:49 866988 +tikzlings.r74735.tar.xz 25-Mar-2025 00:49 43256 +tikzlings.tar.xz 25-Mar-2025 00:49 43256 +tikzmark.doc.r64819.tar.xz 27-Oct-2022 23:54 510816 +tikzmark.doc.tar.xz 27-Oct-2022 23:54 510816 +tikzmark.r64819.tar.xz 27-Oct-2022 23:54 8656 +tikzmark.source.r64819.tar.xz 27-Oct-2022 23:54 26784 +tikzmark.source.tar.xz 27-Oct-2022 23:54 26784 +tikzmark.tar.xz 27-Oct-2022 23:54 8656 +tikzmarmots.doc.r73100.tar.xz 12-Dec-2024 00:50 209904 +tikzmarmots.doc.tar.xz 12-Dec-2024 00:50 209904 +tikzmarmots.r73100.tar.xz 12-Dec-2024 00:50 2500 +tikzmarmots.tar.xz 12-Dec-2024 00:50 2500 +tikzorbital.doc.r36439.tar.xz 28-Feb-2019 03:08 197628 +tikzorbital.doc.tar.xz 28-Feb-2019 03:08 197628 +tikzorbital.r36439.tar.xz 28-Feb-2019 03:08 3532 +tikzorbital.tar.xz 28-Feb-2019 03:08 3532 +tikzpackets.doc.r55827.tar.xz 13-Jul-2020 23:57 65772 +tikzpackets.doc.tar.xz 13-Jul-2020 23:57 65772 +tikzpackets.r55827.tar.xz 13-Jul-2020 23:57 2260 +tikzpackets.tar.xz 13-Jul-2020 23:57 2260 +tikzpagenodes.doc.r64967.tar.xz 08-Nov-2022 00:55 251304 +tikzpagenodes.doc.tar.xz 08-Nov-2022 00:55 251304 +tikzpagenodes.r64967.tar.xz 08-Nov-2022 00:55 1548 +tikzpagenodes.source.r64967.tar.xz 08-Nov-2022 00:55 3692 +tikzpagenodes.source.tar.xz 08-Nov-2022 00:55 3692 +tikzpagenodes.tar.xz 08-Nov-2022 00:55 1548 +tikzpeople.doc.r67840.tar.xz 07-Aug-2023 23:43 486576 +tikzpeople.doc.tar.xz 07-Aug-2023 23:43 486576 +tikzpeople.r67840.tar.xz 07-Aug-2023 23:43 20696 +tikzpeople.tar.xz 07-Aug-2023 23:43 20696 +tikzpfeile.doc.r25777.tar.xz 28-Feb-2019 03:08 49016 +tikzpfeile.doc.tar.xz 28-Feb-2019 03:08 49016 +tikzpfeile.r25777.tar.xz 28-Feb-2019 03:08 1456 +tikzpfeile.source.r25777.tar.xz 28-Feb-2019 03:08 2428 +tikzpfeile.source.tar.xz 28-Feb-2019 03:08 2428 +tikzpfeile.tar.xz 28-Feb-2019 03:08 1456 +tikzpingus.doc.r75543.tar.xz 18-Jun-2025 23:48 4268316 +tikzpingus.doc.tar.xz 18-Jun-2025 23:48 4268316 +tikzpingus.r75543.tar.xz 18-Jun-2025 23:48 44412 +tikzpingus.tar.xz 18-Jun-2025 23:48 44412 +tikzposter.doc.r32732.tar.xz 28-Feb-2019 03:08 297844 +tikzposter.doc.tar.xz 28-Feb-2019 03:08 297844 +tikzposter.r32732.tar.xz 28-Feb-2019 03:08 11280 +tikzposter.source.r32732.tar.xz 28-Feb-2019 03:08 26040 +tikzposter.source.tar.xz 28-Feb-2019 03:08 26040 +tikzposter.tar.xz 28-Feb-2019 03:08 11280 +tikzquads.doc.r74535.tar.xz 09-Mar-2025 01:12 438656 +tikzquads.doc.tar.xz 09-Mar-2025 01:12 438656 +tikzquads.r74535.tar.xz 09-Mar-2025 01:12 10524 +tikzquads.tar.xz 09-Mar-2025 01:12 10524 +tikzquests.doc.r75031.tar.xz 27-Apr-2025 00:06 312344 +tikzquests.doc.tar.xz 27-Apr-2025 00:06 312344 +tikzquests.r75031.tar.xz 27-Apr-2025 00:06 4232 +tikzquests.tar.xz 27-Apr-2025 00:06 4232 +tikzscale.doc.r30637.tar.xz 28-Feb-2019 03:08 560500 +tikzscale.doc.tar.xz 28-Feb-2019 03:08 560500 +tikzscale.r30637.tar.xz 28-Feb-2019 03:08 4712 +tikzscale.source.r30637.tar.xz 28-Feb-2019 03:08 19780 +tikzscale.source.tar.xz 28-Feb-2019 03:08 19780 +tikzscale.tar.xz 28-Feb-2019 03:08 4712 +tikzsymbols.doc.r61300.tar.xz 15-Dec-2021 00:53 588256 +tikzsymbols.doc.tar.xz 15-Dec-2021 00:53 588256 +tikzsymbols.r61300.tar.xz 15-Dec-2021 00:53 14852 +tikzsymbols.source.r61300.tar.xz 15-Dec-2021 00:53 38096 +tikzsymbols.source.tar.xz 15-Dec-2021 00:53 38096 +tikzsymbols.tar.xz 15-Dec-2021 00:53 14852 +tikztosvg.aarch64-linux.r55132.tar.xz 14-May-2020 14:34 336 +tikztosvg.aarch64-linux.tar.xz 14-May-2020 14:34 336 +tikztosvg.amd64-freebsd.r55132.tar.xz 14-May-2020 14:34 336 +tikztosvg.amd64-freebsd.tar.xz 14-May-2020 14:34 336 +tikztosvg.amd64-netbsd.r55132.tar.xz 14-May-2020 14:34 336 +tikztosvg.amd64-netbsd.tar.xz 14-May-2020 14:34 336 +tikztosvg.armhf-linux.r55132.tar.xz 14-May-2020 14:34 336 +tikztosvg.armhf-linux.tar.xz 14-May-2020 14:34 336 +tikztosvg.doc.r60289.tar.xz 20-Aug-2021 23:53 213584 +tikztosvg.doc.tar.xz 20-Aug-2021 23:53 213584 +tikztosvg.i386-freebsd.r55132.tar.xz 14-May-2020 14:34 336 +tikztosvg.i386-freebsd.tar.xz 14-May-2020 14:34 336 +tikztosvg.i386-linux.r55132.tar.xz 14-May-2020 14:34 336 +tikztosvg.i386-linux.tar.xz 14-May-2020 14:34 336 +tikztosvg.i386-netbsd.r55132.tar.xz 14-May-2020 14:34 336 +tikztosvg.i386-netbsd.tar.xz 14-May-2020 14:34 336 +tikztosvg.i386-solaris.r55132.tar.xz 14-May-2020 14:34 336 +tikztosvg.i386-solaris.tar.xz 14-May-2020 14:34 336 +tikztosvg.r60289.tar.xz 20-Aug-2021 23:53 2052 +tikztosvg.tar.xz 20-Aug-2021 23:53 2052 +tikztosvg.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +tikztosvg.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +tikztosvg.x86_64-cygwin.r55132.tar.xz 14-May-2020 14:34 336 +tikztosvg.x86_64-cygwin.tar.xz 14-May-2020 14:34 336 +tikztosvg.x86_64-darwinlegacy.r55132.tar.xz 14-May-2020 14:34 344 +tikztosvg.x86_64-darwinlegacy.tar.xz 14-May-2020 14:34 344 +tikztosvg.x86_64-linux.r55132.tar.xz 14-May-2020 14:34 336 +tikztosvg.x86_64-linux.tar.xz 14-May-2020 14:34 336 +tikztosvg.x86_64-linuxmusl.r55132.tar.xz 14-May-2020 14:34 340 +tikztosvg.x86_64-linuxmusl.tar.xz 14-May-2020 14:34 340 +tikztosvg.x86_64-solaris.r55132.tar.xz 14-May-2020 14:34 336 +tikztosvg.x86_64-solaris.tar.xz 14-May-2020 14:34 336 +tikzviolinplots.doc.r75043.tar.xz 28-Apr-2025 23:49 311236 +tikzviolinplots.doc.tar.xz 28-Apr-2025 23:49 311236 +tikzviolinplots.r75043.tar.xz 28-Apr-2025 23:49 4108 +tikzviolinplots.tar.xz 28-Apr-2025 23:49 4108 +tile-graphic.doc.r55325.tar.xz 29-May-2020 14:28 6503612 +tile-graphic.doc.tar.xz 29-May-2020 14:28 6503612 +tile-graphic.r55325.tar.xz 29-May-2020 14:28 3700 +tile-graphic.source.r55325.tar.xz 29-May-2020 14:28 13648 +tile-graphic.source.tar.xz 29-May-2020 14:28 13648 +tile-graphic.tar.xz 29-May-2020 14:28 3700 +tilings.doc.r67292.tar.xz 06-Jun-2023 23:44 1004588 +tilings.doc.tar.xz 06-Jun-2023 23:44 1004588 +tilings.r67292.tar.xz 06-Jun-2023 23:44 10648 +tilings.source.r67292.tar.xz 06-Jun-2023 23:44 17676 +tilings.source.tar.xz 06-Jun-2023 23:44 17676 +tilings.tar.xz 06-Jun-2023 23:44 10648 +timbreicmc.doc.r49740.tar.xz 28-Feb-2019 03:08 701320 +timbreicmc.doc.tar.xz 28-Feb-2019 03:08 701320 +timbreicmc.r49740.tar.xz 28-Feb-2019 03:08 15436 +timbreicmc.source.r49740.tar.xz 28-Feb-2019 03:08 20352 +timbreicmc.source.tar.xz 28-Feb-2019 03:08 20352 +timbreicmc.tar.xz 28-Feb-2019 03:08 15436 +timechart.doc.r74560.tar.xz 11-Mar-2025 00:51 857236 +timechart.doc.tar.xz 11-Mar-2025 00:51 857236 +timechart.r74560.tar.xz 11-Mar-2025 00:51 7904 +timechart.source.r74560.tar.xz 11-Mar-2025 00:51 25320 +timechart.source.tar.xz 11-Mar-2025 00:51 25320 +timechart.tar.xz 11-Mar-2025 00:51 7904 +timeop.doc.r75112.tar.xz 05-May-2025 23:48 392620 +timeop.doc.tar.xz 05-May-2025 23:48 392620 +timeop.r75112.tar.xz 05-May-2025 23:48 2136 +timeop.tar.xz 05-May-2025 23:48 2136 +times.r61719.tar.xz 24-Jan-2022 00:56 286904 +times.tar.xz 24-Jan-2022 00:56 286904 +timetable.r15878.tar.xz 28-Feb-2019 03:08 7400 +timetable.tar.xz 28-Feb-2019 03:08 7400 +timing-diagrams.doc.r31491.tar.xz 28-Feb-2019 03:08 98352 +timing-diagrams.doc.tar.xz 28-Feb-2019 03:08 98352 +timing-diagrams.r31491.tar.xz 28-Feb-2019 03:08 2372 +timing-diagrams.tar.xz 28-Feb-2019 03:08 2372 +tinos.doc.r68950.tar.xz 24-Nov-2023 00:43 29268 +tinos.doc.tar.xz 24-Nov-2023 00:43 29268 +tinos.r68950.tar.xz 24-Nov-2023 00:43 3230748 +tinos.tar.xz 24-Nov-2023 00:43 3230748 +tipa-de.doc.r22005.tar.xz 28-Feb-2019 03:08 3676376 +tipa-de.doc.tar.xz 28-Feb-2019 03:08 3676376 +tipa-de.r22005.tar.xz 28-Feb-2019 03:08 416 +tipa-de.tar.xz 28-Feb-2019 03:08 416 +tipa.doc.r29349.tar.xz 28-Feb-2019 03:08 2343456 +tipa.doc.tar.xz 28-Feb-2019 03:08 2343456 +tipa.r29349.tar.xz 28-Feb-2019 03:08 2876104 +tipa.tar.xz 28-Feb-2019 03:08 2876104 +tipauni.doc.r65817.tar.xz 14-Feb-2023 00:53 286544 +tipauni.doc.tar.xz 14-Feb-2023 00:53 286544 +tipauni.r65817.tar.xz 14-Feb-2023 00:53 6744 +tipauni.source.r65817.tar.xz 14-Feb-2023 00:53 14984 +tipauni.source.tar.xz 14-Feb-2023 00:53 14984 +tipauni.tar.xz 14-Feb-2023 00:53 6744 +tipfr.doc.r38646.tar.xz 28-Feb-2019 03:08 381176 +tipfr.doc.tar.xz 28-Feb-2019 03:08 381176 +tipfr.r38646.tar.xz 28-Feb-2019 03:08 5880 +tipfr.tar.xz 28-Feb-2019 03:08 5880 +tiscreen.doc.r62602.tar.xz 11-Mar-2022 00:55 228132 +tiscreen.doc.tar.xz 11-Mar-2022 00:55 228132 +tiscreen.r62602.tar.xz 11-Mar-2022 00:55 3188 +tiscreen.tar.xz 11-Mar-2022 00:55 3188 +titlecaps.doc.r63020.tar.xz 13-Apr-2022 23:53 272576 +titlecaps.doc.tar.xz 13-Apr-2022 23:53 272576 +titlecaps.r63020.tar.xz 13-Apr-2022 23:53 4248 +titlecaps.tar.xz 13-Apr-2022 23:53 4248 +titlefoot.r15878.tar.xz 28-Feb-2019 03:08 2928 +titlefoot.tar.xz 28-Feb-2019 03:08 2928 +titlepages.doc.r19457.tar.xz 28-Feb-2019 03:08 887312 +titlepages.doc.tar.xz 28-Feb-2019 03:08 887312 +titlepages.r19457.tar.xz 28-Feb-2019 03:08 480 +titlepages.tar.xz 28-Feb-2019 03:08 480 +titlepic.doc.r43497.tar.xz 28-Feb-2019 03:08 125016 +titlepic.doc.tar.xz 28-Feb-2019 03:08 125016 +titlepic.r43497.tar.xz 28-Feb-2019 03:08 1472 +titlepic.tar.xz 28-Feb-2019 03:08 1472 +titleref.doc.r18729.tar.xz 28-Feb-2019 03:08 200724 +titleref.doc.tar.xz 28-Feb-2019 03:08 200724 +titleref.r18729.tar.xz 28-Feb-2019 03:08 2924 +titleref.tar.xz 28-Feb-2019 03:08 2924 +titlesec.doc.r73302.tar.xz 05-Jan-2025 01:01 683424 +titlesec.doc.tar.xz 05-Jan-2025 01:01 683424 +titlesec.r73302.tar.xz 05-Jan-2025 01:01 19900 +titlesec.tar.xz 05-Jan-2025 01:01 19900 +titling.doc.r15878.tar.xz 28-Feb-2019 03:08 175188 +titling.doc.tar.xz 28-Feb-2019 03:08 175188 +titling.r15878.tar.xz 28-Feb-2019 03:08 2524 +titling.source.r15878.tar.xz 28-Feb-2019 03:08 14800 +titling.source.tar.xz 28-Feb-2019 03:08 14800 +titling.tar.xz 28-Feb-2019 03:08 2524 +tkz-base.doc.r69460.tar.xz 17-Jan-2024 00:46 368052 +tkz-base.doc.tar.xz 17-Jan-2024 00:46 368052 +tkz-base.r69460.tar.xz 17-Jan-2024 00:46 16296 +tkz-base.tar.xz 17-Jan-2024 00:46 16296 +tkz-berge.doc.r57485.tar.xz 22-Jan-2021 00:57 924656 +tkz-berge.doc.tar.xz 22-Jan-2021 00:57 924656 +tkz-berge.r57485.tar.xz 22-Jan-2021 00:57 8444 +tkz-berge.tar.xz 22-Jan-2021 00:57 8444 +tkz-bernoulli.doc.r73069.tar.xz 08-Dec-2024 01:14 194804 +tkz-bernoulli.doc.tar.xz 08-Dec-2024 01:14 194804 +tkz-bernoulli.r73069.tar.xz 08-Dec-2024 01:14 2540 +tkz-bernoulli.tar.xz 08-Dec-2024 01:14 2540 +tkz-doc.doc.r68665.tar.xz 26-Oct-2023 23:45 34436 +tkz-doc.doc.tar.xz 26-Oct-2023 23:45 34436 +tkz-doc.r68665.tar.xz 26-Oct-2023 23:45 6744 +tkz-doc.tar.xz 26-Oct-2023 23:45 6744 +tkz-elements.doc.r76391.tar.xz 24-Sep-2025 23:49 2402880 +tkz-elements.doc.tar.xz 24-Sep-2025 23:49 2402880 +tkz-elements.r76391.tar.xz 24-Sep-2025 23:49 41736 +tkz-elements.tar.xz 24-Sep-2025 23:49 41736 +tkz-euclide.doc.r76332.tar.xz 17-Sep-2025 23:50 1158484 +tkz-euclide.doc.tar.xz 17-Sep-2025 23:50 1158484 +tkz-euclide.r76332.tar.xz 17-Sep-2025 23:50 42336 +tkz-euclide.tar.xz 17-Sep-2025 23:50 42336 +tkz-fct.doc.r61949.tar.xz 09-Feb-2022 00:52 749696 +tkz-fct.doc.tar.xz 09-Feb-2022 00:52 749696 +tkz-fct.r61949.tar.xz 09-Feb-2022 00:52 4740 +tkz-fct.tar.xz 09-Feb-2022 00:52 4740 +tkz-graph.doc.r57484.tar.xz 22-Jan-2021 00:57 325056 +tkz-graph.doc.tar.xz 22-Jan-2021 00:57 325056 +tkz-graph.r57484.tar.xz 22-Jan-2021 00:57 6216 +tkz-graph.tar.xz 22-Jan-2021 00:57 6216 +tkz-grapheur.doc.r76119.tar.xz 22-Aug-2025 23:51 2755864 +tkz-grapheur.doc.tar.xz 22-Aug-2025 23:51 2755864 +tkz-grapheur.r76119.tar.xz 22-Aug-2025 23:51 20764 +tkz-grapheur.tar.xz 22-Aug-2025 23:51 20764 +tkz-orm.doc.r61719.tar.xz 24-Jan-2022 00:56 431372 +tkz-orm.doc.tar.xz 24-Jan-2022 00:56 431372 +tkz-orm.r61719.tar.xz 24-Jan-2022 00:56 7520 +tkz-orm.tar.xz 24-Jan-2022 00:56 7520 +tkz-tab.doc.r66115.tar.xz 24-Feb-2023 01:02 364180 +tkz-tab.doc.tar.xz 24-Feb-2023 01:02 364180 +tkz-tab.r66115.tar.xz 24-Feb-2023 01:02 6516 +tkz-tab.tar.xz 24-Feb-2023 01:02 6516 +tkzexample.doc.r63908.tar.xz 15-Jul-2022 23:53 96832 +tkzexample.doc.tar.xz 15-Jul-2022 23:53 96832 +tkzexample.r63908.tar.xz 15-Jul-2022 23:53 3872 +tkzexample.tar.xz 15-Jul-2022 23:53 3872 +tlc-article.doc.r51431.tar.xz 23-Jun-2019 23:39 439380 +tlc-article.doc.tar.xz 23-Jun-2019 23:39 439380 +tlc-article.r51431.tar.xz 23-Jun-2019 23:39 3908 +tlc-article.tar.xz 23-Jun-2019 23:39 3908 +tlc2.doc.r26096.tar.xz 28-Feb-2019 03:09 114656 +tlc2.doc.tar.xz 28-Feb-2019 03:09 114656 +tlc2.r26096.tar.xz 28-Feb-2019 03:09 484 +tlc2.tar.xz 28-Feb-2019 03:09 484 +tlc3-examples.doc.r65496.tar.xz 09-Jan-2023 00:53 1878976 +tlc3-examples.doc.tar.xz 09-Jan-2023 00:53 1878976 +tlc3-examples.r65496.tar.xz 09-Jan-2023 00:53 588 +tlc3-examples.tar.xz 09-Jan-2023 00:53 588 +tlcockpit.aarch64-linux.r46798.tar.xz 28-Feb-2019 03:09 340 +tlcockpit.aarch64-linux.tar.xz 28-Feb-2019 03:09 340 +tlcockpit.amd64-freebsd.r46798.tar.xz 28-Feb-2019 03:09 344 +tlcockpit.amd64-freebsd.tar.xz 28-Feb-2019 03:09 344 +tlcockpit.amd64-netbsd.r46798.tar.xz 28-Feb-2019 03:09 344 +tlcockpit.amd64-netbsd.tar.xz 28-Feb-2019 03:09 344 +tlcockpit.armhf-linux.r46798.tar.xz 28-Feb-2019 03:09 340 +tlcockpit.armhf-linux.tar.xz 28-Feb-2019 03:09 340 +tlcockpit.doc.r54857.tar.xz 23-Apr-2020 23:56 1023876 +tlcockpit.doc.tar.xz 23-Apr-2020 23:56 1023876 +tlcockpit.i386-freebsd.r46798.tar.xz 28-Feb-2019 03:09 344 +tlcockpit.i386-freebsd.tar.xz 28-Feb-2019 03:09 344 +tlcockpit.i386-linux.r46798.tar.xz 28-Feb-2019 03:09 344 +tlcockpit.i386-linux.tar.xz 28-Feb-2019 03:09 344 +tlcockpit.i386-netbsd.r46798.tar.xz 28-Feb-2019 03:09 340 +tlcockpit.i386-netbsd.tar.xz 28-Feb-2019 03:09 340 +tlcockpit.i386-solaris.r46798.tar.xz 28-Feb-2019 03:09 340 +tlcockpit.i386-solaris.tar.xz 28-Feb-2019 03:09 340 +tlcockpit.r54857.tar.xz 23-Apr-2020 23:56 71652184 +tlcockpit.source.r54857.tar.xz 23-Apr-2020 23:56 97896 +tlcockpit.source.tar.xz 23-Apr-2020 23:56 97896 +tlcockpit.tar.xz 23-Apr-2020 23:56 71652184 +tlcockpit.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +tlcockpit.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +tlcockpit.windows.r66270.tar.xz 02-Mar-2023 00:55 17636 +tlcockpit.windows.tar.xz 02-Mar-2023 00:55 17636 +tlcockpit.x86_64-cygwin.r46798.tar.xz 28-Feb-2019 03:09 344 +tlcockpit.x86_64-cygwin.tar.xz 28-Feb-2019 03:09 344 +tlcockpit.x86_64-darwinlegacy.r46798.tar.xz 28-Feb-2019 03:09 352 +tlcockpit.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:09 352 +tlcockpit.x86_64-linux.r46798.tar.xz 28-Feb-2019 03:09 340 +tlcockpit.x86_64-linux.tar.xz 28-Feb-2019 03:09 340 +tlcockpit.x86_64-linuxmusl.r47036.tar.xz 28-Feb-2019 03:09 348 +tlcockpit.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:09 348 +tlcockpit.x86_64-solaris.r46798.tar.xz 28-Feb-2019 03:09 340 +tlcockpit.x86_64-solaris.tar.xz 28-Feb-2019 03:09 340 +tlgs.windows.r76271.tar.xz 10-Sep-2025 23:49 8856140 +tlgs.windows.tar.xz 10-Sep-2025 23:49 8856140 +tlmgr-intro-zh-cn.doc.r59100.tar.xz 06-May-2021 23:53 444724 +tlmgr-intro-zh-cn.doc.tar.xz 06-May-2021 23:53 444724 +tlmgr-intro-zh-cn.r59100.tar.xz 06-May-2021 23:53 492 +tlmgr-intro-zh-cn.tar.xz 06-May-2021 23:53 492 +tlmgrbasics.doc.r75236.tar.xz 16-May-2025 23:48 162576 +tlmgrbasics.doc.tar.xz 16-May-2025 23:48 162576 +tlmgrbasics.r75236.tar.xz 16-May-2025 23:48 428 +tlmgrbasics.tar.xz 16-May-2025 23:48 428 +tlperl.windows.r74256.tar.xz 25-Feb-2025 00:51 12277884 +tlperl.windows.tar.xz 25-Feb-2025 00:51 12277884 +tlshell.aarch64-linux.r46228.tar.xz 05-Jul-2019 23:55 340 +tlshell.aarch64-linux.tar.xz 05-Jul-2019 23:55 340 +tlshell.amd64-freebsd.r45015.tar.xz 05-Jul-2019 23:55 344 +tlshell.amd64-freebsd.tar.xz 05-Jul-2019 23:55 344 +tlshell.amd64-netbsd.r45015.tar.xz 05-Jul-2019 23:55 340 +tlshell.amd64-netbsd.tar.xz 05-Jul-2019 23:55 340 +tlshell.armhf-linux.r45015.tar.xz 05-Jul-2019 23:55 340 +tlshell.armhf-linux.tar.xz 05-Jul-2019 23:55 340 +tlshell.doc.r75412.tar.xz 06-Jun-2025 23:50 668 +tlshell.doc.tar.xz 06-Jun-2025 23:50 668 +tlshell.i386-freebsd.r45015.tar.xz 05-Jul-2019 23:55 340 +tlshell.i386-freebsd.tar.xz 05-Jul-2019 23:55 340 +tlshell.i386-linux.r45015.tar.xz 05-Jul-2019 23:55 340 +tlshell.i386-linux.tar.xz 05-Jul-2019 23:55 340 +tlshell.i386-netbsd.r45015.tar.xz 05-Jul-2019 23:55 340 +tlshell.i386-netbsd.tar.xz 05-Jul-2019 23:55 340 +tlshell.i386-solaris.r45015.tar.xz 05-Jul-2019 23:55 340 +tlshell.i386-solaris.tar.xz 05-Jul-2019 23:55 340 +tlshell.r75412.tar.xz 06-Jun-2025 23:50 33144 +tlshell.tar.xz 06-Jun-2025 23:50 33144 +tlshell.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +tlshell.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +tlshell.windows.r74302.tar.xz 27-Feb-2025 00:50 2897116 +tlshell.windows.tar.xz 27-Feb-2025 00:50 2897116 +tlshell.x86_64-cygwin.r45015.tar.xz 05-Jul-2019 23:55 340 +tlshell.x86_64-cygwin.tar.xz 05-Jul-2019 23:55 340 +tlshell.x86_64-darwinlegacy.r45015.tar.xz 05-Jul-2019 23:55 348 +tlshell.x86_64-darwinlegacy.tar.xz 05-Jul-2019 23:55 348 +tlshell.x86_64-linux.r45015.tar.xz 05-Jul-2019 23:55 340 +tlshell.x86_64-linux.tar.xz 05-Jul-2019 23:55 340 +tlshell.x86_64-linuxmusl.r47036.tar.xz 05-Jul-2019 23:55 344 +tlshell.x86_64-linuxmusl.tar.xz 05-Jul-2019 23:55 344 +tlshell.x86_64-solaris.r45015.tar.xz 05-Jul-2019 23:55 340 +tlshell.x86_64-solaris.tar.xz 05-Jul-2019 23:55 340 +to-be-determined.doc.r72527.tar.xz 11-Oct-2024 23:46 261296 +to-be-determined.doc.tar.xz 11-Oct-2024 23:46 261296 +to-be-determined.r72527.tar.xz 11-Oct-2024 23:46 1596 +to-be-determined.source.r72527.tar.xz 11-Oct-2024 23:46 3056 +to-be-determined.source.tar.xz 11-Oct-2024 23:46 3056 +to-be-determined.tar.xz 11-Oct-2024 23:46 1596 +tocbibind.doc.r20085.tar.xz 28-Feb-2019 03:09 311568 +tocbibind.doc.tar.xz 28-Feb-2019 03:09 311568 +tocbibind.r20085.tar.xz 28-Feb-2019 03:09 2916 +tocbibind.source.r20085.tar.xz 28-Feb-2019 03:09 12776 +tocbibind.source.tar.xz 28-Feb-2019 03:09 12776 +tocbibind.tar.xz 28-Feb-2019 03:09 2916 +tocdata.doc.r69512.tar.xz 21-Jan-2024 00:52 949636 +tocdata.doc.tar.xz 21-Jan-2024 00:52 949636 +tocdata.r69512.tar.xz 21-Jan-2024 00:52 3384 +tocdata.source.r69512.tar.xz 21-Jan-2024 00:52 12084 +tocdata.source.tar.xz 21-Jan-2024 00:52 12084 +tocdata.tar.xz 21-Jan-2024 00:52 3384 +tocloft.doc.r75878.tar.xz 23-Jul-2025 23:51 496684 +tocloft.doc.tar.xz 23-Jul-2025 23:51 496684 +tocloft.r75878.tar.xz 23-Jul-2025 23:51 6152 +tocloft.source.r75878.tar.xz 23-Jul-2025 23:51 29068 +tocloft.source.tar.xz 23-Jul-2025 23:51 29068 +tocloft.tar.xz 23-Jul-2025 23:51 6152 +tocvsec2.doc.r33146.tar.xz 28-Feb-2019 03:09 302304 +tocvsec2.doc.tar.xz 28-Feb-2019 03:09 302304 +tocvsec2.r33146.tar.xz 28-Feb-2019 03:09 1924 +tocvsec2.source.r33146.tar.xz 28-Feb-2019 03:09 8052 +tocvsec2.source.tar.xz 28-Feb-2019 03:09 8052 +tocvsec2.tar.xz 28-Feb-2019 03:09 1924 +todo.doc.r17746.tar.xz 28-Feb-2019 03:09 179880 +todo.doc.tar.xz 28-Feb-2019 03:09 179880 +todo.r17746.tar.xz 28-Feb-2019 03:09 1900 +todo.source.r17746.tar.xz 28-Feb-2019 03:09 7408 +todo.source.tar.xz 28-Feb-2019 03:09 7408 +todo.tar.xz 28-Feb-2019 03:09 1900 +todonotes.doc.r69319.tar.xz 07-Jan-2024 00:51 469912 +todonotes.doc.tar.xz 07-Jan-2024 00:51 469912 +todonotes.r69319.tar.xz 07-Jan-2024 00:51 4896 +todonotes.source.r69319.tar.xz 07-Jan-2024 00:51 19920 +todonotes.source.tar.xz 07-Jan-2024 00:51 19920 +todonotes.tar.xz 07-Jan-2024 00:51 4896 +tokcycle.doc.r74841.tar.xz 03-Apr-2025 23:51 1258568 +tokcycle.doc.tar.xz 03-Apr-2025 23:51 1258568 +tokcycle.r74841.tar.xz 03-Apr-2025 23:51 6560 +tokcycle.tar.xz 03-Apr-2025 23:51 6560 +tokenizer.doc.r15878.tar.xz 28-Feb-2019 03:09 73892 +tokenizer.doc.tar.xz 28-Feb-2019 03:09 73892 +tokenizer.r15878.tar.xz 28-Feb-2019 03:09 2116 +tokenizer.tar.xz 28-Feb-2019 03:09 2116 +tokmap.doc.r75599.tar.xz 24-Jun-2025 23:50 840 +tokmap.doc.tar.xz 24-Jun-2025 23:50 840 +tokmap.r75599.tar.xz 24-Jun-2025 23:50 1472 +tokmap.tar.xz 24-Jun-2025 23:50 1472 +tonevalue.doc.r60058.tar.xz 25-Jul-2021 23:54 154900 +tonevalue.doc.tar.xz 25-Jul-2021 23:54 154900 +tonevalue.r60058.tar.xz 25-Jul-2021 23:54 2440 +tonevalue.tar.xz 25-Jul-2021 23:54 2440 +toolbox.doc.r32260.tar.xz 28-Feb-2019 03:09 142452 +toolbox.doc.tar.xz 28-Feb-2019 03:09 142452 +toolbox.r32260.tar.xz 28-Feb-2019 03:09 3052 +toolbox.source.r32260.tar.xz 28-Feb-2019 03:09 24148 +toolbox.source.tar.xz 28-Feb-2019 03:09 24148 +toolbox.tar.xz 28-Feb-2019 03:09 3052 +tools.doc.r75470.tar.xz 10-Jun-2025 23:48 6259912 +tools.doc.tar.xz 10-Jun-2025 23:48 6259912 +tools.r75470.tar.xz 10-Jun-2025 23:48 47552 +tools.source.r75470.tar.xz 10-Jun-2025 23:48 245276 +tools.source.tar.xz 10-Jun-2025 23:48 245276 +tools.tar.xz 10-Jun-2025 23:48 47552 +topfloat.doc.r19084.tar.xz 28-Feb-2019 03:09 40340 +topfloat.doc.tar.xz 28-Feb-2019 03:09 40340 +topfloat.r19084.tar.xz 28-Feb-2019 03:09 1392 +topfloat.tar.xz 28-Feb-2019 03:09 1392 +topiclongtable.doc.r54758.tar.xz 15-Apr-2020 23:57 379756 +topiclongtable.doc.tar.xz 15-Apr-2020 23:57 379756 +topiclongtable.r54758.tar.xz 15-Apr-2020 23:57 4348 +topiclongtable.tar.xz 15-Apr-2020 23:57 4348 +topletter.doc.r48182.tar.xz 28-Feb-2019 03:09 363444 +topletter.doc.tar.xz 28-Feb-2019 03:09 363444 +topletter.r48182.tar.xz 28-Feb-2019 03:09 2552 +topletter.source.r48182.tar.xz 28-Feb-2019 03:09 6292 +topletter.source.tar.xz 28-Feb-2019 03:09 6292 +topletter.tar.xz 28-Feb-2019 03:09 2552 +toptesi.doc.r73464.tar.xz 16-Jan-2025 00:47 5819400 +toptesi.doc.tar.xz 16-Jan-2025 00:47 5819400 +toptesi.r73464.tar.xz 16-Jan-2025 00:47 20484 +toptesi.source.r73464.tar.xz 16-Jan-2025 00:47 97112 +toptesi.source.tar.xz 16-Jan-2025 00:47 97112 +toptesi.tar.xz 16-Jan-2025 00:47 20484 +totalcount.doc.r67201.tar.xz 23-May-2023 23:44 74160 +totalcount.doc.tar.xz 23-May-2023 23:44 74160 +totalcount.r67201.tar.xz 23-May-2023 23:44 1640 +totalcount.source.r67201.tar.xz 23-May-2023 23:44 4612 +totalcount.source.tar.xz 23-May-2023 23:44 4612 +totalcount.tar.xz 23-May-2023 23:44 1640 +totcount.doc.r21178.tar.xz 28-Feb-2019 03:09 286576 +totcount.doc.tar.xz 28-Feb-2019 03:09 286576 +totcount.r21178.tar.xz 28-Feb-2019 03:09 2272 +totcount.source.r21178.tar.xz 28-Feb-2019 03:09 6680 +totcount.source.tar.xz 28-Feb-2019 03:09 6680 +totcount.tar.xz 28-Feb-2019 03:09 2272 +totpages.doc.r15878.tar.xz 28-Feb-2019 03:09 177300 +totpages.doc.tar.xz 28-Feb-2019 03:09 177300 +totpages.r15878.tar.xz 28-Feb-2019 03:09 3032 +totpages.source.r15878.tar.xz 28-Feb-2019 03:09 9836 +totpages.source.tar.xz 28-Feb-2019 03:09 9836 +totpages.tar.xz 28-Feb-2019 03:09 3032 +tpic2pdftex.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 4300 +tpic2pdftex.aarch64-linux.tar.xz 13-Feb-2025 00:50 4300 +tpic2pdftex.amd64-freebsd.r69782.tar.xz 10-Feb-2024 23:04 4300 +tpic2pdftex.amd64-freebsd.tar.xz 10-Feb-2024 23:04 4300 +tpic2pdftex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:09 4332 +tpic2pdftex.amd64-netbsd.tar.xz 28-Feb-2019 03:09 4332 +tpic2pdftex.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 4300 +tpic2pdftex.armhf-linux.tar.xz 09-Feb-2025 00:55 4300 +tpic2pdftex.doc.r75712.tar.xz 07-Jul-2025 23:51 54428 +tpic2pdftex.doc.tar.xz 07-Jul-2025 23:51 54428 +tpic2pdftex.i386-freebsd.r69782.tar.xz 10-Feb-2024 23:04 4300 +tpic2pdftex.i386-freebsd.tar.xz 10-Feb-2024 23:04 4300 +tpic2pdftex.i386-linux.r50281.tar.xz 08-Mar-2019 01:28 4296 +tpic2pdftex.i386-linux.tar.xz 08-Mar-2019 01:28 4296 +tpic2pdftex.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:09 4328 +tpic2pdftex.i386-netbsd.tar.xz 28-Feb-2019 03:09 4328 +tpic2pdftex.i386-solaris.r69782.tar.xz 10-Feb-2024 23:04 4304 +tpic2pdftex.i386-solaris.tar.xz 10-Feb-2024 23:04 4304 +tpic2pdftex.r75712.tar.xz 07-Jul-2025 23:51 448 +tpic2pdftex.tar.xz 07-Jul-2025 23:51 448 +tpic2pdftex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 4324 +tpic2pdftex.universal-darwin.tar.xz 25-Feb-2021 18:17 4324 +tpic2pdftex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:09 4324 +tpic2pdftex.x86_64-cygwin.tar.xz 28-Feb-2019 03:09 4324 +tpic2pdftex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:09 4332 +tpic2pdftex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:09 4332 +tpic2pdftex.x86_64-linux.r50281.tar.xz 08-Mar-2019 01:28 4292 +tpic2pdftex.x86_64-linux.tar.xz 08-Mar-2019 01:28 4292 +tpic2pdftex.x86_64-linuxmusl.r54264.tar.xz 13-Mar-2020 01:07 4304 +tpic2pdftex.x86_64-linuxmusl.tar.xz 13-Mar-2020 01:07 4304 +tpic2pdftex.x86_64-solaris.r69782.tar.xz 10-Feb-2024 23:04 4300 +tpic2pdftex.x86_64-solaris.tar.xz 10-Feb-2024 23:04 4300 +tpslifonts.doc.r42428.tar.xz 28-Feb-2019 03:09 15044 +tpslifonts.doc.tar.xz 28-Feb-2019 03:09 15044 +tpslifonts.r42428.tar.xz 28-Feb-2019 03:09 5356 +tpslifonts.source.r42428.tar.xz 28-Feb-2019 03:09 10492 +tpslifonts.source.tar.xz 28-Feb-2019 03:09 10492 +tpslifonts.tar.xz 28-Feb-2019 03:09 5356 +tqft.doc.r71401.tar.xz 01-Jun-2024 23:53 742568 +tqft.doc.tar.xz 01-Jun-2024 23:53 742568 +tqft.r71401.tar.xz 01-Jun-2024 23:53 6980 +tqft.source.r71401.tar.xz 01-Jun-2024 23:53 12988 +tqft.source.tar.xz 01-Jun-2024 23:53 12988 +tqft.tar.xz 01-Jun-2024 23:53 6980 +tracklang.doc.r74576.tar.xz 12-Mar-2025 00:50 1791404 +tracklang.doc.tar.xz 12-Mar-2025 00:50 1791404 +tracklang.r74576.tar.xz 12-Mar-2025 00:50 20424 +tracklang.source.r74576.tar.xz 12-Mar-2025 00:50 36520 +tracklang.source.tar.xz 12-Mar-2025 00:50 36520 +tracklang.tar.xz 12-Mar-2025 00:50 20424 +traffic-light-protocol.doc.r75712.tar.xz 07-Jul-2025 23:51 63396 +traffic-light-protocol.doc.tar.xz 07-Jul-2025 23:51 63396 +traffic-light-protocol.r75712.tar.xz 07-Jul-2025 23:51 1544 +traffic-light-protocol.source.r75712.tar.xz 07-Jul-2025 23:51 2284 +traffic-light-protocol.source.tar.xz 07-Jul-2025 23:51 2284 +traffic-light-protocol.tar.xz 07-Jul-2025 23:51 1544 +trajan.doc.r15878.tar.xz 28-Feb-2019 03:09 172208 +trajan.doc.tar.xz 28-Feb-2019 03:09 172208 +trajan.r15878.tar.xz 28-Feb-2019 03:09 46804 +trajan.source.r15878.tar.xz 28-Feb-2019 03:09 20268 +trajan.source.tar.xz 28-Feb-2019 03:09 20268 +trajan.tar.xz 28-Feb-2019 03:09 46804 +tram.doc.r29803.tar.xz 28-Feb-2019 03:09 29108 +tram.doc.tar.xz 28-Feb-2019 03:09 29108 +tram.r29803.tar.xz 28-Feb-2019 03:09 2528 +tram.tar.xz 28-Feb-2019 03:09 2528 +tramlines.doc.r71842.tar.xz 19-Jul-2024 23:47 61644 +tramlines.doc.tar.xz 19-Jul-2024 23:47 61644 +tramlines.r71842.tar.xz 19-Jul-2024 23:47 1068 +tramlines.tar.xz 19-Jul-2024 23:47 1068 +translation-array-fr.doc.r24344.tar.xz 28-Feb-2019 03:09 638988 +translation-array-fr.doc.tar.xz 28-Feb-2019 03:09 638988 +translation-array-fr.r24344.tar.xz 28-Feb-2019 03:09 384 +translation-array-fr.tar.xz 28-Feb-2019 03:09 384 +translation-arsclassica-de.doc.r23803.tar.xz 28-Feb-2019 03:09 358860 +translation-arsclassica-de.doc.tar.xz 28-Feb-2019 03:09 358860 +translation-arsclassica-de.r23803.tar.xz 28-Feb-2019 03:09 404 +translation-arsclassica-de.tar.xz 28-Feb-2019 03:09 404 +translation-biblatex-de.doc.r59382.tar.xz 28-May-2021 23:52 729868 +translation-biblatex-de.doc.tar.xz 28-May-2021 23:52 729868 +translation-biblatex-de.r59382.tar.xz 28-May-2021 23:52 452 +translation-biblatex-de.tar.xz 28-May-2021 23:52 452 +translation-chemsym-de.doc.r23804.tar.xz 28-Feb-2019 03:09 141988 +translation-chemsym-de.doc.tar.xz 28-Feb-2019 03:09 141988 +translation-chemsym-de.r23804.tar.xz 28-Feb-2019 03:09 396 +translation-chemsym-de.tar.xz 28-Feb-2019 03:09 396 +translation-dcolumn-fr.doc.r24345.tar.xz 28-Feb-2019 03:09 322312 +translation-dcolumn-fr.doc.tar.xz 28-Feb-2019 03:09 322312 +translation-dcolumn-fr.r24345.tar.xz 28-Feb-2019 03:09 388 +translation-dcolumn-fr.tar.xz 28-Feb-2019 03:09 388 +translation-ecv-de.doc.r24754.tar.xz 28-Feb-2019 03:09 406924 +translation-ecv-de.doc.tar.xz 28-Feb-2019 03:09 406924 +translation-ecv-de.r24754.tar.xz 28-Feb-2019 03:09 392 +translation-ecv-de.tar.xz 28-Feb-2019 03:09 392 +translation-enumitem-de.doc.r24196.tar.xz 28-Feb-2019 03:09 607768 +translation-enumitem-de.doc.tar.xz 28-Feb-2019 03:09 607768 +translation-enumitem-de.r24196.tar.xz 28-Feb-2019 03:09 400 +translation-enumitem-de.tar.xz 28-Feb-2019 03:09 400 +translation-europecv-de.doc.r23840.tar.xz 28-Feb-2019 03:09 669668 +translation-europecv-de.doc.tar.xz 28-Feb-2019 03:09 669668 +translation-europecv-de.r23840.tar.xz 28-Feb-2019 03:09 392 +translation-europecv-de.tar.xz 28-Feb-2019 03:09 392 +translation-filecontents-de.doc.r24010.tar.xz 28-Feb-2019 03:09 214452 +translation-filecontents-de.doc.tar.xz 28-Feb-2019 03:09 214452 +translation-filecontents-de.r24010.tar.xz 28-Feb-2019 03:09 400 +translation-filecontents-de.tar.xz 28-Feb-2019 03:09 400 +translation-moreverb-de.doc.r23957.tar.xz 28-Feb-2019 03:09 94828 +translation-moreverb-de.doc.tar.xz 28-Feb-2019 03:09 94828 +translation-moreverb-de.r23957.tar.xz 28-Feb-2019 03:09 396 +translation-moreverb-de.tar.xz 28-Feb-2019 03:09 396 +translation-natbib-fr.doc.r25105.tar.xz 28-Feb-2019 03:09 687888 +translation-natbib-fr.doc.tar.xz 28-Feb-2019 03:09 687888 +translation-natbib-fr.r25105.tar.xz 28-Feb-2019 03:09 384 +translation-natbib-fr.tar.xz 28-Feb-2019 03:09 384 +translation-tabbing-fr.doc.r24228.tar.xz 28-Feb-2019 03:09 355420 +translation-tabbing-fr.doc.tar.xz 28-Feb-2019 03:09 355420 +translation-tabbing-fr.r24228.tar.xz 28-Feb-2019 03:09 404 +translation-tabbing-fr.tar.xz 28-Feb-2019 03:09 404 +translations.doc.r61896.tar.xz 06-Feb-2022 00:53 518100 +translations.doc.tar.xz 06-Feb-2022 00:53 518100 +translations.r61896.tar.xz 06-Feb-2022 00:53 13476 +translations.tar.xz 06-Feb-2022 00:53 13476 +translator.doc.r59412.tar.xz 01-Jun-2021 00:02 216032 +translator.doc.tar.xz 01-Jun-2021 00:02 216032 +translator.r59412.tar.xz 01-Jun-2021 00:02 28304 +translator.tar.xz 01-Jun-2021 00:02 28304 +transparent-io.doc.r64113.tar.xz 13-Aug-2022 23:53 76976 +transparent-io.doc.tar.xz 13-Aug-2022 23:53 76976 +transparent-io.r64113.tar.xz 13-Aug-2022 23:53 852 +transparent-io.tar.xz 13-Aug-2022 23:53 852 +transparent.doc.r75593.tar.xz 23-Jun-2025 23:49 274488 +transparent.doc.tar.xz 23-Jun-2025 23:49 274488 +transparent.r75593.tar.xz 23-Jun-2025 23:49 2260 +transparent.source.r75593.tar.xz 23-Jun-2025 23:49 5332 +transparent.source.tar.xz 23-Jun-2025 23:49 5332 +transparent.tar.xz 23-Jun-2025 23:49 2260 +tree-dvips.doc.r21751.tar.xz 28-Feb-2019 03:09 92268 +tree-dvips.doc.tar.xz 28-Feb-2019 03:09 92268 +tree-dvips.r21751.tar.xz 28-Feb-2019 03:09 7964 +tree-dvips.tar.xz 28-Feb-2019 03:09 7964 +treesvr.doc.r71382.tar.xz 28-May-2024 23:46 49248 +treesvr.doc.tar.xz 28-May-2024 23:46 49248 +treesvr.r71382.tar.xz 28-May-2024 23:46 1096 +treesvr.tar.xz 28-May-2024 23:46 1096 +treetex.doc.r28176.tar.xz 28-Feb-2019 03:09 23484 +treetex.doc.tar.xz 28-Feb-2019 03:09 23484 +treetex.r28176.tar.xz 28-Feb-2019 03:09 20196 +treetex.tar.xz 28-Feb-2019 03:09 20196 +trfsigns.doc.r15878.tar.xz 28-Feb-2019 03:09 202928 +trfsigns.doc.tar.xz 28-Feb-2019 03:09 202928 +trfsigns.r15878.tar.xz 28-Feb-2019 03:09 1476 +trfsigns.source.r15878.tar.xz 28-Feb-2019 03:09 5068 +trfsigns.source.tar.xz 28-Feb-2019 03:09 5068 +trfsigns.tar.xz 28-Feb-2019 03:09 1476 +trigonometry.doc.r43006.tar.xz 28-Feb-2019 03:09 656 +trigonometry.doc.tar.xz 28-Feb-2019 03:09 656 +trigonometry.r43006.tar.xz 28-Feb-2019 03:09 2552 +trigonometry.tar.xz 28-Feb-2019 03:09 2552 +trimspaces.doc.r15878.tar.xz 28-Feb-2019 03:09 148416 +trimspaces.doc.tar.xz 28-Feb-2019 03:09 148416 +trimspaces.r15878.tar.xz 28-Feb-2019 03:09 936 +trimspaces.source.r15878.tar.xz 28-Feb-2019 03:09 2488 +trimspaces.source.tar.xz 28-Feb-2019 03:09 2488 +trimspaces.tar.xz 28-Feb-2019 03:09 936 +trivfloat.doc.r15878.tar.xz 28-Feb-2019 03:09 128892 +trivfloat.doc.tar.xz 28-Feb-2019 03:09 128892 +trivfloat.r15878.tar.xz 28-Feb-2019 03:09 2444 +trivfloat.source.r15878.tar.xz 28-Feb-2019 03:09 7480 +trivfloat.source.tar.xz 28-Feb-2019 03:09 7480 +trivfloat.tar.xz 28-Feb-2019 03:09 2444 +trivialpursuit.doc.r76152.tar.xz 26-Aug-2025 23:47 606572 +trivialpursuit.doc.tar.xz 26-Aug-2025 23:47 606572 +trivialpursuit.r76152.tar.xz 26-Aug-2025 23:47 9004 +trivialpursuit.tar.xz 26-Aug-2025 23:47 9004 +trsym.doc.r18732.tar.xz 28-Feb-2019 03:09 117560 +trsym.doc.tar.xz 28-Feb-2019 03:09 117560 +trsym.r18732.tar.xz 28-Feb-2019 03:09 1876 +trsym.source.r18732.tar.xz 28-Feb-2019 03:09 2484 +trsym.source.tar.xz 28-Feb-2019 03:09 2484 +trsym.tar.xz 28-Feb-2019 03:09 1876 +truncate.doc.r18921.tar.xz 28-Feb-2019 03:09 157044 +truncate.doc.tar.xz 28-Feb-2019 03:09 157044 +truncate.r18921.tar.xz 28-Feb-2019 03:09 3008 +truncate.tar.xz 28-Feb-2019 03:09 3008 +truthtable.doc.r68300.tar.xz 16-Sep-2023 23:53 149352 +truthtable.doc.tar.xz 16-Sep-2023 23:53 149352 +truthtable.r68300.tar.xz 16-Sep-2023 23:53 2196 +truthtable.tar.xz 16-Sep-2023 23:53 2196 +tsemlines.r23440.tar.xz 28-Feb-2019 03:09 1228 +tsemlines.tar.xz 28-Feb-2019 03:09 1228 +tsvtemplate.doc.r65333.tar.xz 23-Dec-2022 00:52 48608 +tsvtemplate.doc.tar.xz 23-Dec-2022 00:52 48608 +tsvtemplate.r65333.tar.xz 23-Dec-2022 00:52 1312 +tsvtemplate.tar.xz 23-Dec-2022 00:52 1312 +ttfutils.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:50 428668 +ttfutils.aarch64-linux.tar.xz 13-Feb-2025 00:50 428668 +ttfutils.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:55 410612 +ttfutils.amd64-freebsd.tar.xz 09-Feb-2025 00:55 410612 +ttfutils.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:16 408068 +ttfutils.amd64-netbsd.tar.xz 09-Feb-2025 18:16 408068 +ttfutils.armhf-linux.r73793.tar.xz 09-Feb-2025 00:55 367772 +ttfutils.armhf-linux.tar.xz 09-Feb-2025 00:55 367772 +ttfutils.doc.r73908.tar.xz 12-Feb-2025 00:51 139568 +ttfutils.doc.tar.xz 12-Feb-2025 00:51 139568 +ttfutils.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:55 410616 +ttfutils.i386-freebsd.tar.xz 09-Feb-2025 00:55 410616 +ttfutils.i386-linux.r73792.tar.xz 09-Feb-2025 00:55 477156 +ttfutils.i386-linux.tar.xz 09-Feb-2025 00:55 477156 +ttfutils.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:16 378948 +ttfutils.i386-netbsd.tar.xz 09-Feb-2025 18:16 378948 +ttfutils.i386-solaris.r73792.tar.xz 09-Feb-2025 00:55 439596 +ttfutils.i386-solaris.tar.xz 09-Feb-2025 00:55 439596 +ttfutils.r73908.tar.xz 12-Feb-2025 00:51 108728 +ttfutils.tar.xz 12-Feb-2025 00:51 108728 +ttfutils.universal-darwin.r73806.tar.xz 09-Feb-2025 18:16 828536 +ttfutils.universal-darwin.tar.xz 09-Feb-2025 18:16 828536 +ttfutils.windows.r73796.tar.xz 09-Feb-2025 18:16 401396 +ttfutils.windows.tar.xz 09-Feb-2025 18:16 401396 +ttfutils.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 383228 +ttfutils.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 383228 +ttfutils.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:50 414516 +ttfutils.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:50 414516 +ttfutils.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 445484 +ttfutils.x86_64-linux.tar.xz 19-Feb-2025 00:47 445484 +ttfutils.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:55 468060 +ttfutils.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:55 468060 +ttfutils.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:55 486376 +ttfutils.x86_64-solaris.tar.xz 09-Feb-2025 00:55 486376 +tucv.doc.r20680.tar.xz 28-Feb-2019 03:10 254104 +tucv.doc.tar.xz 28-Feb-2019 03:10 254104 +tucv.r20680.tar.xz 28-Feb-2019 03:10 1860 +tucv.source.r20680.tar.xz 28-Feb-2019 03:10 4996 +tucv.source.tar.xz 28-Feb-2019 03:10 4996 +tucv.tar.xz 28-Feb-2019 03:10 1860 +tuda-ci.doc.r74847.tar.xz 04-Apr-2025 23:48 1071408 +tuda-ci.doc.tar.xz 04-Apr-2025 23:48 1071408 +tuda-ci.r74847.tar.xz 04-Apr-2025 23:48 48908 +tuda-ci.source.r74847.tar.xz 04-Apr-2025 23:48 65788 +tuda-ci.source.tar.xz 04-Apr-2025 23:48 65788 +tuda-ci.tar.xz 04-Apr-2025 23:48 48908 +tudscr.doc.r64085.tar.xz 09-Aug-2022 23:53 3971388 +tudscr.doc.tar.xz 09-Aug-2022 23:53 3971388 +tudscr.r64085.tar.xz 09-Aug-2022 23:53 164240 +tudscr.source.r64085.tar.xz 09-Aug-2022 23:53 325572 +tudscr.source.tar.xz 09-Aug-2022 23:53 325572 +tudscr.tar.xz 09-Aug-2022 23:53 164240 +tufte-latex.doc.r37649.tar.xz 28-Feb-2019 03:10 453460 +tufte-latex.doc.tar.xz 28-Feb-2019 03:10 453460 +tufte-latex.r37649.tar.xz 28-Feb-2019 03:10 21568 +tufte-latex.tar.xz 28-Feb-2019 03:10 21568 +tugboat-plain.doc.r75521.tar.xz 16-Jun-2025 23:49 223944 +tugboat-plain.doc.tar.xz 16-Jun-2025 23:49 223944 +tugboat-plain.r75521.tar.xz 16-Jun-2025 23:49 34556 +tugboat-plain.tar.xz 16-Jun-2025 23:49 34556 +tugboat.doc.r72711.tar.xz 31-Oct-2024 00:47 813580 +tugboat.doc.tar.xz 31-Oct-2024 00:47 813580 +tugboat.r72711.tar.xz 31-Oct-2024 00:47 32616 +tugboat.source.r72711.tar.xz 31-Oct-2024 00:47 45232 +tugboat.source.tar.xz 31-Oct-2024 00:47 45232 +tugboat.tar.xz 31-Oct-2024 00:47 32616 +tui.doc.r27253.tar.xz 28-Feb-2019 03:10 262356 +tui.doc.tar.xz 28-Feb-2019 03:10 262356 +tui.r27253.tar.xz 28-Feb-2019 03:10 3928 +tui.tar.xz 28-Feb-2019 03:10 3928 +tuple.doc.r76389.tar.xz 23-Sep-2025 23:49 271480 +tuple.doc.tar.xz 23-Sep-2025 23:49 271480 +tuple.r76389.tar.xz 23-Sep-2025 23:49 10500 +tuple.tar.xz 23-Sep-2025 23:49 10500 +turabian-formatting.doc.r58561.tar.xz 21-Mar-2021 00:31 120224 +turabian-formatting.doc.tar.xz 21-Mar-2021 00:31 120224 +turabian-formatting.r58561.tar.xz 21-Mar-2021 00:31 7900 +turabian-formatting.tar.xz 21-Mar-2021 00:31 7900 +turabian.doc.r36298.tar.xz 28-Feb-2019 03:10 4272 +turabian.doc.tar.xz 28-Feb-2019 03:10 4272 +turabian.r36298.tar.xz 28-Feb-2019 03:10 1792 +turabian.tar.xz 28-Feb-2019 03:10 1792 +turkmen.doc.r17748.tar.xz 28-Feb-2019 03:10 109384 +turkmen.doc.tar.xz 28-Feb-2019 03:10 109384 +turkmen.r17748.tar.xz 28-Feb-2019 03:10 2216 +turkmen.source.r17748.tar.xz 28-Feb-2019 03:10 3932 +turkmen.source.tar.xz 28-Feb-2019 03:10 3932 +turkmen.tar.xz 28-Feb-2019 03:10 2216 +turnstile.doc.r64967.tar.xz 08-Nov-2022 00:55 598160 +turnstile.doc.tar.xz 08-Nov-2022 00:55 598160 +turnstile.r64967.tar.xz 08-Nov-2022 00:55 1904 +turnstile.source.r64967.tar.xz 08-Nov-2022 00:55 7888 +turnstile.source.tar.xz 08-Nov-2022 00:55 7888 +turnstile.tar.xz 08-Nov-2022 00:55 1904 +turnthepage.doc.r72902.tar.xz 20-Nov-2024 00:46 124912 +turnthepage.doc.tar.xz 20-Nov-2024 00:46 124912 +turnthepage.r72902.tar.xz 20-Nov-2024 00:46 1780 +turnthepage.tar.xz 20-Nov-2024 00:46 1780 +tutodoc.doc.r73166.tar.xz 20-Dec-2024 00:47 2027124 +tutodoc.doc.tar.xz 20-Dec-2024 00:47 2027124 +tutodoc.r73166.tar.xz 20-Dec-2024 00:47 12888 +tutodoc.tar.xz 20-Dec-2024 00:47 12888 +tuzuk.doc.r74620.tar.xz 15-Mar-2025 00:51 207692 +tuzuk.doc.tar.xz 15-Mar-2025 00:51 207692 +tuzuk.r74620.tar.xz 15-Mar-2025 00:51 1824 +tuzuk.source.r74620.tar.xz 15-Mar-2025 00:51 2104 +tuzuk.source.tar.xz 15-Mar-2025 00:51 2104 +tuzuk.tar.xz 15-Mar-2025 00:51 1824 +twemoji-colr.doc.r75301.tar.xz 23-May-2025 23:47 712 +twemoji-colr.doc.tar.xz 23-May-2025 23:47 712 +twemoji-colr.r75301.tar.xz 23-May-2025 23:47 581232 +twemoji-colr.tar.xz 23-May-2025 23:47 581232 +twemojis.doc.r62930.tar.xz 05-Apr-2022 23:54 4751536 +twemojis.doc.tar.xz 05-Apr-2022 23:54 4751536 +twemojis.r62930.tar.xz 05-Apr-2022 23:54 4425040 +twemojis.source.r62930.tar.xz 05-Apr-2022 23:54 70504 +twemojis.source.tar.xz 05-Apr-2022 23:54 70504 +twemojis.tar.xz 05-Apr-2022 23:54 4425040 +twoinone.doc.r17024.tar.xz 28-Feb-2019 03:10 72400 +twoinone.doc.tar.xz 28-Feb-2019 03:10 72400 +twoinone.r17024.tar.xz 28-Feb-2019 03:10 1272 +twoinone.tar.xz 28-Feb-2019 03:10 1272 +twoup.doc.r15878.tar.xz 28-Feb-2019 03:10 172196 +twoup.doc.tar.xz 28-Feb-2019 03:10 172196 +twoup.r15878.tar.xz 28-Feb-2019 03:10 2296 +twoup.source.r15878.tar.xz 28-Feb-2019 03:10 9728 +twoup.source.tar.xz 28-Feb-2019 03:10 9728 +twoup.tar.xz 28-Feb-2019 03:10 2296 +twoxtwogame.doc.r70423.tar.xz 06-Mar-2024 00:48 452160 +twoxtwogame.doc.tar.xz 06-Mar-2024 00:48 452160 +twoxtwogame.r70423.tar.xz 06-Mar-2024 00:48 12984 +twoxtwogame.tar.xz 06-Mar-2024 00:48 12984 +txfonts.doc.r15878.tar.xz 28-Feb-2019 03:10 619372 +txfonts.doc.tar.xz 28-Feb-2019 03:10 619372 +txfonts.r15878.tar.xz 28-Feb-2019 03:10 709536 +txfonts.tar.xz 28-Feb-2019 03:10 709536 +txfontsb.doc.r54512.tar.xz 24-Mar-2020 01:04 59400 +txfontsb.doc.tar.xz 24-Mar-2020 01:04 59400 +txfontsb.r54512.tar.xz 24-Mar-2020 01:04 3476328 +txfontsb.source.r54512.tar.xz 24-Mar-2020 01:04 1940068 +txfontsb.source.tar.xz 24-Mar-2020 01:04 1940068 +txfontsb.tar.xz 24-Mar-2020 01:04 3476328 +txgreeks.doc.r21839.tar.xz 28-Feb-2019 03:10 56040 +txgreeks.doc.tar.xz 28-Feb-2019 03:10 56040 +txgreeks.r21839.tar.xz 28-Feb-2019 03:10 2116 +txgreeks.source.r21839.tar.xz 28-Feb-2019 03:10 4652 +txgreeks.source.tar.xz 28-Feb-2019 03:10 4652 +txgreeks.tar.xz 28-Feb-2019 03:10 2116 +txuprcal.doc.r43327.tar.xz 28-Feb-2019 03:10 86800 +txuprcal.doc.tar.xz 28-Feb-2019 03:10 86800 +txuprcal.r43327.tar.xz 28-Feb-2019 03:10 51556 +txuprcal.tar.xz 28-Feb-2019 03:10 51556 +type1cm.doc.r21820.tar.xz 28-Feb-2019 03:10 324940 +type1cm.doc.tar.xz 28-Feb-2019 03:10 324940 +type1cm.r21820.tar.xz 28-Feb-2019 03:10 2064 +type1cm.source.r21820.tar.xz 28-Feb-2019 03:10 2460 +type1cm.source.tar.xz 28-Feb-2019 03:10 2460 +type1cm.tar.xz 28-Feb-2019 03:10 2064 +typed-checklist.doc.r63445.tar.xz 30-May-2022 23:56 692884 +typed-checklist.doc.tar.xz 30-May-2022 23:56 692884 +typed-checklist.r63445.tar.xz 30-May-2022 23:56 5556 +typed-checklist.source.r63445.tar.xz 30-May-2022 23:56 24384 +typed-checklist.source.tar.xz 30-May-2022 23:56 24384 +typed-checklist.tar.xz 30-May-2022 23:56 5556 +typeface.doc.r27046.tar.xz 28-Feb-2019 03:10 17669688 +typeface.doc.tar.xz 28-Feb-2019 03:10 17669688 +typeface.r27046.tar.xz 28-Feb-2019 03:10 44444 +typeface.source.r27046.tar.xz 28-Feb-2019 03:10 1932 +typeface.source.tar.xz 28-Feb-2019 03:10 1932 +typeface.tar.xz 28-Feb-2019 03:10 44444 +typehtml.doc.r17134.tar.xz 28-Feb-2019 03:10 155096 +typehtml.doc.tar.xz 28-Feb-2019 03:10 155096 +typehtml.r17134.tar.xz 28-Feb-2019 03:10 6928 +typehtml.source.r17134.tar.xz 28-Feb-2019 03:10 16928 +typehtml.source.tar.xz 28-Feb-2019 03:10 16928 +typehtml.tar.xz 28-Feb-2019 03:10 6928 +typeoutfileinfo.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.aarch64-linux.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.amd64-freebsd.r25648.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.amd64-freebsd.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.amd64-netbsd.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.armhf-linux.r30015.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.armhf-linux.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.doc.r67526.tar.xz 01-Jul-2023 23:50 704 +typeoutfileinfo.doc.tar.xz 01-Jul-2023 23:50 704 +typeoutfileinfo.i386-freebsd.r25648.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.i386-freebsd.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.i386-linux.r25648.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.i386-linux.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.i386-netbsd.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.i386-solaris.r25648.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.i386-solaris.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.r67526.tar.xz 01-Jul-2023 23:50 1608 +typeoutfileinfo.tar.xz 01-Jul-2023 23:50 1608 +typeoutfileinfo.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 344 +typeoutfileinfo.universal-darwin.tar.xz 25-Feb-2021 18:17 344 +typeoutfileinfo.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.x86_64-cygwin.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:10 356 +typeoutfileinfo.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:10 356 +typeoutfileinfo.x86_64-linux.r25648.tar.xz 28-Feb-2019 03:10 344 +typeoutfileinfo.x86_64-linux.tar.xz 28-Feb-2019 03:10 344 +typeoutfileinfo.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:10 348 +typeoutfileinfo.x86_64-solaris.r25648.tar.xz 28-Feb-2019 03:10 344 +typeoutfileinfo.x86_64-solaris.tar.xz 28-Feb-2019 03:10 344 +typewriter.doc.r73877.tar.xz 12-Feb-2025 00:51 84380 +typewriter.doc.tar.xz 12-Feb-2025 00:51 84380 +typewriter.r73877.tar.xz 12-Feb-2025 00:51 25844 +typewriter.tar.xz 12-Feb-2025 00:51 25844 +typicons.doc.r37623.tar.xz 28-Feb-2019 03:10 134792 +typicons.doc.tar.xz 28-Feb-2019 03:10 134792 +typicons.r37623.tar.xz 28-Feb-2019 03:10 59552 +typicons.tar.xz 28-Feb-2019 03:10 59552 +typoaid.doc.r44238.tar.xz 28-Feb-2019 03:10 333188 +typoaid.doc.tar.xz 28-Feb-2019 03:10 333188 +typoaid.r44238.tar.xz 28-Feb-2019 03:10 5772 +typoaid.tar.xz 28-Feb-2019 03:10 5772 +typog.aarch64-linux.r71202.tar.xz 07-May-2024 23:46 344 +typog.aarch64-linux.tar.xz 07-May-2024 23:46 344 +typog.amd64-freebsd.r71202.tar.xz 07-May-2024 23:46 344 +typog.amd64-freebsd.tar.xz 07-May-2024 23:46 344 +typog.amd64-netbsd.r71202.tar.xz 07-May-2024 23:46 344 +typog.amd64-netbsd.tar.xz 07-May-2024 23:46 344 +typog.armhf-linux.r71202.tar.xz 07-May-2024 23:46 340 +typog.armhf-linux.tar.xz 07-May-2024 23:46 340 +typog.doc.r71883.tar.xz 23-Jul-2024 23:48 1945644 +typog.doc.tar.xz 23-Jul-2024 23:48 1945644 +typog.i386-freebsd.r71202.tar.xz 07-May-2024 23:46 344 +typog.i386-freebsd.tar.xz 07-May-2024 23:46 344 +typog.i386-linux.r71202.tar.xz 07-May-2024 23:46 344 +typog.i386-linux.tar.xz 07-May-2024 23:46 344 +typog.i386-netbsd.r71202.tar.xz 07-May-2024 23:46 340 +typog.i386-netbsd.tar.xz 07-May-2024 23:46 340 +typog.i386-solaris.r71202.tar.xz 07-May-2024 23:46 344 +typog.i386-solaris.tar.xz 07-May-2024 23:46 344 +typog.r71883.tar.xz 23-Jul-2024 23:48 14776 +typog.source.r71883.tar.xz 23-Jul-2024 23:48 87608 +typog.source.tar.xz 23-Jul-2024 23:48 87608 +typog.tar.xz 23-Jul-2024 23:48 14776 +typog.universal-darwin.r71202.tar.xz 07-May-2024 23:46 344 +typog.universal-darwin.tar.xz 07-May-2024 23:46 344 +typog.windows.r71202.tar.xz 07-May-2024 23:46 2308 +typog.windows.tar.xz 07-May-2024 23:46 2308 +typog.x86_64-cygwin.r71202.tar.xz 07-May-2024 23:46 344 +typog.x86_64-cygwin.tar.xz 07-May-2024 23:46 344 +typog.x86_64-darwinlegacy.r71202.tar.xz 07-May-2024 23:46 352 +typog.x86_64-darwinlegacy.tar.xz 07-May-2024 23:46 352 +typog.x86_64-linux.r71202.tar.xz 07-May-2024 23:46 344 +typog.x86_64-linux.tar.xz 07-May-2024 23:46 344 +typog.x86_64-linuxmusl.r71202.tar.xz 07-May-2024 23:46 348 +typog.x86_64-linuxmusl.tar.xz 07-May-2024 23:46 348 +typog.x86_64-solaris.r71202.tar.xz 07-May-2024 23:46 344 +typog.x86_64-solaris.tar.xz 07-May-2024 23:46 344 +typogrid.doc.r24994.tar.xz 28-Feb-2019 03:10 296420 +typogrid.doc.tar.xz 28-Feb-2019 03:10 296420 +typogrid.r24994.tar.xz 28-Feb-2019 03:10 1764 +typogrid.source.r24994.tar.xz 28-Feb-2019 03:10 3776 +typogrid.source.tar.xz 28-Feb-2019 03:10 3776 +typogrid.tar.xz 28-Feb-2019 03:10 1764 +typstfun.doc.r70018.tar.xz 21-Feb-2024 00:46 64596 +typstfun.doc.tar.xz 21-Feb-2024 00:46 64596 +typstfun.r70018.tar.xz 21-Feb-2024 00:46 476 +typstfun.tar.xz 21-Feb-2024 00:46 476 +tzplot.doc.r64537.tar.xz 28-Sep-2022 23:53 1249916 +tzplot.doc.tar.xz 28-Sep-2022 23:53 1249916 +tzplot.r64537.tar.xz 28-Sep-2022 23:53 25292 +tzplot.tar.xz 28-Sep-2022 23:53 25292 +uaclasses.doc.r15878.tar.xz 28-Feb-2019 03:10 201492 +uaclasses.doc.tar.xz 28-Feb-2019 03:10 201492 +uaclasses.r15878.tar.xz 28-Feb-2019 03:10 5948 +uaclasses.source.r15878.tar.xz 28-Feb-2019 03:10 13868 +uaclasses.source.tar.xz 28-Feb-2019 03:10 13868 +uaclasses.tar.xz 28-Feb-2019 03:10 5948 +uafthesis.doc.r57349.tar.xz 08-Jan-2021 00:58 30020 +uafthesis.doc.tar.xz 08-Jan-2021 00:58 30020 +uafthesis.r57349.tar.xz 08-Jan-2021 00:58 7548 +uafthesis.tar.xz 08-Jan-2021 00:58 7548 +ualberta.doc.r76389.tar.xz 23-Sep-2025 23:49 2304632 +ualberta.doc.tar.xz 23-Sep-2025 23:49 2304632 +ualberta.r76389.tar.xz 23-Sep-2025 23:49 7624 +ualberta.tar.xz 23-Sep-2025 23:49 7624 +uantwerpendocs.doc.r75385.tar.xz 03-Jun-2025 23:50 4407872 +uantwerpendocs.doc.tar.xz 03-Jun-2025 23:50 4407872 +uantwerpendocs.r75385.tar.xz 03-Jun-2025 23:50 6477704 +uantwerpendocs.source.r75385.tar.xz 03-Jun-2025 23:50 47900 +uantwerpendocs.source.tar.xz 03-Jun-2025 23:50 47900 +uantwerpendocs.tar.xz 03-Jun-2025 23:50 6477704 +uassign.doc.r38459.tar.xz 28-Feb-2019 03:10 106832 +uassign.doc.tar.xz 28-Feb-2019 03:10 106832 +uassign.r38459.tar.xz 28-Feb-2019 03:10 1984 +uassign.tar.xz 28-Feb-2019 03:10 1984 +ucalgmthesis.doc.r66602.tar.xz 21-Mar-2023 00:55 273308 +ucalgmthesis.doc.tar.xz 21-Mar-2023 00:55 273308 +ucalgmthesis.r66602.tar.xz 21-Mar-2023 00:55 3316 +ucalgmthesis.tar.xz 21-Mar-2023 00:55 3316 +ucbthesis.doc.r51690.tar.xz 21-Jul-2019 23:53 169228 +ucbthesis.doc.tar.xz 21-Jul-2019 23:53 169228 +ucbthesis.r51690.tar.xz 21-Jul-2019 23:53 7364 +ucbthesis.tar.xz 21-Jul-2019 23:53 7364 +ucdavisthesis.doc.r40772.tar.xz 28-Feb-2019 03:10 1288712 +ucdavisthesis.doc.tar.xz 28-Feb-2019 03:10 1288712 +ucdavisthesis.r40772.tar.xz 28-Feb-2019 03:10 10564 +ucdavisthesis.source.r40772.tar.xz 28-Feb-2019 03:10 23044 +ucdavisthesis.source.tar.xz 28-Feb-2019 03:10 23044 +ucdavisthesis.tar.xz 28-Feb-2019 03:10 10564 +ucharcat.doc.r38907.tar.xz 28-Feb-2019 03:10 159876 +ucharcat.doc.tar.xz 28-Feb-2019 03:10 159876 +ucharcat.r38907.tar.xz 28-Feb-2019 03:10 1184 +ucharcat.source.r38907.tar.xz 28-Feb-2019 03:10 2324 +ucharcat.source.tar.xz 28-Feb-2019 03:10 2324 +ucharcat.tar.xz 28-Feb-2019 03:10 1184 +ucharclasses.doc.r64782.tar.xz 22-Oct-2022 23:56 143504 +ucharclasses.doc.tar.xz 22-Oct-2022 23:56 143504 +ucharclasses.r64782.tar.xz 22-Oct-2022 23:56 9188 +ucharclasses.tar.xz 22-Oct-2022 23:56 9188 +ucph-revy.doc.r74857.tar.xz 05-Apr-2025 23:58 770120 +ucph-revy.doc.tar.xz 05-Apr-2025 23:58 770120 +ucph-revy.r74857.tar.xz 05-Apr-2025 23:58 5288 +ucph-revy.source.r74857.tar.xz 05-Apr-2025 23:58 32080 +ucph-revy.source.tar.xz 05-Apr-2025 23:58 32080 +ucph-revy.tar.xz 05-Apr-2025 23:58 5288 +ucs.doc.r68759.tar.xz 10-Nov-2023 00:45 1251668 +ucs.doc.tar.xz 10-Nov-2023 00:45 1251668 +ucs.r68759.tar.xz 10-Nov-2023 00:45 308788 +ucs.source.r68759.tar.xz 10-Nov-2023 00:45 40956 +ucs.source.tar.xz 10-Nov-2023 00:45 40956 +ucs.tar.xz 10-Nov-2023 00:45 308788 +ucsmonograph.doc.r52698.tar.xz 09-Nov-2019 00:55 427212 +ucsmonograph.doc.tar.xz 09-Nov-2019 00:55 427212 +ucsmonograph.r52698.tar.xz 09-Nov-2019 00:55 4664 +ucsmonograph.source.r52698.tar.xz 09-Nov-2019 00:55 15348 +ucsmonograph.source.tar.xz 09-Nov-2019 00:55 15348 +ucsmonograph.tar.xz 09-Nov-2019 00:55 4664 +ucthesis.doc.r15878.tar.xz 28-Feb-2019 03:10 6280 +ucthesis.doc.tar.xz 28-Feb-2019 03:10 6280 +ucthesis.r15878.tar.xz 28-Feb-2019 03:10 19284 +ucthesis.tar.xz 28-Feb-2019 03:10 19284 +udepcolor.doc.r69701.tar.xz 05-Feb-2024 00:45 54692 +udepcolor.doc.tar.xz 05-Feb-2024 00:45 54692 +udepcolor.r69701.tar.xz 05-Feb-2024 00:45 1172 +udepcolor.tar.xz 05-Feb-2024 00:45 1172 +udes-genie-these.doc.r68141.tar.xz 01-Sep-2023 23:45 140264 +udes-genie-these.doc.tar.xz 01-Sep-2023 23:45 140264 +udes-genie-these.r68141.tar.xz 01-Sep-2023 23:45 7508 +udes-genie-these.source.r68141.tar.xz 01-Sep-2023 23:45 15696 +udes-genie-these.source.tar.xz 01-Sep-2023 23:45 15696 +udes-genie-these.tar.xz 01-Sep-2023 23:45 7508 +udesoftec.doc.r57866.tar.xz 24-Feb-2021 00:58 477784 +udesoftec.doc.tar.xz 24-Feb-2021 00:58 477784 +udesoftec.r57866.tar.xz 24-Feb-2021 00:58 108164 +udesoftec.source.r57866.tar.xz 24-Feb-2021 00:58 44528 +udesoftec.source.tar.xz 24-Feb-2021 00:58 44528 +udesoftec.tar.xz 24-Feb-2021 00:58 108164 +udiss.doc.r75301.tar.xz 23-May-2025 23:47 329660 +udiss.doc.tar.xz 23-May-2025 23:47 329660 +udiss.r75301.tar.xz 23-May-2025 23:47 74364 +udiss.source.r75301.tar.xz 23-May-2025 23:47 27356 +udiss.source.tar.xz 23-May-2025 23:47 27356 +udiss.tar.xz 23-May-2025 23:47 74364 +uebungsblatt.doc.r15878.tar.xz 28-Feb-2019 03:10 226580 +uebungsblatt.doc.tar.xz 28-Feb-2019 03:10 226580 +uebungsblatt.r15878.tar.xz 28-Feb-2019 03:10 3948 +uebungsblatt.tar.xz 28-Feb-2019 03:10 3948 +uestcthesis.doc.r36371.tar.xz 28-Feb-2019 03:10 4250444 +uestcthesis.doc.tar.xz 28-Feb-2019 03:10 4250444 +uestcthesis.r36371.tar.xz 28-Feb-2019 03:10 17228 +uestcthesis.tar.xz 28-Feb-2019 03:10 17228 +ufrgscca.doc.r76357.tar.xz 19-Sep-2025 23:47 538872 +ufrgscca.doc.tar.xz 19-Sep-2025 23:47 538872 +ufrgscca.r76357.tar.xz 19-Sep-2025 23:47 25568 +ufrgscca.tar.xz 19-Sep-2025 23:47 25568 +uhc.doc.r16791.tar.xz 28-Feb-2019 03:10 872 +uhc.doc.tar.xz 28-Feb-2019 03:10 872 +uhc.r16791.tar.xz 28-Feb-2019 03:10 3600148 +uhc.tar.xz 28-Feb-2019 03:10 3600148 +uhhassignment.doc.r44026.tar.xz 28-Feb-2019 03:10 380280 +uhhassignment.doc.tar.xz 28-Feb-2019 03:10 380280 +uhhassignment.r44026.tar.xz 28-Feb-2019 03:10 2816 +uhhassignment.source.r44026.tar.xz 28-Feb-2019 03:10 7176 +uhhassignment.source.tar.xz 28-Feb-2019 03:10 7176 +uhhassignment.tar.xz 28-Feb-2019 03:10 2816 +uhrzeit.doc.r39570.tar.xz 28-Feb-2019 03:10 209100 +uhrzeit.doc.tar.xz 28-Feb-2019 03:10 209100 +uhrzeit.r39570.tar.xz 28-Feb-2019 03:10 2056 +uhrzeit.tar.xz 28-Feb-2019 03:10 2056 +uiucredborder.doc.r29974.tar.xz 28-Feb-2019 03:10 322460 +uiucredborder.doc.tar.xz 28-Feb-2019 03:10 322460 +uiucredborder.r29974.tar.xz 28-Feb-2019 03:10 1968 +uiucredborder.source.r29974.tar.xz 28-Feb-2019 03:10 4456 +uiucredborder.source.tar.xz 28-Feb-2019 03:10 4456 +uiucredborder.tar.xz 28-Feb-2019 03:10 1968 +uiucthesis.doc.r15878.tar.xz 28-Feb-2019 03:10 226612 +uiucthesis.doc.tar.xz 28-Feb-2019 03:10 226612 +uiucthesis.r15878.tar.xz 28-Feb-2019 03:10 5140 +uiucthesis.source.r15878.tar.xz 28-Feb-2019 03:10 16144 +uiucthesis.source.tar.xz 28-Feb-2019 03:10 16144 +uiucthesis.tar.xz 28-Feb-2019 03:10 5140 +ukbill.doc.r69362.tar.xz 10-Jan-2024 00:46 202888 +ukbill.doc.tar.xz 10-Jan-2024 00:46 202888 +ukbill.r69362.tar.xz 10-Jan-2024 00:46 5168 +ukbill.tar.xz 10-Jan-2024 00:46 5168 +ukrhyph.doc.r21081.tar.xz 28-Feb-2019 03:10 160948 +ukrhyph.doc.tar.xz 28-Feb-2019 03:10 160948 +ukrhyph.r21081.tar.xz 28-Feb-2019 03:10 39116 +ukrhyph.tar.xz 28-Feb-2019 03:10 39116 +ulem.doc.r53365.tar.xz 11-Jan-2020 00:55 166256 +ulem.doc.tar.xz 11-Jan-2020 00:55 166256 +ulem.r53365.tar.xz 11-Jan-2020 00:55 6512 +ulem.tar.xz 11-Jan-2020 00:55 6512 +ullrcorners.doc.r75278.tar.xz 21-May-2025 23:48 31068 +ullrcorners.doc.tar.xz 21-May-2025 23:48 31068 +ullrcorners.r75278.tar.xz 21-May-2025 23:48 1472 +ullrcorners.source.r75278.tar.xz 21-May-2025 23:48 4584 +ullrcorners.source.tar.xz 21-May-2025 23:48 4584 +ullrcorners.tar.xz 21-May-2025 23:48 1472 +ulqda.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:10 340 +ulqda.aarch64-linux.tar.xz 28-Feb-2019 03:10 340 +ulqda.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:10 340 +ulqda.amd64-freebsd.tar.xz 28-Feb-2019 03:10 340 +ulqda.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:10 340 +ulqda.amd64-netbsd.tar.xz 28-Feb-2019 03:10 340 +ulqda.armhf-linux.r30015.tar.xz 28-Feb-2019 03:10 336 +ulqda.armhf-linux.tar.xz 28-Feb-2019 03:10 336 +ulqda.doc.r26313.tar.xz 28-Feb-2019 03:10 252628 +ulqda.doc.tar.xz 28-Feb-2019 03:10 252628 +ulqda.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:10 340 +ulqda.i386-freebsd.tar.xz 28-Feb-2019 03:10 340 +ulqda.i386-linux.r13663.tar.xz 28-Feb-2019 03:10 340 +ulqda.i386-linux.tar.xz 28-Feb-2019 03:10 340 +ulqda.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:10 340 +ulqda.i386-netbsd.tar.xz 28-Feb-2019 03:10 340 +ulqda.i386-solaris.r13898.tar.xz 28-Feb-2019 03:10 340 +ulqda.i386-solaris.tar.xz 28-Feb-2019 03:10 340 +ulqda.r26313.tar.xz 28-Feb-2019 03:10 5056 +ulqda.source.r26313.tar.xz 28-Feb-2019 03:10 21072 +ulqda.source.tar.xz 28-Feb-2019 03:10 21072 +ulqda.tar.xz 28-Feb-2019 03:10 5056 +ulqda.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +ulqda.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +ulqda.windows.r65891.tar.xz 20-Feb-2023 22:18 2308 +ulqda.windows.tar.xz 20-Feb-2023 22:18 2308 +ulqda.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:10 340 +ulqda.x86_64-cygwin.tar.xz 28-Feb-2019 03:10 340 +ulqda.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:10 348 +ulqda.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:10 348 +ulqda.x86_64-linux.r13777.tar.xz 28-Feb-2019 03:10 336 +ulqda.x86_64-linux.tar.xz 28-Feb-2019 03:10 336 +ulqda.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:10 344 +ulqda.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:10 344 +ulqda.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:10 340 +ulqda.x86_64-solaris.tar.xz 28-Feb-2019 03:10 340 +ulthese.doc.r71697.tar.xz 03-Jul-2024 23:48 134924 +ulthese.doc.tar.xz 03-Jul-2024 23:48 134924 +ulthese.r71697.tar.xz 03-Jul-2024 23:48 59784 +ulthese.source.r71697.tar.xz 03-Jul-2024 23:48 24772 +ulthese.source.tar.xz 03-Jul-2024 23:48 24772 +ulthese.tar.xz 03-Jul-2024 23:48 59784 +umbclegislation.doc.r41348.tar.xz 28-Feb-2019 03:10 13532 +umbclegislation.doc.tar.xz 28-Feb-2019 03:10 13532 +umbclegislation.r41348.tar.xz 28-Feb-2019 03:10 2616 +umbclegislation.tar.xz 28-Feb-2019 03:10 2616 +umich-thesis.doc.r15878.tar.xz 28-Feb-2019 03:10 904 +umich-thesis.doc.tar.xz 28-Feb-2019 03:10 904 +umich-thesis.r15878.tar.xz 28-Feb-2019 03:10 5696 +umich-thesis.tar.xz 28-Feb-2019 03:10 5696 +uml.doc.r17476.tar.xz 28-Feb-2019 03:10 381984 +uml.doc.tar.xz 28-Feb-2019 03:10 381984 +uml.r17476.tar.xz 28-Feb-2019 03:10 6564 +uml.source.r17476.tar.xz 28-Feb-2019 03:10 39836 +uml.source.tar.xz 28-Feb-2019 03:10 39836 +uml.tar.xz 28-Feb-2019 03:10 6564 +umlaute.doc.r15878.tar.xz 28-Feb-2019 03:10 106300 +umlaute.doc.tar.xz 28-Feb-2019 03:10 106300 +umlaute.r15878.tar.xz 28-Feb-2019 03:10 2884 +umlaute.source.r15878.tar.xz 28-Feb-2019 03:10 5732 +umlaute.source.tar.xz 28-Feb-2019 03:10 5732 +umlaute.tar.xz 28-Feb-2019 03:10 2884 +umoline.doc.r19085.tar.xz 28-Feb-2019 03:10 207052 +umoline.doc.tar.xz 28-Feb-2019 03:10 207052 +umoline.r19085.tar.xz 28-Feb-2019 03:10 3004 +umoline.source.r19085.tar.xz 28-Feb-2019 03:10 13068 +umoline.source.tar.xz 28-Feb-2019 03:10 13068 +umoline.tar.xz 28-Feb-2019 03:10 3004 +umthesis.doc.r15878.tar.xz 28-Feb-2019 03:10 91508 +umthesis.doc.tar.xz 28-Feb-2019 03:10 91508 +umthesis.r15878.tar.xz 28-Feb-2019 03:10 6764 +umthesis.tar.xz 28-Feb-2019 03:10 6764 +umtypewriter.doc.r64443.tar.xz 19-Sep-2022 23:53 672 +umtypewriter.doc.tar.xz 19-Sep-2022 23:53 672 +umtypewriter.r64443.tar.xz 19-Sep-2022 23:53 340604 +umtypewriter.tar.xz 19-Sep-2022 23:53 340604 +unam-thesis.doc.r51207.tar.xz 23-May-2019 23:41 2120 +unam-thesis.doc.tar.xz 23-May-2019 23:41 2120 +unam-thesis.r51207.tar.xz 23-May-2019 23:41 2984 +unam-thesis.tar.xz 23-May-2019 23:41 2984 +unamth-template.doc.r68681.tar.xz 27-Oct-2023 23:45 5010296 +unamth-template.doc.tar.xz 27-Oct-2023 23:45 5010296 +unamth-template.r68681.tar.xz 27-Oct-2023 23:45 480 +unamth-template.tar.xz 27-Oct-2023 23:45 480 +unamthesis.doc.r43639.tar.xz 28-Feb-2019 03:10 631572 +unamthesis.doc.tar.xz 28-Feb-2019 03:10 631572 +unamthesis.r43639.tar.xz 28-Feb-2019 03:10 9860 +unamthesis.tar.xz 28-Feb-2019 03:10 9860 +unbtex.doc.r76237.tar.xz 05-Sep-2025 23:49 635204 +unbtex.doc.tar.xz 05-Sep-2025 23:49 635204 +unbtex.r76237.tar.xz 05-Sep-2025 23:49 12032 +unbtex.tar.xz 05-Sep-2025 23:49 12032 +undar-digitacion.doc.r69742.tar.xz 08-Feb-2024 00:46 150644 +undar-digitacion.doc.tar.xz 08-Feb-2024 00:46 150644 +undar-digitacion.r69742.tar.xz 08-Feb-2024 00:46 6828 +undar-digitacion.source.r69742.tar.xz 08-Feb-2024 00:46 8092 +undar-digitacion.source.tar.xz 08-Feb-2024 00:46 8092 +undar-digitacion.tar.xz 08-Feb-2024 00:46 6828 +undergradmath.doc.r57286.tar.xz 02-Jan-2021 01:03 2036196 +undergradmath.doc.tar.xz 02-Jan-2021 01:03 2036196 +undergradmath.r57286.tar.xz 02-Jan-2021 01:03 444 +undergradmath.tar.xz 02-Jan-2021 01:03 444 +underlin.doc.r15878.tar.xz 28-Feb-2019 03:10 70524 +underlin.doc.tar.xz 28-Feb-2019 03:10 70524 +underlin.r15878.tar.xz 28-Feb-2019 03:10 1032 +underlin.source.r15878.tar.xz 28-Feb-2019 03:10 1976 +underlin.source.tar.xz 28-Feb-2019 03:10 1976 +underlin.tar.xz 28-Feb-2019 03:10 1032 +underoverlap.doc.r29019.tar.xz 28-Feb-2019 03:10 271816 +underoverlap.doc.tar.xz 28-Feb-2019 03:10 271816 +underoverlap.r29019.tar.xz 28-Feb-2019 03:10 3392 +underoverlap.tar.xz 28-Feb-2019 03:10 3392 +underscore.doc.r18261.tar.xz 28-Feb-2019 03:10 246480 +underscore.doc.tar.xz 28-Feb-2019 03:10 246480 +underscore.r18261.tar.xz 28-Feb-2019 03:10 4716 +underscore.tar.xz 28-Feb-2019 03:10 4716 +undolabl.doc.r73633.tar.xz 30-Jan-2025 00:49 358216 +undolabl.doc.tar.xz 30-Jan-2025 00:49 358216 +undolabl.r73633.tar.xz 30-Jan-2025 00:49 2316 +undolabl.source.r73633.tar.xz 30-Jan-2025 00:49 11108 +undolabl.source.tar.xz 30-Jan-2025 00:49 11108 +undolabl.tar.xz 30-Jan-2025 00:49 2316 +unfonts-core.doc.r56291.tar.xz 07-Sep-2020 23:58 10592 +unfonts-core.doc.tar.xz 07-Sep-2020 23:58 10592 +unfonts-core.r56291.tar.xz 07-Sep-2020 23:58 14727532 +unfonts-core.tar.xz 07-Sep-2020 23:58 14727532 +unfonts-extra.doc.r56291.tar.xz 07-Sep-2020 23:58 10160 +unfonts-extra.doc.tar.xz 07-Sep-2020 23:58 10160 +unfonts-extra.r56291.tar.xz 07-Sep-2020 23:58 6565804 +unfonts-extra.tar.xz 07-Sep-2020 23:58 6565804 +uni-titlepage.doc.r76033.tar.xz 12-Aug-2025 23:48 1850520 +uni-titlepage.doc.tar.xz 12-Aug-2025 23:48 1850520 +uni-titlepage.r76033.tar.xz 12-Aug-2025 23:48 10748 +uni-titlepage.source.r76033.tar.xz 12-Aug-2025 23:48 24968 +uni-titlepage.source.tar.xz 12-Aug-2025 23:48 24968 +uni-titlepage.tar.xz 12-Aug-2025 23:48 10748 +uni-wtal-ger.doc.r31541.tar.xz 28-Feb-2019 03:11 71452 +uni-wtal-ger.doc.tar.xz 28-Feb-2019 03:11 71452 +uni-wtal-ger.r31541.tar.xz 28-Feb-2019 03:11 1644 +uni-wtal-ger.tar.xz 28-Feb-2019 03:11 1644 +uni-wtal-lin.doc.r31409.tar.xz 28-Feb-2019 03:11 93524 +uni-wtal-lin.doc.tar.xz 28-Feb-2019 03:11 93524 +uni-wtal-lin.r31409.tar.xz 28-Feb-2019 03:11 2836 +uni-wtal-lin.tar.xz 28-Feb-2019 03:11 2836 +unibidi-lua.doc.r73554.tar.xz 22-Jan-2025 00:47 29064 +unibidi-lua.doc.tar.xz 22-Jan-2025 00:47 29064 +unibidi-lua.r73554.tar.xz 22-Jan-2025 00:47 28540 +unibidi-lua.tar.xz 22-Jan-2025 00:47 28540 +unicode-alphabets.doc.r66225.tar.xz 28-Feb-2023 16:28 703320 +unicode-alphabets.doc.tar.xz 28-Feb-2023 16:28 703320 +unicode-alphabets.r66225.tar.xz 28-Feb-2023 16:28 44072 +unicode-alphabets.tar.xz 28-Feb-2023 16:28 44072 +unicode-bidi.doc.r42482.tar.xz 28-Feb-2019 03:11 992 +unicode-bidi.doc.tar.xz 28-Feb-2019 03:11 992 +unicode-bidi.r42482.tar.xz 28-Feb-2019 03:11 1120 +unicode-bidi.tar.xz 28-Feb-2019 03:11 1120 +unicode-data.doc.r76413.tar.xz 26-Sep-2025 23:46 3884 +unicode-data.doc.tar.xz 26-Sep-2025 23:46 3884 +unicode-data.r76413.tar.xz 26-Sep-2025 23:46 316692 +unicode-data.tar.xz 26-Sep-2025 23:46 316692 +unicode-math-input.doc.r69591.tar.xz 26-Jan-2024 00:45 116676 +unicode-math-input.doc.tar.xz 26-Jan-2024 00:45 116676 +unicode-math-input.r69591.tar.xz 26-Jan-2024 00:45 17036 +unicode-math-input.tar.xz 26-Jan-2024 00:45 17036 +unicode-math.doc.r75152.tar.xz 07-May-2025 23:46 3336284 +unicode-math.doc.tar.xz 07-May-2025 23:46 3336284 +unicode-math.r75152.tar.xz 07-May-2025 23:46 42248 +unicode-math.source.r75152.tar.xz 07-May-2025 23:46 36932 +unicode-math.source.tar.xz 07-May-2025 23:46 36932 +unicode-math.tar.xz 07-May-2025 23:46 42248 +unicodefonttable.doc.r75757.tar.xz 13-Jul-2025 00:00 1412636 +unicodefonttable.doc.tar.xz 13-Jul-2025 00:00 1412636 +unicodefonttable.r75757.tar.xz 13-Jul-2025 00:00 7928 +unicodefonttable.source.r75757.tar.xz 13-Jul-2025 00:00 23048 +unicodefonttable.source.tar.xz 13-Jul-2025 00:00 23048 +unicodefonttable.tar.xz 13-Jul-2025 00:00 7928 +unifith.doc.r60698.tar.xz 04-Oct-2021 23:53 985200 +unifith.doc.tar.xz 04-Oct-2021 23:53 985200 +unifith.r60698.tar.xz 04-Oct-2021 23:53 14684 +unifith.tar.xz 04-Oct-2021 23:53 14684 +unifront.doc.r67054.tar.xz 08-May-2023 23:53 204252 +unifront.doc.tar.xz 08-May-2023 23:53 204252 +unifront.r67054.tar.xz 08-May-2023 23:53 2256 +unifront.tar.xz 08-May-2023 23:53 2256 +unigrazpub.doc.r64797.tar.xz 23-Oct-2022 23:56 134736 +unigrazpub.doc.tar.xz 23-Oct-2022 23:56 134736 +unigrazpub.r64797.tar.xz 23-Oct-2022 23:56 5952 +unigrazpub.source.r64797.tar.xz 23-Oct-2022 23:56 8892 +unigrazpub.source.tar.xz 23-Oct-2022 23:56 8892 +unigrazpub.tar.xz 23-Oct-2022 23:56 5952 +unimath-plain-xetex.doc.r72498.tar.xz 08-Oct-2024 23:47 75852 +unimath-plain-xetex.doc.tar.xz 08-Oct-2024 23:47 75852 +unimath-plain-xetex.r72498.tar.xz 08-Oct-2024 23:47 16068 +unimath-plain-xetex.tar.xz 08-Oct-2024 23:47 16068 +uninormalize.doc.r57257.tar.xz 30-Dec-2020 00:57 63868 +uninormalize.doc.tar.xz 30-Dec-2020 00:57 63868 +uninormalize.r57257.tar.xz 30-Dec-2020 00:57 5720 +uninormalize.tar.xz 30-Dec-2020 00:57 5720 +uniquecounter.doc.r53162.tar.xz 18-Dec-2019 00:54 291268 +uniquecounter.doc.tar.xz 18-Dec-2019 00:54 291268 +uniquecounter.r53162.tar.xz 18-Dec-2019 00:54 2272 +uniquecounter.source.r53162.tar.xz 18-Dec-2019 00:54 5320 +uniquecounter.source.tar.xz 18-Dec-2019 00:54 5320 +uniquecounter.tar.xz 18-Dec-2019 00:54 2272 +unisc.doc.r63178.tar.xz 29-Apr-2022 23:53 196864 +unisc.doc.tar.xz 29-Apr-2022 23:53 196864 +unisc.r63178.tar.xz 29-Apr-2022 23:53 2584 +unisc.source.r63178.tar.xz 29-Apr-2022 23:53 4696 +unisc.source.tar.xz 29-Apr-2022 23:53 4696 +unisc.tar.xz 29-Apr-2022 23:53 2584 +unisugar.doc.r22357.tar.xz 28-Feb-2019 03:11 456508 +unisugar.doc.tar.xz 28-Feb-2019 03:11 456508 +unisugar.r22357.tar.xz 28-Feb-2019 03:11 2468 +unisugar.tar.xz 28-Feb-2019 03:11 2468 +unitconv.doc.r55060.tar.xz 07-May-2020 23:55 69364 +unitconv.doc.tar.xz 07-May-2020 23:55 69364 +unitconv.r55060.tar.xz 07-May-2020 23:55 1792 +unitconv.tar.xz 07-May-2020 23:55 1792 +unitn-bimrep.doc.r45581.tar.xz 28-Feb-2019 03:11 825148 +unitn-bimrep.doc.tar.xz 28-Feb-2019 03:11 825148 +unitn-bimrep.r45581.tar.xz 28-Feb-2019 03:11 76668 +unitn-bimrep.tar.xz 28-Feb-2019 03:11 76668 +units.doc.r42428.tar.xz 28-Feb-2019 03:11 207040 +units.doc.tar.xz 28-Feb-2019 03:11 207040 +units.r42428.tar.xz 28-Feb-2019 03:11 2004 +units.source.r42428.tar.xz 28-Feb-2019 03:11 7256 +units.source.tar.xz 28-Feb-2019 03:11 7256 +units.tar.xz 28-Feb-2019 03:11 2004 +unitsdef.doc.r15878.tar.xz 28-Feb-2019 03:11 635436 +unitsdef.doc.tar.xz 28-Feb-2019 03:11 635436 +unitsdef.r15878.tar.xz 28-Feb-2019 03:11 4836 +unitsdef.source.r15878.tar.xz 28-Feb-2019 03:11 12264 +unitsdef.source.tar.xz 28-Feb-2019 03:11 12264 +unitsdef.tar.xz 28-Feb-2019 03:11 4836 +universa.doc.r51984.tar.xz 29-Aug-2019 23:54 595332 +universa.doc.tar.xz 29-Aug-2019 23:54 595332 +universa.r51984.tar.xz 29-Aug-2019 23:54 16744 +universa.source.r51984.tar.xz 29-Aug-2019 23:54 55964 +universa.source.tar.xz 29-Aug-2019 23:54 55964 +universa.tar.xz 29-Aug-2019 23:54 16744 +universalis.doc.r64505.tar.xz 25-Sep-2022 23:53 35596 +universalis.doc.tar.xz 25-Sep-2022 23:53 35596 +universalis.r64505.tar.xz 25-Sep-2022 23:53 514004 +universalis.tar.xz 25-Sep-2022 23:53 514004 +univie-ling.doc.r72484.tar.xz 07-Oct-2024 23:49 4333380 +univie-ling.doc.tar.xz 07-Oct-2024 23:49 4333380 +univie-ling.r72484.tar.xz 07-Oct-2024 23:49 165936 +univie-ling.tar.xz 07-Oct-2024 23:49 165936 +unizgklasa.doc.r51647.tar.xz 15-Jul-2019 23:54 31784 +unizgklasa.doc.tar.xz 15-Jul-2019 23:54 31784 +unizgklasa.r51647.tar.xz 15-Jul-2019 23:54 2028 +unizgklasa.tar.xz 15-Jul-2019 23:54 2028 +unravel.doc.r69308.tar.xz 06-Jan-2024 00:45 863296 +unravel.doc.tar.xz 06-Jan-2024 00:45 863296 +unravel.r69308.tar.xz 06-Jan-2024 00:45 30280 +unravel.source.r69308.tar.xz 06-Jan-2024 00:45 54200 +unravel.source.tar.xz 06-Jan-2024 00:45 54200 +unravel.tar.xz 06-Jan-2024 00:45 30280 +unswcover.doc.r66115.tar.xz 24-Feb-2023 01:02 119524 +unswcover.doc.tar.xz 24-Feb-2023 01:02 119524 +unswcover.r66115.tar.xz 24-Feb-2023 01:02 2628 +unswcover.tar.xz 24-Feb-2023 01:02 2628 +uol-physics-report.doc.r65761.tar.xz 09-Feb-2023 00:52 177356 +uol-physics-report.doc.tar.xz 09-Feb-2023 00:52 177356 +uol-physics-report.r65761.tar.xz 09-Feb-2023 00:52 2328 +uol-physics-report.source.r65761.tar.xz 09-Feb-2023 00:52 3856 +uol-physics-report.source.tar.xz 09-Feb-2023 00:52 3856 +uol-physics-report.tar.xz 09-Feb-2023 00:52 2328 +uothesis.doc.r25355.tar.xz 28-Feb-2019 03:11 608984 +uothesis.doc.tar.xz 28-Feb-2019 03:11 608984 +uothesis.r25355.tar.xz 28-Feb-2019 03:11 8728 +uothesis.source.r25355.tar.xz 28-Feb-2019 03:11 24256 +uothesis.source.tar.xz 28-Feb-2019 03:11 24256 +uothesis.tar.xz 28-Feb-2019 03:11 8728 +uowthesis.doc.r19700.tar.xz 28-Feb-2019 03:11 93176 +uowthesis.doc.tar.xz 28-Feb-2019 03:11 93176 +uowthesis.r19700.tar.xz 28-Feb-2019 03:11 44552 +uowthesis.tar.xz 28-Feb-2019 03:11 44552 +uowthesistitlepage.doc.r54512.tar.xz 24-Mar-2020 01:04 903456 +uowthesistitlepage.doc.tar.xz 24-Mar-2020 01:04 903456 +uowthesistitlepage.r54512.tar.xz 24-Mar-2020 01:04 5064 +uowthesistitlepage.tar.xz 24-Mar-2020 01:04 5064 +upca.doc.r22511.tar.xz 28-Feb-2019 03:11 812 +upca.doc.tar.xz 28-Feb-2019 03:11 812 +upca.r22511.tar.xz 28-Feb-2019 03:11 1840 +upca.tar.xz 28-Feb-2019 03:11 1840 +updatemarks.doc.r75168.tar.xz 10-May-2025 23:53 468132 +updatemarks.doc.tar.xz 10-May-2025 23:53 468132 +updatemarks.r75168.tar.xz 10-May-2025 23:53 5452 +updatemarks.tar.xz 10-May-2025 23:53 5452 +uplatex.aarch64-linux.r52800.tar.xz 16-Nov-2019 00:54 344 +uplatex.aarch64-linux.tar.xz 16-Nov-2019 00:54 344 +uplatex.amd64-freebsd.r52800.tar.xz 16-Nov-2019 00:54 344 +uplatex.amd64-freebsd.tar.xz 16-Nov-2019 00:54 344 +uplatex.amd64-netbsd.r52800.tar.xz 16-Nov-2019 00:54 344 +uplatex.amd64-netbsd.tar.xz 16-Nov-2019 00:54 344 +uplatex.armhf-linux.r52800.tar.xz 16-Nov-2019 00:54 348 +uplatex.armhf-linux.tar.xz 16-Nov-2019 00:54 348 +uplatex.doc.r73848.tar.xz 11-Feb-2025 00:48 777756 +uplatex.doc.tar.xz 11-Feb-2025 00:48 777756 +uplatex.i386-freebsd.r52800.tar.xz 16-Nov-2019 00:54 344 +uplatex.i386-freebsd.tar.xz 16-Nov-2019 00:54 344 +uplatex.i386-linux.r52800.tar.xz 16-Nov-2019 00:54 344 +uplatex.i386-linux.tar.xz 16-Nov-2019 00:54 344 +uplatex.i386-netbsd.r52800.tar.xz 16-Nov-2019 00:54 344 +uplatex.i386-netbsd.tar.xz 16-Nov-2019 00:54 344 +uplatex.i386-solaris.r52800.tar.xz 16-Nov-2019 00:54 344 +uplatex.i386-solaris.tar.xz 16-Nov-2019 00:54 344 +uplatex.r73848.tar.xz 11-Feb-2025 00:48 14820 +uplatex.source.r73848.tar.xz 11-Feb-2025 00:48 50744 +uplatex.source.tar.xz 11-Feb-2025 00:48 50744 +uplatex.tar.xz 11-Feb-2025 00:48 14820 +uplatex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 336 +uplatex.universal-darwin.tar.xz 25-Feb-2021 18:17 336 +uplatex.windows.r65891.tar.xz 20-Feb-2023 22:18 2384 +uplatex.windows.tar.xz 20-Feb-2023 22:18 2384 +uplatex.x86_64-cygwin.r52812.tar.xz 16-Nov-2019 00:54 348 +uplatex.x86_64-cygwin.tar.xz 16-Nov-2019 00:54 348 +uplatex.x86_64-darwinlegacy.r52800.tar.xz 16-Nov-2019 00:54 352 +uplatex.x86_64-darwinlegacy.tar.xz 16-Nov-2019 00:54 352 +uplatex.x86_64-linux.r52800.tar.xz 16-Nov-2019 00:54 344 +uplatex.x86_64-linux.tar.xz 16-Nov-2019 00:54 344 +uplatex.x86_64-linuxmusl.r52800.tar.xz 16-Nov-2019 00:54 348 +uplatex.x86_64-linuxmusl.tar.xz 16-Nov-2019 00:54 348 +uplatex.x86_64-solaris.r52800.tar.xz 16-Nov-2019 00:54 348 +uplatex.x86_64-solaris.tar.xz 16-Nov-2019 00:54 348 +upmendex.aarch64-linux.r74368.tar.xz 02-Mar-2025 01:11 6052488 +upmendex.aarch64-linux.tar.xz 02-Mar-2025 01:11 6052488 +upmendex.amd64-freebsd.r74155.tar.xz 20-Feb-2025 00:52 6297012 +upmendex.amd64-freebsd.tar.xz 20-Feb-2025 00:52 6297012 +upmendex.amd64-netbsd.r74138.tar.xz 20-Feb-2025 00:52 6090236 +upmendex.amd64-netbsd.tar.xz 20-Feb-2025 00:52 6090236 +upmendex.armhf-linux.r74368.tar.xz 02-Mar-2025 01:11 5995908 +upmendex.armhf-linux.tar.xz 02-Mar-2025 01:11 5995908 +upmendex.doc.r75593.tar.xz 23-Jun-2025 23:49 992768 +upmendex.doc.tar.xz 23-Jun-2025 23:49 992768 +upmendex.i386-freebsd.r74155.tar.xz 20-Feb-2025 00:52 6296260 +upmendex.i386-freebsd.tar.xz 20-Feb-2025 00:52 6296260 +upmendex.i386-linux.r74155.tar.xz 20-Feb-2025 00:52 6128008 +upmendex.i386-linux.tar.xz 20-Feb-2025 00:52 6128008 +upmendex.i386-netbsd.r74138.tar.xz 20-Feb-2025 00:52 6053596 +upmendex.i386-netbsd.tar.xz 20-Feb-2025 00:52 6053596 +upmendex.i386-solaris.r74155.tar.xz 20-Feb-2025 00:52 6242424 +upmendex.i386-solaris.tar.xz 20-Feb-2025 00:52 6242424 +upmendex.r75593.tar.xz 23-Jun-2025 23:49 800 +upmendex.tar.xz 23-Jun-2025 23:49 800 +upmendex.universal-darwin.r74175.tar.xz 21-Feb-2025 00:52 12565784 +upmendex.universal-darwin.tar.xz 21-Feb-2025 00:52 12565784 +upmendex.windows.r74157.tar.xz 20-Feb-2025 00:53 658472 +upmendex.windows.tar.xz 20-Feb-2025 00:53 658472 +upmendex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 6254492 +upmendex.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 6254492 +upmendex.x86_64-darwinlegacy.r74152.tar.xz 20-Feb-2025 00:53 6075780 +upmendex.x86_64-darwinlegacy.tar.xz 20-Feb-2025 00:53 6075780 +upmendex.x86_64-linux.r74155.tar.xz 20-Feb-2025 00:53 6096136 +upmendex.x86_64-linux.tar.xz 20-Feb-2025 00:53 6096136 +upmendex.x86_64-linuxmusl.r74155.tar.xz 20-Feb-2025 00:53 6251836 +upmendex.x86_64-linuxmusl.tar.xz 20-Feb-2025 00:53 6251836 +upmendex.x86_64-solaris.r74155.tar.xz 20-Feb-2025 00:53 6256864 +upmendex.x86_64-solaris.tar.xz 20-Feb-2025 00:53 6256864 +upmethodology.doc.r75054.tar.xz 29-Apr-2025 23:49 586908 +upmethodology.doc.tar.xz 29-Apr-2025 23:49 586908 +upmethodology.r75054.tar.xz 29-Apr-2025 23:49 32144 +upmethodology.tar.xz 29-Apr-2025 23:49 32144 +uppunctlm.doc.r42334.tar.xz 28-Feb-2019 03:11 156432 +uppunctlm.doc.tar.xz 28-Feb-2019 03:11 156432 +uppunctlm.r42334.tar.xz 28-Feb-2019 03:11 13992 +uppunctlm.tar.xz 28-Feb-2019 03:11 13992 +upquote.doc.r26059.tar.xz 28-Feb-2019 03:11 163312 +upquote.doc.tar.xz 28-Feb-2019 03:11 163312 +upquote.r26059.tar.xz 28-Feb-2019 03:11 1272 +upquote.source.r26059.tar.xz 28-Feb-2019 03:11 2688 +upquote.source.tar.xz 28-Feb-2019 03:11 2688 +upquote.tar.xz 28-Feb-2019 03:11 1272 +uptex-base.doc.r73291.tar.xz 04-Jan-2025 00:47 168452 +uptex-base.doc.tar.xz 04-Jan-2025 00:47 168452 +uptex-base.r73291.tar.xz 04-Jan-2025 00:47 9804 +uptex-base.tar.xz 04-Jan-2025 00:47 9804 +uptex-fonts.doc.r74119.tar.xz 19-Feb-2025 00:47 5392 +uptex-fonts.doc.tar.xz 19-Feb-2025 00:47 5392 +uptex-fonts.r74119.tar.xz 19-Feb-2025 00:47 168104 +uptex-fonts.tar.xz 19-Feb-2025 00:47 168104 +uptex.aarch64-linux.r74368.tar.xz 02-Mar-2025 01:11 1288524 +uptex.aarch64-linux.tar.xz 02-Mar-2025 01:11 1288524 +uptex.amd64-freebsd.r74368.tar.xz 02-Mar-2025 01:11 1238216 +uptex.amd64-freebsd.tar.xz 02-Mar-2025 01:11 1238216 +uptex.amd64-netbsd.r74367.tar.xz 02-Mar-2025 01:11 1212388 +uptex.amd64-netbsd.tar.xz 02-Mar-2025 01:11 1212388 +uptex.armhf-linux.r74368.tar.xz 02-Mar-2025 01:11 1210376 +uptex.armhf-linux.tar.xz 02-Mar-2025 01:11 1210376 +uptex.doc.r73848.tar.xz 11-Feb-2025 00:48 66740 +uptex.doc.tar.xz 11-Feb-2025 00:48 66740 +uptex.i386-freebsd.r74368.tar.xz 02-Mar-2025 01:11 1237492 +uptex.i386-freebsd.tar.xz 02-Mar-2025 01:11 1237492 +uptex.i386-linux.r74368.tar.xz 02-Mar-2025 01:11 1494444 +uptex.i386-linux.tar.xz 02-Mar-2025 01:11 1494444 +uptex.i386-netbsd.r74367.tar.xz 02-Mar-2025 01:11 1053276 +uptex.i386-netbsd.tar.xz 02-Mar-2025 01:11 1053276 +uptex.i386-solaris.r74368.tar.xz 02-Mar-2025 01:11 1340720 +uptex.i386-solaris.tar.xz 02-Mar-2025 01:11 1340720 +uptex.r73848.tar.xz 11-Feb-2025 00:48 912 +uptex.tar.xz 11-Feb-2025 00:48 912 +uptex.universal-darwin.r74380.tar.xz 02-Mar-2025 01:11 2751708 +uptex.universal-darwin.tar.xz 02-Mar-2025 01:11 2751708 +uptex.windows.r74518.tar.xz 08-Mar-2025 14:22 1406324 +uptex.windows.tar.xz 08-Mar-2025 14:22 1406324 +uptex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 1304880 +uptex.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 1304880 +uptex.x86_64-darwinlegacy.r74380.tar.xz 02-Mar-2025 01:11 1267468 +uptex.x86_64-darwinlegacy.tar.xz 02-Mar-2025 01:11 1267468 +uptex.x86_64-linux.r74368.tar.xz 02-Mar-2025 01:11 1416904 +uptex.x86_64-linux.tar.xz 02-Mar-2025 01:11 1416904 +uptex.x86_64-linuxmusl.r74368.tar.xz 02-Mar-2025 01:11 1441740 +uptex.x86_64-linuxmusl.tar.xz 02-Mar-2025 01:11 1441740 +uptex.x86_64-solaris.r74368.tar.xz 02-Mar-2025 01:11 1510228 +uptex.x86_64-solaris.tar.xz 02-Mar-2025 01:11 1510228 +upzhkinsoku.doc.r47354.tar.xz 28-Feb-2019 03:14 206168 +upzhkinsoku.doc.tar.xz 28-Feb-2019 03:14 206168 +upzhkinsoku.r47354.tar.xz 28-Feb-2019 03:14 1756 +upzhkinsoku.tar.xz 28-Feb-2019 03:14 1756 +urcls.doc.r49903.tar.xz 28-Feb-2019 03:14 901592 +urcls.doc.tar.xz 28-Feb-2019 03:14 901592 +urcls.r49903.tar.xz 28-Feb-2019 03:14 12640 +urcls.tar.xz 28-Feb-2019 03:14 12640 +uri.doc.r48602.tar.xz 28-Feb-2019 03:14 444592 +uri.doc.tar.xz 28-Feb-2019 03:14 444592 +uri.r48602.tar.xz 28-Feb-2019 03:14 3360 +uri.source.r48602.tar.xz 28-Feb-2019 03:14 13520 +uri.source.tar.xz 28-Feb-2019 03:14 13520 +uri.tar.xz 28-Feb-2019 03:14 3360 +url.doc.r32528.tar.xz 28-Feb-2019 03:14 266856 +url.doc.tar.xz 28-Feb-2019 03:14 266856 +url.r32528.tar.xz 28-Feb-2019 03:14 5528 +url.tar.xz 28-Feb-2019 03:14 5528 +urlbst.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:14 340 +urlbst.aarch64-linux.tar.xz 28-Feb-2019 03:14 340 +urlbst.amd64-freebsd.r23262.tar.xz 28-Feb-2019 03:14 340 +urlbst.amd64-freebsd.tar.xz 28-Feb-2019 03:14 340 +urlbst.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:14 340 +urlbst.amd64-netbsd.tar.xz 28-Feb-2019 03:14 340 +urlbst.armhf-linux.r30015.tar.xz 28-Feb-2019 03:14 336 +urlbst.armhf-linux.tar.xz 28-Feb-2019 03:14 336 +urlbst.doc.r65694.tar.xz 31-Jan-2023 00:52 252716 +urlbst.doc.tar.xz 31-Jan-2023 00:52 252716 +urlbst.i386-freebsd.r23262.tar.xz 28-Feb-2019 03:14 340 +urlbst.i386-freebsd.tar.xz 28-Feb-2019 03:14 340 +urlbst.i386-linux.r23262.tar.xz 28-Feb-2019 03:14 336 +urlbst.i386-linux.tar.xz 28-Feb-2019 03:14 336 +urlbst.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:14 336 +urlbst.i386-netbsd.tar.xz 28-Feb-2019 03:14 336 +urlbst.i386-solaris.r23262.tar.xz 28-Feb-2019 03:14 336 +urlbst.i386-solaris.tar.xz 28-Feb-2019 03:14 336 +urlbst.r65694.tar.xz 31-Jan-2023 00:52 14284 +urlbst.source.r65694.tar.xz 31-Jan-2023 00:52 23300 +urlbst.source.tar.xz 31-Jan-2023 00:52 23300 +urlbst.tar.xz 31-Jan-2023 00:52 14284 +urlbst.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 336 +urlbst.universal-darwin.tar.xz 25-Feb-2021 18:17 336 +urlbst.windows.r65891.tar.xz 20-Feb-2023 22:19 2304 +urlbst.windows.tar.xz 20-Feb-2023 22:19 2304 +urlbst.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:14 340 +urlbst.x86_64-cygwin.tar.xz 28-Feb-2019 03:14 340 +urlbst.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:14 348 +urlbst.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:14 348 +urlbst.x86_64-linux.r23262.tar.xz 28-Feb-2019 03:14 336 +urlbst.x86_64-linux.tar.xz 28-Feb-2019 03:14 336 +urlbst.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:14 340 +urlbst.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:14 340 +urlbst.x86_64-solaris.r23262.tar.xz 28-Feb-2019 03:14 336 +urlbst.x86_64-solaris.tar.xz 28-Feb-2019 03:14 336 +urwchancal.doc.r21701.tar.xz 28-Feb-2019 03:14 23148 +urwchancal.doc.tar.xz 28-Feb-2019 03:14 23148 +urwchancal.r21701.tar.xz 28-Feb-2019 03:14 1932 +urwchancal.tar.xz 28-Feb-2019 03:14 1932 +usebib.doc.r25969.tar.xz 28-Feb-2019 03:14 254984 +usebib.doc.tar.xz 28-Feb-2019 03:14 254984 +usebib.r25969.tar.xz 28-Feb-2019 03:14 1836 +usebib.source.r25969.tar.xz 28-Feb-2019 03:14 5932 +usebib.source.tar.xz 28-Feb-2019 03:14 5932 +usebib.tar.xz 28-Feb-2019 03:14 1836 +useclass.doc.r72455.tar.xz 03-Oct-2024 23:53 528348 +useclass.doc.tar.xz 03-Oct-2024 23:53 528348 +useclass.r72455.tar.xz 03-Oct-2024 23:53 1876 +useclass.source.r72455.tar.xz 03-Oct-2024 23:53 4116 +useclass.source.tar.xz 03-Oct-2024 23:53 4116 +useclass.tar.xz 03-Oct-2024 23:53 1876 +ushort.doc.r32261.tar.xz 28-Feb-2019 03:14 69108 +ushort.doc.tar.xz 28-Feb-2019 03:14 69108 +ushort.r32261.tar.xz 28-Feb-2019 03:14 1656 +ushort.source.r32261.tar.xz 28-Feb-2019 03:14 9124 +ushort.source.tar.xz 28-Feb-2019 03:14 9124 +ushort.tar.xz 28-Feb-2019 03:14 1656 +uspace.doc.r63123.tar.xz 24-Apr-2022 23:53 292136 +uspace.doc.tar.xz 24-Apr-2022 23:53 292136 +uspace.r63123.tar.xz 24-Apr-2022 23:53 1112 +uspace.tar.xz 24-Apr-2022 23:53 1112 +uspatent.doc.r27744.tar.xz 28-Feb-2019 03:14 2022300 +uspatent.doc.tar.xz 28-Feb-2019 03:14 2022300 +uspatent.r27744.tar.xz 28-Feb-2019 03:14 4824 +uspatent.tar.xz 28-Feb-2019 03:14 4824 +ut-thesis.doc.r76389.tar.xz 23-Sep-2025 23:49 134284 +ut-thesis.doc.tar.xz 23-Sep-2025 23:49 134284 +ut-thesis.r76389.tar.xz 23-Sep-2025 23:49 2640 +ut-thesis.source.r76389.tar.xz 23-Sep-2025 23:49 6864 +ut-thesis.source.tar.xz 23-Sep-2025 23:49 6864 +ut-thesis.tar.xz 23-Sep-2025 23:49 2640 +utexasthesis.doc.r48648.tar.xz 28-Feb-2019 03:14 2840 +utexasthesis.doc.tar.xz 28-Feb-2019 03:14 2840 +utexasthesis.r48648.tar.xz 28-Feb-2019 03:14 3744 +utexasthesis.tar.xz 28-Feb-2019 03:14 3744 +utf8add.doc.r61074.tar.xz 17-Nov-2021 00:54 78600 +utf8add.doc.tar.xz 17-Nov-2021 00:54 78600 +utf8add.r61074.tar.xz 17-Nov-2021 00:54 4272 +utf8add.tar.xz 17-Nov-2021 00:54 4272 +utf8mex.doc.r15878.tar.xz 28-Feb-2019 03:14 7496 +utf8mex.doc.tar.xz 28-Feb-2019 03:14 7496 +utf8mex.r15878.tar.xz 28-Feb-2019 03:14 2868 +utf8mex.tar.xz 28-Feb-2019 03:14 2868 +utfsym.doc.r63076.tar.xz 18-Apr-2022 23:52 2990532 +utfsym.doc.tar.xz 18-Apr-2022 23:52 2990532 +utfsym.r63076.tar.xz 18-Apr-2022 23:52 1889696 +utfsym.tar.xz 18-Apr-2022 23:52 1889696 +utopia.doc.r15878.tar.xz 28-Feb-2019 03:14 2820 +utopia.doc.tar.xz 28-Feb-2019 03:14 2820 +utopia.r15878.tar.xz 28-Feb-2019 03:14 205556 +utopia.tar.xz 28-Feb-2019 03:14 205556 +uvaletter.doc.r66712.tar.xz 30-Mar-2023 23:54 39744 +uvaletter.doc.tar.xz 30-Mar-2023 23:54 39744 +uvaletter.r66712.tar.xz 30-Mar-2023 23:54 1480 +uvaletter.tar.xz 30-Mar-2023 23:54 1480 +uwa-colours.doc.r60443.tar.xz 06-Sep-2021 23:52 127872 +uwa-colours.doc.tar.xz 06-Sep-2021 23:52 127872 +uwa-colours.r60443.tar.xz 06-Sep-2021 23:52 1228 +uwa-colours.source.r60443.tar.xz 06-Sep-2021 23:52 3016 +uwa-colours.source.tar.xz 06-Sep-2021 23:52 3016 +uwa-colours.tar.xz 06-Sep-2021 23:52 1228 +uwa-letterhead.doc.r76389.tar.xz 23-Sep-2025 23:49 57656 +uwa-letterhead.doc.tar.xz 23-Sep-2025 23:49 57656 +uwa-letterhead.r76389.tar.xz 23-Sep-2025 23:49 3348 +uwa-letterhead.source.r76389.tar.xz 23-Sep-2025 23:49 6568 +uwa-letterhead.source.tar.xz 23-Sep-2025 23:49 6568 +uwa-letterhead.tar.xz 23-Sep-2025 23:49 3348 +uwa-pcf.doc.r76389.tar.xz 23-Sep-2025 23:49 52740 +uwa-pcf.doc.tar.xz 23-Sep-2025 23:49 52740 +uwa-pcf.r76389.tar.xz 23-Sep-2025 23:49 2924 +uwa-pcf.source.r76389.tar.xz 23-Sep-2025 23:49 6064 +uwa-pcf.source.tar.xz 23-Sep-2025 23:49 6064 +uwa-pcf.tar.xz 23-Sep-2025 23:49 2924 +uwa-pif.doc.r76389.tar.xz 23-Sep-2025 23:49 50500 +uwa-pif.doc.tar.xz 23-Sep-2025 23:49 50500 +uwa-pif.r76389.tar.xz 23-Sep-2025 23:49 2592 +uwa-pif.source.r76389.tar.xz 23-Sep-2025 23:49 5696 +uwa-pif.source.tar.xz 23-Sep-2025 23:49 5696 +uwa-pif.tar.xz 23-Sep-2025 23:49 2592 +uwmslide.doc.r27354.tar.xz 28-Feb-2019 03:14 11764 +uwmslide.doc.tar.xz 28-Feb-2019 03:14 11764 +uwmslide.r27354.tar.xz 28-Feb-2019 03:14 3916 +uwmslide.tar.xz 28-Feb-2019 03:14 3916 +uwthesis.doc.r15878.tar.xz 28-Feb-2019 03:14 137544 +uwthesis.doc.tar.xz 28-Feb-2019 03:14 137544 +uwthesis.r15878.tar.xz 28-Feb-2019 03:14 8092 +uwthesis.tar.xz 28-Feb-2019 03:14 8092 +vak.doc.r75878.tar.xz 23-Jul-2025 23:51 91264 +vak.doc.tar.xz 23-Jul-2025 23:51 91264 +vak.r75878.tar.xz 23-Jul-2025 23:51 5940 +vak.tar.xz 23-Jul-2025 23:51 5940 +vancouver.doc.r59192.tar.xz 14-May-2021 23:53 137272 +vancouver.doc.tar.xz 14-May-2021 23:53 137272 +vancouver.r59192.tar.xz 14-May-2021 23:53 8708 +vancouver.tar.xz 14-May-2021 23:53 8708 +variablelm.doc.r60014.tar.xz 22-Jul-2021 23:51 134724 +variablelm.doc.tar.xz 22-Jul-2021 23:51 134724 +variablelm.r60014.tar.xz 22-Jul-2021 23:51 3608 +variablelm.tar.xz 22-Jul-2021 23:51 3608 +variations.doc.r15878.tar.xz 28-Feb-2019 03:14 75756 +variations.doc.tar.xz 28-Feb-2019 03:14 75756 +variations.r15878.tar.xz 28-Feb-2019 03:14 1320 +variations.tar.xz 28-Feb-2019 03:14 1320 +varindex.doc.r32262.tar.xz 28-Feb-2019 03:14 227344 +varindex.doc.tar.xz 28-Feb-2019 03:14 227344 +varindex.r32262.tar.xz 28-Feb-2019 03:14 6512 +varindex.source.r32262.tar.xz 28-Feb-2019 03:14 40500 +varindex.source.tar.xz 28-Feb-2019 03:14 40500 +varindex.tar.xz 28-Feb-2019 03:14 6512 +varisize.doc.r15878.tar.xz 28-Feb-2019 03:14 440 +varisize.doc.tar.xz 28-Feb-2019 03:14 440 +varisize.r15878.tar.xz 28-Feb-2019 03:14 3204 +varisize.tar.xz 28-Feb-2019 03:14 3204 +varsfromjobname.doc.r75959.tar.xz 03-Aug-2025 23:46 221216 +varsfromjobname.doc.tar.xz 03-Aug-2025 23:46 221216 +varsfromjobname.r75959.tar.xz 03-Aug-2025 23:46 1100 +varsfromjobname.tar.xz 03-Aug-2025 23:46 1100 +varwidth.doc.r24104.tar.xz 28-Feb-2019 03:14 25844 +varwidth.doc.tar.xz 28-Feb-2019 03:14 25844 +varwidth.r24104.tar.xz 28-Feb-2019 03:14 4152 +varwidth.tar.xz 28-Feb-2019 03:14 4152 +vaucanson-g.doc.r15878.tar.xz 28-Feb-2019 03:14 288568 +vaucanson-g.doc.tar.xz 28-Feb-2019 03:14 288568 +vaucanson-g.r15878.tar.xz 28-Feb-2019 03:14 11360 +vaucanson-g.tar.xz 28-Feb-2019 03:14 11360 +vcell.doc.r59039.tar.xz 01-May-2021 23:57 137652 +vcell.doc.tar.xz 01-May-2021 23:57 137652 +vcell.r59039.tar.xz 01-May-2021 23:57 1392 +vcell.tar.xz 01-May-2021 23:57 1392 +vdmlisting.doc.r56905.tar.xz 11-Nov-2020 00:56 69156 +vdmlisting.doc.tar.xz 11-Nov-2020 00:56 69156 +vdmlisting.r56905.tar.xz 11-Nov-2020 00:56 2992 +vdmlisting.tar.xz 11-Nov-2020 00:56 2992 +vectorlogos.doc.r73069.tar.xz 08-Dec-2024 01:14 763600 +vectorlogos.doc.tar.xz 08-Dec-2024 01:14 763600 +vectorlogos.r73069.tar.xz 08-Dec-2024 01:14 341496 +vectorlogos.tar.xz 08-Dec-2024 01:14 341496 +velthuis.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:51 13076 +velthuis.aarch64-linux.tar.xz 13-Feb-2025 00:51 13076 +velthuis.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:56 11348 +velthuis.amd64-freebsd.tar.xz 09-Feb-2025 00:56 11348 +velthuis.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:17 11668 +velthuis.amd64-netbsd.tar.xz 09-Feb-2025 18:17 11668 +velthuis.armhf-linux.r73793.tar.xz 09-Feb-2025 00:56 11796 +velthuis.armhf-linux.tar.xz 09-Feb-2025 00:56 11796 +velthuis.doc.r66186.tar.xz 26-Feb-2023 23:51 979936 +velthuis.doc.tar.xz 26-Feb-2023 23:51 979936 +velthuis.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:56 11352 +velthuis.i386-freebsd.tar.xz 09-Feb-2025 00:56 11352 +velthuis.i386-linux.r73792.tar.xz 09-Feb-2025 00:56 13408 +velthuis.i386-linux.tar.xz 09-Feb-2025 00:56 13408 +velthuis.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:17 10516 +velthuis.i386-netbsd.tar.xz 09-Feb-2025 18:17 10516 +velthuis.i386-solaris.r73792.tar.xz 09-Feb-2025 00:56 12804 +velthuis.i386-solaris.tar.xz 09-Feb-2025 00:56 12804 +velthuis.r66186.tar.xz 26-Feb-2023 23:51 4149432 +velthuis.tar.xz 26-Feb-2023 23:51 4149432 +velthuis.universal-darwin.r73806.tar.xz 09-Feb-2025 18:17 30480 +velthuis.universal-darwin.tar.xz 09-Feb-2025 18:17 30480 +velthuis.windows.r73796.tar.xz 09-Feb-2025 18:17 14412 +velthuis.windows.tar.xz 09-Feb-2025 18:17 14412 +velthuis.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 13100 +velthuis.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 13100 +velthuis.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:51 11772 +velthuis.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:51 11772 +velthuis.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 12312 +velthuis.x86_64-linux.tar.xz 19-Feb-2025 00:47 12312 +velthuis.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:56 13348 +velthuis.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:56 13348 +velthuis.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:56 14548 +velthuis.x86_64-solaris.tar.xz 09-Feb-2025 00:56 14548 +venn.doc.r15878.tar.xz 28-Feb-2019 03:14 684 +venn.doc.tar.xz 28-Feb-2019 03:14 684 +venn.r15878.tar.xz 28-Feb-2019 03:14 2120 +venn.tar.xz 28-Feb-2019 03:14 2120 +venndiagram.doc.r47952.tar.xz 28-Feb-2019 03:14 338640 +venndiagram.doc.tar.xz 28-Feb-2019 03:14 338640 +venndiagram.r47952.tar.xz 28-Feb-2019 03:14 4200 +venndiagram.source.r47952.tar.xz 28-Feb-2019 03:14 9832 +venndiagram.source.tar.xz 28-Feb-2019 03:14 9832 +venndiagram.tar.xz 28-Feb-2019 03:14 4200 +venturisadf.doc.r72484.tar.xz 07-Oct-2024 23:49 7788852 +venturisadf.doc.tar.xz 07-Oct-2024 23:49 7788852 +venturisadf.r72484.tar.xz 07-Oct-2024 23:49 4984108 +venturisadf.source.r72484.tar.xz 07-Oct-2024 23:49 32292 +venturisadf.source.tar.xz 07-Oct-2024 23:49 32292 +venturisadf.tar.xz 07-Oct-2024 23:49 4984108 +verbasef.doc.r21922.tar.xz 28-Feb-2019 03:14 336984 +verbasef.doc.tar.xz 28-Feb-2019 03:14 336984 +verbasef.r21922.tar.xz 28-Feb-2019 03:14 4456 +verbasef.tar.xz 28-Feb-2019 03:14 4456 +verbatimbox.doc.r67865.tar.xz 09-Aug-2023 23:45 242340 +verbatimbox.doc.tar.xz 09-Aug-2023 23:45 242340 +verbatimbox.r67865.tar.xz 09-Aug-2023 23:45 3544 +verbatimbox.tar.xz 09-Aug-2023 23:45 3544 +verbatimcopy.doc.r15878.tar.xz 28-Feb-2019 03:14 164540 +verbatimcopy.doc.tar.xz 28-Feb-2019 03:14 164540 +verbatimcopy.r15878.tar.xz 28-Feb-2019 03:14 2676 +verbatimcopy.tar.xz 28-Feb-2019 03:14 2676 +verbdef.doc.r17177.tar.xz 28-Feb-2019 03:14 54124 +verbdef.doc.tar.xz 28-Feb-2019 03:14 54124 +verbdef.r17177.tar.xz 28-Feb-2019 03:14 1684 +verbdef.tar.xz 28-Feb-2019 03:14 1684 +verbments.doc.r23670.tar.xz 28-Feb-2019 03:14 74784 +verbments.doc.tar.xz 28-Feb-2019 03:14 74784 +verbments.r23670.tar.xz 28-Feb-2019 03:14 2200 +verbments.tar.xz 28-Feb-2019 03:14 2200 +verifica.doc.r75682.tar.xz 04-Jul-2025 23:48 1205828 +verifica.doc.tar.xz 04-Jul-2025 23:48 1205828 +verifica.r75682.tar.xz 04-Jul-2025 23:48 3996 +verifica.source.r75682.tar.xz 04-Jul-2025 23:48 22384 +verifica.source.tar.xz 04-Jul-2025 23:48 22384 +verifica.tar.xz 04-Jul-2025 23:48 3996 +verifiche.doc.r72983.tar.xz 28-Nov-2024 00:48 886032 +verifiche.doc.tar.xz 28-Nov-2024 00:48 886032 +verifiche.r72983.tar.xz 28-Nov-2024 00:48 5592 +verifiche.source.r72983.tar.xz 28-Nov-2024 00:48 19768 +verifiche.source.tar.xz 28-Nov-2024 00:48 19768 +verifiche.tar.xz 28-Nov-2024 00:48 5592 +verifycommand.doc.r74512.tar.xz 08-Mar-2025 00:49 262432 +verifycommand.doc.tar.xz 08-Mar-2025 00:49 262432 +verifycommand.r74512.tar.xz 08-Mar-2025 00:49 2576 +verifycommand.source.r74512.tar.xz 08-Mar-2025 00:49 12056 +verifycommand.source.tar.xz 08-Mar-2025 00:49 12056 +verifycommand.tar.xz 08-Mar-2025 00:49 2576 +verse.doc.r69835.tar.xz 14-Feb-2024 00:46 456236 +verse.doc.tar.xz 14-Feb-2024 00:46 456236 +verse.r69835.tar.xz 14-Feb-2024 00:46 3196 +verse.source.r69835.tar.xz 14-Feb-2024 00:46 15516 +verse.source.tar.xz 14-Feb-2024 00:46 15516 +verse.tar.xz 14-Feb-2024 00:46 3196 +version.doc.r21920.tar.xz 28-Feb-2019 03:14 304932 +version.doc.tar.xz 28-Feb-2019 03:14 304932 +version.r21920.tar.xz 28-Feb-2019 03:14 2468 +version.tar.xz 28-Feb-2019 03:14 2468 +versions.doc.r21921.tar.xz 28-Feb-2019 03:14 353936 +versions.doc.tar.xz 28-Feb-2019 03:14 353936 +versions.r21921.tar.xz 28-Feb-2019 03:14 5828 +versions.tar.xz 28-Feb-2019 03:14 5828 +versonotes.doc.r69249.tar.xz 01-Jan-2024 00:46 123332 +versonotes.doc.tar.xz 01-Jan-2024 00:46 123332 +versonotes.r69249.tar.xz 01-Jan-2024 00:46 2832 +versonotes.source.r69249.tar.xz 01-Jan-2024 00:46 9252 +versonotes.source.tar.xz 01-Jan-2024 00:46 9252 +versonotes.tar.xz 01-Jan-2024 00:46 2832 +vertbars.doc.r49429.tar.xz 28-Feb-2019 03:14 163000 +vertbars.doc.tar.xz 28-Feb-2019 03:14 163000 +vertbars.r49429.tar.xz 28-Feb-2019 03:14 1220 +vertbars.tar.xz 28-Feb-2019 03:14 1220 +vgrid.doc.r32457.tar.xz 28-Feb-2019 03:14 24004 +vgrid.doc.tar.xz 28-Feb-2019 03:14 24004 +vgrid.r32457.tar.xz 28-Feb-2019 03:14 1216 +vgrid.source.r32457.tar.xz 28-Feb-2019 03:14 2264 +vgrid.source.tar.xz 28-Feb-2019 03:14 2264 +vgrid.tar.xz 28-Feb-2019 03:14 1216 +vhistory.doc.r61719.tar.xz 24-Jan-2022 00:56 347268 +vhistory.doc.tar.xz 24-Jan-2022 00:56 347268 +vhistory.r61719.tar.xz 24-Jan-2022 00:56 8400 +vhistory.tar.xz 24-Jan-2022 00:56 8400 +visualfaq-fr.doc.r71053.tar.xz 23-Apr-2024 23:47 4717868 +visualfaq-fr.doc.tar.xz 23-Apr-2024 23:47 4717868 +visualfaq-fr.r71053.tar.xz 23-Apr-2024 23:47 784 +visualfaq-fr.tar.xz 23-Apr-2024 23:47 784 +visualfaq.doc.r61719.tar.xz 24-Jan-2022 00:56 5182308 +visualfaq.doc.tar.xz 24-Jan-2022 00:56 5182308 +visualfaq.r61719.tar.xz 24-Jan-2022 00:56 568 +visualfaq.tar.xz 24-Jan-2022 00:56 568 +visualpstricks.doc.r39799.tar.xz 28-Feb-2019 03:14 13043468 +visualpstricks.doc.tar.xz 28-Feb-2019 03:14 13043468 +visualpstricks.r39799.tar.xz 28-Feb-2019 03:14 432 +visualpstricks.tar.xz 28-Feb-2019 03:14 432 +visualtikz.doc.r54080.tar.xz 04-Mar-2020 22:55 3961060 +visualtikz.doc.tar.xz 04-Mar-2020 22:55 3961060 +visualtikz.r54080.tar.xz 04-Mar-2020 22:55 456 +visualtikz.tar.xz 04-Mar-2020 22:55 456 +visualtoks.doc.r76207.tar.xz 01-Sep-2025 23:46 158764 +visualtoks.doc.tar.xz 01-Sep-2025 23:46 158764 +visualtoks.r76207.tar.xz 01-Sep-2025 23:46 1548 +visualtoks.tar.xz 01-Sep-2025 23:46 1548 +vlna.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:51 6908 +vlna.aarch64-linux.tar.xz 13-Feb-2025 00:51 6908 +vlna.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:56 6464 +vlna.amd64-freebsd.tar.xz 09-Feb-2025 00:56 6464 +vlna.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:17 6784 +vlna.amd64-netbsd.tar.xz 09-Feb-2025 18:17 6784 +vlna.armhf-linux.r73793.tar.xz 09-Feb-2025 00:56 6336 +vlna.armhf-linux.tar.xz 09-Feb-2025 00:56 6336 +vlna.doc.r73908.tar.xz 12-Feb-2025 00:51 142764 +vlna.doc.tar.xz 12-Feb-2025 00:51 142764 +vlna.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:56 6460 +vlna.i386-freebsd.tar.xz 09-Feb-2025 00:56 6460 +vlna.i386-linux.r73792.tar.xz 09-Feb-2025 00:56 7052 +vlna.i386-linux.tar.xz 09-Feb-2025 00:56 7052 +vlna.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:17 6252 +vlna.i386-netbsd.tar.xz 09-Feb-2025 18:17 6252 +vlna.i386-solaris.r73792.tar.xz 09-Feb-2025 00:56 7080 +vlna.i386-solaris.tar.xz 09-Feb-2025 00:56 7080 +vlna.r73908.tar.xz 12-Feb-2025 00:51 380 +vlna.tar.xz 12-Feb-2025 00:51 380 +vlna.universal-darwin.r73806.tar.xz 09-Feb-2025 18:17 21772 +vlna.universal-darwin.tar.xz 09-Feb-2025 18:17 21772 +vlna.windows.r73796.tar.xz 09-Feb-2025 18:17 8696 +vlna.windows.tar.xz 09-Feb-2025 18:17 8696 +vlna.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 7076 +vlna.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 7076 +vlna.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:51 6784 +vlna.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:51 6784 +vlna.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 6852 +vlna.x86_64-linux.tar.xz 19-Feb-2025 00:47 6852 +vlna.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:56 6760 +vlna.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:56 6760 +vlna.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:56 8260 +vlna.x86_64-solaris.tar.xz 09-Feb-2025 00:56 8260 +vmargin.doc.r15878.tar.xz 28-Feb-2019 03:14 155348 +vmargin.doc.tar.xz 28-Feb-2019 03:14 155348 +vmargin.r15878.tar.xz 28-Feb-2019 03:14 2852 +vmargin.source.r15878.tar.xz 28-Feb-2019 03:14 10616 +vmargin.source.tar.xz 28-Feb-2019 03:14 10616 +vmargin.tar.xz 28-Feb-2019 03:14 2852 +vntex.doc.r62837.tar.xz 21-Mar-2022 00:55 681780 +vntex.doc.tar.xz 21-Mar-2022 00:55 681780 +vntex.r62837.tar.xz 21-Mar-2022 00:55 5391740 +vntex.source.r62837.tar.xz 21-Mar-2022 00:55 64028 +vntex.source.tar.xz 21-Mar-2022 00:55 64028 +vntex.tar.xz 21-Mar-2022 00:55 5391740 +vocaltract.doc.r25629.tar.xz 28-Feb-2019 03:14 15924 +vocaltract.doc.tar.xz 28-Feb-2019 03:14 15924 +vocaltract.r25629.tar.xz 28-Feb-2019 03:14 9208 +vocaltract.tar.xz 28-Feb-2019 03:14 9208 +volumes.doc.r75878.tar.xz 23-Jul-2025 23:51 146160 +volumes.doc.tar.xz 23-Jul-2025 23:51 146160 +volumes.r75878.tar.xz 23-Jul-2025 23:51 2516 +volumes.source.r75878.tar.xz 23-Jul-2025 23:51 10228 +volumes.source.tar.xz 23-Jul-2025 23:51 10228 +volumes.tar.xz 23-Jul-2025 23:51 2516 +voss-mathcol.doc.r32954.tar.xz 28-Feb-2019 03:14 230644 +voss-mathcol.doc.tar.xz 28-Feb-2019 03:14 230644 +voss-mathcol.r32954.tar.xz 28-Feb-2019 03:14 548 +voss-mathcol.tar.xz 28-Feb-2019 03:14 548 +vpe.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:14 336 +vpe.aarch64-linux.tar.xz 28-Feb-2019 03:14 336 +vpe.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:14 336 +vpe.amd64-freebsd.tar.xz 28-Feb-2019 03:14 336 +vpe.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:14 340 +vpe.amd64-netbsd.tar.xz 28-Feb-2019 03:14 340 +vpe.armhf-linux.r30015.tar.xz 28-Feb-2019 03:14 336 +vpe.armhf-linux.tar.xz 28-Feb-2019 03:14 336 +vpe.doc.r26039.tar.xz 28-Feb-2019 03:14 6692 +vpe.doc.tar.xz 28-Feb-2019 03:14 6692 +vpe.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:14 340 +vpe.i386-freebsd.tar.xz 28-Feb-2019 03:14 340 +vpe.i386-linux.r6897.tar.xz 28-Feb-2019 03:14 336 +vpe.i386-linux.tar.xz 28-Feb-2019 03:14 336 +vpe.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:14 336 +vpe.i386-netbsd.tar.xz 28-Feb-2019 03:14 336 +vpe.i386-solaris.r8102.tar.xz 28-Feb-2019 03:14 336 +vpe.i386-solaris.tar.xz 28-Feb-2019 03:14 336 +vpe.r26039.tar.xz 28-Feb-2019 03:14 8120 +vpe.tar.xz 28-Feb-2019 03:14 8120 +vpe.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +vpe.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +vpe.windows.r65891.tar.xz 20-Feb-2023 22:19 2300 +vpe.windows.tar.xz 20-Feb-2023 22:19 2300 +vpe.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:14 340 +vpe.x86_64-cygwin.tar.xz 28-Feb-2019 03:14 340 +vpe.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:14 348 +vpe.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:14 348 +vpe.x86_64-linux.r8601.tar.xz 28-Feb-2019 03:14 336 +vpe.x86_64-linux.tar.xz 28-Feb-2019 03:14 336 +vpe.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:14 344 +vpe.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:14 344 +vpe.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:14 340 +vpe.x86_64-solaris.tar.xz 28-Feb-2019 03:14 340 +vruler.doc.r21598.tar.xz 28-Feb-2019 03:14 220752 +vruler.doc.tar.xz 28-Feb-2019 03:14 220752 +vruler.r21598.tar.xz 28-Feb-2019 03:14 6004 +vruler.tar.xz 28-Feb-2019 03:14 6004 +vtable.doc.r51126.tar.xz 14-May-2019 23:39 59744 +vtable.doc.tar.xz 14-May-2019 23:39 59744 +vtable.r51126.tar.xz 14-May-2019 23:39 3708 +vtable.tar.xz 14-May-2019 23:39 3708 +vwcol.doc.r36254.tar.xz 28-Feb-2019 03:14 272620 +vwcol.doc.tar.xz 28-Feb-2019 03:14 272620 +vwcol.r36254.tar.xz 28-Feb-2019 03:14 3140 +vwcol.source.r36254.tar.xz 28-Feb-2019 03:14 11468 +vwcol.source.tar.xz 28-Feb-2019 03:14 11468 +vwcol.tar.xz 28-Feb-2019 03:14 3140 +wadalab.doc.r42428.tar.xz 28-Feb-2019 03:14 93720 +wadalab.doc.tar.xz 28-Feb-2019 03:14 93720 +wadalab.r42428.tar.xz 28-Feb-2019 03:14 17772744 +wadalab.tar.xz 28-Feb-2019 03:14 17772744 +wallcalendar.doc.r75649.tar.xz 29-Jun-2025 23:47 2695252 +wallcalendar.doc.tar.xz 29-Jun-2025 23:47 2695252 +wallcalendar.r75649.tar.xz 29-Jun-2025 23:47 26428 +wallcalendar.tar.xz 29-Jun-2025 23:47 26428 +wallpaper.doc.r15878.tar.xz 28-Feb-2019 03:14 1277340 +wallpaper.doc.tar.xz 28-Feb-2019 03:14 1277340 +wallpaper.r15878.tar.xz 28-Feb-2019 03:14 1576 +wallpaper.tar.xz 28-Feb-2019 03:14 1576 +wargame.doc.r72903.tar.xz 20-Nov-2024 00:46 2573940 +wargame.doc.tar.xz 20-Nov-2024 00:46 2573940 +wargame.r72903.tar.xz 20-Nov-2024 00:46 276556 +wargame.source.r72903.tar.xz 20-Nov-2024 00:46 221796 +wargame.source.tar.xz 20-Nov-2024 00:46 221796 +wargame.tar.xz 20-Nov-2024 00:46 276556 +warning.doc.r73265.tar.xz 02-Jan-2025 00:49 284740 +warning.doc.tar.xz 02-Jan-2025 00:49 284740 +warning.r73265.tar.xz 02-Jan-2025 00:49 1672 +warning.tar.xz 02-Jan-2025 00:49 1672 +warpcol.doc.r15878.tar.xz 28-Feb-2019 03:14 85512 +warpcol.doc.tar.xz 28-Feb-2019 03:14 85512 +warpcol.r15878.tar.xz 28-Feb-2019 03:14 1336 +warpcol.source.r15878.tar.xz 28-Feb-2019 03:14 3416 +warpcol.source.tar.xz 28-Feb-2019 03:14 3416 +warpcol.tar.xz 28-Feb-2019 03:14 1336 +was.doc.r64691.tar.xz 12-Oct-2022 23:55 285328 +was.doc.tar.xz 12-Oct-2022 23:55 285328 +was.r64691.tar.xz 12-Oct-2022 23:55 1856 +was.source.r64691.tar.xz 12-Oct-2022 23:55 4652 +was.source.tar.xz 12-Oct-2022 23:55 4652 +was.tar.xz 12-Oct-2022 23:55 1856 +wasy-type1.doc.r53534.tar.xz 25-Jan-2020 00:55 740 +wasy-type1.doc.tar.xz 25-Jan-2020 00:55 740 +wasy-type1.r53534.tar.xz 25-Jan-2020 00:55 261536 +wasy-type1.tar.xz 25-Jan-2020 00:55 261536 +wasy.doc.r53533.tar.xz 25-Jan-2020 00:55 305032 +wasy.doc.tar.xz 25-Jan-2020 00:55 305032 +wasy.r53533.tar.xz 25-Jan-2020 00:55 24132 +wasy.tar.xz 25-Jan-2020 00:55 24132 +wasysym.doc.r54080.tar.xz 04-Mar-2020 22:55 163244 +wasysym.doc.tar.xz 04-Mar-2020 22:55 163244 +wasysym.r54080.tar.xz 04-Mar-2020 22:55 3660 +wasysym.source.r54080.tar.xz 04-Mar-2020 22:55 9048 +wasysym.source.tar.xz 04-Mar-2020 22:55 9048 +wasysym.tar.xz 04-Mar-2020 22:55 3660 +web.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:51 78160 +web.aarch64-linux.tar.xz 13-Feb-2025 00:51 78160 +web.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:56 79184 +web.amd64-freebsd.tar.xz 09-Feb-2025 00:56 79184 +web.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:17 75116 +web.amd64-netbsd.tar.xz 09-Feb-2025 18:17 75116 +web.armhf-linux.r73793.tar.xz 09-Feb-2025 00:56 71932 +web.armhf-linux.tar.xz 09-Feb-2025 00:56 71932 +web.doc.r73848.tar.xz 11-Feb-2025 00:48 46156 +web.doc.tar.xz 11-Feb-2025 00:48 46156 +web.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:56 79212 +web.i386-freebsd.tar.xz 09-Feb-2025 00:56 79212 +web.i386-linux.r73792.tar.xz 09-Feb-2025 00:56 86136 +web.i386-linux.tar.xz 09-Feb-2025 00:56 86136 +web.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:17 60912 +web.i386-netbsd.tar.xz 09-Feb-2025 18:17 60912 +web.i386-solaris.r73792.tar.xz 09-Feb-2025 00:56 79300 +web.i386-solaris.tar.xz 09-Feb-2025 00:56 79300 +web.r73848.tar.xz 11-Feb-2025 00:48 500 +web.tar.xz 11-Feb-2025 00:48 500 +web.universal-darwin.r73806.tar.xz 09-Feb-2025 18:17 163984 +web.universal-darwin.tar.xz 09-Feb-2025 18:17 163984 +web.windows.r73796.tar.xz 09-Feb-2025 18:17 47064 +web.windows.tar.xz 09-Feb-2025 18:17 47064 +web.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 45548 +web.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 45548 +web.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:51 76940 +web.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:51 76940 +web.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 79668 +web.x86_64-linux.tar.xz 19-Feb-2025 00:47 79668 +web.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:56 86568 +web.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:56 86568 +web.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:56 90788 +web.x86_64-solaris.tar.xz 09-Feb-2025 00:56 90788 +webguide.doc.r25813.tar.xz 28-Feb-2019 03:14 145660 +webguide.doc.tar.xz 28-Feb-2019 03:14 145660 +webguide.r25813.tar.xz 28-Feb-2019 03:14 452 +webguide.tar.xz 28-Feb-2019 03:14 452 +webquiz.aarch64-linux.r50419.tar.xz 17-Mar-2019 01:24 336 +webquiz.aarch64-linux.tar.xz 17-Mar-2019 01:24 336 +webquiz.amd64-freebsd.r50419.tar.xz 17-Mar-2019 01:24 340 +webquiz.amd64-freebsd.tar.xz 17-Mar-2019 01:24 340 +webquiz.amd64-netbsd.r50419.tar.xz 17-Mar-2019 01:24 340 +webquiz.amd64-netbsd.tar.xz 17-Mar-2019 01:24 340 +webquiz.armhf-linux.r50419.tar.xz 17-Mar-2019 01:24 336 +webquiz.armhf-linux.tar.xz 17-Mar-2019 01:24 336 +webquiz.doc.r58808.tar.xz 09-Apr-2021 23:54 6857256 +webquiz.doc.tar.xz 09-Apr-2021 23:54 6857256 +webquiz.i386-freebsd.r50419.tar.xz 17-Mar-2019 01:24 340 +webquiz.i386-freebsd.tar.xz 17-Mar-2019 01:24 340 +webquiz.i386-linux.r50419.tar.xz 17-Mar-2019 01:24 336 +webquiz.i386-linux.tar.xz 17-Mar-2019 01:24 336 +webquiz.i386-netbsd.r50419.tar.xz 17-Mar-2019 01:24 336 +webquiz.i386-netbsd.tar.xz 17-Mar-2019 01:24 336 +webquiz.i386-solaris.r50419.tar.xz 17-Mar-2019 01:24 340 +webquiz.i386-solaris.tar.xz 17-Mar-2019 01:24 340 +webquiz.r58808.tar.xz 09-Apr-2021 23:54 47352 +webquiz.tar.xz 09-Apr-2021 23:54 47352 +webquiz.universal-darwin.r57908.tar.xz 25-Feb-2021 18:17 340 +webquiz.universal-darwin.tar.xz 25-Feb-2021 18:17 340 +webquiz.windows.r65891.tar.xz 20-Feb-2023 22:19 2308 +webquiz.windows.tar.xz 20-Feb-2023 22:19 2308 +webquiz.x86_64-cygwin.r50419.tar.xz 17-Mar-2019 01:24 340 +webquiz.x86_64-cygwin.tar.xz 17-Mar-2019 01:24 340 +webquiz.x86_64-darwinlegacy.r50419.tar.xz 17-Mar-2019 01:24 348 +webquiz.x86_64-darwinlegacy.tar.xz 17-Mar-2019 01:24 348 +webquiz.x86_64-linux.r50419.tar.xz 17-Mar-2019 01:24 340 +webquiz.x86_64-linux.tar.xz 17-Mar-2019 01:24 340 +webquiz.x86_64-linuxmusl.r50419.tar.xz 17-Mar-2019 01:24 344 +webquiz.x86_64-linuxmusl.tar.xz 17-Mar-2019 01:24 344 +webquiz.x86_64-solaris.r50419.tar.xz 17-Mar-2019 01:24 336 +webquiz.x86_64-solaris.tar.xz 17-Mar-2019 01:24 336 +weiqi.doc.r70178.tar.xz 27-Feb-2024 00:46 335340 +weiqi.doc.tar.xz 27-Feb-2024 00:46 335340 +weiqi.r70178.tar.xz 27-Feb-2024 00:46 6560 +weiqi.source.r70178.tar.xz 27-Feb-2024 00:46 14408 +weiqi.source.tar.xz 27-Feb-2024 00:46 14408 +weiqi.tar.xz 27-Feb-2024 00:46 6560 +whatsnote.doc.r75447.tar.xz 07-Jun-2025 23:49 331556 +whatsnote.doc.tar.xz 07-Jun-2025 23:49 331556 +whatsnote.r75447.tar.xz 07-Jun-2025 23:49 5260 +whatsnote.tar.xz 07-Jun-2025 23:49 5260 +wheelchart.doc.r75886.tar.xz 24-Jul-2025 23:48 1224968 +wheelchart.doc.tar.xz 24-Jul-2025 23:48 1224968 +wheelchart.r75886.tar.xz 24-Jul-2025 23:48 17636 +wheelchart.tar.xz 24-Jul-2025 23:48 17636 +widetable.doc.r53409.tar.xz 16-Jan-2020 00:55 465604 +widetable.doc.tar.xz 16-Jan-2020 00:55 465604 +widetable.r53409.tar.xz 16-Jan-2020 00:55 1468 +widetable.source.r53409.tar.xz 16-Jan-2020 00:55 9224 +widetable.source.tar.xz 16-Jan-2020 00:55 9224 +widetable.tar.xz 16-Jan-2020 00:55 1468 +widows-and-orphans.doc.r66753.tar.xz 03-Apr-2023 23:54 802084 +widows-and-orphans.doc.tar.xz 03-Apr-2023 23:54 802084 +widows-and-orphans.r66753.tar.xz 03-Apr-2023 23:54 2908 +widows-and-orphans.source.r66753.tar.xz 03-Apr-2023 23:54 12568 +widows-and-orphans.source.tar.xz 03-Apr-2023 23:54 12568 +widows-and-orphans.tar.xz 03-Apr-2023 23:54 2908 +williams.doc.r15878.tar.xz 28-Feb-2019 03:15 792 +williams.doc.tar.xz 28-Feb-2019 03:15 792 +williams.r15878.tar.xz 28-Feb-2019 03:15 2472 +williams.tar.xz 28-Feb-2019 03:15 2472 +willowtreebook.doc.r60638.tar.xz 28-Sep-2021 23:52 24230688 +willowtreebook.doc.tar.xz 28-Sep-2021 23:52 24230688 +willowtreebook.r60638.tar.xz 28-Sep-2021 23:52 6300 +willowtreebook.tar.xz 28-Sep-2021 23:52 6300 +windycity.doc.r67011.tar.xz 04-May-2023 23:54 572224 +windycity.doc.tar.xz 04-May-2023 23:54 572224 +windycity.r67011.tar.xz 04-May-2023 23:54 21364 +windycity.tar.xz 04-May-2023 23:54 21364 +wintools.windows.doc.r74090.tar.xz 18-Feb-2025 22:37 979508 +wintools.windows.doc.tar.xz 18-Feb-2025 22:37 979508 +wintools.windows.r74090.tar.xz 18-Feb-2025 22:37 5782976 +wintools.windows.tar.xz 18-Feb-2025 22:37 5782976 +withargs.doc.r52641.tar.xz 05-Nov-2019 00:54 475336 +withargs.doc.tar.xz 05-Nov-2019 00:54 475336 +withargs.r52641.tar.xz 05-Nov-2019 00:54 6100 +withargs.tar.xz 05-Nov-2019 00:54 6100 +witharrows.doc.r72594.tar.xz 19-Oct-2024 23:53 1147576 +witharrows.doc.tar.xz 19-Oct-2024 23:53 1147576 +witharrows.r72594.tar.xz 19-Oct-2024 23:53 16412 +witharrows.source.r72594.tar.xz 19-Oct-2024 23:53 55048 +witharrows.source.tar.xz 19-Oct-2024 23:53 55048 +witharrows.tar.xz 19-Oct-2024 23:53 16412 +wnri-latex.doc.r22338.tar.xz 28-Feb-2019 03:15 198684 +wnri-latex.doc.tar.xz 28-Feb-2019 03:15 198684 +wnri-latex.r22338.tar.xz 28-Feb-2019 03:15 2664 +wnri-latex.source.r22338.tar.xz 28-Feb-2019 03:15 4364 +wnri-latex.source.tar.xz 28-Feb-2019 03:15 4364 +wnri-latex.tar.xz 28-Feb-2019 03:15 2664 +wnri.doc.r22459.tar.xz 28-Feb-2019 03:15 6784 +wnri.doc.tar.xz 28-Feb-2019 03:15 6784 +wnri.r22459.tar.xz 28-Feb-2019 03:15 46312 +wnri.tar.xz 28-Feb-2019 03:15 46312 +wordcloud.doc.r68209.tar.xz 08-Sep-2023 23:44 124012 +wordcloud.doc.tar.xz 08-Sep-2023 23:44 124012 +wordcloud.r68209.tar.xz 08-Sep-2023 23:44 6932 +wordcloud.tar.xz 08-Sep-2023 23:44 6932 +wordcount.aarch64-linux.r46228.tar.xz 28-Feb-2019 03:15 344 +wordcount.aarch64-linux.tar.xz 28-Feb-2019 03:15 344 +wordcount.amd64-freebsd.r46165.tar.xz 28-Feb-2019 03:15 344 +wordcount.amd64-freebsd.tar.xz 28-Feb-2019 03:15 344 +wordcount.amd64-netbsd.r46165.tar.xz 28-Feb-2019 03:15 340 +wordcount.amd64-netbsd.tar.xz 28-Feb-2019 03:15 340 +wordcount.armhf-linux.r46165.tar.xz 28-Feb-2019 03:15 340 +wordcount.armhf-linux.tar.xz 28-Feb-2019 03:15 340 +wordcount.doc.r46165.tar.xz 28-Feb-2019 03:15 776 +wordcount.doc.tar.xz 28-Feb-2019 03:15 776 +wordcount.i386-freebsd.r46165.tar.xz 28-Feb-2019 03:15 344 +wordcount.i386-freebsd.tar.xz 28-Feb-2019 03:15 344 +wordcount.i386-linux.r46165.tar.xz 28-Feb-2019 03:15 340 +wordcount.i386-linux.tar.xz 28-Feb-2019 03:15 340 +wordcount.i386-netbsd.r46165.tar.xz 28-Feb-2019 03:15 340 +wordcount.i386-netbsd.tar.xz 28-Feb-2019 03:15 340 +wordcount.i386-solaris.r46165.tar.xz 28-Feb-2019 03:15 340 +wordcount.i386-solaris.tar.xz 28-Feb-2019 03:15 340 +wordcount.r46165.tar.xz 28-Feb-2019 03:15 5036 +wordcount.tar.xz 28-Feb-2019 03:15 5036 +wordcount.universal-darwin.r57908.tar.xz 25-Feb-2021 18:18 340 +wordcount.universal-darwin.tar.xz 25-Feb-2021 18:18 340 +wordcount.x86_64-cygwin.r46165.tar.xz 28-Feb-2019 03:15 344 +wordcount.x86_64-cygwin.tar.xz 28-Feb-2019 03:15 344 +wordcount.x86_64-darwinlegacy.r46165.tar.xz 28-Feb-2019 03:15 348 +wordcount.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:15 348 +wordcount.x86_64-linux.r46165.tar.xz 28-Feb-2019 03:15 340 +wordcount.x86_64-linux.tar.xz 28-Feb-2019 03:15 340 +wordcount.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:15 348 +wordcount.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:15 348 +wordcount.x86_64-solaris.r46165.tar.xz 28-Feb-2019 03:15 340 +wordcount.x86_64-solaris.tar.xz 28-Feb-2019 03:15 340 +wordle.doc.r72059.tar.xz 18-Aug-2024 23:48 501336 +wordle.doc.tar.xz 18-Aug-2024 23:48 501336 +wordle.r72059.tar.xz 18-Aug-2024 23:48 5916 +wordle.tar.xz 18-Aug-2024 23:48 5916 +wordlike.doc.r15878.tar.xz 28-Feb-2019 03:15 110924 +wordlike.doc.tar.xz 28-Feb-2019 03:15 110924 +wordlike.r15878.tar.xz 28-Feb-2019 03:15 1584 +wordlike.source.r15878.tar.xz 28-Feb-2019 03:15 6324 +wordlike.source.tar.xz 28-Feb-2019 03:15 6324 +wordlike.tar.xz 28-Feb-2019 03:15 1584 +worksheet.doc.r48423.tar.xz 28-Feb-2019 03:15 96080 +worksheet.doc.tar.xz 28-Feb-2019 03:15 96080 +worksheet.r48423.tar.xz 28-Feb-2019 03:15 3812 +worksheet.tar.xz 28-Feb-2019 03:15 3812 +worldflags.doc.r68827.tar.xz 14-Nov-2023 00:45 4843176 +worldflags.doc.tar.xz 14-Nov-2023 00:45 4843176 +worldflags.r68827.tar.xz 14-Nov-2023 00:45 2074768 +worldflags.tar.xz 14-Nov-2023 00:45 2074768 +wrapfig.doc.r61719.tar.xz 24-Jan-2022 00:56 337904 +wrapfig.doc.tar.xz 24-Jan-2022 00:56 337904 +wrapfig.r61719.tar.xz 24-Jan-2022 00:56 9336 +wrapfig.tar.xz 24-Jan-2022 00:56 9336 +wrapfig2.doc.r74389.tar.xz 03-Mar-2025 00:52 859356 +wrapfig2.doc.tar.xz 03-Mar-2025 00:52 859356 +wrapfig2.r74389.tar.xz 03-Mar-2025 00:52 6676 +wrapfig2.source.r74389.tar.xz 03-Mar-2025 00:52 27500 +wrapfig2.source.tar.xz 03-Mar-2025 00:52 27500 +wrapfig2.tar.xz 03-Mar-2025 00:52 6676 +wrapstuff-doc-en.doc.r71835.tar.xz 18-Jul-2024 23:48 340012 +wrapstuff-doc-en.doc.tar.xz 18-Jul-2024 23:48 340012 +wrapstuff-doc-en.r71835.tar.xz 18-Jul-2024 23:48 436 +wrapstuff-doc-en.tar.xz 18-Jul-2024 23:48 436 +wrapstuff.doc.r75712.tar.xz 07-Jul-2025 23:51 437732 +wrapstuff.doc.tar.xz 07-Jul-2025 23:51 437732 +wrapstuff.r75712.tar.xz 07-Jul-2025 23:51 11776 +wrapstuff.source.r75712.tar.xz 07-Jul-2025 23:51 16380 +wrapstuff.source.tar.xz 07-Jul-2025 23:51 16380 +wrapstuff.tar.xz 07-Jul-2025 23:51 11776 +writeongrid.doc.r73069.tar.xz 08-Dec-2024 01:14 1114308 +writeongrid.doc.tar.xz 08-Dec-2024 01:14 1114308 +writeongrid.r73069.tar.xz 08-Dec-2024 01:14 5400 +writeongrid.tar.xz 08-Dec-2024 01:14 5400 +wsemclassic.doc.r31532.tar.xz 28-Feb-2019 03:15 401712 +wsemclassic.doc.tar.xz 28-Feb-2019 03:15 401712 +wsemclassic.r31532.tar.xz 28-Feb-2019 03:15 3772 +wsemclassic.source.r31532.tar.xz 28-Feb-2019 03:15 6948 +wsemclassic.source.tar.xz 28-Feb-2019 03:15 6948 +wsemclassic.tar.xz 28-Feb-2019 03:15 3772 +wsuipa.doc.r25469.tar.xz 28-Feb-2019 03:15 76996 +wsuipa.doc.tar.xz 28-Feb-2019 03:15 76996 +wsuipa.r25469.tar.xz 28-Feb-2019 03:15 36108 +wsuipa.tar.xz 28-Feb-2019 03:15 36108 +wtref.doc.r69214.tar.xz 25-Dec-2023 00:44 338656 +wtref.doc.tar.xz 25-Dec-2023 00:44 338656 +wtref.r69214.tar.xz 25-Dec-2023 00:44 2156 +wtref.tar.xz 25-Dec-2023 00:44 2156 +xargs.doc.r15878.tar.xz 28-Feb-2019 03:15 181868 +xargs.doc.tar.xz 28-Feb-2019 03:15 181868 +xargs.r15878.tar.xz 28-Feb-2019 03:15 3372 +xargs.source.r15878.tar.xz 28-Feb-2019 03:15 17444 +xargs.source.tar.xz 28-Feb-2019 03:15 17444 +xargs.tar.xz 28-Feb-2019 03:15 3372 +xassoccnt.doc.r61112.tar.xz 22-Nov-2021 00:54 1141224 +xassoccnt.doc.tar.xz 22-Nov-2021 00:54 1141224 +xassoccnt.r61112.tar.xz 22-Nov-2021 00:54 19596 +xassoccnt.tar.xz 22-Nov-2021 00:54 19596 +xbmks.doc.r53448.tar.xz 19-Jan-2020 00:54 364224 +xbmks.doc.tar.xz 19-Jan-2020 00:54 364224 +xbmks.r53448.tar.xz 19-Jan-2020 00:54 4124 +xbmks.source.r53448.tar.xz 19-Jan-2020 00:54 8024 +xbmks.source.tar.xz 19-Jan-2020 00:54 8024 +xbmks.tar.xz 19-Jan-2020 00:54 4124 +xcharter-math.doc.r75986.tar.xz 05-Aug-2025 23:45 1958340 +xcharter-math.doc.tar.xz 05-Aug-2025 23:45 1958340 +xcharter-math.r75986.tar.xz 05-Aug-2025 23:45 264856 +xcharter-math.tar.xz 05-Aug-2025 23:45 264856 +xcharter.doc.r71564.tar.xz 19-Jun-2024 23:47 437464 +xcharter.doc.tar.xz 19-Jun-2024 23:47 437464 +xcharter.r71564.tar.xz 19-Jun-2024 23:47 2210348 +xcharter.tar.xz 19-Jun-2024 23:47 2210348 +xcite.doc.r53486.tar.xz 22-Jan-2020 02:13 159256 +xcite.doc.tar.xz 22-Jan-2020 02:13 159256 +xcite.r53486.tar.xz 22-Jan-2020 02:13 1048 +xcite.source.r53486.tar.xz 22-Jan-2020 02:13 1664 +xcite.source.tar.xz 22-Jan-2020 02:13 1664 +xcite.tar.xz 22-Jan-2020 02:13 1048 +xcjk2uni.doc.r54958.tar.xz 01-May-2020 23:57 124084 +xcjk2uni.doc.tar.xz 01-May-2020 23:57 124084 +xcjk2uni.r54958.tar.xz 01-May-2020 23:57 200052 +xcjk2uni.source.r54958.tar.xz 01-May-2020 23:57 7064 +xcjk2uni.source.tar.xz 01-May-2020 23:57 7064 +xcjk2uni.tar.xz 01-May-2020 23:57 200052 +xcntperchap.doc.r54080.tar.xz 04-Mar-2020 22:55 344160 +xcntperchap.doc.tar.xz 04-Mar-2020 22:55 344160 +xcntperchap.r54080.tar.xz 04-Mar-2020 22:55 3300 +xcntperchap.tar.xz 04-Mar-2020 22:55 3300 +xcolor-material.doc.r42289.tar.xz 28-Feb-2019 03:15 576656 +xcolor-material.doc.tar.xz 28-Feb-2019 03:15 576656 +xcolor-material.r42289.tar.xz 28-Feb-2019 03:15 4432 +xcolor-material.source.r42289.tar.xz 28-Feb-2019 03:15 11256 +xcolor-material.source.tar.xz 28-Feb-2019 03:15 11256 +xcolor-material.tar.xz 28-Feb-2019 03:15 4432 +xcolor-solarized.doc.r61719.tar.xz 24-Jan-2022 00:56 469788 +xcolor-solarized.doc.tar.xz 24-Jan-2022 00:56 469788 +xcolor-solarized.r61719.tar.xz 24-Jan-2022 00:56 1628 +xcolor-solarized.source.r61719.tar.xz 24-Jan-2022 00:56 4748 +xcolor-solarized.source.tar.xz 24-Jan-2022 00:56 4748 +xcolor-solarized.tar.xz 24-Jan-2022 00:56 1628 +xcolor.doc.r72484.tar.xz 07-Oct-2024 23:50 935032 +xcolor.doc.tar.xz 07-Oct-2024 23:50 935032 +xcolor.r72484.tar.xz 07-Oct-2024 23:50 18284 +xcolor.source.r72484.tar.xz 07-Oct-2024 23:50 77232 +xcolor.source.tar.xz 07-Oct-2024 23:50 77232 +xcolor.tar.xz 07-Oct-2024 23:50 18284 +xcomment.doc.r72759.tar.xz 04-Nov-2024 00:48 65360 +xcomment.doc.tar.xz 04-Nov-2024 00:48 65360 +xcomment.r72759.tar.xz 04-Nov-2024 00:48 2280 +xcomment.tar.xz 04-Nov-2024 00:48 2280 +xcookybooky.doc.r36435.tar.xz 28-Feb-2019 03:15 863388 +xcookybooky.doc.tar.xz 28-Feb-2019 03:15 863388 +xcookybooky.r36435.tar.xz 28-Feb-2019 03:15 6352 +xcookybooky.source.r36435.tar.xz 28-Feb-2019 03:15 14844 +xcookybooky.source.tar.xz 28-Feb-2019 03:15 14844 +xcookybooky.tar.xz 28-Feb-2019 03:15 6352 +xcpdftips.doc.r50449.tar.xz 19-Mar-2019 01:27 142360 +xcpdftips.doc.tar.xz 19-Mar-2019 01:27 142360 +xcpdftips.r50449.tar.xz 19-Mar-2019 01:27 3168 +xcpdftips.source.r50449.tar.xz 19-Mar-2019 01:27 7060 +xcpdftips.source.tar.xz 19-Mar-2019 01:27 7060 +xcpdftips.tar.xz 19-Mar-2019 01:27 3168 +xdoc.doc.r15878.tar.xz 28-Feb-2019 03:15 836680 +xdoc.doc.tar.xz 28-Feb-2019 03:15 836680 +xdoc.r15878.tar.xz 28-Feb-2019 03:15 11976 +xdoc.source.r15878.tar.xz 28-Feb-2019 03:15 70084 +xdoc.source.tar.xz 28-Feb-2019 03:15 70084 +xdoc.tar.xz 28-Feb-2019 03:15 11976 +xduthesis.doc.r63116.tar.xz 23-Apr-2022 23:54 693304 +xduthesis.doc.tar.xz 23-Apr-2022 23:54 693304 +xduthesis.r63116.tar.xz 23-Apr-2022 23:54 113392 +xduthesis.source.r63116.tar.xz 23-Apr-2022 23:54 15976 +xduthesis.source.tar.xz 23-Apr-2022 23:54 15976 +xduthesis.tar.xz 23-Apr-2022 23:54 113392 +xduts.doc.r75076.tar.xz 01-May-2025 23:54 329612 +xduts.doc.tar.xz 01-May-2025 23:54 329612 +xduts.r75076.tar.xz 01-May-2025 23:54 524432 +xduts.source.r75076.tar.xz 01-May-2025 23:54 45752 +xduts.source.tar.xz 01-May-2025 23:54 45752 +xduts.tar.xz 01-May-2025 23:54 524432 +xdvi.aarch64-linux.r74368.tar.xz 02-Mar-2025 01:11 532524 +xdvi.aarch64-linux.tar.xz 02-Mar-2025 01:11 532524 +xdvi.amd64-freebsd.r74121.tar.xz 19-Feb-2025 00:47 502492 +xdvi.amd64-freebsd.tar.xz 19-Feb-2025 00:47 502492 +xdvi.amd64-netbsd.r75251.tar.xz 18-May-2025 23:49 496068 +xdvi.amd64-netbsd.tar.xz 18-May-2025 23:49 496068 +xdvi.armhf-linux.r74368.tar.xz 02-Mar-2025 01:11 492068 +xdvi.armhf-linux.tar.xz 02-Mar-2025 01:11 492068 +xdvi.doc.r62387.tar.xz 04-Mar-2022 23:15 173248 +xdvi.doc.tar.xz 04-Mar-2022 23:15 173248 +xdvi.i386-freebsd.r74121.tar.xz 19-Feb-2025 00:47 502928 +xdvi.i386-freebsd.tar.xz 19-Feb-2025 00:47 502928 +xdvi.i386-linux.r74121.tar.xz 19-Feb-2025 00:47 596200 +xdvi.i386-linux.tar.xz 19-Feb-2025 00:47 596200 +xdvi.i386-netbsd.r74100.tar.xz 18-Feb-2025 22:38 452564 +xdvi.i386-netbsd.tar.xz 18-Feb-2025 22:38 452564 +xdvi.i386-solaris.r74121.tar.xz 19-Feb-2025 00:47 522460 +xdvi.i386-solaris.tar.xz 19-Feb-2025 00:47 522460 +xdvi.r62387.tar.xz 04-Mar-2022 23:15 6816 +xdvi.tar.xz 04-Mar-2022 23:15 6816 +xdvi.universal-darwin.r74152.tar.xz 20-Feb-2025 00:53 999508 +xdvi.universal-darwin.tar.xz 20-Feb-2025 00:53 999508 +xdvi.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 523924 +xdvi.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 523924 +xdvi.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:47 558064 +xdvi.x86_64-linux.tar.xz 19-Feb-2025 00:47 558064 +xdvi.x86_64-linuxmusl.r74121.tar.xz 19-Feb-2025 00:47 584200 +xdvi.x86_64-linuxmusl.tar.xz 19-Feb-2025 00:47 584200 +xdvi.x86_64-solaris.r74121.tar.xz 19-Feb-2025 00:47 580864 +xdvi.x86_64-solaris.tar.xz 19-Feb-2025 00:47 580864 +xebaposter.doc.r75290.tar.xz 22-May-2025 23:48 507260 +xebaposter.doc.tar.xz 22-May-2025 23:48 507260 +xebaposter.r75290.tar.xz 22-May-2025 23:48 10032 +xebaposter.tar.xz 22-May-2025 23:48 10032 +xechangebar.doc.r54080.tar.xz 04-Mar-2020 22:55 2412 +xechangebar.doc.tar.xz 04-Mar-2020 22:55 2412 +xechangebar.r54080.tar.xz 04-Mar-2020 22:55 6868 +xechangebar.tar.xz 04-Mar-2020 22:55 6868 +xecjk.doc.r64059.tar.xz 05-Aug-2022 23:53 1622808 +xecjk.doc.tar.xz 05-Aug-2022 23:53 1622808 +xecjk.r64059.tar.xz 05-Aug-2022 23:53 221848 +xecjk.source.r64059.tar.xz 05-Aug-2022 23:53 90040 +xecjk.source.tar.xz 05-Aug-2022 23:53 90040 +xecjk.tar.xz 05-Aug-2022 23:53 221848 +xecolor.doc.r29660.tar.xz 28-Feb-2019 03:15 1092 +xecolor.doc.tar.xz 28-Feb-2019 03:15 1092 +xecolor.r29660.tar.xz 28-Feb-2019 03:15 2300 +xecolor.tar.xz 28-Feb-2019 03:15 2300 +xecyr.doc.r54308.tar.xz 15-Mar-2020 01:48 654252 +xecyr.doc.tar.xz 15-Mar-2020 01:48 654252 +xecyr.r54308.tar.xz 15-Mar-2020 01:48 3564 +xecyr.tar.xz 15-Mar-2020 01:48 3564 +xecyrmongolian.doc.r53160.tar.xz 18-Dec-2019 00:54 61944 +xecyrmongolian.doc.tar.xz 18-Dec-2019 00:54 61944 +xecyrmongolian.r53160.tar.xz 18-Dec-2019 00:54 2232 +xecyrmongolian.source.r53160.tar.xz 18-Dec-2019 00:54 4220 +xecyrmongolian.source.tar.xz 18-Dec-2019 00:54 4220 +xecyrmongolian.tar.xz 18-Dec-2019 00:54 2232 +xeindex.doc.r35756.tar.xz 28-Feb-2019 03:15 78928 +xeindex.doc.tar.xz 28-Feb-2019 03:15 78928 +xeindex.r35756.tar.xz 28-Feb-2019 03:15 1660 +xeindex.tar.xz 28-Feb-2019 03:15 1660 +xelatex-dev.aarch64-linux.r53999.tar.xz 02-Mar-2020 19:59 324 +xelatex-dev.aarch64-linux.tar.xz 02-Mar-2020 19:59 324 +xelatex-dev.amd64-freebsd.r53999.tar.xz 02-Mar-2020 19:59 328 +xelatex-dev.amd64-freebsd.tar.xz 02-Mar-2020 19:59 328 +xelatex-dev.amd64-netbsd.r53995.tar.xz 02-Mar-2020 19:59 328 +xelatex-dev.amd64-netbsd.tar.xz 02-Mar-2020 19:59 328 +xelatex-dev.armhf-linux.r54033.tar.xz 04-Mar-2020 22:55 324 +xelatex-dev.armhf-linux.tar.xz 04-Mar-2020 22:55 324 +xelatex-dev.i386-freebsd.r53999.tar.xz 02-Mar-2020 19:59 324 +xelatex-dev.i386-freebsd.tar.xz 02-Mar-2020 19:59 324 +xelatex-dev.i386-linux.r53999.tar.xz 02-Mar-2020 19:59 324 +xelatex-dev.i386-linux.tar.xz 02-Mar-2020 19:59 324 +xelatex-dev.i386-netbsd.r54104.tar.xz 06-Mar-2020 00:03 320 +xelatex-dev.i386-netbsd.tar.xz 06-Mar-2020 00:03 320 +xelatex-dev.i386-solaris.r53999.tar.xz 02-Mar-2020 19:59 324 +xelatex-dev.i386-solaris.tar.xz 02-Mar-2020 19:59 324 +xelatex-dev.r71363.tar.xz 27-May-2024 13:11 452 +xelatex-dev.tar.xz 27-May-2024 13:11 452 +xelatex-dev.universal-darwin.r57908.tar.xz 25-Feb-2021 18:18 324 +xelatex-dev.universal-darwin.tar.xz 25-Feb-2021 18:18 324 +xelatex-dev.windows.r65891.tar.xz 20-Feb-2023 22:19 2340 +xelatex-dev.windows.tar.xz 20-Feb-2023 22:19 2340 +xelatex-dev.x86_64-cygwin.r54025.tar.xz 04-Mar-2020 22:55 324 +xelatex-dev.x86_64-cygwin.tar.xz 04-Mar-2020 22:55 324 +xelatex-dev.x86_64-darwinlegacy.r53999.tar.xz 02-Mar-2020 19:59 332 +xelatex-dev.x86_64-darwinlegacy.tar.xz 02-Mar-2020 19:59 332 +xelatex-dev.x86_64-linux.r53999.tar.xz 02-Mar-2020 19:59 324 +xelatex-dev.x86_64-linux.tar.xz 02-Mar-2020 19:59 324 +xelatex-dev.x86_64-linuxmusl.r53999.tar.xz 02-Mar-2020 19:59 328 +xelatex-dev.x86_64-linuxmusl.tar.xz 02-Mar-2020 19:59 328 +xelatex-dev.x86_64-solaris.r53999.tar.xz 02-Mar-2020 19:59 324 +xelatex-dev.x86_64-solaris.tar.xz 02-Mar-2020 19:59 324 +xellipsis.doc.r47546.tar.xz 28-Feb-2019 03:15 348152 +xellipsis.doc.tar.xz 28-Feb-2019 03:15 348152 +xellipsis.r47546.tar.xz 28-Feb-2019 03:15 1716 +xellipsis.source.r47546.tar.xz 28-Feb-2019 03:15 7092 +xellipsis.source.tar.xz 28-Feb-2019 03:15 7092 +xellipsis.tar.xz 28-Feb-2019 03:15 1716 +xepersian-hm.doc.r56272.tar.xz 05-Sep-2020 23:57 1289764 +xepersian-hm.doc.tar.xz 05-Sep-2020 23:57 1289764 +xepersian-hm.r56272.tar.xz 05-Sep-2020 23:57 5884 +xepersian-hm.source.r56272.tar.xz 05-Sep-2020 23:57 9028 +xepersian-hm.source.tar.xz 05-Sep-2020 23:57 9028 +xepersian-hm.tar.xz 05-Sep-2020 23:57 5884 +xepersian.doc.r76258.tar.xz 08-Sep-2025 23:50 994148 +xepersian.doc.tar.xz 08-Sep-2025 23:50 994148 +xepersian.r76258.tar.xz 08-Sep-2025 23:50 61076 +xepersian.source.r76258.tar.xz 08-Sep-2025 23:50 76044 +xepersian.source.tar.xz 08-Sep-2025 23:50 76044 +xepersian.tar.xz 08-Sep-2025 23:50 61076 +xesearch.doc.r51908.tar.xz 19-Aug-2019 23:54 614800 +xesearch.doc.tar.xz 19-Aug-2019 23:54 614800 +xesearch.r51908.tar.xz 19-Aug-2019 23:54 5900 +xesearch.tar.xz 19-Aug-2019 23:54 5900 +xespotcolor.doc.r58212.tar.xz 08-Mar-2021 00:32 137344 +xespotcolor.doc.tar.xz 08-Mar-2021 00:32 137344 +xespotcolor.r58212.tar.xz 08-Mar-2021 00:32 2348 +xespotcolor.source.r58212.tar.xz 08-Mar-2021 00:32 7164 +xespotcolor.source.tar.xz 08-Mar-2021 00:32 7164 +xespotcolor.tar.xz 08-Mar-2021 00:32 2348 +xetex-devanagari.doc.r34296.tar.xz 28-Feb-2019 03:15 992 +xetex-devanagari.doc.tar.xz 28-Feb-2019 03:15 992 +xetex-devanagari.r34296.tar.xz 28-Feb-2019 03:15 12452 +xetex-devanagari.tar.xz 28-Feb-2019 03:15 12452 +xetex-itrans.doc.r55475.tar.xz 07-Jun-2020 23:58 21096 +xetex-itrans.doc.tar.xz 07-Jun-2020 23:58 21096 +xetex-itrans.r55475.tar.xz 07-Jun-2020 23:58 24624 +xetex-itrans.tar.xz 07-Jun-2020 23:58 24624 +xetex-pstricks.doc.r17055.tar.xz 28-Feb-2019 03:15 932 +xetex-pstricks.doc.tar.xz 28-Feb-2019 03:15 932 +xetex-pstricks.r17055.tar.xz 28-Feb-2019 03:15 724 +xetex-pstricks.tar.xz 28-Feb-2019 03:15 724 +xetex-tibetan.doc.r28847.tar.xz 28-Feb-2019 03:15 1204 +xetex-tibetan.doc.tar.xz 28-Feb-2019 03:15 1204 +xetex-tibetan.r28847.tar.xz 28-Feb-2019 03:15 7048 +xetex-tibetan.tar.xz 28-Feb-2019 03:15 7048 +xetex.aarch64-linux.r74520.tar.xz 08-Mar-2025 14:22 7729980 +xetex.aarch64-linux.tar.xz 08-Mar-2025 14:22 7729980 +xetex.amd64-freebsd.r74509.tar.xz 08-Mar-2025 00:49 7771584 +xetex.amd64-freebsd.tar.xz 08-Mar-2025 00:49 7771584 +xetex.amd64-netbsd.r74519.tar.xz 08-Mar-2025 14:22 7744852 +xetex.amd64-netbsd.tar.xz 08-Mar-2025 14:22 7744852 +xetex.armhf-linux.r74520.tar.xz 08-Mar-2025 14:22 7415448 +xetex.armhf-linux.tar.xz 08-Mar-2025 14:22 7415448 +xetex.doc.r73850.tar.xz 11-Feb-2025 00:48 637368 +xetex.doc.tar.xz 11-Feb-2025 00:48 637368 +xetex.i386-freebsd.r74509.tar.xz 08-Mar-2025 00:49 7771176 +xetex.i386-freebsd.tar.xz 08-Mar-2025 00:49 7771176 +xetex.i386-linux.r74509.tar.xz 08-Mar-2025 00:49 8023800 +xetex.i386-linux.tar.xz 08-Mar-2025 00:49 8023800 +xetex.i386-netbsd.r74519.tar.xz 08-Mar-2025 14:22 7639000 +xetex.i386-netbsd.tar.xz 08-Mar-2025 14:22 7639000 +xetex.i386-solaris.r74520.tar.xz 08-Mar-2025 14:22 7574300 +xetex.i386-solaris.tar.xz 08-Mar-2025 14:22 7574300 +xetex.r73850.tar.xz 11-Feb-2025 00:48 7996 +xetex.tar.xz 11-Feb-2025 00:48 7996 +xetex.universal-darwin.r74520.tar.xz 08-Mar-2025 14:22 15376608 +xetex.universal-darwin.tar.xz 08-Mar-2025 14:22 15376608 +xetex.windows.r74724.tar.xz 23-Mar-2025 01:02 10655324 +xetex.windows.tar.xz 23-Mar-2025 01:02 10655324 +xetex.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 7663156 +xetex.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 7663156 +xetex.x86_64-darwinlegacy.r74520.tar.xz 08-Mar-2025 14:23 7248092 +xetex.x86_64-darwinlegacy.tar.xz 08-Mar-2025 14:23 7248092 +xetex.x86_64-linux.r74509.tar.xz 08-Mar-2025 00:50 7848564 +xetex.x86_64-linux.tar.xz 08-Mar-2025 00:50 7848564 +xetex.x86_64-linuxmusl.r74509.tar.xz 08-Mar-2025 00:50 7885556 +xetex.x86_64-linuxmusl.tar.xz 08-Mar-2025 00:50 7885556 +xetex.x86_64-solaris.r74509.tar.xz 08-Mar-2025 00:50 7713556 +xetex.x86_64-solaris.tar.xz 08-Mar-2025 00:50 7713556 +xetexconfig.r45845.tar.xz 28-Feb-2019 03:18 532 +xetexconfig.tar.xz 28-Feb-2019 03:18 532 +xetexfontinfo.doc.r15878.tar.xz 28-Feb-2019 03:18 628 +xetexfontinfo.doc.tar.xz 28-Feb-2019 03:18 628 +xetexfontinfo.r15878.tar.xz 28-Feb-2019 03:18 2340 +xetexfontinfo.tar.xz 28-Feb-2019 03:18 2340 +xetexko.doc.r76133.tar.xz 24-Aug-2025 23:49 277544 +xetexko.doc.tar.xz 24-Aug-2025 23:49 277544 +xetexko.r76133.tar.xz 24-Aug-2025 23:49 54600 +xetexko.tar.xz 24-Aug-2025 23:49 54600 +xetexref.doc.r73885.tar.xz 12-Feb-2025 00:52 173176 +xetexref.doc.tar.xz 12-Feb-2025 00:52 173176 +xetexref.r73885.tar.xz 12-Feb-2025 00:52 440 +xetexref.tar.xz 12-Feb-2025 00:52 440 +xevlna.doc.r43864.tar.xz 28-Feb-2019 03:18 55384 +xevlna.doc.tar.xz 28-Feb-2019 03:18 55384 +xevlna.r43864.tar.xz 28-Feb-2019 03:18 1344 +xevlna.tar.xz 28-Feb-2019 03:18 1344 +xfakebold.doc.r75712.tar.xz 07-Jul-2025 23:51 99804 +xfakebold.doc.tar.xz 07-Jul-2025 23:51 99804 +xfakebold.r75712.tar.xz 07-Jul-2025 23:51 1376 +xfakebold.tar.xz 07-Jul-2025 23:51 1376 +xfor.doc.r15878.tar.xz 28-Feb-2019 03:18 102224 +xfor.doc.tar.xz 28-Feb-2019 03:18 102224 +xfor.r15878.tar.xz 28-Feb-2019 03:18 1716 +xfor.source.r15878.tar.xz 28-Feb-2019 03:18 4904 +xfor.source.tar.xz 28-Feb-2019 03:18 4904 +xfor.tar.xz 28-Feb-2019 03:18 1716 +xfrac.doc.r71430.tar.xz 04-Jun-2024 23:46 640220 +xfrac.doc.tar.xz 04-Jun-2024 23:46 640220 +xfrac.r71430.tar.xz 04-Jun-2024 23:46 3180 +xfrac.source.r71430.tar.xz 04-Jun-2024 23:46 9772 +xfrac.source.tar.xz 04-Jun-2024 23:46 9772 +xfrac.tar.xz 04-Jun-2024 23:46 3180 +xgreek.doc.r73620.tar.xz 29-Jan-2025 00:46 72864 +xgreek.doc.tar.xz 29-Jan-2025 00:46 72864 +xgreek.r73620.tar.xz 29-Jan-2025 00:46 4416 +xgreek.source.r73620.tar.xz 29-Jan-2025 00:46 10660 +xgreek.source.tar.xz 29-Jan-2025 00:46 10660 +xgreek.tar.xz 29-Jan-2025 00:46 4416 +xhfill.doc.r22575.tar.xz 28-Feb-2019 03:18 39088 +xhfill.doc.tar.xz 28-Feb-2019 03:18 39088 +xhfill.r22575.tar.xz 28-Feb-2019 03:18 1200 +xhfill.tar.xz 28-Feb-2019 03:18 1200 +xifthen.doc.r38929.tar.xz 28-Feb-2019 03:18 482656 +xifthen.doc.tar.xz 28-Feb-2019 03:18 482656 +xifthen.r38929.tar.xz 28-Feb-2019 03:18 2120 +xifthen.tar.xz 28-Feb-2019 03:18 2120 +xii-lat.doc.r45805.tar.xz 28-Feb-2019 03:18 1392 +xii-lat.doc.tar.xz 28-Feb-2019 03:18 1392 +xii-lat.r45805.tar.xz 28-Feb-2019 03:18 492 +xii-lat.tar.xz 28-Feb-2019 03:18 492 +xii.doc.r45804.tar.xz 28-Feb-2019 03:18 1228 +xii.doc.tar.xz 28-Feb-2019 03:18 1228 +xii.r45804.tar.xz 28-Feb-2019 03:18 488 +xii.tar.xz 28-Feb-2019 03:18 488 +ximera.doc.r71243.tar.xz 12-May-2024 23:47 344204 +ximera.doc.tar.xz 12-May-2024 23:47 344204 +ximera.r71243.tar.xz 12-May-2024 23:47 14604 +ximera.source.r71243.tar.xz 12-May-2024 23:47 4740 +ximera.source.tar.xz 12-May-2024 23:47 4740 +ximera.tar.xz 12-May-2024 23:47 14604 +xindex.aarch64-linux.r49312.tar.xz 28-Feb-2019 03:18 340 +xindex.aarch64-linux.tar.xz 28-Feb-2019 03:18 340 +xindex.amd64-freebsd.r49312.tar.xz 28-Feb-2019 03:18 344 +xindex.amd64-freebsd.tar.xz 28-Feb-2019 03:18 344 +xindex.amd64-netbsd.r49312.tar.xz 28-Feb-2019 03:18 344 +xindex.amd64-netbsd.tar.xz 28-Feb-2019 03:18 344 +xindex.armhf-linux.r49312.tar.xz 28-Feb-2019 03:18 344 +xindex.armhf-linux.tar.xz 28-Feb-2019 03:18 344 +xindex.doc.r75954.tar.xz 02-Aug-2025 23:57 712908 +xindex.doc.tar.xz 02-Aug-2025 23:57 712908 +xindex.i386-freebsd.r49312.tar.xz 28-Feb-2019 03:18 344 +xindex.i386-freebsd.tar.xz 28-Feb-2019 03:18 344 +xindex.i386-linux.r49312.tar.xz 28-Feb-2019 03:18 340 +xindex.i386-linux.tar.xz 28-Feb-2019 03:18 340 +xindex.i386-netbsd.r49312.tar.xz 28-Feb-2019 03:18 340 +xindex.i386-netbsd.tar.xz 28-Feb-2019 03:18 340 +xindex.i386-solaris.r49312.tar.xz 28-Feb-2019 03:18 340 +xindex.i386-solaris.tar.xz 28-Feb-2019 03:18 340 +xindex.r75954.tar.xz 02-Aug-2025 23:57 36612 +xindex.tar.xz 02-Aug-2025 23:57 36612 +xindex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:18 340 +xindex.universal-darwin.tar.xz 25-Feb-2021 18:18 340 +xindex.windows.r65891.tar.xz 20-Feb-2023 22:21 2304 +xindex.windows.tar.xz 20-Feb-2023 22:21 2304 +xindex.x86_64-cygwin.r49312.tar.xz 28-Feb-2019 03:18 340 +xindex.x86_64-cygwin.tar.xz 28-Feb-2019 03:18 340 +xindex.x86_64-darwinlegacy.r49312.tar.xz 28-Feb-2019 03:18 348 +xindex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:18 348 +xindex.x86_64-linux.r49312.tar.xz 28-Feb-2019 03:18 344 +xindex.x86_64-linux.tar.xz 28-Feb-2019 03:18 344 +xindex.x86_64-linuxmusl.r49312.tar.xz 28-Feb-2019 03:18 348 +xindex.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:18 348 +xindex.x86_64-solaris.r49312.tar.xz 28-Feb-2019 03:18 340 +xindex.x86_64-solaris.tar.xz 28-Feb-2019 03:18 340 +xindy-persian.doc.r59013.tar.xz 28-Apr-2021 15:08 924 +xindy-persian.doc.tar.xz 28-Apr-2021 15:08 924 +xindy-persian.r59013.tar.xz 28-Apr-2021 15:08 432 +xindy-persian.tar.xz 28-Apr-2021 15:08 432 +xindy.aarch64-linux.r62280.tar.xz 01-Mar-2022 00:36 2293592 +xindy.aarch64-linux.tar.xz 01-Mar-2022 00:36 2293592 +xindy.amd64-freebsd.r47009.tar.xz 28-Feb-2019 03:18 1761312 +xindy.amd64-freebsd.tar.xz 28-Feb-2019 03:18 1761312 +xindy.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:18 1677980 +xindy.amd64-netbsd.tar.xz 09-Feb-2025 18:18 1677980 +xindy.armhf-linux.r62280.tar.xz 01-Mar-2022 00:36 2097876 +xindy.armhf-linux.tar.xz 01-Mar-2022 00:36 2097876 +xindy.doc.r65958.tar.xz 20-Feb-2023 22:21 461176 +xindy.doc.tar.xz 20-Feb-2023 22:21 461176 +xindy.i386-freebsd.r47009.tar.xz 28-Feb-2019 03:18 1624248 +xindy.i386-freebsd.tar.xz 28-Feb-2019 03:18 1624248 +xindy.i386-linux.r47242.tar.xz 28-Feb-2019 03:18 2113600 +xindy.i386-linux.tar.xz 28-Feb-2019 03:18 2113600 +xindy.i386-netbsd.r70412.tar.xz 06-Mar-2024 00:48 1676436 +xindy.i386-netbsd.tar.xz 06-Mar-2024 00:48 1676436 +xindy.r65958.tar.xz 20-Feb-2023 22:21 143636 +xindy.tar.xz 20-Feb-2023 22:21 143636 +xindy.universal-darwin.r73806.tar.xz 09-Feb-2025 18:18 3132468 +xindy.universal-darwin.tar.xz 09-Feb-2025 18:18 3132468 +xindy.windows.r65959.tar.xz 20-Feb-2023 22:21 2121892 +xindy.windows.tar.xz 20-Feb-2023 22:21 2121892 +xindy.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 1973432 +xindy.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 1973432 +xindy.x86_64-darwinlegacy.r43952.tar.xz 28-Feb-2019 03:18 1845252 +xindy.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:18 1845252 +xindy.x86_64-linux.r58249.tar.xz 11-Mar-2021 00:32 2248804 +xindy.x86_64-linux.tar.xz 11-Mar-2021 00:32 2248804 +xint-regression.doc.r75111.tar.xz 05-May-2025 23:48 355452 +xint-regression.doc.tar.xz 05-May-2025 23:48 355452 +xint-regression.r75111.tar.xz 05-May-2025 23:48 3708 +xint-regression.tar.xz 05-May-2025 23:48 3708 +xint.doc.r76255.tar.xz 08-Sep-2025 00:07 3637152 +xint.doc.tar.xz 08-Sep-2025 00:07 3637152 +xint.r76255.tar.xz 08-Sep-2025 00:07 82652 +xint.source.r76255.tar.xz 08-Sep-2025 00:07 402508 +xint.source.tar.xz 08-Sep-2025 00:07 402508 +xint.tar.xz 08-Sep-2025 00:07 82652 +xintsession.doc.r60926.tar.xz 02-Nov-2021 00:57 2860 +xintsession.doc.tar.xz 02-Nov-2021 00:57 2860 +xintsession.r60926.tar.xz 02-Nov-2021 00:57 6960 +xintsession.tar.xz 02-Nov-2021 00:57 6960 +xistercian.doc.r74943.tar.xz 14-Apr-2025 23:51 328784 +xistercian.doc.tar.xz 14-Apr-2025 23:51 328784 +xistercian.r74943.tar.xz 14-Apr-2025 23:51 4944 +xistercian.source.r74943.tar.xz 14-Apr-2025 23:51 14608 +xistercian.source.tar.xz 14-Apr-2025 23:51 14608 +xistercian.tar.xz 14-Apr-2025 23:51 4944 +xits.doc.r55730.tar.xz 02-Jul-2020 23:56 6060 +xits.doc.tar.xz 02-Jul-2020 23:56 6060 +xits.r55730.tar.xz 02-Jul-2020 23:56 541240 +xits.tar.xz 02-Jul-2020 23:56 541240 +xkcdcolors.doc.r67895.tar.xz 11-Aug-2023 23:44 224804 +xkcdcolors.doc.tar.xz 11-Aug-2023 23:44 224804 +xkcdcolors.r67895.tar.xz 11-Aug-2023 23:44 8692 +xkcdcolors.tar.xz 11-Aug-2023 23:44 8692 +xkeymask.doc.r69223.tar.xz 27-Dec-2023 00:44 127708 +xkeymask.doc.tar.xz 27-Dec-2023 00:44 127708 +xkeymask.r69223.tar.xz 27-Dec-2023 00:44 1764 +xkeymask.tar.xz 27-Dec-2023 00:44 1764 +xkeyval.doc.r63616.tar.xz 17-Jun-2022 15:29 422472 +xkeyval.doc.tar.xz 17-Jun-2022 15:29 422472 +xkeyval.r63616.tar.xz 17-Jun-2022 15:29 8996 +xkeyval.source.r63616.tar.xz 17-Jun-2022 15:29 47660 +xkeyval.source.tar.xz 17-Jun-2022 15:29 47660 +xkeyval.tar.xz 17-Jun-2022 15:29 8996 +xlop.doc.r56910.tar.xz 12-Nov-2020 00:57 535808 +xlop.doc.tar.xz 12-Nov-2020 00:57 535808 +xlop.r56910.tar.xz 12-Nov-2020 00:57 16228 +xlop.tar.xz 12-Nov-2020 00:57 16228 +xltabular.doc.r74350.tar.xz 01-Mar-2025 00:57 98516 +xltabular.doc.tar.xz 01-Mar-2025 00:57 98516 +xltabular.r74350.tar.xz 01-Mar-2025 00:57 2132 +xltabular.tar.xz 01-Mar-2025 00:57 2132 +xltxtra.doc.r56594.tar.xz 07-Oct-2020 23:55 100928 +xltxtra.doc.tar.xz 07-Oct-2020 23:55 100928 +xltxtra.r56594.tar.xz 07-Oct-2020 23:55 2516 +xltxtra.source.r56594.tar.xz 07-Oct-2020 23:55 6096 +xltxtra.source.tar.xz 07-Oct-2020 23:55 6096 +xltxtra.tar.xz 07-Oct-2020 23:55 2516 +xml2pmx.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:52 47588 +xml2pmx.aarch64-linux.tar.xz 13-Feb-2025 00:52 47588 +xml2pmx.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:57 46364 +xml2pmx.amd64-freebsd.tar.xz 09-Feb-2025 00:57 46364 +xml2pmx.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:18 46452 +xml2pmx.amd64-netbsd.tar.xz 09-Feb-2025 18:18 46452 +xml2pmx.armhf-linux.r73793.tar.xz 09-Feb-2025 00:57 46296 +xml2pmx.armhf-linux.tar.xz 09-Feb-2025 00:57 46296 +xml2pmx.doc.r57972.tar.xz 28-Feb-2021 16:32 15512 +xml2pmx.doc.tar.xz 28-Feb-2021 16:32 15512 +xml2pmx.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:57 46360 +xml2pmx.i386-freebsd.tar.xz 09-Feb-2025 00:57 46360 +xml2pmx.i386-linux.r73792.tar.xz 09-Feb-2025 00:57 49404 +xml2pmx.i386-linux.tar.xz 09-Feb-2025 00:57 49404 +xml2pmx.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:18 45688 +xml2pmx.i386-netbsd.tar.xz 09-Feb-2025 18:18 45688 +xml2pmx.i386-solaris.r73792.tar.xz 09-Feb-2025 00:57 48124 +xml2pmx.i386-solaris.tar.xz 09-Feb-2025 00:57 48124 +xml2pmx.r57972.tar.xz 28-Feb-2021 16:32 496 +xml2pmx.tar.xz 28-Feb-2021 16:32 496 +xml2pmx.universal-darwin.r73806.tar.xz 09-Feb-2025 18:18 68448 +xml2pmx.universal-darwin.tar.xz 09-Feb-2025 18:18 68448 +xml2pmx.windows.r73796.tar.xz 09-Feb-2025 18:18 118228 +xml2pmx.windows.tar.xz 09-Feb-2025 18:18 118228 +xml2pmx.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 47116 +xml2pmx.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 47116 +xml2pmx.x86_64-darwinlegacy.r73943.tar.xz 13-Feb-2025 00:52 46336 +xml2pmx.x86_64-darwinlegacy.tar.xz 13-Feb-2025 00:52 46336 +xml2pmx.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:48 46828 +xml2pmx.x86_64-linux.tar.xz 19-Feb-2025 00:48 46828 +xml2pmx.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:57 47740 +xml2pmx.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:57 47740 +xml2pmx.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:57 49492 +xml2pmx.x86_64-solaris.tar.xz 09-Feb-2025 00:57 49492 +xmltex.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:18 340 +xmltex.aarch64-linux.tar.xz 28-Feb-2019 03:18 340 +xmltex.amd64-freebsd.r16472.tar.xz 28-Feb-2019 03:18 340 +xmltex.amd64-freebsd.tar.xz 28-Feb-2019 03:18 340 +xmltex.amd64-netbsd.r30191.tar.xz 28-Feb-2019 03:18 340 +xmltex.amd64-netbsd.tar.xz 28-Feb-2019 03:18 340 +xmltex.armhf-linux.r30015.tar.xz 28-Feb-2019 03:18 340 +xmltex.armhf-linux.tar.xz 28-Feb-2019 03:18 340 +xmltex.doc.r71362.tar.xz 27-May-2024 13:11 17004 +xmltex.doc.tar.xz 27-May-2024 13:11 17004 +xmltex.i386-freebsd.r16472.tar.xz 28-Feb-2019 03:18 340 +xmltex.i386-freebsd.tar.xz 28-Feb-2019 03:18 340 +xmltex.i386-linux.r3006.tar.xz 28-Feb-2019 03:18 336 +xmltex.i386-linux.tar.xz 28-Feb-2019 03:18 336 +xmltex.i386-netbsd.r30191.tar.xz 28-Feb-2019 03:18 340 +xmltex.i386-netbsd.tar.xz 28-Feb-2019 03:18 340 +xmltex.i386-solaris.r8102.tar.xz 28-Feb-2019 03:18 340 +xmltex.i386-solaris.tar.xz 28-Feb-2019 03:18 340 +xmltex.r71362.tar.xz 27-May-2024 13:11 18232 +xmltex.tar.xz 27-May-2024 13:11 18232 +xmltex.universal-darwin.r57908.tar.xz 25-Feb-2021 18:18 340 +xmltex.universal-darwin.tar.xz 25-Feb-2021 18:18 340 +xmltex.windows.r65891.tar.xz 20-Feb-2023 22:21 2384 +xmltex.windows.tar.xz 20-Feb-2023 22:21 2384 +xmltex.x86_64-cygwin.r33557.tar.xz 28-Feb-2019 03:18 344 +xmltex.x86_64-cygwin.tar.xz 28-Feb-2019 03:18 344 +xmltex.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:18 348 +xmltex.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:18 348 +xmltex.x86_64-linux.r3185.tar.xz 28-Feb-2019 03:18 336 +xmltex.x86_64-linux.tar.xz 28-Feb-2019 03:18 336 +xmltex.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:18 344 +xmltex.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:18 344 +xmltex.x86_64-solaris.r18442.tar.xz 28-Feb-2019 03:18 344 +xmltex.x86_64-solaris.tar.xz 28-Feb-2019 03:18 344 +xmpincl.doc.r60593.tar.xz 23-Sep-2021 23:53 98416 +xmpincl.doc.tar.xz 23-Sep-2021 23:53 98416 +xmpincl.r60593.tar.xz 23-Sep-2021 23:53 1792 +xmpincl.source.r60593.tar.xz 23-Sep-2021 23:53 6628 +xmpincl.source.tar.xz 23-Sep-2021 23:53 6628 +xmpincl.tar.xz 23-Sep-2021 23:53 1792 +xmuthesis.doc.r56614.tar.xz 10-Oct-2020 00:00 433268 +xmuthesis.doc.tar.xz 10-Oct-2020 00:00 433268 +xmuthesis.r56614.tar.xz 10-Oct-2020 00:00 49692 +xmuthesis.source.r56614.tar.xz 10-Oct-2020 00:00 59228 +xmuthesis.source.tar.xz 10-Oct-2020 00:00 59228 +xmuthesis.tar.xz 10-Oct-2020 00:00 49692 +xnewcommand.doc.r15878.tar.xz 28-Feb-2019 03:18 266496 +xnewcommand.doc.tar.xz 28-Feb-2019 03:18 266496 +xnewcommand.r15878.tar.xz 28-Feb-2019 03:18 768 +xnewcommand.tar.xz 28-Feb-2019 03:18 768 +xoptarg.doc.r15878.tar.xz 28-Feb-2019 03:18 369900 +xoptarg.doc.tar.xz 28-Feb-2019 03:18 369900 +xoptarg.r15878.tar.xz 28-Feb-2019 03:18 1840 +xoptarg.tar.xz 28-Feb-2019 03:18 1840 +xpatch.doc.r69768.tar.xz 10-Feb-2024 23:06 469996 +xpatch.doc.tar.xz 10-Feb-2024 23:06 469996 +xpatch.r69768.tar.xz 10-Feb-2024 23:06 1932 +xpatch.source.r69768.tar.xz 10-Feb-2024 23:06 7508 +xpatch.source.tar.xz 10-Feb-2024 23:06 7508 +xpatch.tar.xz 10-Feb-2024 23:06 1932 +xpdfopen.aarch64-linux.r73915.tar.xz 13-Feb-2025 00:52 7960 +xpdfopen.aarch64-linux.tar.xz 13-Feb-2025 00:52 7960 +xpdfopen.amd64-freebsd.r73792.tar.xz 09-Feb-2025 00:57 8320 +xpdfopen.amd64-freebsd.tar.xz 09-Feb-2025 00:57 8320 +xpdfopen.amd64-netbsd.r73802.tar.xz 09-Feb-2025 18:18 8696 +xpdfopen.amd64-netbsd.tar.xz 09-Feb-2025 18:18 8696 +xpdfopen.armhf-linux.r73793.tar.xz 09-Feb-2025 00:57 6760 +xpdfopen.armhf-linux.tar.xz 09-Feb-2025 00:57 6760 +xpdfopen.doc.r65952.tar.xz 20-Feb-2023 22:21 28176 +xpdfopen.doc.tar.xz 20-Feb-2023 22:21 28176 +xpdfopen.i386-freebsd.r73792.tar.xz 09-Feb-2025 00:57 8328 +xpdfopen.i386-freebsd.tar.xz 09-Feb-2025 00:57 8328 +xpdfopen.i386-linux.r73792.tar.xz 09-Feb-2025 00:57 8472 +xpdfopen.i386-linux.tar.xz 09-Feb-2025 00:57 8472 +xpdfopen.i386-netbsd.r73802.tar.xz 09-Feb-2025 18:18 8244 +xpdfopen.i386-netbsd.tar.xz 09-Feb-2025 18:18 8244 +xpdfopen.i386-solaris.r73792.tar.xz 09-Feb-2025 00:57 8688 +xpdfopen.i386-solaris.tar.xz 09-Feb-2025 00:57 8688 +xpdfopen.r65952.tar.xz 20-Feb-2023 22:21 556 +xpdfopen.tar.xz 20-Feb-2023 22:21 556 +xpdfopen.universal-darwin.r73806.tar.xz 09-Feb-2025 18:18 20000 +xpdfopen.universal-darwin.tar.xz 09-Feb-2025 18:18 20000 +xpdfopen.windows.r73796.tar.xz 09-Feb-2025 18:18 756512 +xpdfopen.windows.tar.xz 09-Feb-2025 18:18 756512 +xpdfopen.x86_64-cygwin.r74647.tar.xz 17-Mar-2025 00:51 8660 +xpdfopen.x86_64-cygwin.tar.xz 17-Mar-2025 00:51 8660 +xpdfopen.x86_64-linux.r74121.tar.xz 19-Feb-2025 00:48 8704 +xpdfopen.x86_64-linux.tar.xz 19-Feb-2025 00:48 8704 +xpdfopen.x86_64-linuxmusl.r73792.tar.xz 09-Feb-2025 00:57 8708 +xpdfopen.x86_64-linuxmusl.tar.xz 09-Feb-2025 00:57 8708 +xpdfopen.x86_64-solaris.r73792.tar.xz 09-Feb-2025 00:57 9784 +xpdfopen.x86_64-solaris.tar.xz 09-Feb-2025 00:57 9784 +xpeek.doc.r61719.tar.xz 24-Jan-2022 00:56 554532 +xpeek.doc.tar.xz 24-Jan-2022 00:56 554532 +xpeek.r61719.tar.xz 24-Jan-2022 00:56 1376 +xpeek.source.r61719.tar.xz 24-Jan-2022 00:56 7048 +xpeek.source.tar.xz 24-Jan-2022 00:56 7048 +xpeek.tar.xz 24-Jan-2022 00:56 1376 +xpeekahead.doc.r76340.tar.xz 17-Sep-2025 23:50 248712 +xpeekahead.doc.tar.xz 17-Sep-2025 23:50 248712 +xpeekahead.r76340.tar.xz 17-Sep-2025 23:50 1868 +xpeekahead.tar.xz 17-Sep-2025 23:50 1868 +xpiano.doc.r61719.tar.xz 24-Jan-2022 00:56 556172 +xpiano.doc.tar.xz 24-Jan-2022 00:56 556172 +xpiano.r61719.tar.xz 24-Jan-2022 00:56 2792 +xpiano.source.r61719.tar.xz 24-Jan-2022 00:56 6324 +xpiano.source.tar.xz 24-Jan-2022 00:56 6324 +xpiano.tar.xz 24-Jan-2022 00:56 2792 +xpicture.doc.r28770.tar.xz 28-Feb-2019 03:18 1297960 +xpicture.doc.tar.xz 28-Feb-2019 03:18 1297960 +xpicture.r28770.tar.xz 28-Feb-2019 03:18 8960 +xpicture.source.r28770.tar.xz 28-Feb-2019 03:18 24428 +xpicture.source.tar.xz 28-Feb-2019 03:18 24428 +xpicture.tar.xz 28-Feb-2019 03:18 8960 +xpinyin.doc.r66115.tar.xz 24-Feb-2023 01:06 206472 +xpinyin.doc.tar.xz 24-Feb-2023 01:06 206472 +xpinyin.r66115.tar.xz 24-Feb-2023 01:06 201036 +xpinyin.source.r66115.tar.xz 24-Feb-2023 01:06 10856 +xpinyin.source.tar.xz 24-Feb-2023 01:06 10856 +xpinyin.tar.xz 24-Feb-2023 01:06 201036 +xprintlen.doc.r35928.tar.xz 28-Feb-2019 03:18 140412 +xprintlen.doc.tar.xz 28-Feb-2019 03:18 140412 +xprintlen.r35928.tar.xz 28-Feb-2019 03:18 1120 +xprintlen.tar.xz 28-Feb-2019 03:18 1120 +xpunctuate.doc.r67918.tar.xz 13-Aug-2023 23:45 217052 +xpunctuate.doc.tar.xz 13-Aug-2023 23:45 217052 +xpunctuate.r67918.tar.xz 13-Aug-2023 23:45 1436 +xpunctuate.source.r67918.tar.xz 13-Aug-2023 23:45 6288 +xpunctuate.source.tar.xz 13-Aug-2023 23:45 6288 +xpunctuate.tar.xz 13-Aug-2023 23:45 1436 +xq.doc.r35211.tar.xz 28-Feb-2019 03:18 210248 +xq.doc.tar.xz 28-Feb-2019 03:18 210248 +xq.r35211.tar.xz 28-Feb-2019 03:18 44060 +xq.tar.xz 28-Feb-2019 03:18 44060 +xreview.doc.r72484.tar.xz 07-Oct-2024 23:50 242500 +xreview.doc.tar.xz 07-Oct-2024 23:50 242500 +xreview.r72484.tar.xz 07-Oct-2024 23:50 1880 +xreview.tar.xz 07-Oct-2024 23:50 1880 +xsavebox.doc.r64049.tar.xz 04-Aug-2022 23:53 377076 +xsavebox.doc.tar.xz 04-Aug-2022 23:53 377076 +xsavebox.r64049.tar.xz 04-Aug-2022 23:53 4164 +xsavebox.source.r64049.tar.xz 04-Aug-2022 23:53 4220 +xsavebox.source.tar.xz 04-Aug-2022 23:53 4220 +xsavebox.tar.xz 04-Aug-2022 23:53 4164 +xsim.doc.r61988.tar.xz 13-Feb-2022 00:53 3026636 +xsim.doc.tar.xz 13-Feb-2022 00:53 3026636 +xsim.r61988.tar.xz 13-Feb-2022 00:53 32648 +xsim.tar.xz 13-Feb-2022 00:53 32648 +xsipa.doc.r75243.tar.xz 18-May-2025 00:11 93008 +xsipa.doc.tar.xz 18-May-2025 00:11 93008 +xsipa.r75243.tar.xz 18-May-2025 00:11 4724 +xsipa.tar.xz 18-May-2025 00:11 4724 +xskak.doc.r51432.tar.xz 23-Jun-2019 23:39 789680 +xskak.doc.tar.xz 23-Jun-2019 23:39 789680 +xskak.r51432.tar.xz 23-Jun-2019 23:39 14052 +xskak.source.r51432.tar.xz 23-Jun-2019 23:39 14172 +xskak.source.tar.xz 23-Jun-2019 23:39 14172 +xskak.tar.xz 23-Jun-2019 23:39 14052 +xstring.doc.r68015.tar.xz 22-Aug-2023 23:44 567192 +xstring.doc.tar.xz 22-Aug-2023 23:44 567192 +xstring.r68015.tar.xz 22-Aug-2023 23:44 11536 +xstring.tar.xz 22-Aug-2023 23:44 11536 +xtab.doc.r23347.tar.xz 28-Feb-2019 03:19 362720 +xtab.doc.tar.xz 28-Feb-2019 03:19 362720 +xtab.r23347.tar.xz 28-Feb-2019 03:19 4668 +xtab.source.r23347.tar.xz 28-Feb-2019 03:19 19556 +xtab.source.tar.xz 28-Feb-2019 03:19 19556 +xtab.tar.xz 28-Feb-2019 03:19 4668 +xtuthesis.doc.r47049.tar.xz 28-Feb-2019 03:19 833404 +xtuthesis.doc.tar.xz 28-Feb-2019 03:19 833404 +xtuthesis.r47049.tar.xz 28-Feb-2019 03:19 3564 +xtuthesis.tar.xz 28-Feb-2019 03:19 3564 +xunicode.doc.r30466.tar.xz 28-Feb-2019 03:19 584 +xunicode.doc.tar.xz 28-Feb-2019 03:19 584 +xunicode.r30466.tar.xz 28-Feb-2019 03:19 25768 +xunicode.tar.xz 28-Feb-2019 03:19 25768 +xurl.doc.r61553.tar.xz 10-Jan-2022 00:53 49152 +xurl.doc.tar.xz 10-Jan-2022 00:53 49152 +xurl.r61553.tar.xz 10-Jan-2022 00:53 1600 +xurl.tar.xz 10-Jan-2022 00:53 1600 +xwatermark.doc.r61719.tar.xz 24-Jan-2022 00:56 582912 +xwatermark.doc.tar.xz 24-Jan-2022 00:56 582912 +xwatermark.r61719.tar.xz 24-Jan-2022 00:56 16544 +xwatermark.tar.xz 24-Jan-2022 00:56 16544 +xyling.doc.r15878.tar.xz 28-Feb-2019 03:19 148332 +xyling.doc.tar.xz 28-Feb-2019 03:19 148332 +xyling.r15878.tar.xz 28-Feb-2019 03:19 10540 +xyling.tar.xz 28-Feb-2019 03:19 10540 +xymtex.doc.r32182.tar.xz 28-Feb-2019 03:19 11504 +xymtex.doc.tar.xz 28-Feb-2019 03:19 11504 +xymtex.r32182.tar.xz 28-Feb-2019 03:19 88744 +xymtex.source.r32182.tar.xz 28-Feb-2019 03:19 164296 +xymtex.source.tar.xz 28-Feb-2019 03:19 164296 +xymtex.tar.xz 28-Feb-2019 03:19 88744 +xypic-tut-pt.doc.r15878.tar.xz 28-Feb-2019 03:19 225208 +xypic-tut-pt.doc.tar.xz 28-Feb-2019 03:19 225208 +xypic-tut-pt.r15878.tar.xz 28-Feb-2019 03:19 360 +xypic-tut-pt.tar.xz 28-Feb-2019 03:19 360 +xypic.doc.r61719.tar.xz 24-Jan-2022 00:56 3923200 +xypic.doc.tar.xz 24-Jan-2022 00:56 3923200 +xypic.r61719.tar.xz 24-Jan-2022 00:56 709788 +xypic.tar.xz 24-Jan-2022 00:56 709788 +xytree.doc.r15878.tar.xz 28-Feb-2019 03:19 230760 +xytree.doc.tar.xz 28-Feb-2019 03:19 230760 +xytree.r15878.tar.xz 28-Feb-2019 03:19 3584 +xytree.tar.xz 28-Feb-2019 03:19 3584 +yafoot.doc.r48568.tar.xz 28-Feb-2019 03:19 265880 +yafoot.doc.tar.xz 28-Feb-2019 03:19 265880 +yafoot.r48568.tar.xz 28-Feb-2019 03:19 3864 +yafoot.source.r48568.tar.xz 28-Feb-2019 03:19 16792 +yafoot.source.tar.xz 28-Feb-2019 03:19 16792 +yafoot.tar.xz 28-Feb-2019 03:19 3864 +yagusylo.doc.r29803.tar.xz 28-Feb-2019 03:19 1661528 +yagusylo.doc.tar.xz 28-Feb-2019 03:19 1661528 +yagusylo.r29803.tar.xz 28-Feb-2019 03:19 5812 +yagusylo.source.r29803.tar.xz 28-Feb-2019 03:19 36632 +yagusylo.source.tar.xz 28-Feb-2019 03:19 36632 +yagusylo.tar.xz 28-Feb-2019 03:19 5812 +yaletter.doc.r42830.tar.xz 28-Feb-2019 03:19 493204 +yaletter.doc.tar.xz 28-Feb-2019 03:19 493204 +yaletter.r42830.tar.xz 28-Feb-2019 03:19 4032 +yaletter.source.r42830.tar.xz 28-Feb-2019 03:19 18512 +yaletter.source.tar.xz 28-Feb-2019 03:19 18512 +yaletter.tar.xz 28-Feb-2019 03:19 4032 +yamlvars.doc.r73922.tar.xz 13-Feb-2025 00:52 83848 +yamlvars.doc.tar.xz 13-Feb-2025 00:52 83848 +yamlvars.r73922.tar.xz 13-Feb-2025 00:52 6212 +yamlvars.tar.xz 13-Feb-2025 00:52 6212 +yannisgr.doc.r22613.tar.xz 28-Feb-2019 03:19 28912 +yannisgr.doc.tar.xz 28-Feb-2019 03:19 28912 +yannisgr.r22613.tar.xz 28-Feb-2019 03:19 37576 +yannisgr.tar.xz 28-Feb-2019 03:19 37576 +yathesis.doc.r70511.tar.xz 09-Mar-2024 00:49 5181648 +yathesis.doc.tar.xz 09-Mar-2024 00:49 5181648 +yathesis.r70511.tar.xz 09-Mar-2024 00:49 23684 +yathesis.source.r70511.tar.xz 09-Mar-2024 00:49 54756 +yathesis.source.tar.xz 09-Mar-2024 00:49 54756 +yathesis.tar.xz 09-Mar-2024 00:49 23684 +yax.doc.r54080.tar.xz 04-Mar-2020 22:55 123700 +yax.doc.tar.xz 04-Mar-2020 22:55 123700 +yax.r54080.tar.xz 04-Mar-2020 22:55 5936 +yax.tar.xz 04-Mar-2020 22:55 5936 +yazd-thesis.doc.r61719.tar.xz 24-Jan-2022 00:56 2170868 +yazd-thesis.doc.tar.xz 24-Jan-2022 00:56 2170868 +yazd-thesis.r61719.tar.xz 24-Jan-2022 00:56 5952 +yazd-thesis.tar.xz 24-Jan-2022 00:56 5952 +yb-book.doc.r74649.tar.xz 17-Mar-2025 00:51 289204 +yb-book.doc.tar.xz 17-Mar-2025 00:51 289204 +yb-book.r74649.tar.xz 17-Mar-2025 00:51 4152 +yb-book.source.r74649.tar.xz 17-Mar-2025 00:51 7056 +yb-book.source.tar.xz 17-Mar-2025 00:51 7056 +yb-book.tar.xz 17-Mar-2025 00:51 4152 +ycbook.doc.r46201.tar.xz 28-Feb-2019 03:19 124828 +ycbook.doc.tar.xz 28-Feb-2019 03:19 124828 +ycbook.r46201.tar.xz 28-Feb-2019 03:19 4708 +ycbook.tar.xz 28-Feb-2019 03:19 4708 +ydoc.doc.r64887.tar.xz 02-Nov-2022 01:02 332412 +ydoc.doc.tar.xz 02-Nov-2022 01:02 332412 +ydoc.r64887.tar.xz 02-Nov-2022 01:02 9452 +ydoc.source.r64887.tar.xz 02-Nov-2022 01:02 17692 +ydoc.source.tar.xz 02-Nov-2022 01:02 17692 +ydoc.tar.xz 02-Nov-2022 01:02 9452 +yet-another-guide-latex2e.doc.r73469.tar.xz 16-Jan-2025 00:47 913920 +yet-another-guide-latex2e.doc.tar.xz 16-Jan-2025 00:47 913920 +yet-another-guide-latex2e.r73469.tar.xz 16-Jan-2025 00:47 572 +yet-another-guide-latex2e.tar.xz 16-Jan-2025 00:47 572 +yfonts-otf.doc.r73612.tar.xz 28-Jan-2025 00:47 158096 +yfonts-otf.doc.tar.xz 28-Jan-2025 00:47 158096 +yfonts-otf.r73612.tar.xz 28-Jan-2025 00:47 64436 +yfonts-otf.tar.xz 28-Jan-2025 00:47 64436 +yfonts-t1.doc.r36013.tar.xz 28-Feb-2019 03:19 952 +yfonts-t1.doc.tar.xz 28-Feb-2019 03:19 952 +yfonts-t1.r36013.tar.xz 28-Feb-2019 03:19 145940 +yfonts-t1.tar.xz 28-Feb-2019 03:19 145940 +yfonts.doc.r50755.tar.xz 06-Apr-2019 21:37 192824 +yfonts.doc.tar.xz 06-Apr-2019 21:37 192824 +yfonts.r50755.tar.xz 06-Apr-2019 21:37 1820 +yfonts.source.r50755.tar.xz 06-Apr-2019 21:37 7968 +yfonts.source.tar.xz 06-Apr-2019 21:37 7968 +yfonts.tar.xz 06-Apr-2019 21:37 1820 +yhmath.doc.r54377.tar.xz 18-Mar-2020 00:57 285444 +yhmath.doc.tar.xz 18-Mar-2020 00:57 285444 +yhmath.r54377.tar.xz 18-Mar-2020 00:57 36996 +yhmath.source.r54377.tar.xz 18-Mar-2020 00:57 16512 +yhmath.source.tar.xz 18-Mar-2020 00:57 16512 +yhmath.tar.xz 18-Mar-2020 00:57 36996 +yinit-otf.doc.r40207.tar.xz 28-Feb-2019 03:19 604 +yinit-otf.doc.tar.xz 28-Feb-2019 03:19 604 +yinit-otf.r40207.tar.xz 28-Feb-2019 03:19 253664 +yinit-otf.tar.xz 28-Feb-2019 03:19 253664 +york-thesis.doc.r23348.tar.xz 28-Feb-2019 03:19 111744 +york-thesis.doc.tar.xz 28-Feb-2019 03:19 111744 +york-thesis.r23348.tar.xz 28-Feb-2019 03:19 4292 +york-thesis.source.r23348.tar.xz 28-Feb-2019 03:19 12580 +york-thesis.source.tar.xz 28-Feb-2019 03:19 12580 +york-thesis.tar.xz 28-Feb-2019 03:19 4292 +youngtab.doc.r73766.tar.xz 08-Feb-2025 00:48 144304 +youngtab.doc.tar.xz 08-Feb-2025 00:48 144304 +youngtab.r73766.tar.xz 08-Feb-2025 00:48 2012 +youngtab.source.r73766.tar.xz 08-Feb-2025 00:48 12076 +youngtab.source.tar.xz 08-Feb-2025 00:48 12076 +youngtab.tar.xz 08-Feb-2025 00:48 2012 +yplan.aarch64-linux.r46208.tar.xz 28-Feb-2019 03:19 336 +yplan.aarch64-linux.tar.xz 28-Feb-2019 03:19 336 +yplan.amd64-freebsd.r34398.tar.xz 28-Feb-2019 03:19 340 +yplan.amd64-freebsd.tar.xz 28-Feb-2019 03:19 340 +yplan.amd64-netbsd.r34398.tar.xz 28-Feb-2019 03:19 336 +yplan.amd64-netbsd.tar.xz 28-Feb-2019 03:19 336 +yplan.armhf-linux.r34398.tar.xz 28-Feb-2019 03:19 336 +yplan.armhf-linux.tar.xz 28-Feb-2019 03:19 336 +yplan.doc.r34398.tar.xz 28-Feb-2019 03:19 4588 +yplan.doc.tar.xz 28-Feb-2019 03:19 4588 +yplan.i386-freebsd.r34398.tar.xz 28-Feb-2019 03:19 336 +yplan.i386-freebsd.tar.xz 28-Feb-2019 03:19 336 +yplan.i386-linux.r34398.tar.xz 28-Feb-2019 03:19 336 +yplan.i386-linux.tar.xz 28-Feb-2019 03:19 336 +yplan.i386-netbsd.r34398.tar.xz 28-Feb-2019 03:19 336 +yplan.i386-netbsd.tar.xz 28-Feb-2019 03:19 336 +yplan.i386-solaris.r34398.tar.xz 28-Feb-2019 03:19 336 +yplan.i386-solaris.tar.xz 28-Feb-2019 03:19 336 +yplan.r34398.tar.xz 28-Feb-2019 03:19 6236 +yplan.tar.xz 28-Feb-2019 03:19 6236 +yplan.universal-darwin.r57908.tar.xz 25-Feb-2021 18:18 336 +yplan.universal-darwin.tar.xz 25-Feb-2021 18:18 336 +yplan.windows.r65891.tar.xz 20-Feb-2023 22:21 2304 +yplan.windows.tar.xz 20-Feb-2023 22:21 2304 +yplan.x86_64-cygwin.r34398.tar.xz 28-Feb-2019 03:19 340 +yplan.x86_64-cygwin.tar.xz 28-Feb-2019 03:19 340 +yplan.x86_64-darwinlegacy.r43871.tar.xz 28-Feb-2019 03:19 344 +yplan.x86_64-darwinlegacy.tar.xz 28-Feb-2019 03:19 344 +yplan.x86_64-linux.r34398.tar.xz 28-Feb-2019 03:19 336 +yplan.x86_64-linux.tar.xz 28-Feb-2019 03:19 336 +yplan.x86_64-linuxmusl.r46840.tar.xz 28-Feb-2019 03:19 340 +yplan.x86_64-linuxmusl.tar.xz 28-Feb-2019 03:19 340 +yplan.x86_64-solaris.r34398.tar.xz 28-Feb-2019 03:19 336 +yplan.x86_64-solaris.tar.xz 28-Feb-2019 03:19 336 +yquant.doc.r76181.tar.xz 29-Aug-2025 23:50 852732 +yquant.doc.tar.xz 29-Aug-2025 23:50 852732 +yquant.r76181.tar.xz 29-Aug-2025 23:50 60312 +yquant.tar.xz 29-Aug-2025 23:50 60312 +ysabeau.doc.r72800.tar.xz 09-Nov-2024 00:46 772844 +ysabeau.doc.tar.xz 09-Nov-2024 00:46 772844 +ysabeau.r72800.tar.xz 09-Nov-2024 00:46 9660916 +ysabeau.tar.xz 09-Nov-2024 00:46 9660916 +ytableau.doc.r73766.tar.xz 08-Feb-2025 00:48 378896 +ytableau.doc.tar.xz 08-Feb-2025 00:48 378896 +ytableau.r73766.tar.xz 08-Feb-2025 00:48 3072 +ytableau.source.r73766.tar.xz 08-Feb-2025 00:48 16036 +ytableau.source.tar.xz 08-Feb-2025 00:48 16036 +ytableau.tar.xz 08-Feb-2025 00:48 3072 +zapfchan.r61719.tar.xz 24-Jan-2022 00:56 79904 +zapfchan.tar.xz 24-Jan-2022 00:56 79904 +zapfding.r61719.tar.xz 24-Jan-2022 00:56 46944 +zapfding.tar.xz 24-Jan-2022 00:56 46944 +zbmath-review-template.doc.r59693.tar.xz 24-Jun-2021 23:52 208668 +zbmath-review-template.doc.tar.xz 24-Jun-2021 23:52 208668 +zbmath-review-template.r59693.tar.xz 24-Jun-2021 23:52 2228 +zbmath-review-template.tar.xz 24-Jun-2021 23:52 2228 +zebra-goodies.doc.r66630.tar.xz 22-Mar-2023 00:53 113408 +zebra-goodies.doc.tar.xz 22-Mar-2023 00:53 113408 +zebra-goodies.r66630.tar.xz 22-Mar-2023 00:53 2332 +zebra-goodies.source.r66630.tar.xz 22-Mar-2023 00:53 6664 +zebra-goodies.source.tar.xz 22-Mar-2023 00:53 6664 +zebra-goodies.tar.xz 22-Mar-2023 00:53 2332 +zed-csp.doc.r17258.tar.xz 28-Feb-2019 03:19 234644 +zed-csp.doc.tar.xz 28-Feb-2019 03:19 234644 +zed-csp.r17258.tar.xz 28-Feb-2019 03:19 8040 +zed-csp.tar.xz 28-Feb-2019 03:19 8040 +zennote.doc.r65549.tar.xz 16-Jan-2023 00:53 57848 +zennote.doc.tar.xz 16-Jan-2023 00:53 57848 +zennote.r65549.tar.xz 16-Jan-2023 00:53 1556 +zennote.tar.xz 16-Jan-2023 00:53 1556 +zhlineskip.doc.r51142.tar.xz 16-May-2019 23:38 284028 +zhlineskip.doc.tar.xz 16-May-2019 23:38 284028 +zhlineskip.r51142.tar.xz 16-May-2019 23:38 2380 +zhlineskip.tar.xz 16-May-2019 23:38 2380 +zhlipsum.doc.r54994.tar.xz 03-May-2020 22:15 410120 +zhlipsum.doc.tar.xz 03-May-2020 22:15 410120 +zhlipsum.r54994.tar.xz 03-May-2020 22:15 200740 +zhlipsum.source.r54994.tar.xz 03-May-2020 22:15 96892 +zhlipsum.source.tar.xz 03-May-2020 22:15 96892 +zhlipsum.tar.xz 03-May-2020 22:15 200740 +zhmetrics-uptex.doc.r40728.tar.xz 28-Feb-2019 03:19 89156 +zhmetrics-uptex.doc.tar.xz 28-Feb-2019 03:19 89156 +zhmetrics-uptex.r40728.tar.xz 28-Feb-2019 03:19 31628 +zhmetrics-uptex.tar.xz 28-Feb-2019 03:19 31628 +zhmetrics.doc.r22207.tar.xz 28-Feb-2019 03:19 1396 +zhmetrics.doc.tar.xz 28-Feb-2019 03:19 1396 +zhmetrics.r22207.tar.xz 28-Feb-2019 03:19 59808 +zhmetrics.source.r22207.tar.xz 28-Feb-2019 03:19 6380 +zhmetrics.source.tar.xz 28-Feb-2019 03:19 6380 +zhmetrics.tar.xz 28-Feb-2019 03:19 59808 +zhnumber.doc.r66115.tar.xz 24-Feb-2023 01:06 293936 +zhnumber.doc.tar.xz 24-Feb-2023 01:06 293936 +zhnumber.r66115.tar.xz 24-Feb-2023 01:06 8604 +zhnumber.source.r66115.tar.xz 24-Feb-2023 01:06 14436 +zhnumber.source.tar.xz 24-Feb-2023 01:06 14436 +zhnumber.tar.xz 24-Feb-2023 01:06 8604 +zhspacing.doc.r41145.tar.xz 28-Feb-2019 03:19 169376 +zhspacing.doc.tar.xz 28-Feb-2019 03:19 169376 +zhspacing.r41145.tar.xz 28-Feb-2019 03:19 12276 +zhspacing.tar.xz 28-Feb-2019 03:19 12276 +ziffer.doc.r32279.tar.xz 28-Feb-2019 03:19 652 +ziffer.doc.tar.xz 28-Feb-2019 03:19 652 +ziffer.r32279.tar.xz 28-Feb-2019 03:19 1924 +ziffer.tar.xz 28-Feb-2019 03:19 1924 +zitie.doc.r60676.tar.xz 01-Oct-2021 23:56 345476 +zitie.doc.tar.xz 01-Oct-2021 23:56 345476 +zitie.r60676.tar.xz 01-Oct-2021 23:56 9584 +zitie.tar.xz 01-Oct-2021 23:56 9584 +zlmtt.doc.r64076.tar.xz 08-Aug-2022 23:53 234904 +zlmtt.doc.tar.xz 08-Aug-2022 23:53 234904 +zlmtt.r64076.tar.xz 08-Aug-2022 23:53 3304 +zlmtt.tar.xz 08-Aug-2022 23:53 3304 +zootaxa-bst.doc.r50619.tar.xz 28-Mar-2019 01:24 135268 +zootaxa-bst.doc.tar.xz 28-Mar-2019 01:24 135268 +zootaxa-bst.r50619.tar.xz 28-Mar-2019 01:24 6228 +zootaxa-bst.tar.xz 28-Mar-2019 01:24 6228 +zref-check.doc.r72994.tar.xz 29-Nov-2024 00:48 1016308 +zref-check.doc.tar.xz 29-Nov-2024 00:48 1016308 +zref-check.r72994.tar.xz 29-Nov-2024 00:48 5628 +zref-check.source.r72994.tar.xz 29-Nov-2024 00:48 14088 +zref-check.source.tar.xz 29-Nov-2024 00:48 14088 +zref-check.tar.xz 29-Nov-2024 00:48 5628 +zref-clever.doc.r73000.tar.xz 30-Nov-2024 00:48 1073688 +zref-clever.doc.tar.xz 30-Nov-2024 00:48 1073688 +zref-clever.r73000.tar.xz 30-Nov-2024 00:48 26608 +zref-clever.source.r73000.tar.xz 30-Nov-2024 00:48 58304 +zref-clever.source.tar.xz 30-Nov-2024 00:48 58304 +zref-clever.tar.xz 30-Nov-2024 00:48 26608 +zref-vario.doc.r72978.tar.xz 27-Nov-2024 00:46 726876 +zref-vario.doc.tar.xz 27-Nov-2024 00:46 726876 +zref-vario.r72978.tar.xz 27-Nov-2024 00:46 4764 +zref-vario.source.r72978.tar.xz 27-Nov-2024 00:46 8380 +zref-vario.source.tar.xz 27-Nov-2024 00:46 8380 +zref-vario.tar.xz 27-Nov-2024 00:46 4764 +zref.doc.r75450.tar.xz 08-Jun-2025 23:50 650568 +zref.doc.tar.xz 08-Jun-2025 23:50 650568 +zref.r75450.tar.xz 08-Jun-2025 23:50 14412 +zref.source.r75450.tar.xz 08-Jun-2025 23:50 37428 +zref.source.tar.xz 08-Jun-2025 23:50 37428 +zref.tar.xz 08-Jun-2025 23:50 14412 +zugferd.doc.r76389.tar.xz 23-Sep-2025 23:49 253248 +zugferd.doc.tar.xz 23-Sep-2025 23:49 253248 +zugferd.r76389.tar.xz 23-Sep-2025 23:49 14156 +zugferd.source.r76389.tar.xz 23-Sep-2025 23:49 29440 +zugferd.source.tar.xz 23-Sep-2025 23:49 29440 +zugferd.tar.xz 23-Sep-2025 23:49 14156 +zwgetfdate.doc.r15878.tar.xz 28-Feb-2019 03:19 246032 +zwgetfdate.doc.tar.xz 28-Feb-2019 03:19 246032 +zwgetfdate.r15878.tar.xz 28-Feb-2019 03:19 1384 +zwgetfdate.tar.xz 28-Feb-2019 03:19 1384 +zwpagelayout.doc.r63074.tar.xz 18-Apr-2022 23:52 646716 +zwpagelayout.doc.tar.xz 18-Apr-2022 23:52 646716 +zwpagelayout.r63074.tar.xz 18-Apr-2022 23:52 8880 +zwpagelayout.tar.xz 18-Apr-2022 23:52 8880 +zx-calculus.doc.r70647.tar.xz 16-Mar-2024 00:48 1195300 +zx-calculus.doc.tar.xz 16-Mar-2024 00:48 1195300 +zx-calculus.r70647.tar.xz 16-Mar-2024 00:48 38632 +zx-calculus.tar.xz 16-Mar-2024 00:48 38632 +zxjafbfont.doc.r28539.tar.xz 28-Feb-2019 03:19 1708 +zxjafbfont.doc.tar.xz 28-Feb-2019 03:19 1708 +zxjafbfont.r28539.tar.xz 28-Feb-2019 03:19 1052 +zxjafbfont.tar.xz 28-Feb-2019 03:19 1052 +zxjafont.doc.r62864.tar.xz 21-Mar-2022 22:04 171908 +zxjafont.doc.tar.xz 21-Mar-2022 22:04 171908 +zxjafont.r62864.tar.xz 21-Mar-2022 22:04 5212 +zxjafont.tar.xz 21-Mar-2022 22:04 5212 +zxjatype.doc.r53500.tar.xz 24-Jan-2020 00:57 138180 +zxjatype.doc.tar.xz 24-Jan-2020 00:57 138180 +zxjatype.r53500.tar.xz 24-Jan-2020 00:57 8760 +zxjatype.tar.xz 24-Jan-2020 00:57 8760 +zztex.doc.r55862.tar.xz 17-Jul-2020 23:56 47816 +zztex.doc.tar.xz 17-Jul-2020 23:56 47816 +zztex.r55862.tar.xz 17-Jul-2020 23:56 101724 +zztex.tar.xz 17-Jul-2020 23:56 101724 + diff --git a/findhyph.doc.tar.xz b/findhyph.doc.tar.xz index 9f2dd870cf2ccc7e3a075fdc4c08cca71eee16b9..d53063cd9ac492bb2bdc578954e72f694fc57cee 100644 Binary files a/findhyph.doc.tar.xz and b/findhyph.doc.tar.xz differ diff --git a/findhyph.tar.xz b/findhyph.tar.xz index 8d6945b44a631e9081dcd4946c0d38a23e7a43a7..35aecd8a586d468f7c1a21cf94cda556a6d35b79 100644 Binary files a/findhyph.tar.xz and b/findhyph.tar.xz differ diff --git a/fontinst.doc.tar.xz b/fontinst.doc.tar.xz index f913a00277bb739e6b23cc5085b8191089920656..539386ec12d0d1a8c4881a266558ffdbc7f34daa 100644 Binary files a/fontinst.doc.tar.xz and b/fontinst.doc.tar.xz differ diff --git a/fontinst.tar.xz b/fontinst.tar.xz index e90640d64935e838166e4960f7ed9b06f085c7f2..07eba3323d36443deca0070f18a41d436b5804ad 100644 Binary files a/fontinst.tar.xz and b/fontinst.tar.xz differ diff --git a/fontools.doc.tar.xz b/fontools.doc.tar.xz index 5c4afd53bde96f2ef2b4d1aae77b1495d9baa576..0c11c20d89fb6ce07a19550db5b3d60ea132cbf2 100644 Binary files a/fontools.doc.tar.xz and b/fontools.doc.tar.xz differ diff --git a/fontools.tar.xz b/fontools.tar.xz index 1df94011d3238019217b1ca51bbbcdc3036a3c88..ff4a0a624fdf4e7f2b044153e067519d690b848c 100644 Binary files a/fontools.tar.xz and b/fontools.tar.xz differ diff --git a/fontware.doc.tar.xz b/fontware.doc.tar.xz index b53d23ae098ad4876db3bad0fca5649ab5a51488..30ae324099b57112fcf9d6b46969d75958255b85 100644 Binary files a/fontware.doc.tar.xz and b/fontware.doc.tar.xz differ diff --git a/fragmaster.doc.tar.xz b/fragmaster.doc.tar.xz index 467d8fe8586b3996eac35fec768e1fc1d7e9a995..8a29b3edaf9c4b6c8509cf0be91a34145c1c6964 100644 Binary files a/fragmaster.doc.tar.xz and b/fragmaster.doc.tar.xz differ diff --git a/fragmaster.tar.xz b/fragmaster.tar.xz index 55c6ff815eb18794e4314c20c405446c2c6d2a03..c81b2f373befffc3d795135a797dc2a731840735 100644 Binary files a/fragmaster.tar.xz and b/fragmaster.tar.xz differ diff --git a/getmap.doc.tar.xz b/getmap.doc.tar.xz index ffc27e9bbd51974b2886e01f7543930b812e2e36..d3b8168d491796c1c4d5c7a3915f6ffc85f3b8a7 100644 Binary files a/getmap.doc.tar.xz and b/getmap.doc.tar.xz differ diff --git a/getmap.tar.xz b/getmap.tar.xz index 4f1adff079db091452756e1ca79e193d8f88de55..c3d66c3a2c874041d40d19c6e4eb68fa04dd5407 100644 Binary files a/getmap.tar.xz and b/getmap.tar.xz differ diff --git a/git-latexdiff.doc.tar.xz b/git-latexdiff.doc.tar.xz index 9047c757d470b520a1b624b87906e2abc711eef2..07d58191a2002afc3e56128f6bf9e901a3f5c6a0 100644 Binary files a/git-latexdiff.doc.tar.xz and b/git-latexdiff.doc.tar.xz differ diff --git a/git-latexdiff.tar.xz b/git-latexdiff.tar.xz index d47874b56f7d33e397a39f356c6ee136172ba7a2..efbdfcf9ad3195a40149bda49f3bb37a00e407c2 100644 Binary files a/git-latexdiff.tar.xz and b/git-latexdiff.tar.xz differ diff --git a/glossaries.doc.tar.xz b/glossaries.doc.tar.xz index 85173ed693744d091303031aabad7b9f1dd0865a..ecad52d4a5898320ebeb46ae35763172f638b775 100644 Binary files a/glossaries.doc.tar.xz and b/glossaries.doc.tar.xz differ diff --git a/glossaries.tar.xz b/glossaries.tar.xz index 281e090b5813473f1ebaca5507324299750bc644..a2c720d5c5dfce142445a4dec4655bada5e9848f 100644 Binary files a/glossaries.tar.xz and b/glossaries.tar.xz differ diff --git a/glyphlist.tar.xz b/glyphlist.tar.xz index 0d21543362a67f06e74b3fecd553f96cb994a5c5..5f884e243158c19117478549058ea3511ebcca06 100644 Binary files a/glyphlist.tar.xz and b/glyphlist.tar.xz differ diff --git a/gregoriotex.doc.tar.xz b/gregoriotex.doc.tar.xz index a05c1f9034a150705933d8fc2176f08e92220d2b..b5b92e6c58f8e8171bcacb81f92d7808cf0bdff5 100644 Binary files a/gregoriotex.doc.tar.xz and b/gregoriotex.doc.tar.xz differ diff --git a/gregoriotex.tar.xz b/gregoriotex.tar.xz index 34bc7a992ff23b3b074431dd592863206406b4f2..c48f8727d4869f5988c243ba384e4c517f78786d 100644 Binary files a/gregoriotex.tar.xz and b/gregoriotex.tar.xz differ diff --git a/gsftopk.doc.tar.xz b/gsftopk.doc.tar.xz index e395d7614fddeda92b8ef44bccd63c7ed01d423f..f15c72da9f18d06d7724ef83aa2071f7943ce357 100644 Binary files a/gsftopk.doc.tar.xz and b/gsftopk.doc.tar.xz differ diff --git a/gsftopk.tar.xz b/gsftopk.tar.xz index 3a28ab7cb84b94d8be8d712081e3eb1dbe5a7066..f0d15e5df1c17359c380afebab4e3a201c302f50 100644 Binary files a/gsftopk.tar.xz and b/gsftopk.tar.xz differ diff --git a/hitex.doc.tar.xz b/hitex.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..46fa53ee1e668256621bf32e8e31f5b36a54be80 --- /dev/null +++ b/hitex.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc5a31624cfbb46d695cf413dbf4504085ef0869d094d709b38a6b4308131925 +size 2828016 diff --git a/hitex.tar.xz b/hitex.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..c74cbfc0d9c801b22a8e0c8a116df5a516f1ed73 --- /dev/null +++ b/hitex.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f0ad6096501bb22710240939b4808e23d32975861db4a4b79cccf5c4644ca02 +size 5628 diff --git a/hyperxmp.doc.tar.xz b/hyperxmp.doc.tar.xz index 899d459a33dec28a4c1e220043f27064362b29d8..551fe348f3a48b22c1655aeb871071ae257c5995 100644 Binary files a/hyperxmp.doc.tar.xz and b/hyperxmp.doc.tar.xz differ diff --git a/hyperxmp.tar.xz b/hyperxmp.tar.xz index d1c4cd5fea965366ebca70a5170d24c7c808c866..7fcd39eab16dc58cb82bc1984a86212066f60bdd 100644 Binary files a/hyperxmp.tar.xz and b/hyperxmp.tar.xz differ diff --git a/installfont.doc.tar.xz b/installfont.doc.tar.xz index c455e12389209db3b3c94f686fa81aa667c74ea5..e726cb92cd172b7c4205a38f873ba06da76e4e42 100644 Binary files a/installfont.doc.tar.xz and b/installfont.doc.tar.xz differ diff --git a/installfont.tar.xz b/installfont.tar.xz index b7e25b3d3895f829b80caf6e13d9ce082251b20c..f62577f04c10ea17d7285c03a20be6db79553f87 100644 Binary files a/installfont.tar.xz and b/installfont.tar.xz differ diff --git a/jadetex.doc.tar.xz b/jadetex.doc.tar.xz index b14d791aac663b0be0b2aeab14dcdbc1e32c5cef..8fd5140fbc76fc82c91a50efe3f75fc61ff9e02e 100644 Binary files a/jadetex.doc.tar.xz and b/jadetex.doc.tar.xz differ diff --git a/jadetex.tar.xz b/jadetex.tar.xz index 81d7a390a3c3d04fd0b20a63c4fb6982ec0a8bd5..787b0a35d2e5ea318d611b0024f2ba8fcef7943c 100644 Binary files a/jadetex.tar.xz and b/jadetex.tar.xz differ diff --git a/jfmutil.doc.tar.xz b/jfmutil.doc.tar.xz index a26e4663e1f77804aa23d1b40b027e3d30245eb4..65b895c23c07f70059127e0e8d77aefb43503e7f 100644 Binary files a/jfmutil.doc.tar.xz and b/jfmutil.doc.tar.xz differ diff --git a/jfmutil.tar.xz b/jfmutil.tar.xz index b597979f1671fa2f3e88161a388d8fce3601ee6f..ba8fc3179188b14c258ea9f7936eb06216fe6343 100644 Binary files a/jfmutil.tar.xz and b/jfmutil.tar.xz differ diff --git a/ketcindy.doc.tar.xz b/ketcindy.doc.tar.xz index d1564f7c3f12a42ceeb2f481cece5786eb585aca..096a0f5e612a8ef87dc43c9d8dc3c7561bc5b196 100644 Binary files a/ketcindy.doc.tar.xz and b/ketcindy.doc.tar.xz differ diff --git a/ketcindy.tar.xz b/ketcindy.tar.xz index 402f7c6e0cfeb8a13bd21fb7e6b2f2ad4e1eb723..9177f6721b5e16ec5aba134c4b689eee4a6dd1d4 100644 Binary files a/ketcindy.tar.xz and b/ketcindy.tar.xz differ diff --git a/kotex-utils.doc.tar.xz b/kotex-utils.doc.tar.xz index ff8e249e868a6ebed041fb6036c60debd4e73480..1978de1d2d114b772ef457d37061d4dbbb83b47a 100644 Binary files a/kotex-utils.doc.tar.xz and b/kotex-utils.doc.tar.xz differ diff --git a/kotex-utils.tar.xz b/kotex-utils.tar.xz index e8fcedcc37c20a3f802eab9d10a617b892a8946f..14fde75eb4a36748df265ed6b0091f9eaaeb376b 100644 Binary files a/kotex-utils.tar.xz and b/kotex-utils.tar.xz differ diff --git a/kpathsea.doc.tar.xz b/kpathsea.doc.tar.xz index b2e587203a0e3d111544dcd627d511a6df300534..79fcdd1d9d34781d71c2eeca9b16f8fe0128d650 100644 Binary files a/kpathsea.doc.tar.xz and b/kpathsea.doc.tar.xz differ diff --git a/kpathsea.tar.xz b/kpathsea.tar.xz index 71a2264e945b93af26b3df5b55cde8a338481c88..dc3d588e89edc65dc026759533a75f86c003d364 100644 Binary files a/kpathsea.tar.xz and b/kpathsea.tar.xz differ diff --git a/l3build.doc.tar.xz b/l3build.doc.tar.xz index 55f930036be4cfd03bed937d464886803c5428e3..af68ead8acfbead17396fb9b8277b16063c708b7 100644 Binary files a/l3build.doc.tar.xz and b/l3build.doc.tar.xz differ diff --git a/l3build.tar.xz b/l3build.tar.xz index 3fb80cc4489f75a8a1461645539f42951a05a305..2d7c22e9be1ef97cbd72a2869ce66c13047ef3d5 100644 Binary files a/l3build.tar.xz and b/l3build.tar.xz differ diff --git a/l3sys-query.doc.tar.xz b/l3sys-query.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..c61bb5b0c0c81a8a2c1a8aa5852f1dc875d20ad3 --- /dev/null +++ b/l3sys-query.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da23ebb62ee85743232cd07a0adee8694d5b35cd06c37450788298a8b2744027 +size 383792 diff --git a/l3sys-query.tar.xz b/l3sys-query.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..a2059e7751f1d80cf228fcd908a59b28505952f1 --- /dev/null +++ b/l3sys-query.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0defcb83b3c3a8d8e8ebb43d3ed42f34a7b652e84fa8faed0a22c532ad5a9267 +size 5404 diff --git a/lacheck.doc.tar.xz b/lacheck.doc.tar.xz index ca85f7312425d4fc4f2936a907dd97cef34823df..4bd98a9c6b0b1b518b4108e20eb0b3c6165c92d1 100644 Binary files a/lacheck.doc.tar.xz and b/lacheck.doc.tar.xz differ diff --git a/latex-git-log.doc.tar.xz b/latex-git-log.doc.tar.xz index f4ac8779bc4cef91b85692d6cc65b28c043aaca5..9c344fc7377653a941a386284458dd9819c7c8dd 100644 Binary files a/latex-git-log.doc.tar.xz and b/latex-git-log.doc.tar.xz differ diff --git a/latex-git-log.tar.xz b/latex-git-log.tar.xz index c3aa49489ea4512d4af774b91c1ece85173e5d20..b2771b7e227fcdd96547901b2bff11781a21d568 100644 Binary files a/latex-git-log.tar.xz and b/latex-git-log.tar.xz differ diff --git a/latex-papersize.doc.tar.xz b/latex-papersize.doc.tar.xz index fbce5c48b3fccf5ec33b72851326202d335eba6f..299cf9f65fd632dc6709b768b4ba1ddcc1dba443 100644 Binary files a/latex-papersize.doc.tar.xz and b/latex-papersize.doc.tar.xz differ diff --git a/latex-papersize.tar.xz b/latex-papersize.tar.xz index c2736e0947c32e1e16a6c861534b259236dc3eed..66239ad445d71fefe481a3831beb2ce78ecf90c2 100644 Binary files a/latex-papersize.tar.xz and b/latex-papersize.tar.xz differ diff --git a/latex.doc.tar.xz b/latex.doc.tar.xz index 18450c9ddccae3543e50c5dba7cec6c87f334972..9ef547d8255d2e3837e8a43f17aa2f3f7d1381b7 100644 Binary files a/latex.doc.tar.xz and b/latex.doc.tar.xz differ diff --git a/latex.tar.xz b/latex.tar.xz index 905fa1cfdfc11c3517430b3aaab47d136a70917e..f9b47c6c0825eb86f8ff3ef09eb1635d9ef5bde7 100644 Binary files a/latex.tar.xz and b/latex.tar.xz differ diff --git a/latex2man.doc.tar.xz b/latex2man.doc.tar.xz index bf2de19768975a0d5fe79583ebf3e1b05f01b55d..4265d6210ccb878be81c7d64e176b60ea2341082 100644 Binary files a/latex2man.doc.tar.xz and b/latex2man.doc.tar.xz differ diff --git a/latex2man.tar.xz b/latex2man.tar.xz index a55717dd838ad14efc1d3f11579e659c1d51666b..3de2fd95212fe3231c28dac21275838aacfc9db5 100644 Binary files a/latex2man.tar.xz and b/latex2man.tar.xz differ diff --git a/latex2nemeth.doc.tar.xz b/latex2nemeth.doc.tar.xz index 5f8d82c58bdea0900217ea73003c45495ee1c0e5..13c3400f5728ef3901b25335b985226aa74af225 100644 Binary files a/latex2nemeth.doc.tar.xz and b/latex2nemeth.doc.tar.xz differ diff --git a/latex2nemeth.tar.xz b/latex2nemeth.tar.xz index 3788b61049a098eaa98fd56268fa9b1212738773..a88dee92eab1489c3c7df3a23d02af96cb2d5477 100644 Binary files a/latex2nemeth.tar.xz and b/latex2nemeth.tar.xz differ diff --git a/latexdiff.doc.tar.xz b/latexdiff.doc.tar.xz index 4ed1f9819c8d53d68fd6d6c4773414a804cfabdf..af8fda233b991e18acd6dce73c4a137e4f61ee90 100644 Binary files a/latexdiff.doc.tar.xz and b/latexdiff.doc.tar.xz differ diff --git a/latexdiff.tar.xz b/latexdiff.tar.xz index b7cc2ba5a03dd0d166f020daf92da71dd86d423e..2ad565301505263c4f2491e3abecee123db70f4f 100644 Binary files a/latexdiff.tar.xz and b/latexdiff.tar.xz differ diff --git a/latexfileversion.doc.tar.xz b/latexfileversion.doc.tar.xz index b9aa006c104209613c39a9920c34bfd483c4e42c..d34973bda9e3aa9e5ec3b8ced6de6d992e427911 100644 Binary files a/latexfileversion.doc.tar.xz and b/latexfileversion.doc.tar.xz differ diff --git a/latexfileversion.tar.xz b/latexfileversion.tar.xz index 0afda97f01eddad27e69d5e5aae79ec3a066773e..05015412848eac39bd4fb4e35ef38e23f47b642b 100644 Binary files a/latexfileversion.tar.xz and b/latexfileversion.tar.xz differ diff --git a/latexindent.doc.tar.xz b/latexindent.doc.tar.xz index 47155a64f2fad4a51369f98a1ecdd986e089ca54..42a868ab48e42ac3f52a83690bb7a722a3325d8e 100644 Binary files a/latexindent.doc.tar.xz and b/latexindent.doc.tar.xz differ diff --git a/latexindent.tar.xz b/latexindent.tar.xz index 1a117fff0e1c50f583e352725d3f2cd320a34788..d1f61e0b6295d5f3bc3cf5e8e6fe37841e3efd3c 100644 Binary files a/latexindent.tar.xz and b/latexindent.tar.xz differ diff --git a/latexpand.doc.tar.xz b/latexpand.doc.tar.xz index 12ce0f02590fd17040d2e9c8157962f3aa0474eb..7244e6994116f54b8c90757042552d589eab3ba6 100644 Binary files a/latexpand.doc.tar.xz and b/latexpand.doc.tar.xz differ diff --git a/latexpand.tar.xz b/latexpand.tar.xz index 6c1f54e24f9101c5cf72b042e4da1404b45d2481..4cb972d98c43272cf316a8a07c9337e76bc377ba 100644 Binary files a/latexpand.tar.xz and b/latexpand.tar.xz differ diff --git a/lcdftypetools.doc.tar.xz b/lcdftypetools.doc.tar.xz index 55ccb1f51b2cb529de426393750e2a78487906d7..66c8f24f2ae4a7da66a3ae6d5d1f8bacfb5ac3cf 100644 Binary files a/lcdftypetools.doc.tar.xz and b/lcdftypetools.doc.tar.xz differ diff --git a/light-latex-make.doc.tar.xz b/light-latex-make.doc.tar.xz index 5e7bfc515b858948957a9c9b0e9415aa69a0c17f..7baf5f353642cb24add6b99b968611312f9d8617 100644 Binary files a/light-latex-make.doc.tar.xz and b/light-latex-make.doc.tar.xz differ diff --git a/light-latex-make.tar.xz b/light-latex-make.tar.xz index ab989817014bc13c99f17c89fb41f4bca3a3aff4..a9257f42d27c98feb1ef0a63a41e3db078e37e39 100644 Binary files a/light-latex-make.tar.xz and b/light-latex-make.tar.xz differ diff --git a/lilyglyphs.doc.tar.xz b/lilyglyphs.doc.tar.xz index b2ec9cf3fb16396ed748e6c315a1320d5baedc1b..78030a86b4319e29c592b395c553c6406a4686b5 100644 Binary files a/lilyglyphs.doc.tar.xz and b/lilyglyphs.doc.tar.xz differ diff --git a/lilyglyphs.tar.xz b/lilyglyphs.tar.xz index f3d88c9e63665cff236582103ba9077dc008655d..59e1076548d205eef3ecfe8e49cb6583fe90afb6 100644 Binary files a/lilyglyphs.tar.xz and b/lilyglyphs.tar.xz differ diff --git a/listbib.doc.tar.xz b/listbib.doc.tar.xz index 0911ec7ed91154945bb35111cd041208254be6b0..0b44c558fc98f4e5feaffc3e6d73eec6e70cc92b 100644 Binary files a/listbib.doc.tar.xz and b/listbib.doc.tar.xz differ diff --git a/listbib.tar.xz b/listbib.tar.xz index be34578a69860bbc315c7f81a3d7994a3945d4b3..35bfe5c5f203fe59da7c8cca78aa0457a6cfa6fa 100644 Binary files a/listbib.tar.xz and b/listbib.tar.xz differ diff --git a/listings-ext.doc.tar.xz b/listings-ext.doc.tar.xz index 1e0fc73d9a090ac25c8269d2c809e6f991a89db2..148f03e7856179761294eeef19d69ed863bbf989 100644 Binary files a/listings-ext.doc.tar.xz and b/listings-ext.doc.tar.xz differ diff --git a/listings-ext.tar.xz b/listings-ext.tar.xz index 8a5d83cd60d8618e5a333c7cd62d5907a33c3edf..5fd5bb4fa3e5c15539c188c1c51e59d82e868f33 100644 Binary files a/listings-ext.tar.xz and b/listings-ext.tar.xz differ diff --git a/lollipop.doc.tar.xz b/lollipop.doc.tar.xz index 697613ab9a05a1bbc9d8acfdb8517381dcde8573..f158f8f64f802a21f142d631d610dfaee535fe05 100644 Binary files a/lollipop.doc.tar.xz and b/lollipop.doc.tar.xz differ diff --git a/lollipop.tar.xz b/lollipop.tar.xz index dc24f001bbf578891246c5517322cd2ff3b1da79..4f0a7d7ef6756acdd4a8c884d76a0e5f6b52f84c 100644 Binary files a/lollipop.tar.xz and b/lollipop.tar.xz differ diff --git a/ltxfileinfo.doc.tar.xz b/ltxfileinfo.doc.tar.xz index ce013d5324d301833fb65612fbbfcc2d82516c23..e021dbedda9216f28b3487db41678375f1272db7 100644 Binary files a/ltxfileinfo.doc.tar.xz and b/ltxfileinfo.doc.tar.xz differ diff --git a/ltxfileinfo.tar.xz b/ltxfileinfo.tar.xz index 66616e7548e73086808708c25bd72c21548d39d7..edb279026b26a04115e8ac7f73da0817e633d749 100644 Binary files a/ltxfileinfo.tar.xz and b/ltxfileinfo.tar.xz differ diff --git a/ltximg.doc.tar.xz b/ltximg.doc.tar.xz index 4ade5b232902deda740e50f64430add8980bd403..3a512e2b6dd85d62b6380ba8ea37cb09a04f7a7d 100644 Binary files a/ltximg.doc.tar.xz and b/ltximg.doc.tar.xz differ diff --git a/ltximg.tar.xz b/ltximg.tar.xz index 80b0412924ee56ff79e34e75d91518c0e5749fd3..d89a94c08cbfc822e939c07511d069d7e26c1c6c 100644 Binary files a/ltximg.tar.xz and b/ltximg.tar.xz differ diff --git a/luafindfont.doc.tar.xz b/luafindfont.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..e7afd9256a502e9eb8e86f1935cfa132a67e7f2a --- /dev/null +++ b/luafindfont.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57c6cbd56d277485b49c84cfe213a1df027c55fd51f8276d7b8dab6059f98296 +size 116820 diff --git a/luahbtex.doc.tar.xz b/luahbtex.doc.tar.xz index ed060183c9847da1ca734e69d60af52a8e29f74d..38085864a091386447d3fd114be4e90887fe2355 100644 Binary files a/luahbtex.doc.tar.xz and b/luahbtex.doc.tar.xz differ diff --git a/luahbtex.tar.xz b/luahbtex.tar.xz index b5b80ce5d8154db39f9b696657e34d85c13ded8e..f5bc669dedfcd4efbdb05e94e177f3194e66782b 100644 Binary files a/luahbtex.tar.xz and b/luahbtex.tar.xz differ diff --git a/luajittex.doc.tar.xz b/luajittex.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..64fcd4df193e9e6f3cb8167bace9e947159b7a50 --- /dev/null +++ b/luajittex.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b849b5c1e1bd20b054f64221b775633562f10feb29612ed3d0e1026710f0472 +size 32136 diff --git a/luaotfload.doc.tar.xz b/luaotfload.doc.tar.xz index cf6498a259c4b80a8079fc3bcc3614832421a125..dbe1003568f87282778f445951fd95a8d4450035 100644 Binary files a/luaotfload.doc.tar.xz and b/luaotfload.doc.tar.xz differ diff --git a/luaotfload.tar.xz b/luaotfload.tar.xz index b4d7cc7b2e9a64dcefea5db4145378c342ce397c..ecf23540af453f298f304097d3b5e98ad465f6f5 100644 Binary files a/luaotfload.tar.xz and b/luaotfload.tar.xz differ diff --git a/luatex.doc.tar.xz b/luatex.doc.tar.xz index d22e521347dc0c3d7efdcddac14805e838251311..0ceabe9fba6ea5274a76bbec2e4e73741ffa697c 100644 Binary files a/luatex.doc.tar.xz and b/luatex.doc.tar.xz differ diff --git a/luatex.tar.xz b/luatex.tar.xz index 5c119c3581675a6c2b442428dc50e6ea0fe312be..a2bbcbd5b08c074d9d5daedba7494b142f98f512 100644 Binary files a/luatex.tar.xz and b/luatex.tar.xz differ diff --git a/lwarp.doc.tar.xz b/lwarp.doc.tar.xz index 412ee1a5af22b95e07a75a1c78c1393ec4473f30..bd9d128df4e1a416359f075d323b9a440e089c3a 100644 Binary files a/lwarp.doc.tar.xz and b/lwarp.doc.tar.xz differ diff --git a/lwarp.tar.xz b/lwarp.tar.xz index 74469a6222b273930616c7cc677c168765564ea6..c195c4f5c3a62f32d06f71f1d1ce546177234538 100644 Binary files a/lwarp.tar.xz and b/lwarp.tar.xz differ diff --git a/lyluatex.doc.tar.xz b/lyluatex.doc.tar.xz index bb359487825e8bfdfd886234d067013ef9873fdf..7f4fb988b8be4bbe3995f96da5af0e49ad3f98a7 100644 Binary files a/lyluatex.doc.tar.xz and b/lyluatex.doc.tar.xz differ diff --git a/lyluatex.tar.xz b/lyluatex.tar.xz index 6ded5def584237c3d3c031e62bbe99b9d64bf1ce..ac4439aaeb38aee250483ee876ae2080420ddb0a 100644 Binary files a/lyluatex.tar.xz and b/lyluatex.tar.xz differ diff --git a/m-tx.doc.tar.xz b/m-tx.doc.tar.xz index edabbe312ac8f62792003b7423d46162b2da9f66..4109f79412d78f03bf1c3c041e54bfd1d4cda944 100644 Binary files a/m-tx.doc.tar.xz and b/m-tx.doc.tar.xz differ diff --git a/m-tx.tar.xz b/m-tx.tar.xz index e2a5dcbc127d348452405ff585b5be948c62c145..ce287758e6a4023e622ee77458fd9169d2eeb3aa 100644 Binary files a/m-tx.tar.xz and b/m-tx.tar.xz differ diff --git a/make4ht.doc.tar.xz b/make4ht.doc.tar.xz index b9aa9dcaba55c9240992df33950a46a1b4fe9eec..fce5496714484abc0f7efaec0982da6f984945ce 100644 Binary files a/make4ht.doc.tar.xz and b/make4ht.doc.tar.xz differ diff --git a/make4ht.tar.xz b/make4ht.tar.xz index 56abaa54385b9adb3ee5cb142acbfdcde60e115f..a224a87e9590b424c6a4aca7edec03bba42bac6c 100644 Binary files a/make4ht.tar.xz and b/make4ht.tar.xz differ diff --git a/makedtx.doc.tar.xz b/makedtx.doc.tar.xz index cc729f3b688e6bb41c5ef299998cfa020db6ca0f..60132322952a5d245eaaceed2ea2b089e772ce84 100644 Binary files a/makedtx.doc.tar.xz and b/makedtx.doc.tar.xz differ diff --git a/makedtx.tar.xz b/makedtx.tar.xz index 6a209c539afd7a33e5e071864ea515dd1a21b593..f9cadb9775901ded6ca5f16f94adcbed59570157 100644 Binary files a/makedtx.tar.xz and b/makedtx.tar.xz differ diff --git a/makeindex.doc.tar.xz b/makeindex.doc.tar.xz index cb5b98a3441aec3350a9b379d4efe791611e06d4..eb70e5a93ff6d5732d8b0cb594c2350ca7a28ec9 100644 Binary files a/makeindex.doc.tar.xz and b/makeindex.doc.tar.xz differ diff --git a/makeindex.tar.xz b/makeindex.tar.xz index a65506c1bed05a0c7cbfbf8b0c97d279846876c9..d0a77767c9d9a7877376414c0d739218a2470b67 100644 Binary files a/makeindex.tar.xz and b/makeindex.tar.xz differ diff --git a/markdown.doc.tar.xz b/markdown.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..107021a840f6d4d65e122c493c31c9730f329dcb --- /dev/null +++ b/markdown.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe9707dd8d36df62ba0e0f0130d279c20df04691b6e257f15d6b71a35f0fe75 +size 1582492 diff --git a/markdown.tar.xz b/markdown.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..f062087f77eef60831f13f53bca3f325d34fb0b2 --- /dev/null +++ b/markdown.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2ba97703e7d03ed043e5ee2c7b006c89f086215f04dfd86d2d24155a5c7ff56 +size 98036 diff --git a/match_parens.doc.tar.xz b/match_parens.doc.tar.xz index 513a98938be1e4431874f7f3510dbac12efba396..be687e39ff9216413f98bd5f1c120d32880afd82 100644 Binary files a/match_parens.doc.tar.xz and b/match_parens.doc.tar.xz differ diff --git a/match_parens.tar.xz b/match_parens.tar.xz index 1afc1aa21dc3a8badb32bfe9ed1daf0ae631f99d..7860743ae5c2d75bcc8ca2b9b4ce923abd57a479 100644 Binary files a/match_parens.tar.xz and b/match_parens.tar.xz differ diff --git a/mathspic.doc.tar.xz b/mathspic.doc.tar.xz index 9babda0d9f7aff3e85aa56ebd0642aec2477dc40..f1b6517aa9311f3f0ad3dca6369fdc76e575e1a7 100644 Binary files a/mathspic.doc.tar.xz and b/mathspic.doc.tar.xz differ diff --git a/mathspic.tar.xz b/mathspic.tar.xz index 190669011ee5c043021bb1951411aad87b083b3d..c1f198f41348e3b39425aae0a61ad847dd78878e 100644 Binary files a/mathspic.tar.xz and b/mathspic.tar.xz differ diff --git a/memoize.doc.tar.xz b/memoize.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..e544d7a9f978f4e5f6534c63afb734275c16d74f --- /dev/null +++ b/memoize.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b1e6533694f05f13f819d884813d8c4b146f4e31eee5ecf300233ecfedf61c9 +size 2682332 diff --git a/memoize.tar.xz b/memoize.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..b2422ef03cc1abf1f6498078eea4e1519911632f --- /dev/null +++ b/memoize.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581f093402fea50b898508c537d4580dbdd41a42634d9c8117cba6a8a3e94e17 +size 28948 diff --git a/metafont.doc.tar.xz b/metafont.doc.tar.xz index 4fd6e5c1f8471c5d12d2dd22c8bec2de18186258..c7e190949bb136145c8345b73e66d7cf3587110c 100644 Binary files a/metafont.doc.tar.xz and b/metafont.doc.tar.xz differ diff --git a/metafont.tar.xz b/metafont.tar.xz index ebeb85b9cf7a9f637cde703cc33fc9a463993ca2..796059eab713580e81c8fe15cc13e78abdf48036 100644 Binary files a/metafont.tar.xz and b/metafont.tar.xz differ diff --git a/metapost.doc.tar.xz b/metapost.doc.tar.xz index 4b9d9bfc34991e65b2234d1b54f6a8bce6fdb144..9802e81ca82cb4af97dfa6c9268190ef0fb3b614 100644 Binary files a/metapost.doc.tar.xz and b/metapost.doc.tar.xz differ diff --git a/metapost.tar.xz b/metapost.tar.xz index 4dc74ea4e0fd9c23d61eaf77875dcb124516b149..d3aafe6f9cc5537ab570bc88da39d6df5603204c 100644 Binary files a/metapost.tar.xz and b/metapost.tar.xz differ diff --git a/mex.doc.tar.xz b/mex.doc.tar.xz index 8851a163090ad0719e7e951d7d05379978f27ba2..79f3da5d11250407b8922f50fb9c0c4301bcd7ea 100644 Binary files a/mex.doc.tar.xz and b/mex.doc.tar.xz differ diff --git a/mex.tar.xz b/mex.tar.xz index 9679ae8a1b08a37a329f448d51c103d012cff9f8..4cb5281bf67fe39ffebae21286403d25f5426a9d 100644 Binary files a/mex.tar.xz and b/mex.tar.xz differ diff --git a/mf2pt1.doc.tar.xz b/mf2pt1.doc.tar.xz index e046e9b1c1b51ff3df73bd1ba76e9bb0dfcc46cc..73be021df8b15699594ffc075657c9b1da60c26a 100644 Binary files a/mf2pt1.doc.tar.xz and b/mf2pt1.doc.tar.xz differ diff --git a/mf2pt1.tar.xz b/mf2pt1.tar.xz index 6c0e1f29b266e0ea99afac80548bc1e0033db0b0..aca62fe338ed2f6ee4e89280fdf973f9d6c7b9ed 100644 Binary files a/mf2pt1.tar.xz and b/mf2pt1.tar.xz differ diff --git a/mflua.tar.xz b/mflua.tar.xz index 29ea35774d97b0ceee7cae11fbf3759d6555ff20..6967c1a8d8a59fd04122b21236b8f2557626080a 100644 Binary files a/mflua.tar.xz and b/mflua.tar.xz differ diff --git a/mfware.doc.tar.xz b/mfware.doc.tar.xz index 3e65b9340ec38640dcf471bcd76ed1eda195333b..5502a6900810f86c906b66bc2fdb6a8f0ba2254f 100644 Binary files a/mfware.doc.tar.xz and b/mfware.doc.tar.xz differ diff --git a/mfware.tar.xz b/mfware.tar.xz index f25af68177842f04f1effba5aaf497debdc5beb4..32e742b70ace74eabf9b64d813c9cab415d9d55c 100644 Binary files a/mfware.tar.xz and b/mfware.tar.xz differ diff --git a/minted.doc.tar.xz b/minted.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..932f32013a677cdbe3dd4ef80db9145087d9a49d --- /dev/null +++ b/minted.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0389ab147e2105ab18db14b341632a00c658e7d9497a85a5d3d4f905963ba8a8 +size 520288 diff --git a/minted.tar.xz b/minted.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..4a0d40f05c0524067092ae3e58c5ce9afcd6191c --- /dev/null +++ b/minted.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b28ae6da561bdec539336e504acbf36741cbb44eed1bf4c9e6f5ccf072184d3d +size 1291540 diff --git a/mkgrkindex.doc.tar.xz b/mkgrkindex.doc.tar.xz index 48b1f278c4946b2dd276b526d960f678b218817f..1c46ce9b5d315acfb541dc6aad78fbb92121e8ac 100644 Binary files a/mkgrkindex.doc.tar.xz and b/mkgrkindex.doc.tar.xz differ diff --git a/mkgrkindex.tar.xz b/mkgrkindex.tar.xz index 73ba581027560fea7a35b93bce4cf64a1bf90b6a..623ab3192e63d94bf962dd62eab55c1e35d5299d 100644 Binary files a/mkgrkindex.tar.xz and b/mkgrkindex.tar.xz differ diff --git a/mkjobtexmf.doc.tar.xz b/mkjobtexmf.doc.tar.xz index 7198a3793b298ad7b33e4e5ba2a13512032f8b39..a996c072fb288d474b37d3ae02ca0e484d5c933f 100644 Binary files a/mkjobtexmf.doc.tar.xz and b/mkjobtexmf.doc.tar.xz differ diff --git a/mkjobtexmf.tar.xz b/mkjobtexmf.tar.xz index 6cc2715d02012a7ff5e2952082e9a9849ec69735..e7a1fd6ce938f138263efc540adf2d4b802e4302 100644 Binary files a/mkjobtexmf.tar.xz and b/mkjobtexmf.tar.xz differ diff --git a/mkpic.doc.tar.xz b/mkpic.doc.tar.xz index 4cc02fa4ace1ef4d94ff8871c562a2a88ce73a30..1efebc2eca083fc3fc7bfae0a84d11154632e30b 100644 Binary files a/mkpic.doc.tar.xz and b/mkpic.doc.tar.xz differ diff --git a/mkpic.tar.xz b/mkpic.tar.xz index 2129f7e33101750924ca74cc94ac5ecfc581b638..32c19d2740c09a7fa5eec6df21b0fd7605f5da92 100644 Binary files a/mkpic.tar.xz and b/mkpic.tar.xz differ diff --git a/mltex.doc.tar.xz b/mltex.doc.tar.xz index c4d4075d4de1e2a14f71188f2bdd29b5a7a16f63..664cb8e050d0fab3796387effeddfdd6d58a8a55 100644 Binary files a/mltex.doc.tar.xz and b/mltex.doc.tar.xz differ diff --git a/mltex.tar.xz b/mltex.tar.xz index 4ff019c152e4fe7f743b3f229458422cce902bbd..c61e836a85ac9e63df4ee43e5da921f8e06a4f26 100644 Binary files a/mltex.tar.xz and b/mltex.tar.xz differ diff --git a/mptopdf.doc.tar.xz b/mptopdf.doc.tar.xz index 8ad45d5d37ec12e4fec8e21484f68dda35e23adf..91ebd73997e3fda93fe2dbc85a2e1e91b2aba775 100644 Binary files a/mptopdf.doc.tar.xz and b/mptopdf.doc.tar.xz differ diff --git a/mptopdf.tar.xz b/mptopdf.tar.xz index b515325b758b487635d6aff186e9463efd7f5d0d..d51f1ab7cf3d40a27380440928cc568b8fafdf7a 100644 Binary files a/mptopdf.tar.xz and b/mptopdf.tar.xz differ diff --git a/multibibliography.doc.tar.xz b/multibibliography.doc.tar.xz index 70927121f0dde6954189ef1d5749c1ff4a6a6a46..d65d5eade0f7ce93b04983a3a6bb20150ee92ab0 100644 Binary files a/multibibliography.doc.tar.xz and b/multibibliography.doc.tar.xz differ diff --git a/multibibliography.tar.xz b/multibibliography.tar.xz index d68f1738575b3f393ed3d31a541eed94f57c3a90..b5df81461e4a7d31a90e19c030f453526cda2b93 100644 Binary files a/multibibliography.tar.xz and b/multibibliography.tar.xz differ diff --git a/musixtex.doc.tar.xz b/musixtex.doc.tar.xz index df9630af32ee7ba52b3c1b0617a5b0521347d5f3..cbd5bb2527aef0d29712fca65f540fad88980d93 100644 Binary files a/musixtex.doc.tar.xz and b/musixtex.doc.tar.xz differ diff --git a/musixtex.tar.xz b/musixtex.tar.xz index cbe01393d98b515b3a10253a5f3bcd548d446cde..a8c61899354a2ac7a6c01b939b2e145de5b3e2dd 100644 Binary files a/musixtex.tar.xz and b/musixtex.tar.xz differ diff --git a/musixtnt.doc.tar.xz b/musixtnt.doc.tar.xz index 27806280c99dfb72b9e4ca6cbd9a61a2355ce10d..f750519b6306e3174354e8852b05d6b54eae042b 100644 Binary files a/musixtnt.doc.tar.xz and b/musixtnt.doc.tar.xz differ diff --git a/musixtnt.tar.xz b/musixtnt.tar.xz index cd5d103efe54231db4eb0154206c6dff86ce1e01..a455b8fabc68d21dbf5a7dbb62f6b775619b5a63 100644 Binary files a/musixtnt.tar.xz and b/musixtnt.tar.xz differ diff --git a/oberdiek.doc.tar.xz b/oberdiek.doc.tar.xz index 048b34951e35d7a61bf25e03700f6a32ebee2074..7e7f2bd8313ec5ea0376c11f49b792efe7694b8c 100644 Binary files a/oberdiek.doc.tar.xz and b/oberdiek.doc.tar.xz differ diff --git a/oberdiek.tar.xz b/oberdiek.tar.xz index c109dece7475d6fed0246c90266381971eae0e34..1aee3a7a1cf130f03624e50fc4dd8b9a99305ced 100644 Binary files a/oberdiek.tar.xz and b/oberdiek.tar.xz differ diff --git a/omegaware.doc.tar.xz b/omegaware.doc.tar.xz index 709e520126bf456c8433165158a8178d217546e3..2300136539668fc62c77dc57b07fcb8f7e052b41 100644 Binary files a/omegaware.doc.tar.xz and b/omegaware.doc.tar.xz differ diff --git a/optex.doc.tar.xz b/optex.doc.tar.xz index 992e03d2d832f30b8ece3308dee0ea16a9c631b8..1eedda78b77d7fb43ee6654b084a211ce2e2d5f6 100644 Binary files a/optex.doc.tar.xz and b/optex.doc.tar.xz differ diff --git a/optex.tar.xz b/optex.tar.xz index 46c42d7b592aa7ad761465af1c1159516c84bed4..677f09b9aa1f9eee91780795e8d2966a55bcf6d8 100644 Binary files a/optex.tar.xz and b/optex.tar.xz differ diff --git a/optexcount.doc.tar.xz b/optexcount.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..e72a2e409d6bd949184702bd39f6ceb2b37d080f --- /dev/null +++ b/optexcount.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336b56b442838f579a8aa71251d425f5f701b70e503859b3eef78badb36a17dd +size 33964 diff --git a/optexcount.tar.xz b/optexcount.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..6d2c684a10f939454c3dac83c571de8c6b25cdfd --- /dev/null +++ b/optexcount.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3213837fa716496337dd95ce8a7d5ff7cfc1390c196ae3e24b3bed46921d0507 +size 7312 diff --git a/pagelayout.doc.tar.xz b/pagelayout.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..22bcfd000f69609629e16733c56494d2122df870 --- /dev/null +++ b/pagelayout.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b34d08a02540f59f77f2638e5fe55f4c2a8435b751a31a03b00ea04b246fc7 +size 4598568 diff --git a/pagelayout.tar.xz b/pagelayout.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..d981ea8fc2a849b716cc5974bb22c562a2c5446e --- /dev/null +++ b/pagelayout.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a47d0a6e88b3d6532da8c0a6430a1e18cff12116930b7b825761c44ff3b9e48 +size 25868 diff --git a/patgen.doc.tar.xz b/patgen.doc.tar.xz index 441779ee39f50a46d9d4ee8bc96b3642c5ff4fbf..e12ba5037148868a24fd6027b5ad82decb3bfa7f 100644 Binary files a/patgen.doc.tar.xz and b/patgen.doc.tar.xz differ diff --git a/patgen.tar.xz b/patgen.tar.xz index 4f421ab4e6b8b5df94d804588451a2f86048e6a8..e8acfb0831724ac2b553ba307f425e59d77adebf 100644 Binary files a/patgen.tar.xz and b/patgen.tar.xz differ diff --git a/pax.doc.tar.xz b/pax.doc.tar.xz index 929e31275d79f3a72c93e588e5277d8adcfcc028..c70765f49371c9d2f5e377923101731193de7947 100644 Binary files a/pax.doc.tar.xz and b/pax.doc.tar.xz differ diff --git a/pax.tar.xz b/pax.tar.xz index cc6fadb004b6f03e0e5292c219d5720c5d708a50..93180961164e73c69dd2aed0c2fc6daf6bba9cbd 100644 Binary files a/pax.tar.xz and b/pax.tar.xz differ diff --git a/pdfbook2.doc.tar.xz b/pdfbook2.doc.tar.xz index 7d0bb1eaba42e1c656d59807ffbd594f3a092a86..b92cc2870aacc44bc81c47bf1d131dd8397049a3 100644 Binary files a/pdfbook2.doc.tar.xz and b/pdfbook2.doc.tar.xz differ diff --git a/pdfbook2.tar.xz b/pdfbook2.tar.xz index 651e926fbbaf8de98236db31fdf707e7c3ccc443..edd6e3a3302e6f698d2dc0af236bb6e8730f026c 100644 Binary files a/pdfbook2.tar.xz and b/pdfbook2.tar.xz differ diff --git a/pdfcrop.doc.tar.xz b/pdfcrop.doc.tar.xz index c3269e22bc3f71ceb3a9a811ee6d34e478d49d38..7e4f7180cd1af5c4ad0b0632895a3530629e995c 100644 Binary files a/pdfcrop.doc.tar.xz and b/pdfcrop.doc.tar.xz differ diff --git a/pdfcrop.tar.xz b/pdfcrop.tar.xz index aa584e20e363f5a132c96c50c317e347c4a3c637..3decb7ee171663270db5e8651d1903318b79ec37 100644 Binary files a/pdfcrop.tar.xz and b/pdfcrop.tar.xz differ diff --git a/pdfjam.doc.tar.xz b/pdfjam.doc.tar.xz index 29aca4f822a35ec5650ba37484c700f1dde04f53..dfa55c92d4d342553fabe2a85ed8e4e37eb4e8f6 100644 Binary files a/pdfjam.doc.tar.xz and b/pdfjam.doc.tar.xz differ diff --git a/pdfjam.tar.xz b/pdfjam.tar.xz index 0992648c49e01ab002cf22a12f8924c8f1417efd..63bb9150fda3135582e2d7977c5031efeff1277c 100644 Binary files a/pdfjam.tar.xz and b/pdfjam.tar.xz differ diff --git a/pdflatexpicscale.doc.tar.xz b/pdflatexpicscale.doc.tar.xz index bf68f28b457e23df5d6cd625f6b3c1931261a8fa..48069cfc51a8661c30204510c8305468f2651308 100644 Binary files a/pdflatexpicscale.doc.tar.xz and b/pdflatexpicscale.doc.tar.xz differ diff --git a/pdflatexpicscale.tar.xz b/pdflatexpicscale.tar.xz index 74febb79b394590636e888edaae21a9382c8bceb..2163f58a1830913aa55f1ea5d8f7f574ef1a8e08 100644 Binary files a/pdflatexpicscale.tar.xz and b/pdflatexpicscale.tar.xz differ diff --git a/pdftex-quiet.doc.tar.xz b/pdftex-quiet.doc.tar.xz index 1197e4ac9ddf19c5f055c6282cd7459aa4db2f3a..2b04a2713a79b8d4c0b4008c678fe295da6ac1de 100644 Binary files a/pdftex-quiet.doc.tar.xz and b/pdftex-quiet.doc.tar.xz differ diff --git a/pdftex-quiet.tar.xz b/pdftex-quiet.tar.xz index 89d53152f9a036979cff0fc7448a32359601812c..e9f3598c8c0bf06b8678e23c6bd448535fe42f03 100644 Binary files a/pdftex-quiet.tar.xz and b/pdftex-quiet.tar.xz differ diff --git a/pdftex.doc.tar.xz b/pdftex.doc.tar.xz index e5ad1f7eaa38d17fa06bdc7bce3660fe83ac102e..2d017dd2559309aca6bdb0f95715ce3007717b39 100644 Binary files a/pdftex.doc.tar.xz and b/pdftex.doc.tar.xz differ diff --git a/pdftex.tar.xz b/pdftex.tar.xz index ca1569d6e71dde4568cf71f02b7a59f11d8bb29a..65f003c67739971fa9596d46523eda6ce5147278 100644 Binary files a/pdftex.tar.xz and b/pdftex.tar.xz differ diff --git a/pdftosrc.doc.tar.xz b/pdftosrc.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..03fbb68148f16d8ec5db2a862d2aef1d3e86e63c --- /dev/null +++ b/pdftosrc.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce301461334b71c380234601abb82248d0fd1a8fb67fd83c9d42b7435898c16f +size 25200 diff --git a/pdfxup.doc.tar.xz b/pdfxup.doc.tar.xz index c19f17a81db68b856033b81a9cba85db1e5dbff4..8d52934584a84ff10c59789cd91524312a21abe5 100644 Binary files a/pdfxup.doc.tar.xz and b/pdfxup.doc.tar.xz differ diff --git a/pdfxup.tar.xz b/pdfxup.tar.xz index 6b9588d7ba2291ab335eaba8d5ea22a5e5b45cf4..195f138f41dd95ab2aeb47013eb3549a25a18bfe 100644 Binary files a/pdfxup.tar.xz and b/pdfxup.tar.xz differ diff --git a/pedigree-perl.doc.tar.xz b/pedigree-perl.doc.tar.xz index d0958e12a96fad3d7b4b53be76d2b506ccc6332d..05b5b2927ce3af298f106e93779bc4eade379280 100644 Binary files a/pedigree-perl.doc.tar.xz and b/pedigree-perl.doc.tar.xz differ diff --git a/pedigree-perl.tar.xz b/pedigree-perl.tar.xz index 0ae2a16891b6b9fd851fb78bab62c3c580616f2d..1b2a2df4126095a591a61c150e1d0fbfa85aafac 100644 Binary files a/pedigree-perl.tar.xz and b/pedigree-perl.tar.xz differ diff --git a/perltex.doc.tar.xz b/perltex.doc.tar.xz index 8b982ec51b14528232da8bc49c1e40c59b39982a..878d6282e569271a3a09afe87da1a10b353a3693 100644 Binary files a/perltex.doc.tar.xz and b/perltex.doc.tar.xz differ diff --git a/perltex.tar.xz b/perltex.tar.xz index 303187b627682c4d7fae588750fb8b931cc9c1da..948003abe400764869e9b91d20e08ff20dfb2392 100644 Binary files a/perltex.tar.xz and b/perltex.tar.xz differ diff --git a/petri-nets.doc.tar.xz b/petri-nets.doc.tar.xz index 5bc40adad952f75510452fff77f0391b7580c101..02f9c372340ff7ea5d23fe83f14e0b420072ffb7 100644 Binary files a/petri-nets.doc.tar.xz and b/petri-nets.doc.tar.xz differ diff --git a/petri-nets.tar.xz b/petri-nets.tar.xz index 9dc5cd9b222e3e76ae5a14c14f4ed5a4f2f39827..6165368020f15c943950e07b67ea82455c95fad8 100644 Binary files a/petri-nets.tar.xz and b/petri-nets.tar.xz differ diff --git a/pfarrei.doc.tar.xz b/pfarrei.doc.tar.xz index c4ecb592ab9d1288018e2a790d8e6d4d288afbe7..7a6422b98f212c154deb74de9c13d8cc5426a2d4 100644 Binary files a/pfarrei.doc.tar.xz and b/pfarrei.doc.tar.xz differ diff --git a/pfarrei.tar.xz b/pfarrei.tar.xz index df2aa36196d704c9e2de4528fb59831202d80950..cab1e4de7c5e1f68fea33d6c0d80bca361c86ab7 100644 Binary files a/pfarrei.tar.xz and b/pfarrei.tar.xz differ diff --git a/pkfix-helper.doc.tar.xz b/pkfix-helper.doc.tar.xz index ac45cd11de75c513bd54b5f07d41b3d6883a9e45..47a348394a6aece0a206c60655c85e191190b8d9 100644 Binary files a/pkfix-helper.doc.tar.xz and b/pkfix-helper.doc.tar.xz differ diff --git a/pkfix-helper.tar.xz b/pkfix-helper.tar.xz index fa52141d8579c88611d95dffd24b7b0afd43270c..fe4fb60e395f87530842efd370614a95bd82157f 100644 Binary files a/pkfix-helper.tar.xz and b/pkfix-helper.tar.xz differ diff --git a/pkfix.doc.tar.xz b/pkfix.doc.tar.xz index 7bea9489e61442a52abbeaf24cd3944745997f0e..2a5964e0f9d08e908d5a55de7fe70a0170fb2007 100644 Binary files a/pkfix.doc.tar.xz and b/pkfix.doc.tar.xz differ diff --git a/pkfix.tar.xz b/pkfix.tar.xz index b786eefee32e85a05372d972485cfd6b42d0d3d6..c342e4e502105c4faecd31a78eb725e4b054de9d 100644 Binary files a/pkfix.tar.xz and b/pkfix.tar.xz differ diff --git a/pmx.doc.tar.xz b/pmx.doc.tar.xz index d8b518b0c7bad4177d043aa580615065e991d871..fa7651c9e5e7d1b11be46480110819310743b879 100644 Binary files a/pmx.doc.tar.xz and b/pmx.doc.tar.xz differ diff --git a/pmx.tar.xz b/pmx.tar.xz index 764e8ad5513fd1b1616864fa63a25e67ac06ae25..a9464d2ab1e96ba4942412936733bd4bbb9748c7 100644 Binary files a/pmx.tar.xz and b/pmx.tar.xz differ diff --git a/pmxchords.doc.tar.xz b/pmxchords.doc.tar.xz index d7b6160ae40820bb9758628bc597efe8b5dd3aef..36b328cb99c8eeabd9ace871c4f01deb768d8ec4 100644 Binary files a/pmxchords.doc.tar.xz and b/pmxchords.doc.tar.xz differ diff --git a/pmxchords.tar.xz b/pmxchords.tar.xz index b17ad80dbbf019ac8accd2f0a162a31813bbef17..b9f99ef8f60caa0da94998452c1fde2a9cb39ce6 100644 Binary files a/pmxchords.tar.xz and b/pmxchords.tar.xz differ diff --git a/ppmcheckpdf.doc.tar.xz b/ppmcheckpdf.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..7aab1174d3edb0d2e7f725ad22d3456aff9264ad --- /dev/null +++ b/ppmcheckpdf.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17231c21d169b78b3e8ac2b1287bcc0012979330c774ff9cc9c1151f601c78b9 +size 38796 diff --git a/ppmcheckpdf.tar.xz b/ppmcheckpdf.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..0c97c73414fcfa996deaec08aab29171e15a7b05 --- /dev/null +++ b/ppmcheckpdf.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0441f471d25428fc5fbe5cf8cba6f100a0e777f81059aa56cd8899c552ad7e6c +size 2708 diff --git a/ps2eps.doc.tar.xz b/ps2eps.doc.tar.xz index 17b76f8f8dcc484f1ff22a828b115280a2337ec0..cbdc9e50e033e399e9199e6f8963fd7cd2a7d761 100644 Binary files a/ps2eps.doc.tar.xz and b/ps2eps.doc.tar.xz differ diff --git a/ps2eps.tar.xz b/ps2eps.tar.xz index 509d24c0f9fbb991368071981c12d0f10b7063fa..776619eaeb94b79a5ebd4ceadc90ba2762bedb15 100644 Binary files a/ps2eps.tar.xz and b/ps2eps.tar.xz differ diff --git a/ps2pk.doc.tar.xz b/ps2pk.doc.tar.xz index 0ea64be19bf48388fa1b400de1800300c245aca6..42c53708a910072cbed4165c1a06761a1fdd885e 100644 Binary files a/ps2pk.doc.tar.xz and b/ps2pk.doc.tar.xz differ diff --git a/ps2pk.tar.xz b/ps2pk.tar.xz index 72e53768586ccea7e706080846c8276d141d76c2..4cf3201b6097553cd46c5d0689803ead0d3337c0 100644 Binary files a/ps2pk.tar.xz and b/ps2pk.tar.xz differ diff --git a/pst-pdf.doc.tar.xz b/pst-pdf.doc.tar.xz index 8409fbb84d09f386263080e593bb61c9ac0d7202..18403ecc6835e2f481ca2e99fca5e3d63861bb96 100644 Binary files a/pst-pdf.doc.tar.xz and b/pst-pdf.doc.tar.xz differ diff --git a/pst-pdf.tar.xz b/pst-pdf.tar.xz index d0e99aa395b2cbaa9231a3bf5ba6a212be47af53..79eb16c1651e04beab63888eda18fa8d18ff1bb7 100644 Binary files a/pst-pdf.tar.xz and b/pst-pdf.tar.xz differ diff --git a/pst2pdf.doc.tar.xz b/pst2pdf.doc.tar.xz index 29ff5ecfccc6b02212bb4d51ce2817deaab7a7d9..9ac380d3932ca6b07de25967c67da3a391ef1a05 100644 Binary files a/pst2pdf.doc.tar.xz and b/pst2pdf.doc.tar.xz differ diff --git a/pst2pdf.tar.xz b/pst2pdf.tar.xz index acf20a4c9c10d08ed7f92d49895ae46a5a0f9be9..602779bb47ae008383b7c4f3fd7f8462781d7c93 100644 Binary files a/pst2pdf.tar.xz and b/pst2pdf.tar.xz differ diff --git a/psutils.doc.tar.xz b/psutils.doc.tar.xz index 855e0d71f056a6d173acc5e1f3d61c1b48679c07..210b0c09c5bfa399a73fa596bf2994550d83bf44 100644 Binary files a/psutils.doc.tar.xz and b/psutils.doc.tar.xz differ diff --git a/psutils.tar.xz b/psutils.tar.xz index 1b4723f5c1e00588b28b1c25b240278b5e822443..cb8f4e55f84b2c0c00cd0eee55f3ffc73faaa694 100644 Binary files a/psutils.tar.xz and b/psutils.tar.xz differ diff --git a/ptex-fontmaps.doc.tar.xz b/ptex-fontmaps.doc.tar.xz index 0d14578a1c1404fe17f406899e5b5dc8321be81b..1b2f630caae95ed847f8367d0764e2fa377ca9fe 100644 Binary files a/ptex-fontmaps.doc.tar.xz and b/ptex-fontmaps.doc.tar.xz differ diff --git a/ptex-fontmaps.tar.xz b/ptex-fontmaps.tar.xz index 612d7df3398c4c4c6de8998dd623d09c05b9cf13..0ee4c33dc5ddc86fe0f5cf913335aaa62d3dd19b 100644 Binary files a/ptex-fontmaps.tar.xz and b/ptex-fontmaps.tar.xz differ diff --git a/ptex.doc.tar.xz b/ptex.doc.tar.xz index 69f6773fc8b7d7dcc60c7cad18a873a74bd5ff96..4e1aec7f11e5f7166fcfdca3a711de917872c8d3 100644 Binary files a/ptex.doc.tar.xz and b/ptex.doc.tar.xz differ diff --git a/ptex.tar.xz b/ptex.tar.xz index 88311468d74b46fe6324c9b6da2f921545f8fcdf..3eae56ba783aac4b9de9ccf646f841d9b47b0af3 100644 Binary files a/ptex.tar.xz and b/ptex.tar.xz differ diff --git a/ptex2pdf.doc.tar.xz b/ptex2pdf.doc.tar.xz index c72f544cb8f4f21db67778b3b71b9996881c8034..995bec3ce03b72c05e645a7c83f14ebfb0fb982b 100644 Binary files a/ptex2pdf.doc.tar.xz and b/ptex2pdf.doc.tar.xz differ diff --git a/ptex2pdf.tar.xz b/ptex2pdf.tar.xz index b32bbbd2ec54005cbb5a5776be1eb44774ef7be2..cd2d434ce9fbfbc71b8fc2daf11202040d4d4f2c 100644 Binary files a/ptex2pdf.tar.xz and b/ptex2pdf.tar.xz differ diff --git a/purifyeps.doc.tar.xz b/purifyeps.doc.tar.xz index 762eea698bfee45a0f74b1a8d365583b150c1001..9a6955e61b828a82fc7b4f03a854984eafc1ce59 100644 Binary files a/purifyeps.doc.tar.xz and b/purifyeps.doc.tar.xz differ diff --git a/purifyeps.tar.xz b/purifyeps.tar.xz index e369d15bcbda99bfbd853b26165ad0c9b4683c79..9c254422f8ac05a623da3b3718dbeacc04c95072 100644 Binary files a/purifyeps.tar.xz and b/purifyeps.tar.xz differ diff --git a/pygmentex.doc.tar.xz b/pygmentex.doc.tar.xz index 2109b890e708a9464cdcc04ab16bac37bdbdae3c..9cf49a7803cbf0e444e3f812f807caa8ef61ad51 100644 Binary files a/pygmentex.doc.tar.xz and b/pygmentex.doc.tar.xz differ diff --git a/pygmentex.tar.xz b/pygmentex.tar.xz index 7791960926a5112705a6f70b0daf20e164946a77..fab1a0faefb9c6d9e42297fc73d8be43bc6b30c4 100644 Binary files a/pygmentex.tar.xz and b/pygmentex.tar.xz differ diff --git a/pythontex.doc.tar.xz b/pythontex.doc.tar.xz index a8afd516727d850667ca44a3a2d84bc4cf301cc4..c03a116ef065b389c6acec725fff06cb99c1d72f 100644 Binary files a/pythontex.doc.tar.xz and b/pythontex.doc.tar.xz differ diff --git a/pythontex.tar.xz b/pythontex.tar.xz index 21183bc0cd1d8908ee32d6fb9e18dcc88be7b068..47968a832266d4afa936c9f3a6cf723604b9efa6 100644 Binary files a/pythontex.tar.xz and b/pythontex.tar.xz differ diff --git a/reverted-changes-to-Ghostscript-class.patch b/reverted-changes-to-Ghostscript-class.patch deleted file mode 100644 index cc27f5a84ab98e7451fa46d41f10a29c0923f52c..0000000000000000000000000000000000000000 --- a/reverted-changes-to-Ghostscript-class.patch +++ /dev/null @@ -1,62 +0,0 @@ -From d10a3a282c0345ecb08400b83b15c6c73f9335df Mon Sep 17 00:00:00 2001 -From: Martin Gieseking -Date: Tue, 6 Dec 2022 16:26:20 +0100 -Subject: [PATCH] reverted changes to Ghostscript class introduced by - c6d578aea100b28625737942c37ce1269e976dba closes #206 - -Origin: -https://github.com/mgieseki/dvisvgm/commit/d10a3a282c0345ecb08400b83b15c6c73f9335df ---- - texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.cpp | 14 ++------------ - texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.hpp | 4 ++-- - 2 files changed, 4 insertions(+), 14 deletions(-) - -diff --git a/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.cpp b/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.cpp -index 24d2cb8b..3675c5a9 100644 ---- a/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.cpp -+++ b/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.cpp -@@ -130,7 +130,7 @@ static string get_libgs (const string &fname) { - return get_gsdll32(); - #else - // try to find libgs.so.X on the user's system -- const int abi_min=7, abi_max=9; // supported libgs ABI versions -+ const int abi_min=7, abi_max=10; // supported libgs ABI versions - for (int i=abi_max; i >= abi_min; i--) { - #if defined(__CYGWIN__) - string dlname = "cyggs-" + to_string(i) + ".dll"; -@@ -378,19 +378,9 @@ const char* Ghostscript::error_name (int code) { - if (code < 0) - code = -code; - const char *error_names[] = { ERROR_NAMES }; -- if (code == 0 || (size_t)code > sizeof(error_names)/sizeof(error_names[0])) -+ if (code == 0 || size_t(code) > sizeof(error_names)/sizeof(error_names[0])) - return nullptr; --#if defined(HAVE_LIBGS) -- // use array defined in libgs to avoid linking the error strings into the binary -- return gs_error_names[code-1]; --#elif defined(_WIN32) -- // gs_error_names is private in the Ghostscript DLL so we can't access it here - return error_names[code-1]; --#else -- if (auto error_names = loadSymbol("gs_error_names")) -- return error_names[code-1]; -- return nullptr; --#endif - } - - #endif // !DISABLE_GS -diff --git a/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.hpp b/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.hpp -index 9faa63e3..ce3b72fa 100644 ---- a/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.hpp -+++ b/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.hpp -@@ -47,8 +47,8 @@ struct Ghostscript { - Ghostscript (int argc, const char **argv, void *caller=0) {} - bool init (int argc, const char **argv, void *caller=0) {return false;} - bool available () {return false;} -- bool revision (gsapi_revision_t *r) {return false;} -- int revision () {return 0;} -+ bool revision (gsapi_revision_t *r) const {return false;} -+ int revision () const {return 0;} - std::string revisionstr () {return "";} - int set_stdio (Stdin in, Stdout out, Stderr err) {return 0;} - int run_string_begin (int user_errors, int *pexit_code) {return 0;} diff --git a/rubik.doc.tar.xz b/rubik.doc.tar.xz index b986bbc36894e1846dd9febc31db8e1ea7664456..03f42ae7f8d323bb55c184645b37a88c3f636ce3 100644 Binary files a/rubik.doc.tar.xz and b/rubik.doc.tar.xz differ diff --git a/rubik.tar.xz b/rubik.tar.xz index 24576869c9b48b1bdc8b2147c51f90de28bfb73f..2cf4dce4b4c3bc48a0205c6d94bb1d0852f8ed32 100644 Binary files a/rubik.tar.xz and b/rubik.tar.xz differ diff --git a/runtexshebang.doc.tar.xz b/runtexshebang.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..78d056e51b1435989310d086ab3a73aaaccd9715 --- /dev/null +++ b/runtexshebang.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55b9418de761ed0350c9428573df1dc92a2e35078cfe75434966505933c20e40 +size 2532 diff --git a/runtexshebang.tar.xz b/runtexshebang.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..d805baa99bb5d18780ed39b3b033dcbc57d50bf3 --- /dev/null +++ b/runtexshebang.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139cc15c278da0356a07c925a34f2189843ed5ca58326905ea2a357111ffb8e7 +size 2264 diff --git a/seetexk.doc.tar.xz b/seetexk.doc.tar.xz index c64154d13e701b63f89f70249242666e304bc94a..f63455567ae5df48017dc1efa6e5953817d54726 100644 Binary files a/seetexk.doc.tar.xz and b/seetexk.doc.tar.xz differ diff --git a/seetexk.tar.xz b/seetexk.tar.xz index d7310ede164397d626fb5a97f2a9234be4031257..9d12cf2f0c512de8e3a9133a91603a8beb680b6f 100644 Binary files a/seetexk.tar.xz and b/seetexk.tar.xz differ diff --git a/spix.doc.tar.xz b/spix.doc.tar.xz index cfad0edd632f0990e98a6d1faf6719751fdfc079..65b335e0de6e616d64802567267d09bb8552c008 100644 Binary files a/spix.doc.tar.xz and b/spix.doc.tar.xz differ diff --git a/spix.tar.xz b/spix.tar.xz index cfbd4e4b7a632eb322cd28a33a17b8255cf5da46..8bea09eb100afde5a60b22cb44ecfc75ebde6579 100644 Binary files a/spix.tar.xz and b/spix.tar.xz differ diff --git a/splitindex.doc.tar.xz b/splitindex.doc.tar.xz index 68c12c0ababe6e35acf20f0622ba30f943a1566c..a0c8d3ebd42a94f352cdab70c7ac92d992118aaf 100644 Binary files a/splitindex.doc.tar.xz and b/splitindex.doc.tar.xz differ diff --git a/splitindex.tar.xz b/splitindex.tar.xz index addb529ef2e23bdbe95cff0caa3ce7342e9ea4ea..615e773d953d2c6797eb3ea1fe33004dfac2e4d8 100644 Binary files a/splitindex.tar.xz and b/splitindex.tar.xz differ diff --git a/sqltex.doc.tar.xz b/sqltex.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..7c8075d54e91e803c73757f3081ebc5762b6cc4e --- /dev/null +++ b/sqltex.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:700236776e19b75d962c3b9f164de31bdcccd6f2b72780723699556e2f64d332 +size 319512 diff --git a/sqltex.tar.xz b/sqltex.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..a4de7d56f415edb3b939ea536a00ba07c2bbb716 --- /dev/null +++ b/sqltex.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0ca02f54994c6f74b0cf59099f7176f35efbd49bac8299b90235df0067fff0d +size 12852 diff --git a/srcredact.doc.tar.xz b/srcredact.doc.tar.xz index f7f9a0377c9314af6f03429770eb93a3e20966cf..bd181c747b0851cdb960ffc06bd93ad0a8367f32 100644 Binary files a/srcredact.doc.tar.xz and b/srcredact.doc.tar.xz differ diff --git a/srcredact.tar.xz b/srcredact.tar.xz index 85d262de4843b216598479f6692ced1a270c9906..9076bc7730b6098a0c1388cba366d63d8959addb 100644 Binary files a/srcredact.tar.xz and b/srcredact.tar.xz differ diff --git a/sty2dtx.doc.tar.xz b/sty2dtx.doc.tar.xz index b3f90a5150702468d8e19e05206175376b1b1bdd..494fa36867fc6f8e6005650bc7249dfdc7b806b0 100644 Binary files a/sty2dtx.doc.tar.xz and b/sty2dtx.doc.tar.xz differ diff --git a/sty2dtx.tar.xz b/sty2dtx.tar.xz index ce2e3bc4e4f6167af35475bc3c7c5aa00fd1f3e8..59441f1de498f0cd51996332524d1cd5590b94e6 100644 Binary files a/sty2dtx.tar.xz and b/sty2dtx.tar.xz differ diff --git a/svn-multi.doc.tar.xz b/svn-multi.doc.tar.xz index 6beeadc131fab80c8c7d218ee05d72f65a6d1ccf..b0fb42f57119592968efeaf2cb5247f0627dc4fa 100644 Binary files a/svn-multi.doc.tar.xz and b/svn-multi.doc.tar.xz differ diff --git a/svn-multi.tar.xz b/svn-multi.tar.xz index a02db359d558366a34594a93a07a8a4c05121f85..98d5a2371eb481c68adb4a668649850dd7b3711b 100644 Binary files a/svn-multi.tar.xz and b/svn-multi.tar.xz differ diff --git a/synctex.doc.tar.xz b/synctex.doc.tar.xz index edae30c7bd79d1a018186d568dd61ade84c7c64f..63caf226ea8fb1698f3db053b1a3233f9645e56d 100644 Binary files a/synctex.doc.tar.xz and b/synctex.doc.tar.xz differ diff --git a/synctex.tar.xz b/synctex.tar.xz index 0eb93b8b10e9ab116310395a0e892857d4de7261..a5abb714731d2adf90b61bf4cf418672a28f9521 100644 Binary files a/synctex.tar.xz and b/synctex.tar.xz differ diff --git a/tex.doc.tar.xz b/tex.doc.tar.xz index 649e5029d780a031a3e4bed5c28cd40adea91727..8099f100e9968e47711351ca27d428821f0459d0 100644 Binary files a/tex.doc.tar.xz and b/tex.doc.tar.xz differ diff --git a/tex.tar.xz b/tex.tar.xz index cf2756d44c769a5a14006a74be38ccba82dc75db..a78971bd2587064aa9bea8e2029b0c117be543f4 100644 Binary files a/tex.tar.xz and b/tex.tar.xz differ diff --git a/tex4ebook.doc.tar.xz b/tex4ebook.doc.tar.xz index ca215d0bb81506997311dbada55da1b337087483..d8035f97edb375be73564b16aced81a3f467f1c4 100644 Binary files a/tex4ebook.doc.tar.xz and b/tex4ebook.doc.tar.xz differ diff --git a/tex4ebook.tar.xz b/tex4ebook.tar.xz index 5f39606472431d3021a4ae2e7e017bac8cf1dc90..74bcab6ff11aff1857ae1264eaaf198b7ad4d134 100644 Binary files a/tex4ebook.tar.xz and b/tex4ebook.tar.xz differ diff --git a/tex4ht.doc.tar.xz b/tex4ht.doc.tar.xz index 1fbe1e24cd9c45fb39ccf53f6c96de892a19d049..a04841a3e90656d8dca3fa8498d7a73240a3ceb2 100644 Binary files a/tex4ht.doc.tar.xz and b/tex4ht.doc.tar.xz differ diff --git a/tex4ht.tar.xz b/tex4ht.tar.xz index 268efe7b7ae3ab1cc03c949253bd7a16eb82ed49..b392af7635742a5787fc64a2eb0f6266630f6430 100644 Binary files a/tex4ht.tar.xz and b/tex4ht.tar.xz differ diff --git a/texblend.doc.tar.xz b/texblend.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..c476274ec83949542d742e6a40430be828956232 --- /dev/null +++ b/texblend.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642d3c362a92ce207ff361211554a6a1581c23209308e5f0064bc9ab2ed97208 +size 50052 diff --git a/texblend.tar.xz b/texblend.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..26fc51e7ca1c3890a91e8f5a3c3268a79a865462 --- /dev/null +++ b/texblend.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e6819e909cc1dfb811b6d03bd06ed3a5b3327dbfbffb83961cc9132f6a067e +size 3604 diff --git a/texcount.doc.tar.xz b/texcount.doc.tar.xz index 620204c13d1e7194b0583309045f1f0bca69d89b..1b51f92a8b0e2bffdfcab72b489a5a7a6b5879fb 100644 Binary files a/texcount.doc.tar.xz and b/texcount.doc.tar.xz differ diff --git a/texcount.tar.xz b/texcount.tar.xz index 4b0b07e0ff0a8ad8e8afeae0291bea0bbea9a10b..13fb1be69fa6bdaa14f89896361ffb840d46edef 100644 Binary files a/texcount.tar.xz and b/texcount.tar.xz differ diff --git a/texdef.doc.tar.xz b/texdef.doc.tar.xz index 681ca2d5cf0e97ebda7d1bc1446d460a901b1214..869eeb39726a732c5fcffcfe67c42db2e2d9ec0a 100644 Binary files a/texdef.doc.tar.xz and b/texdef.doc.tar.xz differ diff --git a/texdef.tar.xz b/texdef.tar.xz index ea16a81f4f394856946b5d5c133180c469100549..5d08378e47a999c6a2c629e2f71cf4b3d4198ac6 100644 Binary files a/texdef.tar.xz and b/texdef.tar.xz differ diff --git a/texdiff.doc.tar.xz b/texdiff.doc.tar.xz index 301071577970dcd07a3fcabebfd4377f3f857d84..409fdc590d8832b67d9be16cab652071cdbd016e 100644 Binary files a/texdiff.doc.tar.xz and b/texdiff.doc.tar.xz differ diff --git a/texdiff.tar.xz b/texdiff.tar.xz index 5ad70a6266ce9064e38a9c69a513267a4875489f..b72d43efa4ab58ba47a941a56a85630213671fdb 100644 Binary files a/texdiff.tar.xz and b/texdiff.tar.xz differ diff --git a/texdirflatten.doc.tar.xz b/texdirflatten.doc.tar.xz index c71c5f834ba7b8436cb8aa431d973643e1bfeb50..681b02ea3d63fe58be39ea5c41351aa612244f1a 100644 Binary files a/texdirflatten.doc.tar.xz and b/texdirflatten.doc.tar.xz differ diff --git a/texdirflatten.tar.xz b/texdirflatten.tar.xz index 66119aa7ac162eca5424ee16a95551f0cc82e677..2c385108b2c0c07fe9de53ccb03f60eb245aca52 100644 Binary files a/texdirflatten.tar.xz and b/texdirflatten.tar.xz differ diff --git a/texdoc.doc.tar.xz b/texdoc.doc.tar.xz index 200abc159d81a45ba6d2b758e5a88bbf02271370..bb316270e1f4249bb97f08660bbc172e863df8ec 100644 Binary files a/texdoc.doc.tar.xz and b/texdoc.doc.tar.xz differ diff --git a/texdoc.tar.xz b/texdoc.tar.xz index 6edcc0755efc2e275431ec7a53274033aefa7981..2270c6080f277d3100a05f9b70f57b7bc17ef377 100644 Binary files a/texdoc.tar.xz and b/texdoc.tar.xz differ diff --git a/texdoctk.doc.tar.xz b/texdoctk.doc.tar.xz index 5dce117c345c47f06e09cf890477ae10c7085b39..a7a0d73393a9ee5e7eae8a3ee727834b9cba9dd2 100644 Binary files a/texdoctk.doc.tar.xz and b/texdoctk.doc.tar.xz differ diff --git a/texdoctk.tar.xz b/texdoctk.tar.xz index d13803890fd33980372e622744e45d7748c52492..353a3182202f0e3f14a3928533280cf18831f0aa 100644 Binary files a/texdoctk.tar.xz and b/texdoctk.tar.xz differ diff --git a/texfindpkg.doc.tar.xz b/texfindpkg.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..4eb14aa33e6511ad2f4ffab12a338f42d086b545 --- /dev/null +++ b/texfindpkg.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28c775516b865f4824dbc548ae1588cd831f3fbfb7773acbf6141ea6386ed79 +size 12708 diff --git a/texfindpkg.tar.xz b/texfindpkg.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..d1191d8ec6a96440c7e21d47c83ea100126aa8d3 --- /dev/null +++ b/texfindpkg.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ca7e1c7d0c6c2ba8738b69335f976bf63c11dfce8aeedf75b0c7cde75a68a4 +size 871300 diff --git a/texfot.doc.tar.xz b/texfot.doc.tar.xz index 77b8dc4b978092a2a5d68a6c7f0adc53fdbff1c2..fe5baa47f623cfb41e3e3e6aacd3e1c544a4edb4 100644 Binary files a/texfot.doc.tar.xz and b/texfot.doc.tar.xz differ diff --git a/texfot.tar.xz b/texfot.tar.xz index e767d29a7d79faf54f799d811313171a72f0a190..ee7f4d956aee0c825f7f1493c2599b30880207d0 100644 Binary files a/texfot.tar.xz and b/texfot.tar.xz differ diff --git a/texlive-2016-kpathsea-texlive-path.patch b/texlive-2016-kpathsea-texlive-path.patch index dc097fda63948f472c26bf509b5ec3fe0b183621..7b32fb282408ff5d84269b98bd972bc1bff5014a 100644 --- a/texlive-2016-kpathsea-texlive-path.patch +++ b/texlive-2016-kpathsea-texlive-path.patch @@ -1,6 +1,6 @@ diff -up source/texk/kpathsea/texmf.cnf.fixme source/texk/kpathsea/texmf.cnf ---- a/texlive-20210325-source/texk/kpathsea/texmf.cnf.fixme 2016-10-19 15:35:25.804218872 -0400 -+++ a/texlive-20210325-source/texk/kpathsea/texmf.cnf 2016-10-19 15:37:19.308035612 -0400 +--- source/texk/kpathsea/texmf.cnf.fixme 2016-10-19 15:35:25.804218872 -0400 ++++ source/texk/kpathsea/texmf.cnf 2016-10-19 15:37:19.308035612 -0400 @@ -491,17 +491,17 @@ RUBYINPUTS = .;$TEXMF/scripts/{$progna % TEXMFCNF = {\ diff --git a/texlive-20180414-annocheck.patch b/texlive-20180414-annocheck.patch index 4fa8871f8ecfc718aa5e70de673424cccafc9654..7804a29a3ab6eceda4ceded9adbbe088eb1a5737 100644 --- a/texlive-20180414-annocheck.patch +++ b/texlive-20180414-annocheck.patch @@ -1,5 +1,5 @@ ---- a/texlive-20210325-source/libs/luajit/Makefile.in.annocheck 2018-01-10 01:37:05.000000000 +0100 -+++ a/texlive-20210325-source/libs/luajit/Makefile.in 2019-01-11 22:45:34.503080977 +0100 +--- texlive-20180414/source/libs/luajit/Makefile.in.annocheck 2018-01-10 01:37:05.000000000 +0100 ++++ texlive-20180414/source/libs/luajit/Makefile.in 2019-01-11 22:45:34.503080977 +0100 @@ -680,7 +680,7 @@ NEVER_NAMES_LT = -o -name .libs -o -name '*.lo' AM_CPPFLAGS = -I$(srcdir)/$(LUAJIT_TREE)/src $(LUAJIT_DEFINES) -U_FORTIFY_SOURCE diff --git a/texlive-20190410-dvisvgm-fix-libgs-detection.patch b/texlive-20190410-dvisvgm-fix-libgs-detection.patch deleted file mode 100644 index c9159c2432504d89c088ccd488e1c3024dd65f4f..0000000000000000000000000000000000000000 --- a/texlive-20190410-dvisvgm-fix-libgs-detection.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -up texlive-20210325-source/texk/dvisvgm/configure.ac.fix-libgs-detection texlive-20210325-source/texk/dvisvgm/configure.ac ---- a/texlive-20210325-source/texk/dvisvgm/configure.ac.fix-libgs-detection 2019-03-10 14:21:29.000000000 -0400 -+++ a/texlive-20210325-source/texk/dvisvgm/configure.ac 2019-05-23 19:07:30.447057345 -0400 -@@ -66,7 +66,8 @@ AS_IF([test "x$have_libgs" = "xno"], - # Ghostscript not found, check for dlopen - [AC_CHECK_LIB(dl, dlopen,, - [AC_DEFINE(DISABLE_GS, 1, [Set to 1 if PostScript support should be disabled])] -- [AC_MSG_WARN(PostScript support disabled)])]) -+ [AC_MSG_WARN(PostScript support disabled)])], -+ [test "x$have_libgs" = "xyes"], [HAVE_LIBGS=1]) - fi - - if test -z "$HAVE_LIBGS" || test "$HAVE_LIBGS" -eq 0; then -diff -up texlive-20210325-source/texk/dvisvgm/configure.fix-libgs-detection texlive-20210325-source/texk/dvisvgm/configure ---- a/texlive-20210325-source/texk/dvisvgm/configure.fix-libgs-detection 2019-05-23 19:07:45.568703333 -0400 -+++ a/texlive-20210325-source/texk/dvisvgm/configure 2019-05-23 19:09:31.341219687 -0400 -@@ -22013,6 +22013,8 @@ $as_echo "#define DISABLE_GS 1" >>confde - $as_echo "$as_me: WARNING: PostScript support disabled" >&2;} - fi - -+elif test "x$have_libgs" = "xyes"; then : -+ HAVE_LIBGS=1 - fi - fi - diff --git a/texlive-20190410-tlmgr-ignore-warning.patch b/texlive-20190410-tlmgr-ignore-warning.patch index c5d72f72b16b7c661098fa01725f6f948a20c2c2..34636ddd7cc35b3bfb93b397a2df2cb04648524b 100644 --- a/texlive-20190410-tlmgr-ignore-warning.patch +++ b/texlive-20190410-tlmgr-ignore-warning.patch @@ -1,6 +1,6 @@ diff -up ./scripts/texlive/tlmgr.pl.ignore-warning ./scripts/texlive/tlmgr.pl ---- a/texlive-20210325-source/texk/texlive/linked_scripts/texlive/tlmgr.pl.ignore-warning 2019-05-24 21:35:57.384845754 -0400 -+++ a/texlive-20210325-source/texk/texlive/linked_scripts/texlive/tlmgr.pl 2019-05-24 21:39:32.703577109 -0400 +--- ./scripts/texlive/tlmgr.pl.ignore-warning 2019-05-24 21:35:57.384845754 -0400 ++++ ./scripts/texlive/tlmgr.pl 2019-05-24 21:39:32.703577109 -0400 @@ -231,6 +231,7 @@ my %action_specification = ( "dry-run|n" => 1, "file" => 1, diff --git a/texlive-20200327-poppler-0.90.patch b/texlive-20200327-poppler-0.90.patch new file mode 100644 index 0000000000000000000000000000000000000000..e76b4363737584340935b455c5782f51da63b816 --- /dev/null +++ b/texlive-20200327-poppler-0.90.patch @@ -0,0 +1,20 @@ +diff -up texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler090 texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler090 2020-07-14 13:13:31.620607263 -0400 ++++ texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc 2020-07-14 13:16:01.530248309 -0400 +@@ -766,7 +766,7 @@ read_pdf_info(char *image_name, char *pa + if (page_name) { + // get page by name + GString name(page_name); +- LinkDest *link = pdf_doc->doc->findDest(&name); ++ std::unique_ptr link = pdf_doc->doc->findDest(&name); + if (link == 0 || !link->isOk()) + pdftex_fail("PDF inclusion: invalid destination <%s>", page_name); + Ref ref = link->getPageRef(); +@@ -774,7 +774,6 @@ read_pdf_info(char *image_name, char *pa + if (page_num == 0) + pdftex_fail("PDF inclusion: destination is not a page <%s>", + page_name); +- delete link; + } else { + // get page by number + if (page_num <= 0 || page_num > epdf_num_pages) diff --git a/texlive-20210325-new-poppler.patch b/texlive-20210325-new-poppler.patch new file mode 100644 index 0000000000000000000000000000000000000000..2f5ba719e47e6c282428b431046142c99dcf6db9 --- /dev/null +++ b/texlive-20210325-new-poppler.patch @@ -0,0 +1,578 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.newpoppler texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.newpoppler 2020-05-14 17:45:48.000000000 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-06 17:39:49.308416042 -0400 +@@ -1,5 +1,5 @@ + /* +-Copyright 1996-2016 Han The Thanh, ++Copyright 1996-2017 Han The Thanh, + + This file is part of pdfTeX. + +@@ -17,6 +17,15 @@ You should have received a copy of the G + with this program. If not, see . + */ + ++/* ++This is based on the patch texlive-poppler-0.59.patch <2017-09-19> at ++https://git.archlinux.org/svntogit/packages.git/plain/texlive-bin/trunk ++by Arch Linux. A little modifications are made to avoid a crash for ++some kind of pdf images, such as figure_missing.pdf in gnuplot. ++The poppler should be 0.59.0 or newer versions. ++POPPLER_VERSION should be defined. ++*/ ++ + /* Do this early in order to avoid a conflict between + MINGW32 defining 'boolean' as 'unsigned char' and + defining Pascal's boolean as 'int'. +@@ -75,31 +84,6 @@ extern integer zround(double); + #define MASK_SUPPRESS_PTEX_PAGENUMBER 0x04 + #define MASK_SUPPRESS_PTEX_INFODICT 0x08 + +-// PdfObject encapsulates the xpdf Object type, +-// and properly frees its resources on destruction. +-// Use obj-> to access members of the Object, +-// and &obj to get a pointer to the object. +-// It is no longer necessary to call Object::free explicitely. +- +-class PdfObject { +- public: +- PdfObject() { // nothing +- } ~PdfObject() { +- iObject.free(); +- } +- Object *operator->() { +- return &iObject; +- } +- Object *operator&() { +- return &iObject; +- } +- private: // no copying or assigning +- PdfObject(const PdfObject &); +- void operator=(const PdfObject &); +- public: +- Object iObject; +-}; +- + // When copying the Resources of the selected page, all objects are copied + // recusively top-down. Indirect objects however are not fetched during + // copying, but get a new object number from pdfTeX and then will be +@@ -203,18 +187,6 @@ static void delete_document(PdfDocument + delete pdf_doc; + } + +-// Replacement for +-// Object *initDict(Dict *dict1){ initObj(objDict); dict = dict1; return this; } +- +-static void initDictFromDict(PdfObject & obj, Dict * dict) +-{ +- obj->initDict(xref); +- for (int i = 0, l = dict->getLength(); i < l; i++) { +- Object obj1; +- obj->dictAdd(copyString(dict->getKey(i)), dict->getValNF(i, &obj1)); +- } +-} +- + // -------------------------------------------------------------------- + + static int addEncoding(GfxFont * gfont) +@@ -311,10 +283,10 @@ static void copyName(char *s) + + static void copyDictEntry(Object * obj, int i) + { +- PdfObject obj1; ++ Object obj1; + copyName(obj->dictGetKey(i)); + pdf_puts(" "); +- obj->dictGetValNF(i, &obj1); ++ obj1 = obj->dictGetValNF(i); + copyObject(&obj1); + pdf_puts("\n"); + } +@@ -367,17 +339,17 @@ static void copyStream(Stream * str) + static void copyProcSet(Object * obj) + { + int i, l; +- PdfObject procset; ++ Object procset; + if (!obj->isArray()) + pdftex_fail("PDF inclusion: invalid ProcSet array type <%s>", + obj->getTypeName()); + pdf_puts("/ProcSet [ "); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj->arrayGetNF(i, &procset); +- if (!procset->isName()) ++ procset = obj->arrayGetNF(i); ++ if (!procset.isName()) + pdftex_fail("PDF inclusion: invalid ProcSet entry type <%s>", +- procset->getTypeName()); +- copyName(procset->getName()); ++ procset.getTypeName()); ++ copyName(procset.getName()); + pdf_puts(" "); + } + pdf_puts("]\n"); +@@ -385,10 +357,29 @@ static void copyProcSet(Object * obj) + + #define REPLACE_TYPE1C true + ++static bool embeddableFont(Object * fontdesc) ++{ ++ Object fontfile, ffsubtype; ++ ++ if (!fontdesc->isDict()) ++ return false; ++ fontfile = fontdesc->dictLookup("FontFile"); ++ if (fontfile.isStream()) ++ return true; ++ if (REPLACE_TYPE1C) { ++ fontfile = fontdesc->dictLookup("FontFile3"); ++ if (!fontfile.isStream()) ++ return false; ++ ffsubtype = fontfile.streamGetDict()->lookup("Subtype"); ++ return ffsubtype.isName() && !strcmp(ffsubtype.getName(), "Type1C"); ++ } ++ return false; ++} ++ + static void copyFont(char *tag, Object * fontRef) + { +- PdfObject fontdict, subtype, basefont, fontdescRef, fontdesc, charset, +- fontfile, ffsubtype, stemV; ++ Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, ++ stemV; + GfxFont *gfont; + fd_entry *fd; + fm_entry *fontmap; +@@ -404,33 +395,39 @@ static void copyFont(char *tag, Object * + } + // Only handle included Type1 (and Type1C) fonts; anything else will be copied. + // Type1C fonts are replaced by Type1 fonts, if REPLACE_TYPE1C is true. +- if (!fixedinclusioncopyfont && fontRef->fetch(xref, &fontdict)->isDict() +- && fontdict->dictLookup("Subtype", &subtype)->isName() +- && !strcmp(subtype->getName(), "Type1") +- && fontdict->dictLookup("BaseFont", &basefont)->isName() +- && fontdict->dictLookupNF("FontDescriptor", &fontdescRef)->isRef() +- && fontdescRef->fetch(xref, &fontdesc)->isDict() +- && (fontdesc->dictLookup("FontFile", &fontfile)->isStream() +- || (REPLACE_TYPE1C +- && fontdesc->dictLookup("FontFile3", &fontfile)->isStream() +- && fontfile->streamGetDict()->lookup("Subtype", +- &ffsubtype)->isName() +- && !strcmp(ffsubtype->getName(), "Type1C"))) +- && (fontmap = lookup_fontmap(basefont->getName())) != NULL) { ++ fontdict = fontRef->fetch(xref); ++ fontdesc = Object(objNull); ++ if (fontdict.isDict()) { ++ subtype = fontdict.dictLookup("Subtype"); ++ basefont = fontdict.dictLookup("BaseFont"); ++ fontdescRef = fontdict.dictLookupNF("FontDescriptor"); ++ if (fontdescRef.isRef()) { ++ fontdesc = fontdescRef.fetch(xref); ++ } ++ } ++ if (!fixedinclusioncopyfont && fontdict.isDict() ++ && subtype.isName() ++ && !strcmp(subtype.getName(), "Type1") ++ && basefont.isName() ++ && fontdescRef.isRef() ++ && fontdesc.isDict() ++ && embeddableFont(&fontdesc) ++ && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { + // round /StemV value, since the PDF input is a float + // (see Font Descriptors in PDF reference), but we only store an + // integer, since we don't want to change the struct. +- fontdesc->dictLookup("StemV", &stemV); +- fd = epdf_create_fontdescriptor(fontmap, zround(stemV->getNum())); +- if (fontdesc->dictLookup("CharSet", &charset) && +- charset->isString() && is_subsetable(fontmap)) +- epdf_mark_glyphs(fd, charset->getString()->getCString()); ++ stemV = fontdesc.dictLookup("StemV"); ++ fd = epdf_create_fontdescriptor(fontmap, zround(stemV.getNum())); ++ charset = fontdesc.dictLookup("CharSet"); ++ if (!charset.isNull() && ++ charset.isString() && is_subsetable(fontmap)) ++ epdf_mark_glyphs(fd, charset.getString()->getCString()); + else + embed_whole_font(fd); +- addFontDesc(fontdescRef->getRef(), fd); ++ addFontDesc(fontdescRef.getRef(), fd); + copyName(tag); + gfont = GfxFont::makeFont(xref, tag, fontRef->getRef(), +- fontdict->getDict()); ++ fontdict.getDict()); + pdf_printf(" %d 0 R ", addFont(fontRef->getRef(), fd, + addEncoding(gfont))); + } else { +@@ -442,24 +439,24 @@ static void copyFont(char *tag, Object * + + static void copyFontResources(Object * obj) + { +- PdfObject fontRef; ++ Object fontRef; + int i, l; + if (!obj->isDict()) + pdftex_fail("PDF inclusion: invalid font resources dict type <%s>", + obj->getTypeName()); + pdf_puts("/Font << "); + for (i = 0, l = obj->dictGetLength(); i < l; ++i) { +- obj->dictGetValNF(i, &fontRef); +- if (fontRef->isRef()) ++ fontRef = obj->dictGetValNF(i); ++ if (fontRef.isRef()) + copyFont(obj->dictGetKey(i), &fontRef); +- else if (fontRef->isDict()) { // some programs generate pdf with embedded font object ++ else if (fontRef.isDict()) { // some programs generate pdf with embedded font object + copyName(obj->dictGetKey(i)); + pdf_puts(" "); + copyObject(&fontRef); + } + else + pdftex_fail("PDF inclusion: invalid font in reference type <%s>", +- fontRef->getTypeName()); ++ fontRef.getTypeName()); + } + pdf_puts(">>\n"); + } +@@ -548,7 +545,7 @@ static char *convertNumToPDF(double n) + + static void copyObject(Object * obj) + { +- PdfObject obj1; ++ Object obj1; + int i, l, c; + Ref ref; + char *p; +@@ -592,8 +589,8 @@ static void copyObject(Object * obj) + } else if (obj->isArray()) { + pdf_puts("["); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj->arrayGetNF(i, &obj1); +- if (!obj1->isName()) ++ obj1 = obj->arrayGetNF(i); ++ if (!obj1.isName()) + pdf_puts(" "); + copyObject(&obj1); + } +@@ -603,9 +600,8 @@ static void copyObject(Object * obj) + copyDict(obj); + pdf_puts(">>"); + } else if (obj->isStream()) { +- initDictFromDict(obj1, obj->streamGetDict()); + pdf_puts("<<\n"); +- copyDict(&obj1); ++ copyDict(obj->getStream()->getDictObject()); + pdf_puts(">>\n"); + pdf_puts("stream\n"); + copyStream(obj->getStream()->getUndecodedStream()); +@@ -629,9 +625,8 @@ static void writeRefs() + InObj *r; + for (r = inObjList; r != 0; r = r->next) { + if (!r->written) { +- Object obj1; + r->written = 1; +- xref->fetch(r->ref.num, r->ref.gen, &obj1); ++ Object obj1 = xref->fetch(r->ref.num, r->ref.gen); + if (r->type == objFont) { + assert(!obj1.isStream()); + pdfbeginobj(r->num, 2); // \pdfobjcompresslevel = 2 is for this +@@ -647,7 +642,6 @@ static void writeRefs() + pdf_puts("\n"); + pdfendobj(); + } +- obj1.free(); + } + } + } +@@ -805,8 +799,8 @@ void write_epdf(void) + Page *page; + Ref *pageRef; + Dict *pageDict; +- PdfObject contents, obj1, obj2, pageObj, dictObj; +- PdfObject groupDict; ++ Object contents, obj1, obj2, pageObj, dictObj; ++ Object groupDict; + bool writeSepGroup = false; + Object info; + char *key; +@@ -833,8 +827,8 @@ void write_epdf(void) + encodingList = 0; + page = pdf_doc->doc->getCatalog()->getPage(epdf_selected_page); + pageRef = pdf_doc->doc->getCatalog()->getPageRef(epdf_selected_page); +- xref->fetch(pageRef->num, pageRef->gen, &pageObj); +- pageDict = pageObj->getDict(); ++ pageObj = xref->fetch(pageRef->num, pageRef->gen); ++ pageDict = pageObj.getDict(); + rotate = page->getRotate(); + PDFRectangle *pagebox; + // write the Page header +@@ -852,7 +846,7 @@ void write_epdf(void) + pdf_printf("/%s.PageNumber %i\n", pdfkeyprefix, (int) epdf_selected_page); + } + if ((suppress_ptex_info & MASK_SUPPRESS_PTEX_INFODICT) == 0) { +- pdf_doc->doc->getDocInfoNF(&info); ++ info = pdf_doc->doc->getDocInfoNF(); + if (info.isRef()) { + // the info dict must be indirect (PDF Ref p. 61) + pdf_printf("/%s.InfoDict ", pdfkeyprefix); +@@ -908,14 +902,14 @@ void write_epdf(void) + pdf_puts(stripzeros(s)); + + // Metadata validity check (as a stream it must be indirect) +- pageDict->lookupNF("Metadata", &dictObj); +- if (!dictObj->isNull() && !dictObj->isRef()) ++ dictObj = pageDict->lookupNF("Metadata"); ++ if (!dictObj.isNull() && !dictObj.isRef()) + pdftex_warn("PDF inclusion: /Metadata must be indirect object"); + + // copy selected items in Page dictionary except Resources & Group + for (i = 0; pageDictKeys[i] != NULL; i++) { +- pageDict->lookupNF(pageDictKeys[i], &dictObj); +- if (!dictObj->isNull()) { ++ dictObj = pageDict->lookupNF(pageDictKeys[i]); ++ if (!dictObj.isNull()) { + pdf_newline(); + pdf_printf("/%s ", pageDictKeys[i]); + copyObject(&dictObj); // preserves indirection +@@ -923,8 +917,8 @@ void write_epdf(void) + } + + // handle page group +- pageDict->lookupNF("Group", &dictObj); +- if (!dictObj->isNull()) { ++ dictObj = pageDict->lookupNF("Group"); ++ if (!dictObj.isNull()) { + if (pdfpagegroupval == 0) { + // another pdf with page group was included earlier on the + // same page; copy the Group entry as is. See manual for +@@ -938,11 +932,36 @@ void write_epdf(void) + copyObject(&dictObj); + } else { + // write Group dict as a separate object, since the Page dict also refers to it +- pageDict->lookup("Group", &dictObj); +- if (!dictObj->isDict()) ++ dictObj = pageDict->lookup("Group"); ++ if (!dictObj.isDict()) + pdftex_fail("PDF inclusion: /Group dict missing"); + writeSepGroup = true; +- initDictFromDict(groupDict, page->getGroup()); ++/* ++This part is only a single line ++ groupDict = Object(page->getGroup()); ++in the original patch. In this case, however, pdftex crashes at ++"delete pdf_doc->doc" in "delete_document()" for inclusion of some ++kind of pdf images, for example, figure_missing.pdf in gnuplot. ++A change ++ groupDict = Object(page->getGroup()).copy(); ++does not improve the situation. ++The changes below seem to work fine. ++*/ ++// begin modification ++ groupDict = pageDict->lookup("Group"); ++ const Dict& dic1 = page->getGroup(); ++ const Dict& dic2 = groupDict.getDict(); ++ // replace dic2 in groupDict with dic1 ++ l = dic2.getLength(); ++ for (i = 0; i < l; i++) { ++ groupDict.dictRemove(dic2.getKey(i)); ++ } ++ l = dic1.getLength(); ++ for (i = 0; i < l; i++) { ++ groupDict.dictAdd(copyString(dic1.getKey(i)), ++ dic1.getValNF(i)); ++ } ++// end modification + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); + } + } +@@ -955,14 +974,14 @@ void write_epdf(void) + pdftex_warn + ("PDF inclusion: /Resources missing. 'This practice is not recommended' (PDF Ref)"); + } else { +- initDictFromDict(obj1, page->getResourceDict()); ++ Object *obj1 = page->getResourceDictObject(); + if (!obj1->isDict()) + pdftex_fail("PDF inclusion: invalid resources dict type <%s>", + obj1->getTypeName()); + pdf_newline(); + pdf_puts("/Resources <<\n"); + for (i = 0, l = obj1->dictGetLength(); i < l; ++i) { +- obj1->dictGetVal(i, &obj2); ++ obj2 = obj1->dictGetVal(i); + key = obj1->dictGetKey(i); + if (strcmp("Font", key) == 0) + copyFontResources(&obj2); +@@ -975,8 +994,8 @@ void write_epdf(void) + } + + // write the page contents +- page->getContents(&contents); +- if (contents->isStream()) { ++ contents = page->getContents(); ++ if (contents.isStream()) { + + // Variant A: get stream and recompress under control + // of \pdfcompresslevel +@@ -987,36 +1006,35 @@ void write_epdf(void) + + // Variant B: copy stream without recompressing + // +- contents->streamGetDict()->lookup("F", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("F"); ++ if (!obj1.isNull()) { + pdftex_fail("PDF inclusion: Unsupported external stream"); + } +- contents->streamGetDict()->lookup("Length", &obj1); +- assert(!obj1->isNull()); ++ obj1 = contents.streamGetDict()->lookup("Length"); ++ assert(!obj1.isNull()); + pdf_puts("/Length "); + copyObject(&obj1); + pdf_puts("\n"); +- contents->streamGetDict()->lookup("Filter", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("Filter"); ++ if (!obj1.isNull()) { + pdf_puts("/Filter "); + copyObject(&obj1); + pdf_puts("\n"); +- contents->streamGetDict()->lookup("DecodeParms", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("DecodeParms"); ++ if (!obj1.isNull()) { + pdf_puts("/DecodeParms "); + copyObject(&obj1); + pdf_puts("\n"); + } + } + pdf_puts(">>\nstream\n"); +- copyStream(contents->getStream()->getUndecodedStream()); ++ copyStream(contents.getStream()->getUndecodedStream()); + pdfendstream(); +- } else if (contents->isArray()) { ++ } else if (contents.isArray()) { + pdfbeginstream(); +- for (i = 0, l = contents->arrayGetLength(); i < l; ++i) { +- Object contentsobj; +- copyStream((contents->arrayGet(i, &contentsobj))->getStream()); +- contentsobj.free(); ++ for (i = 0, l = contents.arrayGetLength(); i < l; ++i) { ++ Object contentsobj = contents.arrayGet(i); ++ copyStream(contentsobj.getStream()); + if (i < l - 1) + pdf_newline(); // add a newline after each stream except the last + } +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.newpoppler texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.newpoppler 2020-05-14 17:45:48.000000000 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-06 17:50:38.863177570 -0400 +@@ -16,6 +16,14 @@ GNU General Public License for more deta + You should have received a copy of the GNU General Public License along + with this program. If not, see . + */ ++ ++/* ++This is based on the patch texlive-poppler-0.59.patch <2017-09-19> at ++https://git.archlinux.org/svntogit/packages.git/plain/texlive-bin/trunk ++by Arch Linux. The poppler should be 0.59.0 or newer versions. ++POPPLER_VERSION should be defined. ++*/ ++ + #include + + #include +@@ -77,22 +85,20 @@ int main(int argc, char *argv[]) + objgen = atoi(argv[3]); + } + xref = doc->getXRef(); +- catalogDict.initNull(); +- xref->getCatalog(&catalogDict); ++ catalogDict = xref->getCatalog(); + if (!catalogDict.isDict("Catalog")) { + fprintf(stderr, "No Catalog found\n"); + exit(1); + } +- srcStream.initNull(); ++ srcStream = Object(objNull); + if (objnum == 0) { +- catalogDict.dictLookup("SourceObject", &srcStream); ++ srcStream = catalogDict.dictLookup("SourceObject"); + static char const_SourceFile[] = "SourceFile"; + if (!srcStream.isStream(const_SourceFile)) { + fprintf(stderr, "No SourceObject found\n"); + exit(1); + } +- srcName.initNull(); +- srcStream.getStream()->getDict()->lookup("SourceName", &srcName); ++ srcName = srcStream.getStream()->getDict()->lookup("SourceName"); + if (!srcName.isString()) { + fprintf(stderr, "No SourceName found\n"); + exit(1); +@@ -101,7 +107,7 @@ int main(int argc, char *argv[]) + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +- xref->fetch(objnum, objgen, &srcStream); ++ srcStream = xref->fetch(objnum, objgen); + if (!srcStream.isStream()) { + fprintf(stderr, "Not a Stream object\n"); + exit(1); +@@ -151,26 +157,24 @@ int main(int argc, char *argv[]) + int localOffset = 0; + Guint firstOffset; + +- assert(xref->fetch(e->offset, 0, &objStr)->isStream()); +- nObjects = objStr.streamGetDict()->lookup("N", &obj1)->getInt(); +- obj1.free(); +- first = objStr.streamGetDict()->lookup("First", &obj1)->getInt(); +- obj1.free(); ++ objStr = xref->fetch(e->offset, 0); ++ assert(objStr.isStream()); ++ obj1 = objStr.streamGetDict()->lookup("N"); ++ nObjects = obj1.getInt(); ++ obj1 = objStr.streamGetDict()->lookup("First"); ++ first = obj1.getInt(); + firstOffset = objStr.getStream()->getBaseStream()->getStart() + first; + + // parse the header: object numbers and offsets + objStr.streamReset(); +- obj1.initNull(); +- str = new EmbedStream(objStr.getStream(), &obj1, gTrue, first); ++ str = new EmbedStream(objStr.getStream(), Object(objNull), gTrue, first); + lexer = new Lexer(xref, str); + parser = new Parser(xref, lexer, gFalse); + for (n = 0; n < nObjects; ++n) { +- parser->getObj(&obj1); +- parser->getObj(&obj2); ++ obj1 = parser->getObj(); ++ obj2 = parser->getObj(); + if (n == e->gen) + localOffset = obj2.getInt(); +- obj1.free(); +- obj2.free(); + } + #if defined(XPDF304) + while (str->getChar() != EOF) ; +@@ -178,7 +182,6 @@ int main(int argc, char *argv[]) + lexer->skipToEOF(); + #endif + delete parser; +- objStr.free(); + + fprintf(outfile, "%.10lu 00000 n\n", + (long unsigned)(firstOffset + localOffset)); +@@ -189,7 +192,6 @@ int main(int argc, char *argv[]) + s->reset(); + while ((c = s->getChar()) != EOF) + fputc(c, outfile); +- srcStream.free(); + } + if (objnum == 0) + fprintf(stderr, "Source file extracted to %s\n", outname); +@@ -198,7 +200,6 @@ int main(int argc, char *argv[]) + else + fprintf(stderr, "Cross-reference table extracted to %s\n", outname); + fclose(outfile); +- catalogDict.free(); + delete doc; + delete globalParams; + } diff --git a/texlive-20210325-poppler-0.73.patch b/texlive-20210325-poppler-0.73.patch new file mode 100644 index 0000000000000000000000000000000000000000..4b24f295183d43cbc9477acd6eebb14e9d803192 --- /dev/null +++ b/texlive-20210325-poppler-0.73.patch @@ -0,0 +1,200 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.73 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.73 2021-05-06 18:01:35.847959461 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-06 18:08:20.143955577 -0400 +@@ -114,7 +114,7 @@ struct UsedEncoding { + + static InObj *inObjList; + static UsedEncoding *encodingList; +-static GBool isInit = gFalse; ++static bool isInit = false; + + // -------------------------------------------------------------------- + // Maintain list of open embedded PDF files +@@ -269,7 +269,7 @@ static int getNewObjectNumber(Ref ref) + + static void copyObject(Object *); + +-static void copyName(char *s) ++static void copyName(const char *s) + { + pdf_puts("/"); + for (; *s != 0; s++) { +@@ -304,7 +304,7 @@ static void copyDict(Object * obj) + static void copyFontDict(Object * obj, InObj * r) + { + int i, l; +- char *key; ++ const char *key; + if (!obj->isDict()) + pdftex_fail("PDF inclusion: invalid dict type <%s>", + obj->getTypeName()); +@@ -376,7 +376,7 @@ static bool embeddableFont(Object * font + return false; + } + +-static void copyFont(char *tag, Object * fontRef) ++static void copyFont(const char *tag, Object * fontRef) + { + Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, + stemV; +@@ -412,7 +412,7 @@ static void copyFont(char *tag, Object * + && fontdescRef.isRef() + && fontdesc.isDict() + && embeddableFont(&fontdesc) +- && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { ++ && (fontmap = lookup_fontmap((char *)basefont.getName())) != NULL) { + // round /StemV value, since the PDF input is a float + // (see Font Descriptors in PDF reference), but we only store an + // integer, since we don't want to change the struct. +@@ -421,7 +421,7 @@ static void copyFont(char *tag, Object * + charset = fontdesc.dictLookup("CharSet"); + if (!charset.isNull() && + charset.isString() && is_subsetable(fontmap)) +- epdf_mark_glyphs(fd, charset.getString()->getCString()); ++ epdf_mark_glyphs(fd, (char *)charset.getString()->c_str()); + else + embed_whole_font(fd); + addFontDesc(fontdescRef.getRef(), fd); +@@ -461,7 +461,7 @@ static void copyFontResources(Object * o + pdf_puts(">>\n"); + } + +-static void copyOtherResources(Object * obj, char *key) ++static void copyOtherResources(Object * obj, const char *key) + { + // copies all other resources (write_epdf handles Fonts and ProcSets), + +@@ -548,8 +548,8 @@ static void copyObject(Object * obj) + Object obj1; + int i, l, c; + Ref ref; +- char *p; +- GString *s; ++ const char *p; ++ const GString *s; + if (obj->isBool()) { + pdf_printf("%s", obj->getBool()? "true" : "false"); + } else if (obj->isInt()) { +@@ -560,7 +560,7 @@ static void copyObject(Object * obj) + pdf_printf("%s", convertNumToPDF(obj->getNum())); + } else if (obj->isString()) { + s = obj->getString(); +- p = s->getCString(); ++ p = s->c_str(); + l = s->getLength(); + if (strlen(p) == (unsigned int) l) { + pdf_puts("("); +@@ -658,7 +658,7 @@ static void writeEncodings() + ("PDF inclusion: CID fonts are not supported" + " (try to disable font replacement to fix this)"); + } +- if ((s = ((Gfx8BitFont *) r->font)->getCharName(i)) != 0) ++ if ((s = (char *) ((Gfx8BitFont *) r->font)->getCharName(i)) != 0) + glyphNames[i] = s; + else + glyphNames[i] = notdef; +@@ -673,7 +673,7 @@ static void writeEncodings() + } + + // get the pagebox according to the pagebox_spec +-static PDFRectangle *get_pagebox(Page * page, int pagebox_spec) ++static const PDFRectangle *get_pagebox(Page * page, int pagebox_spec) + { + if (pagebox_spec == pdfboxspecmedia) + return page->getMediaBox(); +@@ -705,13 +705,13 @@ read_pdf_info(char *image_name, char *pa + { + PdfDocument *pdf_doc; + Page *page; +- PDFRectangle *pagebox; ++ const PDFRectangle *pagebox; + float pdf_version_found, pdf_version_wanted; + // initialize + if (!isInit) { + globalParams = new GlobalParams(); +- globalParams->setErrQuiet(gFalse); +- isInit = gTrue; ++ globalParams->setErrQuiet(false); ++ isInit = true; + } + // open PDF file + pdf_doc = find_add_document(image_name); +@@ -803,7 +803,7 @@ void write_epdf(void) + Object groupDict; + bool writeSepGroup = false; + Object info; +- char *key; ++ const char *key; + char s[256]; + int i, l; + int rotate; +@@ -830,7 +830,7 @@ void write_epdf(void) + pageObj = xref->fetch(pageRef->num, pageRef->gen); + pageDict = pageObj.getDict(); + rotate = page->getRotate(); +- PDFRectangle *pagebox; ++ const PDFRectangle *pagebox; + // write the Page header + pdf_puts("/Type /XObject\n"); + pdf_puts("/Subtype /Form\n"); +@@ -958,7 +958,7 @@ The changes below seem to work fine. + } + l = dic1.getLength(); + for (i = 0; i < l; i++) { +- groupDict.dictAdd(copyString(dic1.getKey(i)), ++ groupDict.dictAdd(dic1.getKey(i), + dic1.getValNF(i)); + } + // end modification +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.73 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.73 2021-05-06 18:01:35.847959461 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-06 18:01:35.854959565 -0400 +@@ -103,7 +103,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "No SourceName found\n"); + exit(1); + } +- outname = srcName.getString()->getCString(); ++ outname = (char *)srcName.getString()->c_str(); + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +@@ -112,7 +112,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "Not a Stream object\n"); + exit(1); + } +- sprintf(buf, "%s", fileName->getCString()); ++ sprintf(buf, "%s", fileName->c_str()); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + if (objgen == 0) +@@ -122,7 +122,7 @@ int main(int argc, char *argv[]) + outname = buf; + } else { // objnum < 0 means we are extracting the XRef table + extract_xref_table = true; +- sprintf(buf, "%s", fileName->getCString()); ++ sprintf(buf, "%s", fileName->c_str()); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + sprintf(p, ".xref"); +@@ -155,7 +155,7 @@ int main(int argc, char *argv[]) + Object objStr, obj1, obj2; + int nObjects, first, n; + int localOffset = 0; +- Guint firstOffset; ++ unsigned int firstOffset; + + objStr = xref->fetch(e->offset, 0); + assert(objStr.isStream()); +@@ -167,9 +167,9 @@ int main(int argc, char *argv[]) + + // parse the header: object numbers and offsets + objStr.streamReset(); +- str = new EmbedStream(objStr.getStream(), Object(objNull), gTrue, first); ++ str = new EmbedStream(objStr.getStream(), Object(objNull), true, first); + lexer = new Lexer(xref, str); +- parser = new Parser(xref, lexer, gFalse); ++ parser = new Parser(xref, lexer, false); + for (n = 0; n < nObjects; ++n) { + obj1 = parser->getObj(); + obj2 = parser->getObj(); +diff -up texlive-base-20210325/source/texk/web2c/xetexdir/pdfimage.cpp.poppler-0.73 texlive-base-20210325/source/texk/web2c/xetexdir/pdfimage.cpp diff --git a/texlive-20210325-poppler-0.84.patch b/texlive-20210325-poppler-0.84.patch new file mode 100644 index 0000000000000000000000000000000000000000..37cb1c39d4255fb11a042be2b259d99e92d42761 --- /dev/null +++ b/texlive-20210325-poppler-0.84.patch @@ -0,0 +1,228 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.84 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.84 2021-05-06 18:21:18.379430999 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-10 11:15:09.572907304 -0400 +@@ -26,6 +26,15 @@ The poppler should be 0.59.0 or newer ve + POPPLER_VERSION should be defined. + */ + ++#ifdef POPPLER_VERSION ++#include ++#define xpdfVersion POPPLER_VERSION ++#define xpdfString "poppler" ++#else ++#include /* just to get the xpdf version */ ++#define xpdfString "xpdf" ++#endif ++ + /* Do this early in order to avoid a conflict between + MINGW32 defining 'boolean' as 'unsigned char' and + defining Pascal's boolean as 'int'. +@@ -286,7 +295,7 @@ static void copyDictEntry(Object * obj, + Object obj1; + copyName(obj->dictGetKey(i)); + pdf_puts(" "); +- obj1 = obj->dictGetValNF(i); ++ obj1 = obj->dictGetValNF(i).copy(); + copyObject(&obj1); + pdf_puts("\n"); + } +@@ -345,7 +354,7 @@ static void copyProcSet(Object * obj) + obj->getTypeName()); + pdf_puts("/ProcSet [ "); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- procset = obj->arrayGetNF(i); ++ procset = obj->arrayGetNF(i).copy(); + if (!procset.isName()) + pdftex_fail("PDF inclusion: invalid ProcSet entry type <%s>", + procset.getTypeName()); +@@ -400,7 +409,7 @@ static void copyFont(const char *tag, Ob + if (fontdict.isDict()) { + subtype = fontdict.dictLookup("Subtype"); + basefont = fontdict.dictLookup("BaseFont"); +- fontdescRef = fontdict.dictLookupNF("FontDescriptor"); ++ fontdescRef = fontdict.dictLookupNF("FontDescriptor").copy(); + if (fontdescRef.isRef()) { + fontdesc = fontdescRef.fetch(xref); + } +@@ -446,7 +455,7 @@ static void copyFontResources(Object * o + obj->getTypeName()); + pdf_puts("/Font << "); + for (i = 0, l = obj->dictGetLength(); i < l; ++i) { +- fontRef = obj->dictGetValNF(i); ++ fontRef = obj->dictGetValNF(i).copy(); + if (fontRef.isRef()) + copyFont(obj->dictGetKey(i), &fontRef); + else if (fontRef.isDict()) { // some programs generate pdf with embedded font object +@@ -589,7 +598,7 @@ static void copyObject(Object * obj) + } else if (obj->isArray()) { + pdf_puts("["); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj1 = obj->arrayGetNF(i); ++ obj1 = obj->arrayGetNF(i).copy(); + if (!obj1.isName()) + pdf_puts(" "); + copyObject(&obj1); +@@ -709,7 +718,7 @@ read_pdf_info(char *image_name, char *pa + float pdf_version_found, pdf_version_wanted; + // initialize + if (!isInit) { +- globalParams = new GlobalParams(); ++ globalParams = std::unique_ptr(new GlobalParams()); + globalParams->setErrQuiet(false); + isInit = true; + } +@@ -742,7 +751,7 @@ read_pdf_info(char *image_name, char *pa + if (link == 0 || !link->isOk()) + pdftex_fail("PDF inclusion: invalid destination <%s>", page_name); + Ref ref = link->getPageRef(); +- page_num = pdf_doc->doc->getCatalog()->findPage(ref.num, ref.gen); ++ page_num = pdf_doc->doc->getCatalog()->findPage(ref); + if (page_num == 0) + pdftex_fail("PDF inclusion: destination is not a page <%s>", + page_name); +@@ -902,13 +911,13 @@ void write_epdf(void) + pdf_puts(stripzeros(s)); + + // Metadata validity check (as a stream it must be indirect) +- dictObj = pageDict->lookupNF("Metadata"); ++ dictObj = pageDict->lookupNF("Metadata").copy(); + if (!dictObj.isNull() && !dictObj.isRef()) + pdftex_warn("PDF inclusion: /Metadata must be indirect object"); + + // copy selected items in Page dictionary except Resources & Group + for (i = 0; pageDictKeys[i] != NULL; i++) { +- dictObj = pageDict->lookupNF(pageDictKeys[i]); ++ dictObj = pageDict->lookupNF(pageDictKeys[i]).copy(); + if (!dictObj.isNull()) { + pdf_newline(); + pdf_printf("/%s ", pageDictKeys[i]); +@@ -917,7 +926,7 @@ void write_epdf(void) + } + + // handle page group +- dictObj = pageDict->lookupNF("Group"); ++ dictObj = pageDict->lookupNF("Group").copy(); + if (!dictObj.isNull()) { + if (pdfpagegroupval == 0) { + // another pdf with page group was included earlier on the +@@ -959,7 +968,7 @@ The changes below seem to work fine. + l = dic1.getLength(); + for (i = 0; i < l; i++) { + groupDict.dictAdd(dic1.getKey(i), +- dic1.getValNF(i)); ++ dic1.getValNF(i).copy()); + } + // end modification + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); +@@ -1089,6 +1098,6 @@ void epdf_check_mem() + delete_document(p); + } + // see above for globalParams +- delete globalParams; ++ globalParams.reset(); + } + } +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.84 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.84 2021-05-06 18:21:18.379430999 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-06 18:21:18.383431058 -0400 +@@ -24,6 +24,15 @@ by Arch Linux. The poppler should be 0.5 + POPPLER_VERSION should be defined. + */ + ++#ifdef POPPLER_VERSION ++#include ++#define xpdfVersion POPPLER_VERSION ++#define xpdfString "poppler" ++#else ++#include /* just to get the xpdf version */ ++#define xpdfString "xpdf" ++#endif ++ + #include + + #include +@@ -73,7 +82,7 @@ int main(int argc, char *argv[]) + exit(1); + } + fileName = new GString(argv[1]); +- globalParams = new GlobalParams(); ++ globalParams = std::unique_ptr(new GlobalParams()); + doc = new PDFDoc(fileName); + if (!doc->isOk()) { + fprintf(stderr, "Invalid PDF file\n"); +@@ -94,7 +103,7 @@ int main(int argc, char *argv[]) + if (objnum == 0) { + srcStream = catalogDict.dictLookup("SourceObject"); + static char const_SourceFile[] = "SourceFile"; +- if (!srcStream.isStream(const_SourceFile)) { ++ if (!(srcStream.isStream() && srcStream.getDict()->is(const_SourceFile))) { + fprintf(stderr, "No SourceObject found\n"); + exit(1); + } +@@ -150,7 +159,6 @@ int main(int argc, char *argv[]) + (e->type == xrefEntryFree ? "f" : "n")); + else { // e->offset is the object number of the object stream + Stream *str; +- Lexer *lexer; + Parser *parser; + Object objStr, obj1, obj2; + int nObjects, first, n; +@@ -168,8 +176,7 @@ int main(int argc, char *argv[]) + // parse the header: object numbers and offsets + objStr.streamReset(); + str = new EmbedStream(objStr.getStream(), Object(objNull), true, first); +- lexer = new Lexer(xref, str); +- parser = new Parser(xref, lexer, false); ++ parser = new Parser(xref, str, false); + for (n = 0; n < nObjects; ++n) { + obj1 = parser->getObj(); + obj2 = parser->getObj(); +@@ -201,5 +208,5 @@ int main(int argc, char *argv[]) + fprintf(stderr, "Cross-reference table extracted to %s\n", outname); + fclose(outfile); + delete doc; +- delete globalParams; ++ globalParams.reset(); + } +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c.poppler-0.84 texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c +--- texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c.poppler-0.84 2019-12-29 19:37:32.000000000 -0500 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c 2021-05-06 18:21:18.383431058 -0400 +@@ -32,14 +32,6 @@ with this program. If not, see + #include "ptexlib.h" + #include +-#ifdef POPPLER_VERSION +-/* POPPLER_VERSION should be a proper version string */ +-#define xpdfVersion POPPLER_VERSION +-#define xpdfString "poppler" +-#else +-#include /* just to get the xpdf version */ +-#define xpdfString "xpdf" +-#endif + + #define check_nprintf(size_get, size_want) \ + if ((unsigned)(size_get) >= (unsigned)(size_want)) \ +@@ -977,12 +969,10 @@ void initversionstring(char **versions) + { + const_string fmt = + "Compiled with libpng %s; using libpng %s\n" +- "Compiled with zlib %s; using zlib %s\n" +- "Compiled with %s version %s\n"; ++ "Compiled with zlib %s; using zlib %s\n"; + size_t len = strlen(fmt) + + strlen(PNG_LIBPNG_VER_STRING) + strlen(png_libpng_ver) + + strlen(ZLIB_VERSION) + strlen(zlib_version) +- + strlen(xpdfString) + strlen(xpdfVersion) + + 1; + + /* len will be more than enough, because of the placeholder chars in fmt +@@ -990,7 +980,7 @@ void initversionstring(char **versions) + *versions = xmalloc(len); + sprintf(*versions, fmt, + PNG_LIBPNG_VER_STRING, png_libpng_ver, +- ZLIB_VERSION, zlib_version, xpdfString, xpdfVersion); ++ ZLIB_VERSION, zlib_version); + } + + +diff -up texlive-base-20210325/source/texk/web2c/xetexdir/XeTeX_ext.c.poppler-0.84 texlive-base-20210325/source/texk/web2c/xetexdir/XeTeX_ext.c diff --git a/texlive-20210325-source.tar.xz b/texlive-20210325-source.tar.xz deleted file mode 100644 index da8bda38dd475b041bb19fa14ad2772707651563..0000000000000000000000000000000000000000 Binary files a/texlive-20210325-source.tar.xz and /dev/null differ diff --git a/texlive-20220321-disable-more-failing-tests.patch b/texlive-20220321-disable-more-failing-tests.patch new file mode 100644 index 0000000000000000000000000000000000000000..6e1737043d365e462dabdba5eb927f475748c8f3 --- /dev/null +++ b/texlive-20220321-disable-more-failing-tests.patch @@ -0,0 +1,140 @@ +diff -up texlive-base-20220321/source/texk/kpathsea/Makefile.am.dt texlive-base-20220321/source/texk/kpathsea/Makefile.am +--- texlive-base-20220321/source/texk/kpathsea/Makefile.am.dt 2020-06-22 18:11:50.000000000 -0400 ++++ texlive-base-20220321/source/texk/kpathsea/Makefile.am 2022-04-24 15:03:32.852801273 -0400 +@@ -275,7 +275,7 @@ uninstall-local: + AM_TESTS_ENVIRONMENT = LN_S='$(LN_S)'; export LN_S; + AM_TESTS_ENVIRONMENT += LT_OBJDIR='$(LT_OBJDIR)'; export LT_OBJDIR; + # +-TESTS = tests/cnfline.test tests/cnfnewline.test ++TESTS = tests/cnfnewline.test + TESTS += tests/cnfnull.test tests/cnfprog.test + TESTS += tests/kpseaccess.test + TESTS += tests/kpsereadlink.test tests/kpsestat.test tests/kpsewhich.test +diff -up texlive-base-20220321/source/texk/kpathsea/Makefile.in.dt texlive-base-20220321/source/texk/kpathsea/Makefile.in +--- texlive-base-20220321/source/texk/kpathsea/Makefile.in.dt 2021-10-04 11:13:00.000000000 -0400 ++++ texlive-base-20220321/source/texk/kpathsea/Makefile.in 2022-04-24 15:03:32.852801273 -0400 +@@ -861,7 +861,7 @@ dist_noinst_DATA = texmf.cnf + AM_TESTS_ENVIRONMENT = LN_S='$(LN_S)'; export LN_S; \ + LT_OBJDIR='$(LT_OBJDIR)'; export LT_OBJDIR; + # +-TESTS = tests/cnfline.test tests/cnfnewline.test tests/cnfnull.test \ ++TESTS = tests/cnfnewline.test tests/cnfnull.test \ + tests/cnfprog.test tests/kpseaccess.test \ + tests/kpsereadlink.test tests/kpsestat.test \ + tests/kpsewhich.test +diff -up texlive-base-20220321/source/texk/web2c/am/texmf.am.dt texlive-base-20220321/source/texk/web2c/am/texmf.am +--- texlive-base-20220321/source/texk/web2c/am/texmf.am.dt 2022-01-11 17:47:10.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/am/texmf.am 2022-04-24 15:03:32.850801263 -0400 +@@ -77,7 +77,7 @@ DISTCLEANFILES += $(nodist_tex_SOURCES) + + # TeX tests + # +-tex_tests = triptest.test tests/write18-quote-test.pl tests/tex-closeout.test ++tex_tests = tests/write18-quote-test.pl tests/tex-closeout.test + triptest.log: tex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + tests/write18-quote-test.log tests/tex-closeout.test: tex$(EXEEXT) + EXTRA_DIST += $(tex_tests) +@@ -205,7 +205,7 @@ DISTCLEANFILES += $(nodist_libmf_a_SOURC + + # Metafont tests + # +-mf_tests = mftraptest.test ++mf_tests = + mftraptest.log: mf$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mf_tests) + if MF +diff -up texlive-base-20220321/source/texk/web2c/eptexdir/am/eptex.am.dt texlive-base-20220321/source/texk/web2c/eptexdir/am/eptex.am +--- texlive-base-20220321/source/texk/web2c/eptexdir/am/eptex.am.dt 2022-01-11 17:47:10.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/eptexdir/am/eptex.am 2022-04-24 15:03:32.850801263 -0400 +@@ -89,7 +89,7 @@ EXTRA_DIST += \ + + # e-pTeX Tests + # +-eptex_tests = eptexdir/eptriptest.test eptexdir/pdfprimitive.test eptexdir/epver.test ++eptex_tests = eptexdir/epver.test + eptexdir/eptriptest.log: eptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + eptexdir/pdfprimitive.log: eptex$(EXEEXT) + eptexdir/epver.log: eptex$(EXEEXT) +diff -up texlive-base-20220321/source/texk/web2c/euptexdir/am/euptex.am.dt texlive-base-20220321/source/texk/web2c/euptexdir/am/euptex.am +--- texlive-base-20220321/source/texk/web2c/euptexdir/am/euptex.am.dt 2022-01-11 17:47:10.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/euptexdir/am/euptex.am 2022-04-24 15:03:32.850801263 -0400 +@@ -90,7 +90,7 @@ EXTRA_DIST += \ + + # e-upTeX Tests + # +-euptex_tests = euptexdir/euptriptest.test euptexdir/pdfprimitive.test euptexdir/eupver.test ++euptex_tests = euptexdir/eupver.test + euptexdir/euptriptest.log: euptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + euptexdir/pdfprimitive.log: euptex$(EXEEXT) + euptexdir/eupver.log: euptex$(EXEEXT) +diff -up texlive-base-20220321/source/texk/web2c/mfluadir/am/mflua.am.dt texlive-base-20220321/source/texk/web2c/mfluadir/am/mflua.am +--- texlive-base-20220321/source/texk/web2c/mfluadir/am/mflua.am.dt 2022-02-18 13:44:19.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/mfluadir/am/mflua.am 2022-04-24 15:03:32.850801263 -0400 +@@ -110,7 +110,7 @@ EXTRA_DIST += \ + + # MFLua tests + # +-mflua_tests = mfluadir/mfluatraptest.test ++mflua_tests = + mfluadir/mfluatraptest.log: mflua$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mflua_tests) + +diff -up texlive-base-20220321/source/texk/web2c/mfluajitdir/am/mfluajit.am.dt texlive-base-20220321/source/texk/web2c/mfluajitdir/am/mfluajit.am +--- texlive-base-20220321/source/texk/web2c/mfluajitdir/am/mfluajit.am.dt 2022-02-18 13:44:19.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/mfluajitdir/am/mfluajit.am 2022-04-24 15:03:32.851801268 -0400 +@@ -106,7 +106,7 @@ EXTRA_DIST += \ + + # MFLuaJIT tests + # +-mfluajit_tests = mfluajitdir/mfluajittraptest.test ++mfluajit_tests = + mfluajitdir/mfluajittraptest.log: mfluajit$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mfluajit_tests) + +diff -up texlive-base-20220321/source/texk/web2c/pdftexdir/am/pdftex.am.dt texlive-base-20220321/source/texk/web2c/pdftexdir/am/pdftex.am +--- texlive-base-20220321/source/texk/web2c/pdftexdir/am/pdftex.am.dt 2022-04-24 15:03:32.851801268 -0400 ++++ texlive-base-20220321/source/texk/web2c/pdftexdir/am/pdftex.am 2022-04-24 15:47:20.351639955 -0400 +@@ -104,7 +104,7 @@ EXTRA_DIST += \ + # pdfTeX tests + # + pdftex_tests = pdftexdir/wprob.test pdftexdir/pdftex.test \ +- pdftexdir/pdfimage.test pdftexdir/expanded.test \ ++ pdftexdir/expanded.test \ + pdftexdir/tests/cnfline.test pdftexdir/tests/partoken.test + + pdftexdir/wprob.log pdftexdir/pdftex.log \ +diff -up texlive-base-20220321/source/texk/web2c/ptexdir/am/ptex.am.dt texlive-base-20220321/source/texk/web2c/ptexdir/am/ptex.am +--- texlive-base-20220321/source/texk/web2c/ptexdir/am/ptex.am.dt 2022-01-11 17:47:10.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/ptexdir/am/ptex.am 2022-04-24 15:03:32.851801268 -0400 +@@ -171,7 +171,7 @@ EXTRA_DIST += \ + + # pTeX Tests + # +-ptex_tests = ptexdir/ptriptest.test ptexdir/pver.test ++ptex_tests = ptexdir/pver.test + ptexdir/ptriptest.log: ptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + ptexdir/pver.log: ptex$(EXEEXT) + pweb_tests = \ +diff -up texlive-base-20220321/source/texk/web2c/uptexdir/am/uptex.am.dt texlive-base-20220321/source/texk/web2c/uptexdir/am/uptex.am +--- texlive-base-20220321/source/texk/web2c/uptexdir/am/uptex.am.dt 2022-01-29 05:40:22.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/uptexdir/am/uptex.am 2022-04-24 15:03:32.851801268 -0400 +@@ -161,7 +161,7 @@ EXTRA_DIST += \ + uptexdir/ChangeLog + + # upTeX Tests +-uptex_tests = uptexdir/uptriptest.test uptexdir/upver.test ++uptex_tests = uptexdir/upver.test + uptexdir/uptriptest.log: uptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + uptexdir/upver.log: uptex$(EXEEXT) + upweb_tests = \ +diff -up texlive-base-20220321/source/texk/web2c/xetexdir/am/xetex.am.dt texlive-base-20220321/source/texk/web2c/xetexdir/am/xetex.am +--- texlive-base-20220321/source/texk/web2c/xetexdir/am/xetex.am.dt 2022-01-11 17:47:10.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/xetexdir/am/xetex.am 2022-04-24 15:03:32.852801273 -0400 +@@ -203,7 +203,6 @@ EXTRA_DIST += \ + # + xetex_tests = \ + xetexdir/xetex-filedump.test \ +- xetexdir/xetex-bug73.test \ + xetexdir/xetex.test + xetexdir/xetex-filedump.log xetexdir/xetex-bug73.log xetexdir/xetex.log: xetex$(EXEEXT) + diff --git a/texlive-2023-gcc15-ftbfs.patch b/texlive-2023-gcc15-ftbfs.patch new file mode 100644 index 0000000000000000000000000000000000000000..e497908d6951efe24a5c2415c80bf694330175f9 --- /dev/null +++ b/texlive-2023-gcc15-ftbfs.patch @@ -0,0 +1,164 @@ +diff -up texlive-base-20230311/source/texk/web2c/luatexdir/tex/textoken.c.me texlive-base-20230311/source/texk/web2c/luatexdir/tex/textoken.c +--- texlive-base-20230311/source/texk/web2c/luatexdir/tex/textoken.c.me 2025-01-23 16:20:29.845574328 +0100 ++++ texlive-base-20230311/source/texk/web2c/luatexdir/tex/textoken.c 2025-01-23 16:23:32.896925830 +0100 +@@ -2665,7 +2665,7 @@ static int do_feedback_pdf(halfword c) + halfword save_def_ref; + halfword save_warning_index; + /*tex temp boolean */ +- boolean bool; ++ boolean bool1; + /*tex first temp string */ + str_number s; + /*tex for use with |set_ff| */ +@@ -2738,7 +2738,7 @@ static int do_feedback_pdf(halfword c) + print_int(pdf_get_obj(static_pdf, obj_type_page, cur_val, false)); + pop_selector; + } else if (scan_keyword("colorstackinit")) { +- bool = scan_keyword("page"); ++ bool1 = scan_keyword("page"); + if (scan_keyword("direct")) + cur_val = direct_always; + else if (scan_keyword("page")) +@@ -2762,7 +2762,7 @@ static int do_feedback_pdf(halfword c) + warning_index = save_warning_index; + scanner_status = save_scanner_status; + str = makecstring(s); +- cur_val = newcolorstack(str, cur_val, bool); ++ cur_val = newcolorstack(str, cur_val, bool1); + free(str); + flush_str(s); + cur_val_level = int_val_level; +@@ -2801,7 +2801,7 @@ void conv_toks(void) + halfword save_def_ref; + halfword save_warning_index; + /*tex temp boolean */ +- boolean bool; ++ boolean bool1; + /*tex first temp string */ + str_number s; + /*tex lua chunk name */ +@@ -2991,11 +2991,11 @@ void conv_toks(void) + save_def_ref = def_ref; + save_warning_index = warning_index; + scan_toks(false, true); +- bool = in_lua_escape; ++ bool1 = in_lua_escape; + in_lua_escape = true; + escstr.s = (unsigned char *) tokenlist_to_cstring(def_ref, false, &l); + escstr.l = (unsigned) l; +- in_lua_escape = bool; ++ in_lua_escape = bool1; + delete_token_ref(def_ref); + def_ref = save_def_ref; + warning_index = save_warning_index; +diff -up texlive-base-20230311/source/texk/web2c/luatexdir/unilib/ustring.c.me texlive-base-20230311/source/texk/web2c/luatexdir/unilib/ustring.c +--- texlive-base-20230311/source/texk/web2c/luatexdir/unilib/ustring.c.me 2025-01-23 16:45:23.164475899 +0100 ++++ texlive-base-20230311/source/texk/web2c/luatexdir/unilib/ustring.c 2025-01-23 16:47:08.044935510 +0100 +@@ -396,7 +396,7 @@ double u_strtod(const unichar_t *str, un + char buf[60], *pt, *ret; + const unichar_t *upt; + double val; +- extern double strtod(); /* Please don't delete this, not all of us have good ansi headers */ ++ //extern double strtod(); /* Please don't delete this, not all of us have good ansi headers */ + + for ( upt=str, pt=buf; *upt<128 && *upt!='\0' && pt-buffrom->nextcp; + spline->from->nextcp = spline->from->prevcp; + spline->from->prevcp = tp; +- bool = spline->from->nonextcp; ++ bool1 = spline->from->nonextcp; + spline->from->nonextcp = spline->from->noprevcp; +- spline->from->noprevcp = bool; +- bool = spline->from->nextcpdef; ++ spline->from->noprevcp = bool1; ++ bool1 = spline->from->nextcpdef; + spline->from->nextcpdef = spline->from->prevcpdef; +- spline->from->prevcpdef = bool; ++ spline->from->prevcpdef = bool1; + + for ( ; spline!=NULL && spline!=first; spline=next ) { + next = spline->to->next; +@@ -2076,12 +2076,12 @@ return( spl ); /* Only one point, reve + tp = spline->to->nextcp; + spline->to->nextcp = spline->to->prevcp; + spline->to->prevcp = tp; +- bool = spline->to->nonextcp; ++ bool1 = spline->to->nonextcp; + spline->to->nonextcp = spline->to->noprevcp; +- spline->to->noprevcp = bool; +- bool = spline->to->nextcpdef; ++ spline->to->noprevcp = bool1; ++ bool1 = spline->to->nextcpdef; + spline->to->nextcpdef = spline->to->prevcpdef; +- spline->to->prevcpdef = bool; ++ spline->to->prevcpdef = bool1; + } + + temp = spline->to; +diff -up texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/libs/woff2/include/woff2/output.h.me texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/libs/woff2/include/woff2/output.h +--- texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/libs/woff2/include/woff2/output.h.me 2025-01-23 17:53:11.940292061 +0100 ++++ texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/libs/woff2/include/woff2/output.h 2025-01-23 18:00:25.679229974 +0100 +@@ -13,6 +13,7 @@ + #include + #include + #include ++#include + + namespace woff2 { + +diff -up texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/EPSFile.hpp.me texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/EPSFile.hpp +--- texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/EPSFile.hpp.me 2025-01-23 18:01:42.194015062 +0100 ++++ texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/EPSFile.hpp 2025-01-23 18:02:08.019619304 +0100 +@@ -21,6 +21,7 @@ + #ifndef EPSFILE_HPP + #define EPSFILE_HPP + ++#include + #include + #include + #include +diff -up texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.cpp.me texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.cpp +--- texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.cpp.me 2025-01-23 18:03:21.502336489 +0100 ++++ texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.cpp 2025-01-23 18:03:28.253494025 +0100 +@@ -18,6 +18,7 @@ + ** along with this program; if not, see . ** + *************************************************************************/ + ++#include + #include + #include + #include +diff -up texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/utility.hpp.me texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/utility.hpp +--- texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/utility.hpp.me 2025-01-23 17:54:42.338405708 +0100 ++++ texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/utility.hpp 2025-01-23 17:58:32.140551634 +0100 +@@ -32,6 +32,7 @@ + #include + #include + #include ++#include + + namespace math { + diff --git a/texlive-20210325-texinfo-path-fix.patch b/texlive-20230311-texinfo-path-fix.patch similarity index 37% rename from texlive-20210325-texinfo-path-fix.patch rename to texlive-20230311-texinfo-path-fix.patch index 73456a8d4e0dbf368a47de5a84a5deff20269660..cd974ed10d34a429f226608eadb65362a2687635 100644 --- a/texlive-20210325-texinfo-path-fix.patch +++ b/texlive-20230311-texinfo-path-fix.patch @@ -1,22 +1,44 @@ -diff -up texlive-20210325-source/texk/kpathsea/texmf.cnf.texinfo-fix texlive-20210325-source/texk/kpathsea/texmf.cnf ---- a/texlive-20210325-source/texk/kpathsea/texmf.cnf.texinfo-fix 2021-05-06 17:53:44.616943275 -0400 -+++ a/texlive-20210325-source/texk/kpathsea/texmf.cnf 2021-05-06 17:55:40.097662674 -0400 +diff -up texlive-base-20230311/source/texk/kpathsea/texmf.cnf.texinfo-fix texlive-base-20230311/source/texk/kpathsea/texmf.cnf +--- texlive-base-20230311/source/texk/kpathsea/texmf.cnf.texinfo-fix 2023-05-25 10:49:55.510891474 -0400 ++++ texlive-base-20230311/source/texk/kpathsea/texmf.cnf 2023-05-25 11:44:59.261966579 -0400 +@@ -59,7 +59,7 @@ + % SELFAUTOPARENT (its grandparent = /usr/local/texlive/YYYY), and + % SELFAUTOGRANDPARENT (its great-grandparent = /usr/local/texlive). + % Sorry for the off-by-one-generation names. +-TEXMFROOT = $SELFAUTOPARENT ++TEXMFROOT = /usr/share/texlive + + % The main tree of distributed packages and programs: + TEXMFDIST = $TEXMFROOT/texmf-dist +@@ -69,10 +69,10 @@ TEXMFDIST = $TEXMFROOT/texmf-dist + TEXMFMAIN = $TEXMFDIST + + % Local additions to the distribution trees. +-TEXMFLOCAL = $SELFAUTOGRANDPARENT/texmf-local ++TEXMFLOCAL = /usr/share/texlive/texmf-local + + % TEXMFSYSVAR, where *-sys store cached runtime data. +-TEXMFSYSVAR = $TEXMFROOT/texmf-var ++TEXMFSYSVAR = /var/lib/texmf + + % TEXMFSYSCONFIG, where *-sys store configuration data. + TEXMFSYSCONFIG = $TEXMFROOT/texmf-config @@ -83,6 +83,9 @@ TEXMFSYSCONFIG = $TEXMFROOT/texmf-config % to %USERPROFILE% on Windows, $HOME otherwise. TEXMFHOME = ~/texmf +% Texinfo on Fedora lives out of $TEXMFROOT -+TEXINFOHOME = $SELFAUTODIR/share/texmf ++TEXINFOHOME = /usr/share/texmf + % TEXMFVAR, where texconfig/updmap/fmtutil store cached runtime data. - TEXMFVAR = ~/.texlive2021/texmf-var + TEXMFVAR = ~/.texlive2023/texmf-var @@ -108,7 +111,7 @@ TEXMFAUXTREES = {} % The odd-looking $TEXMFAUXTREES$TEXMF... construct is so that if no auxtree is % ever defined (the 99% common case), no extra elements will be added to % the search paths. tlmgr takes care to end any value with a trailing comma. -TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST} -+TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,$TEXINFOHOME,!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST} ++TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,!!$TEXINFOHOME,!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST} % Where to look for, and where mktexlsr creates, ls-R files. By default, % this is all and only the !! elements of TEXMF, so that mktexlsr does not diff --git a/texlive-20250308-source.tar.xz b/texlive-20250308-source.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..f4c3de9134064598448f6ee67d5dc545801d4472 --- /dev/null +++ b/texlive-20250308-source.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fffdb1a3d143c177a4398a2229a40d6a88f18098e5f6dcfd57648c9f2417490f +size 111136556 diff --git a/texlive-base-20180414-disable-omegafonts-check-test.patch b/texlive-base-20180414-disable-omegafonts-check-test.patch new file mode 100644 index 0000000000000000000000000000000000000000..1879359190ab2709101dde8f0ad21ddabcec9f97 --- /dev/null +++ b/texlive-base-20180414-disable-omegafonts-check-test.patch @@ -0,0 +1,12 @@ +diff -up texlive-base-20180414/source/texk/web2c/omegafonts/check.test.disabletest texlive-base-20180414/source/texk/web2c/omegafonts/check.test +--- texlive-base-20180414/source/texk/web2c/omegafonts/check.test.disabletest 2018-10-04 13:24:17.965126655 -0400 ++++ texlive-base-20180414/source/texk/web2c/omegafonts/check.test 2018-10-04 13:24:26.068945230 -0400 +@@ -4,6 +4,8 @@ + # Copyright 2014, 2015 Peter Breitenlohner + # You may freely use, modify and/or distribute this file. + ++exit 0 ++ + test -d tests || mkdir -p tests + + TEXMFCNF=$srcdir/../../kpathsea diff --git a/texlive-base-20210325-configure-poppler-xpdf-fix.patch b/texlive-base-20210325-configure-poppler-xpdf-fix.patch new file mode 100644 index 0000000000000000000000000000000000000000..61b144c8ca90b2495128ed2c4e73f00272b2a5f7 --- /dev/null +++ b/texlive-base-20210325-configure-poppler-xpdf-fix.patch @@ -0,0 +1,159 @@ +diff -up texlive-base-20210325/source/configure.poppler-xpdf-fix texlive-base-20210325/source/configure +--- texlive-base-20210325/source/configure.poppler-xpdf-fix 2021-03-24 17:28:22.000000000 -0400 ++++ texlive-base-20210325/source/configure 2021-05-10 15:21:08.254142588 -0400 +@@ -21497,7 +21497,27 @@ if test "x$with_mpfr_libdir" != x && tes + MPFR_LIBS="-L$with_mpfr_libdir $MPFR_LIBS" + fi + +-: "kpse_xpdf_system_flags - no-op" ++if $PKG_CONFIG poppler --atleast-version=0.30; then ++ POPPLER_INCLUDES=`$PKG_CONFIG poppler --cflags` ++ POPPLER_LIBS=`$PKG_CONFIG poppler --libs` ++elif test "x$need_poppler:$with_system_poppler" = xyes:yes; then ++ as_fn_error $? "did not find poppler 0.30 or better" "$LINENO" 5 ++fi ++ ++POPPLER_VERSION='-DPOPPLER_VERSION=\"'`$PKG_CONFIG poppler --modversion`'\"' ++POPPLER_INCLUDES="$POPPLER_VERSION $POPPLER_INCLUDES" ++ ++if $PKG_CONFIG poppler --atleast-version=0.12; then ++ XPDF_INCLUDES=`$PKG_CONFIG poppler --cflags` ++ XPDF_LIBS=`$PKG_CONFIG poppler --libs` ++elif test "x$need_xpdf:$with_system_xpdf" = xyes:yes; then ++ as_fn_error $? "did not find poppler 0.12 or better" "$LINENO" 5 ++fi ++ ++POPPLER_VERSION='-DPOPPLER_VERSION=\"'`$PKG_CONFIG poppler --modversion`'\"' ++XPDF_INCLUDES="$POPPLER_VERSION $XPDF_INCLUDES" ++ ++# : "kpse_xpdf_system_flags - no-op" + + if $PKG_CONFIG zziplib --atleast-version=0.12; then + ZZIPLIB_INCLUDES=`$PKG_CONFIG zziplib --cflags` +diff -up texlive-base-20210325/source/texk/web2c/configure.poppler-xpdf-fix texlive-base-20210325/source/texk/web2c/configure +--- texlive-base-20210325/source/texk/web2c/configure.poppler-xpdf-fix 2021-02-16 22:03:54.000000000 -0500 ++++ texlive-base-20210325/source/texk/web2c/configure 2021-05-10 15:21:08.256142617 -0400 +@@ -25500,9 +25500,21 @@ fi + ##tldbg _KPSE_LIB_FLAGS: Setup xpdf (-lxpdf) flags. + echo 'tldbg:_KPSE_LIB_FLAGS called: libdir=xpdf, libname=xpdf, options=, tlincl=-DPDF_PARSER_ONLY -IBLD/libs/xpdf -IBLD/libs/xpdf/goo -IBLD/libs/xpdf/xpdf, tllib=BLD/libs/xpdf/libxpdf.a, tlextra=, rebuildsrcdeps=, rebuildblddeps=${top_builddir}/../../libs/xpdf/xpdf/Stream.h.' >&5 + ##tldbg _KPSE_LIB_FLAGS_TL: xpdf (xpdf) . +-: "kpse_xpdf_options - no-op" ++# Check whether --with-system-xpdf was given. ++if test "${with_system_xpdf+set}" = set; then : ++ withval=$with_system_xpdf; ++fi ++ + if test "x$with_system_xpdf" = xyes; then +- : "kpse_xpdf_system_flags - no-op" ++ if $PKG_CONFIG poppler --atleast-version=0.12; then ++ XPDF_INCLUDES=`$PKG_CONFIG poppler --cflags` ++ XPDF_LIBS=`$PKG_CONFIG poppler --libs` ++elif test "x$need_xpdf:$with_system_xpdf" = xyes:yes; then ++ as_fn_error $? "did not find poppler 0.12 or better" "$LINENO" 5 ++fi ++ ++POPPLER_VERSION='-DPOPPLER_VERSION=\"'`$PKG_CONFIG poppler --modversion`'\"' ++XPDF_INCLUDES="$POPPLER_VERSION $XPDF_INCLUDES" + else + XPDF_INCLUDES="-DPDF_PARSER_ONLY -I$kpse_BLD/libs/xpdf -I$kpse_BLD/libs/xpdf/goo -I$kpse_BLD/libs/xpdf/xpdf" + XPDF_LIBS="$kpse_BLD/libs/xpdf/libxpdf.a" +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-xpdf-fix texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-xpdf-fix 2021-05-10 15:56:50.770034767 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-10 16:05:07.939283063 -0400 +@@ -49,10 +49,16 @@ POPPLER_VERSION should be defined. + #include + #include + +-#include +-#include +-#include +-#include ++#ifdef POPPLER_VERSION ++#include ++#include ++#include ++#include ++#include ++#define GString GooString ++#else ++#error POPPLER_VERSION should be defined. ++#endif + #include + + #include "Object.h" +@@ -676,7 +682,7 @@ static void writeEncodings() + } + for (r = encodingList; r != 0; r = n) { + n = r->next; +- delete r->font; ++ r->font->decRefCnt(); + delete r; + } + } +@@ -715,7 +721,7 @@ read_pdf_info(char *image_name, char *pa + PdfDocument *pdf_doc; + Page *page; + const PDFRectangle *pagebox; +- float pdf_version_found, pdf_version_wanted; ++ int pdf_major_version_found, pdf_minor_version_found; + // initialize + if (!isInit) { + globalParams = std::unique_ptr(new GlobalParams()); +@@ -730,17 +736,18 @@ read_pdf_info(char *image_name, char *pa + // this works only for PDF 1.x -- but since any versions of PDF newer + // than 1.x will not be backwards compatible to PDF 1.x, pdfTeX will + // then have to changed drastically anyway. +- pdf_version_found = pdf_doc->doc->getPDFVersion(); +- pdf_version_wanted = major_pdf_version_wanted + (minor_pdf_version_wanted * 0.1); +- if (pdf_version_found > pdf_version_wanted + 0.01) { +- char msg[] = +- "PDF inclusion: found PDF version <%.1f>, but at most version <%.1f> allowed"; ++ pdf_major_version_found = pdf_doc->doc->getPDFMajorVersion(); ++ pdf_minor_version_found = pdf_doc->doc->getPDFMinorVersion(); ++ if ((pdf_major_version_found > major_pdf_version_wanted) ++ || (pdf_minor_version_found > minor_pdf_version_wanted)) { ++ const char *msg = ++ "PDF inclusion: found PDF version <%d.%d>, but at most version <%d.%d> allowed"; + if (pdf_inclusion_errorlevel > 0) { +- pdftex_fail(msg, pdf_version_found, pdf_version_wanted); ++ pdftex_fail(msg, pdf_major_version_found, pdf_minor_version_found, major_pdf_version_wanted, minor_pdf_version_wanted); + } else if (pdf_inclusion_errorlevel < 0) { + ; /* do nothing */ + } else { /* = 0, give warning */ +- pdftex_warn(msg, pdf_version_found, pdf_version_wanted); ++ pdftex_warn(msg, pdf_major_version_found, pdf_minor_version_found, major_pdf_version_wanted, minor_pdf_version_wanted); + } + } + epdf_num_pages = pdf_doc->doc->getCatalog()->getNumPages(); +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-xpdf-fix texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-xpdf-fix 2021-05-10 15:26:43.545060694 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-10 16:06:58.614896618 -0400 +@@ -41,10 +41,15 @@ POPPLER_VERSION should be defined. + #include + #include + +-#include +-#include +-#include +-#include ++#ifdef POPPLER_VERSION ++#define GString GooString ++#include ++#include ++#include ++#include ++#else ++#error POPPLER_VERSION should be defined. ++#endif + #include + + #include "Object.h" +@@ -183,7 +188,7 @@ int main(int argc, char *argv[]) + if (n == e->gen) + localOffset = obj2.getInt(); + } +-#if defined(XPDF304) ++#if defined(POPPLER_VERSION) || defined(XPDF304) + while (str->getChar() != EOF) ; + #else /* xpdf 4.00 */ + lexer->skipToEOF(); diff --git a/texlive-base-20210325-mendex-weird-arch-fixes.patch b/texlive-base-20210325-mendex-weird-arch-fixes.patch deleted file mode 100644 index 9592bb381ec37de37aeaaf9f3b73d0a4fc226300..0000000000000000000000000000000000000000 --- a/texlive-base-20210325-mendex-weird-arch-fixes.patch +++ /dev/null @@ -1,168 +0,0 @@ -diff -U0 texlive-20210325-source/texk/mendexk/ChangeLog.archfix texlive-20210325-source/texk/mendexk/ChangeLog ---- a/texlive-20210325-source/texk/mendexk/ChangeLog.archfix 2021-05-27 15:01:46.888501972 -0400 -+++ a/texlive-20210325-source/texk/mendexk/ChangeLog 2021-05-27 15:02:10.669627643 -0400 -@@ -0,0 +1,13 @@ -+2021-05-09 Karl Berry -+ -+ * mendex.h (page.attr): use int, not char, since we do signed -+ comparison and aarch64 apparently treats char as unsigned. -+ (index.words): use unsigned char for consistency. -+ * fwrite.c (printpage): factor out beginning/end page values. -+ * tests/rangetwo.idx, -+ * tests/rangetwo.ind, -+ * tests/rangetwo.ist: new simple test. -+ * tests/mendex.test: run the rangetwo test. -+ Report from Johannes Hielscher, -+ https://tug.org/pipermail/tlbuild/2021q1/004873.html. -+ -diff -up texlive-20210325-source/texk/mendexk/fwrite.c.archfix texlive-20210325-source/texk/mendexk/fwrite.c ---- a/texlive-20210325-source/texk/mendexk/fwrite.c.archfix 2021-05-27 15:02:37.867771347 -0400 -+++ a/texlive-20210325-source/texk/mendexk/fwrite.c 2021-05-27 15:07:00.875160968 -0400 -@@ -326,7 +326,11 @@ static void printpage(struct index *ind, - for(j=0;jj) { -- if (pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0])==pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])) { -+ int epage = pnumconv(ind[num].p[cc].page, -+ ind[num].p[cc].attr[0]); -+ int bpage = pnumconv(ind[num].p[j].page, -+ ind[num].p[j].attr[0]); -+ if (epage==bpage) { - j=cc-1; - continue; - } -@@ -337,20 +341,18 @@ static void printpage(struct index *ind, - if (strlen(ind[num].p[j].enc)>0) { - SPRINTF(buff,"%s%s%s",encap_prefix,ind[num].p[j].enc,encap_infix); - } -- if (strlen(suffix_3p)>0 && (pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])-pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0]))==2) { -- SAPPENDF(buff,"%s",ind[num].p[j].page); -+ /* print beginning of range */ -+ SAPPENDF(buff,"%s",ind[num].p[j].page); -+ if (strlen(suffix_3p)>0 && (epage-bpage)==2) { - SAPPENDF(buff,"%s",suffix_3p); - } -- else if (strlen(suffix_mp)>0 && (pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])-pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0]))>=2) { -- SAPPENDF(buff,"%s",ind[num].p[j].page); -+ else if (strlen(suffix_mp)>0 && (epage-bpage)>=2) { - SAPPENDF(buff,"%s",suffix_mp); - } -- else if (strlen(suffix_2p)>0 && (pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])-pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0]))==1) { -- SAPPENDF(buff,"%s",ind[num].p[j].page); -+ else if (strlen(suffix_2p)>0 && (epage-bpage)==1) { - SAPPENDF(buff,"%s",suffix_2p); - } - else { -- SAPPENDF(buff,"%s",ind[num].p[j].page); - SAPPENDF(buff,"%s",delim_r); - SAPPENDF(buff,"%s",ind[num].p[cc].page); - } -diff -up texlive-20210325-source/texk/mendexk/mendex.h.archfix texlive-20210325-source/texk/mendexk/mendex.h ---- a/texlive-20210325-source/texk/mendexk/mendex.h.archfix 2021-05-27 15:07:31.173321042 -0400 -+++ a/texlive-20210325-source/texk/mendexk/mendex.h 2021-05-27 15:07:50.429422834 -0400 -@@ -14,12 +14,12 @@ - struct page { - char *page; - char *enc; -- char attr[3]; -+ int attr[3]; - }; - - struct index { - int num; -- char words; -+ unsigned char words; - char *org[3]; - char *dic[3]; - char *idx[3]; -diff -up texlive-20210325-source/texk/mendexk/tests/mendex.test.archfix texlive-20210325-source/texk/mendexk/tests/mendex.test ---- a/texlive-20210325-source/texk/mendexk/tests/mendex.test.archfix 2021-05-27 15:08:12.848541283 -0400 -+++ a/texlive-20210325-source/texk/mendexk/tests/mendex.test 2021-05-27 15:13:28.110189451 -0400 -@@ -1,6 +1,6 @@ - #! /bin/sh -vx - # $Id: mendex.test 58575 2021-03-21 08:54:52Z takuji $ --# Copyright 2017 Karl Berry -+# Copyright 2017-2021 Karl Berry - # Copyright 2013 Peter Breitenlohner - # You may freely use, modify and/or distribute this file. - -@@ -24,13 +24,21 @@ cat $srcdir/tests/uni.idx | \ - >uni.ind2 2>uni.ilg2 \ - && diff $srcdir/tests/uni.ind uni.ind2 || exit 1 - --# test for page_precedence --./mendex -s $srcdir/tests/pprec0.ist $srcdir/tests/pprecA.idx -o pprecA-0.ind1 -t pprecA-0.ilg \ -+# test for two-element range suffix_2p -+./mendex -s $srcdir/tests/rangetwo.ist $srcdir/tests/rangetwo.idx \ -+ -o rangetwo.ind1 -t rangetwo.ilg \ -+ && diff $srcdir/tests/rangetwo.ind rangetwo.ind1 || exit 1 -+ -+# test for page_precedence and suffix_3p -+./mendex -s $srcdir/tests/pprec0.ist $srcdir/tests/pprecA.idx \ -+ -o pprecA-0.ind1 -t pprecA-0.ilg \ - && diff $srcdir/tests/pprecA-0.ind pprecA-0.ind1 || exit 1 - --./mendex -s $srcdir/tests/pprec1.ist $srcdir/tests/pprecA.idx -o pprecA-1.ind1 -t pprecA-1.ilg \ -+./mendex -s $srcdir/tests/pprec1.ist $srcdir/tests/pprecA.idx \ -+ -o pprecA-1.ind1 -t pprecA-1.ilg \ - && diff $srcdir/tests/pprecA-1.ind pprecA-1.ind1 || exit 1 - --./mendex -s $srcdir/tests/pprec2.ist $srcdir/tests/pprecA.idx -o pprecA-2.ind1 -t pprecA-2.ilg \ -+./mendex -s $srcdir/tests/pprec2.ist $srcdir/tests/pprecA.idx \ -+ -o pprecA-2.ind1 -t pprecA-2.ilg \ - && diff $srcdir/tests/pprecA-2.ind pprecA-2.ind1 || exit 1 - -diff -up a/texlive-20210325-source/texk/mendexk/tests/rangetwo.idx.archfix a/texlive-20210325-source/texk/mendexk/tests/rangetwo.idx ---- a/texlive-20210325-source/texk/mendexk/tests/rangetwo.idx.archfix 2021-05-27 15:14:09.048403077 -0400 -+++ a/texlive-20210325-source/texk/mendexk/tests/rangetwo.idx 2021-05-27 15:14:03.416373688 -0400 -@@ -0,0 +1,2 @@ -+\indexentry{entryA}{1} -+\indexentry{entryA}{2} -diff -up texlive-20210325-source/texk/mendexk/tests/rangetwo.ind.archfix texlive-20210325-source/texk/mendexk/tests/rangetwo.ind ---- a/texlive-20210325-source/texk/mendexk/tests/rangetwo.ind.archfix 2021-05-27 15:14:30.601515549 -0400 -+++ a/texlive-20210325-source/texk/mendexk/tests/rangetwo.ind 2021-05-27 15:14:59.970668807 -0400 -@@ -0,0 +1,5 @@ -+\begin{theindex} -+ -+ \item entryA, 1[[sfx2p]] -+ -+\end{theindex} -diff -up texlive-20210325-source/texk/mendexk/tests/rangetwo.ist.archfix texlive-20210325-source/texk/mendexk/tests/rangetwo.ist ---- a/texlive-20210325-source/texk/mendexk/tests/rangetwo.ist.archfix 2021-05-27 15:15:24.712797920 -0400 -+++ a/texlive-20210325-source/texk/mendexk/tests/rangetwo.ist 2021-05-27 15:15:51.412937250 -0400 -@@ -0,0 +1,2 @@ -+suffix_2p "[[sfx2p]]" -+ -diff -U0 texlive-20210325-source/texk/upmendex/ChangeLog.archfix texlive-20210325-source/texk/upmendex/ChangeLog ---- a/texlive-20210325-source/texk/upmendex/ChangeLog.archfix 2021-05-27 14:58:11.836365567 -0400 -+++ a/texlive-20210325-source/texk/upmendex/ChangeLog 2021-05-27 14:59:42.613845327 -0400 -@@ -0,0 +1,11 @@ -+2021-05-09 Karl Berry -+ * mendex.h (page.attr): use int, not char, since we do signed -+ comparison and aarch64 apparently treats char as unsigned. -+ (index.words): use unsigned char for consistency. -+ -+ Same fixes as for mendex; see mendexk/ChangeLog. -+ Report from Johannes Hielscher, -+ https://tug.org/pipermail/tlbuild/2021q1/004873.html -+ and follow-up: -+ https://tug.org/pipermail/tlbuild/2021q2/004911.html -+ -diff -up texlive-20210325-source/texk/upmendex/mendex.h.archfix texlive-20210325-source/texk/upmendex/mendex.h ---- a/texlive-20210325-source/texk/upmendex/mendex.h.archfix 2021-05-27 14:59:52.774899013 -0400 -+++ a/texlive-20210325-source/texk/upmendex/mendex.h 2021-05-27 15:01:33.381430577 -0400 -@@ -14,12 +14,12 @@ - struct page { - char *page; - char *enc; -- char attr[3]; -+ int attr[3]; - }; - - struct index { - int num; -- char words; -+ unsigned char words; - UChar *dic[3]; - UChar *org[3]; - UChar *idx[3]; diff --git a/texlive-base-20210325-no-setpdfwrite.patch b/texlive-base-20210325-no-setpdfwrite.patch deleted file mode 100644 index e631ea519f122c18049d28208a12aca0239add61..0000000000000000000000000000000000000000 --- a/texlive-base-20210325-no-setpdfwrite.patch +++ /dev/null @@ -1,10 +0,0 @@ -diff -up texlive-20210325-source/utils/asymptote/patches/dvipdf.no-setpdfwrite texlive-20210325-source/utils/asymptote/patches/dvipdf ---- a/texlive-20210325-source/utils/asymptote/patches/dvipdf.no-setpdfwrite 2021-06-21 10:05:10.392585479 -0400 -+++ a/texlive-20210325-source/utils/asymptote/patches/dvipdf 2021-06-21 10:05:30.969698895 -0400 -@@ -50,5 +50,5 @@ fi - - # We have to include the options twice because -I only takes effect if it - # appears before other options. --exec dvips $DVIPSOPTIONS -q -f "$infile" | $GS_EXECUTABLE $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sstdout=%stderr -sOutputFile="$outfile" $OPTIONS -c .setpdfwrite - -+exec dvips $DVIPSOPTIONS -q -f "$infile" | $GS_EXECUTABLE $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sstdout=%stderr -sOutputFile="$outfile" $OPTIONS -c 3000000 setvmthreshold - - diff --git a/texlive-base-20210325-pdftoepdf-fix-crash.patch b/texlive-base-20210325-pdftoepdf-fix-crash.patch new file mode 100644 index 0000000000000000000000000000000000000000..b19d48337c95dfa2bd8c80b85f77beca5ab458bd --- /dev/null +++ b/texlive-base-20210325-pdftoepdf-fix-crash.patch @@ -0,0 +1,34 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.debug texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.debug 2022-01-20 10:25:58.454233201 -0500 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2022-01-20 12:57:04.241513707 -0500 +@@ -962,21 +962,30 @@ A change + does not improve the situation. + The changes below seem to work fine. + */ ++ if (page->getGroup() != NULL) { ++ groupDict = Object(page->getGroup()); ++ } else { ++ pdftex_fail("PDF inclusion: getGroup failed"); ++ } ++/* + // begin modification + groupDict = pageDict->lookup("Group"); + Dict *dic1 = page->getGroup(); + Dict *dic2 = groupDict.getDict(); + // replace dic2 in groupDict with dic1 + l = dic2->getLength(); ++ pdftex_warn("dic2 length is %d", l); + for (i = 0; i < l; i++) { + groupDict.dictRemove(dic2->getKey(i)); + } + l = dic1->getLength(); ++ pdftex_warn("dic1 length is %d", l); + for (i = 0; i < l; i++) { + groupDict.dictAdd(dic1->getKey(i), + dic1->getValNF(i).copy()); + } + // end modification ++*/ + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); + } + } diff --git a/texlive-base-20210325-poppler-22.01.0.patch b/texlive-base-20210325-poppler-22.01.0.patch new file mode 100644 index 0000000000000000000000000000000000000000..483eb6a8c4aa5016e271abb250c320ac554184c6 --- /dev/null +++ b/texlive-base-20210325-poppler-22.01.0.patch @@ -0,0 +1,49 @@ +diff -up texlive-base-20210325/source/texk/web2c/Makefile.in.poppler22 texlive-base-20210325/source/texk/web2c/Makefile.in +--- texlive-base-20210325/source/texk/web2c/Makefile.in.poppler22 2022-01-15 16:57:15.020632269 -0500 ++++ texlive-base-20210325/source/texk/web2c/Makefile.in 2022-01-15 17:00:20.852711238 -0500 +@@ -4573,7 +4573,7 @@ ttf2afm_tests = pdftexdir/ttf2afm.test + # Force Automake to use CXXLD for linking + nodist_EXTRA_pdftosrc_SOURCES = dummy.cxx + pdftosrc_CPPFLAGS = $(pdftex_cppflags) +-pdftosrc_CXXFLAGS = $(WARNING_CXXFLAGS) ++pdftosrc_CXXFLAGS = $(WARNING_CXXFLAGS) -std=c++17 + pdftosrc_SOURCES = pdftexdir/pdftosrc.cc + pdftosrc_LDADD = $(pdftex_ldadd) $(LDADD) + pdftosrc_DEPENDENCIES = $(pdftex_dependencies) +@@ -18343,7 +18343,7 @@ xetex-xetex-pool.obj: xetex-pool.c + @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + + pdftexdir/libpdftex_a-pdftoepdf.o: pdftexdir/pdftoepdf.cc +-@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpdftex_a_CPPFLAGS) $(CPPFLAGS) $(libpdftex_a_CXXFLAGS) $(CXXFLAGS) -MT pdftexdir/libpdftex_a-pdftoepdf.o -MD -MP -MF pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Tpo -c -o pdftexdir/libpdftex_a-pdftoepdf.o `test -f 'pdftexdir/pdftoepdf.cc' || echo '$(srcdir)/'`pdftexdir/pdftoepdf.cc ++@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpdftex_a_CPPFLAGS) $(CPPFLAGS) -std=c++17 $(libpdftex_a_CXXFLAGS) $(CXXFLAGS) -MT pdftexdir/libpdftex_a-pdftoepdf.o -MD -MP -MF pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Tpo -c -o pdftexdir/libpdftex_a-pdftoepdf.o `test -f 'pdftexdir/pdftoepdf.cc' || echo '$(srcdir)/'`pdftexdir/pdftoepdf.cc + @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Tpo pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Po + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='pdftexdir/pdftoepdf.cc' object='pdftexdir/libpdftex_a-pdftoepdf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler22 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler22 2022-01-14 15:01:29.811105995 -0500 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2022-01-14 15:01:29.831106120 -0500 +@@ -964,17 +964,17 @@ The changes below seem to work fine. + */ + // begin modification + groupDict = pageDict->lookup("Group"); +- const Dict& dic1 = page->getGroup(); +- const Dict& dic2 = groupDict.getDict(); ++ Dict *dic1 = page->getGroup(); ++ Dict *dic2 = groupDict.getDict(); + // replace dic2 in groupDict with dic1 +- l = dic2.getLength(); ++ l = dic2->getLength(); + for (i = 0; i < l; i++) { +- groupDict.dictRemove(dic2.getKey(i)); ++ groupDict.dictRemove(dic2->getKey(i)); + } +- l = dic1.getLength(); ++ l = dic1->getLength(); + for (i = 0; i < l; i++) { +- groupDict.dictAdd(dic1.getKey(i), +- dic1.getValNF(i).copy()); ++ groupDict.dictAdd(dic1->getKey(i), ++ dic1->getValNF(i).copy()); + } + // end modification + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); diff --git a/texlive-base-20200327-out-of-memory.patch b/texlive-base-20220321-out-of-memory.patch similarity index 39% rename from texlive-base-20200327-out-of-memory.patch rename to texlive-base-20220321-out-of-memory.patch index e7a4a90b7c0ed5d0a6b9a290a2d91fec8c2146ab..645e4275bc380f0383242ae49029416e347b85a2 100644 --- a/texlive-base-20200327-out-of-memory.patch +++ b/texlive-base-20220321-out-of-memory.patch @@ -1,9 +1,9 @@ -diff -up texlive-20210325-source/texk/kpathsea/texmf.cnf.me texlive-20210325-source/texk/kpathsea/texmf.cnf ---- a/texlive-20210325-source/texk/kpathsea/texmf.cnf.me 2020-09-23 09:35:26.729192291 +0200 -+++ a/texlive-20210325-source/texk/kpathsea/texmf.cnf 2020-09-23 09:36:01.849651692 +0200 -@@ -786,7 +786,7 @@ texmf_casefold_search = 1 - % For some xy-pic samples, you may need as much as 700000 words of memory. - % For the vast majority of documents, 60000 or less will do. +diff -up texlive-base-20220321/source/texk/kpathsea/texmf.cnf.out_of_memory texlive-base-20220321/source/texk/kpathsea/texmf.cnf +--- texlive-base-20220321/source/texk/kpathsea/texmf.cnf.out_of_memory 2022-04-24 15:50:46.472711270 -0400 ++++ texlive-base-20220321/source/texk/kpathsea/texmf.cnf 2022-04-24 15:51:47.213026575 -0400 +@@ -789,7 +789,7 @@ texmf_casefold_search = 1 + % To increase space for boxes (as might be needed by, e.g., PiCTeX), + % increase extra_mem_bot. % -main_memory = 5000000 % words of inimemory available; also applies to inimf&mp +main_memory = 6000000 % words of inimemory available; also applies to inimf&mp diff --git a/texlive-base-20220321-pdf-header-order-fix.patch b/texlive-base-20220321-pdf-header-order-fix.patch new file mode 100644 index 0000000000000000000000000000000000000000..14ef1d074cbd366b7b51015cb98699140d3adf9f --- /dev/null +++ b/texlive-base-20220321-pdf-header-order-fix.patch @@ -0,0 +1,47 @@ +diff -up texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc.header-order-fix texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc.header-order-fix 2023-01-31 12:53:39.214112015 -0500 ++++ texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc 2023-01-31 12:54:07.175413160 -0500 +@@ -17,6 +17,11 @@ You should have received a copy of the G + with this program. If not, see . + */ + ++/* ++Load aconf.h first to ensure _FILE_OFFSET_BITS is factored in. ++*/ ++#include ++ + /* Do this early in order to avoid a conflict between + MINGW32 defining 'boolean' as 'unsigned char' and + defining Pascal's boolean as 'int'. +@@ -31,7 +36,6 @@ with this program. If not, see + #include + +-#include + #include + #include + #include +diff -up texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc.header-order-fix texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc.header-order-fix 2023-01-31 12:41:21.483166562 -0500 ++++ texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc 2023-01-31 12:53:15.185853229 -0500 +@@ -16,6 +16,12 @@ GNU General Public License for more deta + You should have received a copy of the GNU General Public License along + with this program. If not, see . + */ ++ ++/* ++Load aconf.h first to ensure _FILE_OFFSET_BITS is factored in. ++*/ ++#include ++ + #include + + #include +@@ -24,7 +30,6 @@ with this program. If not, see + #include + +-#include + #include + #include + #include diff --git a/texlive-base-20220321-poppler-22.08.0.patch b/texlive-base-20220321-poppler-22.08.0.patch new file mode 100644 index 0000000000000000000000000000000000000000..1385077d0714de551e2021f62a12d74a67dca27d --- /dev/null +++ b/texlive-base-20220321-poppler-22.08.0.patch @@ -0,0 +1,123 @@ +diff -up texlive-base-20220321/source/configure.poppler-22.08.0 texlive-base-20220321/source/configure +--- texlive-base-20220321/source/configure.poppler-22.08.0 2022-10-31 09:48:21.875540925 -0400 ++++ texlive-base-20220321/source/configure 2022-10-31 09:50:13.731220862 -0400 +@@ -23545,7 +23545,7 @@ printf %s "checking requested system \`x + int + main (void) + { +-GfxFont *gfxFont; gfxFont->decRefCnt(); ++GfxFont *gfxFont; gfxFont->getFlags(); + ; + return 0; + } +diff -up texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-22.08.0 texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-22.08.0 2022-10-31 09:48:21.872540907 -0400 ++++ texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc 2022-10-31 09:48:21.876540932 -0400 +@@ -123,7 +123,7 @@ struct InObj { + + struct UsedEncoding { + int enc_objnum; +- GfxFont *font; ++ std::shared_ptr font; + UsedEncoding *next; + }; + +@@ -167,8 +167,8 @@ static PdfDocument *find_add_document(ch + p->file_name = xstrdup(file_name); + p->xref = xref = 0; + p->occurences = 0; +- GString *docName = new GString(p->file_name); +- p->doc = new PDFDoc(docName); // takes ownership of docName ++ // GString *docName = new GString(p->file_name); ++ p->doc = new PDFDoc(std::make_unique(p->file_name)); // takes ownership of docName + if (!p->doc->isOk() || !p->doc->okToPrint()) { + pdftex_fail("xpdf: reading PDF image failed"); + } +@@ -204,7 +204,7 @@ static void delete_document(PdfDocument + + // -------------------------------------------------------------------- + +-static int addEncoding(GfxFont * gfont) ++static int addEncoding(std::shared_ptr gfont) + { + UsedEncoding *n; + n = new UsedEncoding; +@@ -395,7 +395,8 @@ static void copyFont(const char *tag, Ob + { + Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, + stemV; +- GfxFont *gfont; ++ // GfxFont *gfont; ++ std::shared_ptr gfont; + fd_entry *fd; + fm_entry *fontmap; + // Check whether the font has already been embedded before analysing it. +@@ -666,6 +667,7 @@ static void writeEncodings() + UsedEncoding *r, *n; + char *glyphNames[256], *s; + int i; ++ + for (r = encodingList; r != 0; r = r->next) { + for (i = 0; i < 256; i++) { + if (r->font->isCIDFont()) { +@@ -673,7 +675,8 @@ static void writeEncodings() + ("PDF inclusion: CID fonts are not supported" + " (try to disable font replacement to fix this)"); + } +- if ((s = (char *) ((Gfx8BitFont *) r->font)->getCharName(i)) != 0) ++ const GfxFont *const font = r->font.get(); ++ if ((s = (char *) ((Gfx8BitFont *) font)->getCharName(i)) != 0) + glyphNames[i] = s; + else + glyphNames[i] = notdef; +@@ -682,7 +685,7 @@ static void writeEncodings() + } + for (r = encodingList; r != 0; r = n) { + n = r->next; +- r->font->decRefCnt(); ++ // r->font->decRefCnt(); + delete r; + } + } +diff -up texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-22.08.0 texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-22.08.0 2022-10-31 09:48:21.866540870 -0400 ++++ texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc 2022-10-31 09:48:21.876540932 -0400 +@@ -72,7 +72,7 @@ int main(int argc, char *argv[]) + { + char *p, buf[1024]; + PDFDoc *doc; +- GString *fileName; ++ std::unique_ptr fileName; + Stream *s; + Object srcStream, srcName, catalogDict; + FILE *outfile; +@@ -86,9 +86,9 @@ int main(int argc, char *argv[]) + "Usage: pdftosrc []\n"); + exit(1); + } +- fileName = new GString(argv[1]); ++ fileName = std::make_unique(argv[1]); + globalParams = std::unique_ptr(new GlobalParams()); +- doc = new PDFDoc(fileName); ++ doc = new PDFDoc(std::move(fileName)); + if (!doc->isOk()) { + fprintf(stderr, "Invalid PDF file\n"); + exit(1); +@@ -126,7 +126,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "Not a Stream object\n"); + exit(1); + } +- sprintf(buf, "%s", fileName->c_str()); ++ sprintf(buf, "%s", argv[1]); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + if (objgen == 0) +@@ -136,7 +136,7 @@ int main(int argc, char *argv[]) + outname = buf; + } else { // objnum < 0 means we are extracting the XRef table + extract_xref_table = true; +- sprintf(buf, "%s", fileName->c_str()); ++ sprintf(buf, "%s", argv[1]); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + sprintf(p, ".xref"); diff --git a/texlive-base-20220321-xpdf-no-GfxFont-decRefCnt.patch b/texlive-base-20220321-xpdf-no-GfxFont-decRefCnt.patch new file mode 100644 index 0000000000000000000000000000000000000000..311b6830cc2bad9654e73b078be1ff8bfee1f45e --- /dev/null +++ b/texlive-base-20220321-xpdf-no-GfxFont-decRefCnt.patch @@ -0,0 +1,12 @@ +diff -up texlive-base-20220321/source/configure.poppler-22.08.0 texlive-base-20220321/source/configure +--- texlive-base-20220321/source/configure.poppler-22.08.0 2022-10-31 09:48:21.875540925 -0400 ++++ texlive-base-20220321/source/configure 2022-10-31 09:50:13.731220862 -0400 +@@ -23545,7 +23545,7 @@ printf %s "checking requested system \`x + int + main (void) + { +-GfxFont *gfxFont; gfxFont->decRefCnt(); ++GfxFont *gfxFont; gfxFont->getFlags(); + ; + return 0; + } diff --git a/texlive-base-20230311-fix-scripts.patch b/texlive-base-20230311-fix-scripts.patch new file mode 100644 index 0000000000000000000000000000000000000000..6370ef6f86e3946bd19dfbcd204161663d5edb76 --- /dev/null +++ b/texlive-base-20230311-fix-scripts.patch @@ -0,0 +1,20 @@ +diff -up ./scripts/context/perl/mptopdf.pl.fix-scripts ./scripts/context/perl/mptopdf.pl +--- ./scripts/context/perl/mptopdf.pl.fix-scripts 2023-05-25 11:52:19.149713294 -0400 ++++ ./scripts/context/perl/mptopdf.pl 2023-05-25 11:53:05.379317240 -0400 +@@ -1,5 +1,4 @@ +-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' && eval 'exec perl -S $0 $argv:q' +- if 0; ++#! /usr/bin/perl -w + + # MikTeX users can set environment variable TEXSYSTEM to "miktex". + +diff -up ./scripts/thumbpdf/thumbpdf.pl.fix-scripts ./scripts/thumbpdf/thumbpdf.pl +--- ./scripts/thumbpdf/thumbpdf.pl.fix-scripts 2023-05-25 11:53:23.018547680 -0400 ++++ ./scripts/thumbpdf/thumbpdf.pl 2023-05-25 11:53:44.086822918 -0400 +@@ -1,5 +1,4 @@ +-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' && eval 'exec perl -S $0 $argv:q' +- if 0; ++#! /usr/bin/perl -w + use strict; + $^W=1; # turn warning on + # diff --git a/texlive-base-20230311-typefixes.patch b/texlive-base-20230311-typefixes.patch new file mode 100644 index 0000000000000000000000000000000000000000..a64e045c763d0278fc8f59f285e4fb904390c754 --- /dev/null +++ b/texlive-base-20230311-typefixes.patch @@ -0,0 +1,20 @@ +--- texlive-base-20230311/source/texk/web2c/pdftexdir/pdftex.ch.orig 2023-05-02 17:26:43.000000000 +0200 ++++ texlive-base-20230311/source/texk/web2c/pdftexdir/pdftex.ch 2024-01-20 21:59:58.382906926 +0100 +@@ -179,7 +179,7 @@ pdf_font_type:=xmalloc_array(eight_bits, + pdf_font_attr:=xmalloc_array(str_number, font_max); + pdf_font_blink:=xmalloc_array(internal_font_number, font_max); + pdf_font_elink:=xmalloc_array(internal_font_number, font_max); +-pdf_font_has_space_char:=xmalloc_array(internal_font_number, font_max); ++pdf_font_has_space_char:=xmalloc_array(boolean, font_max); + pdf_font_stretch:=xmalloc_array(integer, font_max); + pdf_font_shrink:=xmalloc_array(integer, font_max); + pdf_font_step:=xmalloc_array(integer, font_max); +@@ -298,7 +298,7 @@ pdf_font_type:=xmalloc_array(eight_bits, + pdf_font_attr:=xmalloc_array(str_number,font_max); + pdf_font_blink:=xmalloc_array(internal_font_number,font_max); + pdf_font_elink:=xmalloc_array(internal_font_number,font_max); +-pdf_font_has_space_char:=xmalloc_array(internal_font_number,font_max); ++pdf_font_has_space_char:=xmalloc_array(boolean,font_max); + pdf_font_stretch:=xmalloc_array(integer,font_max); + pdf_font_shrink:=xmalloc_array(integer,font_max); + pdf_font_step:=xmalloc_array(integer,font_max); diff --git a/texlive-base-libpaperv2.patch b/texlive-base-libpaperv2.patch new file mode 100644 index 0000000000000000000000000000000000000000..a764bde7efc48c016855110e65b08ef662c9addb --- /dev/null +++ b/texlive-base-libpaperv2.patch @@ -0,0 +1,102 @@ +diff -up texlive-base-20220321/source/texk/psutils/tests/playres.ps.libpaper2 texlive-base-20220321/source/texk/psutils/tests/playres.ps +--- texlive-base-20220321/source/texk/psutils/tests/playres.ps.libpaper2 2023-01-08 23:22:46.519324804 -0500 ++++ texlive-base-20220321/source/texk/psutils/tests/playres.ps 2023-01-08 23:22:56.824405896 -0500 +@@ -280,7 +280,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 15 4 bop 330 423 a Fb(5)2834 b(5)1622 3275 +@@ -293,7 +293,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 16 5 bop 330 419 a Fb(6)2834 b(6)1622 3264 +@@ -306,7 +306,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 17 6 bop 330 419 a Fb(7)2834 b(7)1622 3266 +@@ -319,7 +319,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 18 7 bop 330 419 a Fb(8)2834 b(8)1622 3264 +@@ -332,7 +332,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 19 8 bop 330 419 a Fb(9)2834 b(9)1622 3261 +@@ -345,7 +345,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 20 9 bop 330 419 a Fb(10)2668 b(10)1415 +@@ -358,7 +358,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 21 10 bop 330 419 a Fb(11)2668 b(11)1415 +@@ -371,7 +371,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 22 11 bop 330 419 a Fb(12)2668 b(12)1415 +@@ -384,7 +384,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 23 12 bop 330 419 a Fb(13)2668 b(13)1415 +@@ -397,7 +397,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 24 13 bop 330 419 a Fb(14)2668 b(14)1415 +@@ -410,7 +410,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 25 14 bop 330 423 a Fb(15)2668 b(15)1415 diff --git a/texlive-base.spec b/texlive-base.spec index d5d045c3858043c0b56243c13d596baa4fff459f..dc3818a220841bfe5d4723df5c821f2a3ddf6341 100644 --- a/texlive-base.spec +++ b/texlive-base.spec @@ -1,457 +1,617 @@ +%global shortname texlive +%global source_date 20250308 +%global source_svn svn66984 +%global tl_version 2025 +%global source_name texlive-%{source_date}-source +%{!?_texdir: %global _texdir %{_datadir}/%{shortname}} +%{!?_texmf_var: %global _texmf_var %{_var}/lib/texmf} +%global tl_archive_url https://mirrors.ustc.edu.cn/CTAN/systems/texlive/tlnet/archive + +%global etc_fmtutil_cnf %{_sysconfdir}/texlive/web2c/fmtutil.cnf +%global usr_fmtutil_cnf %{_texdir}/texmf-dist/web2c/fmtutil.cnf +%global fmtutil_cnf_d %{_texdir}/fmtutil.cnf.d + +# don't export private perl modules %global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\( %global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\((LatexIndent.*|PDF::Reuse.*|Pedigree.*|TeXLive.*|Tk::path_tre)\\) + +# We do not want exec perms changing. %global __brp_mangle_shebangs_exclude ^$ -Name: texlive-base -Version: 20210325 -Release: 11 -Epoch: 9 -Summary: TeX formatting system -License: ASL 2.0 and LGPL-2.1-only and Zlib and OFL-1.1 and Public Domain and LGPL-2.0-only and GPLv2+ and MPL-1.1 and Libpng and LGPL-3.0-only and BSL-1.0 and GPLv2 and GPLv3 and CPL-1.0 and IJG and MIT and LPPL-1.3c and ICU and psutils -URL: http://tug.org/texlive/ -Source0: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/texlive-20210325-source.tar.xz -Source1: macros.texlive -Source2: texlive.tlpdb -Source3: texlive-licenses.tar.xz -Source4: generate-fmtutilcnf -Source5: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cyrillic.tar.xz -Source6: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cyrillic.doc.tar.xz -Source7: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/glyphlist.tar.xz -Source8: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex.tar.xz -Source9: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex.doc.tar.xz -Source10: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lyluatex.tar.xz -Source11: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lyluatex.doc.tar.xz -Source12: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/oberdiek.tar.xz -Source13: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/oberdiek.doc.tar.xz -Source14: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive-en.doc.tar.xz -Source15: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/a2ping.doc.tar.xz -Source16: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/a2ping.tar.xz -Source17: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/accfonts.doc.tar.xz -Source18: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/accfonts.tar.xz -Source19: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/adhocfilelist.doc.tar.xz -Source20: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/adhocfilelist.tar.xz -Source21: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/afm2pl.tar.xz -Source22: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/aleph.doc.tar.xz -Source23: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/aleph.tar.xz -Source24: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/amstex.doc.tar.xz -Source25: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/amstex.tar.xz -Source26: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/arara.doc.tar.xz -Source27: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/arara.tar.xz -Source28: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/attachfile2.doc.tar.xz -Source29: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/attachfile2.tar.xz -Source30: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/authorindex.doc.tar.xz -Source31: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/authorindex.tar.xz -Source32: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/autosp.doc.tar.xz -Source33: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/axodraw2.doc.tar.xz -Source34: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/axodraw2.tar.xz -Source35: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bib2gls.doc.tar.xz -Source36: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bib2gls.tar.xz -Source37: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibexport.doc.tar.xz -Source38: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibexport.tar.xz -Source39: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibtex8.doc.tar.xz -Source40: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibtex8.tar.xz -Source41: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibtex.doc.tar.xz -Source42: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibtex.tar.xz -Source43: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibtexu.doc.tar.xz -Source44: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bundledoc.doc.tar.xz -Source45: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bundledoc.tar.xz -Source46: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cachepic.doc.tar.xz -Source47: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cachepic.tar.xz -Source48: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/checkcites.doc.tar.xz -Source49: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/checkcites.tar.xz -Source50: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/checklistings.doc.tar.xz -Source51: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/checklistings.tar.xz -Source52: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/chklref.doc.tar.xz -Source53: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/chklref.tar.xz -Source54: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/chktex.doc.tar.xz -Source55: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/chktex.tar.xz -Source56: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cjk-gs-integrate.doc.tar.xz -Source57: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cjk-gs-integrate.tar.xz -Source58: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cjkutils.tar.xz -Source59: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/clojure-pamphlet.doc.tar.xz -Source60: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/clojure-pamphlet.tar.xz -Source61: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cluttex.doc.tar.xz -Source62: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cluttex.tar.xz -Source63: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/context.doc.tar.xz -Source64: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/context.tar.xz -Source65: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/convbkmk.doc.tar.xz -Source66: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/convbkmk.tar.xz -Source67: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/crossrefware.doc.tar.xz -Source68: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/crossrefware.tar.xz -Source69: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cslatex.tar.xz -Source70: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/csplain.tar.xz -Source71: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanbib.doc.tar.xz -Source72: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanbib.tar.xz -Source73: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanify.doc.tar.xz -Source74: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanify.tar.xz -Source75: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctan-o-mat.doc.tar.xz -Source76: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctan-o-mat.tar.xz -Source77: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanupload.doc.tar.xz -Source78: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanupload.tar.xz -Source79: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctie.doc.tar.xz -Source80: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cweb.doc.tar.xz -Source81: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cweb.tar.xz -Source82: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cyrillic-bin.doc.tar.xz -Source83: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cyrillic-bin.tar.xz -Source84: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/de-macro.doc.tar.xz -Source85: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/de-macro.tar.xz -Source86: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/detex.doc.tar.xz -Source87: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/detex.tar.xz -Source88: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/diadia.doc.tar.xz -Source89: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/diadia.tar.xz -Source90: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dosepsbin.doc.tar.xz -Source91: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dosepsbin.tar.xz -Source92: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dtl.doc.tar.xz -Source93: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dtl.tar.xz -Source94: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dtxgen.doc.tar.xz -Source95: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dtxgen.tar.xz -Source96: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvi2tty.doc.tar.xz -Source97: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvi2tty.tar.xz -Source98: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviasm.doc.tar.xz -Source99: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviasm.tar.xz -Source100: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvicopy.doc.tar.xz -Source101: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvicopy.tar.xz -Source102: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvidvi.doc.tar.xz -Source103: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvidvi.tar.xz -Source104: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviinfox.doc.tar.xz -Source105: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviinfox.tar.xz -Source106: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviljk.doc.tar.xz -Source107: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviljk.tar.xz -Source108: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviout-util.doc.tar.xz -Source109: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipdfmx.doc.tar.xz -Source110: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipdfmx.tar.xz -Source111: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipng.doc.tar.xz -Source112: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipng.tar.xz -Source113: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipos.doc.tar.xz -Source114: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipos.tar.xz -Source115: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvips.doc.tar.xz -Source116: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvips.tar.xz -Source117: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvisvgm.doc.tar.xz -Source118: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvisvgm.tar.xz -Source119: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ebong.doc.tar.xz -Source120: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ebong.tar.xz -Source121: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/eplain.doc.tar.xz -Source122: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/eplain.tar.xz -Source123: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/epspdf.doc.tar.xz -Source124: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/epspdf.tar.xz -Source125: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/epstopdf.doc.tar.xz -Source126: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/epstopdf.tar.xz -Source127: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/exceltex.doc.tar.xz -Source128: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/exceltex.tar.xz -Source129: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fig4latex.doc.tar.xz -Source130: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fig4latex.tar.xz -Source131: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/findhyph.doc.tar.xz -Source132: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/findhyph.tar.xz -Source133: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fontinst.doc.tar.xz -Source134: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fontinst.tar.xz -Source135: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fontools.doc.tar.xz -Source136: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fontools.tar.xz -Source137: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fontware.doc.tar.xz -Source138: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fragmaster.doc.tar.xz -Source139: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fragmaster.tar.xz -Source140: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/getmap.doc.tar.xz -Source141: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/getmap.tar.xz -Source142: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/glossaries.doc.tar.xz -Source143: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/glossaries.tar.xz -Source144: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/gregoriotex.doc.tar.xz -Source145: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/gregoriotex.tar.xz -Source146: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/gsftopk.doc.tar.xz -Source147: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/gsftopk.tar.xz -Source148: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/installfont.doc.tar.xz -Source149: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/installfont.tar.xz -Source150: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/jadetex.doc.tar.xz -Source151: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/jadetex.tar.xz -Source152: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/jfmutil.doc.tar.xz -Source153: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/jfmutil.tar.xz -Source154: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ketcindy.doc.tar.xz -Source155: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ketcindy.tar.xz -Source156: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/kotex-utils.doc.tar.xz -Source157: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/kotex-utils.tar.xz -Source158: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/kpathsea.doc.tar.xz -Source159: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/kpathsea.tar.xz -Source160: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/l3build.tar.xz -Source161: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/l3build.doc.tar.xz -Source162: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lacheck.doc.tar.xz -Source163: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex2man.doc.tar.xz -Source164: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex2man.tar.xz -Source165: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex2nemeth.doc.tar.xz -Source166: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex2nemeth.tar.xz -Source167: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexdiff.doc.tar.xz -Source168: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexdiff.tar.xz -Source169: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexfileversion.doc.tar.xz -Source170: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexfileversion.tar.xz -Source171: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex-git-log.doc.tar.xz -Source172: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex-git-log.tar.xz -Source173: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexindent.doc.tar.xz -Source174: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexindent.tar.xz -Source175: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexpand.doc.tar.xz -Source176: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexpand.tar.xz -Source177: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex-papersize.doc.tar.xz -Source178: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex-papersize.tar.xz -Source179: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lcdftypetools.doc.tar.xz -Source180: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lilyglyphs.doc.tar.xz -Source181: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lilyglyphs.tar.xz -Source182: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/listbib.doc.tar.xz -Source183: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/listbib.tar.xz -Source184: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/listings-ext.doc.tar.xz -Source185: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/listings-ext.tar.xz -Source186: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lollipop.doc.tar.xz -Source187: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lollipop.tar.xz -Source188: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ltxfileinfo.doc.tar.xz -Source189: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ltxfileinfo.tar.xz -Source190: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ltximg.doc.tar.xz -Source191: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ltximg.tar.xz -Source192: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luaotfload.doc.tar.xz -Source193: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luaotfload.tar.xz -Source194: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luahbtex.doc.tar.xz -Source195: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luahbtex.tar.xz -Source196: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luatex.doc.tar.xz -Source197: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luatex.tar.xz -Source198: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lwarp.doc.tar.xz -Source199: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lwarp.tar.xz -Source200: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/make4ht.doc.tar.xz -Source201: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/make4ht.tar.xz -Source202: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/makedtx.doc.tar.xz -Source203: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/makedtx.tar.xz -Source204: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/makeindex.doc.tar.xz -Source205: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/makeindex.tar.xz -Source206: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/match_parens.doc.tar.xz -Source207: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/match_parens.tar.xz -Source208: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mathspic.doc.tar.xz -Source209: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mathspic.tar.xz -Source210: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/metafont.doc.tar.xz -Source211: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/metafont.tar.xz -Source212: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/metapost.doc.tar.xz -Source213: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/metapost.tar.xz -Source214: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mex.doc.tar.xz -Source215: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mex.tar.xz -Source216: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mf2pt1.doc.tar.xz -Source217: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mf2pt1.tar.xz -Source218: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mflua.tar.xz -Source219: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mfware.doc.tar.xz -Source220: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mfware.tar.xz -Source221: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkgrkindex.doc.tar.xz -Source222: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkgrkindex.tar.xz -Source223: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkjobtexmf.doc.tar.xz -Source224: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkjobtexmf.tar.xz -Source225: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkpic.doc.tar.xz -Source226: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkpic.tar.xz -Source227: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mltex.doc.tar.xz -Source228: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mltex.tar.xz -Source229: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mptopdf.doc.tar.xz -Source230: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mptopdf.tar.xz -Source231: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/m-tx.doc.tar.xz -Source232: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/m-tx.tar.xz -Source233: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/multibibliography.doc.tar.xz -Source234: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/multibibliography.tar.xz -Source235: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/musixtex.doc.tar.xz -Source236: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/musixtex.tar.xz -Source237: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/musixtnt.doc.tar.xz -Source238: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/musixtnt.tar.xz -Source239: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/omegaware.doc.tar.xz -Source240: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/patgen.doc.tar.xz -Source241: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/patgen.tar.xz -Source242: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pax.doc.tar.xz -Source243: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pax.tar.xz -Source244: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfbook2.doc.tar.xz -Source245: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfbook2.tar.xz -Source246: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfcrop.doc.tar.xz -Source247: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfcrop.tar.xz -Source248: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfjam.doc.tar.xz -Source249: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfjam.tar.xz -Source250: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdflatexpicscale.doc.tar.xz -Source251: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdflatexpicscale.tar.xz -Source252: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdftex.doc.tar.xz -Source253: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdftex.tar.xz -Source254: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdftex-quiet.doc.tar.xz -Source255: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdftex-quiet.tar.xz -Source256: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfxup.doc.tar.xz -Source257: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfxup.tar.xz -Source258: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pedigree-perl.doc.tar.xz -Source259: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pedigree-perl.tar.xz -Source260: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/perltex.doc.tar.xz -Source261: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/perltex.tar.xz -Source262: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/petri-nets.doc.tar.xz -Source263: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/petri-nets.tar.xz -Source264: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pfarrei.doc.tar.xz -Source265: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pfarrei.tar.xz -Source266: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pkfix.doc.tar.xz -Source267: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pkfix-helper.doc.tar.xz -Source268: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pkfix-helper.tar.xz -Source269: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pkfix.tar.xz -Source270: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pmxchords.doc.tar.xz -Source271: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pmxchords.tar.xz -Source272: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pmx.doc.tar.xz -Source273: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pmx.tar.xz -Source274: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ps2eps.doc.tar.xz -Source275: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ps2eps.tar.xz -Source276: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ps2pk.doc.tar.xz -Source277: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ps2pk.tar.xz -Source278: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pst2pdf.doc.tar.xz -Source279: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pst2pdf.tar.xz -Source280: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pst-pdf.doc.tar.xz -Source281: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pst-pdf.tar.xz -Source282: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/psutils.doc.tar.xz -Source283: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/psutils.tar.xz -Source284: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex2pdf.doc.tar.xz -Source285: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex2pdf.tar.xz -Source286: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex.doc.tar.xz -Source287: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex-fontmaps.doc.tar.xz -Source288: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex-fontmaps.tar.xz -Source289: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex.tar.xz -Source290: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/purifyeps.doc.tar.xz -Source291: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/purifyeps.tar.xz -Source292: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pygmentex.doc.tar.xz -Source293: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pygmentex.tar.xz -Source294: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pythontex.doc.tar.xz -Source295: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pythontex.tar.xz -Source296: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/rubik.doc.tar.xz -Source297: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/rubik.tar.xz -Source298: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/seetexk.doc.tar.xz -Source299: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/seetexk.tar.xz -Source300: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/splitindex.doc.tar.xz -Source301: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/splitindex.tar.xz -Source302: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/srcredact.doc.tar.xz -Source303: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/srcredact.tar.xz -Source304: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/sty2dtx.doc.tar.xz -Source305: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/sty2dtx.tar.xz -Source306: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/svn-multi.doc.tar.xz -Source307: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/svn-multi.tar.xz -Source308: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/synctex.doc.tar.xz -Source309: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/synctex.tar.xz -Source310: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex4ebook.doc.tar.xz -Source311: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex4ebook.tar.xz -Source312: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex4ht.doc.tar.xz -Source313: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex4ht.tar.xz -Source314: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texcount.doc.tar.xz -Source315: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texcount.tar.xz -Source316: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdef.doc.tar.xz -Source317: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdef.tar.xz -Source318: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdiff.doc.tar.xz -Source319: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdiff.tar.xz -Source320: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdirflatten.doc.tar.xz -Source321: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdirflatten.tar.xz -Source322: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdoc.doc.tar.xz -Source323: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex.doc.tar.xz -Source324: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdoc.tar.xz -Source325: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdoctk.tar.xz -Source326: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdoctk.doc.tar.xz -Source327: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texfot.doc.tar.xz -Source328: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texfot.tar.xz -Source329: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive.infra.doc.tar.xz -Source330: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive.infra.tar.xz -Source331: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texliveonfly.doc.tar.xz -Source332: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texliveonfly.tar.xz -Source333: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive-scripts.doc.tar.xz -Source334: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive-scripts.tar.xz -Source335: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive-scripts-extra.doc.tar.xz -Source336: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive-scripts-extra.tar.xz -Source337: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texloganalyser.doc.tar.xz -Source338: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texloganalyser.tar.xz -Source339: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texosquery.doc.tar.xz -Source340: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texosquery.tar.xz -Source341: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texplate.doc.tar.xz -Source342: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texplate.tar.xz -Source343: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texsis.doc.tar.xz -Source344: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texsis.tar.xz -Source345: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex.tar.xz -Source346: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texware.doc.tar.xz -Source347: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texware.tar.xz -Source348: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/thumbpdf.doc.tar.xz -Source349: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/thumbpdf.tar.xz -Source350: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tie.doc.tar.xz -Source351: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tie.tar.xz -Source352: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tpic2pdftex.doc.tar.xz -Source353: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tpic2pdftex.tar.xz -Source354: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ttfutils.doc.tar.xz -Source355: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ttfutils.tar.xz -Source356: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/typeoutfileinfo.doc.tar.xz -Source357: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/typeoutfileinfo.tar.xz -Source358: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ulqda.doc.tar.xz -Source359: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ulqda.tar.xz -Source360: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/uplatex.doc.tar.xz -Source361: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/uptex.doc.tar.xz -Source362: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/urlbst.doc.tar.xz -Source363: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/urlbst.tar.xz -Source364: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/velthuis.doc.tar.xz -Source365: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/velthuis.tar.xz -Source366: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/vlna.doc.tar.xz -Source367: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/vpe.doc.tar.xz -Source368: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/vpe.tar.xz -Source369: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/web.doc.tar.xz -Source370: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/web.tar.xz -Source371: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/webquiz.doc.tar.xz -Source372: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/webquiz.tar.xz -Source373: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/wordcount.doc.tar.xz -Source374: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/wordcount.tar.xz -Source375: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xdvi.doc.tar.xz -Source376: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xdvi.tar.xz -Source377: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xetex.doc.tar.xz -Source378: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xetex.tar.xz -Source379: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xindex.doc.tar.xz -Source380: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xindex.tar.xz -Source383: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xmltex.doc.tar.xz -Source384: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xmltex.tar.xz -Source385: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xpdfopen.doc.tar.xz -Source386: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/yplan.doc.tar.xz -Source387: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/yplan.tar.xz -Source388: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/optex.tar.xz -Source389: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/optex.doc.tar.xz -Source390: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/albatross.tar.xz -Source391: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/albatross.doc.tar.xz -Source392: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/git-latexdiff.tar.xz -Source393: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/git-latexdiff.doc.tar.xz -Source394: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/hyperxmp.tar.xz -Source395: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/hyperxmp.doc.tar.xz -Source396: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/light-latex-make.tar.xz -Source397: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/light-latex-make.doc.tar.xz -Source398: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/spix.tar.xz -Source399: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/spix.doc.tar.xz -Source400: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tikztosvg.tar.xz -Source401: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tikztosvg.doc.tar.xz -Source402: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xml2pmx.tar.xz -Source403: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xml2pmx.doc.tar.xz - -Patch0001: tl-kpfix.patch -Patch0002: tl-format.patch -Patch0005: texlive-2016-kpathsea-texlive-path.patch - -Patch0008: texlive-20210325-texinfo-path-fix.patch -Patch0017: texlive-20180414-annocheck.patch - -Patch0020: texlive-20190410-dvisvgm-fix-libgs-detection.patch -Patch0021: texlive-20190410-tlmgr-ignore-warning.patch - -Patch0030: texlive-base-20200327-out-of-memory.patch - -Patch0032: texlive-base-20210325-mendex-weird-arch-fixes.patch -Patch0033: texlive-base-20210325-no-setpdfwrite.patch - -Patch0034: CVE-2023-32700.patch -Patch0035: CVE-2023-46048.patch -Patch0036: CVE-2023-46051.patch - -Patch0037: reverted-changes-to-Ghostscript-class.patch - -BuildRequires: xz libXaw-devel libXi-devel ncurses-devel bison flex file perl(Digest::MD5) texinfo gcc-c++ -BuildRequires: gd-devel freetype-devel libpng-devel zlib-devel potrace-devel -BuildRequires: zziplib-devel libicu-devel cairo-devel harfbuzz-devel perl-generators pixman-devel graphite2-devel -BuildRequires: libpaper-devel autoconf automake libtool libgs-devel -BuildRequires: gmp-devel mpfr-devel python3-devel poppler-devel t1utils -# For macros. -BuildRequires: python3-devel -BuildRequires: python3-setuptools -BuildRequires: chrpath tex(expl3.sty) -Provides: texlive-cjk-gs-integrate = %{epoch}:20210325-%{release} -Obsoletes: texlive-cjk-gs-integrate <= 7:20180414 -Provides: tex-cjk-gs-integrate = %{epoch}:20210325-%{release} -Obsoletes: tex-cjk-gs-integrate <= 7:20180414 -Provides: texlive-cjk-gs-integrate-bin = %{epoch}:20210325-%{release} -Provides: tex-cjk-gs-integrate-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cjk-gs-integrate-bin <= 7:20180414 -Obsoletes: tex-cjk-gs-integrate-bin <= 7:20180414 -Provides: texlive-cjk-gs-integrate-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-cjk-gs-integrate-doc <= 7:20180414 +# We have a circular dep on latex due to xindy +%bcond_with bootstrap + +# disbale psutils, command psresize test fail +%bcond_without psutils + +# Upstream no longer supports poppler. We've been hacking it in, but... maybe we should stop? +%bcond_with poppler + +Name: %{shortname}-base +Version: %{source_date} +Release: 1 +Epoch: 10 +Summary: TeX formatting system +# The only files in the base package are directories, cache, and license texts +# So we'll just list the license texts. This is also a bit of a lie, since most of these license texts do not apply to themselves. +License: Apache-2.0 AND Artistic-2.0 AND BSD-3-Clause AND GFDL-1.1-or-later AND GPL-1.0-or-later AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND GPL-3.0-or-later AND Knuth-CTAN AND LGPL-2.1-or-later AND LGPL-3.0-or-later AND LPPL-1.3a AND LPPL-1.3c AND MIT AND OFL-1.1 AND Public Domain +URL: http://tug.org/texlive/ +Source0: https://mirrors.ustc.edu.cn/CTAN/systems/texlive/Source/texlive-20250308-source.tar.xz + +Source1: macros.texlive +Source2: http://tug.ctan.org/systems/texlive/tlnet/tlpkg/texlive.tlpdb +Source3: texlive-licenses.tar.xz +Source4: generate-fmtutilcnf +# These noarch components are packed wrong upstream (do not unpack into texmf-dist) +Source5: %{tl_archive_url}/cyrillic.tar.xz +Source6: %{tl_archive_url}/cyrillic.doc.tar.xz +Source7: %{tl_archive_url}/glyphlist.tar.xz +Source8: %{tl_archive_url}/latex.tar.xz +Source9: %{tl_archive_url}/latex.doc.tar.xz +Source10: %{tl_archive_url}/lyluatex.tar.xz +Source11: %{tl_archive_url}/lyluatex.doc.tar.xz +Source12: %{tl_archive_url}/oberdiek.tar.xz +Source13: %{tl_archive_url}/oberdiek.doc.tar.xz +Source14: %{tl_archive_url}/texlive-en.doc.tar.xz +# These are the noarch components for the built binaries. +Source15: %{tl_archive_url}/a2ping.doc.tar.xz +Source16: %{tl_archive_url}/a2ping.tar.xz +Source17: %{tl_archive_url}/accfonts.doc.tar.xz +Source18: %{tl_archive_url}/accfonts.tar.xz +Source19: %{tl_archive_url}/adhocfilelist.doc.tar.xz +Source20: %{tl_archive_url}/adhocfilelist.tar.xz +Source21: %{tl_archive_url}/afm2pl.tar.xz +Source22: %{tl_archive_url}/aleph.doc.tar.xz +Source23: %{tl_archive_url}/aleph.tar.xz +Source24: %{tl_archive_url}/amstex.doc.tar.xz +Source25: %{tl_archive_url}/amstex.tar.xz +Source26: %{tl_archive_url}/arara.doc.tar.xz +Source27: %{tl_archive_url}/arara.tar.xz +Source28: %{tl_archive_url}/attachfile2.doc.tar.xz +Source29: %{tl_archive_url}/attachfile2.tar.xz +Source30: %{tl_archive_url}/authorindex.doc.tar.xz +Source31: %{tl_archive_url}/authorindex.tar.xz +Source32: %{tl_archive_url}/autosp.doc.tar.xz +Source33: %{tl_archive_url}/axodraw2.doc.tar.xz +Source34: %{tl_archive_url}/axodraw2.tar.xz +Source35: %{tl_archive_url}/bib2gls.doc.tar.xz +Source36: %{tl_archive_url}/bib2gls.tar.xz +Source37: %{tl_archive_url}/bibexport.doc.tar.xz +Source38: %{tl_archive_url}/bibexport.tar.xz +Source39: %{tl_archive_url}/bibtex8.doc.tar.xz +Source40: %{tl_archive_url}/bibtex8.tar.xz +Source41: %{tl_archive_url}/bibtex.doc.tar.xz +Source42: %{tl_archive_url}/bibtex.tar.xz +Source43: %{tl_archive_url}/bibtexu.doc.tar.xz +Source44: %{tl_archive_url}/bundledoc.doc.tar.xz +Source45: %{tl_archive_url}/bundledoc.tar.xz +Source46: %{tl_archive_url}/cachepic.doc.tar.xz +Source47: %{tl_archive_url}/cachepic.tar.xz +Source48: %{tl_archive_url}/checkcites.doc.tar.xz +Source49: %{tl_archive_url}/checkcites.tar.xz +Source50: %{tl_archive_url}/checklistings.doc.tar.xz +Source51: %{tl_archive_url}/checklistings.tar.xz +Source52: %{tl_archive_url}/chklref.doc.tar.xz +Source53: %{tl_archive_url}/chklref.tar.xz +Source54: %{tl_archive_url}/chktex.doc.tar.xz +Source55: %{tl_archive_url}/chktex.tar.xz +Source56: %{tl_archive_url}/cjk-gs-integrate.doc.tar.xz +Source57: %{tl_archive_url}/cjk-gs-integrate.tar.xz +Source58: %{tl_archive_url}/cjkutils.tar.xz +Source59: %{tl_archive_url}/clojure-pamphlet.doc.tar.xz +Source60: %{tl_archive_url}/clojure-pamphlet.tar.xz +Source61: %{tl_archive_url}/cluttex.doc.tar.xz +Source62: %{tl_archive_url}/cluttex.tar.xz +Source63: %{tl_archive_url}/context.doc.tar.xz +Source64: %{tl_archive_url}/context.tar.xz +Source65: %{tl_archive_url}/convbkmk.doc.tar.xz +Source66: %{tl_archive_url}/convbkmk.tar.xz +Source67: %{tl_archive_url}/crossrefware.doc.tar.xz +Source68: %{tl_archive_url}/crossrefware.tar.xz +Source69: %{tl_archive_url}/cslatex.tar.xz +Source70: %{tl_archive_url}/csplain.tar.xz +Source71: %{tl_archive_url}/ctanbib.doc.tar.xz +Source72: %{tl_archive_url}/ctanbib.tar.xz +Source73: %{tl_archive_url}/ctanify.doc.tar.xz +Source74: %{tl_archive_url}/ctanify.tar.xz +Source75: %{tl_archive_url}/ctan-o-mat.doc.tar.xz +Source76: %{tl_archive_url}/ctan-o-mat.tar.xz +Source77: %{tl_archive_url}/ctanupload.doc.tar.xz +Source78: %{tl_archive_url}/ctanupload.tar.xz +Source79: %{tl_archive_url}/ctie.doc.tar.xz +Source80: %{tl_archive_url}/cweb.doc.tar.xz +Source81: %{tl_archive_url}/cweb.tar.xz +Source82: %{tl_archive_url}/cyrillic-bin.doc.tar.xz +Source83: %{tl_archive_url}/cyrillic-bin.tar.xz +Source84: %{tl_archive_url}/de-macro.doc.tar.xz +Source85: %{tl_archive_url}/de-macro.tar.xz +Source86: %{tl_archive_url}/detex.doc.tar.xz +Source87: %{tl_archive_url}/detex.tar.xz +Source88: %{tl_archive_url}/diadia.doc.tar.xz +Source89: %{tl_archive_url}/diadia.tar.xz +Source90: %{tl_archive_url}/dosepsbin.doc.tar.xz +Source91: %{tl_archive_url}/dosepsbin.tar.xz +Source92: %{tl_archive_url}/dtl.doc.tar.xz +Source93: %{tl_archive_url}/dtl.tar.xz +Source94: %{tl_archive_url}/dtxgen.doc.tar.xz +Source95: %{tl_archive_url}/dtxgen.tar.xz +Source96: %{tl_archive_url}/dvi2tty.doc.tar.xz +Source97: %{tl_archive_url}/dvi2tty.tar.xz +Source98: %{tl_archive_url}/dviasm.doc.tar.xz +Source99: %{tl_archive_url}/dviasm.tar.xz +Source100: %{tl_archive_url}/dvicopy.doc.tar.xz +Source101: %{tl_archive_url}/dvicopy.tar.xz +Source102: %{tl_archive_url}/dvidvi.doc.tar.xz +Source103: %{tl_archive_url}/dvidvi.tar.xz +Source104: %{tl_archive_url}/dviinfox.doc.tar.xz +Source105: %{tl_archive_url}/dviinfox.tar.xz +Source106: %{tl_archive_url}/dviljk.doc.tar.xz +Source107: %{tl_archive_url}/dviljk.tar.xz +Source108: %{tl_archive_url}/dviout-util.doc.tar.xz +Source109: %{tl_archive_url}/dvipdfmx.doc.tar.xz +Source110: %{tl_archive_url}/dvipdfmx.tar.xz +Source111: %{tl_archive_url}/dvipng.doc.tar.xz +Source112: %{tl_archive_url}/dvipng.tar.xz +Source113: %{tl_archive_url}/dvipos.doc.tar.xz +Source114: %{tl_archive_url}/dvipos.tar.xz +Source115: %{tl_archive_url}/dvips.doc.tar.xz +Source116: %{tl_archive_url}/dvips.tar.xz +Source117: %{tl_archive_url}/dvisvgm.doc.tar.xz +Source118: %{tl_archive_url}/dvisvgm.tar.xz +Source119: %{tl_archive_url}/ebong.doc.tar.xz +Source120: %{tl_archive_url}/ebong.tar.xz +Source121: %{tl_archive_url}/eplain.doc.tar.xz +Source122: %{tl_archive_url}/eplain.tar.xz +Source123: %{tl_archive_url}/epspdf.doc.tar.xz +Source124: %{tl_archive_url}/epspdf.tar.xz +Source125: %{tl_archive_url}/epstopdf.doc.tar.xz +Source126: %{tl_archive_url}/epstopdf.tar.xz +Source127: %{tl_archive_url}/exceltex.doc.tar.xz +Source128: %{tl_archive_url}/exceltex.tar.xz +Source129: %{tl_archive_url}/fig4latex.doc.tar.xz +Source130: %{tl_archive_url}/fig4latex.tar.xz +Source131: %{tl_archive_url}/findhyph.doc.tar.xz +Source132: %{tl_archive_url}/findhyph.tar.xz +Source133: %{tl_archive_url}/fontinst.doc.tar.xz +Source134: %{tl_archive_url}/fontinst.tar.xz +Source135: %{tl_archive_url}/fontools.doc.tar.xz +Source136: %{tl_archive_url}/fontools.tar.xz +Source137: %{tl_archive_url}/fontware.doc.tar.xz +Source138: %{tl_archive_url}/fragmaster.doc.tar.xz +Source139: %{tl_archive_url}/fragmaster.tar.xz +Source140: %{tl_archive_url}/getmap.doc.tar.xz +Source141: %{tl_archive_url}/getmap.tar.xz +Source142: %{tl_archive_url}/glossaries.doc.tar.xz +Source143: %{tl_archive_url}/glossaries.tar.xz +Source144: %{tl_archive_url}/gregoriotex.doc.tar.xz +Source145: %{tl_archive_url}/gregoriotex.tar.xz +Source146: %{tl_archive_url}/gsftopk.doc.tar.xz +Source147: %{tl_archive_url}/gsftopk.tar.xz +Source148: %{tl_archive_url}/installfont.doc.tar.xz +Source149: %{tl_archive_url}/installfont.tar.xz +Source150: %{tl_archive_url}/jadetex.doc.tar.xz +Source151: %{tl_archive_url}/jadetex.tar.xz +Source152: %{tl_archive_url}/jfmutil.doc.tar.xz +Source153: %{tl_archive_url}/jfmutil.tar.xz +Source154: %{tl_archive_url}/ketcindy.doc.tar.xz +Source155: %{tl_archive_url}/ketcindy.tar.xz +Source156: %{tl_archive_url}/kotex-utils.doc.tar.xz +Source157: %{tl_archive_url}/kotex-utils.tar.xz +Source158: %{tl_archive_url}/kpathsea.doc.tar.xz +Source159: %{tl_archive_url}/kpathsea.tar.xz +Source160: %{tl_archive_url}/l3build.tar.xz +Source161: %{tl_archive_url}/l3build.doc.tar.xz +Source162: %{tl_archive_url}/lacheck.doc.tar.xz +Source163: %{tl_archive_url}/latex2man.doc.tar.xz +Source164: %{tl_archive_url}/latex2man.tar.xz +Source165: %{tl_archive_url}/latex2nemeth.doc.tar.xz +Source166: %{tl_archive_url}/latex2nemeth.tar.xz +Source167: %{tl_archive_url}/latexdiff.doc.tar.xz +Source168: %{tl_archive_url}/latexdiff.tar.xz +Source169: %{tl_archive_url}/latexfileversion.doc.tar.xz +Source170: %{tl_archive_url}/latexfileversion.tar.xz +Source171: %{tl_archive_url}/latex-git-log.doc.tar.xz +Source172: %{tl_archive_url}/latex-git-log.tar.xz +Source173: %{tl_archive_url}/latexindent.doc.tar.xz +Source174: %{tl_archive_url}/latexindent.tar.xz +Source175: %{tl_archive_url}/latexpand.doc.tar.xz +Source176: %{tl_archive_url}/latexpand.tar.xz +Source177: %{tl_archive_url}/latex-papersize.doc.tar.xz +Source178: %{tl_archive_url}/latex-papersize.tar.xz +Source179: %{tl_archive_url}/lcdftypetools.doc.tar.xz +Source180: %{tl_archive_url}/lilyglyphs.doc.tar.xz +Source181: %{tl_archive_url}/lilyglyphs.tar.xz +Source182: %{tl_archive_url}/listbib.doc.tar.xz +Source183: %{tl_archive_url}/listbib.tar.xz +Source184: %{tl_archive_url}/listings-ext.doc.tar.xz +Source185: %{tl_archive_url}/listings-ext.tar.xz +Source186: %{tl_archive_url}/lollipop.doc.tar.xz +Source187: %{tl_archive_url}/lollipop.tar.xz +Source188: %{tl_archive_url}/ltxfileinfo.doc.tar.xz +Source189: %{tl_archive_url}/ltxfileinfo.tar.xz +Source190: %{tl_archive_url}/ltximg.doc.tar.xz +Source191: %{tl_archive_url}/ltximg.tar.xz +Source192: %{tl_archive_url}/luaotfload.doc.tar.xz +Source193: %{tl_archive_url}/luaotfload.tar.xz +Source194: %{tl_archive_url}/luahbtex.doc.tar.xz +Source195: %{tl_archive_url}/luahbtex.tar.xz +Source196: %{tl_archive_url}/luatex.doc.tar.xz +Source197: %{tl_archive_url}/luatex.tar.xz +Source198: %{tl_archive_url}/lwarp.doc.tar.xz +Source199: %{tl_archive_url}/lwarp.tar.xz +Source200: %{tl_archive_url}/make4ht.doc.tar.xz +Source201: %{tl_archive_url}/make4ht.tar.xz +Source202: %{tl_archive_url}/makedtx.doc.tar.xz +Source203: %{tl_archive_url}/makedtx.tar.xz +Source204: %{tl_archive_url}/makeindex.doc.tar.xz +Source205: %{tl_archive_url}/makeindex.tar.xz +Source206: %{tl_archive_url}/match_parens.doc.tar.xz +Source207: %{tl_archive_url}/match_parens.tar.xz +Source208: %{tl_archive_url}/mathspic.doc.tar.xz +Source209: %{tl_archive_url}/mathspic.tar.xz +Source210: %{tl_archive_url}/metafont.doc.tar.xz +Source211: %{tl_archive_url}/metafont.tar.xz +Source212: %{tl_archive_url}/metapost.doc.tar.xz +Source213: %{tl_archive_url}/metapost.tar.xz +Source214: %{tl_archive_url}/mex.doc.tar.xz +Source215: %{tl_archive_url}/mex.tar.xz +Source216: %{tl_archive_url}/mf2pt1.doc.tar.xz +Source217: %{tl_archive_url}/mf2pt1.tar.xz +Source218: %{tl_archive_url}/mflua.tar.xz +Source219: %{tl_archive_url}/mfware.doc.tar.xz +Source220: %{tl_archive_url}/mfware.tar.xz +Source221: %{tl_archive_url}/mkgrkindex.doc.tar.xz +Source222: %{tl_archive_url}/mkgrkindex.tar.xz +Source223: %{tl_archive_url}/mkjobtexmf.doc.tar.xz +Source224: %{tl_archive_url}/mkjobtexmf.tar.xz +Source225: %{tl_archive_url}/mkpic.doc.tar.xz +Source226: %{tl_archive_url}/mkpic.tar.xz +Source227: %{tl_archive_url}/mltex.doc.tar.xz +Source228: %{tl_archive_url}/mltex.tar.xz +Source229: %{tl_archive_url}/mptopdf.doc.tar.xz +Source230: %{tl_archive_url}/mptopdf.tar.xz +Source231: %{tl_archive_url}/m-tx.doc.tar.xz +Source232: %{tl_archive_url}/m-tx.tar.xz +Source233: %{tl_archive_url}/multibibliography.doc.tar.xz +Source234: %{tl_archive_url}/multibibliography.tar.xz +Source235: %{tl_archive_url}/musixtex.doc.tar.xz +Source236: %{tl_archive_url}/musixtex.tar.xz +Source237: %{tl_archive_url}/musixtnt.doc.tar.xz +Source238: %{tl_archive_url}/musixtnt.tar.xz +Source239: %{tl_archive_url}/omegaware.doc.tar.xz +Source240: %{tl_archive_url}/patgen.doc.tar.xz +Source241: %{tl_archive_url}/patgen.tar.xz +Source242: %{tl_archive_url}/pax.doc.tar.xz +Source243: %{tl_archive_url}/pax.tar.xz +Source244: %{tl_archive_url}/pdfbook2.doc.tar.xz +Source245: %{tl_archive_url}/pdfbook2.tar.xz +Source246: %{tl_archive_url}/pdfcrop.doc.tar.xz +Source247: %{tl_archive_url}/pdfcrop.tar.xz +Source248: %{tl_archive_url}/pdfjam.doc.tar.xz +Source249: %{tl_archive_url}/pdfjam.tar.xz +Source250: %{tl_archive_url}/pdflatexpicscale.doc.tar.xz +Source251: %{tl_archive_url}/pdflatexpicscale.tar.xz +Source252: %{tl_archive_url}/pdftex.doc.tar.xz +Source253: %{tl_archive_url}/pdftex.tar.xz +Source254: %{tl_archive_url}/pdftex-quiet.doc.tar.xz +Source255: %{tl_archive_url}/pdftex-quiet.tar.xz +Source256: %{tl_archive_url}/pdfxup.doc.tar.xz +Source257: %{tl_archive_url}/pdfxup.tar.xz +Source258: %{tl_archive_url}/pedigree-perl.doc.tar.xz +Source259: %{tl_archive_url}/pedigree-perl.tar.xz +Source260: %{tl_archive_url}/perltex.doc.tar.xz +Source261: %{tl_archive_url}/perltex.tar.xz +Source262: %{tl_archive_url}/petri-nets.doc.tar.xz +Source263: %{tl_archive_url}/petri-nets.tar.xz +Source264: %{tl_archive_url}/pfarrei.doc.tar.xz +Source265: %{tl_archive_url}/pfarrei.tar.xz +Source266: %{tl_archive_url}/pkfix.doc.tar.xz +Source267: %{tl_archive_url}/pkfix-helper.doc.tar.xz +Source268: %{tl_archive_url}/pkfix-helper.tar.xz +Source269: %{tl_archive_url}/pkfix.tar.xz +Source270: %{tl_archive_url}/pmxchords.doc.tar.xz +Source271: %{tl_archive_url}/pmxchords.tar.xz +Source272: %{tl_archive_url}/pmx.doc.tar.xz +Source273: %{tl_archive_url}/pmx.tar.xz +Source274: %{tl_archive_url}/ps2eps.doc.tar.xz +Source275: %{tl_archive_url}/ps2eps.tar.xz +Source276: %{tl_archive_url}/ps2pk.doc.tar.xz +Source277: %{tl_archive_url}/ps2pk.tar.xz +Source278: %{tl_archive_url}/pst2pdf.doc.tar.xz +Source279: %{tl_archive_url}/pst2pdf.tar.xz +Source280: %{tl_archive_url}/pst-pdf.doc.tar.xz +Source281: %{tl_archive_url}/pst-pdf.tar.xz +Source282: %{tl_archive_url}/psutils.doc.tar.xz +Source283: %{tl_archive_url}/psutils.tar.xz +Source284: %{tl_archive_url}/ptex2pdf.doc.tar.xz +Source285: %{tl_archive_url}/ptex2pdf.tar.xz +Source286: %{tl_archive_url}/ptex.doc.tar.xz +Source287: %{tl_archive_url}/ptex-fontmaps.doc.tar.xz +Source288: %{tl_archive_url}/ptex-fontmaps.tar.xz +Source289: %{tl_archive_url}/ptex.tar.xz +Source290: %{tl_archive_url}/purifyeps.doc.tar.xz +Source291: %{tl_archive_url}/purifyeps.tar.xz +Source292: %{tl_archive_url}/pygmentex.doc.tar.xz +Source293: %{tl_archive_url}/pygmentex.tar.xz +Source294: %{tl_archive_url}/pythontex.doc.tar.xz +Source295: %{tl_archive_url}/pythontex.tar.xz +Source296: %{tl_archive_url}/rubik.doc.tar.xz +Source297: %{tl_archive_url}/rubik.tar.xz +Source298: %{tl_archive_url}/seetexk.doc.tar.xz +Source299: %{tl_archive_url}/seetexk.tar.xz +Source300: %{tl_archive_url}/splitindex.doc.tar.xz +Source301: %{tl_archive_url}/splitindex.tar.xz +Source302: %{tl_archive_url}/srcredact.doc.tar.xz +Source303: %{tl_archive_url}/srcredact.tar.xz +Source304: %{tl_archive_url}/sty2dtx.doc.tar.xz +Source305: %{tl_archive_url}/sty2dtx.tar.xz +Source306: %{tl_archive_url}/svn-multi.doc.tar.xz +Source307: %{tl_archive_url}/svn-multi.tar.xz +Source308: %{tl_archive_url}/synctex.doc.tar.xz +Source309: %{tl_archive_url}/synctex.tar.xz +Source310: %{tl_archive_url}/tex4ebook.doc.tar.xz +Source311: %{tl_archive_url}/tex4ebook.tar.xz +Source312: %{tl_archive_url}/tex4ht.doc.tar.xz +Source313: %{tl_archive_url}/tex4ht.tar.xz +Source314: %{tl_archive_url}/texcount.doc.tar.xz +Source315: %{tl_archive_url}/texcount.tar.xz +Source316: %{tl_archive_url}/texdef.doc.tar.xz +Source317: %{tl_archive_url}/texdef.tar.xz +Source318: %{tl_archive_url}/texdiff.doc.tar.xz +Source319: %{tl_archive_url}/texdiff.tar.xz +Source320: %{tl_archive_url}/texdirflatten.doc.tar.xz +Source321: %{tl_archive_url}/texdirflatten.tar.xz +Source322: %{tl_archive_url}/texdoc.doc.tar.xz +Source323: %{tl_archive_url}/tex.doc.tar.xz +Source324: %{tl_archive_url}/texdoc.tar.xz +Source325: %{tl_archive_url}/texdoctk.tar.xz +Source326: %{tl_archive_url}/texdoctk.doc.tar.xz +Source327: %{tl_archive_url}/texfot.doc.tar.xz +Source328: %{tl_archive_url}/texfot.tar.xz +Source329: %{tl_archive_url}/texlive.infra.doc.tar.xz +Source330: %{tl_archive_url}/texlive.infra.tar.xz +Source331: %{tl_archive_url}/texliveonfly.doc.tar.xz +Source332: %{tl_archive_url}/texliveonfly.tar.xz +Source333: %{tl_archive_url}/texlive-scripts.doc.tar.xz +Source334: %{tl_archive_url}/texlive-scripts.tar.xz +Source335: %{tl_archive_url}/texlive-scripts-extra.doc.tar.xz +Source336: %{tl_archive_url}/texlive-scripts-extra.tar.xz +Source337: %{tl_archive_url}/texloganalyser.doc.tar.xz +Source338: %{tl_archive_url}/texloganalyser.tar.xz +Source339: %{tl_archive_url}/texosquery.doc.tar.xz +Source340: %{tl_archive_url}/texosquery.tar.xz +Source341: %{tl_archive_url}/texplate.doc.tar.xz +Source342: %{tl_archive_url}/texplate.tar.xz +Source343: %{tl_archive_url}/texsis.doc.tar.xz +Source344: %{tl_archive_url}/texsis.tar.xz +Source345: %{tl_archive_url}/tex.tar.xz +Source346: %{tl_archive_url}/texware.doc.tar.xz +Source347: %{tl_archive_url}/texware.tar.xz +Source348: %{tl_archive_url}/thumbpdf.doc.tar.xz +Source349: %{tl_archive_url}/thumbpdf.tar.xz +Source350: %{tl_archive_url}/tie.doc.tar.xz +Source351: %{tl_archive_url}/tie.tar.xz +Source352: %{tl_archive_url}/tpic2pdftex.doc.tar.xz +Source353: %{tl_archive_url}/tpic2pdftex.tar.xz +Source354: %{tl_archive_url}/ttfutils.doc.tar.xz +Source355: %{tl_archive_url}/ttfutils.tar.xz +Source356: %{tl_archive_url}/typeoutfileinfo.doc.tar.xz +Source357: %{tl_archive_url}/typeoutfileinfo.tar.xz +Source358: %{tl_archive_url}/ulqda.doc.tar.xz +Source359: %{tl_archive_url}/ulqda.tar.xz +Source360: %{tl_archive_url}/uplatex.doc.tar.xz +Source361: %{tl_archive_url}/uptex.doc.tar.xz +Source362: %{tl_archive_url}/urlbst.doc.tar.xz +Source363: %{tl_archive_url}/urlbst.tar.xz +Source364: %{tl_archive_url}/velthuis.doc.tar.xz +Source365: %{tl_archive_url}/velthuis.tar.xz +Source366: %{tl_archive_url}/vlna.doc.tar.xz +Source367: %{tl_archive_url}/vpe.doc.tar.xz +Source368: %{tl_archive_url}/vpe.tar.xz +Source369: %{tl_archive_url}/web.doc.tar.xz +Source370: %{tl_archive_url}/web.tar.xz +Source371: %{tl_archive_url}/webquiz.doc.tar.xz +Source372: %{tl_archive_url}/webquiz.tar.xz +Source373: %{tl_archive_url}/wordcount.doc.tar.xz +Source374: %{tl_archive_url}/wordcount.tar.xz +Source375: %{tl_archive_url}/xdvi.doc.tar.xz +Source376: %{tl_archive_url}/xdvi.tar.xz +Source377: %{tl_archive_url}/xetex.doc.tar.xz +Source378: %{tl_archive_url}/xetex.tar.xz +Source379: %{tl_archive_url}/xindex.doc.tar.xz +Source380: %{tl_archive_url}/xindex.tar.xz +Source381: %{tl_archive_url}/xindy.doc.tar.xz +Source382: %{tl_archive_url}/xindy.tar.xz +Source383: %{tl_archive_url}/xmltex.doc.tar.xz +Source384: %{tl_archive_url}/xmltex.tar.xz +Source385: %{tl_archive_url}/xpdfopen.doc.tar.xz +Source386: %{tl_archive_url}/yplan.doc.tar.xz +Source387: %{tl_archive_url}/yplan.tar.xz +Source388: %{tl_archive_url}/optex.tar.xz +Source389: %{tl_archive_url}/optex.doc.tar.xz +# 2021 +Source390: %{tl_archive_url}/albatross.tar.xz +Source391: %{tl_archive_url}/albatross.doc.tar.xz +Source392: %{tl_archive_url}/git-latexdiff.tar.xz +Source393: %{tl_archive_url}/git-latexdiff.doc.tar.xz +Source394: %{tl_archive_url}/hyperxmp.tar.xz +Source395: %{tl_archive_url}/hyperxmp.doc.tar.xz +Source396: %{tl_archive_url}/light-latex-make.tar.xz +Source397: %{tl_archive_url}/light-latex-make.doc.tar.xz +Source398: %{tl_archive_url}/spix.tar.xz +Source399: %{tl_archive_url}/spix.doc.tar.xz +Source400: %{tl_archive_url}/tikztosvg.tar.xz +Source401: %{tl_archive_url}/tikztosvg.doc.tar.xz +Source402: %{tl_archive_url}/xml2pmx.tar.xz +Source403: %{tl_archive_url}/xml2pmx.doc.tar.xz +Source404: %{tl_archive_url}/luajittex.doc.tar.xz +Source405: %{tl_archive_url}/pdftosrc.doc.tar.xz +# 2022 +Source406: %{tl_archive_url}/citation-style-language.tar.xz +Source407: %{tl_archive_url}/citation-style-language.doc.tar.xz +Source408: %{tl_archive_url}/hitex.tar.xz +Source409: %{tl_archive_url}/hitex.doc.tar.xz +Source410: %{tl_archive_url}/luafindfont.doc.tar.xz +Source411: %{tl_archive_url}/optexcount.tar.xz +Source412: %{tl_archive_url}/optexcount.doc.tar.xz +Source413: %{tl_archive_url}/texlogfilter.doc.tar.xz +Source414: %{tl_archive_url}/texlogsieve.doc.tar.xz +Source415: %{tl_archive_url}/texlogsieve.tar.xz +# 2023 +Source416: %{tl_archive_url}/digestif.tar.xz +Source417: %{tl_archive_url}/digestif.doc.tar.xz +Source418: %{tl_archive_url}/bibcop.tar.xz +Source419: %{tl_archive_url}/bibcop.doc.tar.xz +Source420: %{tl_archive_url}/pagelayout.tar.xz +Source421: %{tl_archive_url}/pagelayout.doc.tar.xz +#Source422: %{tl_archive_url}/texaccents.tar.xz +#Source423: %{tl_archive_url}/texaccents.doc.tar.xz +Source424: %{tl_archive_url}/upmendex.doc.tar.xz +#Source425: %{tl_archive_url}/texaccents.source.tar.xz + +# 2025 +Source426: %{tl_archive_url}/aomart.tar.xz +Source427: %{tl_archive_url}/aomart.doc.tar.xz +Source428: %{tl_archive_url}/bookshelf.tar.xz +Source429: %{tl_archive_url}/bookshelf.doc.tar.xz +Source430: %{tl_archive_url}/easydtx.tar.xz +Source431: %{tl_archive_url}/easydtx.doc.tar.xz +Source432: %{tl_archive_url}/eolang.tar.xz +Source433: %{tl_archive_url}/eolang.doc.tar.xz +Source434: %{tl_archive_url}/expltools.tar.xz +Source435: %{tl_archive_url}/expltools.doc.tar.xz +Source436: %{tl_archive_url}/extractbb.tar.xz +Source437: %{tl_archive_url}/extractbb.doc.tar.xz +Source438: %{tl_archive_url}/l3sys-query.tar.xz +Source439: %{tl_archive_url}/l3sys-query.doc.tar.xz +Source440: %{tl_archive_url}/markdown.tar.xz +Source441: %{tl_archive_url}/markdown.doc.tar.xz +Source442: %{tl_archive_url}/memoize.tar.xz +Source443: %{tl_archive_url}/memoize.doc.tar.xz +Source444: %{tl_archive_url}/minted.tar.xz +Source445: %{tl_archive_url}/minted.doc.tar.xz +Source446: %{tl_archive_url}/ppmcheckpdf.tar.xz +Source447: %{tl_archive_url}/ppmcheckpdf.doc.tar.xz +Source448: %{tl_archive_url}/runtexshebang.tar.xz +Source449: %{tl_archive_url}/runtexshebang.doc.tar.xz +Source450: %{tl_archive_url}/sqltex.tar.xz +Source451: %{tl_archive_url}/sqltex.doc.tar.xz +Source452: %{tl_archive_url}/texblend.tar.xz +Source453: %{tl_archive_url}/texblend.doc.tar.xz +Source454: %{tl_archive_url}/texfindpkg.tar.xz +Source455: %{tl_archive_url}/texfindpkg.doc.tar.xz +Source456: %{tl_archive_url}/typog.tar.xz +Source457: %{tl_archive_url}/typog.doc.tar.xz + +Patch1: tl-kpfix.patch +Patch2: tl-format.patch +Patch5: texlive-2016-kpathsea-texlive-path.patch +# fixes from arch and upstream texlive +Patch7: texlive-20210325-new-poppler.patch +# fix texmf.cnf so that it finds texinfo bits in Fedora +Patch8: texlive-20230311-texinfo-path-fix.patch +# These tests only fail on 32 bit arches with gcc8 +Patch11: texlive-20220321-disable-more-failing-tests.patch +# Another test which fails on 32 bit arches (in F30+) +# probably because of stricter malloc checks in glibc. +# https://bugzilla.redhat.com/show_bug.cgi?id=1631847 +# Filed issue upstream, no resolution yet. +Patch15: texlive-base-20180414-disable-omegafonts-check-test.patch +# fix annocheck issue detected by rpmdiff +Patch17: texlive-20180414-annocheck.patch +Patch18: texlive-20210325-poppler-0.73.patch +# Fix libgs detection in configure/configure.ac in dvisvgm +# Patch20: texlive-20190410-dvisvgm-fix-libgs-detection.patch +# Since we need to include tlmgr.pl for texconfig +# lets try to keep people from shooting themselves with it +Patch21: texlive-20190410-tlmgr-ignore-warning.patch +Patch23: texlive-20210325-poppler-0.84.patch +# Fixes for poppler 0.90 (f33+) +Patch29: texlive-20200327-poppler-0.90.patch +# Fix pdflatex run out of memory +Patch30: texlive-base-20220321-out-of-memory.patch +# Fix configure to properly detect poppler +Patch31: texlive-base-20210325-configure-poppler-xpdf-fix.patch + +# Just remove obsolete decRefCnt check from configure, valid in either case. +Patch32: texlive-base-20220321-xpdf-no-GfxFont-decRefCnt.patch + +# Remove deprecated setpdfwrite ghostscript call +# Patch33: texlive-base-20210325-no-setpdfwrite.patch + +# Poppler 22 +Patch34: texlive-base-20210325-poppler-22.01.0.patch +# Fix crash in handling Group +Patch35: texlive-base-20210325-pdftoepdf-fix-crash.patch +# Poppler 22.08.0 +Patch36: texlive-base-20220321-poppler-22.08.0.patch + +# libpaper v2 changes +# 1. one psutils test needs adjustment, see https://github.com/rrthomas/libpaper/issues/23 +Patch37: texlive-base-libpaperv2.patch + +# Fix issue where off_t could be set incorrectly on i686 due to order of header load +Patch44: texlive-base-20220321-pdf-header-order-fix.patch + +# Fix texmfcnf.lua for Fedora layout (thanks to Preining Norbert) +Patch45: texlive-fedora-texmfcnf.lua.patch + +# Fix interpreter on perl scripts (thanks again to Debian) +Patch46: texlive-base-20230311-fix-scripts.patch + +# fix buid error with gcc-15 +Patch49: texlive-2023-gcc15-ftbfs.patch + +# Can't do this because it causes everything else to be noarch +# BuildArch: noarch +BuildRequires: make +BuildRequires: gcc gcc-c++ +BuildRequires: xz libXaw-devel libXi-devel ncurses-devel bison flex file perl(Digest::MD5) texinfo gcc-c++ +BuildRequires: gd-devel +BuildRequires: teckit-devel >= 2.5.7 +BuildRequires: freetype-devel libpng-devel zlib-devel t1utils +%if %{with poppler} +BuildRequires: poppler-devel +%else +#BuildRequires: xpdf-devel >= 4.03 +BuildRequires: glib2-devel fontconfig-devel +%endif +BuildRequires: zziplib-devel libicu-devel cairo-devel harfbuzz-devel perl-generators pixman-devel graphite2-devel +BuildRequires: ghostscript-devel +BuildRequires: libpaper-devel potrace-devel autoconf automake libtool +BuildRequires: gmp-devel mpfr-devel +# This is really for macros. +BuildRequires: python3-devel +BuildRequires: python3-setuptools +%if %{without bootstrap} +# This is for xindy +BuildRequires: clisp-devel +BuildRequires: texlive-cyrillic, texlive-latex, texlive-metafont, texlive-cm-super, texlive-ec +%endif +# This is temporary to fix build while missing kpathsea dep is active +BuildRequires: texlive-texlive-scripts +# This is needed for a test +BuildRequires: texlive-amsfonts +# RPATH DIE DIE DIE +BuildRequires: chrpath +# Break an ugly dep loop +BuildRequires: tex(expl3.sty) +#BuildRequires: texlive-l3packages +BuildRequires: texlive-collection-basic texlive-collection-latex texlive-collection-latexrecommended texlive-collection-fontsrecommended + +# Cleanup Provides/Obsoletes +# texlive-cjk-gs-integrate (depackaged 2018-03-09) +Provides: texlive-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate <= 7:20170520 +Provides: tex-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Obsoletes: tex-cjk-gs-integrate <= 7:20170520 +Provides: texlive-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-bin <= 7:20170520 +Obsoletes: tex-cjk-gs-integrate-bin <= 7:20170520 +Provides: texlive-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-doc <= 7:20170520 +##Provides: perl(tools) %description The TeX Live software distribution offers a complete TeX system for a @@ -463,17 +623,21 @@ of TeX macros and font libraries. The distribution includes extensive general documentation about TeX, as well as the documentation for the included software packages. -%package -n texlive-a2ping -Provides: tex-a2ping = %{epoch}:20210325-%{release} -Provides: texlive-a2ping-bin = %{epoch}:20210325-%{release} -Provides: tex-a2ping-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-a2ping-bin < 7:20180414 -License: GPL+ -Summary: Advanced PS, PDF, EPS converter -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-a2ping +%package -n %{shortname}-a2ping +Version: svn52964 +Provides: texlive-a2ping = %{epoch}:%{source_date}-%{release} +Provides: tex-a2ping = %{epoch}:%{source_date}-%{release} +Provides: texlive-a2ping-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-a2ping-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-a2ping-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Advanced PS, PDF, EPS converter +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-a2ping a2ping is a Perl script command line utility written for Unix that converts many raster image and vector graphics formats to EPS or PDF and other page description formats. Accepted input @@ -485,25 +649,28 @@ level work to Ghostscript (GS), pdftops and sam2p. a2ping fixes many glitches during the EPS to EPS conversion, so its output is often more compatible and better embeddable than its input. -%package -n texlive-accfonts -Provides: tex-accfonts = %{epoch}:20210325-%{release} -Provides: texlive-accfonts-bin = %{epoch}:20210325-%{release} -Provides: tex-accfonts-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-accfonts-bin < 7:20180414 -Provides: tex-accfonts-doc = %{epoch}:20210325-%{release} -Provides: texlive-accfonts-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-accfonts-doc < 7:20180414 -License: GPL+ -Summary: Utilities to derive new fonts from existing ones -Requires: texlive-base texlive-kpathsea -Provides: tex(CSX.def) = %{epoch}:20210325-%{release} -Provides: tex(ISO-Latin1.def) = %{epoch}:20210325-%{release} -Provides: tex(ISO-Latin2.def) = %{epoch}:20210325-%{release} -Provides: tex(IndUni_Omega.def) = %{epoch}:20210325-%{release} -Provides: tex(Norman.def) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-accfonts +%package -n %{shortname}-accfonts +Version: svn18835 +Provides: texlive-accfonts = %{epoch}:%{source_date}-%{release} +Provides: tex-accfonts = %{epoch}:%{source_date}-%{release} +Provides: texlive-accfonts-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-accfonts-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-accfonts-bin < 7:20170520 +Provides: tex-accfonts-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-accfonts-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-accfonts-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Utilities to derive new fonts from existing ones +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(CSX.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ISO-Latin1.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ISO-Latin2.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(IndUni_Omega.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(Norman.def) = %{epoch}:%{source_date}-%{release} +BuildArch: noarch + +%description -n %{shortname}-accfonts The accfonts package contains three utilities to permit easy manipulation of fonts, in particular the creation of unusual accented characters. Mkt1font works on Adobe Type 1 fonts, @@ -518,91 +685,129 @@ of kerning information for new characters; mkt1font also generates suitable "hints" to enhance quality at small sizes or poor resolutions. The programs are written in Perl. -%package -n texlive-adhocfilelist -Provides: tex-adhocfilelist = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-adhocfilelist-bin = %{epoch}:20210325-%{release} -Provides: tex-adhocfilelist-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-adhocfilelist-bin < 7:20180414 -Provides: tex-adhocfilelist-doc = %{epoch}:20210325-%{release} -Provides: texlive-adhocfilelist-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-adhocfilelist-doc < 7:20180414 -Summary: '\listfiles' entries from the command line -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-adhocfilelist +%package -n %{shortname}-adhocfilelist +Version: svn29349 +Provides: texlive-adhocfilelist = %{epoch}:%{source_date}-%{release} +Provides: tex-adhocfilelist = %{epoch}:%{source_date}-%{release} +Provides: texlive-adhocfilelist-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-adhocfilelist-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-adhocfilelist-bin < 7:20170520 +Provides: tex-adhocfilelist-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-adhocfilelist-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-adhocfilelist-doc < 7:20170520 +License: LPPL-1.3c +Summary: '\listfiles' entries from the command line +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-adhocfilelist The package provides a Unix shell script to display a list of LaTeX \Provides...-command contexts on screen. Provision is made for controlling the searches that the package does. The package was developed on a Unix-like system, using (among other things) the gnu variant of the find command. -%package -n texlive-afm2pl -Provides: tex-afm2pl = %{epoch}:20210325-%{release} -Provides: texlive-afm2pl-bin = %{epoch}:20210325-%{release} -Provides: tex-afm2pl-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-afm2pl-bin < 7:20180414 -Summary: afm2pl package -Requires: texlive-base texlive-kpathsea -Provides: tex(afm2pl-ot1.enc) = %{epoch}:20210325-%{release} -Provides: tex(afm2pl-ot1ital.enc) = %{epoch}:20210325-%{release} -Provides: tex(afm2pl-ot1tt.enc) = %{epoch}:20210325-%{release} -Provides: tex(afm2pl-texnanlc.enc) = %{epoch}:20210325-%{release} -Provides: tex(afm2pl-texnanuc.enc) = %{epoch}:20210325-%{release} -Provides: tex(makesc8y.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-afm2pl -afm2pl package. - -%package -n texlive-albatross -Summary: Find fonts that contain a given glyph -License: BSD -Requires: texlive-base texlive-kpathsea - -%description -n texlive-albatross +%package -n %{shortname}-afm2pl +Version: svn66186 +Provides: texlive-afm2pl = %{epoch}:%{source_date}-%{release} +Provides: tex-afm2pl = %{epoch}:%{source_date}-%{release} +Provides: texlive-afm2pl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-afm2pl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-afm2pl-bin < 7:20170520 +License: GPL-2.0-only +Summary: Convert AFM to TeX property list (.pl) metrics +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(afm2pl-ot1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-ot1ital.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-ot1tt.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-texnanlc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-texnanuc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(makesc8y.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-afm2pl +afm2pl is an open source font utility for easy installation of commercial fonts +in TeX. Afm2pl is meant to be a partial alternative to afm2tfm, on which it is +based. Its default action is to convert an afm file to a pl file, which in its +turn can be converted to a tfm file, with preservation of kerns and ligatures +(with afm2tfm, preserving kerns and ligatures is possible only in a roundabout +way). + +%package -n %{shortname}-albatross +Version: svn65647 +Provides: texlive-albatross = %{epoch}:%{source_date}-%{release} +Summary: Find fonts that contain a given glyph +License: BSD-3-Clause +Requires: texlive-base texlive-kpathsea + +%description -n %{shortname}-albatross This is a command line tool for finding fonts that contain a given (Unicode) glyph. It relies on Fontconfig. -%package -n texlive-aleph -Provides: tex-aleph = %{epoch}:20210325-%{release} -Provides: texlive-aleph-bin = %{epoch}:20210325-%{release} -Provides: tex-aleph-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-aleph-bin < 7:20180414 -Provides: tex-aleph-doc = %{epoch}:20210325-%{release} -Provides: texlive-aleph-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-aleph-doc < 7:20180414 -Summary: Extended TeX -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-aleph +Version: svn66203 +Provides: texlive-aleph = %{epoch}:%{source_date}-%{release} +Provides: tex-aleph = %{epoch}:%{source_date}-%{release} +Provides: texlive-aleph-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-aleph-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-aleph-bin < 7:20170520 +Provides: tex-aleph-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-aleph-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-aleph-doc < 7:20170520 +Summary: Extended TeX +# NOTE: The tlpkg is wrong, it says "GPL" +# Source code is definitely LGPL-2.1-or-later +License: LGPL-2.1-or-later +Requires: texlive-base +Requires: texlive-kpathsea Requires(post,postun): coreutils -Requires: texlive-latex texlive-plain texlive-lambda texlive-cm texlive-hyphen-base texlive-knuth-lib -Requires: texlive-knuth-lib texlive-antomega texlive-latex-fonts texlive-omega texlive-l3kernel - -%description -n texlive-aleph +Requires: texlive-latex +Requires: texlive-plain +Requires: texlive-lambda +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-antomega +Requires: texlive-latex-fonts +Requires: texlive-omega +Requires: texlive-l3kernel + +%description -n %{shortname}-aleph An development of omega, using most of the extensions of TeX itself developed for e-TeX. -%package -n texlive-amstex -Provides: tex-amstex = %{epoch}:20210325-%{release} -Provides: texlive-amstex-bin = %{epoch}:20210325-%{release} -Provides: tex-amstex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-amstex-bin < 7:20180414 -Provides: tex-amstex-doc = %{epoch}:20210325-%{release} -Provides: texlive-amstex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-amstex-doc < 7:20180414 -Summary: American Mathematical Society plain TeX macros -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-amstex +Version: svn66186 +Provides: texlive-amstex = %{epoch}:%{source_date}-%{release} +Provides: tex-amstex = %{epoch}:%{source_date}-%{release} +Provides: texlive-amstex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-amstex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-amstex-bin < 7:20170520 +Provides: tex-amstex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-amstex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-amstex-doc < 7:20170520 +License: LPPL-1.3c +Summary: American Mathematical Society plain TeX macros +Requires: texlive-base +Requires: texlive-kpathsea Requires(post,postun): coreutils -Requires: texlive-tex texlive-amsfonts texlive-cm texlive-hyphen-base texlive-knuth-lib -Requires: texlive-plain -Provides: tex(amsppt.sty) = %{epoch}:20210325-%{release} -Provides: tex(amsppt1.tex) = %{epoch}:20210325-%{release} -Provides: tex(amstex.bug) = %{epoch}:20210325-%{release} -Provides: tex(amstex.tex) = %{epoch}:20210325-%{release} -Provides: tex(amstex.ini) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-amstex +Requires: texlive-tex +Requires: texlive-amsfonts +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Provides: tex(amsppt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(amsppt1.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.bug) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.ini) = %{epoch}:%{source_date}-%{release} +# symlinks only +BuildArch: noarch + +%description -n %{shortname}-amstex AMSTeX is a TeX macro package, originally written by Michael Spivak for the American Mathematical Society (AMS) during 1983- 1985 and is described in the book 'The Joy of TeX'. It is based @@ -611,61 +816,89 @@ professional-looking maths formulas with less burden on authors. More recently, the focus of attention has switched to amslatex, but AMSTeX remains as a working system. -%package -n texlive-arara -Provides: tex-arara = %{epoch}:20210325-%{release} -Provides: texlive-arara-bin = %{epoch}:20210325-%{release} -Provides: tex-arara-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-arara-bin < 7:20180414 -Provides: tex-arara-doc = %{epoch}:20210325-%{release} -Provides: texlive-arara-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-arara-doc < 7:20180414 -License: BSD -Summary: Automation of LaTeX compilation -Requires: texlive-base texlive-kpathsea -Provides: bundled(slf4j) = 1.6.4 bundled(apache-commons-collections) = 3.2.1 -Provides: bundled(apache-commons-exec) = 1.1 bundled(apache-commons-lang3) = 3.1 -Provides: bundled(apache-commons-cli) = 1.2 bundled(mvel2) = 2.0.19 -Provides: bundled(snakeyaml) = 1.11 bunbled(logback) = 1.0.1 -BuildArch: noarch - -%description -n texlive-arara +%package -n %{shortname}-arara +Version: svn63760 +Provides: texlive-arara = %{epoch}:%{source_date}-%{release} +Provides: tex-arara = %{epoch}:%{source_date}-%{release} +Provides: texlive-arara-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-arara-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-arara-bin < 7:20170520 +Provides: tex-arara-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-arara-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-arara-doc < 7:20170520 +License: BSD-3-Clause +Summary: Automation of LaTeX compilation +Requires: texlive-base +Requires: texlive-kpathsea +Provides: bundled(slf4j) = 1.7.36 +Provides: bundled(annotations) = 13.0 +Provides: bundled(apache-commons-collections) = 3.2.1 +Provides: bundled(apache-commons-exec) = 1.1 +Provides: bundled(apache-commons-lang3) = 3.1 +Provides: bundled(apache-commons-cli) = 1.2 +Provides: bundled(log4j) = 2.17.2 +Provides: bundled(mvel2) = 2.4.14 +Provides: bundled(snakeyaml-engine) = 2.3 +Provides: bundled(logback) = 1.0.1 +# shell +BuildArch: noarch + +%description -n %{shortname}-arara Arara is comparable with other well-known compilation tools like latexmk and rubber. The key difference is that that arara determines its actions from metadata in the source code, rather than relying on indirect resources, such as log file analysis. -%package -n texlive-attachfile2 -Provides: tex-attachfile2 = %{epoch}:20210325-%{release} -Provides: tex-attachfile2-bin = %{epoch}:20210325-%{release} -Provides: texlive-attachfile2-bin = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Summary: Attach files into PDF -Requires: texlive-base -Requires: texlive-kpathsea -Provides: tex(attachfile2.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-attachfile2 +%package -n %{shortname}-attachfile2 +Version: svn57959 +Provides: texlive-attachfile2 = %{epoch}:%{source_date}-%{release} +Provides: tex-attachfile2 = %{epoch}:%{source_date}-%{release} +Provides: tex-attachfile2-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-attachfile2-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Attach files into PDF +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(color.sty) +Requires: tex(hycolor.sty) +Requires: tex(hyperref.sty) +Requires: tex(iftex.sty) +Requires: tex(infwarerr.sty) +Requires: tex(keyval.sty) +Requires: tex(kvoptions.sty) +Requires: tex(ltxcmds.sty) +Requires: tex(pdfescape.sty) +Requires: tex(pdftexcmds.sty) +Provides: tex(attachfile2.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-attachfile2 This package can be used to attach files to a PDF document. It is a further development of Scott Pakin's package attachfile for pdfTeX. Apart from bug fixes, this package adds support for dvips, some new options, and gets and writes meta information data about the attached files. -%package -n texlive-authorindex -Provides: tex-authorindex = %{epoch}:20210325-%{release} -Provides: texlive-authorindex-bin = %{epoch}:20210325-%{release} -Provides: tex-authorindex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-authorindex-bin < 7:20180414 -Provides: tex-authorindex-doc = %{epoch}:20210325-%{release} -Provides: texlive-authorindex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-authorindex-doc < 7:20180414 -Summary: Index citations by author names -Requires: texlive-base texlive-kpathsea -Provides: tex(authorindex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-authorindex +%package -n %{shortname}-authorindex +Version: svn51757 +Provides: texlive-authorindex = %{epoch}:%{source_date}-%{release} +Provides: tex-authorindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-authorindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-authorindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-authorindex-bin < 7:20170520 +Provides: tex-authorindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-authorindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-authorindex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Index citations by author names +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(authorindex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-authorindex This package allows the user to create an index of all authors cited in a LaTeX document. Each author entry in the index contains the pages where these citations occur. Alternatively, @@ -674,19 +907,21 @@ the references rather than the text pages. The package relies on BibTeX being used to handle citations. Additionally, it requires Perl (version 5 or higher). -%package -n texlive-autosp -Provides: tex-autosp = %{epoch}:20210325-%{release} -Provides: texlive-autosp-bin = %{epoch}:20210325-%{release} -Provides: tex-autosp-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-autosp-bin < 7:20180414 -Provides: tex-autosp-doc = %{epoch}:20210325-%{release} -Provides: texlive-autosp-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-autosp-doc < 7:20180414 -License: GPLv2 -Summary: A Preprocessor that generates note-spacing commands for MusiXTeX scores -Requires: texlive-base - -%description -n texlive-autosp +%package -n %{shortname}-autosp +Version: svn58211 +Provides: texlive-autosp = %{epoch}:%{source_date}-%{release} +Provides: tex-autosp = %{epoch}:%{source_date}-%{release} +Provides: texlive-autosp-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-autosp-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-autosp-bin < 7:20170520 +Provides: tex-autosp-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-autosp-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-autosp-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: A Preprocessor that generates note-spacing commands for MusiXTeX scores +Requires: texlive-base + +%description -n %{shortname}-autosp This program simplifies the creation of MusiXTeX scores by converting (non-standard) commands of the form \anotes ... \en into one or more conventional note-spacing commands, as @@ -697,15 +932,23 @@ note-spacing changes within the part or spacing requirements of other parts. For example, \anotes\qa J\qa K&\ca l\qa m\ca n\en generates \Notes\qa J\sk\qa K\sk&\ca l\qa m\sk\ca n\en . -%package -n texlive-axodraw2 -Provides: tex-axodraw2 = %{epoch}:20210325-%{release} -Provides: texlive-axodraw2-bin = %{epoch}:20210325-%{release} -License: GPLv3 -Summary: Feynman diagrams in a LaTeX document -Requires: texlive-base texlive-kpathsea -Provides: tex(axodraw2.sty) = %{epoch}:20210325-%{release} - -%description -n texlive-axodraw2 +%package -n %{shortname}-axodraw2 +Version: svn58155 +Provides: texlive-axodraw2 = %{epoch}:%{source_date}-%{release} +Provides: tex-axodraw2 = %{epoch}:%{source_date}-%{release} +Provides: texlive-axodraw2-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: Feynman diagrams in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(color.sty) +Requires: tex(graphicx.sty) +Requires: tex(ifthen.sty) +Requires: tex(ifxetex.sty) +Requires: tex(keyval.sty) +Provides: tex(axodraw2.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-axodraw2 This package defines macros for drawing Feynman graphs in LaTeX documents. It is an important update of the axodraw package, but since it is not completely backwards compatible, we have @@ -719,15 +962,19 @@ calculations needed for the pdf code inserted in the output file. The processing involves a run of pdfLaTeX, a run of axohelp, and then another run of pdfLaTeX. -%package -n texlive-bib2gls -Provides: tex-bib2gls = %{epoch}:20210325-%{release} -Provides: texlive-bib2gls-bin = %{epoch}:20210325-%{release} -License: GPLv3+ -Summary: Convert .bib files to glossaries-extra.sty resource files -Requires: texlive-base -BuildArch: noarch +%package -n %{shortname}-bib2gls +Version: svn65104 +Provides: texlive-bib2gls = %{epoch}:%{source_date}-%{release} +Provides: tex-bib2gls = %{epoch}:%{source_date}-%{release} +Provides: texlive-bib2gls-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: Convert .bib files to glossaries-extra.sty resource files +Requires: texlive-base +Requires: texlive-glossaries-extra +# Java and shell +BuildArch: noarch -%description -n texlive-bib2gls +%description -n %{shortname}-bib2gls This Java command line application may be used to extract glossary information stored in a .bib file and convert it into glossary entry definition commands. This application should be @@ -743,102 +990,144 @@ convertgls2bib can be used to convert existing .tex files containing definitions (\newglossaryentry etc.) to the .bib format required by bib2gls. -%package -n texlive-bibexport -Provides: tex-bibexport = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-bibexport-bin = %{epoch}:20210325-%{release} -Provides: tex-bibexport-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibexport-bin < 7:20180414 -Provides: tex-bibexport-doc = %{epoch}:20210325-%{release} -Provides: texlive-bibexport-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibexport-doc < 7:20180414 -Summary: Extract a BibTeX file based on a .aux file -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-bibexport +%package -n %{shortname}-bibcop +Summary: Style checker for .bib files +Version: svn65816 +License: MIT +Requires: texlive-base texlive-kpathsea +Requires: tex(iexec.sty) +Requires: tex(pgfopts.sty) +Provides: tex(bibcop.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-bibcop +This LaTeX package checks the quality of your .bib file and +emits warning messages if any issues are found. For this, the +TeX processor must be run with the --shell-escape option, and +Perl must be installed. bibcop.pl can also be used as a +standalone command line tool. The package does not work on +Windows. + +%package -n %{shortname}-bibexport +Version: svn50677 +Provides: texlive-bibexport = %{epoch}:%{source_date}-%{release} +Provides: tex-bibexport = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibexport-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibexport-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibexport-bin < 7:20170520 +Provides: tex-bibexport-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibexport-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibexport-doc < 7:20170520 +License: LPPL-1.3c +Summary: Extract a BibTeX file based on a .aux file +Requires: texlive-base +Requires: texlive-kpathsea +BuildArch: noarch + +%description -n %{shortname}-bibexport A Bourne shell script that uses BibTeX to extract bibliography entries that are \cite'd in a document. It can also expand a BibTeX file, expanding the abbreviations (other than the built- in ones like month names) and followig the cross-references. -%package -n texlive-bibtex -Provides: tex-bibtex = %{epoch}:20210325-%{release} -Provides: texlive-bibtex-bin = %{epoch}:20210325-%{release} -Provides: tex-bibtex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtex-bin < 7:20180414 -Provides: tex-bibtex-doc = %{epoch}:20210325-%{release} -Provides: texlive-bibtex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtex-doc < 7:20180414 -Summary: Process bibliographies for LaTeX, etc -Requires: texlive-base texlive-kpathsea -Provides: tex(apalike.sty) = %{epoch}:20210325-%{release} -Provides: tex(apalike.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-bibtex +%package -n %{shortname}-bibtex +Version: svn66186 +Provides: texlive-bibtex = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex-bin < 7:20170520 +Provides: tex-bibtex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex-doc < 7:20170520 +License: Knuth-CTAN +Summary: Process bibliographies (bib files) for LaTeX or other formats +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(apalike.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(apalike.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-bibtex BibTeX allows the user to store his citation data in generic form, while printing citations in a document in the form specified by a BibTeX style, to be specified in the document itself (one often needs a LaTeX citation-style package, such as -natbib as well). BibTeX itself is an ASCII-only program; there -is, however, a version that copes with 8-bit character sets. -However, BibTeX's facilities rapidly run out as one moves away -from simple ASCII (for example, in the various national sorting -rules for languages expressed in different parts of ISO-8859 -- -the "ISO Latin" series). For more flexibility, the user is -urged to consider using biber with biblatex to typeset its -output. In fact, it is best to avoid BibTeX in favour of biber -and biblatex, if at all possible. - -%package -n texlive-bibtexu -Provides: tex-bibtexu = %{epoch}:20210325-%{release} -Provides: texlive-bibtexu-bin = %{epoch}:20210325-%{release} -Provides: tex-bibtexu-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtexu-bin < 7:20180414 -Provides: tex-bibtexu-doc = %{epoch}:20210325-%{release} -Provides: texlive-bibtexu-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtexu-doc < 7:20180414 -Summary: bibtexu package -Requires: texlive-base texlive-kpathsea - -%description -n texlive-bibtexu -bibtexu package. - -%package -n texlive-bibtex8 -Provides: tex-bibtex8 = %{epoch}:20210325-%{release} -Provides: texlive-bibtex8-bin = %{epoch}:20210325-%{release} -Provides: tex-bibtex8-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtex8-bin < 7:20180414 -Provides: tex-bibtex8-doc = %{epoch}:20210325-%{release} -Provides: texlive-bibtex8-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtex8-doc < 7:20180414 -License: GPL+ -Summary: A fully 8-bit adaptation of BibTeX 0.99 -Requires: texlive-base texlive-kpathsea - -%description -n texlive-bibtex8 +natbib, as well). BibTeX knows nothing about Unicode sorting +algorithms or scripts, although it will pass on whatever bytes +it reads. Its descendant bibtexu does support Unicode, via the +ICU library. The older alternative bibtex8 supports 8-bit +character sets. Another Unicode-aware alternative is the +(independently developed) biber program, used with the BibLaTeX +package to typeset its output. + +%package -n %{shortname}-bibtexu +Version: svn66186 +Provides: texlive-bibtexu = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtexu = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtexu-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtexu-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtexu-bin < 7:20170520 +Provides: tex-bibtexu-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtexu-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtexu-doc < 7:20170520 +License: LPPL-1.3c +Summary: BibTeX variant supporting Unicode (UTF-8), via ICU +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-bibtexu +An enhanced, portable C version of BibTeX. Unicode is supported +via the ICU library. Originally written by Yannis Haralambous +and his students, and derived from bibtex8, with substantial +updates from the Japanese TeX Development Community, it is now +maintained as part of TeX Live. + +%package -n %{shortname}-bibtex8 +Version: svn66186 +Provides: texlive-bibtex8 = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex8 = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex8-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex8-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex8-bin < 7:20170520 +Provides: tex-bibtex8-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex8-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex8-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: BibTeX variant supporting 8-bit encodings +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-bibtex8 An enhanced, portable C version of BibTeX. Enhanced by -conversion to "big" (32-bit) capacity, addition of run-time +conversion to larger (32-bit) capacity, addition of run-time selectable capacity and 8-bit support extensions. National character set and sorting order are controlled by an external -configuration file. Various examples are included. - -%package -n texlive-bundledoc -Provides: tex-bundledoc = %{epoch}:20210325-%{release} -Provides: texlive-bundledoc-bin = %{epoch}:20210325-%{release} -Provides: tex-bundledoc-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-bundledoc-bin < 7:20180414 -Provides: tex-bundledoc-doc = %{epoch}:20210325-%{release} -Provides: texlive-bundledoc-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-bundledoc-doc < 7:20180414 -Summary: Bundle together all the files needed to build a LaTeX document -Requires: texlive-base texlive-kpathsea -Provides: tex(miktex.cfg) = %{epoch}:20210325-%{release} -Provides: tex(texlive-unix-arlatex.cfg) = %{epoch}:20210325-%{release} -Provides: tex(texlive-unix.cfg) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-bundledoc +configuration file. Various examples are included. Originally +written by Niel Kempson and Alejandro Aguilar-Sierra, it is now +maintained as part of TeX Live. + +%package -n %{shortname}-bundledoc +Version: svn64620 +Provides: texlive-bundledoc = %{epoch}:%{source_date}-%{release} +Provides: tex-bundledoc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bundledoc-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bundledoc-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bundledoc-bin < 7:20170520 +Provides: tex-bundledoc-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bundledoc-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bundledoc-doc < 7:20170520 +License: LPPL-1.3c +Summary: Bundle together all the files needed to build a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(miktex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(texlive-unix-arlatex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(texlive-unix.cfg) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-bundledoc The bundledoc package is a post-processor for the snapshot package that bundles together all the classes, packages and files needed to build a given LaTeX document. It reads the .dep @@ -851,60 +1140,80 @@ file that contains all of the ancillary files of a LaTeX document, together with the document itself, using the filecontents* environment. -%package -n texlive-cachepic -Provides: tex-cachepic = %{epoch}:20210325-%{release} -Provides: texlive-cachepic-bin = %{epoch}:20210325-%{release} -Provides: tex-cachepic-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cachepic-bin < 7:20180414 -Provides: tex-cachepic-doc = %{epoch}:20210325-%{release} -Provides: texlive-cachepic-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-cachepic-doc < 7:20180414 -Summary: Convert document fragments into graphics -Requires: texlive-base texlive-kpathsea tex(graphicx.sty) tex(verbatim.sty) -Provides: tex(cachepic.sty) = %{epoch}:20210325-%{release} -Provides: tex(prcachepic.def) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-cachepic +%package -n %{shortname}-cachepic +Version: svn26313 +Provides: texlive-cachepic = %{epoch}:%{source_date}-%{release} +Provides: tex-cachepic = %{epoch}:%{source_date}-%{release} +Provides: texlive-cachepic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cachepic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cachepic-bin < 7:20170520 +Provides: tex-cachepic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cachepic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cachepic-doc < 7:20170520 +License: LPPL-1.3c +Summary: Convert document fragments into graphics +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(graphicx.sty) +Requires: tex(verbatim.sty) +Provides: tex(cachepic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(prcachepic.def) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-cachepic The bundle simplifies and automates conversion of document fragments into external EPS or PDF files. The bundle consists of two parts: a LaTeX package that implements a document level interface, and a command line tool (written in lua) that generates the external graphics. -%package -n texlive-checkcites -Provides: tex-checkcites = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-checkcites-bin = %{epoch}:20210325-%{release} -Provides: tex-checkcites-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-checkcites-bin < 7:20180414 -Provides: tex-checkcites-doc = %{epoch}:20210325-%{release} -Provides: texlive-checkcites-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-checkcites-doc < 7:20180414 -Summary: Check citation commands in a document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-checkcites +%package -n %{shortname}-checkcites +Version: svn64155 +Provides: texlive-checkcites = %{epoch}:%{source_date}-%{release} +Provides: tex-checkcites = %{epoch}:%{source_date}-%{release} +Provides: texlive-checkcites-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-checkcites-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checkcites-bin < 7:20170520 +Provides: tex-checkcites-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-checkcites-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checkcites-doc < 7:20170520 +License: LPPL-1.3c +Summary: Check citation commands in a document +Requires: texlive-base +Requires: texlive-kpathsea +# lua script +BuildArch: noarch + +%description -n %{shortname}-checkcites The package provides a lua script written for the sole purpose of detecting undefined and unused references from LaTeX auxiliary or bibliography files. -%package -n texlive-checklistings -Provides: tex-checklistings = %{epoch}:20210325-%{release} -Provides: texlive-checklistings-bin = %{epoch}:20210325-%{release} -Provides: tex-checklistings-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-checklistings-bin < 7:20180414 -Provides: tex-checklistings-doc = %{epoch}:20210325-%{release} -Provides: texlive-checklistings-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-checklistings-doc < 7:20180414 -Summary: Pass verbatim contents through a compiler and reincorporate the resulting output -Requires: texlive-base texlive-kpathsea tex(keyval.sty) tex(kvoptions.sty) tex(fancyvrb.sty) -Requires: tex(color.sty) tex(listings.sty) -Provides: tex(checklistings.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-checklistings +%package -n %{shortname}-checklistings +Version: svn38300 +Provides: texlive-checklistings = %{epoch}:%{source_date}-%{release} +Provides: tex-checklistings = %{epoch}:%{source_date}-%{release} +Provides: texlive-checklistings-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-checklistings-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checklistings-bin < 7:20170520 +Provides: tex-checklistings-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-checklistings-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checklistings-doc < 7:20170520 +License: LPPL-1.3a +Summary: Pass verbatim contents through a compiler and reincorporate the resulting output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(keyval.sty) +Requires: tex(kvoptions.sty) +Requires: tex(fancyvrb.sty) +Requires: tex(color.sty) +Requires: tex(listings.sty) +Provides: tex(checklistings.sty) = %{epoch}:%{source_date}-%{release} +# shell script +BuildArch: noarch + +%description -n %{shortname}-checklistings This package augments the fancyvrb and listings packages to allow the source code they contain to be checked by an external tool (like a compiler). The external tool's messages can be @@ -913,80 +1222,153 @@ package does not focus on a specific programming language, but it is designed to work well with languages and compilers in the ML family. -%package -n texlive-chklref -Provides: tex-chklref = %{epoch}:20210325-%{release} -License: GPLv3 -Summary: Check for problems with labels in LaTeX -Requires: texlive-base -Requires: texlive-kpathsea -Provides: tex(chklref.sty) = %{epoch}:20210325-%{release} +%package -n %{shortname}-chklref +Version: svn52649 +Provides: texlive-chklref = %{epoch}:%{source_date}-%{release} +Provides: tex-chklref = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: Check for problems with labels in LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(afterpackage.sty) +Requires: tex(auxhook.sty) +Requires: tex(currfile.sty) +Provides: tex(chklref.sty) = %{epoch}:%{source_date}-%{release} # perl BuildArch: noarch -%description -n texlive-chklref +%description -n %{shortname}-chklref It is quite common that after modifying a TeX file, many unused labels remain in it. The purpose of chklref is to automatically find these useless labels. It also looks for "non starred" mathematical environments with no labels and advises the user to use a starred version instead. -%package -n texlive-chktex -Provides: tex-chktex = %{epoch}:20210325-%{release} -Provides: texlive-chktex-bin = %{epoch}:20210325-%{release} -Provides: tex-chktex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-chktex-bin < 7:20180414 -Provides: tex-chktex-doc = %{epoch}:20210325-%{release} -Provides: texlive-chktex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-chktex-doc < 7:20180414 -License: GPL+ -Summary: Check for errors in LaTeX documents -Requires: texlive-base texlive-kpathsea - -%description -n texlive-chktex +%package -n %{shortname}-chktex +Version: svn64797 +Provides: texlive-chktex = %{epoch}:%{source_date}-%{release} +Provides: tex-chktex = %{epoch}:%{source_date}-%{release} +Provides: texlive-chktex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-chktex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-chktex-bin < 7:20170520 +Provides: tex-chktex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-chktex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-chktex-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Check for errors in LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-chktex The program reports typographic and other errors in LaTeX documents. Filters are also provided for checking the LaTeX parts of CWEB documents. +%package -n %{shortname}-citation-style-language +Version: svn65878 +Provides: texlive-citation-style-language = %{epoch}:%{source_date}-%{release} +Provides: texlive-citation-style-language-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-citation-style-language-doc = %{epoch}:%{source_date}-%{release} +License: MIT AND CC-BY-SA-3.0 +Summary: Bibliography formatting with Citation Style Language +Requires: texlive-base, texlive-kpathsea +Requires: tex(filehook.sty) +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-lua-uca +Requires: texlive-lualibs +Requires: texlive-luatex +Requires: texlive-luaxml +Requires: tex(url.sty) +Provides: tex(citation-style-language.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch -%package -n texlive-cjkutils -Provides: tex-cjkutils = %{epoch}:20210325-%{release} -Provides: texlive-cjkutils-bin = %{epoch}:20210325-%{release} -Provides: tex-cjkutils-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cjkutils-bin < 7:20180414 -License: GPL-1.0-or-later -Summary: cjkutils package -Requires: texlive-base texlive-kpathsea -Provides: tex(b5ka12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(b5kr12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(b5so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c1so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c2so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c3so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c4so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c5so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c6so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c7so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(csso12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(gsfs14.cfg) = %{epoch}:20210325-%{release} -Provides: tex(j2so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(jsso12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(ksso17.cfg) = %{epoch}:20210325-%{release} - -%description -n texlive-cjkutils +%description -n %{shortname}-citation-style-language +The Citation Style Language (CSL) is an XML-based language that +defines the formats of citations and bibliography. There are +currently thousands of styles in CSL including the most widely +used APA, Chicago, Vancouver, etc. The citation-style-language +package is aimed to provide another reference formatting method +for LaTeX that utilizes the CSL styles. It contains a citation +processor implemented in pure Lua (citeproc-lua) which reads +bibliographic metadata and performs sorting and formatting on +both citations and bibliography according to the selected CSL +style. A LaTeX package (citation-style-language.sty) is +provided to communicate with the processor. + +%if 0 +%package -n %{shortname}-cjk-gs-integrate +Version: svn59705 +Provides: texlive-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Provides: tex-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-bin < 7:20170520 +Provides: tex-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Tools to integrate CJK fonts into Ghostscript +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-cjk-gs-integrate +This script searches a list of directories for CJK fonts, and +makes them available to an installed GhostScript. In the +simplest case with sufficient privileges, a run without +arguments should effect in a complete setup of GhostScript. +%endif + +%package -n %{shortname}-cjkutils +Version: svn60833 +Provides: texlive-cjkutils = %{epoch}:%{source_date}-%{release} +Provides: tex-cjkutils = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjkutils-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjkutils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjkutils-bin < 7:20170520 +License: LPPL-1.3c +Summary: cjkutils package +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(b5ka12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(b5kr12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(b5so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c1so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c2so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c3so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c4so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c5so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c6so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c7so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(csso12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(gsfs14.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(j2so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(jsso12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ksso17.cfg) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-cjkutils cjkutils package. -%package -n texlive-clojure-pamphlet -Provides: tex-clojure-pamphlet = %{epoch}:20210325-%{release} -Provides: texlive-clojure-pamphlet-bin = %{epoch}:20210325-%{release} -Provides: tex-clojure-pamphlet-bin = %{epoch}:20210325-%{release} -License: GPLv3+ -Summary: A simple literate programming tool based on clojure's pamphlet system -Requires: texlive-base -Requires: texlive-kpathsea -Provides: tex(clojure-pamphlet.sty) = %{epoch}:20210325-%{release} +%package -n %{shortname}-clojure-pamphlet +Version: svn60981 +Provides: texlive-clojure-pamphlet = %{epoch}:%{source_date}-%{release} +Provides: tex-clojure-pamphlet = %{epoch}:%{source_date}-%{release} +Provides: texlive-clojure-pamphlet-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-clojure-pamphlet-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: A simple literate programming tool based on clojure's pamphlet system +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(hyperref.sty) +Requires: tex(listings.sty) +Provides: tex(clojure-pamphlet.sty) = %{epoch}:%{source_date}-%{release} +# perl BuildArch: noarch -%description -n texlive-clojure-pamphlet +%description -n %{shortname}-clojure-pamphlet The Clojure pamphlet system is a system based on the Clojure literate system. In the Clojure's pamphlet system you have your main LaTeX file, which can be compiled regularly. This file @@ -998,17 +1380,20 @@ each other by the getchunk command (which will be typesetted accordingly). Finally, the LaTeX file will be run through the tangler to get the desired chunk of code. -%package -n texlive-cluttex -Provides: tex-cluttex = %{epoch}:20210325-%{release} -Provides: texlive-cluttex-bin = %{epoch}:20210325-%{release} -Provides: tex-cluttex-bin = %{epoch}:20210325-%{release} -License: GPLv3 -Summary: An automation tool for running LaTeX -Requires: texlive-base -Requires: texlive-kpathsea +%package -n %{shortname}-cluttex +Version: svn60964 +Provides: texlive-cluttex = %{epoch}:%{source_date}-%{release} +Provides: tex-cluttex = %{epoch}:%{source_date}-%{release} +Provides: texlive-cluttex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cluttex-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: An automation tool for running LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# lua BuildArch: noarch -%description -n texlive-cluttex +%description -n %{shortname}-cluttex This is another tool for the automation of LaTeX document processing, like latexmk or arara. The main feature of this tool is that it does not clutter your working directory with @@ -1019,390 +1404,396 @@ makeglossaries will be executed if a corresponding option is set. Furthermore, cluttex can watch input files for changes (using an external program). -%package -n texlive-context -Provides: tex-context = %{epoch}:20210325-%{release} -License: Public Domain and LPPL-1.3c and GPL-1.0-or-later and MIT and BSD-2-Clause -Provides: texlive-context-bin = %{epoch}:20210325-%{release} -Provides: tex-context-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-context-bin < 7:20180414 -Provides: tex-context-doc = %{epoch}:20210325-%{release} -Provides: texlive-context-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-context-doc < 7:20180414 -Summary: The ConTeXt macro package -Requires: texlive-base texlive-kpathsea texlive-metapost -Requires(post,postun): coreutils -Requires: texlive-pdftex texlive-xetex texlive-luatex texlive-lm texlive-lm-math texlive-amsfonts -Requires: texlive-manfnt-font texlive-mflogo-font texlive-stmaryrd texlive-mptopdf -Requires: ruby tex(pstricks.sty) -Requires: tex(pst-plot.sty) -Provides: tex(notepad++.ini) = %{epoch}:20210325-%{release} -Provides: tex(texworks-setup.ini) = %{epoch}:20210325-%{release} -Provides: tex(tools.ini) = %{epoch}:20210325-%{release} -Provides: tex(TeXworks.ini) = %{epoch}:20210325-%{release} -Provides: tex(scite-context-readme.tex) = %{epoch}:20210325-%{release} -Provides: tex(type-buy.dat) = %{epoch}:20210325-%{release} -Provides: tex(type-fsf.dat) = %{epoch}:20210325-%{release} -Provides: tex(type-ghz.dat) = %{epoch}:20210325-%{release} -Provides: tex(type-tmf.dat) = %{epoch}:20210325-%{release} -Provides: tex(contnav.afm) = %{epoch}:20210325-%{release} -Provides: tex(cmin.enc) = %{epoch}:20210325-%{release} -Provides: tex(cmit.enc) = %{epoch}:20210325-%{release} -Provides: tex(cmitt.enc) = %{epoch}:20210325-%{release} -Provides: tex(cmrm.enc) = %{epoch}:20210325-%{release} -Provides: tex(cmsc.enc) = %{epoch}:20210325-%{release} -Provides: tex(cmtt.enc) = %{epoch}:20210325-%{release} -Provides: tex(ec-2004.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-8r.enc) = %{epoch}:20210325-%{release} -Provides: tex(teff-trinite.enc) = %{epoch}:20210325-%{release} -Provides: tex(contnav.map) = %{epoch}:20210325-%{release} -Provides: tex(8r-base.map) = %{epoch}:20210325-%{release} -Provides: tex(ec-base.map) = %{epoch}:20210325-%{release} -Provides: tex(ec-os-public-lm.map) = %{epoch}:20210325-%{release} -Provides: tex(mkiv-base.map) = %{epoch}:20210325-%{release} -Provides: tex(mkiv-px.map) = %{epoch}:20210325-%{release} -Provides: tex(mkiv-tx.map) = %{epoch}:20210325-%{release} -Provides: tex(original-adobe-euro.map) = %{epoch}:20210325-%{release} -Provides: tex(original-ams-base.map) = %{epoch}:20210325-%{release} -Provides: tex(original-ams-cmr.map) = %{epoch}:20210325-%{release} -Provides: tex(original-ams-euler.map) = %{epoch}:20210325-%{release} -Provides: tex(original-base.map) = %{epoch}:20210325-%{release} -Provides: tex(original-context-symbol.map) = %{epoch}:20210325-%{release} -Provides: tex(original-dummy.map) = %{epoch}:20210325-%{release} -Provides: tex(original-empty.map) = %{epoch}:20210325-%{release} -Provides: tex(original-micropress-informal.map) = %{epoch}:20210325-%{release} -Provides: tex(original-public-csr.map) = %{epoch}:20210325-%{release} -Provides: tex(original-public-lm.map) = %{epoch}:20210325-%{release} -Provides: tex(original-public-plr.map) = %{epoch}:20210325-%{release} -Provides: tex(original-public-vnr.map) = %{epoch}:20210325-%{release} -Provides: tex(original-vogel-symbol.map) = %{epoch}:20210325-%{release} -Provides: tex(original-wasy.map) = %{epoch}:20210325-%{release} -Provides: tex(original-youngryu-px.map) = %{epoch}:20210325-%{release} -Provides: tex(original-youngryu-tx.map) = %{epoch}:20210325-%{release} -Provides: tex(qx-base.map) = %{epoch}:20210325-%{release} -Provides: tex(qx-os-public-lm.map) = %{epoch}:20210325-%{release} -Provides: tex(t5-base.map) = %{epoch}:20210325-%{release} -Provides: tex(t5-os-public-lm.map) = %{epoch}:20210325-%{release} -Provides: tex(texnansi-base.map) = %{epoch}:20210325-%{release} -Provides: tex(texnansi-os-public-lm.map) = %{epoch}:20210325-%{release} -Provides: tex(tlig.map) = %{epoch}:20210325-%{release} -Provides: tex(contnav.tfm) = %{epoch}:20210325-%{release} -Provides: tex(contnav.pfb) = %{epoch}:20210325-%{release} -Provides: tex(bidi-symbols.tex) = %{epoch}:20210325-%{release} -Provides: tex(demo-symbols.tex) = %{epoch}:20210325-%{release} -Provides: tex(export-example.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-cweb.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-datastrc.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-educat.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-format.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-layout.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-narrowtt.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-newmat.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-pictex.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-streams.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-subsub.tex) = %{epoch}:20210325-%{release} -Provides: tex(metatex.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-arrange.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-combine.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-common.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-copy.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-ideas.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-listing.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-markdown.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-precache.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-select.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-sql.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-timing.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-xml.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-abr-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-abr-02.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-abr-03.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-abr-04.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-cdr-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-faq-00.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-faq-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-faq-02.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-faq-03.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-mag-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-00.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-02.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-03.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-04.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-05.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-06.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-07.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-08.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-09.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-10.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-11.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-12.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-13.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-14.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-15.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-16.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-18.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-19.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-22.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-23.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-26.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-27.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-50.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-61.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-62.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-63.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-64.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-66.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-67.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-68.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-93.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-96.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-ptj-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(status-mkiv.tex) = %{epoch}:20210325-%{release} -Provides: tex(supp-mis.tex) = %{epoch}:20210325-%{release} -Provides: tex(supp-mpe.tex) = %{epoch}:20210325-%{release} -Provides: tex(supp-pdf.tex) = %{epoch}:20210325-%{release} -Provides: tex(x-dir-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-ams.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-apa-de.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-apa-fr.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-apa-it.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-apa.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-aps.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-num-fr.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-num.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-ssa.tex) = %{epoch}:20210325-%{release} -Provides: tex(mag-0000.tex) = %{epoch}:20210325-%{release} -Provides: tex(setup-qr.tex) = %{epoch}:20210325-%{release} -Provides: tex(aesop-de.tex) = %{epoch}:20210325-%{release} -Provides: tex(bryson.tex) = %{epoch}:20210325-%{release} -Provides: tex(cervantes-es.tex) = %{epoch}:20210325-%{release} -Provides: tex(darwin.tex) = %{epoch}:20210325-%{release} -Provides: tex(davis.tex) = %{epoch}:20210325-%{release} -Provides: tex(dawkins.tex) = %{epoch}:20210325-%{release} -Provides: tex(demo-mps.tex) = %{epoch}:20210325-%{release} -Provides: tex(demo-tex.tex) = %{epoch}:20210325-%{release} -Provides: tex(demo-xml.tex) = %{epoch}:20210325-%{release} -Provides: tex(douglas.tex) = %{epoch}:20210325-%{release} -Provides: tex(hawking.tex) = %{epoch}:20210325-%{release} -Provides: tex(khatt-ar.tex) = %{epoch}:20210325-%{release} -Provides: tex(khatt-en.tex) = %{epoch}:20210325-%{release} -Provides: tex(knuth.tex) = %{epoch}:20210325-%{release} -Provides: tex(linden.tex) = %{epoch}:20210325-%{release} -Provides: tex(lorem.tex) = %{epoch}:20210325-%{release} -Provides: tex(materie.tex) = %{epoch}:20210325-%{release} -Provides: tex(montgomery.tex) = %{epoch}:20210325-%{release} -Provides: tex(quevedo-es.tex) = %{epoch}:20210325-%{release} -Provides: tex(reich.tex) = %{epoch}:20210325-%{release} -Provides: tex(sample.tex) = %{epoch}:20210325-%{release} -Provides: tex(samples.tex) = %{epoch}:20210325-%{release} -Provides: tex(thuan.tex) = %{epoch}:20210325-%{release} -Provides: tex(tufte.tex) = %{epoch}:20210325-%{release} -Provides: tex(ward.tex) = %{epoch}:20210325-%{release} -Provides: tex(weisman.tex) = %{epoch}:20210325-%{release} -Provides: tex(zapf.tex) = %{epoch}:20210325-%{release} -Provides: tex(context-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-basics.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-fonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-languages.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-math.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-mplib.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-plain.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-preprocessor-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-preprocessor.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-swiglib-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-swiglib.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-de.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-en.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-nl.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-de.sty) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-en.sty) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-nl.sty) = %{epoch}:20210325-%{release} -Provides: tex(m-pictex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-context +%package -n %{shortname}-context +Version: svn66546 +Provides: texlive-context = %{epoch}:%{source_date}-%{release} +Provides: tex-context = %{epoch}:%{source_date}-%{release} +Provides: texlive-context-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-context-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-context-bin < 7:20170520 +Provides: tex-context-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-context-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-context-doc < 7:20170520 +License: GPL-1.0-or-later OR LPPL-1.3c +Summary: The ConTeXt macro package +Requires: texlive-base +Requires: texlive-kpathsea +# for /usr/bin/realpath +Requires: coreutils, lua +Requires(post,postun): coreutils, lua +Requires: texlive-metapost +%if %{without bootstrap} +Requires: texlive-pdftex +Requires: texlive-xetex +%endif +Requires: texlive-amsfonts +Requires: texlive-lm +Requires: texlive-lm-math +Requires: texlive-luatex +Requires: texlive-manfnt-font +Requires: texlive-mflogo-font +Requires: texlive-mptopdf +Requires: texlive-stmaryrd +Requires: ruby +Requires: tex(pstricks.sty) +Requires: tex(pst-plot.sty) +Provides: tex(aesop-de.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(aristotle-grc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bidi-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bryson.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(capek-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(capek-vlnka-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(carey.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(carrol.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cervantes-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(context-lmtx-error.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(context-performance.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(context-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(context-todo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(contnav.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(darwin.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(davis.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dawkins.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-mps.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-tex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-xml.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dequincey.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(douglas.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dyrynk-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dyrynk-vlnka-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(export-example.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(filenames.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gray.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(greenfield.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hawking.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(herbert-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(herbert-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hviezdoslav-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hviezdoslav-vlnka-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(i-readme.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(jaros-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(jaros-vlnka-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(jojomayer.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(khatt-ar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(khatt-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(klein.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(knuth.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(kollar-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(kollar-vlnka-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(komensky-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(komensky-vlnka-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(krdel-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(kun-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(linden.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lorem.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-basics-prepare.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-basics.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-core.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-fonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-gadgets.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-languages.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-mplib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-pdf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-plain.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-preprocessor-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-preprocessor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-swiglib-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-swiglib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-de.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-en.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-nl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-pictex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-tikz-pgfplots.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-tikz-pgfplotstable.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(materie.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mcnish.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(montgomery.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-arrange.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-combine.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-common.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-compare.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-copy.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-domotica.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-fonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-hashed.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-ideas.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-listing.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-meaning.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-module.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-precache.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-select.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-setters.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-setups.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-sql.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-timing.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-trim.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-xml.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-context-symbol.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(poe.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pope-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pope-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(quevedo-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(reich.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abbreviations-extras.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abbreviations-logos.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-cdr-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-00.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-02.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-03.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-00.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-06.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-07.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-08.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-12.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-13.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-16.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-18.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-22.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-23.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-26.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-27.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-50.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-66.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-67.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-93.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-96.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(sample.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(samples.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(sapolsky.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(scite-context-readme.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(shakespeare-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(shakespeare-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(shelley-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(shelley-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(shelley-fr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(slova-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(smrek-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(smrek-vlnka-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(stork.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(thuan.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tlig.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(tufte.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(vallejo-trilce-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(waltham.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ward.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(weisman.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(welcome-to-context.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(zapf.tex) = %{epoch}:%{source_date}-%{release} +# shell and lua +BuildArch: noarch + +%description -n %{shortname}-context A full featured, parameter driven macro package, which fully supports advanced interactive documents. See the ConTeXt garden for a wealth of support information. -%package -n texlive-context-doc +# This package exists because it is 90M and most people do not need it + +%package -n %{shortname}-context-doc +Version: svn66546 +Provides: texlive-context-doc = %{epoch}:%{source_date}-%{release} Requires: texlive-context -License: CC-BY-SA-4.0 and GPL-1.0-or-later and GPL-2.0-only and CC-BY-NC-SA-3.0 and CC-BY-NC-4.0 and gust-font-1.0 and BSD-3-Clause -Provides: tex-context-doc = %{epoch}:20210325-%{release} +Provides: tex-context-doc = %{epoch}:%{source_date}-%{release} Summary: Documentation for context +License: GPL-1.0-or-later OR LPPL-1.3c -%description -n texlive-context-doc +%description -n %{shortname}-context-doc Documentation for context. -%package -n texlive-convbkmk -Provides: tex-convbkmk = %{epoch}:20210325-%{release} -Provides: texlive-convbkmk-bin = %{epoch}:20210325-%{release} -Provides: tex-convbkmk-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-convbkmk-bin < 7:20180414 -Provides: tex-convbkmk-doc = %{epoch}:20210325-%{release} -Provides: texlive-convbkmk-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-convbkmk-doc < 7:20180414 -License: MIT -Summary: Correct platex/uplatex bookmarks in PDF created with hyperref -Requires: texlive-base texlive-kpathsea ruby -BuildArch: noarch - -%description -n texlive-convbkmk +%package -n %{shortname}-convbkmk +Version: svn49252 +Provides: texlive-convbkmk = %{epoch}:%{source_date}-%{release} +Provides: tex-convbkmk = %{epoch}:%{source_date}-%{release} +Provides: texlive-convbkmk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-convbkmk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-convbkmk-bin < 7:20170520 +Provides: tex-convbkmk-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-convbkmk-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-convbkmk-doc < 7:20170520 +License: MIT +Summary: Correct platex/uplatex bookmarks in PDF created with hyperref +Requires: texlive-base +Requires: texlive-kpathsea +Requires: ruby +# ruby script +BuildArch: noarch + +%description -n %{shortname}-convbkmk The package provides a small Ruby script that corrects bookmarks in PDF files created by platex/uplatex, using hyperref. -%package -n texlive-crossrefware -Provides: tex-crossrefware = %{epoch}:20210325-%{release} -Provides: texlive-crossrefware-bin = %{epoch}:20210325-%{release} -Provides: tex-crossrefware-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-crossrefware-bin < 7:20180414 -Provides: tex-crossrefware-doc = %{epoch}:20210325-%{release} -Provides: texlive-crossrefware-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-crossrefware-doc < 7:20180414 -License: GPL+ -Summary: Scripts for working with crossref.org -BuildArch: noarch - -%description -n texlive-crossrefware +%package -n %{shortname}-crossrefware +Version: svn64754 +Provides: texlive-crossrefware = %{epoch}:%{source_date}-%{release} +Provides: tex-crossrefware = %{epoch}:%{source_date}-%{release} +Provides: texlive-crossrefware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-crossrefware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-crossrefware-bin < 7:20170520 +Provides: tex-crossrefware-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-crossrefware-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-crossrefware-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Scripts for working with crossref.org +# Just perl. +BuildArch: noarch + +%description -n %{shortname}-crossrefware This bundle contains the following scripts: bibdoiadd.pl: add DOI numbers to papers in a given bib file, bibzbladd.pl: add Zbl numbers to papers in a given bib file, ltx2crossrefxml.pl: a tool for the creation of XML files for submitting to the parent site -%package -n texlive-cslatex -Provides: tex-cslatex = %{epoch}:20210325-%{release} -Provides: texlive-cslatex-bin = %{epoch}:20210325-%{release} -Provides: tex-cslatex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cslatex-bin < 7:20180414 -License: GPL+ -Summary: LaTeX support for Czech/Slovak typesetting -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-latex -Requires: texlive-cm -Requires: texlive-csplain -Requires: texlive-hyphen-base -Requires: texlive-latex-fonts -Requires: texlive-tex-ini-files +%package -n %{shortname}-cslatex +Version: svn66186 +Provides: texlive-cslatex = %{epoch}:%{source_date}-%{release} +Provides: tex-cslatex = %{epoch}:%{source_date}-%{release} +Provides: texlive-cslatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cslatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cslatex-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: LaTeX support for Czech/Slovak typesetting +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(atbegshi.sty) +Requires: tex(atveryend.sty) +Requires: texlive-cm +Requires: texlive-csplain +Requires: tex(everyshi.sty) +Requires: texlive-firstaid +Requires: texlive-hyphen-base +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-latex +Requires: texlive-latex-fonts +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data Requires(post,postun): coreutils -Requires: tex(czech.ldf) tex(slovak.ldf) -Provides: tex(czech.sty) = %{epoch}:20210325-%{release} -Provides: tex(fonttext.cfg) = %{epoch}:20210325-%{release} -Provides: tex(hyphen.cfg) = %{epoch}:20210325-%{release} -Provides: tex(il2cmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2enc.def) = %{epoch}:20210325-%{release} -Provides: tex(il2lcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2lcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(slovak.sty) = %{epoch}:20210325-%{release} -Provides: tex(cspsfont.tex) = %{epoch}:20210325-%{release} -Provides: tex(il2pag.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2pbk.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2pcr.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2phv.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2phvn.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2pnc.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2ppl.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2ptm.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2pzc.fd) = %{epoch}:20210325-%{release} -Provides: tex(nhelvet.sty) = %{epoch}:20210325-%{release} -Provides: tex(ntimes.sty) = %{epoch}:20210325-%{release} -Provides: tex(xl2pag.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2pbk.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2pcr.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2phv.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2phvn.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2pnc.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2ppl.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2ptm.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2pzc.fd) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-cslatex +Requires: tex(czech.ldf) +Requires: tex(slovak.ldf) +Provides: tex(cspsfont.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(czech.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttext.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(hyphen.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pag.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pbk.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pcr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2phv.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2phvn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2ppl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2ptm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pzc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(nhelvet.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ntimes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(slovak.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pag.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pbk.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pcr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2phv.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2phvn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2ppl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2ptm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pzc.fd) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-cslatex LaTeX support for Czech/Slovak typesetting -%package -n texlive-csplain -Provides: tex-csplain = %{epoch}:20210325-%{release} -Provides: texlive-csplain-bin = %{epoch}:20210325-%{release} -Provides: tex-csplain-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-csplain-bin < 7:20180414 -License: GPLv2+ -Summary: Plain TeX multilanguage support -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-tex -Requires: texlive-cm +%package -n %{shortname}-csplain +Version: svn62771 +Provides: texlive-csplain = %{epoch}:%{source_date}-%{release} +Provides: tex-csplain = %{epoch}:%{source_date}-%{release} +Provides: texlive-csplain-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-csplain-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-csplain-bin < 7:20170520 +License: GPL-2.0-or-later +Summary: Plain TeX multilanguage support +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tex +Requires: texlive-cm Requires(post,postun): coreutils -Requires: texlive-cs -Requires: texlive-hyphen-base -Requires: texlive-plain -Requires: texlive-enctex -Requires: texlive-tex-ini-files -Requires: texlive-luatex -Requires: texlive-luatex85 -Provides: tex(csenc-k.tex) = %{epoch}:20210325-%{release} -Provides: tex(csenc-p.tex) = %{epoch}:20210325-%{release} -Provides: tex(csenc-u.tex) = %{epoch}:20210325-%{release} -Provides: tex(csenc-w.tex) = %{epoch}:20210325-%{release} -Provides: tex(csfonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(csfontsm.tex) = %{epoch}:20210325-%{release} -Provides: tex(czhyphen.tex) = %{epoch}:20210325-%{release} -Provides: tex(extcode.tex) = %{epoch}:20210325-%{release} -Provides: tex(fonttabs.tex) = %{epoch}:20210325-%{release} -Provides: tex(il2code.tex) = %{epoch}:20210325-%{release} -Provides: tex(plaina4.tex) = %{epoch}:20210325-%{release} -Provides: tex(skhyphen.tex) = %{epoch}:20210325-%{release} -Provides: tex(t1code.tex) = %{epoch}:20210325-%{release} -Provides: tex(t1enc-u.tex) = %{epoch}:20210325-%{release} -Provides: tex(ucode.tex) = %{epoch}:20210325-%{release} -Provides: tex(uni-lcuc.tex) = %{epoch}:20210325-%{release} -Provides: tex(ams-math.tex) = %{epoch}:20210325-%{release} -Provides: tex(cavantga.tex) = %{epoch}:20210325-%{release} -Provides: tex(cbookman.tex) = %{epoch}:20210325-%{release} -Provides: tex(chars-8z.tex) = %{epoch}:20210325-%{release} -Provides: tex(chelvet.tex) = %{epoch}:20210325-%{release} -Provides: tex(cncent.tex) = %{epoch}:20210325-%{release} -Provides: tex(cpalatin.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-adventor.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-all.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-antt.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-arev.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-bera.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-bonum.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-charter.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-cursor.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-heros.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-pagella.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-polta.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-schola.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-termes.tex) = %{epoch}:20210325-%{release} -Provides: tex(ctimes.tex) = %{epoch}:20210325-%{release} -Provides: tex(cyrchars.tex) = %{epoch}:20210325-%{release} -Provides: tex(dcfonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(ecfonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(exchars.tex) = %{epoch}:20210325-%{release} -Provides: tex(lmfonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(luafonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(ntx-math.tex) = %{epoch}:20210325-%{release} -Provides: tex(tx-math.tex) = %{epoch}:20210325-%{release} -Provides: tex(unifam.tex) = %{epoch}:20210325-%{release} -Provides: tex(opmac-bib-iso690.tex) = %{epoch}:20210325-%{release} -Provides: tex(opmac-bib-simple.tex) = %{epoch}:20210325-%{release} -Provides: tex(opmac-bib.tex) = %{epoch}:20210325-%{release} -Provides: tex(opmac-xetex.tex) = %{epoch}:20210325-%{release} -Provides: tex(opmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfuni.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-csplain +Requires: texlive-cs +Requires: texlive-hyphen-base +Requires: texlive-plain +Requires: texlive-enctex +Requires: texlive-tex-ini-files +Requires: texlive-luatex +Requires: texlive-luatex85 +Provides: tex(csenc-k.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-p.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-u.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-w.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csfontsm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(czhyphen.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(extcode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttabs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2code.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(plaina4.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(skhyphen.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1code.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc-u.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(uni-lcuc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ams-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cavantga.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cbookman.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chars-8z.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chelvet.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cncent.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cpalatin.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-adventor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-all.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-antt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-arev.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-bera.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-bonum.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-charter.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-cursor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-heros.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-pagella.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-polta.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-schola.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-termes.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctimes.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cyrchars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dcfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ecfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(exchars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lmfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luafonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ntx-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tx-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(unifam.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib-iso690.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib-simple.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-xetex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfuni.tex) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-csplain CSplain is a small extension of basic Plain TeX macros, the formats csplain and pdfcsplain can be generated. It supports: hyphenation of words for 50+ languages, simple and powerfull @@ -1419,16 +1810,20 @@ bibliography, index, toc, tables,etc.) by Plain TeX macros. The OPmac macros can generate and bibliography without any external program. -%package -n texlive-ctan-o-mat -Provides: tex-ctan-o-mat = %{epoch}:20210325-%{release} -Provides: texlive-ctan-o-mat-bin = %{epoch}:20210325-%{release} -License: BSD -Summary: Upload or validate a package for CTAN -Requires: texlive-base texlive-kpathsea -Requires: perl-interpreter -BuildArch: noarch +%package -n %{shortname}-ctan-o-mat +Version: svn51578 +Provides: texlive-ctan-o-mat = %{epoch}:%{source_date}-%{release} +Provides: tex-ctan-o-mat = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctan-o-mat-bin = %{epoch}:%{source_date}-%{release} +License: BSD-3-Clause +Summary: Upload or validate a package for CTAN +Requires: texlive-base +Requires: texlive-kpathsea +Requires: perl-interpreter +#perl +BuildArch: noarch -%description -n texlive-ctan-o-mat +%description -n %{shortname}-ctan-o-mat This program can be used to automate the upload of a package to CTAN. The description of the package is contained in a configuration file. The provided information is validated in @@ -1443,33 +1838,40 @@ requires an Internet connection to the CTAN server. Even the validation retrieves the known attributes and the basic constraints from the server. -%package -n texlive-ctanbib -Provides: tex-ctanbib = %{epoch}:20210325-%{release} -Provides: texlive-ctanbib-bin = %{epoch}:20210325-%{release} -Provides: tex-ctanbib-bin = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Summary: Export ctan entries to bib format -Requires: texlive-base -Requires: texlive-kpathsea +%package -n %{shortname}-ctanbib +Version: svn66068 +Provides: texlive-ctanbib = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanbib = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanbib-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanbib-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Export ctan entries to bib format +Requires: texlive-base +Requires: texlive-kpathsea +#lua BuildArch: noarch -%description -n texlive-ctanbib +%description -n %{shortname}-ctanbib This script can generate BibTeX records for LaTeX packages hosted on CTAN. -%package -n texlive-ctanify -Provides: tex-ctanify = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-ctanify-bin = %{epoch}:20210325-%{release} -Provides: tex-ctanify-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ctanify-bin < 7:20180414 -Provides: tex-ctanify-doc = %{epoch}:20210325-%{release} -Provides: texlive-ctanify-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ctanify-doc < 7:20180414 -Summary: Prepare a package for upload to CTAN -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ctanify +%package -n %{shortname}-ctanify +Version: svn44129 +Provides: texlive-ctanify = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanify = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanify-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanify-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanify-bin < 7:20170520 +Provides: tex-ctanify-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanify-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanify-doc < 7:20170520 +License: LPPL-1.3c +Summary: Prepare a package for upload to CTAN +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ctanify Given a list of filenames, ctanify creates a tarball (a .tar.gz file) with the files laid out in CTAN's preferred structure. The tarball additionally contains a ZIP (.zip) file with copies @@ -1479,203 +1881,236 @@ package, or by those who need to incorporate it in a distribution. (The TDS ZIP file will be installed in the CTAN install/ tree.) -%package -n texlive-ctanupload -Provides: tex-ctanupload = %{epoch}:20210325-%{release} -Provides: texlive-ctanupload-bin = %{epoch}:20210325-%{release} -Provides: tex-ctanupload-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ctanupload-bin < 7:20180414 -Provides: tex-ctanupload-doc = %{epoch}:20210325-%{release} -Provides: texlive-ctanupload-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ctanupload-doc < 7:20180414 -License: GPLv3+ -Summary: Support for users uploading to CTAN -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ctanupload +%package -n %{shortname}-ctanupload +Version: svn26313 +Provides: texlive-ctanupload = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanupload = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanupload-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanupload-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanupload-bin < 7:20170520 +Provides: tex-ctanupload-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanupload-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanupload-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Support for users uploading to CTAN +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ctanupload The package provides a Perl script that allows the uploads of a contribution to CTAN from the command line. The aim is to simplify the release process for LaTeX package authors. -%package -n texlive-ctie -Provides: tex-ctie = %{epoch}:20210325-%{release} texlive-ctie-bin = %{epoch}:20210325-%{release} -Provides: tex-ctie-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ctie-bin < 7:20180414 -License: GPL+ -Summary: C version of tie (merging Web change files) -Requires: texlive-base texlive-kpathsea - -%description -n texlive-ctie +%package -n %{shortname}-ctie +Version: svn66186 +Provides: texlive-ctie = %{epoch}:%{source_date}-%{release} +Provides: tex-ctie = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctie-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctie-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctie-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: C version of tie (merging Web change files) +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-ctie This is a version of tie converted for use with cweb. -%package -n texlive-cweb -Provides: tex-cweb = %{epoch}:20210325-%{release} texlive-cweb-bin = %{epoch}:20210325-%{release} -License: MIT and LPPL-1.3c -Provides: tex-cweb-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cweb-bin < 7:20180414 -Provides: tex-cweb-doc = %{epoch}:20210325-%{release} -Provides: texlive-cweb-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-cweb-doc < 7:20180414 -Summary: A Web system in C -Requires: texlive-base texlive-kpathsea -Provides: tex(cwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfXcwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfcwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfdcwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdffcwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdficwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfwebmac.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-cweb -The Cweb system is a system for Structured Software -Documentation (also known as Literate Programming) in the -programming language C. - -%package -n texlive-cyrillic -Provides: tex-cyrillic = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-cyrillic-bin = %{epoch}:20210325-%{release} -Provides: tex-cyrillic-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cyrillic-bin < 7:20180414 -Provides: tex-cyrillic-doc = %{epoch}:20210325-%{release} -Provides: texlive-cyrillic-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-cyrillic-doc < 7:20180414 -Provides: texlive-cyrillic-bin-bin = %{epoch}:20210325-%{release} -Provides: tex-cyrillic-bin-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cyrillic-bin-bin < 7:20180414 -Summary: Support for Cyrillic fonts in LaTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(fontenc.sty) -Provides: tex(cp1251.def) = %{epoch}:20210325-%{release} -Provides: tex(cp855.def) = %{epoch}:20210325-%{release} -Provides: tex(cp866.def) = %{epoch}:20210325-%{release} -Provides: tex(cp866av.def) = %{epoch}:20210325-%{release} -Provides: tex(cp866mav.def) = %{epoch}:20210325-%{release} -Provides: tex(cp866nav.def) = %{epoch}:20210325-%{release} -Provides: tex(cp866tat.def) = %{epoch}:20210325-%{release} -Provides: tex(ctt.def) = %{epoch}:20210325-%{release} -Provides: tex(dbk.def) = %{epoch}:20210325-%{release} -Provides: tex(iso88595.def) = %{epoch}:20210325-%{release} -Provides: tex(isoir111.def) = %{epoch}:20210325-%{release} -Provides: tex(koi8-r.def) = %{epoch}:20210325-%{release} -Provides: tex(koi8-ru.def) = %{epoch}:20210325-%{release} -Provides: tex(koi8-u.def) = %{epoch}:20210325-%{release} -Provides: tex(lcy.sty) = %{epoch}:20210325-%{release} -Provides: tex(lcyccr.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcydefs.tex) = %{epoch}:20210325-%{release} -Provides: tex(lcyenc.def) = %{epoch}:20210325-%{release} -Provides: tex(lcylcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcylcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(maccyr.def) = %{epoch}:20210325-%{release} -Provides: tex(macukr.def) = %{epoch}:20210325-%{release} -Provides: tex(mik.def) = %{epoch}:20210325-%{release} -Provides: tex(mls.def) = %{epoch}:20210325-%{release} -Provides: tex(mnk.def) = %{epoch}:20210325-%{release} -Provides: tex(mos.def) = %{epoch}:20210325-%{release} -Provides: tex(ncc.def) = %{epoch}:20210325-%{release} -Provides: tex(ot2ccr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2enc.def) = %{epoch}:20210325-%{release} -Provides: tex(ot2lcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2lcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2wlcyr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2wlcyss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2wncyr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2wncyss.fd) = %{epoch}:20210325-%{release} -Provides: tex(pt154.def) = %{epoch}:20210325-%{release} -Provides: tex(pt254.def) = %{epoch}:20210325-%{release} -Provides: tex(t2accr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2aenc.def) = %{epoch}:20210325-%{release} -Provides: tex(t2alcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2alcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bccr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2benc.def) = %{epoch}:20210325-%{release} -Provides: tex(t2blcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2blcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2cccr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2cenc.def) = %{epoch}:20210325-%{release} -Provides: tex(t2clcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2clcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2ccr.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2enc.def) = %{epoch}:20210325-%{release} -Provides: tex(x2lcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2lcmtt.fd) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-cyrillic +%package -n %{shortname}-cweb +Version: svn66186 +Provides: texlive-cweb = %{epoch}:%{source_date}-%{release} +Provides: tex-cweb = %{epoch}:%{source_date}-%{release} +Provides: texlive-cweb-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cweb-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cweb-bin < 7:20170520 +Provides: tex-cweb-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cweb-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cweb-doc < 7:20170520 +License: Knuth-CTAN +Summary: A Web system in C +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(Xcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctproofmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cttwinxmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctwimac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cweb_ecma94.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cweb_hp8.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cweb_mac8.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cweb_pc850.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dctproofmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dctwimac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dcwebstrings.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(fcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(icwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfctwimac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfwebtocfront.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(twinx-startup.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-cweb +A highly portable and extended version of Levy/Knuth CWEB 3.64c +for UNIX, Windows, Mac (and possibly other operating systems). +TeX macros, CWEB macros, and NLS catalogs are included for +German, French (partially), and Italian program documentation +on any machine. + +%package -n %{shortname}-cyrillic +Version: svn63613 +Provides: texlive-cyrillic = %{epoch}:%{source_date}-%{release} +Provides: tex-cyrillic = %{epoch}:%{source_date}-%{release} +Provides: texlive-cyrillic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cyrillic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-bin < 7:20170520 +Provides: tex-cyrillic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cyrillic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-doc < 7:20170520 +Provides: texlive-cyrillic-bin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cyrillic-bin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-bin-bin < 7:20170520 +License: LPPL-1.3c +Summary: Support for Cyrillic fonts in LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fontenc.sty) +Provides: tex(cp1251.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp855.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866av.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866mav.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866nav.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866tat.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctt.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(dbk.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(iso88595.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(isoir111.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-r.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-ru.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-u.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcy.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcyccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcydefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcyenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcylcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcylcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(maccyr.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(macukr.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mik.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mls.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mnk.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mos.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ncc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2ccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wlcyr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wlcyss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wncyr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wncyss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(pt154.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(pt254.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2accr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2aenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2alcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2alcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2benc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2blcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2blcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2cccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2cenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2clcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2clcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2ccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-cyrillic This bundle of macros files provides macro support (including font encoding macros) for the use of Cyrillic characters in fonts encoded under the T2* and X2 encodings. These encodings cover (between them) pretty much every language that is written in a Cyrillic alphabet. -%package -n texlive-de-macro -Provides: tex-de-macro = %{epoch}:20210325-%{release} -Provides: texlive-de-macro-bin = %{epoch}:20210325-%{release} -Provides: tex-de-macro-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-de-macro-bin < 7:20180414 -Provides: tex-de-macro-doc = %{epoch}:20210325-%{release} -Provides: texlive-de-macro-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-de-macro-doc < 7:20180414 -License: AFL -Summary: Expand private macros in a document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-de-macro +%package -n %{shortname}-de-macro +Version: svn61719 +Provides: texlive-de-macro = %{epoch}:%{source_date}-%{release} +Provides: tex-de-macro = %{epoch}:%{source_date}-%{release} +Provides: texlive-de-macro-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-de-macro-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-de-macro-bin < 7:20170520 +Provides: tex-de-macro-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-de-macro-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-de-macro-doc < 7:20170520 +License: AFL-2.1 +Summary: Expand private macros in a document +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-de-macro De-macro is a Python script that helps authors who like to use private LaTeX macros (for example, as abbreviations). A technical editor or a cooperating author may balk at such a @@ -1684,46 +2119,61 @@ running de-macro on it. De-macro will expand macros defined in \(re)newcommand or \(re)newenvironment commands, within the document, or in the document's "private" package file. -%package -n texlive-detex -Provides: tex-detex = %{epoch}:20210325-%{release} -Provides: texlive-detex-bin = %{epoch}:20210325-%{release} -Provides: tex-detex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-detex-bin < 7:20180414 -License: NCSA -Summary: Strip TeX from a source file -Requires: texlive-base texlive-kpathsea - -%description -n texlive-detex +%package -n %{shortname}-detex +Version: svn66186 +Provides: texlive-detex = %{epoch}:%{source_date}-%{release} +Provides: tex-detex = %{epoch}:%{source_date}-%{release} +Provides: texlive-detex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-detex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-detex-bin < 7:20170520 +License: NCSA +Summary: Strip TeX from a source file +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-detex Detex is a program to remove TeX constructs from a text file. It recognizes the \input command. The program assumes it is dealing with LaTeX input if it sees the string \begin{document} in the text. In this case, it also recognizes the \include and -\includeonly commands. - -%package -n texlive-diadia -Provides: tex-diadia = %{epoch}:20210325-%{release} -License: LPPL-1.3a -Provides: texlive-diadia-bin = %{epoch}:20210325-%{release} -Provides: tex-diadia-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-diadia-bin < 7:20180414 -Provides: tex-diadia-doc = %{epoch}:20210325-%{release} -Provides: texlive-diadia-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-diadia-doc < 7:20180414 -Summary: Package to keep a diabetes diary -Requires: texlive-base texlive-kpathsea -Requires: tex(xkeyval.sty) tex(pgfplots.sty) -Requires: tex(pgfplotstable.sty) tex(pgfcalendar.sty) -Requires: tex(tabularx.sty) tex(booktabs.sty) -Requires: tex(colortbl.sty) tex(ifthen.sty) -Requires: tex(calc.sty) tex(translations.sty) -Requires: tex(amsmath.sty) tex(tcolorbox.sty) -Requires: tex(environ.sty) tex(multicol.sty) -Requires: tex(amssymb.sty) -Provides: tex(diadia.cfg) = %{epoch}:20210325-%{release} -Provides: tex(diadia.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-diadia +\includeonly commands. The author now considers this program to +be "retired" and Piotr Kubowicz's OpenDetex as its successor. + +%package -n %{shortname}-diadia +Version: svn37656 +Provides: texlive-diadia = %{epoch}:%{source_date}-%{release} +Provides: tex-diadia = %{epoch}:%{source_date}-%{release} +Provides: texlive-diadia-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-diadia-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-diadia-bin < 7:20170520 +Provides: tex-diadia-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-diadia-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-diadia-doc < 7:20170520 +License: LPPL-1.3c +Summary: Package to keep a diabetes diary +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(xkeyval.sty) +Requires: tex(pgfplots.sty) +Requires: tex(pgfplotstable.sty) +Requires: tex(pgfcalendar.sty) +Requires: tex(tabularx.sty) +Requires: tex(booktabs.sty) +Requires: tex(colortbl.sty) +Requires: tex(ifthen.sty) +Requires: tex(calc.sty) +Requires: tex(translations.sty) +Requires: tex(amsmath.sty) +Requires: tex(tcolorbox.sty) +Requires: tex(environ.sty) +Requires: tex(multicol.sty) +Requires: tex(amssymb.sty) +Provides: tex(diadia.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(diadia.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-diadia The diadia package allows you to keep a diabetes diary. Usually, this means keeping record of certain medical values like blood sugar, blood pressure, pulse or weight. It might @@ -1735,20 +2185,38 @@ typesets formatted tables and derived plots. Furthermore, it supports medication charts and info boxes. Supported languages: English, German. Feel free to provide other translation files! -%package -n texlive-dosepsbin -Provides: tex-dosepsbin = %{epoch}:20210325-%{release} -Provides: texlive-dosepsbin-bin = %{epoch}:20210325-%{release} -Provides: tex-dosepsbin-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dosepsbin-bin < 7:20180414 -Provides: tex-dosepsbin-doc = %{epoch}:20210325-%{release} -Provides: texlive-dosepsbin-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dosepsbin-doc < 7:20180414 -License: GPLv2 or Artistic -Summary: Deal with DOS binary EPS files -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-dosepsbin +%package -n %{shortname}-digestif +Summary: Editor plugin for LaTeX, ConTeXt etc. +Version: svn65223 +License: GPL-3.0-or-later AND LPPL-1.3c AND GFDL-1.3-no-invariants-or-later +Requires: texlive-base texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-digestif +Digestif is a code analyzer, and a language server, for LaTeX, +plain TeX, ConTeXt and Texinfo. It provides context-sensitive +completion, documentation, code navigation, and related +functionality to any text editor that speaks the LSP protocol. + +%package -n %{shortname}-dosepsbin +Version: svn29752 +Provides: texlive-dosepsbin = %{epoch}:%{source_date}-%{release} +Provides: tex-dosepsbin = %{epoch}:%{source_date}-%{release} +Provides: texlive-dosepsbin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dosepsbin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dosepsbin-bin < 7:20170520 +Provides: tex-dosepsbin-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dosepsbin-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dosepsbin-doc < 7:20170520 +License: GPL-2.0-only +Summary: Deal with DOS binary EPS files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-dosepsbin A Encapsulated PostScript (EPS) file may given in a special binary format to support the inclusion of a thumbnail. This file format, commonly known as DOS EPS format starts with a @@ -1760,15 +2228,19 @@ package provides a Perl program that will extract any of the sections of such a file, in particular providing a 'text'-form EPS file for use with (La)TeX. -%package -n texlive-dtl -Provides: tex-dtl = %{epoch}:20210325-%{release} texlive-dtl-bin = %{epoch}:20210325-%{release} -Provides: tex-dtl-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dtl-bin < 7:20180414 -License: Public Domain -Summary: Tools to dis-assemble and re-assemble DVI files -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dtl +%package -n %{shortname}-dtl +Version: svn62387 +Provides: texlive-dtl = %{epoch}:%{source_date}-%{release} +Provides: tex-dtl = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dtl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtl-bin < 7:20170520 +License: LicenseRef-Fedora-Public-Domain +Summary: Tools to dis-assemble and re-assemble DVI files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dtl DTL (DVI Text Language) is a means of expressing the content of a DVI file, which is readily readable by humans. The DTL bundle contains an assembler dt2dv (which produces DVI files from DTL @@ -1776,169 +2248,201 @@ files) and a disassembler dv2dt (which produces DTL files from DVI files). The DTL bundle was developed so as to avoid some infelicities of dvitype (among other pressing reasons). -%package -n texlive-dtxgen -Provides: tex-dtxgen = %{epoch}:20210325-%{release} -Provides: texlive-dtxgen-bin = %{epoch}:20210325-%{release} -Provides: tex-dtxgen-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dtxgen-bin < 7:20180414 -Provides: tex-dtxgen-doc = %{epoch}:20210325-%{release} -Provides: texlive-dtxgen-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dtxgen-doc < 7:20180414 -License: GPL+ -Summary: Creates a template for a self-extracting .dtx file -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-dtxgen +%package -n %{shortname}-dtxgen +Version: svn51663 +Provides: texlive-dtxgen = %{epoch}:%{source_date}-%{release} +Provides: tex-dtxgen = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtxgen-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dtxgen-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtxgen-bin < 7:20170520 +Provides: tex-dtxgen-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtxgen-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtxgen-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Creates a template for a self-extracting .dtx file +Requires: texlive-base +Requires: texlive-kpathsea +# bash +BuildArch: noarch + +%description -n %{shortname}-dtxgen The bash script dtxgen creates a template for a self-extracting .dtx file. It is useful for those who plan to create a new Documented LaTeX Source (.dtx) file. -%package -n texlive-dvi2tty -Provides: tex-dvi2tty = %{epoch}:20210325-%{release} -Provides: texlive-dvi2tty-bin = %{epoch}:20210325-%{release} -Provides: tex-dvi2tty-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvi2tty-bin < 7:20180414 -License: GPL+ -Summary: Produce ASCII from DVI -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvi2tty +%package -n %{shortname}-dvi2tty +Version: svn66186 +Provides: texlive-dvi2tty = %{epoch}:%{source_date}-%{release} +Provides: tex-dvi2tty = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvi2tty-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvi2tty-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvi2tty-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Produce ASCII from DVI +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvi2tty A DVI driver to produce an ASCII representation of the document. The original version was written in Pascal, and the present author translated the program to C. -%package -n texlive-dviasm -Provides: tex-dviasm = %{epoch}:20210325-%{release} -Provides: texlive-dviasm-bin = %{epoch}:20210325-%{release} -Provides: tex-dviasm-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dviasm-bin < 7:20180414 -Provides: tex-dviasm-doc = %{epoch}:20210325-%{release} -Provides: texlive-dviasm-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dviasm-doc < 7:20180414 -License: GPLv3+ -Summary: A utility for editing DVI files -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-dviasm +%package -n %{shortname}-dviasm +Version: svn64430 +Provides: texlive-dviasm = %{epoch}:%{source_date}-%{release} +Provides: tex-dviasm = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviasm-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviasm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviasm-bin < 7:20170520 +Provides: tex-dviasm-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviasm-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviasm-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: A utility for editing DVI files +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-dviasm A Python script to support changing or creating DVI files via disassembling into text, editing, and then reassembling into binary format. It supports advanced features such as adding a preprint number or watermarks. -%package -n texlive-dvicopy -Provides: tex-dvicopy = %{epoch}:20210325-%{release} -Provides: texlive-dvicopy-bin = %{epoch}:20210325-%{release} -Provides: tex-dvicopy-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvicopy-bin < 7:20180414 -License: GPL+ -Summary: Copy DVI files, flattening VFs -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvicopy +%package -n %{shortname}-dvicopy +Version: svn66186 +Provides: texlive-dvicopy = %{epoch}:%{source_date}-%{release} +Provides: tex-dvicopy = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvicopy-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvicopy-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvicopy-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Copy DVI files, flattening VFs +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvicopy DVICOPY is a utility program that allows one to take a DVI file that references composite fonts (VF) and convert it into a DVI file that does not contain such references. It also serves as a basis for writing DVI drivers (much like DVItype). -%package -n texlive-dvidvi -Provides: tex-dvidvi = %{epoch}:20210325-%{release} -Provides: texlive-dvidvi-bin = %{epoch}:20210325-%{release} -Provides: tex-dvidvi-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvidvi-bin < 7:20180414 -License: Copyright only -Summary: Convert one DVI file into another -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvidvi +%package -n %{shortname}-dvidvi +Version: svn65952 +Provides: texlive-dvidvi = %{epoch}:%{source_date}-%{release} +Provides: tex-dvidvi = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvidvi-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvidvi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvidvi-bin < 7:20170520 +License: LicenseRef-Fedora-UltraPermissive +Summary: Convert one DVI file into another +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvidvi The output DVI file's contents are specified by page selection commands; series of pages and page number ranges may be specified, as well as inclusions and exclusions. -%package -n texlive-dviinfox -Provides: tex-dviinfox = %{epoch}:20210325-%{release} -Provides: texlive-dviinfox-bin = %{epoch}:20210325-%{release} -License: MIT -Summary: Perl script to print DVI meta information -BuildArch: noarch -Requires: texlive-base texlive-kpathsea -Requires: perl-interpreter +%package -n %{shortname}-dviinfox +Version: svn59216 +Provides: texlive-dviinfox = %{epoch}:%{source_date}-%{release} +Provides: tex-dviinfox = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviinfox-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Perl script to print DVI meta information +# perl +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea +Requires: perl-interpreter -%description -n texlive-dviinfox +%description -n %{shortname}-dviinfox The package provides a perl script which prints information about a DVI file. It also supports XeTeX XDV format. -%package -n texlive-dviljk -Provides: tex-dviljk = %{epoch}:20210325-%{release} -Provides: texlive-dviljk-bin = %{epoch}:20210325-%{release} -Provides: tex-dviljk-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dviljk-bin < 7:20180414 -License: GPL+ -Summary: DVI to Laserjet output -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dviljk +%package -n %{shortname}-dviljk +Version: svn66186 +Provides: texlive-dviljk = %{epoch}:%{source_date}-%{release} +Provides: tex-dviljk = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviljk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviljk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviljk-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: DVI to Laserjet output +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dviljk A dvi driver for the LaserJet printers, using kpathsea recursive file searching. -%package -n texlive-dviout-util -Provides: tex-dviout-util = %{epoch}:20210325-%{release} -Provides: texlive-dviout-util-bin = %{epoch}:20210325-%{release} -Provides: tex-dviout-util-bin = %{epoch}:20210325-%{release} -License: MIT -Summary: DVI output utilities -Requires: texlive-base -Requires: texlive-kpathsea - -%description -n texlive-dviout-util +%package -n %{shortname}-dviout-util +Version: svn66186 +Provides: texlive-dviout-util = %{epoch}:%{source_date}-%{release} +Provides: tex-dviout-util = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviout-util-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviout-util-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: DVI output utilities +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dviout-util This is a partial repackaging of elements of the DVIOUT package by Toshio OSHIMA, Yoshiki OTOBE, and Kazunori ASAYAMA. Here we don't include the main DVI previewer, but just want small utility programs. -%package -n texlive-dvipdfmx -Provides: tex-dvipdfmx = %{epoch}:20210325-%{release} -Provides: texlive-dvipdfmx-bin = %{epoch}:20210325-%{release} -Provides: tex-dvipdfmx-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvipdfmx-bin < 7:20180414 -Provides: tex-dvipdfmx-doc = %{epoch}:20210325-%{release} -Provides: texlive-dvipdfmx-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvipdfmx-doc < 7:20180414 -Provides: dvipdfmx = %{epoch}:20210325-%{release} dvipdfm = %{epoch}:20210325-%{release} -License: GPL+ -Summary: An extended version of dvipdfm -Requires: texlive-base texlive-glyphlist -Requires: texlive-kpathsea -Provides: tex(dvipdfmx.cfg) = %{epoch}:20210325-%{release} -Provides: tex(cid-x.map) = %{epoch}:20210325-%{release} -Provides: tex(ckx.map) = %{epoch}:20210325-%{release} - -%description -n texlive-dvipdfmx +%package -n %{shortname}-dvipdfmx +Version: svn66203 +Provides: texlive-dvipdfmx = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipdfmx = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipdfmx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipdfmx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipdfmx-bin < 7:20170520 +Provides: tex-dvipdfmx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipdfmx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipdfmx-doc < 7:20170520 +Provides: dvipdfmx = %{epoch}:%{source_date}-%{release} +Provides: dvipdfm = %{epoch}:%{source_date}-%{release} +License: GPL-1.0-or-later +Summary: An extended version of dvipdfm +Requires: texlive-base +Requires: texlive-glyphlist +Requires: texlive-kpathsea +Requires: texlive-xetex +Provides: tex(dvipdfmx.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(cid-x.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ckx.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-dvipdfmx Dvipdfmx (formerly dvipdfm-cjk) is a development of dvipdfm created to support multi-byte character encodings and large character sets for East Asian languages. Dvipdfmx, if "called" with the name dvipdfm, operates in a "dvipdfm compatibility" mode, so that users of the both packages need only keep one executable. A secondary design goal is to support as many "PDF" -features as does pdfTeX. There being no documentation as such, -users are advised to consult the documentation of dvipdfm (as -well, of course, as the package Readme. - -%package -n texlive-dvipng -Provides: tex-dvipng = %{epoch}:20210325-%{release} -Provides: texlive-dvipng-bin = %{epoch}:20210325-%{release} -Provides: tex-dvipng-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvipng-bin < 7:20180414 -Provides: tex-dvipng-doc = %{epoch}:20210325-%{release} -Provides: texlive-dvipng-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvipng-doc < 7:20180414 -Provides: dvipng = %{epoch}:20210325-%{release} -License: LGPLv2+ -Summary: A fast DVI to PNG/GIF converter -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvipng +features as does pdfTeX. + +%package -n %{shortname}-dvipng +Version: svn66203 +Provides: texlive-dvipng = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipng = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipng-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipng-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipng-bin < 7:20170520 +Provides: tex-dvipng-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipng-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipng-doc < 7:20170520 +Provides: dvipng = %{epoch}:%{source_date}-%{release} +License: LGPL-2.1-or-later +Summary: A fast DVI to PNG/GIF converter +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvipng This program makes PNG and/or GIF graphics from DVI files as obtained from TeX and its relatives. Its benefits include: Speed. It offers very fast rendering of DVI as bitmap files, @@ -1954,151 +2458,179 @@ input file through this interface. Support for PK, VF, PostScript Type1, and TrueType fonts, colour specials, and inclusion of PostScript, PNG, JPEG or GIF images. -%package -n texlive-dvipos -Provides: tex-dvipos = %{epoch}:20210325-%{release} -Provides: texlive-dvipos-bin = %{epoch}:20210325-%{release} -Provides: tex-dvipos-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvipos-bin < 7:20180414 -Summary: dvipos package -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvipos -dvipos package. - -%package -n texlive-dvips -Provides: tetex-dvips = %{epoch}:20210325-%{release} -Provides: tex-dvips = %{epoch}:20210325-%{release} -Provides: texlive-dvips-bin = %{epoch}:20210325-%{release} -Provides: tex-dvips-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvips-bin < 7:20180414 -Provides: tex-dvips-doc = %{epoch}:20210325-%{release} -Provides: texlive-dvips-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvips-doc < 7:20180414 -License: GPL+ -Summary: A DVI to PostScript driver -Requires: texlive-base texlive-kpathsea -Provides: tex(canonex.cfg) = %{epoch}:20210325-%{release} -Provides: tex(cx.cfg) = %{epoch}:20210325-%{release} -Provides: tex(deskjet.cfg) = %{epoch}:20210325-%{release} -Provides: tex(dfaxhigh.cfg) = %{epoch}:20210325-%{release} -Provides: tex(dvired.cfg) = %{epoch}:20210325-%{release} -Provides: tex(epson.cfg) = %{epoch}:20210325-%{release} -Provides: tex(ibmvga.cfg) = %{epoch}:20210325-%{release} -Provides: tex(ljfour.cfg) = %{epoch}:20210325-%{release} -Provides: tex(qms.cfg) = %{epoch}:20210325-%{release} -Provides: tex(toshiba.cfg) = %{epoch}:20210325-%{release} -Provides: tex(6w.enc) = %{epoch}:20210325-%{release} -Provides: tex(7t.enc) = %{epoch}:20210325-%{release} -Provides: tex(8a.enc) = %{epoch}:20210325-%{release} -Provides: tex(8r.enc) = %{epoch}:20210325-%{release} -Provides: tex(ad.enc) = %{epoch}:20210325-%{release} -Provides: tex(ansinew.enc) = %{epoch}:20210325-%{release} -Provides: tex(asex.enc) = %{epoch}:20210325-%{release} -Provides: tex(asexp.enc) = %{epoch}:20210325-%{release} -Provides: tex(dc.enc) = %{epoch}:20210325-%{release} -Provides: tex(dvips.enc) = %{epoch}:20210325-%{release} -Provides: tex(ec.enc) = %{epoch}:20210325-%{release} -Provides: tex(extex.enc) = %{epoch}:20210325-%{release} -Provides: tex(funky.enc) = %{epoch}:20210325-%{release} -Provides: tex(odvips.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-cs-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-ec-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-l7x-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-qx-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-rm-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-t2a-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-t2b-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-t2c-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-t5-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-texnansi-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-ts1-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(qx.enc) = %{epoch}:20210325-%{release} -Provides: tex(stormex.enc) = %{epoch}:20210325-%{release} -Provides: tex(tex256.enc) = %{epoch}:20210325-%{release} -Provides: tex(texmext.enc) = %{epoch}:20210325-%{release} -Provides: tex(texmital.enc) = %{epoch}:20210325-%{release} -Provides: tex(texmsym.enc) = %{epoch}:20210325-%{release} -Provides: tex(texnansx.enc) = %{epoch}:20210325-%{release} -Provides: tex(blackdvi.sty) = %{epoch}:20210325-%{release} -Provides: tex(blackdvi.tex) = %{epoch}:20210325-%{release} -Provides: tex(colordvi.sty) = %{epoch}:20210325-%{release} -Provides: tex(colordvi.tex) = %{epoch}:20210325-%{release} -Provides: tex(rotate.sty) = %{epoch}:20210325-%{release} -Provides: tex(rotate.tex) = %{epoch}:20210325-%{release} -Provides: tex(dvips) = %{epoch}:20210325-%{release} -Requires: texlive-latex-fonts - -%description -n texlive-dvips +%package -n %{shortname}-dvipos +Version: svn66186 +Provides: texlive-dvipos = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipos = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipos-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipos-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipos-bin < 7:20170520 +License: LPPL-1.3c +Summary: support DVI pos: specials used by ConTeXt DVI output +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvipos +support DVI pos: specials used by ConTeXt DVI output + +%package -n %{shortname}-dvips +Version: svn66203 +Provides: texlive-dvips = %{epoch}:%{source_date}-%{release} +Provides: tetex-dvips = %{epoch}:%{source_date}-%{release} +Provides: tex-dvips = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvips-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvips-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvips-bin < 7:20170520 +Provides: tex-dvips-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvips-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvips-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: A DVI to PostScript driver +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(canonex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(cx.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(deskjet.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(dfaxhigh.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvired.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(epson.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ibmvga.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ljfour.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(qms.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(toshiba.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(6w.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(7t.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(8a.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(8r.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ad.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ansinew.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(asex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(asexp.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips-all.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ec.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(extex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(funky.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(odvips.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-cs-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-ec-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-l7x-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-qx-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-rm-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2a-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2b-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2c-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t5-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-texnansi-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-ts1-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(qx.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(stormex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex256.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmext.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmital.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmsym.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texnansx.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(blackdvi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(blackdvi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(colordvi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(colordvi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotate.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotate.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips) = %{epoch}:%{source_date}-%{release} +Requires: texlive-latex-fonts + +%description -n %{shortname}-dvips This package has been withdrawn from CTAN, and bundled into the distributions' package sets. The current sources of dvips may be found in the distribution of dvipsk which forms part of the TeX Live sources. -%package -n texlive-dvisvgm -Provides: tex-dvisvgm = %{epoch}:20210325-%{release} -Provides: texlive-dvisvgm-bin = %{epoch}:20210325-%{release} -Provides: tex-dvisvgm-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvisvgm-bin < 7:20180414 -License: GPL+ -Summary: Convert DVI files to Scalable Vector Graphics format (SVG) -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvisvgm -Dvisvgm is a command line utility that converts TeX DVI files -to the XML-based Scalable Vector Graphics (SVG) format. It -provides full font support including virtual fonts, font maps, -and sub-fonts. If necessary, dvisvgm vectorizes Metafont's -bitmap output in order to always create lossless scalable -output. The embedded SVG fonts can optionally be replaced with -graphics paths so that applications that don't support SVG -fonts are enabled to render the graphics properly. Besides many -other features, dvisvgm also supports color, emTeX, tpic, PDF -mapfile and PostScript specials. - -%package -n texlive-ebong -Provides: tex-ebong = %{epoch}:20210325-%{release} -Provides: texlive-ebong-bin = %{epoch}:20210325-%{release} -Provides: tex-ebong-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ebong-bin < 7:20180414 -Provides: tex-ebong-doc = %{epoch}:20210325-%{release} -Provides: texlive-ebong-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ebong-doc < 7:20180414 -License: Public Domain -Summary: Utility for writing Bengali in Rapid Roman Format -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ebong +%package -n %{shortname}-dvisvgm +Version: svn66532 +Provides: texlive-dvisvgm = %{epoch}:%{source_date}-%{release} +Provides: tex-dvisvgm = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvisvgm-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvisvgm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvisvgm-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Convert DVI, EPS, and PDF files to Scalable Vector Graphics format (SVG) +Requires: texlive-base +Requires: texlive-kpathsea +# for mutool +#Requires: mupdf + +%description -n %{shortname}-dvisvgm +Dvisvgm is a command line utility that converts TeX DVI as well +as EPS and PDF files to the XML-based Scalable Vector Graphics +(SVG) format. It provides full font support including virtual +fonts, font maps, and sub-fonts. If necessary, dvisvgm +vectorizes Metafont's bitmap output in order to always create +lossless scalable output. The embedded SVG fonts can optionally +be replaced with graphics paths so that applications that do +not support SVG fonts are enabled to render the graphics +properly. Besides many other features, dvisvgm also supports +color, emTeX, tpic, papersize, PDF mapfile and PostScript +specials. + +%package -n %{shortname}-ebong +Version: svn55475 +Provides: texlive-ebong = %{epoch}:%{source_date}-%{release} +Provides: tex-ebong = %{epoch}:%{source_date}-%{release} +Provides: texlive-ebong-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ebong-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ebong-bin < 7:20170520 +Provides: tex-ebong-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ebong-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ebong-doc < 7:20170520 +License: LicenseRef-Fedora-Public-Domain +Summary: Utility for writing Bengali in Rapid Roman Format +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-ebong A tool (preprocessor) for writing your pRaa-ne-r ka-thaa in the bengali langauage. It allows one to write the text in Rapid Roman Bangla and convert it to the bangtex format by a python program. All LaTeX markups are preserved in the target file. -%package -n texlive-eplain -Provides: tex-eplain = %{epoch}:20210325-%{release} -Provides: texlive-eplain-bin = %{epoch}:20210325-%{release} -Provides: tex-eplain-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-eplain-bin < 7:20180414 -Provides: tex-eplain-doc = %{epoch}:20210325-%{release} -Provides: texlive-eplain-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-eplain-doc < 7:20180414 -License: GPLv2+ -Summary: Extended plain TeX macros -Requires: texlive-base texlive-kpathsea -Requires: texlive-pdftex texlive-babel -Requires: texlive-cm texlive-hyphen-base -Requires: texlive-latex-fonts texlive-l3backend -Requires: texlive-l3kernel texlive-l3packages -Requires: texlive-tex-ini-files texlive-unicode-data -Requires: texlive-dehyph texlive-hyph-utf8 -Requires: texlive-knuth-lib +%package -n %{shortname}-eplain +Version: svn64721 +Provides: texlive-eplain = %{epoch}:%{source_date}-%{release} +Provides: tex-eplain = %{epoch}:%{source_date}-%{release} +Provides: texlive-eplain-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-eplain-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-eplain-bin < 7:20170520 +Provides: tex-eplain-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-eplain-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-eplain-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Extended plain TeX macros +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-babel +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-latex-fonts +Requires: texlive-l3backend +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-dehyph +Requires: texlive-hyph-utf8 +Requires: texlive-knuth-lib Requires(post,postun): coreutils -Provides: tex(arrow.tex) = %{epoch}:20210325-%{release} -Provides: tex(btxmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(eplain.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch +Provides: tex(arrow.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(btxmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(eplain.tex) = %{epoch}:%{source_date}-%{release} +# No actual binaries in here +BuildArch: noarch -%description -n texlive-eplain +%description -n %{shortname}-eplain An extended version of the plain TeX format, adding support for bibliographies, tables of contents, enumerated lists, verbatim input of files, numbered equations, tables, two-column output, @@ -2108,40 +2640,48 @@ notably graphics, graphicx (an extended of version of graphics), color, autopict (a package instance of the LaTeX picture code), psfrag, and url. -%package -n texlive-epspdf -Provides: tex-epspdf = %{epoch}:20210325-%{release} -Provides: texlive-epspdf-bin = %{epoch}:20210325-%{release} -Provides: tex-epspdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-epspdf-bin < 7:20180414 -Provides: tex-epspdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-epspdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-epspdf-doc < 7:20180414 -License: GPL+ -Summary: Converter for PostScript, EPS and PDF -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-epspdf +%package -n %{shortname}-epspdf +Version: svn66115 +Provides: texlive-epspdf = %{epoch}:%{source_date}-%{release} +Provides: tex-epspdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-epspdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-epspdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epspdf-bin < 7:20170520 +Provides: tex-epspdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-epspdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epspdf-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Converter for PostScript, EPS and PDF +Requires: texlive-base +Requires: texlive-kpathsea +# tcl and lua +BuildArch: noarch + +%description -n %{shortname}-epspdf Epspdftk.tcl is a GUI ps/eps/pdf converter. Epspdf.tlu, its command-line backend, can be used by itself. Options include grayscaling, cropping margins and single-page selection. Some conversion options are made possible by converting in multiple steps. -%package -n texlive-epstopdf -Provides: tex-epstopdf = %{epoch}:20210325-%{release} -Provides: texlive-epstopdf-bin = %{epoch}:20210325-%{release} -Provides: tex-epstopdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-epstopdf-bin < 7:20180414 -Provides: tex-epstopdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-epstopdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-epstopdf-doc < 7:20180414 -License: BSD -Summary: Convert EPS to 'encapsulated' PDF using Ghostscript -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-epstopdf +%package -n %{shortname}-epstopdf +Version: svn66461 +Provides: texlive-epstopdf = %{epoch}:%{source_date}-%{release} +Provides: tex-epstopdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-epstopdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-epstopdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epstopdf-bin < 7:20170520 +Provides: tex-epstopdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-epstopdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epstopdf-doc < 7:20170520 +License: BSD-3-Clause +Summary: Convert EPS to 'encapsulated' PDF using Ghostscript +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-epstopdf Epstopdf is a Perl script that converts an EPS file to an 'encapsulated' PDF file (a single page file whose media box is the same as the original EPS's bounding box). The resulting @@ -2155,22 +2695,27 @@ epstopdf package, which will run the epstopdf script "on the fly", thus giving the illusion that PDFLaTeX is accepting EPS graphic files. -%package -n texlive-exceltex -Provides: tex-exceltex = %{epoch}:20210325-%{release} -Provides: texlive-exceltex-bin = %{epoch}:20210325-%{release} -Provides: tex-exceltex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-exceltex-bin < 7:20180414 -Provides: tex-exceltex-doc = %{epoch}:20210325-%{release} -Provides: texlive-exceltex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-exceltex-doc < 7:20180414 -License: GPL+ -Summary: Get data from Excel files into LaTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(ulem.sty) tex(color.sty) -Provides: tex(exceltex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-exceltex +%package -n %{shortname}-exceltex +Version: svn26313 +Provides: texlive-exceltex = %{epoch}:%{source_date}-%{release} +Provides: tex-exceltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-exceltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-exceltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-exceltex-bin < 7:20170520 +Provides: tex-exceltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-exceltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-exceltex-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Get data from Excel files into LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ulem.sty) +Requires: tex(color.sty) +Provides: tex(exceltex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-exceltex Exceltex is a LaTeX package combined with a helper program written in Perl. It provides an easy to use yet powerfull and flexible way to get data from Spreadsheets into LaTeX. In @@ -2183,71 +2728,84 @@ the Spreadsheet::ParseExcel Perl module) and because most spreadsheet applications are able to read and write Excel files. -%package -n texlive-fig4latex -Provides: tex-fig4latex = %{epoch}:20210325-%{release} -Provides: texlive-fig4latex-bin = %{epoch}:20210325-%{release} -Provides: tex-fig4latex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-fig4latex-bin < 7:20180414 -Provides: tex-fig4latex-doc = %{epoch}:20210325-%{release} -Provides: texlive-fig4latex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-fig4latex-doc < 7:20180414 -License: GPLv3+ -Summary: Management of figures for large LaTeX documents -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-fig4latex +%package -n %{shortname}-fig4latex +Version: svn26313 +Provides: texlive-fig4latex = %{epoch}:%{source_date}-%{release} +Provides: tex-fig4latex = %{epoch}:%{source_date}-%{release} +Provides: texlive-fig4latex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fig4latex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fig4latex-bin < 7:20170520 +Provides: tex-fig4latex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fig4latex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fig4latex-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Management of figures for large LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-fig4latex Fig4LaTeX simplifies management of the figures in a large LaTeX document. Fig4LaTeX is appropriate for projects that include figures with graphics created by XFig -- in particular, graphics which use the combined PS/LaTeX (or PDF/LaTeX) export method. An example document (with its output) is provided. -%package -n texlive-findhyph -Provides: tex-findhyph = %{epoch}:20210325-%{release} -Provides: texlive-findhyph-bin = %{epoch}:20210325-%{release} -Provides: tex-findhyph-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-findhyph-bin < 7:20180414 -Provides: tex-findhyph-doc = %{epoch}:20210325-%{release} -Provides: texlive-findhyph-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-findhyph-doc < 7:20180414 -License: GPL+ -Summary: Find hyphenated words in a document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-findhyph +%package -n %{shortname}-findhyph +Version: svn47444 +Provides: texlive-findhyph = %{epoch}:%{source_date}-%{release} +Provides: tex-findhyph = %{epoch}:%{source_date}-%{release} +Provides: texlive-findhyph-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-findhyph-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-findhyph-bin < 7:20170520 +Provides: tex-findhyph-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-findhyph-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-findhyph-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Find hyphenated words in a document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-findhyph Findhyph is a Perl script that will analyse the log file from running your document with \tracingparagraphs=1 set. The output contains enough context to enable you to find the hyphenated word that's being referenced. -%package -n texlive-fontinst -Provides: tex-fontinst = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-fontinst-bin = %{epoch}:20210325-%{release} -Provides: tex-fontinst-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-fontinst-bin < 7:20180414 -Provides: tex-fontinst-doc = %{epoch}:20210325-%{release} -Provides: texlive-fontinst-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-fontinst-doc < 7:20180414 -Summary: Help with installing fonts for TeX and LaTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(color.sty) tex(amstext.sty) -Provides: tex(bbox.sty) = %{epoch}:20210325-%{release} -Provides: tex(cfntinst.sty) = %{epoch}:20210325-%{release} -Provides: tex(fontinst.sty) = %{epoch}:20210325-%{release} -Provides: tex(finstmsc.sty) = %{epoch}:20210325-%{release} -Provides: tex(fontinst.sty) = %{epoch}:20210325-%{release} -Provides: tex(multislot.sty) = %{epoch}:20210325-%{release} -Provides: tex(xfntinst.sty) = %{epoch}:20210325-%{release} -Provides: tex(csc2x.tex) = %{epoch}:20210325-%{release} -Provides: tex(csckrn2x.tex) = %{epoch}:20210325-%{release} -Provides: tex(osf2x.tex) = %{epoch}:20210325-%{release} -Provides: tex(fontdoc.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-fontinst +%package -n %{shortname}-fontinst +Version: svn62517 +Provides: texlive-fontinst = %{epoch}:%{source_date}-%{release} +Provides: tex-fontinst = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontinst-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontinst-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontinst-bin < 7:20170520 +Provides: tex-fontinst-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontinst-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontinst-doc < 7:20170520 +License: LPPL-1.3c +Summary: Help with installing fonts for TeX and LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(color.sty) +Requires: tex(amstext.sty) +Provides: tex(bbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cfntinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(finstmsc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(multislot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(xfntinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(csc2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csckrn2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(osf2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontdoc.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-fontinst TeX macros for converting Adobe Font Metric files to TeX metric and virtual font format. Fontinst helps mainly with the number crunching and shovelling parts of font installation. This means @@ -2262,79 +2820,122 @@ for files or work with binary file formats; those tasks must normally be done manually or with the help of some other tool, such as the pltotf and vptovf programs. -%package -n texlive-fontools -Provides: tex-fontools = %{epoch}:20210325-%{release} -Provides: texlive-fontools-bin = %{epoch}:20210325-%{release} -Provides: tex-fontools-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-fontools-bin < 7:20180414 -Provides: tex-fontools-doc = %{epoch}:20210325-%{release} -Provides: texlive-fontools-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-fontools-doc < 7:20180414 -License: GPLv2+ -Summary: Tools to simplify using fonts (especially TT/OTF ones) -Requires: texlive-base texlive-kpathsea -Provides: tex(fontools_ly1.enc) = %{epoch}:20210325-%{release} -Provides: tex(fontools_ot1.enc) = %{epoch}:20210325-%{release} -Provides: tex(fontools_t1.enc) = %{epoch}:20210325-%{release} -Provides: tex(fontools_ts1.enc) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-fontools -This package provides a few tools to ease using fonts -(especially Truetype/Opentype ones) with Latex and fontinst: -afm2afm - reencode .afm files; designed to replace fontinst's -\reencodefont for big .afm files; autoinst - simplify the use -of the LCDF TypeTools by creating a command file for otftotfm, -plus .fd and .sty files; and ot2kpx - extract all kerning pairs -from an OpenType font. - -%package -n texlive-fontware -Provides: tex-fontware = %{epoch}:20210325-%{release} -Provides: texlive-fontware-bin = %{epoch}:20210325-%{release} -Provides: tex-fontware-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-fontware-bin < 7:20180414 -Summary: fontware package -Requires: texlive-base texlive-kpathsea - -%description -n texlive-fontware -fontware package. - -%package -n texlive-fragmaster -Provides: tex-fragmaster = %{epoch}:20210325-%{release} -Provides: texlive-fragmaster-bin = %{epoch}:20210325-%{release} -Provides: tex-fragmaster-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-fragmaster-bin < 7:20180414 -Provides: tex-fragmaster-doc = %{epoch}:20210325-%{release} -Provides: texlive-fragmaster-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-fragmaster-doc < 7:20180414 -License: GPL+ -Summary: Using psfrag with PDFLaTeX -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-fragmaster +%package -n %{shortname}-fontools +Version: svn65706 +Provides: texlive-fontools = %{epoch}:%{source_date}-%{release} +Provides: tex-fontools = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontools-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontools-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontools-bin < 7:20170520 +Provides: tex-fontools-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontools-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontools-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Tools to simplify using fonts (especially TT/OTF ones) +Requires: texlive-base +Requires: texlive-kpathsea +# for otfinfo +Requires: texlive-lcdftypetools +# For vptovf +Requires: texlive-fontware +Provides: tex(fontools_cs.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_l7x.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_lgr.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ly1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_oml.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ot1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_qx.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t2a.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t2b.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t2c.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t3.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t4.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t5.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ts1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ts3.enc) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-fontools +This package provides tools to simplify using OpenType fonts +with LaTeX. By far the most important program in this bundle is +autoinst: autoinst - a wrapper script around Eddie Kohler's +LCDF TypeTools. Autoinst aims to automate the installation of +OpenType fonts in LaTeX by calling the LCDF TypeTools (with the +correct options) for all fonts you wish to install, and +generating the necessary .fd and .sty files. In addition, this +bundle contains a few other, less important utilities: afm2afm +- re-encode .afm files, ot2kpx - extract kerning pairs from +OpenType fonts, splitttc - split an OpenType Collection file +(ttc or otc) into individual fonts. + +%package -n %{shortname}-fontware +Version: svn66186 +Provides: texlive-fontware = %{epoch}:%{source_date}-%{release} +Provides: tex-fontware = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontware-bin < 7:20170520 +License: LPPL-1.3c +Summary: Tools for virtual font metrics +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-fontware +Virtual font metrics are usually created in a textual form, the +Virtual Property List, but programs that use them need to use +binary files (the Virtual Font and the TeX Font Metric). The +present two programs translate between the two forms: - vptovf +takes a VPL file and generates a VF file and a TFM file; - +vftovp takes a VF file and a TFM file and generates a VPL file. +The programs are to be found in every distribution of TeX. + +%package -n %{shortname}-fragmaster +Version: svn26313 +Provides: texlive-fragmaster = %{epoch}:%{source_date}-%{release} +Provides: tex-fragmaster = %{epoch}:%{source_date}-%{release} +Provides: texlive-fragmaster-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fragmaster-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fragmaster-bin < 7:20170520 +Provides: tex-fragmaster-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fragmaster-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fragmaster-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Using psfrag with PDFLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-fragmaster Fragmaster enables you to use psfrag with PDFLaTeX. It takes EPS files and psfrag substitution definition files, and produces PDF and EPS files with the substitutions included. -%package -n texlive-getmap -Provides: tex-getmap = %{epoch}:20210325-%{release} -License: LPPL-1.3a -Provides: texlive-getmap-bin = %{epoch}:20210325-%{release} -Provides: tex-getmap-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-getmap-bin < 7:20180414 -Provides: tex-getmap-doc = %{epoch}:20210325-%{release} -Provides: texlive-getmap-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-getmap-doc < 7:20180414 -Summary: Download OpenStreetMap maps for use in documents -Requires: texlive-base texlive-kpathsea -Requires: tex(xkeyval.sty) tex(stringenc.sty) -Requires: tex(ifthen.sty) -Provides: tex(getmap.cfg) = %{epoch}:20210325-%{release} -Provides: tex(getmap.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-getmap +%package -n %{shortname}-getmap +Version: svn50589 +Provides: texlive-getmap = %{epoch}:%{source_date}-%{release} +Provides: tex-getmap = %{epoch}:%{source_date}-%{release} +Provides: texlive-getmap-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-getmap-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-getmap-bin < 7:20170520 +Provides: tex-getmap-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-getmap-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-getmap-doc < 7:20170520 +License: LPPL-1.3c +Summary: Download OpenStreetMap maps for use in documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(xkeyval.sty) +Requires: tex(stringenc.sty) +Requires: tex(ifthen.sty) +Provides: tex(getmap.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(getmap.sty) = %{epoch}:%{source_date}-%{release} +# lua and shell +BuildArch: noarch + +%description -n %{shortname}-getmap The package provides a simple interface to OpenStreetMap, and to Google Maps "map images". In the simplest case, it is sufficient to specify the address you need (if you don't, the @@ -2344,68 +2945,122 @@ LaTeX must be running with \write 18 enabled). The ("external") lua script may be used from the command line; a bash version is provided. -%package -n texlive-git-latexdiff -Summary: Call latexdiff on two Git revisions of a file -License: BSD -Requires: texlive-base texlive-kpathsea -Requires: git, texlive-latexdiff +%package -n %{shortname}-git-latexdiff +Version: svn54732 +Provides: texlive-git-latexdiff = %{epoch}:%{source_date}-%{release} +Summary: Call latexdiff on two Git revisions of a file +License: BSD-3-Clause +Requires: texlive-base texlive-kpathsea +Requires: git, texlive-latexdiff -%description -n texlive-git-latexdiff +%description -n %{shortname}-git-latexdiff git-latexdiff is a tool to graphically visualize differences between different versions of a LaTeX file. Technically, it is a wrapper around git and latexdiff. -%package -n texlive-glossaries -Provides: tex-glossaries = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-glossaries-bin = %{epoch}:20210325-%{release} -Provides: tex-glossaries-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-glossaries-bin < 7:20180414 -Provides: tex-glossaries-doc = %{epoch}:20210325-%{release} -Provides: texlive-glossaries-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-glossaries-doc < 7:20180414 -Summary: Create glossaries and lists of acronyms -Requires: texlive-base texlive-kpathsea -Requires: tex(tracklang.sty) tex(ifthen.sty) -Requires: tex(xkeyval.sty) tex(mfirstuc.sty) -Requires: tex(textcase.sty) tex(xfor.sty) -Requires: tex(datatool-base.sty) tex(amsgen.sty) -Requires: tex(etoolbox.sty) tex(glossary-super.sty) -Requires: tex(glossary-tree.sty) tex(translator.sty) -Requires: tex(accsupp.sty) tex(longtable.sty) -Requires: tex(array.sty) tex(multicol.sty) -Requires: tex(supertabular.sty) -Provides: tex(glossaries-babel.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries-compatible-207.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries-compatible-307.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries-polyglossia.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries-prefix.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries-accsupp.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-hypernav.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-inline.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-list.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-long.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-longragged.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-mcols.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-super.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-superragged.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-tree.sty) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-acronym-desc.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-acronym.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-acronyms-lang.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-brief.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-childnoname.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-cite.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-images.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-long.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-multipar.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-parent.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-symbols.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-url.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-glossaries +%package -n %{shortname}-glossaries +Version: svn64919 +Provides: texlive-glossaries = %{epoch}:%{source_date}-%{release} +Provides: tex-glossaries = %{epoch}:%{source_date}-%{release} +Provides: texlive-glossaries-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-glossaries-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-glossaries-bin < 7:20170520 +Provides: tex-glossaries-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-glossaries-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-glossaries-doc < 7:20170520 +License: LPPL-1.3c +Summary: Create glossaries and lists of acronyms +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-amsmath +Requires: texlive-datatool +Requires: texlive-etoolbox +Requires: texlive-mfirstuc +Requires: texlive-tracklang +Requires: texlive-xfor +Requires: texlive-xkeyval +Requires: tex(accsupp.sty) +Requires: tex(amsgen.sty) +Requires: tex(array.sty) +Requires: tex(booktabs.sty) +Requires: tex(ifthen.sty) +Requires: tex(longtable.sty) +Requires: tex(multicol.sty) +Requires: tex(shellesc.sty) +Requires: tex(supertabular.sty) +Requires: tex(textcase.sty) +Requires: tex(translator.sty) +Provides: tex(example-glossaries-acronym-desc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-acronym.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-acronyms-lang.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-brief.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-childmultipar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-childnoname.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-cite.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-images.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-long.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-longchild.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-multipar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-parent.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-symbolnames.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-url.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-user.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-accsupp-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-accsupp-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-accsupp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-babel-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-babel-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-babel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-207-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-207-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-207.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-307-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-307-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-307.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-polyglossia-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-polyglossia-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-polyglossia.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-prefix-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-prefix-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-prefix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-hypernav-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-hypernav-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-hypernav.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-inline-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-inline-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-inline.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-list-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-list-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-list.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-long-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-long-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-long.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longbooktabs-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longbooktabs-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longbooktabs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longragged-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longragged-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longragged.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-mcols-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-mcols-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-mcols.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-super-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-super-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-super.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-superragged-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-superragged-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-superragged.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-tree-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-tree-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-tree.sty) = %{epoch}:%{source_date}-%{release} +# perl and lua +BuildArch: noarch + +%description -n %{shortname}-glossaries The glossaries package supports acronyms and multiple glossaries, and has provision for operation in several languages (using the facilities of either babel or @@ -2420,83 +3075,153 @@ There is provision for loading a database of terms, but only terms used in the text will be added to the relevant glossary. The package uses an indexing program to provide the actual glossary; either makeindex or xindy may serve this purpose, and -a Perl script is provided to serve as interface. The package -distribution also provides the mfirstuc package, for changing -the first letter of a word to upper case. The package -supersedes the author's glossary package (which is now -obsolete), and a conversion tool is provided. - -%package -n texlive-glyphlist -Provides: tex-glyphlist = %{epoch}:20210325-%{release} -License: Apache-2.0 -Summary: glyphlist package -BuildArch: noarch -Requires: texlive-base texlive-kpathsea - -%description -n texlive-glyphlist +a Perl script is provided to serve as interface. This package +requires the mfirstuc package. The package supersedes the +author's glossary package (which is now obsolete). + +%package -n %{shortname}-glyphlist +Version: svn54074 +Provides: texlive-glyphlist = %{epoch}:%{source_date}-%{release} +Provides: tex-glyphlist = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: glyphlist package +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-glyphlist glyphlist package. -%package -n texlive-gregoriotex -Provides: tex-gregoriotex = %{epoch}:20210325-%{release} -Provides: texlive-gregoriotex-bin = %{epoch}:20210325-%{release} -Provides: tex-gregoriotex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-gregoriotex-bin < 7:20180414 -Provides: tex-gregoriotex-doc = %{epoch}:20210325-%{release} -Provides: texlive-gregoriotex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-gregoriotex-doc < 7:20180414 -License: GPLv3 -Summary: Engraving Gregorian Chant scores -Requires: texlive-base texlive-kpathsea -Provides: tex(gregoriosyms.sty) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex.sty) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-signs.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-syllable.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-main.tex) = %{epoch}:20210325-%{release} -Provides: tex(gsp-default.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-nabc.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-symbols.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-chars.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-spaces.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-gregoriotex +%package -n %{shortname}-gregoriotex +Version: svn58331 +Provides: texlive-gregoriotex = %{epoch}:%{source_date}-%{release} +Provides: tex-gregoriotex = %{epoch}:%{source_date}-%{release} +Provides: texlive-gregoriotex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-gregoriotex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gregoriotex-bin < 7:20170520 +Provides: tex-gregoriotex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-gregoriotex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gregoriotex-doc < 7:20170520 +License: GPL-3.0-only +Summary: Engraving Gregorian Chant scores +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(graphicx.sty) +Requires: tex(iftex.sty) +Requires: tex(kvoptions.sty) +Requires: tex(luacolor.sty) +Requires: tex(luamplib.sty) +Requires: tex(luaotfload.sty) +Requires: tex(luatexbase.sty) +Requires: tex(xcolor.sty) +Requires: tex(xstring.sty) +Provides: tex(gregoriosyms.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-signs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-syllable.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-main.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gsp-default.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-nabc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-chars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-spaces.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-gregoriotex Gregorio is a software application for engraving Gregorian Chant scores on a computer. Gregorio's main job is to convert a gabc file (simple text representation of a score) into a GregorioTeX file, which makes TeX able to create a PDF of your score. -%package -n texlive-gsftopk -Provides: tex-gsftopk = %{epoch}:20210325-%{release} -Provides: texlive-gsftopk-bin = %{epoch}:20210325-%{release} -Provides: tex-gsftopk-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-gsftopk-bin < 7:20180414 -License: GPL+ -Summary: Convert "ghostscript fonts" to PK files -Requires: texlive-base texlive-kpathsea - -%description -n texlive-gsftopk +%package -n %{shortname}-gsftopk +Version: svn52851 +Provides: texlive-gsftopk = %{epoch}:%{source_date}-%{release} +Provides: tex-gsftopk = %{epoch}:%{source_date}-%{release} +Provides: texlive-gsftopk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-gsftopk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gsftopk-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Convert "ghostscript fonts" to PK files +Requires: texlive-base +Requires: texlive-kpathsea +# Does not exist in a package anymore +# Requires: tex(psfonts.map) + +%description -n %{shortname}-gsftopk Designed for use with xdvi and dvips this utility converts Adobe Type 1 fonts to PK bitmap format. It should not ordinarily be much used nowadays, since both its target applications are now capable of dealing with Type 1 fonts, direct. -%package -n texlive-hyperxmp -Summary: Embed XMP metadata within a LaTeX document -License: LPPL-1.3c -Requires: texlive-base texlive-kpathsea -Requires: tex(atenddvi.sty) -Requires: tex(kvoptions.sty) -Requires: tex(pdfescape.sty) -Requires: tex(stringenc.sty) -Requires: tex(intcalc.sty) -Requires: tex(ifxetex.sty) -Provides: tex(hyperxmp.sty) = %{epoch}:20210325-%{release} -Provides: texlive-hyperxmp-doc = %{epoch}:20210325-%{release} -Provides: tex-hyperxmp-doc = %{epoch}:20210325-%{release} - -%description -n texlive-hyperxmp +%package -n %{shortname}-hitex +Version: svn65883 +Provides: texlive-hitex = %{epoch}:%{source_date}-%{release} +Provides: texlive-hitex-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: A TeX extension writing HINT output for on-screen reading +Requires: texlive-base, texlive-kpathsea +Requires: texlive-atbegshi +Requires: texlive-atveryend +Requires: texlive-babel +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-everyshi +Requires: texlive-firstaid +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-l3backend +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-latex +Requires: texlive-latex-fonts +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Provides: tex(hiltxpage.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hiplainpage.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifhint.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-hitex +An extension of TeX which generates HINT output. The HINT file +format is an alternative to the DVI and PDF formats which was +designed specifically for on-screen reading of documents. +Especially on mobile devices, reading DVI or PDF documents can +be cumbersome. Mobile devices are available in a large variety +of sizes but typically are not large enough to display +documents formated for a4/letter-size paper. To compensate for +the limitations of a small screen, users are used to +alternating between landscape (few long lines) and portrait +(more short lines) mode. The HINT format supports variable and +varying screen sizes, leveraging the ability of TeX to format a +document for nearly-arbitrary values of \hsize and \vsize. + +%package -n %{shortname}-hyperxmp +Version: svn65980 +Provides: texlive-hyperxmp = %{epoch}:%{source_date}-%{release} +Summary: Embed XMP metadata within a LaTeX document +License: LPPL-1.3c +Requires: texlive-base texlive-kpathsea +Requires: tex(atenddvi.sty) +Requires: tex(etoolbox.sty) +Requires: tex(hyperref.sty) +Requires: tex(ifdraft.sty) +Requires: tex(ifluatex.sty) +Requires: tex(ifmtarg.sty) +Requires: tex(iftex.sty) +Requires: tex(ifthen.sty) +Requires: tex(intcalc.sty) +Requires: tex(kvoptions.sty) +Requires: tex(luacode.sty) +Requires: tex(pdfescape.sty) +Requires: tex(stringenc.sty) +Requires: tex(totpages.sty) +Provides: tex(hyperxmp.sty) = %{epoch}:%{source_date}-%{release} +Provides: texlive-hyperxmp-doc = %{epoch}:%{source_date}-%{release} +Provides: tex-hyperxmp-doc = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-hyperxmp XMP (eXtensible Metadata Platform) is a mechanism proposed by Adobe for embedding document metadata within the document itself. The metadata is designed to be easy to extract, even by @@ -2517,19 +3242,24 @@ address/URL. Hyperxmp currently embeds XMP only within PDF documents; it is compatible with pdfLaTeX, XeLaTeX, LaTeX+dvipdfm, and LaTeX+dvips+ps2pdf. -%package -n texlive-installfont -Provides: tex-installfont = %{epoch}:20210325-%{release} -Provides: texlive-installfont-bin = %{epoch}:20210325-%{release} -Provides: tex-installfont-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-installfont-bin < 7:20180414 -Provides: tex-installfont-doc = %{epoch}:20210325-%{release} -Provides: texlive-installfont-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-installfont-doc < 7:20180414 -Summary: A bash script for installing a LaTeX font family -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-installfont +%package -n %{shortname}-installfont +Version: svn31205 +Provides: texlive-installfont = %{epoch}:%{source_date}-%{release} +Provides: tex-installfont = %{epoch}:%{source_date}-%{release} +Provides: texlive-installfont-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-installfont-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-installfont-bin < 7:20170520 +Provides: tex-installfont-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-installfont-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-installfont-doc < 7:20170520 +License: LPPL-1.3c +Summary: A bash script for installing a LaTeX font family +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-installfont With this script you can install a LaTeX font family (PostScript Type 1, TrueType and OpenType formats are supported). Font series from light to ultra bold, and (faked) @@ -2540,87 +3270,96 @@ font files (in PostScript Type1 format) named in the Karl Berry scheme (e.g. 5bbr8a.pfb). After running the script, you should have a working font installation in your local TeX tree. -%package -n texlive-jadetex -Provides: tex-jadetex = %{epoch}:20210325-%{release} -Provides: texlive-jadetex-bin = %{epoch}:20210325-%{release} -Provides: tex-jadetex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-jadetex-bin < 7:20180414 -Provides: tex-jadetex-doc = %{epoch}:20210325-%{release} -Provides: texlive-jadetex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-jadetex-doc < 7:20180414 -Provides: jadetex = %{epoch}:20210325-%{release} -License: MIT -Summary: Macros supporting Jade DSSSL output -Requires: texlive-base texlive-kpathsea -Requires: texlive-latex texlive-passivetex -Requires: texlive-pdftex -Requires: texlive-tex -Requires: texlive-amsfonts -Requires: texlive-atbegshi -Requires: texlive-atveryend -Requires: texlive-auxhook -Requires: texlive-babel -Requires: texlive-bigintcalc -Requires: texlive-bitset -Requires: texlive-cm -Requires: texlive-colortbl -Requires: texlive-cyrillic -Requires: texlive-dehyph -Requires: texlive-ec -Requires: texlive-etexcmds -Requires: texlive-fancyhdr -Requires: texlive-graphics -Requires: texlive-graphics-cfg -Requires: texlive-graphics-def -Requires: texlive-hycolor -Requires: texlive-hyperref -Requires: texlive-hyph-utf8 -Requires: texlive-iftex -Requires: texlive-infwarerr -Requires: texlive-intcalc -Requires: texlive-kvdefinekeys -Requires: texlive-kvoptions -Requires: texlive-kvsetkeys -Requires: texlive-l3kernel -Requires: texlive-latex-fonts -Requires: texlive-latexconfig -Requires: texlive-letltxmacro -Requires: texlive-ltxcmds -Requires: texlive-marvosym -Requires: texlive-pdfescape -Requires: texlive-pdftexcmds -Requires: texlive-psnfss -Requires: texlive-rerunfilecheck -Requires: texlive-stmaryrd -Requires: texlive-symbol -Requires: texlive-tex-ini-files -Requires: texlive-tipa -Requires: texlive-tools -Requires: texlive-ulem -Requires: texlive-uniquecounter -Requires: texlive-unicode-data -Requires: texlive-url -Requires: texlive-wasysym -Requires: texlive-zapfding +%package -n %{shortname}-jadetex +Version: svn63654 +Provides: texlive-jadetex = %{epoch}:%{source_date}-%{release} +Provides: tex-jadetex = %{epoch}:%{source_date}-%{release} +Provides: texlive-jadetex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-jadetex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jadetex-bin < 7:20170520 +Provides: tex-jadetex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-jadetex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jadetex-doc < 7:20170520 +Provides: jadetex = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Macros supporting Jade DSSSL output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-passivetex +Requires: texlive-pdftex +Requires: texlive-tex +Requires: texlive-amsfonts +Requires: texlive-atbegshi +Requires: texlive-atveryend +Requires: texlive-auxhook +Requires: texlive-babel +Requires: texlive-bigintcalc +Requires: texlive-bitset +Requires: texlive-cm +Requires: texlive-colortbl +Requires: texlive-cyrillic +Requires: texlive-dehyph +Requires: texlive-ec +Requires: texlive-etexcmds +Requires: texlive-fancyhdr +Requires: texlive-graphics +Requires: texlive-graphics-cfg +Requires: texlive-graphics-def +Requires: texlive-hycolor +Requires: texlive-hyperref +Requires: texlive-hyph-utf8 +Requires: texlive-iftex +Requires: texlive-infwarerr +Requires: texlive-intcalc +Requires: texlive-kvdefinekeys +Requires: texlive-kvoptions +Requires: texlive-kvsetkeys +Requires: texlive-l3kernel +Requires: texlive-latex-fonts +Requires: texlive-latexconfig +Requires: texlive-letltxmacro +Requires: texlive-ltxcmds +Requires: texlive-marvosym +Requires: texlive-pdfescape +Requires: texlive-pdftexcmds +Requires: texlive-psnfss +Requires: texlive-rerunfilecheck +Requires: texlive-stmaryrd +Requires: texlive-symbol +Requires: texlive-tex-ini-files +Requires: texlive-tipa +Requires: texlive-tools +Requires: texlive-ulem +Requires: texlive-uniquecounter +Requires: texlive-unicode-data +Requires: texlive-url +Requires: texlive-wasysym +Requires: texlive-zapfding Requires(post,postun): coreutils -Provides: tex(dsssl.def) = %{epoch}:20210325-%{release} -Provides: tex(uentities.sty) = %{epoch}:20210325-%{release} -Provides: tex(ut1omlgc.fd) = %{epoch}:20210325-%{release} -BuildArch: noarch +Provides: tex(dsssl.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(uentities.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ut1omlgc.fd) = %{epoch}:%{source_date}-%{release} +# no binaries +BuildArch: noarch -%description -n texlive-jadetex +%description -n %{shortname}-jadetex Macro package on top of LaTeX to typeset TeX output of the Jade DSSSL implementation. -%package -n texlive-jfmutil -Provides: tex-jfmutil = %{epoch}:20210325-%{release} -Provides: texlive-jfmutil-bin = %{epoch}:20210325-%{release} -License: MIT -Summary: Utility to process pTeX-extended TFM and VF -BuildArch: noarch -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-jfmutil +Version: svn60987 +Provides: texlive-jfmutil = %{epoch}:%{source_date}-%{release} +Provides: tex-jfmutil = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfmutil-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Utility to process pTeX-extended TFM and VF +# perl +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea -%description -n texlive-jfmutil +%description -n %{shortname}-jfmutil This program provides functionality to process data files (JFM and VF) that form logical fonts used in (u)pTeX. The functions currently available include: The mutual conversion between @@ -2631,85 +3370,101 @@ counterpart to the vftovp/vptovf programs. The mutual conversion between VF files alone and files in the "ZVP0 format", which is a subset of the ZVP format. -%package -n texlive-ketcindy -Provides: tex-ketcindy = %{epoch}:20210325-%{release} -Provides: tex-ketcindy-bin = %{epoch}:20210325-%{release} -License: GPLv3+ -Summary: Macros for graphic generation and Cinderella plugin -Requires: texlive-base -Requires: texlive-kpathsea -Provides: tex(ketlayer.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketlayer2e.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketmedia.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketpic.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketpic2e.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketslide.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketslide2.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-ketcindy +%package -n %{shortname}-ketcindy +Version: svn58661 +Provides: texlive-ketcindy = %{epoch}:%{source_date}-%{release} +Provides: tex-ketcindy = %{epoch}:%{source_date}-%{release} +Provides: tex-ketcindy-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: Macros for graphic generation and Cinderella plugin +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(ketlayer.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketlayer2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketmedia.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketpic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketpic2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketslide.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketslide2.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-ketcindy KETpic is a macro package designed for computer algebra systems (CAS) to generate LaTeX source codes for high-quality mathematical artwork. KETcindy is a plugin for Cinderella that allows to generate graphics using KETpic. The generated code can be included in any LaTeX document. -%package -n texlive-kotex-utils -Provides: tex-kotex-utils = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-kotex-utils-bin = %{epoch}:20210325-%{release} -Provides: tex-kotex-utils-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-kotex-utils-bin < 7:20180414 -Provides: tex-kotex-utils-doc = %{epoch}:20210325-%{release} -Provides: texlive-kotex-utils-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-kotex-utils-doc < 7:20180414 -Summary: Utility scripts and support files for typesetting Korean -Requires: texlive-base texlive-kotex-utf -Requires: texlive-kpathsea -BuildArch: noarch - -%description -n texlive-kotex-utils +%package -n %{shortname}-kotex-utils +Version: svn38727 +Provides: texlive-kotex-utils = %{epoch}:%{source_date}-%{release} +Provides: tex-kotex-utils = %{epoch}:%{source_date}-%{release} +Provides: texlive-kotex-utils-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-kotex-utils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kotex-utils-bin < 7:20170520 +Provides: tex-kotex-utils-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-kotex-utils-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kotex-utils-doc < 7:20170520 +License: LPPL-1.3c +Summary: Utility scripts and support files for typesetting Korean +Requires: texlive-base +Requires: texlive-kotex-utf +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-kotex-utils The bundle provides scripts and support files for index generation in Korean language typesetting. The files belong to the ko.TeX bundle. -%package -n texlive-kpathsea -License: LGPLv2+ -Summary: Path searching library for TeX-related files -Provides: kpathsea = %{epoch}:20210325-%{release} -Obsoletes: kpathsea < 20210325 -Provides: tex-kpathsea = %{epoch}:20210325-%{release} -Provides: texlive-kpathsea-bin = %{epoch}:20210325-%{release} -Provides: tex-kpathsea-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-kpathsea-bin < 7:20180414 -Provides: tex-kpathsea-doc = %{epoch}:20210325-%{release} -Provides: texlive-kpathsea-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-kpathsea-doc < 7:20180414 -Requires: coreutils grep texlive-base -Requires(post): texlive-texlive-scripts = %{epoch}:20210325-%{release} -Provides: tex(fmtutil.cnf) = %{epoch}:20210325-%{release} -Provides: tex(mktex.cnf) = %{epoch}:20210325-%{release} -Provides: tex(texmf.cnf) = %{epoch}:20210325-%{release} - -%description -n texlive-kpathsea +%package -n %{shortname}-kpathsea +Version: svn66209 +Provides: texlive-kpathsea = %{epoch}:%{source_date}-%{release} +License: LGPL-2.1-or-later +Summary: Path searching library for TeX-related files +Provides: kpathsea = %{epoch}:%{source_date}-%{release} +Obsoletes: kpathsea < %{source_date} +Provides: tex-kpathsea = %{epoch}:%{source_date}-%{release} +Provides: texlive-kpathsea-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-kpathsea-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-bin < 7:20170520 +Provides: tex-kpathsea-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-kpathsea-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-doc < 7:20170520 +Requires: coreutils, grep +Requires: texlive-base +# We absolutely need this to go in first, since the trigger needs it +Requires(post): texlive-texlive-scripts = %{epoch}:%{source_date}-%{release} +Provides: tex(fmtutil.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(mktex.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmf.cnf) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-kpathsea Kpathsea is a library and utility programs which provide path searching facilities for TeX file types, including the self- locating feature required for movable installations, layered on top of a general search mechanism. -%package -n texlive-l3build -Provides: tex-l3build = %{epoch}:20210325-%{release} -Provides: texlive-l3build-bin = %{epoch}:20210325-%{release} -Provides: tex-l3build-doc = %{epoch}:20210325-%{release} -Provides: texlive-l3build-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-l3build-doc < 7:20210325 -License: MIT -Summary: A testing and building system for (La)TeX -Provides: tex(regression-test.tex) = %{epoch}:20210325-%{release} -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-l3build +%package -n %{shortname}-l3build +Version: svn66471 +Provides: texlive-l3build = %{epoch}:%{source_date}-%{release} +Provides: tex-l3build = %{epoch}:%{source_date}-%{release} +Provides: texlive-l3build-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-l3build-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-l3build-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-l3build-doc < 7:20180414 +License: LPPL-1.3c +Summary: A testing and building system for (La)TeX +Provides: tex(regression-test.tex) = %{epoch}:%{source_date}-%{release} +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +# lua +BuildArch: noarch + +%description -n %{shortname}-l3build The build system supports testing and building LaTeX3 code, on Linux, Mac OS X and Windows systems. The package offers: A unit testing system for (La)TeX code (whether kernel code or @@ -2717,196 +3472,209 @@ contributed packages); A system for typesetting package documentation; and An automated process for creating CTAN releases. -%package -n texlive-lacheck -Provides: tex-lacheck = %{epoch}:20210325-%{release} -Provides: texlive-lacheck-bin = %{epoch}:20210325-%{release} -Provides: tex-lacheck-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-lacheck-bin < 7:20180414 -License: GPL+ -Summary: LaTeX checker -Requires: texlive-base texlive-kpathsea - -%description -n texlive-lacheck +%package -n %{shortname}-lacheck +Version: svn66186 +Provides: texlive-lacheck = %{epoch}:%{source_date}-%{release} +Provides: tex-lacheck = %{epoch}:%{source_date}-%{release} +Provides: texlive-lacheck-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lacheck-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lacheck-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: LaTeX checker +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-lacheck Lacheck is a tool for finding common mistakes in LaTeX documents. The distribution includes sources, and executables for OS/2 and Win32 environments. -%package -n texlive-latex -Provides: tex-latex = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tetex-latex = %{epoch}:20210325-%{release} -Provides: texlive-latex-bin = %{epoch}:20210325-%{release} -Provides: tex-latex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-bin < 7:20180414 -Provides: texlive-latex-bin-bin = %{epoch}:20210325-%{release} -Provides: tex-latex-bin-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-bin-bin < 7:20180414 -Provides: tex-latex-doc = %{epoch}:20210325-%{release} -Provides: texlive-latex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-doc < 7:20180414 -# texlive-latex-base-dev is a development package of texlive-latex -# for stability we don't use this. -#!BuildIgnore: texlive-latex-base-dev -Summary: A TeX macro package that defines LaTeX -Requires: texlive-base -Requires: tex(expl3.sty) -Requires: texlive-kpathsea -Requires: texlive-luatex -Requires: texlive-pdftex -Requires: texlive-latexconfig -Requires: texlive-latex-fonts -Requires: texlive-cm-super -Requires: texlive-psnfss +%package -n %{shortname}-latex +Version: svn65161 +Provides: texlive-latex = %{epoch}:%{source_date}-%{release} +Provides: tex-latex = %{epoch}:%{source_date}-%{release} +Provides: tetex-latex = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-bin < 7:20170520 +Provides: texlive-latex-bin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-bin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-bin-bin < 7:20170520 +Provides: tex-latex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-doc < 7:20170520 +License: LPPL-1.3c +Summary: A TeX macro package that defines LaTeX +Requires: texlive-base +Requires: tex(expl3.sty) +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: texlive-pdftex +Requires: texlive-latexconfig +Requires: texlive-latex-fonts +# As a result of changes in textcomp, it requests TS1 fonts for some things +# most notably, \textbullet. Since people probably want a working itemize +# even on rather minimal installs, we add an explicit Requires on texlive-cm-super +# here. (bz1867927) +Requires: texlive-cm-super +# Another font dependency +Requires: texlive-psnfss Requires(post,postun): coreutils -Requires: tex(multicol.sty) tex(url.sty) -Requires: tex(hyperref.sty) -Provides: tex(alltt.sty) = %{epoch}:20210325-%{release} -Provides: tex(ansinew.def) = %{epoch}:20210325-%{release} -Provides: tex(applemac.def) = %{epoch}:20210325-%{release} -Provides: tex(article.cls) = %{epoch}:20210325-%{release} -Provides: tex(article.sty) = %{epoch}:20210325-%{release} -Provides: tex(ascii.def) = %{epoch}:20210325-%{release} -Provides: tex(bezier.sty) = %{epoch}:20210325-%{release} -Provides: tex(bk10.clo) = %{epoch}:20210325-%{release} -Provides: tex(bk11.clo) = %{epoch}:20210325-%{release} -Provides: tex(bk12.clo) = %{epoch}:20210325-%{release} -Provides: tex(book.cls) = %{epoch}:20210325-%{release} -Provides: tex(book.sty) = %{epoch}:20210325-%{release} -Provides: tex(cp1250.def) = %{epoch}:20210325-%{release} -Provides: tex(cp1252.def) = %{epoch}:20210325-%{release} -Provides: tex(cp1257.def) = %{epoch}:20210325-%{release} -Provides: tex(cp437.def) = %{epoch}:20210325-%{release} -Provides: tex(cp437de.def) = %{epoch}:20210325-%{release} -Provides: tex(cp850.def) = %{epoch}:20210325-%{release} -Provides: tex(cp852.def) = %{epoch}:20210325-%{release} -Provides: tex(cp858.def) = %{epoch}:20210325-%{release} -Provides: tex(cp865.def) = %{epoch}:20210325-%{release} -Provides: tex(decmulti.def) = %{epoch}:20210325-%{release} -Provides: tex(doc.sty) = %{epoch}:20210325-%{release} -Provides: tex(docstrip.tex) = %{epoch}:20210325-%{release} -Provides: tex(exscale.sty) = %{epoch}:20210325-%{release} -Provides: tex(fix-cm.sty) = %{epoch}:20210325-%{release} -Provides: tex(fixltx2e.sty) = %{epoch}:20210325-%{release} -Provides: tex(flafter.sty) = %{epoch}:20210325-%{release} -Provides: tex(fleqn.clo) = %{epoch}:20210325-%{release} -Provides: tex(fleqn.sty) = %{epoch}:20210325-%{release} -Provides: tex(fltrace.sty) = %{epoch}:20210325-%{release} -Provides: tex(fontenc.sty) = %{epoch}:20210325-%{release} -Provides: tex(fontmath.cfg) = %{epoch}:20210325-%{release} -Provides: tex(fonttext.cfg) = %{epoch}:20210325-%{release} -Provides: tex(graphpap.sty) = %{epoch}:20210325-%{release} -Provides: tex(idx.tex) = %{epoch}:20210325-%{release} -Provides: tex(ifthen.sty) = %{epoch}:20210325-%{release} -Provides: tex(inputenc.sty) = %{epoch}:20210325-%{release} -Provides: tex(lablst.tex) = %{epoch}:20210325-%{release} -Provides: tex(latex209.def) = %{epoch}:20210325-%{release} -Provides: tex(latexbug.tex) = %{epoch}:20210325-%{release} -Provides: tex(latexrelease.sty) = %{epoch}:20210325-%{release} -Provides: tex(latexsym.sty) = %{epoch}:20210325-%{release} -Provides: tex(latin1.def) = %{epoch}:20210325-%{release} -Provides: tex(latin10.def) = %{epoch}:20210325-%{release} -Provides: tex(latin2.def) = %{epoch}:20210325-%{release} -Provides: tex(latin3.def) = %{epoch}:20210325-%{release} -Provides: tex(latin4.def) = %{epoch}:20210325-%{release} -Provides: tex(latin5.def) = %{epoch}:20210325-%{release} -Provides: tex(latin9.def) = %{epoch}:20210325-%{release} -Provides: tex(leqno.clo) = %{epoch}:20210325-%{release} -Provides: tex(leqno.sty) = %{epoch}:20210325-%{release} -Provides: tex(letter.cls) = %{epoch}:20210325-%{release} -Provides: tex(letter.sty) = %{epoch}:20210325-%{release} -Provides: tex(lppl.tex) = %{epoch}:20210325-%{release} -Provides: tex(ltnews.cls) = %{epoch}:20210325-%{release} -Provides: tex(ltxcheck.tex) = %{epoch}:20210325-%{release} -Provides: tex(ltxdoc.cls) = %{epoch}:20210325-%{release} -Provides: tex(ltxguide.cls) = %{epoch}:20210325-%{release} -Provides: tex(macce.def) = %{epoch}:20210325-%{release} -Provides: tex(makeidx.sty) = %{epoch}:20210325-%{release} -Provides: tex(minimal.cls) = %{epoch}:20210325-%{release} -Provides: tex(newlfont.sty) = %{epoch}:20210325-%{release} -Provides: tex(next.def) = %{epoch}:20210325-%{release} -Provides: tex(nfssfont.tex) = %{epoch}:20210325-%{release} -Provides: tex(oldlfont.sty) = %{epoch}:20210325-%{release} -Provides: tex(omlcmm.fd) = %{epoch}:20210325-%{release} -Provides: tex(omlcmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(omlenc.def) = %{epoch}:20210325-%{release} -Provides: tex(omllcmm.fd) = %{epoch}:20210325-%{release} -Provides: tex(omscmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(omscmsy.fd) = %{epoch}:20210325-%{release} -Provides: tex(omsenc.def) = %{epoch}:20210325-%{release} -Provides: tex(omslcmsy.fd) = %{epoch}:20210325-%{release} -Provides: tex(omxcmex.fd) = %{epoch}:20210325-%{release} -Provides: tex(omxlcmex.fd) = %{epoch}:20210325-%{release} -Provides: tex(openbib.sty) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1enc.def) = %{epoch}:20210325-%{release} -Provides: tex(ot1lcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1lcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot4enc.def) = %{epoch}:20210325-%{release} -Provides: tex(preload.cfg) = %{epoch}:20210325-%{release} -Provides: tex(proc.cls) = %{epoch}:20210325-%{release} -Provides: tex(proc.sty) = %{epoch}:20210325-%{release} -Provides: tex(report.cls) = %{epoch}:20210325-%{release} -Provides: tex(report.sty) = %{epoch}:20210325-%{release} -Provides: tex(sample2e.tex) = %{epoch}:20210325-%{release} -Provides: tex(sfonts.def) = %{epoch}:20210325-%{release} -Provides: tex(shortvrb.sty) = %{epoch}:20210325-%{release} -Provides: tex(showidx.sty) = %{epoch}:20210325-%{release} -Provides: tex(size10.clo) = %{epoch}:20210325-%{release} -Provides: tex(size11.clo) = %{epoch}:20210325-%{release} -Provides: tex(size12.clo) = %{epoch}:20210325-%{release} -Provides: tex(slides.cls) = %{epoch}:20210325-%{release} -Provides: tex(slides.def) = %{epoch}:20210325-%{release} -Provides: tex(slides.sty) = %{epoch}:20210325-%{release} -Provides: tex(small2e.tex) = %{epoch}:20210325-%{release} -Provides: tex(source2e.tex) = %{epoch}:20210325-%{release} -Provides: tex(syntonly.sty) = %{epoch}:20210325-%{release} -Provides: tex(t1cmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1enc.def) = %{epoch}:20210325-%{release} -Provides: tex(t1enc.sty) = %{epoch}:20210325-%{release} -Provides: tex(t1lcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1lcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(testpage.tex) = %{epoch}:20210325-%{release} -Provides: tex(texsys.cfg) = %{epoch}:20210325-%{release} -Provides: tex(textcomp.sty) = %{epoch}:20210325-%{release} -Provides: tex(tracefnt.sty) = %{epoch}:20210325-%{release} -Provides: tex(ts1cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ts1cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ts1cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ts1cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ts1enc.def) = %{epoch}:20210325-%{release} -Provides: tex(tuenc.def) = %{epoch}:20210325-%{release} -Provides: tex(tulmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmssq.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmssq.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ucmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ucmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ucmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ulasy.fd) = %{epoch}:20210325-%{release} -Provides: tex(ullasy.fd) = %{epoch}:20210325-%{release} -Provides: tex(utf8-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(utf8.def) = %{epoch}:20210325-%{release} -Provides: tex(utf8test.tex) = %{epoch}:20210325-%{release} -Provides: texlive-texmf-latex = %{epoch}:20210325-%{release} -Obsoletes: texlive-texmf-latex < 20210325 -BuildArch: noarch - -%description -n texlive-latex +Requires: tex(multicol.sty) +Requires: tex(url.sty) +Requires: tex(hyperref.sty) +Requires: tex(hypdoc.sty) +Provides: tex(alltt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ansinew.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(applemac.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(article.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(article.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ascii.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(atbegshi-ltx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(atveryend-ltx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bezier.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk10.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk11.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk12.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(book.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(book.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1250.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1252.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1257.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp437.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp437de.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp850.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp852.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp858.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp865.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(decmulti.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(doc-2016-02-15.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(doc-2021-06-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(doc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(docstrip.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(exscale.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fix-cm.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fixltx2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(flafter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fleqn.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(fleqn.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fltrace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontenc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontmath.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttext.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(graphpap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(idx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifthen.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(inputenc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lablst.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(latex209.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latexrelease.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(latexsym.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin1.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin10.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin2.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin3.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin4.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin5.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin9.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(leqno.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(leqno.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(letter.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(letter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lppl.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltnews.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxcheck.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxdoc.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxguide.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(macce.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(makeidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(minimal.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(newlfont.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(next.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(nfssfont.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(oldlfont.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlcmm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlcmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(omllcmm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omscmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omscmsy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omsenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(omslcmsy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omxcmex.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omxlcmex.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(openbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot4enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(preload.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(proc.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(proc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(report.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(report.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(sample2e.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(sfonts.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(shortvrb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(showidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(size10.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(size11.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(size12.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(small2e.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(source2edoc.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(structuredlog.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(syntonly.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(testpage.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(texsys.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(textcomp-2018-08-11.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(textcomp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tracefnt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(tuenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmssq.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ulasy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ullasy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(utf8-2018.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(utf8.def) = %{epoch}:%{source_date}-%{release} +Provides: texlive-texmf-latex = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texmf-latex < %{source_date} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-latex LaTeX is a widely-used macro package for TeX, providing many basic document formating commands extended by a wide range of packages. It is a development of Leslie Lamport's LaTeX 2.09, @@ -2922,39 +3690,47 @@ user commands, font selection and control, class and package writing, font encodings, configuration options and modification of LaTeX. -%package -n texlive-latex-git-log -Provides: tex-latex-git-log = %{epoch}:20210325-%{release} -Provides: texlive-latex-git-log-bin = %{epoch}:20210325-%{release} -Provides: tex-latex-git-log-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-git-log-bin < 7:20180414 -Provides: tex-latex-git-log-doc = %{epoch}:20210325-%{release} -Provides: texlive-latex-git-log-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-git-log-doc < 7:20180414 -License: GPLv3+ -Summary: Typeset git log information -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latex-git-log +%package -n %{shortname}-latex-git-log +Version: svn54010 +Provides: texlive-latex-git-log = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-git-log = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-git-log-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-git-log-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-git-log-bin < 7:20170520 +Provides: tex-latex-git-log-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-git-log-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-git-log-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Typeset git log information +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latex-git-log The program is run within a git repository, and outputs the entire version history, as a LaTeX table. That output will typically be redirected to a file; the author recommends typesetting in landscape orientation. -%package -n texlive-latex-papersize -Provides: tex-latex-papersize = %{epoch}:20210325-%{release} -Provides: texlive-latex-papersize-bin = %{epoch}:20210325-%{release} -Provides: tex-latex-papersize-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-papersize-bin < 7:20180414 -Provides: tex-latex-papersize-doc = %{epoch}:20210325-%{release} -Provides: texlive-latex-papersize-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-papersize-doc < 7:20180414 -License: ASL 2.0 -Summary: Calculate LaTeX settings for any font and paper size -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latex-papersize +%package -n %{shortname}-latex-papersize +Version: svn53131 +Provides: texlive-latex-papersize = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-papersize = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-papersize-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-papersize-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-papersize-bin < 7:20170520 +Provides: tex-latex-papersize-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-papersize-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-papersize-doc < 7:20170520 +License: Apache-2.0 +Summary: Calculate LaTeX settings for any font and paper size +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-latex-papersize The package is a Python script, whose typical use is when preparing printed material for users with low vision. The most effective way of doing this is to print on (notional) small @@ -2962,71 +3738,89 @@ paper, and then to magnify the result; the script calculates the settings for various font and paper sizes. More details are to be read in the script itself. -%package -n texlive-latex2man -Provides: tex-latex2man = %{epoch}:20210325-%{release} -Provides: texlive-latex2man-bin = %{epoch}:20210325-%{release} -Provides: tex-latex2man-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex2man-bin < 7:20180414 -Provides: tex-latex2man-doc = %{epoch}:20210325-%{release} -Provides: texlive-latex2man-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex2man-doc < 7:20180414 -Summary: Translate LaTeX-based manual pages into Unix man format -Requires: texlive-base texlive-kpathsea -Requires: tex(fancyheadings.sty) tex(fancyhdr.sty) -Provides: tex(latex2man.cfg) = %{epoch}:20210325-%{release} -Provides: tex(latex2man.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-latex2man +%package -n %{shortname}-latex2man +Version: svn64477 +Provides: texlive-latex2man = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2man = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2man-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2man-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2man-bin < 7:20170520 +Provides: tex-latex2man-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2man-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2man-doc < 7:20170520 +License: LPPL-1.3c +Summary: Translate LaTeX-based manual pages into Unix man format +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyheadings.sty) +Requires: tex(fancyhdr.sty) +Provides: tex(latex2man.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(latex2man.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-latex2man A tool to translate UNIX manual pages written with LaTeX into a man-page format understood by the Unix man(1) command. Alternatively HTML or TexInfo code can be produced. Output of parts of the text may be supressed using the conditional text feature. -%package -n texlive-latex2nemeth -Provides: tex-latex2nemeth = %{epoch}:20210325-%{release} -Provides: texlive-latex2nemeth-bin = %{epoch}:20210325-%{release} -Provides: tex-latex2nemeth-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex2nemeth-bin < 7:20180414 -Provides: tex-latex2nemeth-doc = %{epoch}:20210325-%{release} -Provides: texlive-latex2nemeth-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex2nemeth-doc < 7:20180414 -License: GPLv3 -Summary: Convert LaTeX source to Braille with math in Nemeth -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latex2nemeth +%package -n %{shortname}-latex2nemeth +Version: svn65269 +Provides: texlive-latex2nemeth = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2nemeth = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2nemeth-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2nemeth-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2nemeth-bin < 7:20170520 +Provides: tex-latex2nemeth-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2nemeth-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2nemeth-doc < 7:20170520 +License: GPL-3.0-only +Summary: Convert LaTeX source to Braille with math in Nemeth +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-latex2nemeth After many failed attempts to transcribe real math notes and books to Braille/Nemeth in order to deal with a real situation (blind student in Math Dept.), we decided to develop a new program that follows a direct, from LaTeX to Braille/Nemeth, -approach. Other attempts (such as tex4ht) failed because they -all needed an extra step to go from xml to Braille, and this -step (say, with liblouis) produced incomprehensible output -(liblouis focuses in Office apps). Our main target was the -Greek language which is only Braille level 1, but English at -level 1 is supported as well. Simple pictures in PSTricks are -also supported in order to produce tactile graphics with -specialized equipment. Note that embossing will need -LibreOffice and odt2braille as this project does not deal with -embossers' drivers. - -%package -n texlive-latexdiff -Provides: tex-latexdiff = %{epoch}:20210325-%{release} -Provides: texlive-latexdiff-bin = %{epoch}:20210325-%{release} -Provides: tex-latexdiff-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexdiff-bin < 7:20180414 -Provides: tex-latexdiff-doc = %{epoch}:20210325-%{release} -Provides: texlive-latexdiff-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexdiff-doc < 7:20180414 -License: GPLv3+ -Summary: Determine and mark up significant differences between LaTeX files -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latexdiff +approach. Our main target was the Greek language which is only +Braille level 1, but English at level 1 is supported as well. +Simple pictures in PSTricks are also supported in order to +produce tactile graphics with specialized equipment. Note that +embossing will need LibreOffice and odt2braille as this project +does not deal with embossers' drivers. What's new in version +1.1 In this version, the support of the user level commands of +the amsmath package was added, as described in its user guide, +with the exception of commutative diagrams (amscd package) as +well as structures that are irrelevant to visually impared +persons. Also, the Unicode mathematics symbols of the +unicode-math package that are represented by the Nemeth code +are now supported by latex2nemeth. We would like to acknowledge +support by the TUGfund for this project (TUGfund project 33). + +%package -n %{shortname}-latexdiff +Version: svn64980 +Provides: texlive-latexdiff = %{epoch}:%{source_date}-%{release} +Provides: tex-latexdiff = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexdiff-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexdiff-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexdiff-bin < 7:20170520 +Provides: tex-latexdiff-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexdiff-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexdiff-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Determine and mark up significant differences between LaTeX files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexdiff Latexdiff is a Perl script for visual mark up and revision of significant differences between two LaTeX files. Various options are available for visual markup using standard LaTeX @@ -3038,73 +3832,89 @@ all changes. Manual editing of the difference file can be used to override this default behaviour and accept or reject selected changes only. -%package -n texlive-latexfileversion -Provides: tex-latexfileversion = %{epoch}:20210325-%{release} -License: LPPL-1.2 -Provides: texlive-latexfileversion-bin = %{epoch}:20210325-%{release} -Provides: tex-latexfileversion-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexfileversion-bin < 7:20180414 -Provides: tex-latexfileversion-doc = %{epoch}:20210325-%{release} -Provides: texlive-latexfileversion-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexfileversion-doc < 7:20180414 -Summary: Prints the version and date of a LaTeX class or style file -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latexfileversion +%package -n %{shortname}-latexfileversion +Version: svn29349 +Provides: texlive-latexfileversion = %{epoch}:%{source_date}-%{release} +Provides: tex-latexfileversion = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexfileversion-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexfileversion-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexfileversion-bin < 7:20170520 +Provides: tex-latexfileversion-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexfileversion-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexfileversion-doc < 7:20170520 +License: LPPL-1.3c +Summary: Prints the version and date of a LaTeX class or style file +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-latexfileversion This simple shell script prints the version and date of a LaTeX class or style file. Syntax: latexfileversion This programme handles style files (extension .sty), class files (extension .cls), and other TeX input files. The file extension must be given. -%package -n texlive-latexindent -Provides: tex-latexindent = %{epoch}:20210325-%{release} -Provides: texlive-latexindent-bin = %{epoch}:20210325-%{release} -Provides: tex-latexindent-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexindent-bin < 7:20180414 -Provides: tex-latexindent-doc = %{epoch}:20210325-%{release} -Provides: texlive-latexindent-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexindent-doc < 7:20180414 -License: GPLv3+ -Summary: Indent a LaTeX document, highlighting the programming structure -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latexindent +%package -n %{shortname}-latexindent +Version: svn65937 +Provides: texlive-latexindent = %{epoch}:%{source_date}-%{release} +Provides: tex-latexindent = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexindent-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexindent-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexindent-bin < 7:20170520 +Provides: tex-latexindent-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexindent-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexindent-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Indent a LaTeX document, highlighting the programming structure +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexindent The Perl script processes a LaTeX file, indenting parts so as to highlight the structure for the reader. -%package -n texlive-latexpand -Provides: tex-latexpand = %{epoch}:20210325-%{release} -Provides: texlive-latexpand-bin = %{epoch}:20210325-%{release} -Provides: tex-latexpand-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexpand-bin < 7:20180414 -Provides: tex-latexpand-doc = %{epoch}:20210325-%{release} -Provides: texlive-latexpand-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexpand-doc < 7:20180414 -License: BSD -Summary: Expand \input and \include in a LaTeX document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latexpand +%package -n %{shortname}-latexpand +Version: svn66226 +Provides: texlive-latexpand = %{epoch}:%{source_date}-%{release} +Provides: tex-latexpand = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexpand-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexpand-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexpand-bin < 7:20170520 +Provides: tex-latexpand-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexpand-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexpand-doc < 7:20170520 +License: BSD-3-Clause +Summary: Expand \input and \include in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexpand Latexpand is a Perl script that simply replaces \input and \include commands with the content of the file input/included. The script does not deal with \includeonly commands. -%package -n texlive-lcdftypetools -Provides: tex-lcdftypetools = %{epoch}:20210325-%{release} -Provides: lcdf-typetools = %{epoch}:20210325-%{release} -Provides: texlive-lcdftypetools-bin = %{epoch}:20210325-%{release} -Provides: tex-lcdftypetools-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-lcdftypetools-bin < 7:20180414 -License: GPL+ -Summary: A bundle of outline font manipulation tools -Requires: texlive-base texlive-kpathsea -Requires: texlive-glyphlist - -%description -n texlive-lcdftypetools +%package -n %{shortname}-lcdftypetools +Version: svn52851 +Provides: texlive-lcdtypetools = %{epoch}:%{source_date}-%{release} +Provides: tex-lcdftypetools = %{epoch}:%{source_date}-%{release} +# This is a mistake in the texlive package. Will be fixed in next major TL update. +Provides: lcdf-typetools = %{epoch}:%{source_date}-%{release} +Provides: texlive-lcdftypetools-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lcdftypetools-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lcdftypetools-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: A bundle of outline font manipulation tools +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-glyphlist + +%description -n %{shortname}-lcdftypetools This bundle of tools comprises: Cfftot1, which translates a Compact Font Format (CFF) font, or a PostScript-flavored OpenType font, into PostScript Type 1 format. It correctly @@ -3124,93 +3934,118 @@ T1reencode, which replaces a font's internal encoding with one you specify; and T1testpage, which creates a PostScript proof for a Type 1 font. -%package -n texlive-lib -Summary: Shared libraries for TeX-related files -Provides: texlive-kpathsea-lib = %{epoch}:20210325-%{release} -Provides: texlive-kpathsea-lib(%{__isa}) = 6:2016 -Obsoletes: texlive-kpathsea-lib < 2015 -Provides: bundled(lua) = 5.2.4 +%package -n %{shortname}-lib +Summary: Shared libraries for TeX-related files +Provides: texlive-kpathsea-lib = %{epoch}:%{source_date}-%{release} +# We have to straight up lie about this to ensure the upgrade. +Provides: texlive-kpathsea-lib(%{__isa}) = 6:2016 +Obsoletes: texlive-kpathsea-lib < 2015 +Provides: bundled(lua) = 5.2.4 -%description -n texlive-lib +%description -n %{shortname}-lib TeX specific shared libraries. -%package -n texlive-lib-devel -Summary: Development files for TeX specific shared libraries -Requires: texlive-lib%{?_isa} -Provides: texlive-kpathsea-lib-devel = %{epoch}:20210325-%{release} -Obsoletes: texlive-kpathsea-lib-devel < 2015 +%package -n %{shortname}-lib-devel +Summary: Development files for TeX specific shared libraries +Requires: %{shortname}-lib%{?_isa} +Provides: texlive-kpathsea-lib-devel = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-lib-devel < 2015 -%description -n texlive-lib-devel +%description -n %{shortname}-lib-devel Development files for TeX specific shared libraries. -%package -n texlive-lilyglyphs -Provides: tex-lilyglyphs = %{epoch}:20210325-%{release} -License: GPL-1.0-or-later and OFL-1.1 -Provides: texlive-lilyglyphs-bin = %{epoch}:20210325-%{release} -Provides: tex-lilyglyphs-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-lilyglyphs-bin < 7:20180414 -Provides: tex-lilyglyphs-doc = %{epoch}:20210325-%{release} -Provides: texlive-lilyglyphs-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-lilyglyphs-doc < 7:20180414 -Summary: Access lilypond fragments and glyphs, in LaTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(keyval.sty) tex(pgf.sty) -Requires: tex(adjustbox.sty) -Provides: tex(emmentaler-11.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-13.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-14.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-16.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-18.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-20.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-23.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-26.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-brace.otf) = %{epoch}:20210325-%{release} -Provides: tex(lilyglyphs.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-lilyglyphs +%package -n %{shortname}-lilyglyphs +Version: svn56473 +Provides: texlive-lilyglyphs = %{epoch}:%{source_date}-%{release} +Provides: tex-lilyglyphs = %{epoch}:%{source_date}-%{release} +Provides: texlive-lilyglyphs-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lilyglyphs-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lilyglyphs-bin < 7:20170520 +Provides: tex-lilyglyphs-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lilyglyphs-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lilyglyphs-doc < 7:20170520 +License: LPPL-1.3c +Summary: Access lilypond fragments and glyphs, in LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(adjustbox.sty) +Requires: tex(booktabs.sty) +Requires: tex(fancyref.sty) +Requires: tex(fontspec.sty) +Requires: tex(hologo.sty) +Requires: tex(keyval.sty) +Requires: tex(listings.sty) +Requires: tex(longtable.sty) +Requires: tex(mdwlist.sty) +Requires: tex(microtype.sty) +Requires: tex(pgf.sty) +Requires: tex(selnolig.sty) +Provides: tex(emmentaler-11.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-13.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-14.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-16.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-18.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-20.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-23.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-26.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-brace.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(lilyglyphs.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-lilyglyphs The package provides the means to include arbitrary elements of Lilypond notation, including symbols from Lilypond's Emmentaler font, in a LaTeX document. The package uses OpenType fonts, and as a result must be compiled with LuaLaTeX or XeLaTeX. -%package -n texlive-listbib -Provides: tex-listbib = %{epoch}:20210325-%{release} -Provides: texlive-listbib-bin = %{epoch}:20210325-%{release} -Provides: tex-listbib-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-listbib-bin < 7:20180414 -Provides: tex-listbib-doc = %{epoch}:20210325-%{release} -Provides: texlive-listbib-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-listbib-doc < 7:20180414 -License: GPL+ -Summary: Lists contents of BibTeX files -Requires: texlive-base texlive-kpathsea -Provides: tex(listbib.cfg) = %{epoch}:20210325-%{release} -Provides: tex(listbib.sty) = %{epoch}:20210325-%{release} -Provides: tex(listbib.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-listbib +%package -n %{shortname}-listbib +Version: svn29349 +Provides: texlive-listbib = %{epoch}:%{source_date}-%{release} +Provides: tex-listbib = %{epoch}:%{source_date}-%{release} +Provides: texlive-listbib-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-listbib-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listbib-bin < 7:20170520 +Provides: tex-listbib-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-listbib-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listbib-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Lists contents of BibTeX files +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(listbib.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(listbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(listbib.tex) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-listbib Generates listings of bibliographic data bases in BibTeX format -- for example for archival purposes. Included is a listbib.bst which is better suited for this purpose than the standard styles. -%package -n texlive-listings-ext -Provides: tex-listings-ext = %{epoch}:20210325-%{release} -Provides: texlive-listings-ext-bin = %{epoch}:20210325-%{release} -Provides: tex-listings-ext-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-listings-ext-bin < 7:20180414 -Provides: tex-listings-ext-doc = %{epoch}:20210325-%{release} -Provides: texlive-listings-ext-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-listings-ext-doc < 7:20180414 -Summary: Automated input of source -Requires: texlive-base texlive-kpathsea -Requires: tex(listings.sty) tex(xkeyval.sty) -Provides: tex(listings-ext.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-listings-ext +%package -n %{shortname}-listings-ext +Version: svn29349 +Provides: texlive-listings-ext = %{epoch}:%{source_date}-%{release} +Provides: tex-listings-ext = %{epoch}:%{source_date}-%{release} +Provides: texlive-listings-ext-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-listings-ext-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listings-ext-bin < 7:20170520 +Provides: tex-listings-ext-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-listings-ext-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listings-ext-doc < 7:20170520 +License: LPPL-1.3a +Summary: Automated input of source +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(listings.sty) +Requires: tex(xkeyval.sty) +Provides: tex(listings-ext.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-listings-ext The package provides a means of marking a source, so that samples of it may be included in a document (by means of the listings package) in a stable fashion, regardless of any change @@ -3219,12 +4054,14 @@ blocks of source. These tags are processed by a shell script to make a steering file that is used by the package when LaTeX is being run. -%package -n texlive-light-latex-make -Summary: llmk: A build tool for LaTeX documents -License: MIT -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-light-latex-make +Version: svn66473 +Provides: texlive-light-latex-make = %{epoch}:%{source_date}-%{release} +Summary: llmk: A build tool for LaTeX documents +License: MIT +Requires: texlive-base texlive-kpathsea -%description -n texlive-light-latex-make +%description -n %{shortname}-light-latex-make This program is yet another build tool specific for LaTeX documents. Its aim is to provide a simple way to specify a workflow of processing LaTeX documents and encourage people to @@ -3243,35 +4080,40 @@ that for a LaTeX document with an llmk setup, the process of typesetting the document will be reproduced in any TeX environment with the program. - -%package -n texlive-lollipop -Provides: tex-lollipop = %{epoch}:20210325-%{release} -Provides: texlive-lollipop-bin = %{epoch}:20210325-%{release} -Provides: tex-lollipop-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-lollipop-bin < 7:20180414 -Provides: tex-lollipop-doc = %{epoch}:20210325-%{release} -Provides: texlive-lollipop-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-lollipop-doc < 7:20180414 -License: GPLv3+ -Summary: TeX made easy -Requires: texlive-base texlive-kpathsea -Requires: texlive-cm texlive-hyphen-base texlive-tex +%package -n %{shortname}-lollipop +Version: svn45678 +Provides: texlive-lollipop = %{epoch}:%{source_date}-%{release} +Provides: tex-lollipop = %{epoch}:%{source_date}-%{release} +Provides: texlive-lollipop-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lollipop-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lollipop-bin < 7:20170520 +Provides: tex-lollipop-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lollipop-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lollipop-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: TeX made easy +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-tex Requires(post,postun): coreutils -Provides: tex(lollipop-define.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-document.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-float.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-fontdefs.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-fonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-heading.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-lists.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-output.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-plain.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-text.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-tools.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-lollipop +Provides: tex(lollipop-define.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-document.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-float.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-fontdefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-fonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-heading.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-lists.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-output.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-plain.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-text.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-tools.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop.tex) = %{epoch}:%{source_date}-%{release} +# no actual binaries here +BuildArch: noarch + +%description -n %{shortname}-lollipop Lollipop is "TeX made easy" -- it is a macro package that functions as a toolbox for writing TeX macros. Its main aim is to make macro writing so easy that implementing a fully new @@ -3285,20 +4127,24 @@ mechanism offers. In addition, development of support for Lollipop documents written in RTL languages (such as Persian) is underway. -%package -n texlive-ltxfileinfo -Provides: tex-ltxfileinfo = %{epoch}:20210325-%{release} -Provides: texlive-ltxfileinfo-bin = %{epoch}:20210325-%{release} -Provides: tex-ltxfileinfo-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ltxfileinfo-bin < 7:20180414 -Provides: tex-ltxfileinfo-doc = %{epoch}:20210325-%{release} -Provides: texlive-ltxfileinfo-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ltxfileinfo-doc < 7:20180414 -License: GPL+ -Summary: Print version information for a LaTeX file -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ltxfileinfo +%package -n %{shortname}-ltxfileinfo +Version: svn38663 +Provides: texlive-ltxfileinfo = %{epoch}:%{source_date}-%{release} +Provides: tex-ltxfileinfo = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltxfileinfo-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ltxfileinfo-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltxfileinfo-bin < 7:20170520 +Provides: tex-ltxfileinfo-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltxfileinfo-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltxfileinfo-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Print version information for a LaTeX file +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-ltxfileinfo ltxfileinfo displays version information for LaTeX files. If no path information is given, the file is searched using kpsewhich. As an extra, for developers, the script will (use @@ -3306,241 +4152,896 @@ the --star or --color options) check the valididity of the \Provides... statements in the files. The script uses code from Uwe Luck's readprov.sty. -%package -n texlive-ltximg -Provides: tex-ltximg = %{epoch}:20210325-%{release} -Provides: texlive-ltximg-bin = %{epoch}:20210325-%{release} -Provides: tex-ltximg-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ltximg-bin < 7:20180414 -Provides: tex-ltximg-doc = %{epoch}:20210325-%{release} -Provides: texlive-ltximg-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ltximg-doc < 7:20180414 -License: GPLv2+ -Summary: Split LaTeX files to sanitise a conversion process -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ltximg +%package -n %{shortname}-ltximg +Version: svn59335 +Provides: texlive-ltximg = %{epoch}:%{source_date}-%{release} +Provides: tex-ltximg = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltximg-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ltximg-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltximg-bin < 7:20170520 +Provides: tex-ltximg-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltximg-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltximg-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Split LaTeX files to sanitise a conversion process +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ltximg The package provides a Perl script that extracts all TikZ and PStricks environments for separate processing to produce images (in eps, pdf, png or jpg format) for use by a converter or the preview bundle. -%package -n texlive-luaotfload -Provides: tex-luaotfload = %{epoch}:20210325-%{release} -Provides: texlive-luaotfload-bin = %{epoch}:20210325-%{release} -Provides: tex-luaotfload-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-luaotfload-bin < 7:20180414 -Provides: tex-luaotfload-doc = %{epoch}:20210325-%{release} -Provides: texlive-luaotfload-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-luaotfload-doc < 7:20180414 -License: GPLv2+ -Summary: OpenType 'loader' for Plain TeX and LaTeX -Requires: texlive-base texlive-kpathsea -Requires: texlive-lualibs texlive-lua-alt-getopt -Requires: tex(luatexbase.sty) -Provides: tex(luaotfload-blacklist.cnf) = %{epoch}:20210325-%{release} -Provides: tex(luaotfload.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-luaotfload +%package -n %{shortname}-luafindfont +Version: svn64936 +Provides: texlive-luafindfont = %{epoch}:%{source_date}-%{release} +Provides: texlive-luafindfont-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Search fonts in the LuaTeX font database +Requires: texlive-base, texlive-kpathsea, lua >= 5.3 +# lua +BuildArch: noarch + +%description -n %{shortname}-luafindfont +This Lua script searches for fonts in the font database. It requires Lua 5.3. + +%package -n %{shortname}-luaotfload +Version: svn64616 +Provides: texlive-luaotfload = %{epoch}:%{source_date}-%{release} +Provides: tex-luaotfload = %{epoch}:%{source_date}-%{release} +Provides: texlive-luaotfload-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-luaotfload-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luaotfload-bin < 7:20170520 +Provides: tex-luaotfload-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-luaotfload-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luaotfload-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: OpenType 'loader' for Plain TeX and LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-lualibs +Requires: texlive-lua-alt-getopt +Requires: texlive-lua-uni-algos +Requires: tex(luatexbase.sty) +Provides: tex(luaotfload-blacklist.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(luaotfload.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-luaotfload The package adopts the TrueType/OpenType Font loader code provided in ConTeXt, and adapts it to use in Plain TeX and LaTeX. It works under LuaLaTeX only. -%package -n texlive-luahbtex -Provides: tex-luahbtex = %{epoch}:20210325-%{release} -Provides: texlive-luahbtex-bin = %{epoch}:20210325-%{release} -Provides: tex-luahbtex-bin = %{epoch}:20210325-%{release} -License: GPLv2+ -Summary: LuaTeX with HarfBuzz library for glyph shaping -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-luatex -Requires: texlive-cm -Requires: texlive-etex -Requires: texlive-hyphen-base -Requires: texlive-knuth-lib -Requires: texlive-plain -Requires: texlive-tex-ini-files -Requires: texlive-unicode-data -Requires: texlive-hyph-utf8 - -%description -n texlive-luahbtex +%package -n %{shortname}-luahbtex +Version: svn66186 +Provides: texlive-luahbtex = %{epoch}:%{source_date}-%{release} +Provides: tex-luahbtex = %{epoch}:%{source_date}-%{release} +Provides: texlive-luahbtex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-luahbtex-bin = %{epoch}:%{source_date}-%{release} +License: GPL-2.0-or-later +Summary: LuaTeX with HarfBuzz library for glyph shaping +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-hyph-utf8 + +%description -n %{shortname}-luahbtex LuaTeX with HarfBuzz library for glyph shaping. -%package -n texlive-luajittex -Provides: tex-luajittex = %{epoch}:20210325-%{release} -Provides: tex-luajittex-bin = %{epoch}:20210325-%{release} -Provides: texlive-luajittex-bin = %{epoch}:20210325-%{release} -License: GPLv2+ -Summary: LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-luatex -Requires: texlive-cm -Requires: texlive-etex -Requires: texlive-hyphen-base -Requires: texlive-knuth-lib -Requires: texlive-plain -Requires: texlive-tex-ini-files -Requires: texlive-unicode-data -Requires: texlive-hyph-utf8 - -%description -n texlive-luajittex +%package -n %{shortname}-luajittex +Version: svn66186 +Provides: texlive-luajittex = %{epoch}:%{source_date}-%{release} +Provides: tex-luajittex = %{epoch}:%{source_date}-%{release} +Provides: tex-luajittex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-luajittex-bin = %{epoch}:%{source_date}-%{release} +License: GPL-2.0-or-later +Summary: LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-hyph-utf8 + +%description -n %{shortname}-luajittex LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz. -%package -n texlive-luatex -Provides: tex-luatex = %{epoch}:20210325-%{release} -Provides: texlive-luatex-bin = %{epoch}:20210325-%{release} -Provides: tex-luatex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-luatex-bin < 7:20180414 -Provides: tex-luatex-doc = %{epoch}:20210325-%{release} -Provides: texlive-luatex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-luatex-doc < 7:20180414 -License: GPLv2+ -Summary: The LuaTeX engine -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-luatex +Version: svn66967 +Provides: texlive-luatex = %{epoch}:%{source_date}-%{release} +Provides: tex-luatex = %{epoch}:%{source_date}-%{release} +Provides: texlive-luatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-luatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luatex-bin < 7:20170520 +Provides: tex-luatex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-luatex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luatex-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: The LuaTeX engine +Requires: texlive-base +Requires: texlive-kpathsea Requires(post,postun): coreutils -Requires: texlive-cm texlive-etex -Requires: texlive-hyphen-base texlive-knuth-lib -Requires: texlive-plain texlive-tex-ini-files -Requires: texlive-unicode-data texlive-hyph-utf8 tex(luatex.def) -Provides: tex(luatex-unicode-letters.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatexiniconfig.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-luatex -LuaTeX is an extended version of pdfTeX using Lua as an +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-hyph-utf8 +Requires: tex(luatex.def) +Provides: tex(luatex-unicode-letters.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatexiniconfig.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-luatex +LuaTeX is a greatly extended version of pdfTeX using Lua as an embedded scripting language. The LuaTeX project's main objective is to provide an open and configurable variant of TeX -while at the same time offering downward compatibility. LuaTeX -uses Unicode (as UTF-8) as its default input encoding, and is -able to use modern (OpenType) fonts (for both text and -mathematics). It should be noted that LuaTeX is still under -development; its specification has been declared stable, but -absolute stability may not in practice be assumed. - -%package -n texlive-lwarp -Provides: tex-lwarp = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-lwarp-bin = %{epoch}:20210325-%{release} -Provides: tex-lwarp-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-lwarp-bin < 7:20180414 -Provides: tex-lwarp-doc = %{epoch}:20210325-%{release} -Provides: texlive-lwarp-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-lwarp-doc < 7:20180414 -Summary: Converts LaTeX to HTML -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-lwarp -The package causes LaTeX to directly produce HTML5 output, -using external utility programs only for the final conversion -of text and images. Math may be represented by SVG files or -MathJax. Documents may be produced by LaTeX, LuaLaTeX, or -XeLaTeX. A texlua script removes the need for system utilities -such as make and gawk, and also supports xindy and latexmk. -Configuration is automatic at the first manual compile. Print -and HTML versions of each document may coexist, each with its -own set of auxiliary files. Support files are self-generated on -request. Assistance is provided for HTML import into EPUB -conversion software and word processors. - -%package -n texlive-lyluatex -Summary: Commands to include lilypond scores within a (Lua)LaTeX document -Version: svn47584 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(lyluatex.lua) = %{epoch}:20210325-%{release} -Provides: tex(lyluatex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch -Requires: tex(currfile.sty) -Requires: tex(environ.sty) -Requires: tex(graphicx.sty) -Requires: tex(luaotfload.sty) -Requires: tex(luatexbase.sty) -Requires: tex(metalogo.sty) -Requires: tex(minibox.sty) -Requires: tex(pdfpages.sty) -Requires: tex(xkeyval.sty) - -%description -n texlive-lyluatex +while at the same time offering substantive backward +compatibility. LuaTeX uses Unicode (as UTF-8) as its default +input encoding, and is able to use modern (OpenType and +TrueType) fonts (for both text and mathematics). + +%package -n %{shortname}-lwarp +Version: svn66259 +Provides: texlive-lwarp = %{epoch}:%{source_date}-%{release} +Provides: tex-lwarp = %{epoch}:%{source_date}-%{release} +Provides: texlive-lwarp-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lwarp-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lwarp-bin < 7:20170520 +Provides: tex-lwarp-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lwarp-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lwarp-doc < 7:20170520 +License: LPPL-1.3c +Summary: Converts LaTeX to HTML +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(lwarp-2in1.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-2up.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-CJK.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-CJKutf8.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-DotArrow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-SIunits.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-a4.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-a4wide.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-a5comb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-abstract.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-academicons.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-accents.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-accessibility.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-accsupp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-acro.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-acronym.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-addlines.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-adjmulticol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-afterpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-algorithm2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-algorithmicx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-alltt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-amscdx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-amsmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-amsthm.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-anonchap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-anysize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-appendix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-arabicfront.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-array.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-arydshln.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-asymptote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-atbegshi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-attachfile.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-attachfile2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-authblk.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-autobreak.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-autonum.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-awesomebox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-axessibility.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-axodraw2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-backnaur.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-backref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-balance.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bbding.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-beamerarticle.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-biblatex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bibunits.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bigdelim.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bigfoot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bigstrut.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bitpattern.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-blowup.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bm.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-booklet.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bookmark.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-booktabs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bophook.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bounddvi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-boxedminipage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-boxedminipage2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-braket.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-breakurl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-breqn.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bsheaders.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bussproofs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bxpapersize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bytefield.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cancel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-canoniclayout.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-caption.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-caption3.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cases.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ccicons.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-centerlastline.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-centernot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-changebar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-changelayout.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-changepage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-changes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chappg.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chapterbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chemfig.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chemformula.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chemgreek.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chemmacros.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chemnum.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chkfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chngpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cite.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-citeref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-classicthesis.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cleveref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-clrdblpg.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cmbright.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cmdtrack.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-colonequals.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-color.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-colortbl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-mathjax-letters.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-mathjax-newpxtxmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-mathjax-nonunicode.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-mathjax-overlaysymbols.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-mathjax-siunitx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-multimedia.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-continue.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-copyrightbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-crop.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ctable.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cuted.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cutwin.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dblfloatfix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dblfnote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dcolumn.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-decimal.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-decorule.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-diagbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dingbat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dotlessi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dprogress.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-draftcopy.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-draftfigure.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-draftwatermark.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-drftcite.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-easy-todo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ebook.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-econometrics.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ed.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ellipsis.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-embrac.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-emptypage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-endfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-endheads.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-endnotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-engtlc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-enotez.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-enumerate.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-enumitem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-epigraph.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-epsf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-epsfig.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-epstopdf-base.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-epstopdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-eqlist.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-eqparbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-errata.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-eso-pic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-esvect.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-etoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-eurosym.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-everypage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-everyshi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-extarrows.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-extramarks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancybox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancyhdr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancypar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancyref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancytabs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancyvrb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fewerfloatpages.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-figcaps.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-figsize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fitbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fix2col.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fixmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fixme.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fixmetodonotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-flafter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-flippdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-float.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-floatflt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-floatpag.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-floatrow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fltrace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-flushend.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fnbreak.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fncychap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fnlineno.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fnpara.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fnpos.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fontawesome.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fontawesome5.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fontaxes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fontenc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footmisc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footnote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footnotebackref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footnotehyper.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footnoterange.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footnpag.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-foreign.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-forest.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fouridx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fourier.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-framed.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-froufrou.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ftcap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ftnright.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fullminipage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fullpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fullwidth.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fvextra.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fwlw.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gensymb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gentombow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-geometry.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ghsystem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gindex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gloss.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-glossaries.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gmeometric.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-graphics.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-graphicx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-grffile.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-grid-system.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-grid.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gridset.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hang.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hanging.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hepunits.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hhline.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hhtensor.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hypbmsec.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hypcap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hypdestopt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hypernat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hyperref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hyperxmp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hyphenat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-idxlayout.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ifoddpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-imakeidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-index.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-inputtrc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-intopdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-isomath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-isotope.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-jurabib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-karnaugh-map.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-keyfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-keystroke.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-kpfonts-otf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-kpfonts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-layaureo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-layout.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-layouts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-leading.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-leftidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-letterspace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lettrine.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-libertinust1math.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lineno.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lips.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lipsum.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-listings.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-listliketab.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lltjext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lltjp-siunitx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lltjp-tascmac.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-longtable.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lpic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lscape.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ltablex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ltcaption.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ltxgrid.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ltxtable.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lua-check-hyphen.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lua-visual-debug.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-luacolor.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-luamplib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-luatexko.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-luatodonotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-luavlna.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lyluatex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-magaz.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-makeidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-manyfoot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-marginal.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-marginfit.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-marginfix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-marginnote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-marvosym.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathalpha.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathastext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathcomp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathdesign.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathdots.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathfixs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathpazo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathptmx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathspec.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathtools.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mattens.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-maybemath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mcaption.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mdframed.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mdwmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-media9.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-memhfixc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-menukeys.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-metalogo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-metalogox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mhchem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-microtype.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-midfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-midpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-minibox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-minitoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-minted.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mismath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mleftright.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-morefloats.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-moreverb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-movie15.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mparhack.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multibib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multicap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multicol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multicolrule.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multimedia.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multiobjective.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multirow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multitoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-musicography.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mwe.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nameauth.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nameref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-natbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nccfancyhdr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nccfoots.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nccmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-needspace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-newpxmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-newtxmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-newtxsf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nextpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nfssext-cfr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nicefrac.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-niceframe.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nicematrix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-noitcrul.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nolbreaks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nomencl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nonfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nonumonpart.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nopageno.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-notes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-notespages.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nowidow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ntheorem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-octave.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-orcidlink.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-overpic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pagegrid.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pagenote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pagesel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-paralist.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-parallel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-parcolumns.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-parnotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-parskip.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-patch-komascript.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-patch-memoir.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pbalance.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcolfoot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcolmk.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcolparallel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcolparcolumns.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcomment.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcrypt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdflscape.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfmarginpar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfpages.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfprivacy.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfrender.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfsync.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdftricks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-perpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pfnote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-phfqit.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-physics.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-physunits.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-picinpar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pifont.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pinlabel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-placeins.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-plarydshln.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-plext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-plextarydshln.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-plextcolorbl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-plimsoll.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-prelim2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-prettyref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-preview.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-psfrag.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-psfragx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pst-eps.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pstool.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pstricks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pxatbegshi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pxeveryshi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pxfonts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pxftnright.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pxjahyper.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-quotchap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-quoting.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ragged2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-realscripts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-refcheck.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-register.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-relsize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-repeatindex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-repltext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-resizegather.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-returntogrid.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rlepsf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rmathbr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rmpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-romanbar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-romanbarpagenumber.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rotating.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rotfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rviewport.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-savetrees.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scalefnt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scalerel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-schemata.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrextend.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrhack.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrlayer-notecolumn.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrlayer-scrpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrlayer.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrpage2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-section.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-sectionbreak.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-sectsty.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-selectp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-semantic-markup.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-seqsplit.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-setspace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-shadethm.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-shadow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-shapepar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-showidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-showkeys.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-showlabels.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-showtags.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-shuffle.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-sidecap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-sidenotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-simplebnf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-siunitx-v2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-siunitx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-skmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-slantsc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-slashed.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-soul.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-soulpos.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-soulutf8.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-splitbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-splitidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-srcltx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-srctex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-stabular.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-stackengine.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-stackrel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-statex2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-statistics.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-statmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-steinmetz.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-stfloats.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-struktex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-subcaption.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-subfig.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-subfigure.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-subsupscripts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-supertabular.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-svg.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-swfigure.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-sympytex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-syntonly.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tabfigures.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tablefootnote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tabls.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tabularx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tabulary.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tagpdf-base.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tagpdf-mc-code-generic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tagpdf-mc-code-lua.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tagpdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tascmac.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tcolorbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tensor.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-termcal.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-textarea.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-textcomp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-textfit.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-textpos.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-theorem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thinsp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thm-listof.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thm-restate.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thmbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thmtools.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-threadcol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-threeparttable.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-threeparttablex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thumb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thumbs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tikz-imagelabels.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tikz.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-titleps.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-titleref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-titlesec.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-titletoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-titling.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocbasic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocbibind.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocdata.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocenter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocloft.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocstyle.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-todo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-todonotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-topcapt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tram.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-transparent.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-trimclip.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-trivfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-truncate.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-turnthepage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-twoup.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-txfonts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-txgreeks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-typearea.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-typicons.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ulem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-umoline.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-underscore.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-unicode-math.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-units.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-unitsdef.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-upgreek.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-upref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-url.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ushort.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-uspace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-varioref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-verse.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-versonotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-vertbars.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-vmargin.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-vowel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-vpe.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-vwcol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-wallpaper.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-watermark.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-widetable.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-widows-and-orphans.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-witharrows.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-wrapfig.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-wrapfig2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xbmks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xcolor.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xechangebar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xellipsis.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xetexko.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xevlna.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xfakebold.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xfrac.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xltabular.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xltxtra.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xmpincl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xpiano.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xpinyin.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xr-hyper.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xtab.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xunicode.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xurl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xy.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-zhlineskip.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-zwpagelayout.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp.sty) = %{epoch}:%{source_date}-%{release} + +# lua +BuildArch: noarch + +%description -n %{shortname}-lwarp +This package converts LaTeX to HTML by using LaTeX to process +the user's document and generate HTML tags. External utility +programs are only used for the final conversion of text and +images. Math may be represented by SVG files or MathJax. +Hundreds of LaTeX packages are supported, and their load order +is automatically verified. Documents may be produced by LaTeX, +LuaLaTeX, XeLaTeX, and by several CJK engines, classes, and +packages. A texlua script automates compilation, index, +glossary, and batch image processing, and also supports +latexmk. Configuration is semi-automatic at the first manual +compile. Support files are self-generated. Print and HTML +versions of each document may coexist. Assistance is provided +for HTML import into EPUB conversion software and word +processors. Requirements include the commonly-available Poppler +utilities, and Perl. Detailed installation instructions are +included for each of the major operating systems and TeX +distributions. A quick-start tutorial is provided. + +%package -n %{shortname}-lyluatex +Version: svn66278 +Provides: texlive-lyluatex = %{epoch}:%{source_date}-%{release} +Summary: Commands to include lilypond scores within a (Lua)LaTeX document +License: MIT +Requires: texlive-base texlive-kpathsea +Provides: tex(lyluatex.lua) = %{epoch}:%{source_date}-%{release} +Provides: tex(lyluatex.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch +Requires: tex(currfile.sty) +Requires: tex(environ.sty) +Requires: tex(graphicx.sty) +Requires: tex(luaotfload.sty) +Requires: tex(luaoptions.sty) +Requires: tex(luatexbase.sty) +Requires: tex(metalogo.sty) +Requires: tex(minibox.sty) +Requires: tex(pdfpages.sty) +Requires: tex(xkeyval.sty) + +%description -n %{shortname}-lyluatex This package provides macros for the inclusion of LilyPond scores within LuaLaTeX. It calls LilyPond to compile scores, then includes the produced files. -%package -n texlive-make4ht -Provides: tex-make4ht = %{epoch}:20210325-%{release} -Provides: texlive-make4ht-bin = %{epoch}:20210325-%{release} -Provides: tex-make4ht-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-make4ht-bin < 7:20180414 -Provides: tex-make4ht-doc = %{epoch}:20210325-%{release} -Provides: texlive-make4ht-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-make4ht-doc < 7:20180414 -Summary: A build system for tex4ht -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-make4ht -make4ht is a simple build system for tex4ht. It is both -executable, which simplifies tex4ht execution, and a library -which can be used to create customized conversion programs. - -%package -n texlive-makedtx -Provides: tex-makedtx = %{epoch}:20210325-%{release} -License: LPPL-1.3c and BSD-3-Clause and GPL-2.0-or-later -Provides: texlive-makedtx-bin = %{epoch}:20210325-%{release} -Provides: tex-makedtx-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-makedtx-bin < 7:20180414 -Provides: tex-makedtx-doc = %{epoch}:20210325-%{release} -Provides: texlive-makedtx-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-makedtx-doc < 7:20180414 -Summary: Perl script to help generate dtx and ins files -Requires: texlive-base texlive-kpathsea -Provides: tex(creatdtx.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-makedtx +%package -n %{shortname}-make4ht +Version: svn66130 +Provides: texlive-make4ht = %{epoch}:%{source_date}-%{release} +Provides: tex-make4ht = %{epoch}:%{source_date}-%{release} +Provides: texlive-make4ht-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-make4ht-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-make4ht-bin < 7:20170520 +Provides: tex-make4ht-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-make4ht-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-make4ht-doc < 7:20170520 +License: LPPL-1.3c +Summary: A build system for tex4ht +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(tex4ht.sty) +# lua +BuildArch: noarch + +%description -n %{shortname}-make4ht +make4ht is a simple build system for tex4ht, a TeX to XML +converter. It provides a command line tool that drives the +conversion process. It also provides a library which can be +used to create customized conversion tools. + +%package -n %{shortname}-makedtx +Version: svn46702 +Provides: texlive-makedtx = %{epoch}:%{source_date}-%{release} +Provides: tex-makedtx = %{epoch}:%{source_date}-%{release} +Provides: texlive-makedtx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-makedtx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makedtx-bin < 7:20170520 +Provides: tex-makedtx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-makedtx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makedtx-doc < 7:20170520 +License: LPPL-1.3c +Summary: Perl script to help generate dtx and ins files +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(creatdtx.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-makedtx The makedtx bundle is provided to help LaTeX2e developers to write the code and documentation in separate files, and then combine them into a single .dtx file for distribution. It automatically generates the character table, and also writes the associated installation (.ins) script. -%package -n texlive-makeindex -Provides: tex-makeindex = %{epoch}:20210325-%{release} -Provides: texlive-makeindex-bin = %{epoch}:20210325-%{release} -Provides: tex-makeindex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-makeindex-bin < 7:20180414 -Provides: tex-makeindex-doc = %{epoch}:20210325-%{release} -Provides: texlive-makeindex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-makeindex-doc < 7:20180414 -License: MakeIndex -Summary: Provides sorted index from unsorted raw data -Requires: texlive-base texlive-kpathsea -Requires: texlive-makeindex -Provides: tex(idxmac.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-makeindex +%package -n %{shortname}-makeindex +Version: svn62517 +Provides: texlive-makeindex = %{epoch}:%{source_date}-%{release} +Provides: tex-makeindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-makeindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-makeindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makeindex-bin < 7:20170520 +Provides: tex-makeindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-makeindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makeindex-doc < 7:20170520 +License: MakeIndex +Summary: Provides sorted index from unsorted raw data +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-makeindex +Provides: tex(idxmac.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-makeindex MakeIndex is a computer program which provides a sorted index from unsorted raw data. MakeIndex can process raw data output by various programs, however, it is generally used with LaTeX and troff. -%package -n texlive-match_parens -Provides: tex-match_parens = %{epoch}:20210325-%{release} -Provides: texlive-match_parens-bin = %{epoch}:20210325-%{release} -Provides: tex-match_parens-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-match_parens-bin < 7:20180414 -Provides: tex-match_parens-doc = %{epoch}:20210325-%{release} -Provides: texlive-match_parens-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-match_parens-doc < 7:20180414 -License: GPL+ -Summary: Find mismatches of parentheses, braces, (angle) brackets, in texts -Requires: texlive-base texlive-kpathsea -Requires: ruby -BuildArch: noarch - -%description -n texlive-match_parens +%package -n %{shortname}-match_parens +Version: svn36270 +Provides: texlive-match_parens = %{epoch}:%{source_date}-%{release} +Provides: tex-match_parens = %{epoch}:%{source_date}-%{release} +Provides: texlive-match_parens-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-match_parens-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-match_parens-bin < 7:20170520 +Provides: tex-match_parens-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-match_parens-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-match_parens-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Find mismatches of parentheses, braces, (angle) brackets, in texts +Requires: texlive-base +Requires: texlive-kpathsea +Requires: ruby +# ruby +BuildArch: noarch + +%description -n %{shortname}-match_parens Mismatches of parentheses, braces, (angle) brackets, especially in TeX sources which may be rich in those, may be difficult to trace. This little script helps you by writing your text to @@ -3548,22 +5049,28 @@ standard output, after adding a left margin to your text, which will normally be almost empty, but will clearly show any mismatches. -%package -n texlive-mathspic -Provides: tex-mathspic = %{epoch}:20210325-%{release} -Provides: texlive-mathspic-bin = %{epoch}:20210325-%{release} -Provides: tex-mathspic-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mathspic-bin < 7:20180414 -Provides: tex-mathspic-doc = %{epoch}:20210325-%{release} -Provides: texlive-mathspic-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mathspic-doc < 7:20180414 -Summary: A Perl filter program for use with PiCTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(prepictex.tex) tex(pictexwd.tex) -Requires: tex(postpictex.tex) -Provides: tex(mathspic.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-mathspic +%package -n %{shortname}-mathspic +Version: svn31957 +Provides: texlive-mathspic = %{epoch}:%{source_date}-%{release} +Provides: tex-mathspic = %{epoch}:%{source_date}-%{release} +Provides: texlive-mathspic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mathspic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mathspic-bin < 7:20170520 +Provides: tex-mathspic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mathspic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mathspic-doc < 7:20170520 +License: LPPL-1.3c +Summary: A Perl filter program for use with PiCTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(prepictex.tex) +Requires: tex(pictexwd.tex) +Requires: tex(postpictex.tex) +Provides: tex(mathspic.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-mathspic MathsPIC(Perl) is a development of the earlier MathsPIC(DOS) program, now implemented as a Perl script, being much more portable than the earlier program. MathsPIC parses a plain text @@ -3577,172 +5084,160 @@ manipulating named points and also allows the use of variables and maths (advance, multiply, and divide)--in short--it takes the pain out of PiCTeX. -%package -n texlive-metafont -Provides: tex-metafont = %{epoch}:20210325-%{release} -Provides: texlive-metafont-bin = %{epoch}:20210325-%{release} -Provides: tex-metafont-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-metafont-bin < 7:20180414 -Summary: A system for specifying fonts -Requires: texlive-base texlive-kpathsea -Requires: texlive-modes +%package -n %{shortname}-metafont +Version: svn66186 +Provides: texlive-metafont = %{epoch}:%{source_date}-%{release} +Provides: tex-metafont = %{epoch}:%{source_date}-%{release} +Provides: texlive-metafont-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-metafont-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metafont-bin < 7:20170520 +License: Knuth-CTAN +Summary: A system for specifying fonts +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-modes Requires(post,postun): coreutils -Provides: tex(mf.mf) = %{epoch}:20210325-%{release} -Provides: tex(plain.mf) = %{epoch}:20210325-%{release} -Provides: tex(cmmf.ini) = %{epoch}:20210325-%{release} -Provides: tex(mf.ini) = %{epoch}:20210325-%{release} -Provides: tex(mode2dpi.mf) = %{epoch}:20210325-%{release} -Provides: tex(mode2dpixy.mf) = %{epoch}:20210325-%{release} -Provides: tex(modename.mf) = %{epoch}:20210325-%{release} -Provides: tex(modes.mf) = %{epoch}:20210325-%{release} -Provides: tex(ps2mfbas.mf) = %{epoch}:20210325-%{release} - -%description -n texlive-metafont -The program takes a semi-algorithmic specification of a font, -and produces a bitmap font (whose properties are defined by a -set of parameters of the target device), and a set metrics for -use by TeX. The bitmap output may be converted into a format -directly usable by a device driver, etc., by the tools provided -in the parallel mfware distribution. - -%package -n texlive-metapost -Provides: tex-metapost = %{epoch}:20210325-%{release} -Provides: texlive-metapost-bin = %{epoch}:20210325-%{release} -Provides: tex-metapost-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-metapost-bin < 7:20180414 -Provides: tex-metapost-doc = %{epoch}:20210325-%{release} -Provides: texlive-metapost-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-metapost-doc < 7:20180414 -License: LGPLv2+ -Summary: A development of Metafont for creating graphics -Requires: texlive-base texlive-kpathsea -Provides: tex(freeeuro.afm) = %{epoch}:20210325-%{release} -Provides: tex(psyrgo.afm) = %{epoch}:20210325-%{release} -Provides: tex(zpzdr-reversed.afm) = %{epoch}:20210325-%{release} -Provides: tex(groff.enc) = %{epoch}:20210325-%{release} -Provides: tex(troff-updmap.map) = %{epoch}:20210325-%{release} -Provides: tex(troff.map) = %{epoch}:20210325-%{release} -Provides: tex(freeeuro.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pagd8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pagdo8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pagk8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pagko8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pbkd8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pbkdi8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pbkl8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pbkli8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pcrb8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pcrbo8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pcrr8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pcrro8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvb8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvb8gn.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvbo8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvbo8gn.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvr8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvr8gn.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvro8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvro8gn.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pncb8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pncbi8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pncr8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pncri8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pplb8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pplbi8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pplr8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pplri8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(psyrgo.tfm) = %{epoch}:20210325-%{release} -Provides: tex(ptmb8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(ptmbi8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(ptmr8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(ptmri8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pzcmi8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(zpzdr-reversed.tfm) = %{epoch}:20210325-%{release} -Provides: tex(freeeuro.pfa) = %{epoch}:20210325-%{release} -Provides: tex(mfplain.ini) = %{epoch}:20210325-%{release} -Provides: tex(trfonts.map) = %{epoch}:20210325-%{release} -Provides: tex(mproof.tex) = %{epoch}:20210325-%{release} -Provides: tex(mpsproof.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-metapost +Provides: tex(mf.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(plain.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmmf.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(mf.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(mode2dpi.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(mode2dpixy.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(modename.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(modes.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(ps2mfbas.mf) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-metafont +The program takes a programmatic specification of a font, and +produces a bitmap font (whose properties are defined by a set +of parameters of the target device), and metrics for use by +TeX. The bitmap output may be converted into a format directly +usable by a device driver, etc., by the tools provided in the +parallel mfware distribution. Third parties have developed +tools to convert the bitmap output to outline fonts. The +distribution includes the source of Knuth's Metafont book; this +source is there to read, as an example of writing TeX -- it +should not be processed without Knuth's direct permission. The +mailing list tex-fonts@math.utah.edu is the best for general +discussion of Metafont usage; the tex-k@tug.org list is best +for bug reports about building the software, etc. + +%package -n %{shortname}-metapost +Version: svn66264 +Provides: texlive-metapost = %{epoch}:%{source_date}-%{release} +Provides: tex-metapost = %{epoch}:%{source_date}-%{release} +Provides: texlive-metapost-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-metapost-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metapost-bin < 7:20170520 +Provides: tex-metapost-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-metapost-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metapost-doc < 7:20170520 +License: LGPL-2.1-or-later +Summary: A development of Metafont for creating graphics +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(groff.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(mproof.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mpsproof.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(trfonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(troff-updmap.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(troff.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-metapost MetaPost uses a language based on that of Metafont to produce precise technical illustrations. Its output is scalable PostScript or SVG, rather than the bitmaps Metafont creates. -%package -n texlive-mex -Provides: tex-mex = %{epoch}:20210325-%{release} texlive-mex-bin = %{epoch}:20210325-%{release} -Provides: tex-mex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mex-bin < 7:20180414 -Provides: tex-mex-doc = %{epoch}:20210325-%{release} -Provides: texlive-mex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mex-doc < 7:20180414 -License: Public Domain -Summary: Polish formats for TeX -Requires: texlive-base -Requires: texlive-enctex -Requires: texlive-hyph-utf8 -Requires: texlive-hyphen-base -Requires: texlive-hyphen-polish -Requires: texlive-knuth-lib -Requires: texlive-kpathsea -Requires: texlive-pdftex -Requires: texlive-pl -Requires: texlive-plain -Requires: texlive-tex -Requires: texlive-tex-ini-files -Requires: texlive-utf8mex +%package -n %{shortname}-mex +Version: svn58661 +Provides: texlive-mex = %{epoch}:%{source_date}-%{release} +Provides: tex-mex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mex-bin < 7:20170520 +Provides: tex-mex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mex-doc < 7:20170520 +License: LicenseRef-Fedora-Public-Domain +Summary: Polish formats for TeX +Requires: texlive-base +Requires: texlive-enctex +Requires: texlive-hyph-utf8 +Requires: texlive-hyphen-base +Requires: texlive-hyphen-polish +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-pl +Requires: texlive-plain +Requires: texlive-tex +Requires: texlive-tex-ini-files +Requires: texlive-utf8mex Requires(post,postun): coreutils -Provides: tex(lamex.tex) = %{epoch}:20210325-%{release} -Provides: tex(mex.tex) = %{epoch}:20210325-%{release} -Provides: tex(mex1.tex) = %{epoch}:20210325-%{release} -Provides: tex(mex2.tex) = %{epoch}:20210325-%{release} -Provides: tex(mexconf.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-mex +Provides: tex(lamex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex1.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex2.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mexconf.tex) = %{epoch}:%{source_date}-%{release} +# just symlinks +BuildArch: noarch + +%description -n %{shortname}-mex MeX is an adaptation of Plain TeX (MeX) and LaTeX209 (LaMeX) formats to the Polish language and to Polish printing customs. It contains a complete set of Metafont sources of Polish fonts, hyphenation rules for the Polish language and sources of formats. -%package -n texlive-mflua -Provides: tex-mflua = %{epoch}:20210325-%{release} -Provides: texlive-mflua-bin = %{epoch}:20210325-%{release} -Provides: tex-mflua-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mflua-bin < 7:20180414 -License: GPL+ -Summary: A METAFONT compliant program with a Lua interpreter embedded -Requires: texlive-base texlive-kpathsea - -%description -n texlive-mflua +%package -n %{shortname}-mflua +Version: svn62774 +Provides: texlive-mflua = %{epoch}:%{source_date}-%{release} +Provides: tex-mflua = %{epoch}:%{source_date}-%{release} +Provides: texlive-mflua-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mflua-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mflua-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: A METAFONT compliant program with a Lua interpreter embedded +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-mflua A METAFONT compliant program with a Lua interpreter embedded. -%package -n texlive-mfware -Provides: tex-mfware = %{epoch}:20210325-%{release} -Provides: texlive-mfware-bin = %{epoch}:20210325-%{release} -Provides: tex-mfware-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mfware-bin < 7:20180414 -License: Public Domain -Summary: Supporting tools for use with Metafont -Requires: texlive-base texlive-kpathsea - -%description -n texlive-mfware +%package -n %{shortname}-mfware +Version: svn66186 +Provides: texlive-mfware = %{epoch}:%{source_date}-%{release} +Provides: tex-mfware = %{epoch}:%{source_date}-%{release} +Provides: texlive-mfware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mfware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mfware-bin < 7:20170520 +License: Knuth-CTAN +Summary: Supporting tools for use with Metafont +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-mfware A collection of programs (as web source) for processing the output of Metafont. -%package -n texlive-mf2pt1 -Provides: tex-mf2pt1 = %{epoch}:20210325-%{release} -Provides: texlive-mf2pt1-bin = %{epoch}:20210325-%{release} -Provides: tex-mf2pt1-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mf2pt1-bin < 7:20180414 -Provides: tex-mf2pt1-doc = %{epoch}:20210325-%{release} -Provides: texlive-mf2pt1-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mf2pt1-doc < 7:20180414 -Summary: Produce PostScript Type 1 fonts from Metafont source -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-mf2pt1 +%package -n %{shortname}-mf2pt1 +Version: svn61217 +Provides: texlive-mf2pt1 = %{epoch}:%{source_date}-%{release} +Provides: tex-mf2pt1 = %{epoch}:%{source_date}-%{release} +Provides: texlive-mf2pt1-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mf2pt1-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mf2pt1-bin < 7:20170520 +Provides: tex-mf2pt1-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mf2pt1-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mf2pt1-doc < 7:20170520 +License: LPPL-1.3c +Summary: Produce PostScript Type 1 fonts from Metafont source +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mf2pt1 mf2pt1 facilitates producing PostScript Type 1 fonts from a Metafont source file. It is not, as the name may imply, an automatic converter of arbitrary Metafont fonts to Type 1 @@ -3752,40 +5247,48 @@ Type 1 output with more accurate control points than can be reverse-engineered by TeXtrace, mftrace, and other programs which convert bitmaps to outline fonts. -%package -n texlive-mkgrkindex -Provides: tex-mkgrkindex = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-mkgrkindex-bin = %{epoch}:20210325-%{release} -Provides: tex-mkgrkindex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkgrkindex-bin < 7:20180414 -Provides: tex-mkgrkindex-doc = %{epoch}:20210325-%{release} -Provides: texlive-mkgrkindex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkgrkindex-doc < 7:20180414 -Summary: Makeindex working with Greek -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-mkgrkindex +%package -n %{shortname}-mkgrkindex +Version: svn26313 +Provides: texlive-mkgrkindex = %{epoch}:%{source_date}-%{release} +Provides: tex-mkgrkindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkgrkindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkgrkindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkgrkindex-bin < 7:20170520 +Provides: tex-mkgrkindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkgrkindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkgrkindex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Makeindex working with Greek +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkgrkindex Makeindex is resolutely stuck with Latin-based alphabets, so will not deal with Greek indexes, unaided. This package provides a Perl script that will transmute the index of a Greek document in such a way that makeindex will sort the entries according to the rules of the Greek alphabet. -%package -n texlive-mkjobtexmf -Provides: tex-mkjobtexmf = %{epoch}:20210325-%{release} -Provides: texlive-mkjobtexmf-bin = %{epoch}:20210325-%{release} -Provides: tex-mkjobtexmf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkjobtexmf-bin < 7:20180414 -Provides: tex-mkjobtexmf-doc = %{epoch}:20210325-%{release} -Provides: texlive-mkjobtexmf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkjobtexmf-doc < 7:20180414 -License: GPLv2 or Artistic -Summary: Generate a texmf tree for a particular job -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-mkjobtexmf +%package -n %{shortname}-mkjobtexmf +Version: svn29725 +Provides: texlive-mkjobtexmf = %{epoch}:%{source_date}-%{release} +Provides: tex-mkjobtexmf = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkjobtexmf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkjobtexmf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkjobtexmf-bin < 7:20170520 +Provides: tex-mkjobtexmf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkjobtexmf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkjobtexmf-doc < 7:20170520 +License: GPL-2.0-only +Summary: Generate a texmf tree for a particular job +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkjobtexmf The package provides a Perl script, which runs a program and tries to find the names of file used. Two methods are available, option -recorder of (Web2C) TeX and the program @@ -3794,20 +5297,24 @@ checks the found files and tries sort them in this texmf tree. The script may be used for archiving purposes or to speed up later TeX runs. -%package -n texlive-mkpic -Provides: tex-mkpic = %{epoch}:20210325-%{release} -Provides: texlive-mkpic-bin = %{epoch}:20210325-%{release} -Provides: tex-mkpic-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkpic-bin < 7:20180414 -Provides: tex-mkpic-doc = %{epoch}:20210325-%{release} -Provides: texlive-mkpic-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkpic-doc < 7:20180414 -License: GPL+ -Summary: Perl interface to mfpic -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-mkpic +%package -n %{shortname}-mkpic +Version: svn33700 +Provides: texlive-mkpic = %{epoch}:%{source_date}-%{release} +Provides: tex-mkpic = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkpic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkpic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkpic-bin < 7:20170520 +Provides: tex-mkpic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkpic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkpic-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Perl interface to mfpic +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkpic mkpic provides an easy interface for making small pictures with mfpic. To this end you create an input file consisting of commands, one per line, with space separated parameters (or you @@ -3815,58 +5322,67 @@ modify the DATA section of the mkpic script, which is used if you run it without an input file). For an extensive description see the file mkpicdoc.pdf, which is part of the distribution. -%package -n texlive-mltex -Provides: tex-mltex = %{epoch}:20210325-%{release} -Provides: texlive-mltex-bin = %{epoch}:20210325-%{release} -Provides: tex-mltex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mltex-bin < 7:20180414 -Provides: tex-mltex-doc = %{epoch}:20210325-%{release} -Provides: texlive-mltex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mltex-doc < 7:20180414 -License: LPPL-1.3c -Summary: The MLTeX system -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-latex -Requires: texlive-pdftex -Requires: texlive-cm -Requires: texlive-hyphen-base -Requires: texlive-babel -Requires: texlive-dehyph -Requires: texlive-hyph-utf8 -Requires: texlive-l3kernel -Requires: texlive-latexconfig -Requires: texlive-latex-fonts -Requires: texlive-unicode-data -Requires: texlive-knuth-lib -Requires: texlive-plain +%package -n %{shortname}-mltex +Version: svn62145 +Provides: texlive-mltex = %{epoch}:%{source_date}-%{release} +Provides: tex-mltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mltex-bin < 7:20170520 +Provides: tex-mltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mltex-doc < 7:20170520 +License: Knuth-CTAN +Summary: The MLTeX system +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-pdftex +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-babel +Requires: texlive-dehyph +Requires: texlive-hyph-utf8 +Requires: texlive-l3kernel +Requires: texlive-latexconfig +Requires: texlive-latex-fonts +Requires: texlive-unicode-data +Requires: texlive-knuth-lib +Requires: texlive-plain Requires(post,postun): coreutils -Provides: tex(lo1enc.def) = %{epoch}:20210325-%{release} -Provides: tex(mlltxchg.def) = %{epoch}:20210325-%{release} -Provides: tex(mltex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch +Provides: tex(lo1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mlltxchg.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mltex.sty) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch -%description -n texlive-mltex +%description -n %{shortname}-mltex MLTeX is a modification of TeX version >=3.0 that allows the hyphenation of words with accented letters using ordinary Computer Modern (CM) fonts. The system is distributed as a TeX change file. -%package -n texlive-mptopdf -Provides: tex-mptopdf = %{epoch}:20210325-%{release} -Provides: texlive-mptopdf-bin = %{epoch}:20210325-%{release} -Provides: tex-mptopdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mptopdf-bin < 7:20180414 -Provides: tex-mptopdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-mptopdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mptopdf-doc < 7:20180414 -Summary: mpost to PDF, native MetaPost graphics inclusion -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-mptopdf +Version: svn65952 +Provides: texlive-mptopdf = %{epoch}:%{source_date}-%{release} +Provides: tex-mptopdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-mptopdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mptopdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mptopdf-bin < 7:20170520 +Provides: tex-mptopdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mptopdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mptopdf-doc < 7:20170520 +License: LPPL-1.3c +Summary: mpost to PDF, native MetaPost graphics inclusion +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-plain Requires(post,postun): coreutils -Provides: tex(mptopdf.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch +Provides: tex(mptopdf.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch -%description -n texlive-mptopdf +%description -n %{shortname}-mptopdf The mptopdf script does standalone conversion from mpost to PDF, using the supp-* and syst-* files. They also allow native MetaPost graphics inclusion in LaTeX (via pdftex.def) and @@ -3876,21 +5392,25 @@ pull them out to this separate package for the benefit of LaTeX users who do not install the rest of ConTeXt. This can be found on CTAN in macros/pdftex/graphics. -%package -n texlive-multibibliography -Provides: tex-multibibliography = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-multibibliography-bin = %{epoch}:20210325-%{release} -Provides: tex-multibibliography-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-multibibliography-bin < 7:20180414 -Provides: tex-multibibliography-doc = %{epoch}:20210325-%{release} -Provides: texlive-multibibliography-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-multibibliography-doc < 7:20180414 -Summary: Multiple versions of a bibliography, with different sort orders -Requires: texlive-base texlive-kpathsea -Provides: tex(multibibliography.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-multibibliography +%package -n %{shortname}-multibibliography +Version: svn30939 +Provides: texlive-multibibliography = %{epoch}:%{source_date}-%{release} +Provides: tex-multibibliography = %{epoch}:%{source_date}-%{release} +Provides: texlive-multibibliography-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-multibibliography-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-multibibliography-bin < 7:20170520 +Provides: tex-multibibliography-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-multibibliography-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-multibibliography-doc < 7:20170520 +License: LPPL-1.3c +Summary: Multiple versions of a bibliography, with different sort orders +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(multibibliography.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-multibibliography Conventional standards for bibliography styles impose a forced choice between index and name/year citations, and corresponding references. The package avoids this choice, by providing @@ -3899,67 +5419,77 @@ references. Inline citations, that integrate these heterogeneous styles, are also supported (and work with other bibliography packages). -%package -n texlive-musixtex -Provides: tex-musixtex = %{epoch}:20210325-%{release} -Provides: texlive-musixtex-bin = %{epoch}:20210325-%{release} -Provides: tex-musixtex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-musixtex-bin < 7:20180414 -Provides: tex-musixtex-doc = %{epoch}:20210325-%{release} -Provides: texlive-musixtex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-musixtex-doc < 7:20180414 -License: GPLv2+ -Summary: Sophisticated music typesetting -Requires: texlive-base texlive-kpathsea -Provides: tex(musixadd.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixadf.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixbar.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixbbm.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixblx.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixbm.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixcho.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixcpt.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixcrd.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixdat.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixdbr.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixdia.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixec.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixeng.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixesf.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixevo.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixext.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixfll.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixgre.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixgui.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixhor.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixhou.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixhv.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixinv.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixlit.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixlyr.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixmad.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixper.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixplt.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixpoi.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixppff.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixps.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixref.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixslu.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixsqr.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixste.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixstf.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixstr.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixsty.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixtex.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixtmr.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixtri.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixcpt.sty) = %{epoch}:20210325-%{release} -Provides: tex(musixcrd.sty) = %{epoch}:20210325-%{release} -Provides: tex(musixfll.sty) = %{epoch}:20210325-%{release} -Provides: tex(musixltx.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixtex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-musixtex +%package -n %{shortname}-musixtex +Version: svn65519 +Provides: texlive-musixtex = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtex = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtex-bin < 7:20170520 +Provides: tex-musixtex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtex-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Sophisticated music typesetting +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(musixadd.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixadf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbbm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixblx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcho.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcpt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcpt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcrd.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcrd.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdat.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdbr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdia.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixec.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixeng.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixesf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixevo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixext.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixfll.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixfll.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixftab.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixgre.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixgui.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhou.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhv.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixinv.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixjt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixlit.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixltx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixlyr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixmad.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixmkm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixper.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixplt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixpoi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixppff.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixps.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixref.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixslu.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixsqr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixste.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixstf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixstr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixsty.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixthacc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtmr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtri.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixvbm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tuplet.tex) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-musixtex MusiXTeX provides a set of macros, based on the earlier MusicTeX, for typesetting music with TeX. To produce optimal spacing, MusixTeX is a three-pass system: etex, musixflx, and @@ -3974,21 +5504,24 @@ are universally acknowledged to be challenging to use directly: the pmx preprocessor compiles a simpler input language to MusixTeX macros. -%package -n texlive-musixtnt -Provides: tex-musixtnt = %{epoch}:20210325-%{release} -Provides: texlive-musixtnt-bin = %{epoch}:20210325-%{release} -Provides: tex-musixtnt-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-musixtnt-bin < 7:20180414 -Provides: tex-musixtnt-doc = %{epoch}:20210325-%{release} -Provides: texlive-musixtnt-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-musixtnt-doc < 7:20180414 -License: GPLv2+ -Summary: A MusiXTeX extension library that enables transformations of the effect of notes commands -Requires: texlive-base texlive-kpathsea -Requires: texlive-musixtex -Provides: tex(musixtnt.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-musixtnt +%package -n %{shortname}-musixtnt +Version: svn40307 +Provides: texlive-musixtnt = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtnt = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtnt-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtnt-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtnt-bin < 7:20170520 +Provides: tex-musixtnt-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtnt-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtnt-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: A MusiXTeX extension library that enables transformations of the effect of notes commands +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-musixtex +Provides: tex(musixtnt.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-musixtnt The package includes an archive containing a MusiXTeX extension library musixtnt, and documentation for a program: msxlint. musixtnt.tex provides a macro \TransformNotes that @@ -4002,102 +5535,120 @@ instrument score. msxlint detects incorrectly formatted notes lines in a MusiXTeX source file. This should be used before using \TransformNotes. -%package -n texlive-m-tx -Provides: tex-m-tx = %{epoch}:20210325-%{release} texlive-m-tx-bin = %{epoch}:20210325-%{release} -Provides: tex-m-tx-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-m-tx-bin < 7:20180414 -Provides: tex-m-tx-doc = %{epoch}:20210325-%{release} -Provides: texlive-m-tx-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-m-tx-doc < 7:20180414 -License: GPL+ -Summary: A preprocessor for pmx -Requires: texlive-base texlive-kpathsea -Provides: tex(mtx.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-m-tx +%package -n %{shortname}-m-tx +Version: svn64182 +Provides: texlive-m-tx = %{epoch}:%{source_date}-%{release} +Provides: tex-m-tx = %{epoch}:%{source_date}-%{release} +Provides: texlive-m-tx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-m-tx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-m-tx-bin < 7:20170520 +Provides: tex-m-tx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-m-tx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-m-tx-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: A preprocessor for pmx +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(mtx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtxlatex.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-m-tx M-Tx is a preprocessor to pmx, which is itself a preprocessor to musixtex, a music typesetting system. The prime motivation to the development of M-Tx was to provide lyrics for music to be typeset. In fact, pmx now provides a lyrics interface, but M- Tx continues in use by those who prefer its language. -%package -n texlive-oberdiek -Provides: tex-oberdiek = %{epoch}:20210325-%{release} -Provides: tex-oberdiek-doc = %{epoch}:20210325-%{release} -Provides: texlive-oberdiek-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-oberdiek-doc < 7:20180414 -License: LPPL-1.3c -Summary: A bundle of packages submitted by Heiko Oberdiek -Requires: texlive-base texlive-kpathsea -Requires: tex(ifluatex.sty) tex(intcalc.sty) -Requires: tex(ifpdf.sty) tex(etexcmds.sty) -Requires: tex(kvoptions.sty) tex(ifxetex.sty) -Requires: tex(etex.sty) tex(color.sty) -Requires: tex(keyval.sty) tex(soul.sty) -Requires: tex(remreset.sty) tex(makematch.sty) -Requires: tex(zref-lastpage.sty) tex(hyperref.sty) -Requires: tex(fp-basic.sty) tex(fp-snap.sty) -Requires: tex(graphics.sty) tex(amsmath.sty) -Requires: tex(grfext.sty) tex(hypdoc.sty) -Requires: tex(array.sty) tex(fontspec.sty) -Requires: tex(unicode-math.sty) tex(doc.sty) -Requires: tex(calc.sty) tex(thumbpdf.sty) -Requires: tex(inputenc.sty) tex(listings.sty) -Requires: tex(tikz.sty) tex(everyshi.sty) -Requires: tex(parallel.sty) tex(parcolumns.sty) -Requires: tex(lscape.sty) tex(index.sty) -Requires: tex(zref-pagelayout.sty) -Provides: tex(aliascnt.sty) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize-base.sty) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize-dvipdfm.def) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize-dvipdfmx.def) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize-dvips.def) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize.sty) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(centernot.sty) = %{epoch}:20210325-%{release} -Provides: tex(chemarr.sty) = %{epoch}:20210325-%{release} -Provides: tex(classlist.sty) = %{epoch}:20210325-%{release} -Provides: tex(colonequals.sty) = %{epoch}:20210325-%{release} -Provides: tex(dvipscol.sty) = %{epoch}:20210325-%{release} -Provides: tex(engord.sty) = %{epoch}:20210325-%{release} -Provides: tex(enparen.sty) = %{epoch}:20210325-%{release} -Provides: tex(eolgrab.sty) = %{epoch}:20210325-%{release} -Provides: tex(fibnum.sty) = %{epoch}:20210325-%{release} -Provides: tex(flags.sty) = %{epoch}:20210325-%{release} -Provides: tex(holtxdoc.sty) = %{epoch}:20210325-%{release} -Provides: tex(hopatch.sty) = %{epoch}:20210325-%{release} -Provides: tex(hypbmsec.sty) = %{epoch}:20210325-%{release} -Provides: tex(hypcap.sty) = %{epoch}:20210325-%{release} -Provides: tex(hypdestopt.sty) = %{epoch}:20210325-%{release} -Provides: tex(hypdoc.sty) = %{epoch}:20210325-%{release} -Provides: tex(hypgotoe.sty) = %{epoch}:20210325-%{release} -Provides: tex(hyphsubst.sty) = %{epoch}:20210325-%{release} -Provides: tex(ifdraft.sty) = %{epoch}:20210325-%{release} -Provides: tex(iflang.sty) = %{epoch}:20210325-%{release} -Provides: tex(pagegrid.sty) = %{epoch}:20210325-%{release} -Provides: tex(pagesel.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfcolfoot.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfcolparallel.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfcolparcolumns.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfcol.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfcrypt.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfrender.sty) = %{epoch}:20210325-%{release} -Provides: tex(protecteddef.sty) = %{epoch}:20210325-%{release} -Provides: tex(resizegather.sty) = %{epoch}:20210325-%{release} -Provides: tex(rotchiffre.sty) = %{epoch}:20210325-%{release} -Provides: tex(scrindex.sty) = %{epoch}:20210325-%{release} -Provides: tex(setouterhbox.sty) = %{epoch}:20210325-%{release} -Provides: tex(settobox.sty) = %{epoch}:20210325-%{release} -Provides: tex(stackrel.sty) = %{epoch}:20210325-%{release} -Provides: tex(stampinclude.sty) = %{epoch}:20210325-%{release} -Provides: tex(tabularht.sty) = %{epoch}:20210325-%{release} -Provides: tex(tabularkv.sty) = %{epoch}:20210325-%{release} -Provides: tex(telprint.sty) = %{epoch}:20210325-%{release} -Provides: tex(thepdfnumber.sty) = %{epoch}:20210325-%{release} -Provides: tex(twoopt.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-oberdiek +%package -n %{shortname}-oberdiek +Version: svn65521 +Provides: texlive-oberdiek = %{epoch}:%{source_date}-%{release} +Provides: tex-oberdiek = %{epoch}:%{source_date}-%{release} +Provides: tex-oberdiek-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-oberdiek-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-oberdiek-doc < 7:20170520 +License: LPPL-1.3c +Summary: A bundle of packages submitted by Heiko Oberdiek +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-auxhook +Requires: texlive-grfext +Requires: texlive-grffile +Requires: texlive-iftex +Requires: texlive-kvoptions +Requires: texlive-infwarerr +Requires: texlive-pdftexcmds +# To complete the bundle +Requires: tex(amsmath.sty) +Requires: tex(array.sty) +Requires: tex(atveryend.sty) +Requires: tex(bigintcalc.sty) +Requires: tex(color.sty) +Requires: tex(etexcmds.sty) +Requires: tex(fontspec.sty) +Requires: tex(fp-basic.sty) +Requires: tex(fp-snap.sty) +Requires: tex(graphics.sty) +Requires: tex(hologo.sty) +Requires: tex(hypdoc.sty) +Requires: tex(hyperref.sty) +Requires: tex(index.sty) +Requires: tex(intcalc.sty) +Requires: tex(keyval.sty) +Requires: tex(kvsetkeys.sty) +Requires: tex(letltxmacro.sty) +Requires: tex(ltxcmds.sty) +Requires: tex(parallel.sty) +Requires: tex(parcolumns.sty) +Requires: tex(pdfcol.sty) +Requires: tex(pdfescape.sty) +Requires: tex(remreset.sty) +Requires: tex(unicode-math.sty) +Requires: tex(uniquecounter.sty) +Requires: tex(zref-base.sty) +Provides: tex(aliascnt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-base.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvipdfm.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvipdfmx.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvips.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(centernot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(chemarr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(classlist.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(colonequals.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvipscol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(engord.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(enparen.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(eolgrab.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fibnum.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(flags.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(holtxdoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypbmsec.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypcap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypgotoe.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hyphsubst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifdraft.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(iflang.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolparallel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolparcolumns.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcrypt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfrender.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(protecteddef.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(resizegather.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotchiffre.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(scrindex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(setouterhbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(settobox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(stackrel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(stampinclude.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tabularht.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tabularkv.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(telprint.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(thepdfnumber.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(twoopt.sty) = %{epoch}:%{source_date}-%{release} +BuildArch: noarch + +%description -n %{shortname}-oberdiek The bundle comprises packages to provide: aliascnt: 'alias counters'; bmpsize: get bitmap size and resolution data; centernot: a horizontally-centred \not symbol; chemarr: @@ -4108,105 +5659,174 @@ stack management; engord: define counter-printing operations producing English ordinals; eolgrab: collect arguments delimited by end of line; flags: setting and clearing flags in bit fields and converting the bit field into a decimal number; -holtxdoc: extra documentation macros; hopatch: safely apply -package patches; hypbmsec: bookmarks in sectioning commands; -hypcap: anjusting anchors of captions; hypdestopt: optimising -hyperref's pdfTeX driver destinations; hypdoc: hyper-references -in the LaTeX standard doc package; hypgotoe: experimental -package for links to embedded files; hyphsubst: substitute -hyphenation patterns; ifdraft: switch for option draft; iflang: -provides expandable checks for the current language; pagegrid: -prints a page grid in the background; pagesel: select pages of -a document for output; pdfcolfoot: using pdfTeX's color stack -for footnotes; pdfcol: macros for setting and maintaining new -color stacks; pdfcolparallel: fixes colour problems in package -parallel; pdfcolparcolumns: fixes colour problems in package -parcolumns; pdfcrypt: setting PDF encryption; pdfrender: -control PDF rendering modes; protecteddef: define a command -that protected against expansion; resizegather: automatically -resize overly large equations; rotchiffre: performs simple -rotation cyphers; scrindex: redefines environment 'theindex' of -package 'index', if a class from KOMA-Script is loaded; -setouterhbox: set \hbox in outer horizontal mode; settobox: -getting box sizes; soul and adds some support for UTF-8; -stackrel: extensions of the \stackrel command; stampinclude: -selects the files for \include by inspecting the timestamp of -the .aux file(s); tabularht: tabulars with height -specification; tabularkv: key value interface for tabular -parameters; telprint: print German telephone numbers; -thepdfnumber: canonical numbers for use in PDF files and -elsewhere; twoopt: commands with two optional arguments; Each -of the packages is represented by two files, a .dtx (documented -source) and a PDF file; the .ins file necessary for -installation is extracted by running the .dtx file with Plain -TeX. - - -%package -n texlive-omegaware -Provides: tex-omegaware = %{epoch}:20210325-%{release} -Provides: texlive-omegaware-bin = %{epoch}:20210325-%{release} -Provides: tex-omegaware-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-omegaware-bin < 7:20180414 -Provides: tex-omegaware-doc = %{epoch}:20210325-%{release} -Provides: texlive-omegaware-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-omegaware-doc < 7:20180414 -Summary: Omegaware package -Requires: texlive-base texlive-kpathsea - -%description -n texlive-omegaware -Omegaware package. - -%package -n texlive-optex -License: Public Domain -Summary: LuaTeX format based on Plain TeX and OPmac -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-amsfonts -Requires: texlive-cm -Requires: texlive-ec -Requires: texlive-hyphen-base -Requires: texlive-lm -Requires: texlive-luatex -Requires: texlive-rsfs - -%description -n texlive-optex +holtxdoc: extra documentation macros; hypbmsec: bookmarks in +sectioning commands; hypcap: anjusting anchors of captions; +hypgotoe: experimental package for links to embedded files; +hyphsubst: substitute hyphenation patterns; ifdraft: switch for +option draft; iflang: provides expandable checks for the +current language; pdfcolparallel: fixes colour problems in +package parallel; pdfcolparcolumns: fixes colour problems in +package parcolumns; pdfcrypt: setting PDF encryption; +pdfrender: control PDF rendering modes; protecteddef: define a +command that protected against expansion; resizegather: +automatically resize overly large equations; rotchiffre: +performs simple rotation cyphers; scrindex: redefines +environment 'theindex' of package 'index', if a class from +KOMA-Script is loaded; setouterhbox: set \hbox in outer +horizontal mode; settobox: getting box sizes; stackrel: +extensions of the \stackrel command; stampinclude: selects the +files for \include by inspecting the timestamp of the .aux +file(s); tabularht: tabulars with height specification; +tabularkv: key value interface for tabular parameters; +telprint: print German telephone numbers; thepdfnumber: +canonical numbers for use in PDF files and elsewhere; twoopt: +commands with two optional arguments; Each of the packages is +represented by two files, a .dtx (documented source) and a PDF +file; the .ins file necessary for installation is extracted by +running the .dtx file with Plain TeX. + +%package -n %{shortname}-omegaware +Version: svn66186 +Provides: texlive-omegaware = %{epoch}:%{source_date}-%{release} +Provides: tex-omegaware = %{epoch}:%{source_date}-%{release} +Provides: texlive-omegaware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-omegaware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-omegaware-bin < 7:20170520 +Provides: tex-omegaware-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-omegaware-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-omegaware-doc < 7:20170520 +License: LPPL-1.3c +Summary: A wide-character-set extension of TeX +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-omegaware +A development of TeX, which deals in multi-octet Unicode +characters, to enable native treatment of a wide range of +languages without changing character-set. Work on Omega has +ceased (the TeX Live package contains only support files); its +compatible successor is aleph, which is itself also in major +maintenance mode only. Ongoing projects developing Omega (and +Aleph) ideas include Omega-2 and LuaTeX. + +%package -n %{shortname}-optex +Version: svn66513 +Provides: texlive-optex = %{epoch}:%{source_date}-%{release} +License: LicenseRef-Fedora-Public-Domain +Summary: LuaTeX format based on Plain TeX and OPmac +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-amsfonts +Requires: texlive-cm +Requires: texlive-ec +Requires: texlive-hyphen-base +Requires: texlive-librarian +Requires: texlive-lm +Requires: texlive-luaotfload +Requires: texlive-luatex +Requires: texlive-rsfs +Requires: texlive-unicode-data +Provides: tex(op-demo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(op-letter-cs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(op-letter-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(op-mathalign.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(op-slides.tex) = %{epoch}:%{source_date}-%{release} + + +%description -n %{shortname}-optex OpTeX is a LuaTeX format based on Plain TeX macros with power from OPmac (fonts selection system, colors, external graphics, references, hyperlinks, ...) with unicode fonts. -%package -n texlive-patgen -Provides: tex-patgen = %{epoch}:20210325-%{release} -Provides: texlive-patgen-bin = %{epoch}:20210325-%{release} -Provides: tex-patgen-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-patgen-bin < 7:20180414 -License: Public Domain -Summary: Generate hyphenation patterns -Requires: texlive-base texlive-kpathsea - -%description -n texlive-patgen -This is the last version of the program distributed by Knuth; -it advertises itself as a pattern generator for "the algorithm -used in TeX", but, of course, the patterns used in modern -distributions are Unicode-based. - -%package -n texlive-pax -Provides: tex-pax = %{epoch}:20210325-%{release} texlive-pax-bin = %{epoch}:20210325-%{release} -Provides: tex-pax-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pax-bin < 7:20180414 -Provides: tex-pax-doc = %{epoch}:20210325-%{release} -Provides: texlive-pax-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pax-doc < 7:20180414 -License: GPLv2+ -Summary: Extract and reinsert PDF annotations with pdfTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(ifpdf.sty) tex(graphicx.sty) -Requires: tex(ltxcmds.sty) tex(kvsetkeys.sty) -Requires: tex(kvoptions.sty) tex(auxhook.sty) -Requires: tex(etexcmds.sty) -Provides: tex(pax.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pax +%package -n %{shortname}-optexcount +Version: svn59817 +Provides: texlive-optexcount = %{epoch}:%{source_date}-%{release} +Provides: texlive-optexcount-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Python script for counting words in OpTeX documents +Requires: texlive-base, texlive-kpathsea +#python +BuildArch: noarch + +%description -n %{shortname}-optexcount +OpTeXcount is a basic python utility that analyzes OpTeX source code. It is +inspired by already existing TeXcount for LaTeX. The functionality is really +lightweight and basic. It counts words and other elements of OpTeX document +and sorts them out into individual categories. Users can print the source code +with highlighted words using several colors,so they see what is considered as +word, header etc. + +%package -n %{shortname}-pagelayout +Summary: Layout graphic rich documents +Version: svn66392 +License: LPPL-1.3c +Requires: texlive-base texlive-kpathsea +Provides: tex(pagelayout.cls) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-pagelayout +The pagelayout class enables you to layout pages declaratively +using simple macros for pages, covers, grids, templates, text, +and graphics to create graphic rich, perfectly typeset, and +print ready PDFs. The integration of Inkscape allows your to +create box shadows. The integration of ImageMagick allows you +to configure compression and sharpening for bitmap graphics to +export web, print or preview versions of your document. +Parallelized image optimization, caching, and a draft mode +enable fast PDF creation and a responsive workflow, even for +large documents with lots of photos and graphics. The +pagelayout class also integrates the Pgf/TikZ and tcolorbox +LaTeX packages. + +%package -n %{shortname}-patgen +Version: svn66186 +Provides: texlive-patgen = %{epoch}:%{source_date}-%{release} +Provides: tex-patgen = %{epoch}:%{source_date}-%{release} +Provides: texlive-patgen-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-patgen-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-patgen-bin < 7:20170520 +License: Knuth-CTAN +Summary: Generate hyphenation patterns +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-patgen +Patgen takes a list of hyphenated words and generates a set of +patterns that can be used by the TeX 82 hyphenation algorithm. +Patgen was originally written by Frank M. Liang as part of his +Stanford Ph.D. work, and has always been distributed alongside +the other programs coming from the Stanford TeX project. It was +updated in 1991 by Peter Breitenlohner for the new 8-bit +features of TeX version 3. (These updates related to +input/output and programming overhead; the actual pattern +generation algorithms were not changed.) Patgen is currently +maintained as part of TeX Live. + +%package -n %{shortname}-pax +Version: svn63509 +Provides: texlive-pax = %{epoch}:%{source_date}-%{release} +Provides: tex-pax = %{epoch}:%{source_date}-%{release} +Provides: texlive-pax-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pax-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pax-bin < 7:20170520 +Provides: tex-pax-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pax-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pax-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Extract and reinsert PDF annotations with pdfTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifpdf.sty) +Requires: tex(graphicx.sty) +Requires: tex(ltxcmds.sty) +Requires: tex(kvsetkeys.sty) +Requires: tex(kvoptions.sty) +Requires: tex(auxhook.sty) +Requires: tex(etexcmds.sty) +Provides: tex(pax.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-pax If PDF files are included using pdfTeX, PDF annotations are stripped. The pax project offers a solution without altering pdfTeX. A Java program (pax.jar) parses the PDF file that will @@ -4217,21 +5837,26 @@ if a PDF file is included, the package looks for the file with the annotation data, reads them and puts the annotations in the right place. -%package -n texlive-pdfbook2 -Provides: tex-pdfbook2 = %{epoch}:20210325-%{release} -Provides: texlive-pdfbook2-bin = %{epoch}:20210325-%{release} -Provides: tex-pdfbook2-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfbook2-bin < 7:20180414 -Provides: tex-pdfbook2-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdfbook2-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfbook2-doc < 7:20180414 -License: GPLv3+ -Summary: Create booklets from PDF files -Requires: texlive-base texlive-kpathsea -Requires: texlive-pdfcrop texlive-pdfjam -BuildArch: noarch - -%description -n texlive-pdfbook2 +%package -n %{shortname}-pdfbook2 +Version: svn53521 +Provides: texlive-pdfbook2 = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfbook2 = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfbook2-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfbook2-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfbook2-bin < 7:20170520 +Provides: tex-pdfbook2-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfbook2-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfbook2-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Create booklets from PDF files +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdfcrop +Requires: texlive-pdfjam +# python +BuildArch: noarch + +%description -n %{shortname}-pdfbook2 This python program creates print-ready PDF files from some input PDF files for booklet printing. The resulting files need to be printed in landscape/long edge double sided printing. The @@ -4245,174 +5870,210 @@ the binding occurs. The output is written to INPUT-book.pdf. Existing files will be overwritten. All input files are processed seperately. -%package -n texlive-pdfcrop -Provides: tex-pdfcrop = %{epoch}:20210325-%{release} -Provides: texlive-pdfcrop-bin = %{epoch}:20210325-%{release} -Provides: tex-pdfcrop-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfcrop-bin < 7:20180414 -Provides: tex-pdfcrop-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdfcrop-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfcrop-doc < 7:20180414 -Summary: Crop PDF graphics -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pdfcrop +%package -n %{shortname}-pdfcrop +Version: svn55435 +Provides: texlive-pdfcrop = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfcrop = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfcrop-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfcrop-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfcrop-bin < 7:20170520 +Provides: tex-pdfcrop-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfcrop-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfcrop-doc < 7:20170520 +License: LPPL-1.3c +Summary: Crop PDF graphics +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +# perl +BuildArch: noarch + +%description -n %{shortname}-pdfcrop A Perl script that can either trim pages of any whitespace border, or trim them of a fixed border. -%package -n texlive-pdfjam -Provides: tex-pdfjam = %{epoch}:20210325-%{release} -Provides: texlive-pdfjam-bin = %{epoch}:20210325-%{release} -Provides: tex-pdfjam-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfjam-bin < 7:20180414 -Provides: tex-pdfjam-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdfjam-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfjam-doc < 7:20180414 -License: GPLv2+ -Summary: Shell scripts interfacing to pdfpages -Requires: texlive-base texlive-collection-latex -Requires: texlive-kpathsea texlive-latex -Requires: tex(pdfpages.sty) -BuildArch: noarch - -%description -n texlive-pdfjam +%package -n %{shortname}-pdfjam +Version: svn56991 +Provides: texlive-pdfjam = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfjam = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfjam-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfjam-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfjam-bin < 7:20170520 +Provides: tex-pdfjam-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfjam-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfjam-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Shell scripts interfacing to pdfpages +Requires: texlive-base +Requires: texlive-collection-latex +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: tex(pdfpages.sty) +# shell +BuildArch: noarch + +%description -n %{shortname}-pdfjam This is a collection of shell scripts which provide an interface to the pdfpages LaTeX package. They do such jobs as selecting pages, concatenating files, doing n-up formatting, and so on. -%package -n texlive-pdflatexpicscale -Provides: tex-pdflatexpicscale = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-pdflatexpicscale-bin = %{epoch}:20210325-%{release} -Provides: tex-pdflatexpicscale-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdflatexpicscale-bin < 7:20180414 -Provides: tex-pdflatexpicscale-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdflatexpicscale-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdflatexpicscale-doc < 7:20180414 -Summary: Support software for downscaling graphics to be included by pdfLaTeX -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pdflatexpicscale +%package -n %{shortname}-pdflatexpicscale +Version: svn46617 +Provides: texlive-pdflatexpicscale = %{epoch}:%{source_date}-%{release} +Provides: tex-pdflatexpicscale = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdflatexpicscale-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdflatexpicscale-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdflatexpicscale-bin < 7:20170520 +Provides: tex-pdflatexpicscale-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdflatexpicscale-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdflatexpicscale-doc < 7:20170520 +License: LPPL-1.3c +Summary: Support software for downscaling graphics to be included by pdfLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pdflatexpicscale The package provides a script to scale pictures down to a target resolution before creating a PDF document with pdfLaTeX. -%package -n texlive-pdftex -Provides: tex-pdftex = %{epoch}:20210325-%{release} -Provides: texlive-pdftex-bin = %{epoch}:20210325-%{release} -Provides: tex-pdftex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdftex-bin < 7:20180414 -Provides: tex-pdftex-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdftex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdftex-doc < 7:20180414 -License: GPL+ -Summary: A TeX extension for direct creation of PDF -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-pdftex +Version: svn66243 +Provides: texlive-pdftex = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdftex-bin < 7:20170520 +Provides: tex-pdftex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdftex-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: A TeX extension for direct creation of PDF +Requires: texlive-base +Requires: texlive-kpathsea Requires(post,postun): coreutils -Requires: tex-graphics-def texlive-cm -Requires: texlive-etex texlive-hyphen-base -Requires: texlive-knuth-lib texlive-plain -Requires: tex-tex-ini-files texlive-hyph-utf8 -Provides: tex(dummy-space.map) = %{epoch}:20210325-%{release} -Provides: tex(dummy-space.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dummy-space.pfb) = %{epoch}:20210325-%{release} -Provides: tex(pdftex-dvi.tex) = %{epoch}:20210325-%{release} -Provides: tex(glyphtounicode.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfcolor.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-pdftex -An extension of TeX which can be configured to directly -generate PDF documents instead of DVI. All current free TeX -distributions including TeX live, MacTeX and MiKTeX include -pdfTeX (Plain TeX) and pdfLaTeX (LaTeX). ConTeXt was designed -around use of pdfTeX (though it is now migrating towards -LuaTeX). - -%package -n texlive-pdftex-quiet -Provides: tex-pdftex-quiet = %{epoch}:20210325-%{release} -Provides: texlive-pdftex-quiet-bin = %{epoch}:20210325-%{release} -Provides: tex-pdftex-quiet-bin = %{epoch}:20210325-%{release} -License: GPLv3 -Summary: Bash utility to reduce the output of the pdftex command -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-pdftex +Requires: tex-graphics-def +Requires: texlive-cm +Requires: texlive-dehyph +Requires: texlive-etex +Requires: texlive-hyph-utf8 +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: tex-tex-ini-files +Provides: tex(dummy-space.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(glyphtounicode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdftex-dvi.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-pdftex +An extension of TeX which can directly generate PDF documents +as well as DVI output. All current free TeX distributions +including TeX Live, MacTeX and MiKTeX include pdfTeX (Plain +TeX) and pdfLaTeX (LaTeX), among many other formats based on +the pdfTeX engine. + +%package -n %{shortname}-pdftex-quiet +Version: svn49169 +Provides: texlive-pdftex-quiet = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex-quiet = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-quiet-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex-quiet-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-only +Summary: Bash utility to reduce the output of the pdftex command +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex #bash BuildArch: noarch -%description -n texlive-pdftex-quiet +%description -n %{shortname}-pdftex-quiet This is a tool in BASH serving to reduce the output of `pdftex` command and see only relevant errors in red bold font to fight them ASAP. -%package -n texlive-pdftosrc -Provides: tex-pdftosrc = %{epoch}:20210325-%{release} -Provides: tex-pdftosrc-bin = %{epoch}:20210325-%{release} -Provides: texlive-pdftosrc-bin = %{epoch}:20210325-%{release} -License: GPLv2+ -Summary: Extract source file or stream from PDF file -Requires: texlive-base -Requires: texlive-kpathsea - -%description -n texlive-pdftosrc +%package -n %{shortname}-pdftosrc +Version: svn66186 +Provides: texlive-pdftosrc = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftosrc = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftosrc-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftosrc-bin = %{epoch}:%{source_date}-%{release} +License: GPL-2.0-or-later +Summary: Extract source file or stream from PDF file +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-pdftosrc Extracts an embedded source file, or extracts and uncompresses a PDF stream given by object number. Developed as part of the pdfTeX source tree. -%package -n texlive-pdfxup -Provides: tex-pdfxup = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-pdfxup-bin = %{epoch}:20210325-%{release} -Provides: tex-pdfxup-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfxup-bin < 7:20180414 -Provides: tex-pdfxup-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdfxup-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfxup-doc < 7:20180414 -Summary: Create n-up PDF pages with minimal margins -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pdfxup +%package -n %{shortname}-pdfxup +Version: svn59001 +Provides: texlive-pdfxup = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfxup = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfxup-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfxup-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfxup-bin < 7:20170520 +Provides: tex-pdfxup-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfxup-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfxup-doc < 7:20170520 +License: LPPL-1.3c +Summary: Create n-up PDF pages with minimal margins +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-pdfxup pdfxup is a unix/linux shell script that creates a PDF document where each page is obtained by combining several pages of a PDF file given as output. -%package -n texlive-pedigree-perl -Provides: tex-pedigree-perl = %{epoch}:20210325-%{release} -Provides: texlive-pedigree-perl-bin = %{epoch}:20210325-%{release} -Provides: tex-pedigree-perl-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pedigree-perl-bin < 7:20180414 -Provides: tex-pedigree-perl-doc = %{epoch}:20210325-%{release} -Provides: texlive-pedigree-perl-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pedigree-perl-doc < 7:20180414 -License: GPLv2+ -Summary: Generate TeX pedigree files from CSV files -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pedigree-perl +%package -n %{shortname}-pedigree-perl +Version: svn64227 +Provides: texlive-pedigree-perl = %{epoch}:%{source_date}-%{release} +Provides: tex-pedigree-perl = %{epoch}:%{source_date}-%{release} +Provides: texlive-pedigree-perl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pedigree-perl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pedigree-perl-bin < 7:20170520 +Provides: tex-pedigree-perl-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pedigree-perl-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pedigree-perl-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Generate TeX pedigree files from CSV files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pedigree-perl This program generates TeX commands to typeset pedigrees -- either TeX fragments or full LaTeX files, to be processed by the authors' pst-pdgr package. The program has support for multilanguage pedigrees (at the present moment the English and Russian languages are supported). -%package -n texlive-perltex -Provides: tex-perltex = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-perltex-bin = %{epoch}:20210325-%{release} -Provides: tex-perltex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-perltex-bin < 7:20180414 -Provides: tex-perltex-doc = %{epoch}:20210325-%{release} -Provides: texlive-perltex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-perltex-doc < 7:20180414 -Summary: Define LaTeX macros in terms of Perl code -Requires: texlive-base texlive-kpathsea -Provides: tex(perltex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-perltex +%package -n %{shortname}-perltex +Version: svn52162 +Provides: texlive-perltex = %{epoch}:%{source_date}-%{release} +Provides: tex-perltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-perltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-perltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-perltex-bin < 7:20170520 +Provides: tex-perltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-perltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-perltex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Define LaTeX macros in terms of Perl code +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(perltex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-perltex PerlTeX is a combination Perl script (perltex.pl) and LaTeX2e package (perltex.sty) that, together, give the user the ability to define LaTeX macros in terms of Perl code. Once defined, a @@ -4425,51 +6086,60 @@ provided is a switch to generate a PerlTeX-free, document- specific, noperltex.sty that is useful when distributing a document to places where PerlTeX is not available. -%package -n texlive-petri-nets -Provides: tex-petri-nets = %{epoch}:20210325-%{release} -Provides: texlive-petri-nets-bin = %{epoch}:20210325-%{release} -Provides: tex-petri-nets-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-petri-nets-bin < 7:20180414 -Provides: tex-petri-nets-doc = %{epoch}:20210325-%{release} -Provides: texlive-petri-nets-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-petri-nets-doc < 7:20180414 -License: GPL+ -Summary: A set of TeX/LaTeX packages for drawing Petri nets -Requires: texlive-base texlive-kpathsea -Provides: tex(pndraw.sty) = %{epoch}:20210325-%{release} -Provides: tex(pndraw.tex) = %{epoch}:20210325-%{release} -Provides: tex(pnets.sty) = %{epoch}:20210325-%{release} -Provides: tex(pnets.tex) = %{epoch}:20210325-%{release} -Provides: tex(pntext.sty) = %{epoch}:20210325-%{release} -Provides: tex(pntext.tex) = %{epoch}:20210325-%{release} -Provides: tex(pnversion.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-petri-nets +%package -n %{shortname}-petri-nets +Version: svn39165 +Provides: texlive-petri-nets = %{epoch}:%{source_date}-%{release} +Provides: tex-petri-nets = %{epoch}:%{source_date}-%{release} +Provides: texlive-petri-nets-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-petri-nets-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-petri-nets-bin < 7:20170520 +Provides: tex-petri-nets-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-petri-nets-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-petri-nets-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: A set of TeX/LaTeX packages for drawing Petri nets +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(pndraw.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pndraw.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnets.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnets.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pntext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pntext.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnversion.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-petri-nets Petri-nets offers a set of TeX/LaTeX packages about Petri nets and related models. Three packages are available: the first allows the user to draw Petri-nets in PostScript documents; the second defines macros related to PBC, M-nets and B(PN) models; and a third that combines the other two. -%package -n texlive-pfarrei -Provides: tex-pfarrei = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-pfarrei-bin = %{epoch}:20210325-%{release} -Provides: tex-pfarrei-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pfarrei-bin < 7:20180414 -Provides: tex-pfarrei-doc = %{epoch}:20210325-%{release} -Provides: texlive-pfarrei-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pfarrei-doc < 7:20180414 -Summary: LaTeX support of pastors' and priests' work -Requires: texlive-base texlive-kpathsea -Requires: tex(ifpdf.sty) tex(pdfpages.sty) -Requires: tex(keyval.sty) -Provides: tex(a5toa4.tex) = %{epoch}:20210325-%{release} -Provides: tex(pfarrei.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pfarrei +%package -n %{shortname}-pfarrei +Version: svn31934 +Provides: texlive-pfarrei = %{epoch}:%{source_date}-%{release} +Provides: tex-pfarrei = %{epoch}:%{source_date}-%{release} +Provides: texlive-pfarrei-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pfarrei-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pfarrei-bin < 7:20170520 +Provides: tex-pfarrei-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pfarrei-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pfarrei-doc < 7:20170520 +License: LPPL-1.3c +Summary: LaTeX support of pastors' and priests' work +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifpdf.sty) +Requires: tex(pdfpages.sty) +Requires: tex(keyval.sty) +Provides: tex(a5toa4.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pfarrei.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-pfarrei In "Die TeXnische Komodie" (issue 1/2013) Christian Justen described his use of LaTeX in his work as priest (similar requirements may be encountered in the work of pastors and @@ -4478,37 +6148,46 @@ onto A4 landscape paper, either side-by-side or as a booklet. Justen made two bash scripts for this job; the package provides one texlua script for both requirements. -%package -n texlive-pkfix -Provides: tex-pkfix = %{epoch}:20210325-%{release} -License: LPPL-1.3a -Provides: tex-pkfix-bin = %{epoch}:20210325-%{release} -Provides: texlive-pkfix-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pkfix-bin < 7:20180414 -Provides: tex-pkfix-doc = %{epoch}:20210325-%{release} -Provides: texlive-pkfix-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pkfix-doc < 7:20180414 -Summary: Replace pk fonts in PostScript with Type 1 fonts -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pkfix +%package -n %{shortname}-pkfix +Version: svn26032 +Provides: texlive-pkfix = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-bin < 7:20170520 +Provides: tex-pkfix-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-doc < 7:20170520 +License: LPPL-1.3c +Summary: Replace pk fonts in PostScript with Type 1 fonts +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pkfix The perl script pkfix looks for DVIPSBitmapFont comments in PostScript files, generated by 'not too old' dvips, and replaces them by type 1 versions of the fonts, if possible. -%package -n texlive-pkfix-helper -Provides: tex-pkfix-helper = %{epoch}:20210325-%{release} -Provides: tex-pkfix-helper-bin = %{epoch}:20210325-%{release} -Provides: texlive-pkfix-helper-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pkfix-helper-bin < 7:20180414 -Provides: tex-pkfix-helper-doc = %{epoch}:20210325-%{release} -Provides: texlive-pkfix-helper-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pkfix-helper-doc < 7:20180414 -Summary: Make PostScript files accessible to pkfix -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pkfix-helper +%package -n %{shortname}-pkfix-helper +Version: svn56061 +Provides: texlive-pkfix-helper = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix-helper = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix-helper-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-helper-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-helper-bin < 7:20170520 +Provides: tex-pkfix-helper-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-helper-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-helper-doc < 7:20170520 +License: LPPL-1.3c +Summary: Make PostScript files accessible to pkfix +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pkfix-helper Pkfix is a useful utility for replacing resolution-dependent bitmapped fonts in a dvips-produced PostScript file with the corresponding resolution-independent vector fonts. @@ -4522,61 +6201,70 @@ processing by pkfix. pkfix-helper can sometimes process documents fully autonomously but does require the user to verify and, if needed, correct its decisions. -%package -n texlive-pmx -Provides: tex-pmx = %{epoch}:20210325-%{release} tex-pmx-bin = %{epoch}:20210325-%{release} -Provides: texlive-pmx-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pmx-bin < 7:20180414 -Provides: tex-pmx-doc = %{epoch}:20210325-%{release} -Provides: texlive-pmx-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pmx-doc < 7:20180414 -License: GPLv2+ -Summary: Preprocessor for MusiXTeX -Requires: texlive-base texlive-kpathsea -Provides: tex(pmx.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-pmx -PMX is a preprocessor for MusiXTeX. It builds the TeX input -file from a file in a much simpler language, making most of the -layout decisions by itself. An auxiliary program makes single- -player parts from a multi-player score. For proof-listening, -PMX can make a MIDI file of your score. The present version -requires at least version 1.15 of MusiXTeX, running on an e-tex- -enhanced TeX system. - -%package -n texlive-pmxchords -Provides: tex-pmxchords = %{epoch}:20210325-%{release} -Provides: tex-pmxchords-bin = %{epoch}:20210325-%{release} -Provides: texlive-pmxchords-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pmxchords-bin < 7:20180414 -Provides: tex-pmxchords-doc = %{epoch}:20210325-%{release} -Provides: texlive-pmxchords-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pmxchords-doc < 7:20180414 -License: GPLv2+ -Summary: Produce chord information to go with pmx output -Requires: texlive-base texlive-kpathsea -Provides: tex(chords.tex) = %{epoch}:20210325-%{release} -Provides: tex(chordsCZ.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pmxchords +%package -n %{shortname}-pmx +Version: svn65926 +Provides: texlive-pmx = %{epoch}:%{source_date}-%{release} +Provides: tex-pmx = %{epoch}:%{source_date}-%{release} +Provides: tex-pmx-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmx-bin < 7:20170520 +Provides: tex-pmx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmx-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Preprocessor for MusiXTeX +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(pmx.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-pmx +PMX provides a preprocessor for MusiXTeX. pmxab builds a TeX +input file based on a .pmx input file in a much simpler +language, making most of the layout decisions by itself. It has +most of MusiXTeX's functionality, but it also permits in-line +TeX to give access to virtually all of MusiXTeX. For +proof-listening, pmxab will make a MIDI file of your score. +scor2prt is an auxiliary program that makes parts from a score. + +%package -n %{shortname}-pmxchords +Version: svn39249 +Provides: texlive-pmxchords = %{epoch}:%{source_date}-%{release} +Provides: tex-pmxchords = %{epoch}:%{source_date}-%{release} +Provides: tex-pmxchords-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmxchords-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmxchords-bin < 7:20170520 +Provides: tex-pmxchords-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmxchords-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmxchords-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Produce chord information to go with pmx output +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(chords.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chordsCZ.tex) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-pmxchords The bundle supplements pmx, providing the means of typesetting chords above the notes of a score. The bundle contains: macros for typing the chords; a Lua script to transpose chord macros to the required key signature; and support scripts for common requirements. -# No psutils for you today! -%if 0 -%package -n texlive-psutils -Provides: tex-psutils = %{epoch}:20210325-%{release} -Provides: tex-psutils-bin = %{epoch}:20210325-%{release} -Provides: texlive-psutils-bin = %{epoch}:20210325-%{release} -License: psutils -Summary: The TeXLive fork of the PS Utilities -Requires: texlive-base -Requires: texlive-kpathsea - -%description -n texlive-psutils +%if %{without psutils} +%package -n %{shortname}-psutils +Version: svn61719 +Provides: texlive-psutils = %{epoch}:%{source_date}-%{release} +Provides: tex-psutils = %{epoch}:%{source_date}-%{release} +Provides: tex-psutils-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-psutils-bin = %{epoch}:%{source_date}-%{release} +License: psutils +Summary: The TeXLive fork of the PS Utilities +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-psutils Utilities for manipulating PostScript documents. Page selection and rearrangement are supported, including arrangement into signatures for booklet printing, and page merging for n-up printing. @@ -4585,20 +6273,24 @@ This package contains a fork of the psutils binaries adjusted for TexLive. All of the standard binaries have been namespaced with a "tl-" prefix. %endif -%package -n texlive-pst2pdf -Provides: tex-pst2pdf = %{epoch}:20210325-%{release} -Provides: tex-pst2pdf-bin = %{epoch}:20210325-%{release} -Provides: texlive-pst2pdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pst2pdf-bin < 7:20180414 -Provides: tex-pst2pdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-pst2pdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pst2pdf-doc < 7:20180414 -License: GPLv2+ -Summary: A script to compile pstricks documents via pdftex -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pst2pdf +%package -n %{shortname}-pst2pdf +Version: svn56172 +Provides: texlive-pst2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst2pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst2pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst2pdf-bin < 7:20170520 +Provides: tex-pst2pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst2pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst2pdf-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: A script to compile pstricks documents via pdftex +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pst2pdf The script extracts the preamble of the document and runs all \begin{postscript}...\end{postscript} \begin{pspicture}...\end{pspicture} and @@ -4608,22 +6300,31 @@ PNG and PDF files of these snippets. In a final PDFLaTeX run the script replaces the environments with \includegraphics to include the processed snippets. -%package -n texlive-pst-pdf -Provides: tex-pst-pdf = %{epoch}:20210325-%{release} -Provides: tex-pst-pdf-bin = %{epoch}:20210325-%{release} -Provides: texlive-pst-pdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pst-pdf-bin < 7:20180414 -Provides: tex-pst-pdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-pst-pdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pst-pdf-doc < 7:20180414 -Summary: Make PDF versions of graphics by processing between runs -Requires: texlive-base texlive-kpathsea -Requires: tex(graphicx.sty) tex(pstricks.sty) -Requires: tex(environ.sty) -Provides: tex(pst-pdf.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pst-pdf +%package -n %{shortname}-pst-pdf +Version: svn56622 +Provides: texlive-pst-pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst-pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst-pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst-pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst-pdf-bin < 7:20170520 +Provides: tex-pst-pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst-pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst-pdf-doc < 7:20170520 +License: LPPL-1.3c +Summary: Make PDF versions of graphics by processing between runs +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(graphicx.sty) +Requires: tex(pstricks.sty) +Requires: tex(environ.sty) +Requires: tex(preview.sty) +Requires: texlive-iftex +Requires: tex(luatex85.sty) +Provides: tex(pst-pdf.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-pst-pdf The package pst-pdf simplifies the use of graphics from PSTricks and other PostScript code in PDF documents. As in building a bibliography with BibTEX, additional external @@ -4633,14 +6334,16 @@ material. In the final document these contents will be inserted instead of the original PostScript code. The package works with pstricks and requires a recent version of the preview package. -%package -n texlive-ps2eps -Provides: tex-ps2eps = %{epoch}:20210325-%{release} -License: GPL+ -Summary: Produce Encapsulated PostScript from PostScript -Requires: texlive-base -Requires: texlive-kpathsea +%package -n %{shortname}-ps2eps +Version: svn62856 +Provides: texlive-ps2eps = %{epoch}:%{source_date}-%{release} +Provides: tex-ps2eps = %{epoch}:%{source_date}-%{release} +License: GPL-1.0-or-later +Summary: Produce Encapsulated PostScript from PostScript +Requires: texlive-base +Requires: texlive-kpathsea -%description -n texlive-ps2eps +%description -n %{shortname}-ps2eps Produce Encapsulated PostScript Files (EPS/EPSF) from a one-page PostScript document, or any PostScript document. A correct Bounding Box is calculated for the EPS files and some @@ -4657,77 +6360,306 @@ dpi to get the correct bounding box. Included in the distribution is the bbox program, an application to produce Bounding Box values for rawppm or rawpbm format files. -%package -n texlive-ps2pk -Provides: tex-ps2pk = %{epoch}:20210325-%{release} -Provides: tex-ps2pk-bin = %{epoch}:20210325-%{release} -Provides: texlive-ps2pk-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ps2pk-bin < 7:20180414 -Provides: texlive-ps2pkm = %{epoch}:20210325-%{release} -Obsoletes: texlive-ps2pkm < 7:20180414 -Provides: texlive-ps2pkm-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ps2pkm-bin < 7:20180414 -License: MIT -Summary: Generate a PK font from an Adobe Type 1 font -Requires: texlive-base texlive-kpathsea - -%description -n texlive-ps2pk +%package -n %{shortname}-ps2pk +Version: svn66186 +Provides: texlive-ps2pk = %{epoch}:%{source_date}-%{release} +Provides: tex-ps2pk = %{epoch}:%{source_date}-%{release} +Provides: tex-ps2pk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ps2pk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pk-bin < 7:20170520 +Provides: texlive-ps2pkm = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pkm < 7:20170520 +Provides: texlive-ps2pkm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pkm-bin < 7:20170520 +License: MIT +Summary: Generate a PK font from an Adobe Type 1 font +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-ps2pk Generates a PK file from an Adobe Type 1 font. PK fonts are (or used to be) valuable in enabling previewers to view documents generated that use Type 1 fonts. The program makes use of code donated to the X consortium by IBM. -%package -n texlive-ptex -Provides: tex-ptex = %{epoch}:20210325-%{release} tex-ptex-bin = %{epoch}:20210325-%{release} -Provides: texlive-ptex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex-bin < 7:20180414 -Provides: tex-ptex-doc = %{epoch}:20210325-%{release} -Provides: texlive-ptex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex-doc < 7:20180414 -Provides: texlive-platex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-platex-bin < 7:20180414 -License: BSD -Summary: A TeX system for publishing in Japanese -Requires: texlive-adobemapping texlive-base texlive-cm -Requires: texlive-hyph-utf8 texlive-ipaex texlive-etex -Requires: texlive-japanese texlive-japanese-otf texlive-hyphen-base -Requires: texlive-kpathsea texlive-latex -Requires: texlive-ptex-base texlive-ptex-fonts -Requires: texlive-plain texlive-tex -Requires: tex(oldlfont.sty) tex(shortvrb.sty) +%package -n %{shortname}-ptex +Version: svn66186 +Provides: texlive-ptex = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-bin < 7:20170520 +Provides: tex-ptex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-doc < 7:20170520 +Provides: texlive-platex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-platex-bin < 7:20170520 +License: BSD-3-Clause +Summary: A TeX system for publishing in Japanese +Requires: texlive-adobemapping +Requires: texlive-base +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-hyph-utf8 +Requires: texlive-ipaex +Requires: texlive-japanese-otf +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-plain +Requires: texlive-ptex-base +Requires: texlive-ptex-fonts +Requires: texlive-tex +Requires: tex(oldlfont.sty) +Requires: tex(shortvrb.sty) Requires(post,postun): coreutils -Provides: tex(morisawa.map) = %{epoch}:20210325-%{release} -%description -n texlive-ptex +%description -n %{shortname}-ptex PTeX adds features related to vertical writing, and deals with -other problems in typesetting Japanese. A set of additions to a -TEXMF tree, for use with PTeX, may be found in package PTeX- -texmf. PTeX is distributed as WEB change files. - -%package -n texlive-ptex-fontmaps -Provides: tex-ptex-fontmaps = %{epoch}:20210325-%{release} -Provides: tex-ptex-fontmaps = %{epoch}:20210325-%{release} -Provides: texlive-ptex-fontmaps-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex-fontmaps-bin < 7:20180414 -Provides: tex-ptex-fontmaps-doc = %{epoch}:20210325-%{release} -Provides: texlive-ptex-fontmaps-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex-fontmaps-doc < 7:20180414 -Provides: tex-jfontmaps = %{epoch}:20210325-%{release} -Provides: texlive-jfontmaps = %{epoch}:20210325-%{release} -Obsoletes: texlive-jfontmaps <= 6:svn40613 -Provides: tex-jfontmaps-bin = %{epoch}:20210325-%{release} -Provides: texlive-jfontmaps-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-jfontmaps-bin <= 6:svn29848.0 -Provides: tex-jfontmaps-doc = %{epoch}:20210325-%{release} -Provides: texlive-jfontmaps-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-jfontmaps-doc <= 6:svn40613 -License: GPLv3 -Summary: Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex -Requires: texlive-arphic-ttf texlive-baekmuk -Requires: texlive-base texlive-ipaex -Requires: texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ptex-fontmaps +other problems in typesetting Japanese. A manual (in both +Japanese and English) is distributed as package pTeX-manual. + +%package -n %{shortname}-ptex-fontmaps +Version: svn65953 +Provides: texlive-ptex-fontmaps = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex-fontmaps = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex-fontmaps = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-fontmaps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-fontmaps-bin < 7:20170520 +Provides: tex-ptex-fontmaps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-fontmaps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-fontmaps-doc < 7:20170520 +Provides: tex-jfontmaps = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps <= 6:svn40613 +Provides: tex-jfontmaps-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps-bin <= 6:svn29848.0 +Provides: tex-jfontmaps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps-doc <= 6:svn40613 +License: GPL-3.0-only +Summary: Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex +Requires: texlive-arphic-ttf +Requires: texlive-baekmuk +Requires: texlive-base +Requires: texlive-ipaex +Requires: texlive-kpathsea +Provides: tex(otf-bizud.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-canon.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-hiragino-pron.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-hiragino.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ipa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ipaex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-apple.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-baekmuk.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-solaris.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-unfonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-kozuka-pr6.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-kozuka-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-kozuka.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-moga-mobo-ex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-moga-mobo.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-morisawa-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-morisawa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-arphic.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-cjkunifonts-ttf.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-cjkunifonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-fandol.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-founder.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-arphic.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-cjkunifonts-ttf.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-cjkunifonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-dynacomware.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-ms-win10.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ume.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-bizud.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-canon.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-hiragino-pron.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-hiragino.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-ipa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-ipaex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-kozuka-pr6.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-kozuka-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-kozuka.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-moga-mobo-ex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-moga-mobo.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-morisawa-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-morisawa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-ume.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-yu-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-yu-win.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-yu-win10.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-yu-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-yu-win.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-yu-win10.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-bizud.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-canon.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-haranoaji-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-hiragino-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-hiragino-pron-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-hiragino-pron.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-hiragino.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-ipa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-ipaex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka-pr6-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka-pr6.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka-pr6n-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-moga-mobo-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-moga-mobo-ex-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-moga-mobo-ex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-moga-mobo.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-morisawa-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-morisawa-pr6n-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-morisawa-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-morisawa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noEmbed-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noto-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noto-otc-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-sourcehan-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-sourcehan-otc-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-ume.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-yu-osx-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-yu-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-yu-win.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-yu-win10.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-bizud.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-canon.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-haranoaji-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-hiragino-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-hiragino-pron-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-hiragino-pron.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-hiragino.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ipa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ipaex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-apple.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-baekmuk.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-solaris.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-unfonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka-pr6-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka-pr6.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka-pr6n-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-moga-mobo-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-moga-mobo-ex-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-moga-mobo-ex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-moga-mobo.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-morisawa-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-morisawa-pr6n-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-morisawa-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-morisawa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noEmbed-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noto-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noto-otc-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-arphic.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-cjkunifonts-ttf.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-cjkunifonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-fandol.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-founder.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sourcehan-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sourcehan-otc-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-arphic.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-cjkunifonts-ttf.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-cjkunifonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-dynacomware.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-ms-win10.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ume.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-yu-osx-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-yu-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-yu-win.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-yu-win10.map) = %{epoch}:%{source_date}-%{release} +# shell and perl +BuildArch: noarch + +%description -n %{shortname}-ptex-fontmaps This package provides font maps and setup tools for Japanese, Korean, Traditional Chinese, and Simplified Chinese. It is the successor of the jfontmaps package. The files in this package @@ -4735,39 +6667,48 @@ contain font maps for dvipdfmx to make various Japanese/Chinese/Korean fonts available for (u)ptex and related programs and formats. -%package -n texlive-ptex2pdf -Provides: tex-ptex2pdf = %{epoch}:20210325-%{release} -Provides: tex-ptex2pdf-bin = %{epoch}:20210325-%{release} -Provides: texlive-ptex2pdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex2pdf-bin < 7:20180414 -Provides: tex-ptex2pdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-ptex2pdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex2pdf-doc < 7:20180414 -License: GPLv2+ -Summary: Convert Japanese TeX documents to PDF -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ptex2pdf +%package -n %{shortname}-ptex2pdf +Version: svn65953 +Provides: texlive-ptex2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex2pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex2pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex2pdf-bin < 7:20170520 +Provides: tex-ptex2pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex2pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex2pdf-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Convert Japanese TeX documents to PDF +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-ptex2pdf The Lua script provides system-independent support of Japanese typesetting engines in TeXworks. As TeXworks typesetting setup does not allow for multistep processing, this script runs one of the ptex-based programs (ptex, uptex, eptex, platex, uplatex) followed by dvipdfmx. -%package -n texlive-purifyeps -Provides: tex-purifyeps = %{epoch}:20210325-%{release} -Provides: tex-purifyeps-bin = %{epoch}:20210325-%{release} -Provides: texlive-purifyeps-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-purifyeps-bin < 7:20180414 -Provides: tex-purifyeps-doc = %{epoch}:20210325-%{release} -Provides: texlive-purifyeps-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-purifyeps-doc < 7:20180414 -Summary: Make EPS work with both LaTeX/dvips and pdfLaTeX -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-purifyeps +%package -n %{shortname}-purifyeps +Version: svn29725 +Provides: texlive-purifyeps = %{epoch}:%{source_date}-%{release} +Provides: tex-purifyeps = %{epoch}:%{source_date}-%{release} +Provides: tex-purifyeps-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-purifyeps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-purifyeps-bin < 7:20170520 +Provides: tex-purifyeps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-purifyeps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-purifyeps-doc < 7:20170520 +License: LPPL-1.3c +Summary: Make EPS work with both LaTeX/dvips and pdfLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-purifyeps While pdfLaTeX has a number of nice features, its primary shortcoming relative to standard LaTeX+dvips is that it is unable to read ordinary Encapsulated PostScript (EPS) files, @@ -4778,51 +6719,69 @@ LaTeX2e graphics packages can parse MetaPost-produced EPS directly. Hence, purifyeps need only convert an arbitrary EPS file into the same stylized format that MetaPost outputs. -%package -n texlive-pygmentex -Provides: tex-pygmentex = %{epoch}:20210325-%{release} -License: BSD-3-Clause -Provides: tex-pygmentex-bin = %{epoch}:20210325-%{release} -Provides: texlive-pygmentex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pygmentex-bin < 7:20180414 -Provides: tex-pygmentex-doc = %{epoch}:20210325-%{release} -Provides: texlive-pygmentex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pythontex-doc < 7:20180414 -Summary: Use Pygments to format code listings in documents -Requires: texlive-base texlive-kpathsea -Requires: tex(fancyvrb.sty) tex(color.sty) -Requires: tex(ifthen.sty) tex(caption.sty) -Requires: tex(pgfkeys.sty) tex(efbox.sty) -Requires: tex(mdframed.sty) tex(fvextra.sty) -Provides: tex(pygmentex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pygmentex +%package -n %{shortname}-pygmentex +Version: svn64131 +Provides: texlive-pygmentex = %{epoch}:%{source_date}-%{release} +Provides: tex-pygmentex = %{epoch}:%{source_date}-%{release} +Provides: tex-pygmentex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pygmentex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pygmentex-bin < 7:20170520 +Provides: tex-pygmentex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pygmentex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Use Pygments to format code listings in documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyvrb.sty) +Requires: tex(color.sty) +Requires: tex(ifthen.sty) +Requires: tex(caption.sty) +Requires: tex(pgfkeys.sty) +Requires: tex(efbox.sty) +Requires: tex(mdframed.sty) +Requires: tex(fvextra.sty) +Requires: tex(shellesc.sty) +Provides: tex(pygmentex.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-pygmentex PygmenTeX is a Python-based LaTeX package that can be used for typesetting code listings in a LaTeX document using Pygments. Pygments is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that need to prettify source code. -%package -n texlive-pythontex -Provides: tex-pythontex = %{epoch}:20210325-%{release} -License: BSD-3-Clause and LPPL-1.3c -Provides: tex-pythontex-bin = %{epoch}:20210325-%{release} -Provides: texlive-pythontex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pythontex-bin < 7:20180414 -Provides: tex-pythontex-doc = %{epoch}:20210325-%{release} -Provides: texlive-pythontex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pythontex-doc < 7:20180414 -Summary: Run Python from within a document, typesetting the results -Requires: texlive-base texlive-kpathsea -Requires: tex(fancyvrb.sty) tex(etex.sty) -Requires: tex(etoolbox.sty) tex(xstring.sty) -Requires: tex(pgfopts.sty) tex(newfloat.sty) -Requires: tex(currfile.sty) tex(xcolor.sty) -Requires: tex(upquote.sty) -Provides: tex(pythontex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pythontex +%package -n %{shortname}-pythontex +Version: svn59514 +Provides: texlive-pythontex = %{epoch}:%{source_date}-%{release} +Provides: tex-pythontex = %{epoch}:%{source_date}-%{release} +Provides: tex-pythontex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pythontex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-bin < 7:20170520 +Provides: tex-pythontex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pythontex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Run Python from within a document, typesetting the results +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyvrb.sty) +Requires: tex(etex.sty) +Requires: tex(etoolbox.sty) +Requires: tex(xstring.sty) +Requires: tex(pgfopts.sty) +Requires: tex(newfloat.sty) +Requires: tex(currfile.sty) +Requires: tex(xcolor.sty) +Requires: tex(upquote.sty) +Requires: tex(fvextra.sty) +Provides: tex(pythontex.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-pythontex The package allows you to enter Python code within a LaTeX document, execute the code, and access its output in the original document. Python code is only executed when it has @@ -4839,39 +6798,51 @@ which all Python code has been replaced by its output. This is useful for journal submissions, sharing documents, and conversion to other formats. -%package -n texlive-rubik -Provides: tex-rubik = %{epoch}:20210325-%{release} -License: LPPL-1.3c and GPL-1.0-or-later -Provides: tex-rubik-bin = %{epoch}:20210325-%{release} -Provides: texlive-rubik-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-rubik-bin < 7:20180414 -Provides: tex-rubik-doc = %{epoch}:20210325-%{release} -Provides: texlive-rubik-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-rubik-doc < 7:20180414 -Summary: Document Rubik cube configurations and rotation sequences -Requires: texlive-base texlive-kpathsea -Requires: tex(tikz.sty) tex(fancyvrb.sty) -Provides: tex(rubikcube.sty) = %{epoch}:20210325-%{release} -Provides: tex(rubikrotation.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-rubik +%package -n %{shortname}-rubik +Version: svn46791 +Provides: texlive-rubik = %{epoch}:%{source_date}-%{release} +Provides: tex-rubik = %{epoch}:%{source_date}-%{release} +Provides: tex-rubik-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-rubik-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-rubik-bin < 7:20170520 +Provides: tex-rubik-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-rubik-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-rubik-doc < 7:20170520 +License: LPPL-1.3c +Summary: Document Rubik cube configurations and rotation sequences +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyvrb.sty) +Requires: tex(forarray.sty) +Requires: tex(ifluatex.sty) +Requires: tex(ifthen.sty) +Requires: tex(shellesc.sty) +Requires: tex(tikz.sty) +Provides: tex(rubikcube.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rubikrotation.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-rubik The bundle provides two packages: rubikcube provides commands for typesetting Rubik cubes and their transformations; and rubikrotation which can process a sequence of Rubik rotation moves, with the help of a Perl package executed via \write18 (shell escape) commands. -%package -n texlive-seetexk -Provides: tex-seetexk = %{epoch}:20210325-%{release} -Provides: tex-seetexk-bin = %{epoch}:20210325-%{release} -Provides: texlive-seetexk-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-seetexk-bin < 7:20180414 -License: MIT -Summary: Utilities for manipulating DVI files -Requires: texlive-base texlive-kpathsea - -%description -n texlive-seetexk +%package -n %{shortname}-seetexk +Version: svn57972 +Provides: texlive-seetexk = %{epoch}:%{source_date}-%{release} +Provides: tex-seetexk = %{epoch}:%{source_date}-%{release} +Provides: tex-seetexk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-seetexk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-seetexk-bin < 7:20170520 +License: MIT +Summary: Utilities for manipulating DVI files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-seetexk The collection comprises: dvibook, which will rearrange the pages of a DVI file into 'signatures' as used when printing a book; dviconcat, for concatenating pages of DVI file(s); @@ -4882,12 +6853,14 @@ manipulating the files, from the old SeeTeX project. The utilities are provided as C source with Imakefiles, and an MS- DOS version of dvibook is also provided. -%package -n texlive-spix -Summary: Yet another TeX compilation tool: simple, human readable, no option, no magic -License: GPLv3+ -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-spix +Version: svn65050 +Provides: texlive-spix = %{epoch}:%{source_date}-%{release} +Summary: Yet another TeX compilation tool: simple, human readable, no option, no magic +License: GPL-3.0-or-later +Requires: texlive-base texlive-kpathsea -%description -n texlive-spix +%description -n %{shortname}-spix SpiX offers a way to store information about the compilation process for a tex file inside the tex file itself. Just write the commands as comments in the tex files, and SpiX will @@ -4896,22 +6869,26 @@ file (so that you are not missing some piece of information that is located somewhere else), in a human-readable format (no need to know SpiX to understand it). -%package -n texlive-splitindex -Provides: tex-splitindex = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tex-splitindex-bin = %{epoch}:20210325-%{release} -Provides: texlive-splitindex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-splitindex-bin < 7:20180414 -Provides: tex-splitindex-doc = %{epoch}:20210325-%{release} -Provides: texlive-splitindex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-splitindex-doc < 7:20180414 -Summary: Unlimited number of indexes -Requires: texlive-base texlive-kpathsea -Provides: tex(splitindex.tex) = %{epoch}:20210325-%{release} -Provides: tex(splitidx.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-splitindex +%package -n %{shortname}-splitindex +Version: svn39766 +Provides: texlive-splitindex = %{epoch}:%{source_date}-%{release} +Provides: tex-splitindex = %{epoch}:%{source_date}-%{release} +Provides: tex-splitindex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-splitindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-splitindex-bin < 7:20170520 +Provides: tex-splitindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-splitindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-splitindex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Unlimited number of indexes +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(splitindex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(splitidx.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-splitindex SplitIndex consists of a LaTeX package, splitidx, and a small program, splitindex. The package may be used to produce one index or several indexes. Without splitindex (for example, @@ -4922,20 +6899,24 @@ single file \jobname.idx and the program splits that file into several raw index files and calls your favorite index processor for each of the files. -%package -n texlive-srcredact -Provides: tex-srcredact = %{epoch}:20210325-%{release} -Provides: tex-srcredact-bin = %{epoch}:20210325-%{release} -Provides: texlive-srcredact-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-srcredact-bin < 7:20180414 -Provides: tex-srcredact-doc = %{epoch}:20210325-%{release} -Provides: texlive-srcredact-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-srcredact-doc < 7:20180414 -License: GPLv2+ -Summary: A tool for redacting sources -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-srcredact +%package -n %{shortname}-srcredact +Version: svn38710 +Provides: texlive-srcredact = %{epoch}:%{source_date}-%{release} +Provides: tex-srcredact = %{epoch}:%{source_date}-%{release} +Provides: tex-srcredact-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-srcredact-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-srcredact-bin < 7:20170520 +Provides: tex-srcredact-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-srcredact-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-srcredact-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: A tool for redacting sources +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-srcredact This package provides a tool to keep a master source, consisting of different "chunks" intended for different audiences. The tool allows to extract the versions intended for @@ -4944,20 +6925,24 @@ of these versions into the master document. This work was commissioned by the Consumer Financial Protection Bureau, United States Treasury. -%package -n texlive-sty2dtx -Provides: tex-sty2dtx = %{epoch}:20210325-%{release} -Provides: tex-sty2dtx-bin = %{epoch}:20210325-%{release} -Provides: texlive-sty2dtx-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-sty2dtx-bin < 7:20180414 -Provides: tex-sty2dtx-doc = %{epoch}:20210325-%{release} -Provides: texlive-sty2dtx-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-sty2dtx-doc < 7:20180414 -License: GPLv3+ -Summary: Create a .dtx file from a .sty file -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-sty2dtx +%package -n %{shortname}-sty2dtx +Version: svn64967 +Provides: texlive-sty2dtx = %{epoch}:%{source_date}-%{release} +Provides: tex-sty2dtx = %{epoch}:%{source_date}-%{release} +Provides: tex-sty2dtx-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-sty2dtx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-sty2dtx-bin < 7:20170520 +Provides: tex-sty2dtx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-sty2dtx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-sty2dtx-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Create a .dtx file from a .sty file +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-sty2dtx The package provides a Perl script that converts a .sty file (LaTeX package) to .dtx format (documented LaTeX source), by surrounding macro definitions with macro and macrocode @@ -4972,25 +6957,31 @@ file from 'dtxtut' is used. User level macros are added automatically to the 'Usage' section of the .dtx file. A corresponding .ins file can be generated as well. -%package -n texlive-svn-multi -Provides: tex-svn-multi = %{epoch}:20210325-%{release} -License: LPPL-1.3c and GPL-3.0-or-later and GPL-3.0-only -Provides: tex-svn-multi-bin = %{epoch}:20210325-%{release} -Provides: texlive-svn-multi-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-svn-multi-bin < 7:20180414 -Provides: tex-svn-multi-doc = %{epoch}:20210325-%{release} -Provides: texlive-svn-multi-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-svn-multi-doc < 7:20180414 -Summary: Subversion keywords in multi-file LaTeX documents -Requires: texlive-base texlive-kpathsea -Requires: tex(kvoptions.sty) tex(filehook.sty) -Requires: tex(currfile.sty) tex(graphics.sty) -Requires: tex(pgf.sty) -Provides: tex(svn-multi.sty) = %{epoch}:20210325-%{release} -Provides: tex(svnkw.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-svn-multi +%package -n %{shortname}-svn-multi +Version: svn64967 +Provides: texlive-svn-multi = %{epoch}:%{source_date}-%{release} +Provides: tex-svn-multi = %{epoch}:%{source_date}-%{release} +Provides: tex-svn-multi-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-svn-multi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-svn-multi-bin < 7:20170520 +Provides: tex-svn-multi-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-svn-multi-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-svn-multi-doc < 7:20170520 +License: LPPL-1.3c +Summary: Subversion keywords in multi-file LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(kvoptions.sty) +Requires: tex(filehook.sty) +Requires: tex(currfile.sty) +Requires: tex(graphics.sty) +Requires: tex(pgf.sty) +Provides: tex(svn-multi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(svnkw.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-svn-multi This package lets you typeset keywords of the version control system Subversion inside your LaTeX files anywhere you like. Unlike the otherwise similar package svn the use of multiple @@ -4999,29 +6990,42 @@ uses the author's filehook and currfile packages. The package interacts with an external Perl script, to retrieve information necessary for the required output. -%package -n texlive-synctex -Provides: tex-synctex = %{epoch}:20210325-%{release} -Provides: tex-synctex-bin = %{epoch}:20210325-%{release} -Provides: texlive-synctex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-synctex-bin < 7:20180414 -Summary: synctex package -Requires: texlive-base texlive-kpathsea - -%description -n texlive-synctex -synctex package. - -%package -n texlive-tex -Provides: tex-tex = %{epoch}:20210325-%{release} tex-tex-bin = %{epoch}:20210325-%{release} -Provides: texlive-tex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-tex-bin < 7:20180414 -License: GPL-3.0-or-later and GPL-3.0-only and OFL-1.1 and LPPL-1.3c and GPL-2.0-or-later -Summary: A sophisticated typesetting engine -Requires: texlive-base texlive-cm -Requires: texlive-hyphen-base texlive-knuth-lib -Requires: texlive-kpathsea texlive-plain +%package -n %{shortname}-synctex +Version: svn66203 +Provides: texlive-synctex = %{epoch}:%{source_date}-%{release} +Provides: tex-synctex = %{epoch}:%{source_date}-%{release} +Provides: tex-synctex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-synctex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-synctex-bin < 7:20170520 +License: LPPL-1.3c +Summary: engine-level feature synchronizing output and source +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-synctex +SyncTeX allows navigating between the TeX source and (usually +PDF) output, in both directions, given a SyncTeX-aware front +end. It is compiled into most engines and can be enabled with +the --synctex=1 option. It is developed as part of TeX Live. + +%package -n %{shortname}-tex +Version: svn66186 +Provides: texlive-tex = %{epoch}:%{source_date}-%{release} +Provides: tex-tex = %{epoch}:%{source_date}-%{release} +Provides: tex-tex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex-bin < 7:20170520 +License: Knuth-CTAN +Summary: A sophisticated typesetting engine +Requires: texlive-base +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-plain Requires(post,postun): coreutils -%description -n texlive-tex +%description -n %{shortname}-tex TeX is a typesetting system that incorporates a macro processor. A TeX source document specifies or incorporates a number of macro definitions that instruct the TeX engine how to @@ -5032,86 +7036,129 @@ suitable for TeX. TeX has been, and continues, a basis and an inspiration for several other programs, including e-TeX and PDFTeX. -%package -n texlive-tex4ebook -Provides: tex-tex4ebook = %{epoch}:20210325-%{release} -Provides: tex-tex4ebook-bin = %{epoch}:20210325-%{release} -Provides: texlive-tex4ebook-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-tex4ebook-bin < 7:20180414 -Provides: tex-tex4ebook-doc = %{epoch}:20210325-%{release} -Provides: texlive-tex4ebook-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-tex4ebook-doc < 7:20180414 -Summary: Convertor from LaTeX to ebook formats -Requires: texlive-base texlive-kpathsea -Requires: tex(etoolbox.sty) tex(kvoptions.sty) -Requires: tex(graphicx.sty) -Provides: tex(tex4ebook.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-tex4ebook +%package -n %{shortname}-tex4ebook +Version: svn66332 +Provides: texlive-tex4ebook = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ebook = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ebook-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ebook-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ebook-bin < 7:20170520 +Provides: tex-tex4ebook-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ebook-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ebook-doc < 7:20170520 +License: LPPL-1.3c +Summary: Convertor from LaTeX to ebook formats +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(etoolbox.sty) +Requires: tex(kvoptions.sty) +Requires: tex(graphicx.sty) +Requires: texlive-make4ht +Requires: texlive-tex4ht +Provides: tex(tex4ebook.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-tex4ebook This is a bundle of lua scripts and LaTeX packages for conversion of LaTeX files to ebook formats such as epub, mobi and epub3. tex4ht is used as conversion engine. -%package -n texlive-tex4ht -Provides: tex-tex4ht = %{epoch}:20210325-%{release} -License: LPPL-1.3a and LPPL-1.3c -Provides: tex-tex4ht-bin = %{epoch}:20210325-%{release} -Provides: texlive-tex4ht-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-tex4ht-bin < 7:20180414 -Provides: tex-tex4ht-doc = %{epoch}:20210325-%{release} -Provides: texlive-tex4ht-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-tex4ht-doc < 7:20180414 -Summary: Convert (La)TeX to HTML/XML -Requires: texlive-base texlive-kpathsea -Provides: tex(m-tex4ht.tex) = %{epoch}:20210325-%{release} -Provides: tex(tex4ht.sty) = %{epoch}:20210325-%{release} - -%description -n texlive-tex4ht +%package -n %{shortname}-tex4ht +Version: svn66530 +Provides: texlive-tex4ht = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ht = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ht-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ht-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ht-bin < 7:20170520 +Provides: tex-tex4ht-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ht-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ht-doc < 7:20170520 +License: LPPL-1.3c +Summary: Convert (La)TeX to HTML/XML +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(m-tex4ht.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex4ht.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-tex4ht A converter from TeX and LaTeX to SGML-based formats such as -(X)HTML, MathML, OpenDocument, and DocBook, providing a +(X)HTML, MathML, OpenDocument, and Docbook, providing a configurable (La)TeX-based authoring system for hypertext. -Tex4ht does not parse (La)TeX source (so that it avoids the -difficulties encountered by many other converters, arising from -the irregularity of (La)TeX syntax). Instead, Tex4ht uses -(La)TeX itself (with an extra macro package) to produce a non- -standard DVI file that it can then process. This technique -allows TeX4ht to approach the robustness characteristic of -restricted-syntax systems such as hyperlatex and gellmu. - -%package -n texlive-texcount -Provides: tex-texcount = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tex-texcount-bin = %{epoch}:20210325-%{release} -Provides: texlive-texcount-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texcount-bin < 7:20180414 -Provides: tex-texcount-doc = %{epoch}:20210325-%{release} -Provides: texlive-texcount-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texcount-doc < 7:20180414 -Summary: Count words in a LaTeX document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texcount +TeX4ht does not independently parse (La)TeX source (so it +avoids the difficulties encountered by many other converters, +arising from the irregularity of (La)TeX syntax). Instead, +TeX4ht uses (La)TeX itself (with myriad macro modifications) to +produce a helper DVI file that it can then process. This +technique allows TeX4ht to approach the robustness +characteristic of restricted-syntax systems such as gellmu. +Full releases of TeX4ht are no longer made, both because it is +technically difficult to do so and because their utility is +questionable. Nevertheless, TeX4ht is actively maintained. So, +current source files are held on CTAN, and updated from the +development repository frequently. Creating the myriad derived +files from them is nontrivial, and generally done with the +Makefile in development, from which the TeX4ht package in TeX +Live is updated. + +%if 0 +%package -n %{shortname}-texaccents +Summary: Convert composite accented characters to Unicode +Version: svn64447 +License: MIT +Requires: texlive-base texlive-kpathsea +Requires: snobol4 +# snobol4 +BuildArch: noarch + +%description -n %{shortname}-texaccents +This small utility, written in SNOBOL, converts the composition +of special characters to Unicode, e. g. \"{a} - a, \k{a} - a, +... +%endif + +%package -n %{shortname}-texcount +Version: svn49013 +Provides: texlive-texcount = %{epoch}:%{source_date}-%{release} +Provides: tex-texcount = %{epoch}:%{source_date}-%{release} +Provides: tex-texcount-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texcount-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texcount-bin < 7:20170520 +Provides: tex-texcount-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texcount-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texcount-doc < 7:20170520 +License: LPPL-1.3c +Summary: Count words in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texcount TeXcount is a Perl script that counts words in the text of LaTeX files. It has rules for handling most of the common macros, and can provide colour-coded output showing which parts of the text have been counted. The package script is available as a Web service via its home page. -%package -n texlive-texdef -Provides: tex-texdef = %{epoch}:20210325-%{release} -Provides: tex-texdef-bin = %{epoch}:20210325-%{release} -Provides: texlive-texdef-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdef-bin < 7:20180414 -Provides: tex-texdef-doc = %{epoch}:20210325-%{release} -Provides: texlive-texdef-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdef-doc < 7:20180414 -License: GPLv3+ -Summary: Display the definitions of TeX commands -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texdef +%package -n %{shortname}-texdef +Version: svn64967 +Provides: texlive-texdef = %{epoch}:%{source_date}-%{release} +Provides: tex-texdef = %{epoch}:%{source_date}-%{release} +Provides: tex-texdef-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdef-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdef-bin < 7:20170520 +Provides: tex-texdef-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdef-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdef-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Display the definitions of TeX commands +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdef The (Perl) script displays the definition of (La)TeX command sequences/macros. Various options allow the selection of the used class and package files and other things which can have @@ -5129,73 +7176,91 @@ including flavours (pdf(la)tex, lua(la)tex, xe(la)tex, ...). The flavour can be selected using an command line option or over the script name: latexdef will use LaTeX as default, etc. -%package -n texlive-texdiff -Provides: tex-texdiff = %{epoch}:20210325-%{release} -Provides: tex-texdiff-bin = %{epoch}:20210325-%{release} -Provides: texlive-texdiff-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdiff-bin < 7:20180414 -Provides: tex-texdiff-doc = %{epoch}:20210325-%{release} -Provides: texlive-texdiff-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdiff-doc < 7:20180414 -License: GPL+ or Artistic -Summary: Compares two (La)TeX documents to create a merged version showing changes -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texdiff +%package -n %{shortname}-texdiff +Version: svn29752 +Provides: texlive-texdiff = %{epoch}:%{source_date}-%{release} +Provides: tex-texdiff = %{epoch}:%{source_date}-%{release} +Provides: tex-texdiff-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdiff-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdiff-bin < 7:20170520 +Provides: tex-texdiff-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdiff-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdiff-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Compares two (La)TeX documents to create a merged version showing changes +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdiff Texdiff compares two (La)TeX documents to create a merged version showing changes, similar to that of 'Change Tracking' in some word processors. -%package -n texlive-texdirflatten -Provides: tex-texdirflatten = %{epoch}:20210325-%{release} -Provides: tex-texdirflatten-bin = %{epoch}:20210325-%{release} -Provides: texlive-texdirflatten-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdirflatten-bin < 7:20180414 -License: GPL+ or Artistic -Summary: Collect files related to a LaTeX job in a single directory -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texdirflatten +%package -n %{shortname}-texdirflatten +Version: svn55064 +Provides: texlive-texdirflatten = %{epoch}:%{source_date}-%{release} +Provides: tex-texdirflatten = %{epoch}:%{source_date}-%{release} +Provides: tex-texdirflatten-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdirflatten-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdirflatten-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Collect files related to a LaTeX job in a single directory +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdirflatten The Perl script parses a LaTeX file recursively, scanning all child files, and collects details of any included and other data files. These component files, are then all put into a single directory (thus "flattening" the document's directory tree). -%package -n texlive-texdoc -Provides: tex-texdoc = %{epoch}:20210325-%{release} -Provides: tex-texdoc-bin = %{epoch}:20210325-%{release} -Provides: texlive-texdoc-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdoc-bin < 7:20180414 -Provides: tex-texdoc-doc = %{epoch}:20210325-%{release} -Provides: texlive-texdoc-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdoc-doc < 7:20180414 -License: GPL+ -Summary: Documentation access for TeX distributions -Requires: texlive-base texlive-kpathsea -Provides: tex(texdoc.cnf) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-texdoc -TeXdoc is an application for easy access to the package -documentation of a TeX distributions (i.e., .dvi, .pdf or .ps -files on the $TEXDOCS tree). It is distributed with TeX-Live -and a derivative is distributed with miktex. - -%package -n texlive-texdoctk -Provides: tex-texdoctk = %{epoch}:20210325-%{release} -Provides: tex-texdoctk-bin = %{epoch}:20210325-%{release} -Provides: tex-texdoctk-doc = %{epoch}:20210325-%{release} -Provides: texlive-texdoctk-bin = %{epoch}:20210325-%{release} -Provides: texlive-texdoctk-doc = %{epoch}:20210325-%{release} -License: GPL+ -Summary: Easy access to package documentation -Requires: texlive-base texlive-kpathsea -Provides: tex(texdoctk.dat) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-texdoctk +%package -n %{shortname}-texdoc +Version: svn66227 +Provides: texlive-texdoc = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoc = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoc-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoc-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdoc-bin < 7:20170520 +Provides: tex-texdoc-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoc-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdoc-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Documentation access for TeX distributions +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(texdoc.cnf) = %{epoch}:%{source_date}-%{release} +# lua and perl +BuildArch: noarch + +%description -n %{shortname}-texdoc +texdoc is a Lua script providing easy access to the +documentation in TeX Live: PDF, DVI, plain text files, and +more. Viewing and other configuration can be extensively +customized. It is distributed with TeX Live; MiKTeX provides a +program by the same name to do the same job, but its +implementation is unrelated. + +%package -n %{shortname}-texdoctk +Version: svn62186 +Provides: texlive-texdoctk = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoctk = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoctk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoctk-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoctk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoctk-doc = %{epoch}:%{source_date}-%{release} +License: GPL-1.0-or-later +Summary: Easy access to package documentation +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(texdoctk.dat) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-texdoctk A Perl/Tk-based GUI for easy access to package documentation for TeX on Unix platforms; the databases it uses are based on the texmf/doc subtrees of teTeX, but database files for local @@ -5208,39 +7273,47 @@ these programs can be configured by the sysadmin or user. Now only distributed as part of TeX Live, which includes a Windows executable. -%package -n texlive-texfot -Provides: tex-texfot = %{epoch}:20210325-%{release} -Provides: tex-texfot-bin = %{epoch}:20210325-%{release} -Provides: texlive-texfot-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texfot-bin < 7:20180414 -Provides: tex-texfot-doc = %{epoch}:20210325-%{release} -Provides: texlive-texfot-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texfot-doc < 7:20180414 -License: Public Domain -Summary: Filter clutter from the output of a TeX run -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texfot +%package -n %{shortname}-texfot +Version: svn65545 +Provides: texlive-texfot = %{epoch}:%{source_date}-%{release} +Provides: tex-texfot = %{epoch}:%{source_date}-%{release} +Provides: tex-texfot-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texfot-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texfot-bin < 7:20170520 +Provides: tex-texfot-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texfot-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texfot-doc < 7:20170520 +License: LicenseRef-Fedora-Public-Domain +Summary: Filter clutter from the output of a TeX run +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texfot The package provides a small Perl script to filter the online output from a TeX run, attempting to show only those messages which probably deserve some change in the source. The TeX invocation itself need not change. -%package -n texlive-texliveonfly -Provides: tex-texliveonfly = %{epoch}:20210325-%{release} -Provides: tex-texliveonfly-bin = %{epoch}:20210325-%{release} -Provides: texlive-texliveonfly-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texliveonfly-bin < 7:20180414 -Provides: tex-texliveonfly-doc = %{epoch}:20210325-%{release} -Provides: texlive-texliveonfly-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texliveonfly-doc < 7:20180414 -License: GPLv3+ -Summary: On-the-fly download of missing TeX live packages -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texliveonfly +%package -n %{shortname}-texliveonfly +Version: svn55777 +Provides: texlive-texliveonfly = %{epoch}:%{source_date}-%{release} +Provides: tex-texliveonfly = %{epoch}:%{source_date}-%{release} +Provides: tex-texliveonfly-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texliveonfly-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texliveonfly-bin < 7:20170520 +Provides: tex-texliveonfly-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texliveonfly-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texliveonfly-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: On-the-fly download of missing TeX live packages +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-texliveonfly The package provides a script that performs 'on the fly' downloads of missing packages, while a document is being compiled. (This feature is already available in the MikTeX @@ -5250,107 +7323,188 @@ your (LaTeX) compilation command with texliveonfly.py file.tex synctex=1 -interaction=nonstopmode", which may all be changed). The script is designed to work on Linux distributions. -%package -n texlive-texlive-en -Provides: tex-texlive-en = %{epoch}:20210325-%{release} -Provides: tex-texlive-en-doc = %{epoch}:20210325-%{release} -Provides: texlive-texlive-en-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texlive-en-doc < 7:20180414 -Summary: TeX Live manual (English) -Requires: texlive-base texlive-kpathsea -BuildArch: noarch +%package -n %{shortname}-texlive-en +Version: svn66572 +Provides: texlive-texlive-en = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive-en = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive-en-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive-en-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive-en-doc < 7:20170520 +License: LPPL-1.3c +Summary: TeX Live manual (English) +Requires: texlive-base +Requires: texlive-kpathsea +BuildArch: noarch -%description -n texlive-texlive-en +%description -n %{shortname}-texlive-en TeX Live manual (English). -%package -n texlive-texlive-scripts -Provides: tex-texlive-scripts = %{epoch}:20210325-%{release} -Provides: texlive-texlive-scripts-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texlive-scripts-bin < 7:20180414 -License: GPL-2.0-only and GPL-2.0-or-later -Summary: TeX Live infrastructure programs -Requires: texlive-base texlive-kpathsea -Requires: texlive-texlive.infra -Requires: texlive-gsftopk -Provides: texlive-tetex = %{epoch}:20210325-%{release} -# oe latest version is 20180414 -Obsoletes: texlive-tetex < 7:20200327 -BuildArch: noarch - -%description -n texlive-texlive-scripts +%package -n %{shortname}-texlive-scripts +Version: svn66584 +Provides: texlive-texlive-scripts = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive-scripts = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive-scripts-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive-scripts-bin < 7:20170520 +License: LPPL-1.3c +Summary: TeX Live infrastructure programs +Requires: texlive-base +Requires: texlive-kpathsea = %{epoch}:%{source_date}-%{release} +Requires: texlive-texlive.infra +Requires: texlive-gsftopk +Provides: tex(09fbbfac.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(0ef0afca.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(10037936.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(1b6d048e.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(71414f53.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(74afc74c.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(aae443f0.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(b6a4d7c7.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(base14flags.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bbad153f.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(d9b29452.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvipdfm35.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips35.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(f7b6d320.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(mathpple.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdftex35.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ps2pk35.map) = %{epoch}:%{source_date}-%{release} +Provides: texlive-tetex = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tetex < 7:20200327 +# perl +BuildArch: noarch + +%description -n %{shortname}-texlive-scripts Includes install-tl, tl-portable, rungs, etc.; not needed for tlmgr to run but still ours. Not included in tlcritical. -%package -n texlive-texlive-scripts-extra -Provides: tex-texlive-scripts-extra = %{epoch}:20210325-%{release} -Provides: texlive-texlive-scripts-extra-bin = %{epoch}:20210325-%{release} -License: GPL-1.0-or-later -Summary: TeX Live scripts -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-texlive.infra -Obsoletes: texlive-texconfig < 7:20180414 -Obsoletes: texlive-pstools < 7:20180414 -Obsoletes: texlive-pdftools < 7:20180414 +%package -n %{shortname}-texlive-scripts-extra +Version: svn62517 +Provides: texlive-texlive-scripts-extra = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive-scripts-extra = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive-scripts-extra-bin = %{epoch}:%{source_date}-%{release} +License: GPL-1.0-or-later AND LPPL-1.3c AND LicenseRef-Fedora-Public-Domain +Summary: TeX Live scripts +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-texlive.infra +Obsoletes: texlive-texconfig < 7:20200327 +Obsoletes: texlive-pstools < 7:20200327 +Obsoletes: texlive-pdftools < 7:20200327 +# perl and shell BuildArch: noarch -%description -n texlive-texlive-scripts-extra +%description -n %{shortname}-texlive-scripts-extra Miscellaneous scripts maintained as part of TeX Live, but not important for the infrastructure. Thus, this is not part of scheme-infraonly or tlcritical, just a normal package. -%package -n texlive-texlive.infra -Provides: tex-texlive.infra = %{epoch}:20210325-%{release} -License: GPL-2.0-only and GPL-2.0-or-later and Artistic-1.0-Perl OR GPL-1.0-or-later -Provides: tex-texlive.infra-bin = %{epoch}:20210325-%{release} -Provides: texlive-texlive.infra-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texlive.infra-bin < 7:20180414 -Provides: tex-texlive.infra-doc = %{epoch}:20210325-%{release} -Provides: texlive-texlive.infra-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texlive.infra-doc < 7:20180414 -Summary: Basic TeX Live infrastructure -Requires: texlive-base texlive-kpathsea -Provides: tex(fmtutil-hdr.cnf) = %{epoch}:20210325-%{release} -Provides: tex(updmap-hdr.cfg) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-texlive.infra -This package contains the files needed to get the TeX Live -tools (notably tlmgr) running: perl modules, xz binaries, plus -(sometimes) tar and wget. These files end up in the standalone -install packages, and in the tlcritical repository. - -%package -n texlive-texloganalyser -Provides: tex-texloganalyser = %{epoch}:20210325-%{release} -Provides: tex-texloganalyser-bin = %{epoch}:20210325-%{release} -Provides: texlive-texloganalyser-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texloganalyser-bin < 7:20180414 -Provides: tex-texloganalyser-doc = %{epoch}:20210325-%{release} -Provides: texlive-texloganalyser-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texloganalyser-doc < 7:20180414 -License: BSD -Summary: Analyse TeX logs -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texloganalyser +%package -n %{shortname}-texlive.infra +Version: svn66512 +Provides: texlive-texlive.infra = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive.infra = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive.infra-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive.infra-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive.infra-bin < 7:20170520 +Provides: tex-texlive.infra-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive.infra-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive.infra-doc < 7:20170520 +License: LPPL-1.3c +Summary: Basic TeX Live infrastructure +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(fmtutil-hdr.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(updmap-hdr.cfg) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-texlive.infra +This package contains the files needed to get tlmgr running: +perl modules, xz binaries, plus (sometimes) tar, wget, lz4, and +various other support files. This package also represents the +tlcritical recovery scripts. The standalone installer is close, +but not the same; it's defined in 00texlive.installer. + +%package -n %{shortname}-texloganalyser +Version: svn54526 +Provides: texlive-texloganalyser = %{epoch}:%{source_date}-%{release} +Provides: tex-texloganalyser = %{epoch}:%{source_date}-%{release} +Provides: tex-texloganalyser-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texloganalyser-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texloganalyser-bin < 7:20170520 +Provides: tex-texloganalyser-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texloganalyser-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texloganalyser-doc < 7:20170520 +License: BSD-3-Clause +Summary: Analyse TeX logs +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texloganalyser The perl script allows the user to extract (and display) elements of the log file. -%package -n texlive-texosquery -Provides: tex-texosquery = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tex-texosquery-bin = %{epoch}:20210325-%{release} -Provides: texlive-texosquery-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texosquery-bin < 7:20180414 -Provides: tex-texosquery-doc = %{epoch}:20210325-%{release} -Provides: texlive-texosquery-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texosquery-doc < 7:20180414 -Summary: Cross-platform Java application to query OS information -Requires: texlive-base texlive-kpathsea -Requires: java-headless -BuildArch: noarch - -%description -n texlive-texosquery +%package -n %{shortname}-texlogfilter +Version: svn62792 +Provides: texlive-texlogfilter = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlogfilter-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Filter LaTeX engines output or log file +Requires: texlive-base, texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texlogfilter +texlogfilter is a Perl script designed to filter LaTeX engines output or log +file (LaTeX, pdfLaTeX, LuaLaTeX or XeLaTeX). It reduces the LaTeX output or log +to keep only warnings and errors. The result is colorised. Options allow to +mask specific warnings, such as box or references/citations warnings. It's also +possible to add custom filter patterns. + +%package -n %{shortname}-texlogsieve +Version: svn64301 +Provides: texlive-texlogsieve = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlogsieve-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: Filter and summarize LaTeX log files +Requires: texlive-base, texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-texlogsieve +texlogsieve reads a LaTeX log file (or the standard input if no file is +specified), filters out less relevant messages, and displays a summary report. +It is a texlua script, similar in spirit to tools such as texfot, +texloganalyser, rubber-info, textlog_extract, texlogparser, and others. +Highlights: Two reports: the most important messages from the log file followed +by a summary of repeated messages, undefined references etc.; The program goes +to great lengths to correctly handle TeX line wrapping and does a much better +job at that than existing tools; Multiline messages are treated as a single +entity; Several options to control which messages should be filtered out; No +messages are accidentally removed; The summary report is currently simple, but +useful. + +%package -n %{shortname}-texosquery +Version: svn53676 +Provides: texlive-texosquery = %{epoch}:%{source_date}-%{release} +Provides: tex-texosquery = %{epoch}:%{source_date}-%{release} +Provides: tex-texosquery-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texosquery-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texosquery-bin < 7:20170520 +Provides: tex-texosquery-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texosquery-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texosquery-doc < 7:20170520 +License: LPPL-1.3c +Summary: Cross-platform Java application to query OS information +Requires: texlive-base +Requires: texlive-kpathsea +Requires: java-headless +# shell +BuildArch: noarch + +%description -n %{shortname}-texosquery This package provides a cross-platform Java application to query OS information designed for use in TeX's shell escape mechanism. The application can query the following: locale and @@ -5373,18 +7527,20 @@ TeX's default special characters (and some other potentially problematic characters) is temporarily changed to 12 while reading the result. -%package -n texlive-texplate -Provides: tex-texplate = %{epoch}:20210325-%{release} -Provides: tex-texplate-bin = %{epoch}:20210325-%{release} -Provides: texlive-texplate-bin = %{epoch}:20210325-%{release} -License: BSD -Summary: A tool for creating document structures based on templates -Requires: texlive-base -Requires: texlive-kpathsea +%package -n %{shortname}-texplate +Version: svn61719 +Provides: texlive-texplate = %{epoch}:%{source_date}-%{release} +Provides: tex-texplate = %{epoch}:%{source_date}-%{release} +Provides: tex-texplate-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texplate-bin = %{epoch}:%{source_date}-%{release} +License: BSD-3-Clause +Summary: A tool for creating document structures based on templates +Requires: texlive-base +Requires: texlive-kpathsea # So much java BuildArch: noarch -%description -n texlive-texplate +%description -n %{shortname}-texplate TeXplate is a tool for creating document structures based on templates. The application name is a word play on TeX and template, so the purpose seems quite obvious: we want to @@ -5395,48 +7551,52 @@ theses: the application is powerful enough to generate any text-based structure, given that a corresponding template exists. -%package -n texlive-texsis -Provides: tex-texsis = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tex-texsis-bin = %{epoch}:20210325-%{release} -Provides: texlive-texsis-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texsis-bin < 7:20180414 -Provides: tex-texsis-doc = %{epoch}:20210325-%{release} -Provides: texlive-texsis-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texsis-doc < 7:20180414 -Summary: Plain TeX macros for Physicist -Requires: texlive-base -Requires: texlive-kpathsea texlive-pdftex -Requires: texlive-tex -Requires: texlive-cm -Requires: texlive-hyphen-base -Requires: texlive-knuth-lib -Requires: texlive-plain +%package -n %{shortname}-texsis +Version: svn45678 +Provides: texlive-texsis = %{epoch}:%{source_date}-%{release} +Provides: tex-texsis = %{epoch}:%{source_date}-%{release} +Provides: tex-texsis-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texsis-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texsis-bin < 7:20170520 +Provides: tex-texsis-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texsis-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texsis-doc < 7:20170520 +License: LPPL-1.3c +Summary: Plain TeX macros for Physicists +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-tex +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain Requires(post,postun): coreutils -Provides: tex(TXSconts.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSdcol.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSenvmt.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSeqns.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSfigs.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSfmts.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSfonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXShead.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSinit.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSletr.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSmacs.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSmemo.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSprns.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSrefs.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSruled.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSsects.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSsite.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSsymb.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXStags.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXStitle.tex) = %{epoch}:20210325-%{release} -Provides: tex(texsis.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-texsis +Provides: tex(TXSconts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSdcol.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSenvmt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSeqns.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfigs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfmts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXShead.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSinit.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSletr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSmacs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSmemo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSprns.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSrefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSruled.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsects.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsite.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsymb.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXStags.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXStitle.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(texsis.tex) = %{epoch}:%{source_date}-%{release} +# symlinks only +BuildArch: noarch + +%description -n %{shortname}-texsis TeXsis is a TeX macro package which provides useful features for typesetting research papers and related documents. For example, it includes support specifically for: Automatic @@ -5454,16 +7614,19 @@ constructing ruled tables. TeXsis was originally developed for physicists, but others may also find it useful. It is completely compatible with Plain TeX. -%package -n texlive-texware -Provides: tex-texware = %{epoch}:20210325-%{release} -Provides: tex-texware-bin = %{epoch}:20210325-%{release} -Provides: texlive-texware-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texware-bin < 7:20180414 -License: Public domain -Summary: Utility programs for use with TeX -Requires: texlive-base texlive-kpathsea - -%description -n texlive-texware +%package -n %{shortname}-texware +Version: svn66186 +Provides: texlive-texware = %{epoch}:%{source_date}-%{release} +Provides: tex-texware = %{epoch}:%{source_date}-%{release} +Provides: tex-texware-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texware-bin < 7:20170520 +License: Knuth-CTAN +Summary: Utility programs for use with TeX +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-texware Basic utitility programs, comprising: - dvitype, which converts a TeX output (DVI) file to a plain text file (see also the DVI Text Language suite); - pooltype, which converts a TeX-suite @@ -5471,23 +7634,28 @@ program's "pool" (string) file into human-readable form; and - tftopl and pltotf, which convert TeX Font Metric (TFM) file to human readable Property List (PL) files and vice versa. -%package -n texlive-thumbpdf -Provides: tex-thumbpdf = %{epoch}:20210325-%{release} -License: LPPL-1.3a -Provides: tex-thumbpdf-bin = %{epoch}:20210325-%{release} -Provides: texlive-thumbpdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-thumbpdf-bin < 7:20180414 -Provides: tex-thumbpdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-thumbpdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-thumbpdf-doc < 7:20180414 -Summary: Thumbnails for pdfTeX and dvips/ps2pdf -Requires: texlive-base texlive-kpathsea -Requires: tex(ifluatex.sty) ghostscript -Provides: tex(thumbpdf.sty) = %{epoch}:20210325-%{release} -Provides: tex(thumbpdf.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-thumbpdf +%package -n %{shortname}-thumbpdf +Version: svn62518 +Provides: texlive-thumbpdf = %{epoch}:%{source_date}-%{release} +Provides: tex-thumbpdf = %{epoch}:%{source_date}-%{release} +Provides: tex-thumbpdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-thumbpdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-thumbpdf-bin < 7:20170520 +Provides: tex-thumbpdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-thumbpdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-thumbpdf-doc < 7:20170520 +License: LPPL-1.3c +Summary: Thumbnails for pdfTeX and dvips/ps2pdf +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifluatex.sty) +Requires: ghostscript +Provides: tex(thumbpdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(thumbpdf.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-thumbpdf A Perl script that provides support for thumbnails in pdfTeX and dvips/ps2pdf. The script uses ghostscript to generate the thumbnails which get represented in a TeX readable file that is @@ -5495,97 +7663,125 @@ read by the package thumbpdf.sty to automatically include the thumbnails. This arrangement works with both plain TeX and LaTeX. -%package -n texlive-tie -Provides: tex-tie = %{epoch}:20210325-%{release} tex-tie-bin = %{epoch}:20210325-%{release} -Provides: texlive-tie-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-tie-bin < 7:20180414 -Summary: Allow multiple web change files -Requires: texlive-base texlive-kpathsea - -%description -n texlive-tie +%package -n %{shortname}-tie +Version: svn66186 +Provides: texlive-tie = %{epoch}:%{source_date}-%{release} +Provides: tex-tie = %{epoch}:%{source_date}-%{release} +Provides: tex-tie-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tie-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tie-bin < 7:20170520 +License: Latex2e +Summary: Allow multiple web change files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-tie Tie was originally developed to allow web programmers to apply more than one change file to their source. The program may also be used to create a new version of a .web file that incorporates existing changes. -%package -n texlive-tikztosvg -Summary: A utility for rendering TikZ diagrams to SVG -License: GPLv3 -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-tikztosvg +Version: svn60289 +Provides: texlive-tikztosvg = %{epoch}:%{source_date}-%{release} +Summary: A utility for rendering TikZ diagrams to SVG +License: GPL-3.0-only +Requires: texlive-base texlive-kpathsea -%description -n texlive-tikztosvg +%description -n %{shortname}-tikztosvg This package provides a shell script that calls XeTeX and pdf2svg to convert TikZ environments to SVG files. -%package -n texlive-tpic2pdftex -Provides: tex-tpic2pdftex = %{epoch}:20210325-%{release} -Provides: tex-tpic2pdftex-bin = %{epoch}:20210325-%{release} -Provides: texlive-tpic2pdftex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-tpic2pdftex-bin < 7:20180414 -Provides: tex-tpic2pdftex-doc = %{epoch}:20210325-%{release} -Provides: texlive-tpic2pdftex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-tpic2pdftex-doc < 7:20180414 -License: GPL+ -Summary: Use tpic commands in PDFTeX -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-tpic2pdftex +%package -n %{shortname}-tpic2pdftex +Version: svn52851 +Provides: texlive-tpic2pdftex = %{epoch}:%{source_date}-%{release} +Provides: tex-tpic2pdftex = %{epoch}:%{source_date}-%{release} +Provides: tex-tpic2pdftex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tpic2pdftex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tpic2pdftex-bin < 7:20170520 +Provides: tex-tpic2pdftex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tpic2pdftex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tpic2pdftex-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Use tpic commands in PDFTeX +Requires: texlive-base +Requires: texlive-kpathsea +# awk +BuildArch: noarch + +%description -n %{shortname}-tpic2pdftex The AWK script converts pic language, embedded inline (delimited by .PS and .PE markers), to \pdfliteral commands. -%package -n texlive-ttfutils -Provides: tex-ttfutils = %{epoch}:20210325-%{release} -Provides: tex-ttfutils-bin = %{epoch}:20210325-%{release} -Provides: texlive-ttfutils-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ttfutils-bin < 7:20180414 -Provides: tex-ttfutils-doc = %{epoch}:20210325-%{release} -Provides: texlive-ttfutils-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ttfutils-doc < 7:20180414 -Summary: Linux TrueType utilities -Requires: texlive-base texlive-kpathsea -Provides: tex(T1-WGL4.enc) = %{epoch}:20210325-%{release} -Provides: tex(ttf2pk.cfg) = %{epoch}:20210325-%{release} - -%description -n texlive-ttfutils -Linux TrueType utilities. - -%package -n texlive-typeoutfileinfo -Provides: tex-typeoutfileinfo = %{epoch}:20210325-%{release} -Provides: tex-typeoutfileinfo-bin = %{epoch}:20210325-%{release} -Provides: texlive-typeoutfileinfo-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-typeoutfileinfo-bin < 7:20180414 -Provides: tex-typeoutfileinfo-doc = %{epoch}:20210325-%{release} -Provides: texlive-typeoutfileinfo-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-typeoutfileinfo-doc < 7:20180414 -Summary: Display class/package/file information -Requires: texlive-base texlive-kpathsea -Requires: tex(readprov.sty) -BuildArch: noarch - -%description -n texlive-typeoutfileinfo +%package -n %{shortname}-ttfutils +Version: svn66186 +Provides: texlive-ttfutils = %{epoch}:%{source_date}-%{release} +Provides: tex-ttfutils = %{epoch}:%{source_date}-%{release} +Provides: tex-ttfutils-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ttfutils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ttfutils-bin < 7:20170520 +Provides: tex-ttfutils-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ttfutils-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ttfutils-doc < 7:20170520 +License: LPPL-1.3c +Summary: convert TrueType to TFM and PK fonts +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(T1-WGL4.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ttf2pk.cfg) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-ttfutils +Utilities: ttf2afm ttf2pk ttf2tfm ttfdump. FreeType is the +underlying library. + +%package -n %{shortname}-typeoutfileinfo +Version: svn29349 +Provides: texlive-typeoutfileinfo = %{epoch}:%{source_date}-%{release} +Provides: tex-typeoutfileinfo = %{epoch}:%{source_date}-%{release} +Provides: tex-typeoutfileinfo-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-typeoutfileinfo-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-typeoutfileinfo-bin < 7:20170520 +Provides: tex-typeoutfileinfo-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-typeoutfileinfo-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-typeoutfileinfo-doc < 7:20170520 +License: LPPL-1.3c +Summary: Display class/package/file information +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(readprov.sty) +# shell +BuildArch: noarch + +%description -n %{shortname}-typeoutfileinfo The package provides a minimalist shell script, for Unix systems, that displays the information content in a \ProvidesFile, \ProvidesPackage or \ProvidesClass command in a LaTeX source file. The package requires that the readprov package is available. -%package -n texlive-ulqda -Provides: tex-ulqda = %{epoch}:20210325-%{release} -Provides: tex-ulqda-bin = %{epoch}:20210325-%{release} -Provides: texlive-ulqda-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ulqda-bin < 7:20180414 -Provides: tex-ulqda-doc = %{epoch}:20210325-%{release} -Provides: texlive-ulqda-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ulqda-doc < 7:20180414 -Summary: Support of Qualitative Data Analysis -Requires: texlive-base texlive-kpathsea -Requires: tex(multicol.sty) tex(tikz.sty) -Requires: tex(dot2texi.sty) tex(soul.sty) -Provides: tex(ulqda.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-ulqda +%package -n %{shortname}-ulqda +Version: svn26313 +Provides: texlive-ulqda = %{epoch}:%{source_date}-%{release} +Provides: tex-ulqda = %{epoch}:%{source_date}-%{release} +Provides: tex-ulqda-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ulqda-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ulqda-bin < 7:20170520 +Provides: tex-ulqda-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ulqda-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ulqda-doc < 7:20170520 +License: LPPL-1.3c +Summary: Support of Qualitative Data Analysis +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(multicol.sty) +Requires: tex(tikz.sty) +Requires: tex(dot2texi.sty) +Requires: tex(soul.sty) +Provides: tex(ulqda.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-ulqda The package is for use in Qualitative Data Analysis research. It supports the integration of Qualitative Data Analysis (QDA) research tasks, specifically for Grounded Theory, into the @@ -5594,214 +7790,135 @@ such as interview transcripts and field notes by providing the LaTeX user with macros which are used to markup textual information -- for example, in-depth interviews. -%package -n texlive-uptex -Provides: tex-uptex = %{epoch}:20210325-%{release} -Provides: tex-uptex-bin = %{epoch}:20210325-%{release} -Provides: tex-uptex-doc = %{epoch}:20210325-%{release} -Provides: tex-uplatex = %{epoch}:20210325-%{release} -Provides: tex-uplatex-bin = %{epoch}:20210325-%{release} -Provides: tex-uplatex-doc = %{epoch}:20210325-%{release} -Provides: texlive-uptex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-uptex-bin < 7:20180414 -Provides: texlive-uplatex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-uplatex-bin < 7:20180414 -Provides: texlive-uplatex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-uplatex-doc < 7:20180414 -Provides: texlive-uptex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-uptex-doc < 7:20180414 -License: BSD -Summary: Binaries for uptex -Requires: texlive-base texlive-convbkmk texlive-etex texlive-hyphen-base -Requires: texlive-hyph-utf8 texlive-ipaex texlive-knuth-lib -Requires: texlive-japanese texlive-japanese-otf texlive-uptex-fonts -Requires: texlive-kpathsea texlive-ptex texlive-ptex-base texlive-uptex-base - -%description -n texlive-uptex -upTeX is an extension of pTeX, using UTF-8 input and producing UTF-8 -output. It was originally designed to improve support for Japanese, -but is also useful for documents in Chinese and Korean. It can -process Chinese simplified, Chinese traditional, Japanese, and Korean -simultaneously, and can also produce original LaTeX with \inputenc{utf8} -and Babel (Latin/Cyrillic/Greek etc.) by switching its \kcatcode -tables. - -%package -n texlive-urlbst -Provides: tex-urlbst = %{epoch}:20210325-%{release} -Provides: tex-urlbst-bin = %{epoch}:20210325-%{release} -Provides: texlive-urlbst-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-urlbst-bin < 7:20180414 -Provides: tex-urlbst-doc = %{epoch}:20210325-%{release} -Provides: texlive-urlbst-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-urlbst-doc < 7:20180414 -License: GPL+ -Summary: Web support for BibTeX -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-urlbst +%package -n %{shortname}-upmendex +Summary: Multilingual index processor +Version: svn66381 +License: BSD-3-Clause +Requires: texlive-base texlive-kpathsea +Provides: tex-upmendex = %{epoch}:%{source_date}-%{release} +Provides: tex-upmendex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-upmendex-bin = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-upmendex +The package is a multilingual index processor with the +following features: Mostly compatible with makeindex and upper +compatible with mendex. Supports UTF-8 and works with upLaTeX, +XeLaTeX and LuaLaTeX. Supports Latin (including non-English), +Greek, Cyrillic, Korean Hangul and Chinese Han (Hanzi +ideographs) scripts, as well as Japanese Kana. Supports +Devanagari, Thai, Arabic and Hebrew scripts (experimental). +Supports four kinds of sort orders (Pinyin, Radical-Stroke, +Stroke and Zhuyin) for Chinese Han scripts (Hanzi ideographs). +Applies International Components for Unicode (ICU) for sorting +process. + +%package -n %{shortname}-uptex +Version: svn66381 +Provides: texlive-uptex = %{epoch}:%{source_date}-%{release} +Provides: tex-uptex = %{epoch}:%{source_date}-%{release} +Provides: tex-uptex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-uptex-doc = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-uptex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uptex-bin < 7:20170520 +Provides: texlive-uplatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uplatex-bin < 7:20170520 +Provides: texlive-uplatex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uplatex-doc < 7:20170520 +Provides: texlive-uptex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uptex-doc < 7:20170520 +License: BSD-3-Clause +Summary: Unicode version of pTeX +Requires: texlive-base +Requires: texlive-cm +Requires: texlive-convbkmk +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-hyph-utf8 +Requires: texlive-ipaex +Requires: texlive-japanese-otf +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-plain +Requires: texlive-ptex-base +Requires: texlive-uptex-base +Requires: texlive-uptex-fonts + +%description -n %{shortname}-uptex +upTeX is an extension of pTeX, using UTF-8 input and producing +UTF-8 output. It was originally designed to improve support for +Japanese, but is also useful for documents in Chinese and +Korean. It can process Chinese simplified, Chinese traditional, +Japanese, and Korean simultaneously, and can also process +original LaTeX with \inputenc{utf8} and Babel +(Latin/Cyrillic/Greek etc.) by switching its \kcatcode tables. + +%package -n %{shortname}-urlbst +Version: svn65694 +Provides: texlive-urlbst = %{epoch}:%{source_date}-%{release} +Provides: tex-urlbst = %{epoch}:%{source_date}-%{release} +Provides: tex-urlbst-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-urlbst-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-urlbst-bin < 7:20170520 +Provides: tex-urlbst-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-urlbst-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-urlbst-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Web support for BibTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-urlbst Supports a new BibTeX 'webpage' entry type and 'url', 'lastchecked', and 'eprint' and 'DOI' fields. The Perl script urlbst can be used to add this support to an arbitrary .bst file which has a reasonably conventional structure. The result is meant to be robust rather than pretty. -%package -n texlive-velthuis -Provides: tex-velthuis = %{epoch}:20210325-%{release} -Provides: tex-velthuis-bin = %{epoch}:20210325-%{release} -Provides: texlive-velthuis-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-velthuis-bin < 7:20180414 -Provides: tex-velthuis-doc = %{epoch}:20210325-%{release} -Provides: texlive-velthuis-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-velthuis-doc < 7:20180414 -Provides: texlive-devnag = %{epoch}:20210325-%{release} -Obsoletes: texlive-devnag < 7:20180414 -Provides: texlive-devnag-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-devnag-bin < 7:20180414 -License: GPL+ -Summary: Typeset Devanagari -Requires: texlive-base texlive-kpathsea -Requires: tex-xetex-devanagari -Requires: tex(hindicaptions.sty) tex(cite.sty) -Requires: tex(ifxetex.sty) -Provides: tex(dvng.map) = %{epoch}:20210325-%{release} -Provides: tex(dvnb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnc10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnc8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnc9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnci10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnci8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnci9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvng10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvng8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvng9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnn10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnn8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnn9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnni10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnni8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnni9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpc10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpc8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpc9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpn10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpn8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpn9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnc10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnc8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnc9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnci10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnci8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnci9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvng10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvng8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvng9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnn10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnn8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnn9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnni10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnni8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnni9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpc10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpc8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpc9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpn10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpn8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpn9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(hindi.ldf) = %{epoch}:20210325-%{release} -Provides: tex(hindi.sty) = %{epoch}:20210325-%{release} -Provides: tex(dev.sty) = %{epoch}:20210325-%{release} -Provides: tex(dev209.sty) = %{epoch}:20210325-%{release} -Provides: tex(devanagari.sty) = %{epoch}:20210325-%{release} -Provides: tex(dvngcite.sty) = %{epoch}:20210325-%{release} -Provides: tex(udn.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnb.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnc.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnn.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnp.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnpb.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnpc.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnpn.fd) = %{epoch}:20210325-%{release} -Provides: tex(dnmacs.tex) = %{epoch}:20210325-%{release} -Provides: tex(hindicaptions.sty) = %{epoch}:20210325-%{release} - -%description -n texlive-velthuis +%package -n %{shortname}-velthuis +Version: svn66186 +Provides: texlive-velthuis = %{epoch}:%{source_date}-%{release} +Provides: tex-velthuis = %{epoch}:%{source_date}-%{release} +Provides: tex-velthuis-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-velthuis-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-velthuis-bin < 7:20170520 +Provides: tex-velthuis-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-velthuis-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-velthuis-doc < 7:20170520 +Provides: texlive-devnag = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-devnag < 7:20170520 +Provides: texlive-devnag-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-devnag-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Typeset Devanagari +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex-xetex-devanagari +Requires: tex(hindicaptions.sty) +Requires: tex(cite.sty) +Requires: tex(ifxetex.sty) +Provides: tex(dev.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dev209.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(devanagari.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dnmacs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngcite.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hindi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hindicaptions.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(udn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnb.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnp.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpb.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpn.fd) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-velthuis Frans Velthuis' preprocessor for Devanagari text, and fonts and macros to use when typesetting the processed text. The macros provide features that support Sanskrit, Hindi, Marathi, Nepali, @@ -5811,43 +7928,48 @@ formats. Users of modern TeX distributions may care to try the XeTeX based package, which is far preferable for users who can type Unicode text. -%package -n texlive-vlna -Provides: tex-vlna = %{epoch}:20210325-%{release} tex-vlna-bin = %{epoch}:20210325-%{release} -Provides: texlive-vlna-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-vlna-bin < 7:20180414 -Provides: tex-vlna-doc = %{epoch}:20210325-%{release} -Provides: texlive-vlna-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-vlna-doc < 7:20180414 -Summary: Adds tilde after each non-syllabic preposition -Requires: texlive-base texlive-kpathsea - -%description -n texlive-vlna -There exists a special Czech and Slovak typographical rule: -you cannot leave the non-syllabic preposition on the end of one -line and continue writting text on next line. For example, you -cannot write down the text "v lese" (in a forest) like -"vlese". The program vlna adds the asciitilde between -such preposition and the next word and removes the space(s) in -this place. It means, the program converts "v lese" to -"v~lese". You can use this program as a preporcessor before -TeXing. Moreower, you can set another sequence to store instead -asciitilte (see the -x option). - -%package -n texlive-vpe -Provides: tex-vpe = %{epoch}:20210325-%{release} tex-vpe-bin = %{epoch}:20210325-%{release} -Provides: texlive-vpe-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-vpe-bin < 7:20180414 -Provides: tex-vpe-doc = %{epoch}:20210325-%{release} -Provides: texlive-vpe-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-vpe-doc < 7:20180414 -Summary: Source specials for PDF output -Requires: texlive-base texlive-kpathsea -Requires: tex(keyval.sty) tex(color.sty) -Requires: tex(pifont.sty) -Provides: tex(vpe.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-vpe +%package -n %{shortname}-vlna +Version: svn66186 +Provides: texlive-vlna = %{epoch}:%{source_date}-%{release} +Provides: tex-vlna = %{epoch}:%{source_date}-%{release} +Provides: tex-vlna-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-vlna-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vlna-bin < 7:20170520 +Provides: tex-vlna-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-vlna-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vlna-doc < 7:20170520 +License: LPPL-1.3c +Summary: Adds ~ after non-syllabic preposition, for Czech/Slovak +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-vlna +Preprocessor for TeX source implementing the Czech/Slovak +typographical rule forbidding a non-syllabic preposition alone +at the end of a line. + +%package -n %{shortname}-vpe +Version: svn26039 +Provides: texlive-vpe = %{epoch}:%{source_date}-%{release} +Provides: tex-vpe = %{epoch}:%{source_date}-%{release} +Provides: tex-vpe-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-vpe-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vpe-bin < 7:20170520 +Provides: tex-vpe-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-vpe-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vpe-doc < 7:20170520 +License: LPPL-1.3c +Summary: Source specials for PDF output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(keyval.sty) +Requires: tex(color.sty) +Requires: tex(pifont.sty) +Provides: tex(vpe.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-vpe VPE is a system to make the equivalent of "source special" marks in a PDF file. Clicking on a mark will activate an editor, pointing at the source line that produced the text that @@ -5857,57 +7979,68 @@ via LaTeX/dvips, pdfTeX (version 0.14 or better), and LaTeX/VTeX. Using the LaTeX/dvips or pdfLaTeX routes, the (pdf)TeX processor should be run with shell escapes enabled. -%package -n texlive-web -Provides: tex-web = %{epoch}:20210325-%{release} tex-web-bin = %{epoch}:20210325-%{release} -Provides: texlive-web-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-web-bin < 7:20180414 -License: LPPL-1.3c and MIT -Summary: Original web programs tangle and weave -Requires: texlive-base texlive-kpathsea - -%description -n texlive-web +%package -n %{shortname}-web +Version: svn66186 +Provides: texlive-web = %{epoch}:%{source_date}-%{release} +Provides: tex-web = %{epoch}:%{source_date}-%{release} +Provides: tex-web-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-web-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-web-bin < 7:20170520 +License: Knuth-CTAN +Summary: The original literate programming system +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-web The system processes 'web' files in two ways: firstly to rearrange them to produce compilable code (using the program tangle), and secondly to produce a TeX source (using the program weave) that may be typeset for comfortable reading. -%package -n texlive-webquiz -Provides: tex-webquiz = %{epoch}:20210325-%{release} -Provides: tex-webquiz-bin = %{epoch}:20210325-%{release} -Provides: texlive-webquiz-bin = %{epoch}:20210325-%{release} -License: GPLv3+ -Summary: A LaTeX package for writing online quizzes -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-tex4ht -Requires: texlive-make4ht -Requires: tex(tikz.sty) -Requires: tex(pstricks.sty) -Requires: texlive-dvisvgm -Requires: ghostscript -Requires: python3 -BuildArch: noarch - -%description -n texlive-webquiz +%package -n %{shortname}-webquiz +Version: svn58808 +Provides: texlive-webquiz = %{epoch}:%{source_date}-%{release} +Provides: tex-webquiz = %{epoch}:%{source_date}-%{release} +Provides: tex-webquiz-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-webquiz-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: A LaTeX package for writing online quizzes +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tex4ht +Requires: texlive-make4ht +Requires: tex(tikz.sty) +Requires: tex(pstricks.sty) +Requires: texlive-dvisvgm +Requires: ghostscript +Requires: python3 +# python3 +BuildArch: noarch + +%description -n %{shortname}-webquiz WebQuiz makes it possible to use LaTeX to write interactive online quizzes. The quizzes are first written in LaTeX and then converted into HTML using WebQuiz, which is written in python. The conversion from LaTeX to HTML is done behind the scenes using TeX4ht. The idea is that you should be able to produce nice online quizzes using WebQuiz and basic knowledge of LaTeX. -%package -n texlive-wordcount -Provides: tex-wordcount = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-wordcount-bin = %{epoch}:20210325-%{release} -Provides: tex-wordcount-doc = %{epoch}:20210325-%{release} -Provides: texlive-wordcount-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-wordcount-doc < 7:20210325 -Provides: tex(wordcount.tex) = %{epoch}:20210325-%{release} -Summary: Estimate the number of words in a LaTeX document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-wordcount +%package -n %{shortname}-wordcount +Version: svn46165 +Provides: texlive-wordcount = %{epoch}:%{source_date}-%{release} +Provides: tex-wordcount = %{epoch}:%{source_date}-%{release} +Provides: texlive-wordcount-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-wordcount-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-wordcount-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-wordcount-doc < 7:20180414 +Provides: tex(wordcount.tex) = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Estimate the number of words in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-wordcount The package provides a relatively easy way of estimating the number of words in a LaTeX document that does not require dvitty or other DVI converters. It does however require @@ -5916,148 +8049,179 @@ particular string and report the number of matching lines. An accompanying shell script wordcount.sh contains more information in its comments. -%package -n texlive-xdvi -License: MIT -Summary: A DVI previewer for the X Window System -Provides: tex-xdvi = %{epoch}:20210325-%{release} tex-xdvi-bin = %{epoch}:20210325-%{release} -Provides: texlive-xdvi-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-xdvi-bin < 7:20180414 -Provides: xdvi = %{epoch}:20210325-%{release} xdvik = %{epoch}:20210325-%{release} -Requires: texlive-kpathsea texlive-base - -%description -n texlive-xdvi +%package -n %{shortname}-xdvi +Version: svn62387 +Provides: texlive-xdvi = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: A DVI previewer for the X Window System +Provides: tex-xdvi = %{epoch}:%{source_date}-%{release} +Provides: tex-xdvi-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xdvi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xdvi-bin < 7:20170520 +Provides: xdvi = %{epoch}:%{source_date}-%{release} +Provides: xdvik = %{epoch}:%{source_date}-%{release} +Requires: texlive-kpathsea +Requires: texlive-base + +%description -n %{shortname}-xdvi The canonical previewer for use on Unix and other X-windows based systems. -%package -n texlive-xetex -Provides: tex-xetex = %{epoch}:20210325-%{release} -Provides: tex-xetex-bin = %{epoch}:20210325-%{release} -Provides: texlive-xetex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-xetex-bin < 7:20180414 -Provides: tex-xetex-doc = %{epoch}:20210325-%{release} -Provides: texlive-xetex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-xetex-doc < 7:20180414 -License: MIT -Summary: Unicode and OpenType-enabled TeX engine -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-xetexconfig -Requires: texlive-latex -Requires: texlive-dvipdfmx -Requires: texlive-cm -Requires: texlive-hyphen-base -Requires: texlive-tex-ini-files -Requires: texlive-unicode-data -Requires: texlive-etex -Requires: texlive-plain -Requires: texlive-babel -Requires: texlive-l3kernel -Requires: texlive-latex-fonts -Requires: texlive-lm -Requires: teckit +%package -n %{shortname}-xetex +Version: svn66203 +Provides: texlive-xetex = %{epoch}:%{source_date}-%{release} +Provides: tex-xetex = %{epoch}:%{source_date}-%{release} +Provides: tex-xetex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xetex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xetex-bin < 7:20170520 +Provides: tex-xetex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xetex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xetex-doc < 7:20170520 +License: MIT +Summary: Unicode and OpenType-enabled TeX engine +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-atbegshi +Requires: texlive-atveryend +Requires: texlive-babel +Requires: texlive-cm +Requires: texlive-dvipdfmx +Requires: texlive-etex +Requires: texlive-everyshi +Requires: texlive-firstaid +Requires: texlive-hyphen-base +Requires: texlive-l3backend +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-latex +Requires: texlive-latex-fonts +Requires: texlive-lm +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-xetexconfig +Requires: teckit Requires(post,postun): coreutils -Requires: tex(xetex.def) -Provides: tex(qx-unicode.map) = %{epoch}:20210325-%{release} -Provides: tex(tex-text.map) = %{epoch}:20210325-%{release} - -%description -n texlive-xetex -XeTeX is an extension of TeX that integrates TeX's typesetting capabilities -with (a) the Unicode text encoding standard (supporting most of the world’s -scripts) and (b) modern font technologies (TrueType and OpenType) and text -layout services (AAT, OpenType layout, SIL Graphite) provided by the host -operating system and available libraries. - -With XeTeX, the advanced typographic features provided by OpenType fonts become -available for all TeX users, as well as support for complex non-roman scripts. -XeTeX also eliminates the complex task of managing a TeX font installation. -XeTeX is now part of the standard TeX distribution TeXLive and works well with -TeX macro packages like LaTeX and ConTeXt. - -%package -n texlive-xindex -Provides: tex-xindex = %{epoch}:20210325-%{release} -Provides: tex-xindex-bin = %{epoch}:20210325-%{release} -Provides: texlive-xindex-bin = %{epoch}:20210325-%{release} -License: LPPL-1.3c and MIT -Summary: Unicode compatible index program for LaTeX -Requires: lua >= 5.3 -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-luatex -Provides: tex(xindex.lua) = %{epoch}:20210325-%{release} -Provides: tex(xindex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-xindex +Requires: tex(xetex.def) +Provides: tex(qx-unicode.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex-text.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-xetex +XeTeX is a TeX typesetting engine using Unicode and supporting +modern font technologies such as OpenType, TrueType or Apple +Advanced Typography (AAT), including OpenType mathematics +fonts. XeTeX supports many extensions that reflect its origins +in linguistic research; it also supports micro-typography (as +available in pdfTeX). XeTeX was developed by the SIL (the first +version was specifically developed for those studying +linguistics, and using Macintosh computers). XeTeX's immediate +output is an extended variant of DVI format, which is +ordinarily processed by a tightly bound processor (called +xdvipdfmx), that produces PDF. XeTeX is released as part of TeX +Live; documentation has arisen separately. Source code is +available from ctan:/systems/texlive/Source/. + +%package -n %{shortname}-xindex +Version: svn65597 +Provides: texlive-xindex = %{epoch}:%{source_date}-%{release} +Provides: tex-xindex = %{epoch}:%{source_date}-%{release} +Provides: tex-xindex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindex-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Unicode compatible index program for LaTeX +Requires: lua >= 5.3 +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: tex(imakeidx.sty) +Requires: tex(makeidx.sty) +Requires: tex(xkeyval.sty) +Provides: tex(xindex.lua) = %{epoch}:%{source_date}-%{release} +Provides: tex(xindex.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-xindex Unicode compatible index program for LaTeX. -%ifarch empty -%package -n texlive-xindy -Provides: tex-xindy = %{epoch}:20210325-%{release} -Provides: tex-xindy-bin = %{epoch}:20210325-%{release} -Provides: tex-xindy-doc = %{epoch}:20210325-%{release} -Provides: texlive-xindy-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-xindy-bin <= 6:svn41316 -Provides: tex-xindy-doc = %{epoch}:20210325-%{release} -Provides: texlive-xindy-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-xindy-doc <= 6:svn41316 -License: GPLv2+ -Summary: A general-purpose index processor -Requires: texlive-base texlive-kpathsea -Requires: clisp - -%description -n texlive-xindy +%package -n %{shortname}-xindy +Version: svn65958 +Provides: texlive-xindy = %{epoch}:%{source_date}-%{release} +Provides: tex-xindy = %{epoch}:%{source_date}-%{release} +%if %{without bootstrap} +Provides: tex-xindy-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindy-bin = %{epoch}:%{source_date}-%{release} +%endif +Provides: tex-xindy-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xindy-bin <= 6:svn41316 +Provides: tex-xindy-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindy-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xindy-doc <= 6:svn41316 +License: GPL-2.0-or-later +Summary: A general-purpose index processor +# There are some arch specific binaries in here. +# BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea +Requires: clisp + +%description -n %{shortname}-xindy Xindy was deceloped after an impasse had been encountered in the attempt to complete internationalisation of makeindex. Xindy can be used to process indexes for documents marked up using (La)TeX, Nroff family and SGML-based languages. Xindy is highly configurable, both in markup terms and in terms of the collating order of the text being processed. -%endif -%package -n texlive-xml2pmx -Summary: Convert MusicXML to PMX and MusiXTeX -License: GPLv3+ -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-xml2pmx +Version: svn57972 +Provides: texlive-xml2pmx = %{epoch}:%{source_date}-%{release} +Summary: Convert MusicXML to PMX and MusiXTeX +License: GPL-3.0-or-later +Requires: texlive-base texlive-kpathsea -%description -n texlive-xml2pmx +%description -n %{shortname}-xml2pmx This program translates MusicXML files to input suitable for PMX and MusiXTeX processing. This package supports Windows, MacOS and Linux systems. -%package -n texlive-xmltex -Provides: tex-xmltex = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tex-xmltex-bin = %{epoch}:20210325-%{release} -Provides: texlive-xmltex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-xmltex-bin < 7:20180414 -Provides: tex-xmltex-doc = %{epoch}:20210325-%{release} -Provides: texlive-xmltex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-xmltex-doc < 7:20180414 -Provides: xmltex = %{epoch}:20210325-%{release} -Summary: Support for parsing XML documents -Requires: texlive-base -Requires: texlive-kpathsea-bin, tex-kpathsea -Requires: texlive-latex -Requires: texlive-pdftex -Requires: texlive-tex -Requires: texlive-xmltexconfig -Requires: texlive-babel -Requires: texlive-cm -Requires: texlive-hyphen-base -Requires: texlive-latex-fonts -Requires: texlive-l3backend -Requires: texlive-l3kernel -Requires: texlive-l3packages -Requires: texlive-tex-ini-files -Requires: texlive-unicode-data -Requires: texlive-dehyph -Requires: texlive-hyph-utf8 -Requires: texlive-latexconfig -Provides: tex(xmltex.cfg) = %{epoch}:20210325-%{release} -Provides: tex(xmltex.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-xmltex +%package -n %{shortname}-xmltex +Version: svn62145 +Provides: texlive-xmltex = %{epoch}:%{source_date}-%{release} +Provides: tex-xmltex = %{epoch}:%{source_date}-%{release} +Provides: tex-xmltex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xmltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xmltex-bin < 7:20170520 +Provides: tex-xmltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xmltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xmltex-doc < 7:20170520 +Provides: xmltex = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Support for parsing XML documents +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea +Requires: texlive-latex +Requires: texlive-pdftex +Requires: texlive-tex +Requires: texlive-xmltexconfig +Requires: texlive-babel +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-latex-fonts +Requires: texlive-l3backend +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-dehyph +Requires: texlive-hyph-utf8 +Requires: texlive-latexconfig +Provides: tex(xmltex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(xmltex.tex) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-xmltex The package provides an implementation of a parser for documents matching the XML 1.0 and XML Namespace Recommendations. In addition to parsing commands are provided @@ -6067,16 +8231,18 @@ subset of TEI, MathML, are included. Element and Attribute names, as well as character data, may use any characters allowed in XML, using UTF-8 or a suitable 8-bit encoding. -%package -n texlive-xpdfopen -Provides: tex-xpdfopen = %{epoch}:20210325-%{release} -Provides: tex-xpdfopen-bin = %{epoch}:20210325-%{release} -Provides: texlive-xpdfopen-bin = %{epoch}:20210325-%{release} -License: Public Domain -Summary: Commands to control PDF readers, under X11 -Requires: texlive-base -Requires: texlive-kpathsea - -%description -n texlive-xpdfopen +%package -n %{shortname}-xpdfopen +Version: svn65952 +Provides: texlive-xpdfopen = %{epoch}:%{source_date}-%{release} +Provides: tex-xpdfopen = %{epoch}:%{source_date}-%{release} +Provides: tex-xpdfopen-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xpdfopen-bin = %{epoch}:%{source_date}-%{release} +License: LicenseRef-Fedora-Public-Domain +Summary: Commands to control PDF readers, under X11 +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-xpdfopen The command-line programs pdfopen and pdfclose allow you to control the X Window System version of Adobe's Acrobat Reader from the command line or from within a (shell) script. The @@ -6084,21 +8250,26 @@ programs work with Acrobat Reader 5, 7, 8 and 9 for Linux, xpdf and evince. This version derives from one written by Fabrice Popineau for Microsoft operating systems. -%package -n texlive-yplan -Provides: tex-yplan = %{epoch}:20210325-%{release} -Provides: tex-yplan-bin = %{epoch}:20210325-%{release} -Provides: texlive-yplan-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-yplan-bin < 7:20180414 -Provides: tex-yplan-doc = %{epoch}:20210325-%{release} -Provides: texlive-yplan-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-yplan-doc < 7:20180414 -Summary: Daily planner type calendar -Requires: texlive-base texlive-kpathsea -Requires: tex(ifthen.sty) -Provides: tex(yplan.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-yplan +%package -n %{shortname}-yplan +Version: svn34398 +Provides: texlive-yplan = %{epoch}:%{source_date}-%{release} +Provides: tex-yplan = %{epoch}:%{source_date}-%{release} +Provides: tex-yplan-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-yplan-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-yplan-bin < 7:20170520 +Provides: tex-yplan-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-yplan-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-yplan-doc < 7:20170520 +License: LPPL-1.3c +Summary: Daily planner type calendar +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifthen.sty) +Provides: tex(yplan.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-yplan Prints two six-monthly vertical-type daily planner (i.e., months along the top, days downwards), with each 6-month period fitting onto a single A4 (or US letter) sheet. The package @@ -6108,45 +8279,557 @@ abandoned, in favour of a Perl script yplan that generates a year's planner automatically. (The last manually-generated LaTeX file remains on the archive.) +%package -n %{shortname}-aomart +Version: svn76110 +Provides: texlive-aomart = %{epoch}:%{source_date}-%{release} +Provides: tex-aomart = %{epoch}:%{source_date}-%{release} +Provides: texlive-aomart-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-aomart-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Typeset articles for the Annals of Mathematics +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-aomart +The package provides a class for typesetting articles for +The Annals of Mathematics. + +%package -n texlive-bookshelf +Summary: Create a nice image from a BibTeX file +Version: svn72521 +License: LPPL-1.3c +Requires: texlive-base texlive-kpathsea +Provides: tex(bookshelf.cls) = %{tl_version} +# perl +BuildArch: noarch + +%description -n texlive-bookshelf +This package turns a BibTeX bibliography file into a +randomly-coloured, randomly-sized shelf of books, with the +title and author in a randomly-chosen typeface. + +%package -n %{shortname}-easydtx +Version: svn72952 +Provides: texlive-easydtx = %{epoch}:%{source_date}-%{release} +Provides: tex-easydtx = %{epoch}:%{source_date}-%{release} +Provides: texlive-easydtx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-easydtx-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: A simplified DTX format +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-easydtx +EasyDTX is a variant of the DTX format which eliminates the need for +all those pesky “macrocode” environments. Any line introduced by +a single comment counts as documentation, and documentation lines may be indented. +An .edtx file is converted to a .dtx by a little Perl script called edtx2dtx. +There is also a rudimentary Emacs mode, implemented in easydoctex-mode.el, +which takes care of fontification, indentation, and forward and inverse search. + +%package -n texlive-eolang +Summary: Formulas and graphs for the EO programming language +Version: svn74755 +License: MIT +Requires: texlive-base texlive-kpathsea +Requires: tex(amsfonts.sty) +Requires: tex(amsmath.sty) +Requires: tex(fancyvrb.sty) +Requires: tex(iexec.sty) +Requires: tex(pgf.sty) +Requires: tex(pgfopts.sty) +Requires: tex(stmaryrd.sty) +Provides: tex(eolang.sty) = %{tl_version} +# perl +BuildArch: noarch + +%description -n texlive-eolang +This LaTeX package helps you write [?] -calculus formulas and +SODG graphs for the EO programming language. + +%package -n %{shortname}-expltools +Version: svn76083 +Provides: texlive-expltools = %{epoch}:%{source_date}-%{release} +Provides: tex-expltools = %{epoch}:%{source_date}-%{release} +Provides: texlive-expltools-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-expltools-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Development tools for expl3 programmers +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-expltools +This bundle introduces explcheck, a static analysis tool for +developers working with expl3 code. Currently in its initial +release, explcheck aims to help developers identify potential +issues and improve code quality. In the future, this bundle may +expand to include additional development tools for expl3. + +%package -n %{shortname}-extractbb +Version: svn73916 +Provides: texlive-extractbb = %{epoch}:%{source_date}-%{release} +Provides: tex-extractbb = %{epoch}:%{source_date}-%{release} +Provides: texlive-extractbb-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-extractbb-bin = %{epoch}:%{source_date}-%{release} +License: CC-BY-SA-4.0 +Summary: A reimplementation of extractbb, written in Lua +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-extractbb +extractbb is a program that exports the dimensions of an image +or PDF file to a plain text format that is easily parsed by TeX. +This tool is rarely run directly by users, but is frequently +used by packages running on XeTeX or upTeX. This package specifically +contains a Lua-based reimplementation extractbb that behaves +identically to the original C-based version distributed with dvipdfmx. + +%package -n %{shortname}-l3sys-query +Version: svn70889 +Provides: texlive-l3sys-query = %{epoch}:%{source_date}-%{release} +Provides: tex-l3sys-query = %{epoch}:%{source_date}-%{release} +Provides: texlive-l3sys-query-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-l3sys-query-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: System queries for LaTeX using Lua +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-l3sys-query +The l3sys-query script provides a method for TeX runs +to obtain system information via shell escape to Lua. +The facilities are more limited than the similar +Java script texosquery, but since it uses Lua, l3sys-query +can be used out of the box; with any installed TeX system. + +The script is written taking account of TeX Live security +requirements; it is therefore suitable for use with restricted +shell escape, the standard setting when installing a TeX system. + +The supported queries are +ls: Directory listing supporting a range of options +pwd: Obtaining details of the current working directory + +%package -n %{shortname}-markdown-doc +Provides: tex-markdown-doc = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: doc files of markdown +Version: svn76103 +AutoReqProv: No +BuildArch: noarch + +%description -n %{shortname}-markdown-doc +Documentation for markdown + +%package -n %{shortname}-markdown +Provides: tex-markdown = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: A package for converting and rendering markdown documents inside TeX +Version: svn76103 +Provides: tex(markdown.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(markdownthemewitiko_dot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(markdownthemewitiko_graphicx_http.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(markdownthemewitiko_tilde.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(t-markdown.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(markdown.sty) = %{epoch}:%{source_date}-%{release} +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea +BuildArch: noarch + +%description -n %{shortname}-markdown +The package provides facilities for the conversion of markdown +markup to plain TeX. These are provided both in form of a Lua +module and in form of plain TeX, LaTeX, and ConTeXt macro +packages that enable the direct inclusion of markdown documents +inside TeX documents. Architecturally, the package consists of +the Lunamark Lua module by John MacFarlane, which was slimmed +down and rewritten for the needs of the package. Lunamark +provides speedy markdown parsing for the rest of the package. +On top of Lunamark sits code for the plain TeX, LaTeX, and +ConTeXt formats by Vit Novotny. + +%package -n %{shortname}-memoize +Version: svn73025 +Provides: texlive-memoize = %{epoch}:%{source_date}-%{release} +Provides: tex-memoize = %{epoch}:%{source_date}-%{release} +Provides: texlive-memoize-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-memoize-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Externalization of graphics and memoization of compilation results in general +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-memoize +Memoize is a package for externalization of graphics and +memoization of compilation results in general, allowing the +author to reuse the results of compilation-intensive code. +Memoize (i) induces very little overhead, as all externalized +graphics is produced in a single compilation. It features (ii) +automatic recompilation upon the change of code or user-adjustable +context, and (iii) automatic externalization of TikZ pictures and +Forest trees, easily extensible to other commands and environments. +Furthermore, Memoize (iv) supports cross-referencing, TikZ overlays +and Beamer, (v) works with all major engines and formats, and (vi) +is adaptable to any workflow. + +%package -n texlive-minted +Provides: tex-minted = %{epoch}:%{source_date}-%{release} +Provides: tex(minted.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(minted1.sty) = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c and BSD-3-Clause +Summary: Highlighted source code for LaTeX +Version: svn75223 +Requires: texlive-base, %{_bindir}/pygmentize, texlive-kpathsea-bin, tex-kpathsea, tex(keyval.sty) +Requires: tex(kvoptions.sty), tex(fancyvrb.sty), tex(fvextra.sty), tex(ifthen.sty) +Requires: tex(calc.sty), tex(ifplatform.sty), tex(pdftexcmds.sty), tex(etoolbox.sty) +Requires: tex(xstring.sty), tex(lineno.sty), tex(xcolor.sty), tex(framed.sty) +Requires: tex(newfloat.sty) +BuildArch: noarch + +%description -n texlive-minted +The package that facilitates expressive syntax highlighting in +LaTeX using the powerful Pygments library. The package also +provides options to customize the highlighted source code +output using fancyvrb. + +%package -n texlive-minted-doc +Summary: Documentation for minted +License: LPPL-1.3c +Version: svn75223 +Provides: tex-minted-doc +AutoReqProv: No +BuildArch: noarch + +%description -n texlive-minted-doc +Documentation for minted + +%package -n %{shortname}-ppmcheckpdf +Version: svn74165 +Provides: texlive-ppmcheckpdf = %{epoch}:%{source_date}-%{release} +Provides: tex-ppmcheckpdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-ppmcheckpdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ppmcheckpdf-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Convert PDF to PNG and compare PNG files after l3build +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ppmcheckpdf +The build system l3build normally writes the contents of +some boxes from .lvt files into corresponding .tlg files. +Sometimes a dependent package adds e.g. the command \kern0pt, +so that test files fail, even if the PDF files look the same +as before and are still correct. + +The ppmcheckpdf tool offers an alternative option for regression +testing: instead of printing the contents of boxes in .lvt files, +PDF files are converted to PNG files and you can compare the PNG +files after l3build has finished its work. + +%package -n %{shortname}-runtexshebang +Version: svn68882 +Provides: texlive-runtexshebang = %{epoch}:%{source_date}-%{release} +Provides: tex-runtexshebang = %{epoch}:%{source_date}-%{release} +Provides: texlive-runtexshebang-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-runtexshebang-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: A Lua script running LaTeX document files with TeX-style shebang +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-runtexshebang +In short, a TeX-style shebang (%#!) is a special kind of TeX +comment that you include in your TeX/LaTeX document file to +tell the operating system's shell how to run the file for the +rest of the file: %#!lualatex foo.tex \documentclass{article} +\begin{document} Hello, {\LaTeX} World! Happy {\TeX}ing. +\end{document} If you are using a TeX-style shebang, it must +appear on the line that matched 20 lines or less in your LaTeX +document, and it has to start with a TeX comment symbol (%) +followed by a hash sign (#) and an exclamation mark (!), +colloquially known as the bang, hence the name shebang for +TeX/LaTeX. + +%package -n %{shortname}-sqltex +Version: svn72396 +Provides: texlive-sqltex = %{epoch}:%{source_date}-%{release} +Provides: tex-sqltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-sqltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-sqltex-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.0 +Summary: An SQL Preprocessor for LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-sqltex +SQLTeX is a preprocessor that enables the use of SQL statements +in LaTeX. The SQLTeX perl script reads an input file containing +the LaTeX source with SQL commands, and writes a LaTeX file in +which the SQL commands have been replaced by the values from +their execution. It is possible to select a field for +substitution in your LaTeX document, or to be used as input in +another SQL command. (When an SQL command returns multiple +fields and/or rows, the values can only be used within the +document.) The default is to use MySQL databases, but Pg, +Sybase, Oracle, Ingres, mSQL and PostgreSQL are also supported. + +%package -n %{shortname}-texblend +Version: svn68961 +Provides: texlive-texblend = %{epoch}:%{source_date}-%{release} +Provides: tex-texblend = %{epoch}:%{source_date}-%{release} +Provides: texlive-texblend-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-texblend-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Compile segments of LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texblend +This tool compiles individual files that are included as parts +of larger documents. It utilizes the preamble of the main +document but disregards all other included files. The main +purpose is to allow fast compilation of particular chapters or +sections, eliminating the need to recompile the entire +document. This facilitates an efficient way to check for +formatting or syntax errors in the particular part of the +document being worked on. + +%package -n %{shortname}-texfindpkg +Version: svn72937 +Provides: texlive-texfindpkg = %{epoch}:%{source_date}-%{release} +Provides: tex-texfindpkg = %{epoch}:%{source_date}-%{release} +Provides: texlive-texfindpkg-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-texfindpkg-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: Query or install TeX packages and their dependencies +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texfindpkg +This package makes it easy to query or install TeX packages and +their dependencies by file names, command names or environment +names. TeXFindPkg supports both TeX Live and MiKTeX +distributions. At present it focuses mainly on LaTeX packages, +but may be extended to ConTeXt packages if anyone would like to +contribute. + +%package -n %{shortname}-typog +Version: svn71883 +Provides: texlive-typog = %{epoch}:%{source_date}-%{release} +Provides: tex-typog = %{epoch}:%{source_date}-%{release} +Provides: texlive-typog-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-typog-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Typographic fine-tuning and micro-typographic enhancements +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-typog +This package provides macros for micro-typographic +enhancements. It covers a variety of topics: Precise +hyphenation control Disable/break ligatures Manual italic +correction Extra kerning for slash and hyphen Raising selected +characters (e.g. hyphen, en-dash, and em-dash) Aligning of the +last line of a paragraph Filling of the last line of a +paragraph Word spacing control Microtype front-end Slightly +sloppy paragraphs Vertically partially-tied paragraphs +Breakable displayed equations Setspace front-end Smooth +ragged-right paragraphs Moreover, typog provides an environment +to flag interesting parts of the information deluge typically +accumulating in a LaTeX log-file and an associated tool, +typog-grep, that selectively retrieves these parts. + %prep -%autosetup -c -n texlive-20210325-source -p1 -[ -e texlive-20210325-source ] && mv texlive-20210325-source source +%setup -q -c -T +# xz -dc %%{SOURCE0} | tar x +tar xf %{SOURCE0} +[ -e %{source_name} ] && mv %{source_name} source +%patch -P1 -p0 +##%patch -P2 -p1 -b .format +%patch -P5 -p0 +%if %{with poppler} +%if 0%{?fedora} || 0%{?rhel} >= 8 +%patch -P7 -p1 -b .newpoppler +%endif +%endif +##%patch -P8 -p1 -b .texinfo-fix +# %%patch -P11 -p1 -b .dt +# %%patch -P15 -p1 -b .disabletest +%patch -P17 -p1 -b .annocheck +%if %{with poppler} +%if 0%{?fedora} || 0%{?rhel} >= 8 +%patch -P18 -p1 -b .poppler-0.73 +%endif +%if 0%{?fedora} || 0%{?rhel} >= 8 +%patch -P23 -p1 -b .poppler-0.84 +%endif +%if 0%{?fedora} >= 33 || 0%{?rhel} >= 9 +%patch -P29 -p1 -b .poppler090 +%endif +%endif +%patch -P30 -p1 -b .out_of_memory +%if %{with poppler} +%patch -P31 -p1 -b .poppler-xpdf-fix +%if 0%{?fedora} >= 36 || 0%{?rhel} > 9 +%patch -P34 -p1 -b .poppler22 +%patch -P35 -p1 -b .poppler-crash-fix +%endif +%if 0%{?fedora} >= 37 || 0%{?rhel} > 9 +%patch -P36 -p1 -b .poppler-22.08.0 +%endif +%else +##%patch -P32 -p1 -b .configure-no-GfxFont-decRefCnt +%endif +%if 0%{?fedora} >= 38 || 0%{?rhel} > 9 +%patch -P37 -p1 -b .libpaper2 +%endif +# Setup copies of the licenses for l in `unxz -c %{SOURCE3} | tar t`; do -ln -s %{_datadir}/texlive/licenses/$l $l +ln -s %{_texdir}/licenses/$l $l done +%patch -P44 -p1 -b .pdf-header-order-fix +%patch -P49 -p1 -b .gcc-15-ftbfs + +# EUC-JP test fail +sed -i "s/4992449/5992449/g" source/texk/web2c/euptexdir/tests/*.log +sed -i "s/5000000/6000000/g" source/texk/web2c/euptexdir/tests/*.log +sed -i "s/4992452/5992452/g" source/texk/web2c/euptexdir/tests/*.log + +# Disable broken tests +# updmap-cmdline-test.pl is not useful and it will fail because it finds the system perl bits instead of the local copy +sed -i 's|TESTS = tests/updmap-cmdline-test.pl||g' source/texk/texlive/Makefile.in +sed -i 's|TESTS = tests/updmap-cmdline-test.pl||g' source/texk/texlive/Makefile.am +# bibtex8 fails on x86_64 and i686, but not really. I think this test might also be using the older system bits +sed -i 's|bibtex8_tests = tests/bibtex8.test|bibtex8_tests =|g' source/texk/bibtex-x/Makefile.in +sed -i 's|bibtex8_tests = tests/bibtex8.test|bibtex8_tests =|g' source/texk/bibtex-x/Makefile.am + +# Value here is "16" not "15" because we have a source0 at index 1. +# Source15 at index 16 is our first "normal" noarch source file. +# Also, this macro has to be here, not at the top, or it will not evaluate properly. :P %global mysources %{lua: for index,value in ipairs(sources) do if index >= 16 then print(value.." ") end end} +# Drop source/libs/xpdf dir, we use system ver (if at all) +#rm -rf source/libs/xpdf + %build + +%if %{without bootstrap} +cat /usr/share/texlive/kpathsea.log || : +# DEBUG +# Okay. Lets look at things. +# 1. /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf should exist and be valid. +ls -l /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf || : +# cat /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf + +# Check for ls-R files +ls -l /usr/share/texlive/texmf-config/ls-R || : +ls -l /usr/share/texlive/texmf-dist/ls-R || : +ls -l /usr/share/texlive/texmf-local/ls-R || : +ls -l /usr/share/texlive/texmf-var/ls-R || : + +# 2. kpsewhich -all fmtutil.cnf +# We should see /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf +kpsewhich -version || : + +kpsewhich --debug -1 -all fmtutil.cnf || : + +# 3. fmtutil-sys --all +# This should recreate all format files, may not be able to do that here (non-root) +fmtutil-sys --all || : + +# 4. mktexfmt latex should succeed +mktexfmt latex || : + +# Make texlive generate latex.fmt, so that multiple threads do not race to +# make it during the xindy build. +cat > dummy.tex << EOF +\documentclass{article} +\begin{document} +This is a document. +\end{document} +EOF +latex dummy.tex +rm -f dummy.* +%endif + +# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118112 %ifarch loongarch64 -export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -fcommon" -export CXXFLAGS="$RPM_OPT_FLAGS -std=c++17 -fno-strict-aliasing -fcommon" +export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" +export CXXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" %else -export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -Werror=format-security -fcommon" -export CXXFLAGS="$RPM_OPT_FLAGS -std=c++17 -fno-strict-aliasing -Werror=format-security -fcommon" +export CFLAGS="$RPM_OPT_FLAGS -std=gnu17 -fno-strict-aliasing -Werror=format-security" +export CXXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -Werror=format-security" %endif -export LDFLAGS="%{build_ldflags}" + cd source PREF=`pwd`/inst -install -d work +mkdir -p work %global _configure ../configure cd work +%if %{without poppler} +export GLIB_LIBS=`pkg-config --libs glib-2.0` +export PAPER_LIBS="-lpaper" +export FONTCONFIG_LIBS=`pkg-config --libs fontconfig` +#export XPDF_INCLUDES="-I/usr/include/xpdf -I/usr/include/xpdf/fofi -I/usr/include/xpdf/goo -I/usr/include/xpdf/splash" +export XPDF_LIBS="-lxpdfcore -lfofi -lgoo -lsplash $GLIB_LIBS $PAPER_LIBS $FONTCONFIG_LIBS" +%endif %configure \ --prefix=$PREF --datadir=$PREF --libdir=$PREF/lib --includedir=$PREF/include --datarootdir=$PREF/share --mandir=$PREF/share/man \ ---infodir=$PREF/share/info --exec_prefix=$PREF --bindir=$PREF/bin --with-system-zlib --with-system-libpng --without-system-xpdf \ ---with-system-gd --without-system-t1lib --without-system-teckit --with-system-freetype2 --with-system-poppler --with-system-zziplib \ +--infodir=$PREF/share/info --exec_prefix=$PREF --bindir=$PREF/bin --with-system-zlib --with-system-libpng \ +--with-system-gd --without-system-t1lib --with-system-teckit --with-system-freetype2 --with-system-zziplib \ --with-system-cairo --with-system-icu --with-system-harfbuzz --with-system-graphite2 --with-system-libgs --with-system-pixman \ --with-system-libpaper --without-system-potrace --with-pic --with-xdvi-x-toolkit=xaw --with-system-mpfr --with-system-gmp \ --enable-shared --enable-compiler-warnings=max --without-cxx-runtime-hack \ ---disable-native-texlive-build --disable-t1utils --disable-psutils --disable-biber --disable-ptexenc --disable-largefile \ ---disable-xindy --disable-xindy-docs --disable-xindy-make-rules \ -%ifarch aarch64 riscv64 loongarch64 ppc64le +--disable-native-texlive-build --disable-t1utils --disable-biber --disable-ptexenc --disable-largefile \ +%if %{without psutils} +--enable-psutils \ +%else +--disable-psutils \ +%endif +%if %{with poppler} +--with-system-poppler --without-system-xpdf \ +%else +--without-system-xpdf \ +%endif +%ifarch %{power64} s390 s390x riscv64 loongarch64 --disable-luajittex --disable-mfluajit --disable-luajithbtex --disable-mfluajit-nowin \ %endif +%if %{without bootstrap} +--enable-xindy \ +%else +--disable-xindy \ +%endif +--disable-xindy-docs --disable-xindy-rules \ --disable-rpath +# disable rpath for i in `find . -name libtool`; do sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' $i sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' $i @@ -6155,46 +8838,64 @@ done %make_build world STRIPPROG=/bin/true STRIP=/bin/true %install -install -d %{buildroot}%{_datadir}/texlive/texmf-config/web2c -install -d %{buildroot}%{_var}/lib/texmf +# make directories +mkdir -p %{buildroot}%{_texdir}/texmf-config/web2c +mkdir -p %{buildroot}%{_texmf_var} -cd %{buildroot}%{_datadir}/texlive/texmf-config/web2c +# make symlinks +pushd %{buildroot}%{_texdir}/texmf-config/web2c ln -s ../../texmf-dist/web2c/updmap.cfg updmap.cfg -cd - +popd -cd %{buildroot}%{_datadir} -install -d texlive/texmf-local/texmf-compat +# make compatibility symlink +pushd %{buildroot}%{_datadir} +mkdir -p texlive/texmf-local/texmf-compat ln -s texlive/texmf-local/texmf-compat texmf -cd - - -install -d %{buildroot}%{_datadir}/fonts -cd %{buildroot}%{_datadir}/fonts +popd + +# make opentype fontdir symlinks +# NOTE: fontawesome, stix, oldstandard are a conflict, so we just add Requires for the +# corresponding system font packages for them. +# NOTE: We might have to handle this differently if there are lots of conflicts later. +# DO NOT MAKE A SYMLINK FOR public/ebgaramond +# The EB Garamond upstream font decided to map some historical flags (i.e., flags +# obsolete for centuries) to the Unicode flag emoji code points. +# Since most other fonts do not include the relevant code points, Fontconfig decides to +# pick up the EB Garamond flags through the fallback font mechanism for almost all +# fonts on the system, including DejaVu Sans, Liberation Sans, etc. +mkdir -p %{buildroot}%{_datadir}/fonts +pushd %{buildroot}%{_datadir}/fonts for i in public/lilyglyphs ; do j=`echo $i | cut -d / -f 2` - ln -s %{_datadir}/texlive/texmf-dist/fonts/opentype/$i $j + ln -s %{_texdir}/texmf-dist/fonts/opentype/$i $j done -cd - +popd -install -d %{buildroot}%{_bindir} +# install binaries +mkdir -p %{buildroot}%{_bindir} rm -f source/inst/bin/man cp -a source/inst/bin/* %{buildroot}%{_bindir} -install -d %{buildroot}%{_libdir} +# install libs +mkdir -p %{buildroot}%{_libdir} cp -d source/inst/lib/*.so* %{buildroot}%{_libdir} cp -a source/inst/lib/pkgconfig %{buildroot}%{_libdir} -install -d %{buildroot}%{_includedir} +# install includes +mkdir -p %{buildroot}%{_includedir} cp -r source/inst/include/* %{buildroot}%{_includedir} -install -d %{buildroot}%{_datadir} -install -d %{buildroot}%{_datadir}/texlive -cd source/inst/share +# install shared files +mkdir -p %{buildroot}%{_datadir} +mkdir -p %{buildroot}%{_texdir} +pushd source/inst/share cp -a info %{buildroot}%{_datadir}/ cp -a man %{buildroot}%{_datadir}/ -cp -a texmf-dist %{buildroot}%{_datadir}/texlive/ -cd - +cp -a texmf-dist %{buildroot}%{_texdir}/ +popd -cd %{buildroot}%{_bindir} +# relocate binaries to %%{_bindir} and fix relative symlinks +pushd %{buildroot}%{_bindir} for i in `find . -type l`; do if [ "`readlink $i | grep '..' | wc -l`" == "1" ]; then l=`readlink $i | sed s,.*texmf,/usr/share/texlive/texmf,` @@ -6202,16 +8903,17 @@ rm -f $i ln -s $l $i fi done -cd - +popd -cd %{buildroot}%{_datadir}/texlive +# install noarch bits +pushd %{buildroot}%{_texdir} echo %{mysources} for noarchsrc in %{mysources}; do xz -dc $noarchsrc | tar x done -cd - - -cd %{buildroot}%{_datadir}/texlive/texmf-dist +popd +# Do the weird noarch bits +pushd %{buildroot}%{_texdir}/texmf-dist xz -dc %{SOURCE5} | tar x xz -dc %{SOURCE6} | tar x xz -dc %{SOURCE7} | tar x @@ -6222,68 +8924,164 @@ xz -dc %{SOURCE11} | tar x xz -dc %{SOURCE12} | tar x xz -dc %{SOURCE13} | tar x xz -dc %{SOURCE14} | tar x -cd - +popd + +# We want the texmf.cnf we patched, not the vanilla one from the kpathsea.tar.xz +cp -a source/texk/kpathsea/texmf.cnf %{buildroot}%{_texdir}/texmf-dist/web2c/texmf.cnf -cp -a source/texk/kpathsea/texmf.cnf %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/texmf.cnf +# Apply fixes +# We do it here because this is the first time we have the complete tree. +# bz1384067 +sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_texdir}/texmf-dist/bibtex/bst/base/acm.bst +sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_texdir}/texmf-dist/bibtex/bst/base/siam.bst -sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_datadir}/texlive/texmf-dist/bibtex/bst/base/acm.bst -sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_datadir}/texlive/texmf-dist/bibtex/bst/base/siam.bst +# Patches to component tarballs +pushd %{buildroot}%{_texdir}/texmf-dist -install -d %{buildroot}%{_sysconfdir}/texlive/web2c -install -d %{buildroot}%{_sysconfdir}/texlive/dvips/config -install -d %{buildroot}%{_sysconfdir}/texlive/tex/generic/config +# neuter tlmgr a bit +patch -p1 < %{_sourcedir}/texlive-20190410-tlmgr-ignore-warning.patch +# Fix texmfcnf.lua +#patch -p1 < %{_sourcedir}/texlive-fedora-texmfcnf.lua.patch -mv %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/mktex.cnf %{buildroot}%{_sysconfdir}/texlive/web2c/ -ln -s %{_sysconfdir}/texlive/web2c/mktex.cnf %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/mktex.cnf -mv %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/texmf.cnf %{buildroot}%{_sysconfdir}/texlive/web2c/ -ln -s %{_sysconfdir}/texlive/web2c/texmf.cnf %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/texmf.cnf -mv %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/updmap.cfg %{buildroot}%{_sysconfdir}/texlive/web2c/ -ln -s %{_sysconfdir}/texlive/web2c/updmap.cfg %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/updmap.cfg +# Fix interpreter on perl scripts +patch -p1 < %{_sourcedir}/texlive-base-20230311-fix-scripts.patch +popd +# config files in /etc symlinked +mkdir -p %{buildroot}%{_sysconfdir}/texlive/web2c +mkdir -p %{buildroot}%{_sysconfdir}/texlive/dvips/config +mkdir -p %{buildroot}%{_sysconfdir}/texlive/tex/generic/config + +for i in mktex.cnf texmfcnf.lua texmf.cnf updmap.cfg; do + mv %{buildroot}%{_texdir}/texmf-dist/web2c/$i %{buildroot}%{_sysconfdir}/texlive/web2c/ + ln -s %{_sysconfdir}/texlive/web2c/$i %{buildroot}%{_texdir}/texmf-dist/web2c/$i +done + +# configure texmf-local - make it visible to kpathsea sed -i -e 's|^TEXMFLOCAL.*|TEXMFLOCAL = $TEXMFROOT/texmf-local//|' %{buildroot}%{_sysconfdir}/texlive/web2c/texmf.cnf -mv %{buildroot}%{_datadir}/texlive/texmf-dist/dvips/config/config.ps %{buildroot}%{_sysconfdir}/texlive/dvips/config/ -ln -s %{_sysconfdir}/texlive/dvips/config/config.ps %{buildroot}%{_datadir}/texlive/texmf-dist/dvips/config/config.ps +mv %{buildroot}%{_texdir}/texmf-dist/dvips/config/config.ps %{buildroot}%{_sysconfdir}/texlive/dvips/config/ +ln -s %{_sysconfdir}/texlive/dvips/config/config.ps %{buildroot}%{_texdir}/texmf-dist/dvips/config/config.ps -mv %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/fmtutil.cnf %{buildroot}%{_sysconfdir}/texlive/web2c/fmtutil.cnf +# Move the stock fmtutil.cnf under /etc and make sure everything is commented out +mv %{buildroot}%{usr_fmtutil_cnf} %{buildroot}%{etc_fmtutil_cnf} sed -i '/^[a-z].*$/s/^/\#\!\ /' %{buildroot}%{_sysconfdir}/texlive/web2c/fmtutil.cnf -mkdir %{buildroot}%{_datadir}/texlive/fmtutil.cnf.d -for i in $(grep '^# from .*:$' %{buildroot}%{_sysconfdir}/texlive/web2c/fmtutil.cnf|sed 's/^# from //; s/:$//'); do - echo "#" > %{buildroot}%{_datadir}/texlive/fmtutil.cnf.d/$i - sed -n "s/^#! //; /^# from $i:\$/,/^#\$/{/^#\$/!p}" %{buildroot}%{_sysconfdir}/texlive/web2c/fmtutil.cnf >> %{buildroot}%{_datadir}/texlive/fmtutil.cnf.d/$i +# Split the stock texmf.cnf file: +# * Look for lines like "# from foo:" and use those as the names of the files +# we generate. +# * Take the text starting at "# from foo:" and ending just before the next +# line containing just '#' (or EOF). +# * remove '#!' +# * Add a single line containing '#' to the beginning +# * Stuff that into a file named "foo" in %%_texdir/fmtutil.cnf.d +# +# This is a bit fragile as the precise format of the stock fmtutil.cnf file +# could change. +# The leading '#' and the "# from foo:" line are added to the output only to +# match the existing format of the file, just in case some tool cares. +mkdir %{buildroot}%{_texdir}/fmtutil.cnf.d +for i in $(grep '^# from .*:$' %{buildroot}%{etc_fmtutil_cnf}|sed 's/^# from //; s/:$//'); do + echo "#" > %{buildroot}%{fmtutil_cnf_d}/$i + sed -n "s/^#! //; /^# from $i:\$/,/^#\$/{/^#\$/!p}" %{buildroot}%{etc_fmtutil_cnf} >> %{buildroot}%{fmtutil_cnf_d}/$i done +# Install the fmtutil.cnf generation script install -D -p -m 755 -t %{buildroot}%{_sbindir} %{SOURCE4} -install -d %{buildroot}%{_rpmmacrodir} +# create macro file for building texlive +mkdir -p %{buildroot}%{_rpmmacrodir} cp -a %{SOURCE1} %{buildroot}%{_rpmmacrodir}/macros.texlive -cp %{SOURCE2} %{buildroot}%{_datadir}/texlive +# install texlive.tlpdb +cp %{SOURCE2} %{buildroot}%{_texdir} +# make a symlink so texdoc is happy +pushd %{buildroot}%{_texdir}/tlpkg +ln -s ../texlive.tlpdb . +popd -install -d %{buildroot}%{_datadir}/texlive/licenses -cd %{buildroot}%{_datadir}/texlive/licenses +# install licenses +mkdir -p %{buildroot}%{_texdir}/licenses +pushd %{buildroot}%{_texdir}/licenses xz -dc %{SOURCE3} | tar x -cd - - -cd %{buildroot}%{_datadir}/texlive +popd + +# nuke useless tlmgr packaging stuff and doc droppings +rm -f %{buildroot}/%{_texdir}/install-tl +rm -rf %{buildroot}%{_texdir}/tlpkg/gpg/ +rm -rf %{buildroot}%{_texdir}/tlpkg/tltcl/ +rm -rf %{buildroot}%{_texdir}/tlpkg/tlpobj/ +rm -rf %{buildroot}%{_texdir}/texmf-dist/tlpkg/tlpobj/ +# texconfig needs tlmgr.pl +# We're only including what it needs, no more. +# rm -f %{buildroot}%{_texdir}/texmf-dist/doc/man/man1/tlmgr.1 +# rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tlmgr.pl +# rm -f %{buildroot}%{_bindir}/tlmgr +# rm -f %{buildroot}%{_texdir}/tlpkg/installer/config.guess +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tlmgr.pl.orig +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tl-errmess.vbs +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tl-errmess.ps1 +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tlmgrgui.pl +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/uninstall-win32.pl +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/uninstall-windows.pl +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/uninstq.vbs +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/uninstq.ps1 +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/tlcockpit/tlcockpit.sh +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/tlshell/tlshell.tcl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/COPYING.MinGW-runtime.txt +rm -f %{buildroot}%{_texdir}/tlpkg/installer/ctan-mirrors.pl +rm -rf %{buildroot}%{_texdir}/tlpkg/installer/curl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-extl.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-perltk.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-text.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-wizard.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-tl-gui.tcl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/texlive.png +rm -f %{buildroot}%{_bindir}/tlcockpit +rm -f %{buildroot}%{_bindir}/tlshell +rm -rf %{buildroot}%{_datadir}/info/dir +rm -rf %{buildroot}%{_texdir}/readme-txt.dir/README.* +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/*.pdf +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/*.pdf +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/Makefile +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/Makefile +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/info/dir +# nuke unwanted ptexenc devel files +rm -rf %{buildroot}%{_includedir}/ptexenc +# nuke context windows files +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/mswin/* +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/win64/* +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/source/* + +# Make this perl module show up in @INC +mkdir -p %{buildroot}%{_datadir}/perl5 +ln -s %{_texdir}/tlpkg/TeXLive %{buildroot}%{_datadir}/perl5/TeXLive + +# not sure why this is here +rm -rf %{buildroot}%{_texdir}/texmf-dist/source/fonts/zhmetrics/ttfonts.map + +pushd %{buildroot}%{_texdir} +# ALWAYS NUKE THIS IF IT IS HERE. rm -rf texmf-var -ln -s %{_var}/lib/texmf texmf-var -cd - +# AND NOW WE MAKE THE SYMLINK. +ln -s %{_texmf_var} texmf-var +popd -cd %{buildroot}%{_bindir} +# sync built/distro binaries +pushd %{buildroot}%{_bindir} [ ! -e mfplain ] && ln -s mpost mfplain [ ! -e texlua ] && ln -s luatex texlua [ ! -e texluac ] && ln -s luatex texluac +# remove latexmk +# This lives in the "latexmk" package in Fedora. rm -f latexmk -rm -rf %{buildroot}%{_datadir}/texlive/texmf-dist/scripts/latexmk +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/latexmk rm -f %{buildroot}%{_datadir}/texlive/texmf-dist/doc/man/man1/latexmk.* -rm -rf %{buildroot}%{_bindir}/teckit_compile - +# Fix symlinks for helper scripts rm -f bibexport.sh ln -s /usr/share/texlive/texmf-dist/scripts/bibexport/bibexport.sh bibexport.sh rm -f texmfstart @@ -6292,49 +9090,136 @@ rm -rf mktexmf ln -s /usr/share/texlive/texmf-dist/scripts/texlive/mktexmf mktexmf rm -rf mkjobtexmf ln -s /usr/share/texlive/texmf-dist/scripts/mkjobtexmf/mkjobtexmf.pl mkjobtexmf +rm -rf digestif +ln -s /usr/share/texlive/texmf-dist/scripts/digestif/digestif.texlua digestif + +# make a mtxrun stub +rm -f mtxrun +cat > mtxrun << EOF +#!/bin/sh +env LUATEXDIR=/usr/share/texlive/texmf-dist/scripts/context/lua luatex --luaonly mtxrun.lua "\$@" +EOF +chmod 0755 mtxrun + +# fix context rm -f context cat > context << EOF +#!/bin/sh export TEXMF=/usr/share/texlive/texmf-dist; export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c; -export TEXMFCACHE=\$HOME/.cache/texlive; +export TEXMFCACHE=\$(realpath \$HOME/.cache/texlive); %{_bindir}/mtxrun --script context "\$@" EOF chmod 0755 context -cd - -install -d %{buildroot}%{_datadir}/ -install -d %{buildroot}%{_infodir}/ -cp -R %{buildroot}%{_datadir}/texlive/texmf-dist/doc/man %{buildroot}%{_datadir}/ -find %{buildroot}%{_datadir}/texlive/texmf-dist/doc/man -type f | xargs rm -f -mv %{buildroot}%{_datadir}/texlive/texmf-dist/doc/info/* %{buildroot}%{_infodir}/ +%if 0 +# fix texaccents +# TODO: Detect snobol4 version rather than hardcoding it here. +rm -f texaccents +cat > texaccents << EOF +#!/bin/sh +env SNOPATH=/usr/lib64/snobol4/2.3.1/lib:/usr/share/texlive/texmf-dist/scripts/texaccents /usr/bin/snobol4 /usr/share/texlive/texmf-dist/scripts/texaccents/texaccents.sno "\$@" +EOF +chmod 0755 texaccents +popd +# more texaccents fixes +mv %{buildroot}%{_texdir}/texmf-dist/source/support/texaccents/* %{buildroot}%{_texdir}/texmf-dist/scripts/texaccents +sed -i 's|host.inc|host.sno|g' %{buildroot}%{_texdir}/texmf-dist/scripts/texaccents/texaccents.sno +sed -i 's|repl.inc|repl.sno|g' %{buildroot}%{_texdir}/texmf-dist/scripts/texaccents/grepl.inc +%endif +rm -rf %{buildroot}%{_bindir}/texaccents +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/texaccents + +# Move docs +mkdir -p %{buildroot}%{_datadir}/ +mkdir -p %{buildroot}%{_infodir}/ +cp -R %{buildroot}%{_texdir}/texmf-dist/doc/man %{buildroot}%{_datadir}/ +find %{buildroot}%{_texdir}/texmf-dist/doc/man -type f | xargs rm -f +mv %{buildroot}%{_texdir}/texmf-dist/doc/info/* %{buildroot}%{_infodir}/ + +# Remove cjk-gs-integrate files +# Yes, we probably should remove the source, but there is a possibility that we will +# re-add this subpackage at some point. +rm -rf %{buildroot}%{_bindir}/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/fonts/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/fonts/misc/cjk-gs-integrate + +# Fix pkgconfig files for file in $(find %{buildroot}%{_libdir}/pkgconfig/ -type f -name '*.pc') -do sed -i 's|%{_builddir}/%{name}-%{version}/source/inst|/usr|g' $file +do sed -i 's|%{_builddir}/%{name}-%{source_date}/source/inst|/usr|g' $file sed -i 's|/usr/lib|%{_libdir}|g' $file done -cd %{buildroot} +# Python fixup +# Change shebang in all relevant files in this directory and all subdirectories +# See `man find` for how the `-exec command {} +` syntax works +pushd %{buildroot} find -type f -exec sed -i '1s|^#!/usr/bin/python$|#!%{__python3}|' {} + find -type f -exec sed -i '1s|^#!/usr/bin/env python$|#!%{__python3}|' {} + -sed -i '1s|^#!/usr/bin/python |#!%{__python3} |' ./%{_datadir}/texlive/texmf-dist/scripts/de-macro/de-macro -cd - +sed -i '1s|^#!/usr/bin/python |#!%{__python3} |' ./%{_texdir}/texmf-dist/scripts/de-macro/de-macro + +# Get rid of the python2 variant bits from pythontex (we need them to generate the py3 bits, but not in the package) +rm -rf ./%{_texdir}/texmf-dist/scripts/pythontex/pythontex2.py +rm -rf ./%{_texdir}/texmf-dist/scripts/pythontex/depythontex2.py +popd + +# One dir to own +mkdir -p %{buildroot}%{_texdir}/texmf-dist/tex/generic/context/third + +%if %{without psutils} +# TeXLive has a fork of psutils +# we namespace those binaries to avoid conflicts with the upstream psutils +pushd %{buildroot}%{_bindir} +for i in epsffit extractres includeres psbook psjoin psnup psresize psselect pstops +do mv $i tl-$i +done +popd +# we also rename the manpages +pushd %{buildroot}%{_mandir}/man1/ +for i in epsffit extractres includeres psbook psjoin psnup psresize psselect pstops psutils +do mv $i.1 tl-$i.1 +done +popd +# and move the config file +mkdir -p %{buildroot}%{_sysconfdir}/texlive/psutils +mv %{buildroot}%{_texdir}/texmf-dist/psutils/paper.cfg %{buildroot}%{_sysconfdir}/texlive/psutils/paper.cfg +ln -s %{_sysconfdir}/texlive/psutils/paper.cfg %{buildroot}%{_texdir}/texmf-dist/psutils/paper.cfg +%else +pushd %{buildroot}%{_mandir}/man1/ +for i in epsffit extractres includeres psbook psjoin psnup psresize psselect pstops psutils +do rm -f $i.1 +done +popd +rm -f %{buildroot}%{_texdir}/texmf-dist/psutils/paper.cfg +rm -f %{buildroot}%{_texdir}/texmf-dist/dvips/getafm/getafm.ps +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/psutils +%endif +# Some (most) of the binaries are ending up with RPATH despite our best efforts. for i in afm2pl afm2tfm aleph bibtex bibtex8 bibtexu chkdvifont chktex ctie ctangle ctwill ctwill-refsort ctwill-twinx cweave detex disdvi dt2dv dv2dt dvi2tty dvibook dviconcat dvicopy dvilj dvilj2p dvilj4 dvilj4l dvipng \ - dvipos dvips dviselect dvispc dvisvgm dvitodvi dvitype eptex euptex gftodvi gftopk gftype gregorio gsftopk hbf2gf kpsewhich luahbtex luatex mag makeindex makejvf mendex mf mflua mft mf-nowin mpost otftotfm msxlint \ + dvipos dvips dviselect dvispc dvisvgm dvitodvi dvitype eptex euptex gftodvi gftopk gftype gregorio gsftopk hbf2gf hitex kpsewhich luahbtex luatex mag makeindex makejvf mendex mf mflua mft mf-nowin mpost otftotfm msxlint \ odvicopy odvitype omfonts otangle otp2ocp outocp patgen pbibtex pdftex pdftosrc pktogf pdvitype pfb2pfa pk2bm pktype pltotf pmpost pooltype ppltotf ps2pk ptex ptftopl synctex t4ht tangle tex tex4ht tftopl tie \ - ttf2afm ttf2pk ttf2tfm ttfdump upbibtex updvitype upmendex upmpost uppltotf uptex uptftopl vftovp vptovf weave wofm2opl wopl2ofm wovf2ovp wovp2ovf xdvi-xaw xdvipdfmx xetex; do +%if %{without psutils} + tl-epsffit tl-psbook tl-psnup tl-psresize tl-psselect tl-pstops \ +%endif + ttf2afm ttf2pk ttf2tfm ttfdump twill upbibtex updvitype upmendex upmpost uppltotf uptex uptftopl vftovp vptovf weave wofm2opl wopl2ofm wovf2ovp wovp2ovf xdvi-xaw xdvipdfmx xetex; do chrpath --delete %{buildroot}%{_bindir}/$i done -%ifnarch aarch64 riscv64 loongarch64 ppc64le -for i in luajittex luajithbtex mfluajit;do -chrpath --delete %{buildroot}%{_bindir}/$i -done +%ifnarch %{power64} s390 s390x riscv64 loongarch64 +chrpath --delete %{buildroot}%{_bindir}/luajithbtex +chrpath --delete %{buildroot}%{_bindir}/luajittex +chrpath --delete %{buildroot}%{_bindir}/mfluajit %endif +# And remove the rpath from this library. chrpath --delete %{buildroot}%{_libdir}/libptexenc.so.* -mv %{buildroot}%{_datadir}/texlive/texmf-dist/fonts/map/dvips/tetex/dvipdfm35.map %{buildroot}%{_datadir}/texlive/texmf-dist/fonts/map/dvips/tetex/dvipdfm35.oldmap +# This map file provided by texlive-scripts is not useful and confuses lots of things when it ends up in pdftex.map +# Renaming it should prevent it from being included +mv %{buildroot}%{_texdir}/texmf-dist/fonts/map/dvips/tetex/dvipdfm35.map %{buildroot}%{_texdir}/texmf-dist/fonts/map/dvips/tetex/dvipdfm35.oldmap %pretrans -p path = "/usr/share/texmf" @@ -6352,28 +9237,40 @@ if st and st.type == "directory" then end %pre -rm -rf %{_datadir}/texlive/texmf-var -rm -rf %{_var}/lib/texmf/* +rm -rf %{_texdir}/texmf-var +rm -rf %{_texmf_var}/* : %posttrans if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then -[ -x /sbin/restorecon ] && /sbin/restorecon -R %{_var}/lib/texmf/ +[ -x /sbin/restorecon ] && /sbin/restorecon -R %{_texmf_var}/ fi : -%transfiletriggerin -n texlive-kpathsea -- %{_datadir}/texlive -%{_bindir}/texhash 2> /dev/null || : +%transfiletriggerin -n %{shortname}-context -- %{_texdir} +export TEXMFLOCAL=/usr/share/texlive/texmf-local +%{_bindir}/mtxrun --generate &> /dev/null || : + +%transfiletriggerin -n %{shortname}-kpathsea -- %{_texdir} +# Commented lines are DEBUG mode +# touch /usr/share/texlive/kpathsea.log +# /usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr --version 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : +# /usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr --verbose 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : +# /usr/bin/sh -x %{_bindir}/texhash 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : +/usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr 2> /dev/null || : export TEXMF=/usr/share/texlive/texmf-dist export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c export TEXMFCACHE=/var/lib/texmf -%{_bindir}/mtxrun --generate &> /dev/null || : +# %{_bindir}/fmtutil-sys --all 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : %{_bindir}/fmtutil-sys --all &> /dev/null || : -%transfiletriggerpostun -n texlive-kpathsea -- %{_datadir}/texlive -%{_bindir}/texhash 2> /dev/null || : +%transfiletriggerpostun -n %{shortname}-kpathsea -- %{_texdir} +/usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr 2> /dev/null || : -%transfiletriggerin -n texlive-kpathsea -- %{_datadir}/texlive/texmf-dist/fonts/map/dvips/ +%transfiletriggerin -n %{shortname}-kpathsea -- %{_texdir}/texmf-dist/fonts/map/dvips/ +# MixedMap list, from directory with _EVERY_ tex subpackage unpacked: for i in `grep -r "addMixedMap" tlpkg/ |cut -d ":" -f 2- | sort -n | uniq | cut -d " " -f 3`; do printf "$i|"; done +# Map list, from directory with _EVERY_ tex subpackage unpacked: for i in `grep -r "addMap" tlpkg/ |cut -d ":" -f 2- | sort -n | uniq | cut -d " " -f 3`; do printf "$i|"; done +# NO OTHER MAPS SHOULD BE ADDED. That road leads to madness. list=`grep "\.map" | sort -n | uniq` while read -r line; do [ -z "$line" ] && continue @@ -6386,351 +9283,451 @@ while read -r line; do fi fi done <<< "$list" -# No updmap-map now, so we need to make system maps here. +# With the demise of updmap-map, we need to make system maps here. +# %{_bindir}/updmap-sys --quiet --nomkmap >/dev/null || : yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/updmap-sys --quiet --force 2>&1 || : -%transfiletriggerpostun -n texlive-kpathsea -- %{_datadir}/texlive/texmf-dist/fonts/map/dvips/ +%transfiletriggerpostun -n %{shortname}-kpathsea -- %{_texdir}/texmf-dist/fonts/map/dvips/ +# I am not sure we need to do this, but it is not harmful. +# TODO: see if we can safely remove everything above the updmap-sys calls list=`grep "\.map" | sort -n | uniq` while read -r line; do [ -z "$line" ] && continue shortfile=`basename "$line"` - if `echo $shortfile | grep -Eq 'allrunes.map|arabtex.map|arss.map|artm.map|bbold.map|cbgreek-full.map|ccpl.map|cmextra.map|cmll.map|cm.map|cm-super-t1.map|cm-super-t2a.map|cm-super-t2b.map|cm-super-t2c.map|cm-super-ts1.map|cm-super-x2.map|cmtext-bsr-interpolated.map|cyrillic.map|dvng.map|esint.map|ethiop.map|eurosym.map|hfbright.map|iby.map|latxfont.map|lxfonts.map|manfnt.map|mflogo.map|mongolian.map|musix.map|pigpen.map|plother.map|pltext.map|rsfs.map|semaf.map|stmaryrd.map|symbols.map|tipa.map|trajan.map|vnrother.map|vnrtext.map|wasy.map|xypic.map|yhmath.map'`; then + if `echo $shortfile | grep -Eq 'allrunes.map|arabtex.map|arss.map|artm.map|bbold.map|cbgreek-full.map|ccpl.map|cmextra.map|cmll.map|cm.map|cm-super-t1.map|cm-super-t2a.map|cm-super-t2b.map|cm-super-t2c.map|cm-super-ts1.map|cm-super-x2.map|cmtext-bsr-interpolated.map|cmupint.map|cyrillic.map|esint.map|ethiop.map|eurosym.map|hfbright.map|iby.map|latxfont.map|lxfonts.map|manfnt.map|mflogo.map|mongolian.map|musix.map|pigpen.map|plother.map|pltext.map|rsfs.map|semaf.map|stmaryrd.map|symbols.map|tipa.map|trajan.map|vnrother.map|vnrtext.map|wasy.map|xypic.map|yhmath.map'`; then %{_bindir}/updmap-sys --nomkmap --disable MixedMap=$shortfile >/dev/null 2>&1 || : else - %{_bindir}/updmap-sys --nomkmap --disable Map=$shortfile >/dev/null 2>&1 || : + if `echo $shortfile | grep -Eq 'accanthis.map|Acorn.map|aesupp.map|Alegreya.map|AlgolRevived.map|almendra.map|AnnSton.map|AnonymousPro.map|antt.map|ap.map|arabi.map|archaicprw.map|arev.map|arevvn.map|arimo.map|ArrowsADF.map|ArtNouvc.map|ArtNouv.map|ascii.map|ascmac.map|aspectratio.map|atkinson.map|augie.map|auncial.map|aurical.map|Baskervaldx.map|BaskervilleF.map|belleek.map|bera.map|beuron.map|bguq.map|bitter.map|bkaiu.map|boondox.map|bsmiu.map|BulletsADF.map|burmese.map|cabin.map|caladea.map|calligra.map|cantarell.map|carlito.map|Carrickc.map|CascadiaCodThree.map|ccicons.map|charter.map|chartervn.map|chemarrow.map|cherokee.map|Chivo.map|cinzel.map|cjhebrew.map|Clara.map|ClearSans.map|clm.map|cmathbb.map|cmbrightvn.map|cmcyr.map|cmexb.map|cmin.map|cm-lgc.map|cmsrb.map|Cochineal.map|Coelacanth.map|comfortaa.map|ComicNeueAngular.map|ComicNeue.map|concretevn.map|CormorantGaramond.map|countriesofeurope.map|CourierOneZeroPitch.map|crimson.map|CrimsonPro.map|cs-charter.map|csfonts.map|cuprum.map|cyklop.map|dad.map|dante.map|dejavu-type1.map|dgj.map|dictsym.map|dmj.map|Domitian.map|droidsans.map|droidsansmono.map|droidserif.map|DSSerif.map|dstroke.map|dutchcal.map|EBGaramond.map|EBGaramond-Maths.map|Eichenla.map|EileenBl.map|Eileen.map|Elzevier.map|epigrafica.map|epiolmec.map|erewhon.map|esrelation.map|ESSTIX.map|esvect.map|ETbb.map|fbb.map|fdsymbol.map|fetamont.map|fge.map|fira.map|foekfont.map|fonetika.map|fontawesome5.map|fontawesome.map|forum.map|fourier.map|fourier-utopia-expert.map|fpls.map|frcursive.map|GaramondLibre.map|garuda-c90.map|gbsnu.map|gentium-type1.map|gfsartemisia.map|gfsbaskerville.map|gfsbodoni.map|gfscomplutum.map|gfsdidot.map|gfsneohellenic.map|gfsporson.map|gfssolomos.map|gillius.map|gkaiu.map|go.map|GotIn.map|GoudyIn.map|gptimes.map|grotesqvn.map|Gudea.map|hacm.map|Heuristica.map|HindMadurai.map|ibarra.map|icelandic.map|imfellEnglish.map|InriaSans.map|InriaSerif.map|Inter.map|ipaex-type1.map|iwona.map|josefin.map|Junicode.map|kerkis.map|Kinigcap.map|knitfont.map|Konanur.map|kpfonts.map|Kramer.map|kurier.map|l7x-urwvn.map|lato.map|libertinegc.map|libertine.map|libertinus.map|libertinust1math.map|LibreBaskerville.map|LibreBodoni.map|LibreCaslon.map|LibreFranklin.map|linearA.map|LinguisticsPro.map|lm.map|LobsterTwo.map|Magra.map|marcellus.map|marvosym.map|mathabx.map|mc2j.map|mcj.map|mdbch.map|mdgreek.map|mdici.map|mdpgd.map|mdpus.map|mdput.map|mdsymbol.map|mdugm.map|merriweather.map|miama.map|mintspirit.map|mlm.map|MnSymbol.map|Montserrat.map|MorrisIn.map|mr2j.map|mrj.map|mxedruli.map|nanumfonts.map|nectec.map|newpx.map|newtx.map|newtxsf.map|newtxtt.map|nf.map|niceframe.map|nimbus15.map|norasi-c90.map|noto.map|NotoMath.map|Nouveaud.map|oasy.map|ocrb.map|oinuit.map|OldStandard.map|omega.map|opensans.map|OrnementsADF.map|overlock.map|paratype-type1.map|pazo.map|pbsi.map|phaistos.map|PlayfairDisplay.map|plex.map|plimsoll.map|PoiretOne.map|prodint.map|pxfonts.map|pxtx.map|qag.map|qbk.map|qcr.map|qcs.map|qhv.map|qpl.map|qtm.map|quattrocento.map|qzc.map|Raleway.map|recycle.map|roboto.map|rojud.map|Romantik.map|Rosario.map|Rothdn.map|RoyalIn.map|rsfso.map|Sanremo.map|sansmathaccent.map|sansmathfonts.map|scanpages.map|ScholaX.map|sipa.map|SkakNew.map|skt.map|SourceCodePro.map|SourceSansPro.map|SourceSerifPro.map|spectral.map|sqrcaps.map|Starburst.map|starfont.map|STEPGreekTest.map|STEP.map|SticksTooText.map|stix2.map|stix.map|superiors.map|svrsymbols.map|syriac.map|tabvar.map|tempora.map|tfrupee.map|TheanoDidot.map|TheanoModern.map|TheanoOldStyle.map|tinos.map|tlwg.map|txfonts.map|txttvn.map|TXUprCal.map|Typocaps.map|uag.map|uaq.map|ubk.map|ucr.map|ugq.map|uhv.map|umj.map|unc.map|universalis.map|upl.map|urwvn.map|usy.map|utm.map|utopia.map|uzc.map|uzd.map|vntopia.map|XCharter.map|ybd.map|ybv.map|yes.map|yfrak.map|yly.map|yrd.map|yv1.map|yv2.map|yv3.map|yvo.map|yvt.map|Zallman.map|Zeroswald.map|zi4.map'`; then + %{_bindir}/updmap-sys --nomkmap --disable Map=$shortfile >/dev/null 2>&1 || : + fi fi done <<< "$list" -# No updmap-map now, so we need to make system maps here. +# With the demise of updmap-map, we need to make system maps here. +# %{_bindir}/updmap-sys --quiet --nomkmap >/dev/null || : yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/updmap-sys --quiet --force 2>&1 || : -%transfiletriggerin -n texlive-kpathsea -P 2000000 -- %{_datadir}/texlive/fmtutil.cnf.d/ -%{_sbindir}/generate-fmtutilcnf %{_datadir}/texlive +%transfiletriggerin -n %{shortname}-kpathsea -P 2000000 -- %{_texdir}/fmtutil.cnf.d/ +%{_sbindir}/generate-fmtutilcnf %{_texdir} -%transfiletriggerpostun -n texlive-kpathsea -P 2000000 -- %{_datadir}/texlive/fmtutil.cnf.d/ -%{_sbindir}/generate-fmtutilcnf %{_datadir}/texlive +%transfiletriggerpostun -n %{shortname}-kpathsea -P 2000000 -- %{_texdir}/fmtutil.cnf.d/ +%{_sbindir}/generate-fmtutilcnf %{_texdir} %files -%{_datadir}/texlive/licenses/ -%{_datadir}/texlive/texlive.tlpdb +%{_texdir}/licenses/ +%{_texdir}/texlive.tlpdb +%{_texdir}/tlpkg/texlive.tlpdb %{_rpmmacrodir}/macros.texlive -%dir %{_sysconfdir}/texlive -%dir %{_sysconfdir}/texlive/dvips -%dir %{_sysconfdir}/texlive/dvips/config -%dir %{_sysconfdir}/texlive/tex -%dir %{_sysconfdir}/texlive/tex/generic -%dir %{_sysconfdir}/texlive/tex/generic/config -%dir %{_sysconfdir}/texlive/web2c -%dir %{_datadir}/texlive -%dir %{_datadir}/texlive/texmf-dist -%dir %{_datadir}/texlive/texmf-dist/bibtex/ -%dir %{_datadir}/texlive/texmf-dist/bibtex/csf -%dir %{_datadir}/texlive/texmf-dist/bibtex/csf/base -%dir %{_datadir}/texlive/texmf-dist/doc -%dir %{_datadir}/texlive/texmf-dist/doc/info -%dir %{_datadir}/texlive/texmf-dist/doc/man -%dir %{_datadir}/texlive/texmf-dist/doc/man/man1 -%dir %{_datadir}/texlive/texmf-dist/doc/man/man5 -%dir %{_datadir}/texlive/texmf-dist/dvips -%dir %{_datadir}/texlive/texmf-dist/dvips/config -%dir %{_datadir}/texlive/texmf-dist/fonts -%dir %{_datadir}/texlive/texmf-dist/fonts/cmap -%dir %{_datadir}/texlive/texmf-dist/fonts/enc -%dir %{_datadir}/texlive/texmf-dist/fonts/enc/dvips -%dir %{_datadir}/texlive/texmf-dist/fonts/map -%dir %{_datadir}/texlive/texmf-dist/fonts/map/dvips -%dir %{_datadir}/texlive/texmf-dist/fonts/map/glyphlist -%dir %{_datadir}/texlive/texmf-dist/fonts/sfd -%dir %{_datadir}/texlive/texmf-dist/scripts -%dir %{_datadir}/texlive/texmf-dist/scripts/texlive -%dir %{_datadir}/texlive/texmf-dist/source -%dir %{_datadir}/texlive/texmf-dist/source/fonts -%dir %{_datadir}/texlive/texmf-dist/source/fonts/zhmetrics -%dir %{_datadir}/texlive/texmf-dist/tex -%dir %{_datadir}/texlive/texmf-dist/tex/generic -%dir %{_datadir}/texlive/texmf-dist/tex/generic/bibtex -%dir %{_datadir}/texlive/texmf-dist/tex/generic/config -%dir %{_datadir}/texlive/texmf-dist/tex/latex -%dir %{_datadir}/texlive/texmf-dist/tex/lualatex -%dir %{_datadir}/texlive/texmf-dist/tex/luatex -%dir %{_datadir}/texlive/texmf-dist/tex/xelatex -%dir %{_datadir}/texlive/texmf-dist/web2c +# Mostly we own directories. +%dir %{_sysconfdir}/%{shortname} +%dir %{_sysconfdir}/%{shortname}/dvips +%dir %{_sysconfdir}/%{shortname}/dvips/config +%dir %{_sysconfdir}/%{shortname}/tex +%dir %{_sysconfdir}/%{shortname}/tex/generic +%dir %{_sysconfdir}/%{shortname}/tex/generic/config +%dir %{_sysconfdir}/%{shortname}/web2c +%dir %{_texdir} +%dir %{_texdir}/texmf-dist +%dir %{_texdir}/texmf-dist/bibtex/ +%dir %{_texdir}/texmf-dist/bibtex/csf +%dir %{_texdir}/texmf-dist/bibtex/csf/base +%dir %{_texdir}/texmf-dist/doc +%dir %{_texdir}/texmf-dist/doc/info +%dir %{_texdir}/texmf-dist/doc/man +%dir %{_texdir}/texmf-dist/doc/man/man1 +%dir %{_texdir}/texmf-dist/doc/man/man5 +%dir %{_texdir}/texmf-dist/dvips +%dir %{_texdir}/texmf-dist/dvips/config +%dir %{_texdir}/texmf-dist/fonts +%dir %{_texdir}/texmf-dist/fonts/cmap +%dir %{_texdir}/texmf-dist/fonts/enc +%dir %{_texdir}/texmf-dist/fonts/enc/dvips +%dir %{_texdir}/texmf-dist/fonts/map +%dir %{_texdir}/texmf-dist/fonts/map/dvips +%dir %{_texdir}/texmf-dist/fonts/map/glyphlist +%dir %{_texdir}/texmf-dist/fonts/sfd +%dir %{_texdir}/texmf-dist/scripts +%dir %{_texdir}/texmf-dist/scripts/texlive +%dir %{_texdir}/texmf-dist/source +%dir %{_texdir}/texmf-dist/source/fonts +%dir %{_texdir}/texmf-dist/source/fonts/zhmetrics +%dir %{_texdir}/texmf-dist/tex +%dir %{_texdir}/texmf-dist/tex/generic +%dir %{_texdir}/texmf-dist/tex/generic/bibtex +%dir %{_texdir}/texmf-dist/tex/generic/config +%dir %{_texdir}/texmf-dist/tex/latex +%dir %{_texdir}/texmf-dist/tex/lualatex +%dir %{_texdir}/texmf-dist/tex/luatex +%dir %{_texdir}/texmf-dist/tex/xelatex +%dir %{_texdir}/texmf-dist/web2c %dir %{_texmf_var} -%{_datadir}/texlive/texmf-var -%{_datadir}/texlive/texmf-local/ +%doc %{_texdir}/doc.html +%{_texdir}/texmf-var +%{_texdir}/texmf-local/ %{_datadir}/texmf %ghost %{_datadir}/texmf.rpmmoved -%exclude %{_datadir}/texlive/install-tl -%exclude %{_datadir}/texlive/tlpkg/gpg/ -%exclude %{_datadir}/texlive/tlpkg/tltcl/ -%exclude %{_datadir}/texlive/tlpkg/tlpobj/ -%exclude %{_datadir}/texlive/texmf-dist/tlpkg/tlpobj/ - -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/tlmgr.pl.orig -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/tl-errmess.vbs -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/tlmgrgui.pl -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/uninstall-win32.pl -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/uninstq.vbs -%exclude %{_datadir}/texlive/texmf-dist/scripts/tlcockpit/tlcockpit.sh -%exclude %{_datadir}/texlive/texmf-dist/scripts/tlshell/tlshell.tcl -%exclude %{_datadir}/texlive/tlpkg/installer/COPYING.MinGW-runtime.txt -%exclude %{_datadir}/texlive/tlpkg/installer/ctan-mirrors.pl -%exclude %{_datadir}/texlive/tlpkg/installer/install-menu-extl.pl -%exclude %{_datadir}/texlive/tlpkg/installer/install-menu-perltk.pl -%exclude %{_datadir}/texlive/tlpkg/installer/install-menu-text.pl -%exclude %{_datadir}/texlive/tlpkg/installer/install-menu-wizard.pl -%exclude %{_datadir}/texlive/tlpkg/installer/install-tl-gui.tcl -%exclude %{_datadir}/texlive/tlpkg/installer/texlive.png -%exclude %{_bindir}//tlcockpit -%exclude %{_bindir}//tlshell -%exclude %{_datadir}/info/dir -%exclude %{_datadir}/texlive/readme-txt.dir/README.* -%exclude %{_datadir}/texlive/texmf-dist/doc/man/man*/*.pdf -%exclude %{_datadir}/texlive/texmf-dist/doc/man/man*/*.pdf -%exclude %{_datadir}/texlive/texmf-dist/doc/man/Makefile -%exclude %{_datadir}/texlive/texmf-dist/doc/man/man*/Makefile -%exclude %{_datadir}/texlive/texmf-dist/doc/info/dir -%exclude %{_includedir}/ptexenc - -%exclude %{_bindir}/cjk-gs-integrate -%exclude %{_datadir}/texlive/texmf-dist/scripts/cjk-gs-integrate -%exclude %{_datadir}/texlive/texmf-dist/doc/fonts/cjk-gs-integrate -%exclude %{_datadir}/texlive/texmf-dist/fonts/misc/cjk-gs-integrate - -%exclude %{_datadir}/texlive/texmf-dist/scripts/context/stubs/mswin/* -%exclude %{_datadir}/texlive/texmf-dist/scripts/context/stubs/win64/* -%exclude %{_datadir}/texlive/texmf-dist/scripts/context/stubs/source/* - -%exclude %{_datadir}/texlive/texmf-dist/source/fonts/zhmetrics/ttfonts.map -# Don't know why it's here -%exclude %{_datadir}/man/man1/*.man1.pdf.gz -%exclude %{_datadir}/man/man5/*.man5.pdf.gz -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/extractres.pl -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/includeres.pl -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/psjoin.pl - -# Look, we disabled psutils. -%exclude %{_bindir}/epsffit -%exclude %{_bindir}/extractres -%exclude %{_bindir}/includeres -%exclude %{_bindir}/psbook -%exclude %{_bindir}/psjoin -%exclude %{_bindir}/psnup -%exclude %{_bindir}/psresize -%exclude %{_bindir}/psselect -%exclude %{_bindir}/pstops -%exclude %{_mandir}/man1/epsffit.1* -%exclude %{_mandir}/man1/extractres.1* -%exclude %{_mandir}/man1/includeres.1* -%exclude %{_mandir}/man1/psbook.1* -%exclude %{_mandir}/man1/psjoin.1* -%exclude %{_mandir}/man1/psnup.1* -%exclude %{_mandir}/man1/psresize.1* -%exclude %{_mandir}/man1/psselect.1* -%exclude %{_mandir}/man1/pstops.1* -%exclude %{_mandir}/man1/psutils.1* -%exclude %{_sysconfdir}/texlive/psutils -%exclude %{_datadir}/texlive/texmf-dist/scripts/psutils -%exclude %{_datadir}/texlive/texmf-dist/dvips/getafm/ -%exclude %{_datadir}/texlive/texmf-dist/psutils/paper.cfg - -%files -n texlive-a2ping +# same file in perl-LaTeX-ToUnicode +%exclude %{_bindir}/ltx2unitxt +%exclude %{_texdir}/texmf-dist/scripts/bibtexperllibs/ltx2unitxt + + +%files -n %{shortname}-aomart +%license lppl1.3.txt +%{_bindir}/aom-fullref +%{_texdir}/texmf-dist/scripts/aomart +%{_texdir}/texmf-dist/tex/latex/aomart +%{_texdir}/texmf-dist/bibtex/bst/aomart +%{_mandir}/man1/aom-fullref.1* +%doc %{_texdir}/texmf-dist/doc/latex/aomart + +%files -n %{shortname}-bookshelf +%license lppl1.3.txt +%{_bindir}/bookshelf-listallfonts +%{_bindir}/bookshelf-mkfontsel +%{_mandir}/man1/bookshelf-listallfonts.1.* +%{_mandir}/man1/bookshelf-mkfontsel.1.* +%doc %{_texdir}/texmf-dist/doc/latex/bookshelf +%{_texdir}/texmf-dist/tex/latex/bookshelf +%{_texdir}/texmf-dist/bibtex/bst/bookshelf +%{_texdir}/texmf-dist/scripts/bookshelf + +%files -n %{shortname}-easydtx +%license gpl3.txt +%{_bindir}/edtx2dtx +%{_texdir}/texmf-dist/scripts/easydtx/ +%{_mandir}/man1/edtx2dtx.1* +##%{_texdir}/texmf-dist/tex/latex/wordcount/ +%doc %{_texdir}/texmf-dist/doc/support/easydtx/ + +%files -n %{shortname}-eolang +%license mit.txt +%{_bindir}/eolang +%{_texdir}/texmf-dist/scripts/eolang +%{_mandir}/man1/eolang.1* +%doc %{_texdir}/texmf-dist/doc/latex/eolang +%{_texdir}/texmf-dist/tex/latex/eolang + +%files -n %{shortname}-expltools +%license lppl1.3.txt +%{_bindir}/explcheck +%{_texdir}/texmf-dist/scripts/expltools/ +##%{_texdir}/texmf-dist/tex/latex/expltools +%doc %{_texdir}/texmf-dist/doc/support/expltools + +%files -n %{shortname}-extractbb +%license cc-by-sa-4.txt +##%{_bindir}/wordcount +%{_texdir}/texmf-dist/scripts/extractbb/ +##%{_texdir}/texmf-dist/tex/latex/extractbb +%doc %{_texdir}/texmf-dist/doc/support/extractbb + +%files -n %{shortname}-l3sys-query +%license mit.txt +%{_bindir}/l3sys-query +%{_texdir}/texmf-dist/scripts/l3sys-query/ +##%{_texdir}/texmf-dist/tex/latex/l3sys-query +%{_mandir}/man1/l3sys-query.1.* +%doc %{_texdir}/texmf-dist/doc/support/l3sys-query/ + +%files -n texlive-markdown-doc +%license lppl1.3.txt +%{_texdir}/texmf-dist/doc/generic/markdown/ +%{_texdir}/texmf-dist/doc/context/third/markdown/ +%{_texdir}/texmf-dist/doc/latex/markdown/ + +%files -n texlive-markdown +%license lppl1.3.txt +%{_bindir}/markdown2tex +%{_mandir}/man1/markdown2tex.1.* +%{_texdir}/texmf-dist/tex/generic/markdown/ +%{_texdir}/texmf-dist/tex/latex/markdown/ +%{_texdir}/texmf-dist/tex/luatex/markdown/ +%{_texdir}/texmf-dist/tex/context/third/markdown/ +%{_texdir}/texmf-dist/scripts/markdown/markdown-cli.lua +%{_texdir}/texmf-dist/scripts/markdown/markdown2tex.lua + +%files -n %{shortname}-memoize +%license lppl1.3.txt +%{_bindir}/memoize-clean.pl +%{_bindir}/memoize-clean.py +%{_bindir}/memoize-extract.pl +%{_bindir}/memoize-extract.py +%{_texdir}/texmf-dist/scripts/memoize/ +%{_texdir}/texmf-dist/tex/plain/memoize/ +%{_texdir}/texmf-dist/tex/latex/memoize/ +%{_texdir}/texmf-dist/tex/generic/memoize +%doc %{_texdir}/texmf-dist/doc/generic/memoize +%{_mandir}/man1/memoize-clean* +%{_mandir}/man1/memoize-extract* + +%files -n texlive-minted +%license lppl1.3.txt +%{_bindir}/latexminted +%{_texdir}/texmf-dist/tex/latex/minted/ +%{_texdir}/texmf-dist/scripts/minted/ + +%files -n texlive-minted-doc +%license lppl1.3.txt +%{_texdir}/texmf-dist/doc/latex/minted/ +%{_mandir}/man1/latexminted* + +%files -n %{shortname}-ppmcheckpdf +%license lppl1.3.txt +%{_bindir}/ppmcheckpdf +%{_texdir}/texmf-dist/scripts/ppmcheckpdf/ +%{_mandir}/man1/ppmcheckpdf.1.* +%doc %{_texdir}/texmf-dist/doc/support/ppmcheckpdf + +%files -n %{shortname}-runtexshebang +%license mit.txt +%{_bindir}/runtexshebang +%{_texdir}/texmf-dist/scripts/runtexshebang/ +##%{_texdir}/texmf-dist/tex/latex/runtexshebang +##%{_mandir}/man1/runtexshebang.1.* +%doc %{_texdir}/texmf-dist/doc/support/runtexshebang + +%files -n %{shortname}-sqltex +%license lppl1.txt +%{_bindir}/sqltex +%{_texdir}/texmf-dist/scripts/sqltex/ +##%{_texdir}/texmf-dist/tex/latex/sqltex +##%{_mandir}/man1/sqltex.1.* +%doc %{_texdir}/texmf-dist/doc/support/sqltex +##%doc %{_texdir}/texmf-dist/doc/generic/sqltex + +%files -n %{shortname}-texblend +%license lppl1.3.txt +%{_bindir}/texblend +%{_texdir}/texmf-dist/scripts/texblend/ +##%{_texdir}/texmf-dist/tex/latex/texblend +##%{_mandir}/man1/texblend.1.* +%doc %{_texdir}/texmf-dist/doc/support/texblend + +%files -n %{shortname}-texfindpkg +%license gpl3.txt +%{_bindir}/texfindpkg +%{_texdir}/texmf-dist/scripts/texfindpkg/ +%{_texdir}/texmf-dist/tex/latex/texfindpkg +%{_mandir}/man1/texfindpkg.1.* +%doc %{_texdir}/texmf-dist/doc/support/texfindpkg + +%files -n %{shortname}-typog +%license lppl1.3.txt +%{_bindir}/typog-grep +%{_texdir}/texmf-dist/scripts/typog/ +%{_texdir}/texmf-dist/tex/latex/typog +%{_mandir}/man1/typog-grep.1.* +%doc %{_texdir}/texmf-dist/doc/latex/typog + +%files -n %{shortname}-a2ping %license gpl.txt %{_bindir}/a2ping -%{_datadir}/texlive/texmf-dist/scripts/a2ping/ +%{_texdir}/texmf-dist/scripts/a2ping/ %{_mandir}/man1/a2ping.1* -%doc %{_datadir}/texlive/texmf-dist/doc/support/a2ping/ +%doc %{_texdir}/texmf-dist/doc/support/a2ping/ -%files -n texlive-accfonts +%files -n %{shortname}-accfonts %license gpl.txt %{_bindir}/mkt1font %{_bindir}/vpl2ovp %{_bindir}/vpl2vpl -%{_datadir}/texlive/texmf-dist/scripts/accfonts/ -%{_datadir}/texlive/texmf-dist/tex/latex/accfonts/ -%doc %{_datadir}/texlive/texmf-dist/doc/fonts/accfonts/ +%{_texdir}/texmf-dist/scripts/accfonts/ +%{_texdir}/texmf-dist/tex/latex/accfonts/ +%doc %{_texdir}/texmf-dist/doc/fonts/accfonts/ -%files -n texlive-adhocfilelist +%files -n %{shortname}-adhocfilelist %license lppl1.txt %{_bindir}/adhocfilelist -%{_datadir}/texlive/texmf-dist/scripts/adhocfilelist/ -%{_datadir}/texlive/texmf-dist/tex/support/adhocfilelist/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/adhocfilelist/ +%{_texdir}/texmf-dist/scripts/adhocfilelist/ +%{_texdir}/texmf-dist/tex/support/adhocfilelist/ +%doc %{_texdir}/texmf-dist/doc/support/adhocfilelist/ -%files -n texlive-afm2pl +%files -n %{shortname}-afm2pl %license lppl1.txt %{_bindir}/afm2pl %{_mandir}/man1/afm2pl.1* -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/afm2pl/ -%{_datadir}/texlive/texmf-dist/fonts/lig/afm2pl/ -%{_datadir}/texlive/texmf-dist/tex/fontinst/afm2pl/ +%{_texdir}/texmf-dist/fonts/enc/dvips/afm2pl/ +%{_texdir}/texmf-dist/fonts/lig/afm2pl/ +%{_texdir}/texmf-dist/tex/fontinst/afm2pl/ -%files -n texlive-albatross +%files -n %{shortname}-albatross %license bsd.txt %{_bindir}/albatross %{_mandir}/man1/albatross.* -%doc %{_datadir}/texlive/texmf-dist/doc/support/albatross -%{_datadir}/texlive/texmf-dist/scripts/albatross +%doc %{_texdir}/texmf-dist/doc/support/albatross +%{_texdir}/texmf-dist/scripts/albatross -%files -n texlive-aleph +%files -n %{shortname}-aleph %license gpl.txt %{_bindir}/aleph # symlink to aleph, not created in 2021 # %%{_bindir}/lamed %{_mandir}/man1/aleph.1* -%{_mandir}/man1/lamed.1* -%{_datadir}/texlive/fmtutil.cnf.d/aleph -%doc %{_datadir}/texlive/texmf-dist/doc/aleph/ +# %%{_mandir}/man1/lamed.1* +%{fmtutil_cnf_d}/aleph +%doc %{_texdir}/texmf-dist/doc/aleph/ -%files -n texlive-amstex +%files -n %{shortname}-amstex %license lppl1.txt %{_bindir}/amstex %{_mandir}/man1/amstex.1* -%{_datadir}/texlive/texmf-dist/tex/amstex/base/ -%{_datadir}/texlive/texmf-dist/tex/amstex/config/ -%{_datadir}/texlive/fmtutil.cnf.d/amstex -%doc %{_datadir}/texlive/texmf-dist/doc/amstex/base/ +%{_texdir}/texmf-dist/tex/amstex/base/ +%{_texdir}/texmf-dist/tex/amstex/config/ +%{fmtutil_cnf_d}/amstex +%doc %{_texdir}/texmf-dist/doc/amstex/base/ -%files -n texlive-arara +%files -n %{shortname}-arara %license bsd.txt %{_bindir}/arara %{_mandir}/man1/arara.* -%{_datadir}/texlive/texmf-dist/scripts/arara/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/arara/ +%{_texdir}/texmf-dist/scripts/arara/ +%doc %{_texdir}/texmf-dist/doc/support/arara/ -%files -n texlive-attachfile2 +%files -n %{shortname}-attachfile2 %license lppl1.3.txt %{_bindir}/pdfatfi %{_mandir}/man1/pdfatfi.1* -%{_datadir}/texlive/texmf-dist/scripts/attachfile2/ -%{_datadir}/texlive/texmf-dist/tex/latex/attachfile2/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/attachfile2/ +%{_texdir}/texmf-dist/scripts/attachfile2/ +%{_texdir}/texmf-dist/tex/latex/attachfile2/ +%doc %{_texdir}/texmf-dist/doc/latex/attachfile2/ -%files -n texlive-authorindex +%files -n %{shortname}-authorindex %license lppl1.txt %{_bindir}/authorindex -%{_datadir}/texlive/texmf-dist/scripts/authorindex/ -%{_datadir}/texlive/texmf-dist/tex/latex/authorindex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/authorindex/ +%{_texdir}/texmf-dist/scripts/authorindex/ +%{_texdir}/texmf-dist/tex/latex/authorindex/ +%doc %{_texdir}/texmf-dist/doc/latex/authorindex/ -%files -n texlive-autosp +%files -n %{shortname}-autosp %license gpl2.txt %{_bindir}/autosp %{_bindir}/tex2aspc %{_mandir}/man1/autosp.1* %{_mandir}/man1/tex2aspc.1* -%doc %{_datadir}/texlive/texmf-dist/doc/generic/autosp/ +%doc %{_texdir}/texmf-dist/doc/generic/autosp/ -%files -n texlive-axodraw2 +%files -n %{shortname}-axodraw2 %license gpl3.txt %{_bindir}/axohelp %{_mandir}/man1/axohelp.1* -%{_datadir}/texlive/texmf-dist/tex/latex/axodraw2/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/axodraw2/ +%{_texdir}/texmf-dist/tex/latex/axodraw2/ +%doc %{_texdir}/texmf-dist/doc/latex/axodraw2/ -%files -n texlive-bib2gls +%files -n %{shortname}-bib2gls %license gpl3.txt %{_bindir}/bib2gls +%{_bindir}/datatool2bib %{_bindir}/convertgls2bib -%{_datadir}/texlive/texmf-dist/scripts/bib2gls/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/bib2gls/ - -%files -n texlive-bibexport +%{_mandir}/man1/bib2gls.1* +%{_mandir}/man1/datatool2bib.1* +%{_mandir}/man1/convertgls2bib.1* +%{_texdir}/texmf-dist/scripts/bib2gls/ +%doc %{_texdir}/texmf-dist/doc/support/bib2gls/ + +%files -n %{shortname}-bibcop +%license mit.txt +%doc %{_texdir}/texmf-dist/doc/bibtex/bibcop +%{_bindir}/bibcop +%{_mandir}/man1/bibcop.1* +%{_texdir}/texmf-dist/scripts/bibcop +%{_texdir}/texmf-dist/tex/latex/bibcop + +%files -n %{shortname}-bibexport %license lppl1.3.txt %{_bindir}/bibexport %{_bindir}/bibexport.sh -%{_datadir}/texlive/texmf-dist/bibtex/bst/bibexport/ -%{_datadir}/texlive/texmf-dist/scripts/bibexport/ -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/bibexport/ +%{_texdir}/texmf-dist/bibtex/bst/bibexport/ +%{_texdir}/texmf-dist/scripts/bibexport/ +%doc %{_texdir}/texmf-dist/doc/bibtex/bibexport/ -%files -n texlive-bibtex +%files -n %{shortname}-bibtex %license knuth.txt %{_bindir}/bibtex %{_mandir}/man1/bibtex.1* -%{_datadir}/texlive/texmf-dist/bibtex/bib/base/xampl.bib -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/abbrv.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/acm.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/alpha.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/apalike.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/ieeetr.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/plain.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/siam.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/unsrt.bst -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/README -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxbst.doc -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxdoc.bib -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxdoc.pdf -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxdoc.tex -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxhak.pdf -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxhak.tex -%{_datadir}/texlive/texmf-dist/tex/generic/bibtex/apalike.sty -%{_datadir}/texlive/texmf-dist/tex/generic/bibtex/apalike.tex - -%files -n texlive-bibtexu +%{_texdir}/texmf-dist/bibtex/bib/base/xampl.bib +%{_texdir}/texmf-dist/bibtex/bst/base/abbrv.bst +%{_texdir}/texmf-dist/bibtex/bst/base/acm.bst +%{_texdir}/texmf-dist/bibtex/bst/base/alpha.bst +%{_texdir}/texmf-dist/bibtex/bst/base/apalike.bst +%{_texdir}/texmf-dist/bibtex/bst/base/ieeetr.bst +%{_texdir}/texmf-dist/bibtex/bst/base/plain.bst +%{_texdir}/texmf-dist/bibtex/bst/base/siam.bst +%{_texdir}/texmf-dist/bibtex/bst/base/unsrt.bst +%doc %{_texdir}/texmf-dist/doc/bibtex/base/README +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxbst.doc +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.bib +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.pdf +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.tex +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxhak.pdf +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxhak.tex +%{_texdir}/texmf-dist/tex/generic/bibtex/apalike.sty +%{_texdir}/texmf-dist/tex/generic/bibtex/apalike.tex + +%files -n %{shortname}-bibtexu %license lppl1.txt %{_bindir}/bibtexu -%doc %{_datadir}/texlive/texmf-dist/doc/bibtexu/ +%doc %{_texdir}/texmf-dist/doc/bibtexu/ %{_mandir}/man1/bibtexu.1* -%files -n texlive-bibtex8 +%files -n %{shortname}-bibtex8 %license gpl.txt %{_bindir}/bibtex8 -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/88591lat.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/88591sca.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/README.TEXLIVE -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/ascii.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/cp437lat.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/cp850lat.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/cp850sca.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/cp866rus.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/csfile.txt -%{_datadir}/texlive/texmf-dist/bibtex/csf/polish-csf/88592pl.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/polish-csf/cp1250pl.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/polish-csf/cp852pl.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/polish-csf/iso8859-7.csf -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex8/ +%{_texdir}/texmf-dist/bibtex/csf/base/88591lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/88591sca.csf +%{_texdir}/texmf-dist/bibtex/csf/base/README.TEXLIVE +%{_texdir}/texmf-dist/bibtex/csf/base/ascii.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp437lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp850lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp850sca.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp866rus.csf +%{_texdir}/texmf-dist/bibtex/csf/base/csfile.txt +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/88592pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/cp1250pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/cp852pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/iso8859-7.csf +%doc %{_texdir}/texmf-dist/doc/bibtex8/ %{_mandir}/man1/bibtex8.1* -%files -n texlive-bundledoc +%files -n %{shortname}-bundledoc %license lppl1.txt %{_bindir}/arlatex %{_bindir}/bundledoc %{_mandir}/man1/arlatex.1* %{_mandir}/man1/bundledoc.1* -%{_datadir}/texlive/texmf-dist/scripts/bundledoc/ -%{_datadir}/texlive/texmf-dist/tex/latex/bundledoc/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/bundledoc/ +%{_texdir}/texmf-dist/scripts/bundledoc/ +%{_texdir}/texmf-dist/tex/latex/bundledoc/ +%doc %{_texdir}/texmf-dist/doc/support/bundledoc/ -%files -n texlive-cachepic +%files -n %{shortname}-cachepic %license lppl1.3.txt %{_bindir}/cachepic -%{_datadir}/texlive/texmf-dist/scripts/cachepic/ -%{_datadir}/texlive/texmf-dist/tex/latex/cachepic/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/cachepic/ +%{_texdir}/texmf-dist/scripts/cachepic/ +%{_texdir}/texmf-dist/tex/latex/cachepic/ +%doc %{_texdir}/texmf-dist/doc/latex/cachepic/ -%files -n texlive-checkcites +%files -n %{shortname}-checkcites %license lppl1.3.txt %{_bindir}/checkcites -%{_datadir}/texlive/texmf-dist/scripts/checkcites/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/checkcites/ +%{_texdir}/texmf-dist/scripts/checkcites/ +%doc %{_texdir}/texmf-dist/doc/support/checkcites/ -%files -n texlive-checklistings +%files -n %{shortname}-checklistings %license lppl1.2.txt %{_bindir}/checklistings -%{_datadir}/texlive/texmf-dist/scripts/checklistings/ -%{_datadir}/texlive/texmf-dist/tex/latex/checklistings/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/checklistings/ +%{_texdir}/texmf-dist/scripts/checklistings/ +%{_texdir}/texmf-dist/tex/latex/checklistings/ +%doc %{_texdir}/texmf-dist/doc/latex/checklistings/ -%files -n texlive-chklref +%files -n %{shortname}-chklref %license gpl3.txt %{_bindir}/chklref %{_mandir}/man1/chklref.1* -%{_datadir}/texlive/texmf-dist/scripts/chklref/ -%{_datadir}/texlive/texmf-dist/tex/latex/chklref/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/chklref/ +%{_texdir}/texmf-dist/scripts/chklref/ +%{_texdir}/texmf-dist/tex/latex/chklref/ +%doc %{_texdir}/texmf-dist/doc/support/chklref/ -%files -n texlive-chktex +%files -n %{shortname}-chktex %license gpl.txt %{_bindir}/chktex %{_bindir}/chkweb @@ -6738,20 +9735,28 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/chktex.1* %{_mandir}/man1/chkweb.1* %{_mandir}/man1/deweb.1* -%{_datadir}/texlive/texmf-dist/chktex/ -%{_datadir}/texlive/texmf-dist/scripts/chktex/ -%doc %{_datadir}/texlive/texmf-dist/doc/chktex/ +%{_texdir}/texmf-dist/chktex/ +%{_texdir}/texmf-dist/scripts/chktex/ +%doc %{_texdir}/texmf-dist/doc/chktex/ + +%files -n %{shortname}-citation-style-language +%license mit.txt cc-by-sa-3.txt +%{_bindir}/citeproc-lua +%{_mandir}/man1/citeproc-lua.1* +%{_texdir}/texmf-dist/scripts/citation-style-language/ +%{_texdir}/texmf-dist/tex/latex/citation-style-language/ +%doc %{_texdir}/texmf-dist/doc/latex/citation-style-language/ %if 0 -%files -n texlive-cjk-gs-integrate +%files -n %{shortname}-cjk-gs-integrate %license gpl3.txt %{_bindir}/cjk-gs-integrate -%{_datadir}/texlive/texmf-dist/scripts/cjk-gs-integrate/ -%{_datadir}/texlive/texmf-dist/fonts/misc/cjk-gs-integrate/ -%doc %{_datadir}/texlive/texmf-dist/doc/fonts/cjk-gs-integrate/ +%{_texdir}/texmf-dist/scripts/cjk-gs-integrate/ +%{_texdir}/texmf-dist/fonts/misc/cjk-gs-integrate/ +%doc %{_texdir}/texmf-dist/doc/fonts/cjk-gs-integrate/ %endif -%files -n texlive-cjkutils +%files -n %{shortname}-cjkutils %license lppl1.txt %{_bindir}/bg5+latex %{_bindir}/bg5+pdflatex @@ -6781,108 +9786,111 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/extconv.1* %{_mandir}/man1/hbf2gf.1* %{_mandir}/man1/sjisconv.1* -%{_datadir}/texlive/texmf-dist/hbf2gf/ +%{_texdir}/texmf-dist/hbf2gf/ -%files -n texlive-clojure-pamphlet +%files -n %{shortname}-clojure-pamphlet %license gpl3.txt %{_bindir}/pamphletangler -%{_datadir}/texlive/texmf-dist/scripts/clojure-pamphlet/ -%{_datadir}/texlive/texmf-dist/tex/latex/clojure-pamphlet/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/clojure-pamphlet/ +%{_mandir}/man1/pamphletangler.1* +%{_texdir}/texmf-dist/scripts/clojure-pamphlet/ +%{_texdir}/texmf-dist/tex/latex/clojure-pamphlet/ +%doc %{_texdir}/texmf-dist/doc/support/clojure-pamphlet/ -%files -n texlive-cluttex +%files -n %{shortname}-cluttex %license gpl3.txt %{_bindir}/cllualatex %{_bindir}/cluttex %{_bindir}/clxelatex -%{_datadir}/texlive/texmf-dist/scripts/cluttex/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/cluttex/ +%{_mandir}/man1/cllualatex.1.gz +%{_mandir}/man1/cluttex.1.gz +%{_mandir}/man1/clxelatex.1.gz +%{_texdir}/texmf-dist/scripts/cluttex/ +%doc %{_texdir}/texmf-dist/doc/support/cluttex/ -%files -n texlive-context +%files -n %{shortname}-context %{_bindir}/context -%{_bindir}/contextjit -%{_bindir}/luatools +# %%{_bindir}/contextjit +# %%{_bindir}/luatools %{_bindir}/mtxrun -%{_bindir}/mtxrunjit -%{_bindir}/texexec +# %%{_bindir}/mtxrunjit +# %%{_bindir}/texexec %{_bindir}/texmfstart %{_mandir}/man1/context.1* -%{_mandir}/man1/luatools.1* -%{_mandir}/man1/mtx-babel.1* -%{_mandir}/man1/mtx-base.1* -%{_mandir}/man1/mtx-bibtex.1* -%{_mandir}/man1/mtx-cache.1* -%{_mandir}/man1/mtx-chars.1* -%{_mandir}/man1/mtx-check.1* -%{_mandir}/man1/mtx-colors.1* -%{_mandir}/man1/mtx-context.1* -%{_mandir}/man1/mtx-dvi.1* -%{_mandir}/man1/mtx-epub.1* -%{_mandir}/man1/mtx-evohome.1* -%{_mandir}/man1/mtx-fcd.1* -%{_mandir}/man1/mtx-flac.1* -%{_mandir}/man1/mtx-fonts.1* -%{_mandir}/man1/mtx-grep.1* -%{_mandir}/man1/mtx-interface.1* -%{_mandir}/man1/mtx-metapost.1* -# %%{_mandir}/man1/mtx-metatex.1* -%{_mandir}/man1/mtx-modules.1* -%{_mandir}/man1/mtx-package.1* -%{_mandir}/man1/mtx-patterns.1* -%{_mandir}/man1/mtx-pdf.1* -%{_mandir}/man1/mtx-plain.1* -%{_mandir}/man1/mtx-profile.1* -%{_mandir}/man1/mtx-rsync.1* -%{_mandir}/man1/mtx-scite.1* -%{_mandir}/man1/mtx-server.1* -%{_mandir}/man1/mtx-texworks.1* -%{_mandir}/man1/mtx-timing.1* -%{_mandir}/man1/mtx-tools.1* -%{_mandir}/man1/mtx-unicode.1* -%{_mandir}/man1/mtx-unzip.1* -%{_mandir}/man1/mtx-update.1* -%{_mandir}/man1/mtx-vscode.1* -%{_mandir}/man1/mtx-watch.1* -%{_mandir}/man1/mtx-youless.1* +%{_mandir}/man1/mtxrun-babel.1* +##%{_mandir}/man1/mtxrun-base.1* +%{_mandir}/man1/mtxrun-bibtex.1* +%{_mandir}/man1/mtxrun-cache.1* +%{_mandir}/man1/mtxrun-chars.1* +%{_mandir}/man1/mtxrun-check.1* +%{_mandir}/man1/mtxrun-colors.1* +%{_mandir}/man1/mtxrun-context.1* +%{_mandir}/man1/mtxrun-dvi.1* +%{_mandir}/man1/mtxrun-epub.1* +%{_mandir}/man1/mtxrun-evohome.1* +%{_mandir}/man1/mtxrun-fcd.1* +%{_mandir}/man1/mtxrun-flac.1* +%{_mandir}/man1/mtxrun-fonts.1* +%{_mandir}/man1/mtxrun-grep.1* +%{_mandir}/man1/mtxrun-interface.1* +%{_mandir}/man1/mtxrun-metapost.1* +# %%{_mandir}/man1/mtxrun-metatex.1* +%{_mandir}/man1/mtxrun-modules.1* +%{_mandir}/man1/mtxrun-package.1* +%{_mandir}/man1/mtxrun-patterns.1* +%{_mandir}/man1/mtxrun-pdf.1* +%{_mandir}/man1/mtxrun-plain.1* +%{_mandir}/man1/mtxrun-profile.1* +%{_mandir}/man1/mtxrun-rsync.1* +%{_mandir}/man1/mtxrun-scite.1* +%{_mandir}/man1/mtxrun-server.1* +%{_mandir}/man1/mtxrun-spell.1* +%{_mandir}/man1/mtxrun-texworks.1* +##%{_mandir}/man1/mtxrun-timing.1* +%{_mandir}/man1/mtxrun-tools.1* +%{_mandir}/man1/mtxrun-unicode.1* +%{_mandir}/man1/mtxrun-unzip.1* +%{_mandir}/man1/mtxrun-update.1* +%{_mandir}/man1/mtxrun-vscode.1* +%{_mandir}/man1/mtxrun-watch.1* +%{_mandir}/man1/mtxrun-youless.1* +%{_mandir}/man1/mtxrun-convert.1.gz +%{_mandir}/man1/mtxrun-ctan.1.gz +%{_mandir}/man1/mtxrun-fixpdf.1.gz +%{_mandir}/man1/mtxrun-kpse.1.gz +%{_mandir}/man1/mtxrun-synctex.1.gz %{_mandir}/man1/mtxrun.1* -%{_mandir}/man1/texexec.1* -%{_mandir}/man1/texmfstart.1* -%{_datadir}/texlive/texmf-dist/bibtex/bst/context/ -%{_datadir}/texlive/texmf-dist/context/ -%{_datadir}/texlive/texmf-dist/fonts/afm/hoekwater/context/contnav.afm -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-CNS1-4.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-GB1-4.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-Identity-0.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-Japan1-5.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-Japan1-6.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-Japan2-0.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-Korea1-2.cidmap -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/context/ -# %%{_datadir}/texlive/texmf-dist/fonts/fea/context/ -%{_datadir}/texlive/texmf-dist/fonts/map/dvips/context/ -%{_datadir}/texlive/texmf-dist/fonts/map/luatex/context/ -%{_datadir}/texlive/texmf-dist/fonts/map/pdftex/context/ -%{_datadir}/texlive/texmf-dist/fonts/misc/xetex/fontmapping/context/ -%{_datadir}/texlive/texmf-dist/fonts/tfm/hoekwater/context/ -%{_datadir}/texlive/texmf-dist/fonts/type1/hoekwater/context/ -%{_datadir}/texlive/texmf-dist/metapost/context/ -%exclude %{_datadir}/texlive/texmf-dist/scripts/context/perl/mptopdf.pl -%{_datadir}/texlive/texmf-dist/scripts/context/ -%{_datadir}/texlive/texmf-dist/tex/context/ -%exclude %{_datadir}/texlive/texmf-dist/tex/generic/context/mptopdf -%{_datadir}/texlive/texmf-dist/tex/generic/context/ -%{_datadir}/texlive/texmf-dist/tex/latex/context/ -%{_datadir}/texlive/fmtutil.cnf.d/context - -%files -n texlive-context-doc -%doc %{_datadir}/texlive/texmf-dist/doc/context/ - -%files -n texlive-convbkmk +# %%{_mandir}/man1/texexec.1* +# %%{_mandir}/man1/texmfstart.1* +# %%{_texdir}/texmf-dist/fonts/enc/dvips/context/ +# %%{_texdir}/texmf-dist/fonts/fea/context/ +%{_texdir}/texmf-dist/fonts/truetype/public/context/ +%{_texdir}/texmf-dist/metapost/context/ +%{_texdir}/fmtutil.cnf.d/context-legacy +%exclude %{_texdir}/texmf-dist/scripts/context/perl/mptopdf.pl +%{_texdir}/texmf-dist/scripts/context/ +# these four are in mptopdf +%exclude %{_texdir}/texmf-dist/tex/context/base/mkii/supp-mis.mkii +%exclude %{_texdir}/texmf-dist/tex/context/base/mkii/supp-mpe.mkii +%exclude %{_texdir}/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +%exclude %{_texdir}/texmf-dist/tex/context/base/mkii/syst-tex.mkii +%exclude %{_texdir}/texmf-dist/tex/generic/context/mptopdf +%{_texdir}/texmf-dist/tex/generic/context/ +%{_texdir}/texmf-dist/tex/luatex/context +%{_texdir}/texmf-dist/tex/context/ +%{_texdir}/texmf-dist/fonts/opentype/public/context +# %%{fmtutil_cnf_d}/context + +%files -n %{shortname}-context-doc +%doc %{_texdir}/texmf-dist/doc/context/ +%doc %{_texdir}/texmf-dist/doc/luametatex/ +%doc %{_texdir}/texmf-dist/doc/fonts/context + +%files -n %{shortname}-convbkmk %{_bindir}/convbkmk -%{_datadir}/texlive/texmf-dist/scripts/convbkmk/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/convbkmk/ +%{_texdir}/texmf-dist/scripts/convbkmk/ +%doc %{_texdir}/texmf-dist/doc/support/convbkmk/ -%files -n texlive-crossrefware +%files -n %{shortname}-crossrefware %license gpl.txt %{_bindir}/bbl2bib %{_bindir}/bibdoiadd @@ -6896,146 +9904,158 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/biburl2doi.1* %{_mandir}/man1/bibzbladd.1* %{_mandir}/man1/ltx2crossrefxml.1* -%{_datadir}/texlive/texmf-dist/scripts/crossrefware/ -%{_datadir}/texlive/texmf-dist/tex/latex/crossrefware/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/crossrefware/ +%{_texdir}/texmf-dist/scripts/crossrefware/ +%{_texdir}/texmf-dist/tex/latex/crossrefware/ +%doc %{_texdir}/texmf-dist/doc/support/crossrefware/ -%files -n texlive-cslatex +%files -n %{shortname}-cslatex %license gpl.txt -%{_bindir}/cslatex -%{_bindir}/pdfcslatex -%{_datadir}/texlive/texmf-dist/tex/cslatex/ -%{_datadir}/texlive/fmtutil.cnf.d/cslatex +##%{_bindir}/cslatex +##%{_bindir}/pdfcslatex +%{_texdir}/tex/cslatex/ +%{fmtutil_cnf_d}/cslatex -%files -n texlive-csplain +%files -n %{shortname}-csplain %{_bindir}/csplain %{_bindir}/pdfcsplain -%{_datadir}/texlive/texmf-dist/tex/csplain/ -%{_datadir}/texlive/fmtutil.cnf.d/csplain +%{_texdir}/texmf-dist/tex/csplain/ +%{fmtutil_cnf_d}/csplain -%files -n texlive-ctan-o-mat +%files -n %{shortname}-ctan-o-mat %license bsd.txt %{_bindir}/ctan-o-mat %{_mandir}/man1/ctan-o-mat.1* -%{_datadir}/texlive/texmf-dist/scripts/ctan-o-mat/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ctan-o-mat/ +%{_texdir}/texmf-dist/scripts/ctan-o-mat/ +%doc %{_texdir}/texmf-dist/doc/support/ctan-o-mat/ -%files -n texlive-ctanbib +%files -n %{shortname}-ctanbib %license lppl1.3.txt %{_bindir}/ctanbib %{_mandir}/man1/ctanbib.1* -%{_datadir}/texlive/texmf-dist/scripts/ctanbib/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ctanbib/ +%{_texdir}/texmf-dist/scripts/ctanbib/ +%doc %{_texdir}/texmf-dist/doc/support/ctanbib/ -%files -n texlive-ctanify +%files -n %{shortname}-ctanify %license lppl1.3.txt %{_bindir}/ctanify %{_mandir}/man1/ctanify.1* -%{_datadir}/texlive/texmf-dist/scripts/ctanify/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/ctanify/ +%{_texdir}/texmf-dist/scripts/ctanify/ +%doc %{_texdir}/texmf-dist/doc/latex/ctanify/ -%files -n texlive-ctanupload +%files -n %{shortname}-ctanupload %license gpl3.txt %{_bindir}/ctanupload -%{_datadir}/texlive/texmf-dist/scripts/ctanupload/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ctanupload/ +%{_texdir}/texmf-dist/scripts/ctanupload/ +%doc %{_texdir}/texmf-dist/doc/support/ctanupload/ -%files -n texlive-ctie +%files -n %{shortname}-ctie %license gpl.txt %{_bindir}/ctie %{_mandir}/man1/ctie.1* -%files -n texlive-cweb +%files -n %{shortname}-cweb %license knuth.txt %{_bindir}/ctangle %{_bindir}/ctwill %{_bindir}/ctwill-refsort %{_bindir}/ctwill-twinx +%{_bindir}/ctwill-proofsort %{_bindir}/cweave +%{_bindir}/twill +%{_bindir}/twill-refsort %{_mandir}/man1/ctangle.1* %{_mandir}/man1/ctwill.1* %{_mandir}/man1/ctwill-refsort.1* %{_mandir}/man1/ctwill-twinx.1* +%{_mandir}/man1/ctwill-proofsort.1* %{_mandir}/man1/cweave.1* %{_mandir}/man1/cweb.1* -%{_datadir}/texlive/texmf-dist/tex/plain/cweb/ -%doc %{_datadir}/texlive/texmf-dist/doc/plain/cweb/ +%{_mandir}/man1/twill.1* +%{_mandir}/man1/twill-refsort.1* +%{_texdir}/texmf-dist/tex/plain/cweb/ -%files -n texlive-cyrillic +%files -n %{shortname}-cyrillic %license lppl1.3.txt %{_bindir}/rubibtex %{_bindir}/rumakeindex %{_mandir}/man1/rubibtex.1* %{_mandir}/man1/rumakeindex.1* -%{_datadir}/texlive/texmf-dist/tex/latex/cyrillic/ -%{_datadir}/texlive/texmf-dist/scripts/texlive-extra/rubibtex.sh -%{_datadir}/texlive/texmf-dist/scripts/texlive-extra/rumakeindex.sh -%doc %{_datadir}/texlive/texmf-dist/doc/latex/cyrillic/ +%{_texdir}/texmf-dist/tex/latex/cyrillic/ +%{_texdir}/texmf-dist/scripts/texlive-extra/rubibtex.sh +%{_texdir}/texmf-dist/scripts/texlive-extra/rumakeindex.sh +%doc %{_texdir}/texmf-dist/doc/latex/cyrillic/ -%files -n texlive-de-macro +%files -n %{shortname}-de-macro %{_bindir}/de-macro -%{_datadir}/texlive/texmf-dist/scripts/de-macro/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/de-macro/ +%{_texdir}/texmf-dist/scripts/de-macro/ +%doc %{_texdir}/texmf-dist/doc/support/de-macro/ -%files -n texlive-detex +%files -n %{shortname}-detex %{_bindir}/detex %{_mandir}/man1/detex.1* -%files -n texlive-diadia +%files -n %{shortname}-diadia %license lppl1.txt %{_bindir}/diadia -%{_datadir}/texlive/texmf-dist/scripts/diadia/ -%{_datadir}/texlive/texmf-dist/tex/latex/diadia/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/diadia/ +%{_texdir}/texmf-dist/scripts/diadia/ +%{_texdir}/texmf-dist/tex/latex/diadia/ +%doc %{_texdir}/texmf-dist/doc/latex/diadia/ + +%files -n %{shortname}-digestif +%license gpl3.txt lppl1.3.txt fdl.txt +%{_bindir}/digestif +%{_texdir}/texmf-dist/scripts/digestif +%doc %{_texdir}/texmf-dist/doc/support/digestif -%files -n texlive-dosepsbin +%files -n %{shortname}-dosepsbin %{_bindir}/dosepsbin %{_mandir}/man1/dosepsbin.1* -%{_datadir}/texlive/texmf-dist/scripts/dosepsbin/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/dosepsbin/ +%{_texdir}/texmf-dist/scripts/dosepsbin/ +%doc %{_texdir}/texmf-dist/doc/support/dosepsbin/ -%files -n texlive-dtl +%files -n %{shortname}-dtl %license pd.txt %{_bindir}/dt2dv %{_bindir}/dv2dt %{_mandir}/man1/dt2dv.1* %{_mandir}/man1/dv2dt.1* -%files -n texlive-dtxgen +%files -n %{shortname}-dtxgen %license gpl.txt %{_bindir}/dtxgen -%{_datadir}/texlive/texmf-dist/scripts/dtxgen/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/dtxgen/ +%{_mandir}/man1/dtxgen.1* +%{_texdir}/texmf-dist/scripts/dtxgen/ +%doc %{_texdir}/texmf-dist/doc/support/dtxgen/ -%files -n texlive-dvi2tty +%files -n %{shortname}-dvi2tty %license gpl.txt %{_bindir}/disdvi %{_bindir}/dvi2tty %{_mandir}/man1/disdvi.1* %{_mandir}/man1/dvi2tty.1* -%files -n texlive-dviasm +%files -n %{shortname}-dviasm %license gpl3.txt %{_bindir}/dviasm %{_mandir}/man1/dviasm.1* -%{_datadir}/texlive/texmf-dist/scripts/dviasm/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/dviasm/ +%{_texdir}/texmf-dist/scripts/dviasm/ +%doc %{_texdir}/texmf-dist/doc/latex/dviasm/ -%files -n texlive-dvicopy +%files -n %{shortname}-dvicopy %license gpl.txt %{_bindir}/dvicopy %{_mandir}/man1/dvicopy.1* -%files -n texlive-dvidvi +%files -n %{shortname}-dvidvi %{_bindir}/dvidvi %{_mandir}/man1/dvidvi.1* -%files -n texlive-dviinfox +%files -n %{shortname}-dviinfox %{_bindir}/dviinfox -%{_datadir}/texlive/texmf-dist/scripts/dviinfox/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/dviinfox/ +%{_texdir}/texmf-dist/scripts/dviinfox/ +%doc %{_texdir}/texmf-dist/doc/latex/dviinfox/ -%files -n texlive-dviljk +%files -n %{shortname}-dviljk %license gpl.txt %{_bindir}/dvihp %{_bindir}/dvilj @@ -7050,13 +10070,13 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/dvilj4l.1* %{_mandir}/man1/dvilj6.1* -%files -n texlive-dviout-util +%files -n %{shortname}-dviout-util %{_bindir}/chkdvifont %{_bindir}/dvispc %{_mandir}/man1/chkdvifont.1* %{_mandir}/man1/dvispc.1* -%files -n texlive-dvipdfmx +%files -n %{shortname}-dvipdfmx %license gpl.txt %{_bindir}/dvipdfm %{_bindir}/dvipdfmx @@ -7069,137 +10089,137 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/ebb.1* %{_mandir}/man1/extractbb.1* %{_mandir}/man1/xdvipdfmx.1* -%{_datadir}/texlive/texmf-dist/dvipdfmx/ -%{_datadir}/texlive/texmf-dist/fonts/cmap/dvipdfmx/ -%{_datadir}/texlive/texmf-dist/fonts/map/dvipdfmx/ -%exclude %{_datadir}/texlive/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ -%{_datadir}/texlive/tlpkg/tlpostcode/dvipdfmx.pl -%doc %{_datadir}/texlive/texmf-dist/doc/dvipdfm/ -%doc %{_datadir}/texlive/texmf-dist/doc/dvipdfmx/ - -%files -n texlive-dvipng +%{_texdir}/texmf-dist/dvipdfmx/ +%{_texdir}/texmf-dist/fonts/cmap/dvipdfmx/ +%{_texdir}/texmf-dist/fonts/map/dvipdfmx/ +%exclude %{_texdir}/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ +%{_texdir}/tlpkg/tlpostcode/dvipdfmx.pl +%doc %{_texdir}/texmf-dist/doc/dvipdfm/ +%doc %{_texdir}/texmf-dist/doc/dvipdfmx/ + +%files -n %{shortname}-dvipng %license lgpl2.1.txt %{_bindir}/dvigif %{_bindir}/dvipng %{_mandir}/man1/dvigif.1* %{_mandir}/man1/dvipng.1* %{_infodir}/dvipng.info* -%doc %{_datadir}/texlive/texmf-dist/doc/dvipng/ +%doc %{_texdir}/texmf-dist/doc/dvipng/ -%files -n texlive-dvipos +%files -n %{shortname}-dvipos %license lppl1.txt %{_bindir}/dvipos %{_mandir}/man1/dvipos.1* -%files -n texlive-dvips +%files -n %{shortname}-dvips %license gpl.txt %{_bindir}/afm2tfm %{_bindir}/dvips %{_mandir}/man1/afm2tfm.1* %{_mandir}/man1/dvips.1* %{_infodir}/dvips.info* -%{_datadir}/texlive/texmf-dist/dvips/base/ -%{_datadir}/texlive/texmf-dist/dvips/config/alt-rule.pro -%{_datadir}/texlive/texmf-dist/dvips/config/canonex.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/config.bakoma -%{_datadir}/texlive/texmf-dist/dvips/config/config.canonex -%{_datadir}/texlive/texmf-dist/dvips/config/config.cx -%{_datadir}/texlive/texmf-dist/dvips/config/config.deskjet -%{_datadir}/texlive/texmf-dist/dvips/config/config.dvired -%{_datadir}/texlive/texmf-dist/dvips/config/config.epson -%{_datadir}/texlive/texmf-dist/dvips/config/config.ibmvga -%{_datadir}/texlive/texmf-dist/dvips/config/config.ljfour -%{_datadir}/texlive/texmf-dist/dvips/config/config.luc -%{_datadir}/texlive/texmf-dist/dvips/config/config.mbn -%{_datadir}/texlive/texmf-dist/dvips/config/config.mga -%{_datadir}/texlive/texmf-dist/dvips/config/config.mirrorprint -%{_datadir}/texlive/texmf-dist/dvips/config/config.ot2 +%{_texdir}/texmf-dist/dvips/base/ +%{_texdir}/texmf-dist/dvips/config/alt-rule.pro +%{_texdir}/texmf-dist/dvips/config/canonex.cfg +%{_texdir}/texmf-dist/dvips/config/config.bakoma +%{_texdir}/texmf-dist/dvips/config/config.canonex +%{_texdir}/texmf-dist/dvips/config/config.cx +%{_texdir}/texmf-dist/dvips/config/config.deskjet +%{_texdir}/texmf-dist/dvips/config/config.dvired +%{_texdir}/texmf-dist/dvips/config/config.epson +%{_texdir}/texmf-dist/dvips/config/config.ibmvga +%{_texdir}/texmf-dist/dvips/config/config.ljfour +%{_texdir}/texmf-dist/dvips/config/config.luc +%{_texdir}/texmf-dist/dvips/config/config.mbn +%{_texdir}/texmf-dist/dvips/config/config.mga +%{_texdir}/texmf-dist/dvips/config/config.mirrorprint +%{_texdir}/texmf-dist/dvips/config/config.ot2 %config(noreplace) %{_sysconfdir}/texlive/dvips/config/config.ps -%{_datadir}/texlive/texmf-dist/dvips/config/config.ps -%{_datadir}/texlive/texmf-dist/dvips/config/config.qms -%{_datadir}/texlive/texmf-dist/dvips/config/config.toshiba -%{_datadir}/texlive/texmf-dist/dvips/config/config.unms -%{_datadir}/texlive/texmf-dist/dvips/config/config.xyp -%{_datadir}/texlive/texmf-dist/dvips/config/cx.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/deskjet.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/dfaxhigh.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/dvired.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/epson.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/ibmvga.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/ljfour.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/qms.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/toshiba.cfg -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/base/ -%dir %{_datadir}/texlive/texmf-dist/fonts/map/dvips/ -%{_datadir}/texlive/texmf-dist/tex/generic/dvips/ -%doc %{_datadir}/texlive/texmf-dist/doc/dvips/ - -%files -n texlive-dvisvgm +%{_texdir}/texmf-dist/dvips/config/config.ps +%{_texdir}/texmf-dist/dvips/config/config.qms +%{_texdir}/texmf-dist/dvips/config/config.toshiba +%{_texdir}/texmf-dist/dvips/config/config.unms +%{_texdir}/texmf-dist/dvips/config/config.xyp +%{_texdir}/texmf-dist/dvips/config/cx.cfg +%{_texdir}/texmf-dist/dvips/config/deskjet.cfg +%{_texdir}/texmf-dist/dvips/config/dfaxhigh.cfg +%{_texdir}/texmf-dist/dvips/config/dvired.cfg +%{_texdir}/texmf-dist/dvips/config/epson.cfg +%{_texdir}/texmf-dist/dvips/config/ibmvga.cfg +%{_texdir}/texmf-dist/dvips/config/ljfour.cfg +%{_texdir}/texmf-dist/dvips/config/qms.cfg +%{_texdir}/texmf-dist/dvips/config/toshiba.cfg +%{_texdir}/texmf-dist/fonts/enc/dvips/base/ +%dir %{_texdir}/texmf-dist/fonts/map/dvips/ +%{_texdir}/texmf-dist/tex/generic/dvips/ +%doc %{_texdir}/texmf-dist/doc/dvips/ + +%files -n %{shortname}-dvisvgm %license gpl.txt %{_bindir}/dvisvgm %{_mandir}/man1/dvisvgm.1* -%files -n texlive-ebong +%files -n %{shortname}-ebong %license pd.txt %{_bindir}/ebong -%{_datadir}/texlive/texmf-dist/scripts/ebong/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/ebong/ +%{_texdir}/texmf-dist/scripts/ebong/ +%doc %{_texdir}/texmf-dist/doc/latex/ebong/ -%files -n texlive-eplain +%files -n %{shortname}-eplain %license gpl2.txt %{_bindir}/eplain %{_mandir}/man1/eplain.1* %{_infodir}/eplain.info* -%{_datadir}/texlive/texmf-dist/tex/eplain/ -%{_datadir}/texlive/fmtutil.cnf.d/eplain -%doc %{_datadir}/texlive/texmf-dist/doc/eplain/ +%{_texdir}/texmf-dist/tex/eplain/ +%{fmtutil_cnf_d}/eplain +%doc %{_texdir}/texmf-dist/doc/eplain/ -%files -n texlive-epspdf +%files -n %{shortname}-epspdf %license gpl.txt %{_bindir}/epspdf %{_bindir}/epspdftk %{_infodir}/epspdf.info* -%{_datadir}/texlive/texmf-dist/scripts/epspdf/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/epspdf/ +%{_texdir}/texmf-dist/scripts/epspdf/ +%doc %{_texdir}/texmf-dist/doc/support/epspdf/ -%files -n texlive-epstopdf +%files -n %{shortname}-epstopdf %{_bindir}/epstopdf %{_bindir}/repstopdf %{_mandir}/man1/epstopdf.1* %{_mandir}/man1/repstopdf.1* -%{_datadir}/texlive/texmf-dist/scripts/epstopdf/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/epstopdf/ +%{_texdir}/texmf-dist/scripts/epstopdf/ +%doc %{_texdir}/texmf-dist/doc/support/epstopdf/ -%files -n texlive-exceltex +%files -n %{shortname}-exceltex %license gpl.txt %{_bindir}/exceltex -%{_datadir}/texlive/texmf-dist/scripts/exceltex/ -%{_datadir}/texlive/texmf-dist/tex/latex/exceltex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/exceltex/ +%{_texdir}/texmf-dist/scripts/exceltex/ +%{_texdir}/texmf-dist/tex/latex/exceltex/ +%doc %{_texdir}/texmf-dist/doc/latex/exceltex/ -%files -n texlive-fig4latex +%files -n %{shortname}-fig4latex %license gpl3.txt %{_bindir}/fig4latex -%{_datadir}/texlive/texmf-dist/scripts/fig4latex/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/fig4latex/ +%{_texdir}/texmf-dist/scripts/fig4latex/ +%doc %{_texdir}/texmf-dist/doc/support/fig4latex/ -%files -n texlive-findhyph +%files -n %{shortname}-findhyph %license gpl.txt %{_bindir}/findhyph %{_mandir}/man1/findhyph.1* -%{_datadir}/texlive/texmf-dist/scripts/findhyph/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/findhyph/ +%{_texdir}/texmf-dist/scripts/findhyph/ +%doc %{_texdir}/texmf-dist/doc/support/findhyph/ -%files -n texlive-fontinst +%files -n %{shortname}-fontinst %license lppl1.txt %{_bindir}/fontinst %{_mandir}/man1/fontinst.1* -%{_datadir}/texlive/texmf-dist/scripts/texlive-extra/fontinst.sh -%{_datadir}/texlive/texmf-dist/tex/fontinst/ -%{_datadir}/texlive/texmf-dist/tex/latex/fontinst/ -%doc %{_datadir}/texlive/texmf-dist/doc/fonts/fontinst/ +%{_texdir}/texmf-dist/scripts/texlive-extra/fontinst.sh +%{_texdir}/texmf-dist/tex/fontinst/ +%{_texdir}/texmf-dist/tex/latex/fontinst/ +%doc %{_texdir}/texmf-dist/doc/fonts/fontinst/ -%files -n texlive-fontools +%files -n %{shortname}-fontools %license gpl2.txt %{_bindir}/afm2afm %{_bindir}/autoinst @@ -7207,11 +10227,11 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/afm2afm.1* %{_mandir}/man1/autoinst.1* %{_mandir}/man1/ot2kpx.1* -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/fontools/ -%{_datadir}/texlive/texmf-dist/scripts/fontools/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/fontools/ +%{_texdir}/texmf-dist/fonts/enc/dvips/fontools/ +%{_texdir}/texmf-dist/scripts/fontools/ +%doc %{_texdir}/texmf-dist/doc/support/fontools/ -%files -n texlive-fontware +%files -n %{shortname}-fontware %license lppl1.txt %{_bindir}/pltotf %{_bindir}/tftopl @@ -7222,99 +10242,116 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/vftovp.1* %{_mandir}/man1/vptovf.1* -%files -n texlive-fragmaster +%files -n %{shortname}-fragmaster %license gpl.txt %{_bindir}/fragmaster -%{_datadir}/texlive/texmf-dist/scripts/fragmaster/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/fragmaster/ +%{_texdir}/texmf-dist/scripts/fragmaster/ +%doc %{_texdir}/texmf-dist/doc/support/fragmaster/ -%files -n texlive-getmap +%files -n %{shortname}-getmap %license lppl1.txt %{_bindir}/getmapdl -%{_datadir}/texlive/texmf-dist/scripts/getmap/ -%{_datadir}/texlive/texmf-dist/tex/latex/getmap/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/getmap/ +%{_texdir}/texmf-dist/scripts/getmap/ +%{_texdir}/texmf-dist/tex/latex/getmap/ +%doc %{_texdir}/texmf-dist/doc/latex/getmap/ -%files -n texlive-git-latexdiff +%files -n %{shortname}-git-latexdiff %{_bindir}/git-latexdiff %{_mandir}/man1/git-latexdiff.* -%doc %{_datadir}/texlive/texmf-dist/doc/support/git-latexdiff -%{_datadir}/texlive/texmf-dist/scripts/git-latexdiff +%doc %{_texdir}/texmf-dist/doc/support/git-latexdiff +%{_texdir}/texmf-dist/scripts/git-latexdiff -%files -n texlive-glossaries +%files -n %{shortname}-glossaries %license lppl1.3.txt %{_bindir}/makeglossaries %{_bindir}/makeglossaries-lite %{_mandir}/man1/makeglossaries.1* %{_mandir}/man1/makeglossaries-lite.1* -%{_datadir}/texlive/texmf-dist/scripts/glossaries/ -%{_datadir}/texlive/texmf-dist/tex/latex/glossaries/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/glossaries/ +%{_texdir}/texmf-dist/scripts/glossaries/ +%{_texdir}/texmf-dist/tex/latex/glossaries/ +%doc %{_texdir}/texmf-dist/doc/latex/glossaries/ -%files -n texlive-glyphlist -%{_datadir}/texlive/texmf-dist/fonts/map/glyphlist/ +%files -n %{shortname}-glyphlist +%{_texdir}/texmf-dist/fonts/map/glyphlist/ -%files -n texlive-gregoriotex +%files -n %{shortname}-gregoriotex %license gpl3.txt %{_bindir}/gregorio -%{_datadir}/texlive/texmf-dist/scripts/gregoriotex/ -%{_datadir}/texlive/texmf-dist/tex/lualatex/gregoriotex/ -%{_datadir}/texlive/texmf-dist/tex/luatex/gregoriotex/ -%{_datadir}/texlive/texmf-dist/fonts/source/gregoriotex/ -%{_datadir}/texlive/texmf-dist/fonts/truetype/public/gregoriotex/ -%doc %{_datadir}/texlive/texmf-dist/doc/luatex/gregoriotex/ - -%files -n texlive-gsftopk +%{_texdir}/texmf-dist/scripts/gregoriotex/ +%{_texdir}/texmf-dist/tex/lualatex/gregoriotex/ +%{_texdir}/texmf-dist/tex/luatex/gregoriotex/ +%{_texdir}/texmf-dist/fonts/source/gregoriotex/ +%{_texdir}/texmf-dist/fonts/truetype/public/gregoriotex/ +%doc %{_texdir}/texmf-dist/doc/luatex/gregoriotex/ + +%files -n %{shortname}-gsftopk %license gpl.txt %{_bindir}/gsftopk %{_mandir}/man1/gsftopk.1* -%{_datadir}/texlive/texmf-dist/dvips/gsftopk/ - -%files -n texlive-hyperxmp +%{_texdir}/texmf-dist/dvips/gsftopk/ + +%files -n %{shortname}-hitex +%{_bindir}/hilatex +%{_bindir}/hishrink +%{_bindir}/histretch +%{_bindir}/hitex +%{_bindir}/texprof +%{_bindir}/texprofile +%{_mandir}/man1/hishrink.1* +%{_mandir}/man1/histretch.1* +%{_mandir}/man1/hitex.1* +%{_mandir}/man1/texprof.1.gz +%{_mandir}/man1/texprofile.1.gz +%{_texdir}/fmtutil.cnf.d/hitex +%{_texdir}/texmf-dist/makeindex/hitex/ +%{_texdir}/texmf-dist/tex/hitex/ +%doc %{_texdir}/texmf-dist/doc/hitex/ + +%files -n %{shortname}-hyperxmp %license lppl1.3c.txt %{_bindir}/hyperxmp-add-bytecount %{_mandir}/man1/hyperxmp* -%doc %{_datadir}/texlive/texmf-dist/doc/latex/hyperxmp -%{_datadir}/texlive/texmf-dist/scripts/hyperxmp -%{_datadir}/texlive/texmf-dist/tex/latex/hyperxmp +%doc %{_texdir}/texmf-dist/doc/latex/hyperxmp +%{_texdir}/texmf-dist/scripts/hyperxmp +%{_texdir}/texmf-dist/tex/latex/hyperxmp -%files -n texlive-installfont +%files -n %{shortname}-installfont %license lppl1.txt %{_bindir}/installfont-tl -%{_datadir}/texlive/texmf-dist/scripts/installfont/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/installfont/ +%{_texdir}/texmf-dist/scripts/installfont/ +%doc %{_texdir}/texmf-dist/doc/support/installfont/ -%files -n texlive-jadetex +%files -n %{shortname}-jadetex %{_bindir}/jadetex %{_bindir}/pdfjadetex %{_mandir}/man1/jadetex.1* %{_mandir}/man1/pdfjadetex.1* -%{_datadir}/texlive/texmf-dist/tex/jadetex/ -%{_datadir}/texlive/fmtutil.cnf.d/jadetex -%doc %{_datadir}/texlive/texmf-dist/doc/otherformats/jadetex/ +%{_texdir}/texmf-dist/tex/jadetex/ +%{fmtutil_cnf_d}/jadetex +%doc %{_texdir}/texmf-dist/doc/otherformats/jadetex/ -%files -n texlive-jfmutil +%files -n %{shortname}-jfmutil %{_bindir}/jfmutil -%{_datadir}/texlive/texmf-dist/scripts/jfmutil/ -%doc %{_datadir}/texlive/texmf-dist/doc/fonts/jfmutil/ +%{_texdir}/texmf-dist/scripts/jfmutil/ +%doc %{_texdir}/texmf-dist/doc/fonts/jfmutil/ -%files -n texlive-ketcindy +%files -n %{shortname}-ketcindy %license gpl3.txt %{_bindir}/ketcindy -%{_datadir}/texlive/texmf-dist/scripts/ketcindy/ -%{_datadir}/texlive/texmf-dist/tex/latex/ketcindy/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ketcindy/ +%{_texdir}/texmf-dist/scripts/ketcindy/ +%{_texdir}/texmf-dist/tex/latex/ketcindy/ +%doc %{_texdir}/texmf-dist/doc/support/ketcindy/ -%files -n texlive-kotex-utils +%files -n %{shortname}-kotex-utils %license lppl1.txt %{_bindir}/jamo-normalize %{_bindir}/komkindex %{_bindir}/ttf2kotexfont -%{_datadir}/texlive/texmf-dist/makeindex/kotex-utils/ -%{_datadir}/texlive/texmf-dist/scripts/kotex-utils/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/kotex-utils/ +%{_texdir}/texmf-dist/makeindex/kotex-utils/ +%{_texdir}/texmf-dist/scripts/kotex-utils/ +%doc %{_texdir}/texmf-dist/doc/latex/kotex-utils/ -%files -n texlive-kpathsea +%files -n %{shortname}-kpathsea %license lgpl2.1.txt %{_bindir}/kpseaccess %{_bindir}/kpsereadlink @@ -7335,59 +10372,58 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/texhash.1* %{_mandir}/man5/fmtutil.cnf.5* %{_infodir}/kpathsea.info* -%{_infodir}/tds.info* %{_infodir}/web2c.info* -%{_datadir}/texlive/texmf-dist/web2c/amiga-pl.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp1250cs.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp1250pl.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp1250t1.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp227.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp852-cs.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp852-pl.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp8bit.tcx -%{_datadir}/texlive/texmf-dist/web2c/empty.tcx +%{_texdir}/texmf-dist/web2c/amiga-pl.tcx +%{_texdir}/texmf-dist/web2c/cp1250cs.tcx +%{_texdir}/texmf-dist/web2c/cp1250pl.tcx +%{_texdir}/texmf-dist/web2c/cp1250t1.tcx +%{_texdir}/texmf-dist/web2c/cp227.tcx +%{_texdir}/texmf-dist/web2c/cp852-cs.tcx +%{_texdir}/texmf-dist/web2c/cp852-pl.tcx +%{_texdir}/texmf-dist/web2c/cp8bit.tcx +%{_texdir}/texmf-dist/web2c/empty.tcx %config(noreplace) %{_sysconfdir}/texlive/web2c/fmtutil.cnf -%ghost %{_datadir}/texlive/texmf-dist/web2c/fmtutil.cnf -%{_datadir}/texlive/texmf-dist/web2c/il1-t1.tcx -%{_datadir}/texlive/texmf-dist/web2c/il2-cs.tcx -%{_datadir}/texlive/texmf-dist/web2c/il2-pl.tcx -%{_datadir}/texlive/texmf-dist/web2c/il2-t1.tcx -%{_datadir}/texlive/texmf-dist/web2c/kam-cs.tcx -%{_datadir}/texlive/texmf-dist/web2c/kam-t1.tcx -%{_datadir}/texlive/texmf-dist/web2c/macce-pl.tcx -%{_datadir}/texlive/texmf-dist/web2c/macce-t1.tcx -%{_datadir}/texlive/texmf-dist/web2c/maz-pl.tcx +%ghost %{_texdir}/texmf-dist/web2c/fmtutil.cnf +%{_texdir}/texmf-dist/web2c/il1-t1.tcx +%{_texdir}/texmf-dist/web2c/il2-cs.tcx +%{_texdir}/texmf-dist/web2c/il2-pl.tcx +%{_texdir}/texmf-dist/web2c/il2-t1.tcx +%{_texdir}/texmf-dist/web2c/kam-cs.tcx +%{_texdir}/texmf-dist/web2c/kam-t1.tcx +%{_texdir}/texmf-dist/web2c/macce-pl.tcx +%{_texdir}/texmf-dist/web2c/macce-t1.tcx +%{_texdir}/texmf-dist/web2c/maz-pl.tcx %config(noreplace) %{_sysconfdir}/texlive/web2c/mktex.cnf -%{_datadir}/texlive/texmf-dist/web2c/mktex.cnf -%{_datadir}/texlive/texmf-dist/web2c/mktex.opt -%{_datadir}/texlive/texmf-dist/web2c/mktexdir -%{_datadir}/texlive/texmf-dist/web2c/mktexdir.opt -%{_datadir}/texlive/texmf-dist/web2c/mktexnam -%{_datadir}/texlive/texmf-dist/web2c/mktexnam.opt -%{_datadir}/texlive/texmf-dist/web2c/mktexupd -%{_datadir}/texlive/texmf-dist/web2c/natural.tcx -%{_datadir}/texlive/texmf-dist/web2c/tcvn-t5.tcx +%{_texdir}/texmf-dist/web2c/mktex.cnf +%{_texdir}/texmf-dist/web2c/mktex.opt +%{_texdir}/texmf-dist/web2c/mktexdir +%{_texdir}/texmf-dist/web2c/mktexdir.opt +%{_texdir}/texmf-dist/web2c/mktexnam +%{_texdir}/texmf-dist/web2c/mktexnam.opt +%{_texdir}/texmf-dist/web2c/mktexupd +%{_texdir}/texmf-dist/web2c/natural.tcx +%{_texdir}/texmf-dist/web2c/tcvn-t5.tcx %config(noreplace) %{_sysconfdir}/texlive/web2c/texmf.cnf -%{_datadir}/texlive/texmf-dist/web2c/texmf.cnf -%{_datadir}/texlive/texmf-dist/web2c/viscii-t5.tcx -%dir %{_datadir}/texlive/fmtutil.cnf.d -%doc %{_datadir}/texlive/texmf-dist/doc/kpathsea/ -%doc %{_datadir}/texlive/texmf-dist/doc/web2c/ +%{_texdir}/texmf-dist/web2c/texmf.cnf +%{_texdir}/texmf-dist/web2c/viscii-t5.tcx +%dir %{fmtutil_cnf_d} +%doc %{_texdir}/texmf-dist/doc/kpathsea/ +%doc %{_texdir}/texmf-dist/doc/web2c/ -%files -n texlive-l3build +%files -n %{shortname}-l3build %license lppl1.3.txt %{_bindir}/l3build %{_mandir}/man1/l3build.1* -%{_datadir}/texlive/texmf-dist/scripts/l3build/ -%{_datadir}/texlive/texmf-dist/tex/latex/l3build/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/l3build/ +%{_texdir}/texmf-dist/scripts/l3build/ +%{_texdir}/texmf-dist/tex/latex/l3build/ +%doc %{_texdir}/texmf-dist/doc/latex/l3build/ -%files -n texlive-lacheck +%files -n %{shortname}-lacheck %license gpl.txt %{_bindir}/lacheck %{_mandir}/man1/lacheck.1* -%files -n texlive-latex +%files -n %{shortname}-latex %license lppl1.3.txt %{_bindir}/dvilualatex %{_bindir}/latex @@ -7395,40 +10431,40 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/pdflatex %{_mandir}/man1/latex.1* %{_mandir}/man1/pdflatex.1* -%{_datadir}/texlive/texmf-dist/makeindex/latex/ -%{_datadir}/texlive/texmf-dist/tex/latex/base/ -%{_datadir}/texlive/fmtutil.cnf.d/latex-bin -%doc %{_datadir}/texlive/texmf-dist/doc/latex/base/ +%{_texdir}/texmf-dist/makeindex/latex/ +%{_texdir}/texmf-dist/tex/latex/base/ +%{fmtutil_cnf_d}/latex-bin +%doc %{_texdir}/texmf-dist/doc/latex/base/ -%files -n texlive-latex-git-log +%files -n %{shortname}-latex-git-log %license gpl3.txt %{_bindir}/latex-git-log %{_mandir}/man1/latex-git-log.1* -%{_datadir}/texlive/texmf-dist/scripts/latex-git-log/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latex-git-log/ +%{_texdir}/texmf-dist/scripts/latex-git-log/ +%doc %{_texdir}/texmf-dist/doc/support/latex-git-log/ -%files -n texlive-latex-papersize +%files -n %{shortname}-latex-papersize %license apache2.txt %{_bindir}/latex-papersize -%{_datadir}/texlive/texmf-dist/scripts/latex-papersize -%doc %{_datadir}/texlive/texmf-dist/doc/support/latex-papersize/ +%{_texdir}/texmf-dist/scripts/latex-papersize +%doc %{_texdir}/texmf-dist/doc/support/latex-papersize/ -%files -n texlive-latex2man +%files -n %{shortname}-latex2man %license lppl1.txt %{_bindir}/latex2man %{_mandir}/man1/latex2man.1* %{_infodir}/latex2man.info* -%{_datadir}/texlive/texmf-dist/scripts/latex2man/ -%{_datadir}/texlive/texmf-dist/tex/latex/latex2man/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latex2man/ +%{_texdir}/texmf-dist/scripts/latex2man/ +%{_texdir}/texmf-dist/tex/latex/latex2man/ +%doc %{_texdir}/texmf-dist/doc/support/latex2man/ -%files -n texlive-latex2nemeth +%files -n %{shortname}-latex2nemeth %license gpl3.txt %{_bindir}/latex2nemeth -%{_datadir}/texlive/texmf-dist/scripts/latex2nemeth -%doc %{_datadir}/texlive/texmf-dist/doc/support/latex2nemeth +%{_texdir}/texmf-dist/scripts/latex2nemeth +%doc %{_texdir}/texmf-dist/doc/support/latex2nemeth -%files -n texlive-latexdiff +%files -n %{shortname}-latexdiff %license gpl3.txt %{_bindir}/latexdiff %{_bindir}/latexdiff-vc @@ -7436,28 +10472,28 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/latexdiff-vc.1* %{_mandir}/man1/latexdiff.1* %{_mandir}/man1/latexrevise.1* -%{_datadir}/texlive/texmf-dist/scripts/latexdiff/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latexdiff/ +%{_texdir}/texmf-dist/scripts/latexdiff/ +%doc %{_texdir}/texmf-dist/doc/support/latexdiff/ -%files -n texlive-latexfileversion +%files -n %{shortname}-latexfileversion %license lppl1.txt %{_bindir}/latexfileversion -%{_datadir}/texlive/texmf-dist/scripts/latexfileversion/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latexfileversion/ +%{_texdir}/texmf-dist/scripts/latexfileversion/ +%doc %{_texdir}/texmf-dist/doc/support/latexfileversion/ -%files -n texlive-latexpand +%files -n %{shortname}-latexpand %license bsd.txt %{_bindir}/latexpand -%{_datadir}/texlive/texmf-dist/scripts/latexpand/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latexpand/ +%{_texdir}/texmf-dist/scripts/latexpand/ +%doc %{_texdir}/texmf-dist/doc/support/latexpand/ -%files -n texlive-latexindent +%files -n %{shortname}-latexindent %license gpl3.txt %{_bindir}/latexindent -%{_datadir}/texlive/texmf-dist/scripts/latexindent/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latexindent/ +%{_texdir}/texmf-dist/scripts/latexindent/ +%doc %{_texdir}/texmf-dist/doc/support/latexindent/ -%files -n texlive-lcdftypetools +%files -n %{shortname}-lcdftypetools %license gpl.txt %{_bindir}/cfftot1 %{_bindir}/mmafm @@ -7482,105 +10518,114 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/t1testpage.1* %{_mandir}/man1/ttftotype42.1* -%files -n texlive-lib +%files -n %{shortname}-lib %{_libdir}/*.so.* -%dir %{_datadir}/texlive/texmf-config -%dir %{_datadir}/texlive/texmf-config/web2c -%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_datadir}/texlive/texmf-config/ls-R -%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_datadir}/texlive/texmf-dist/ls-R -%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_datadir}/texlive/texmf-local/ls-R +%dir %{_texdir}/texmf-config +%dir %{_texdir}/texmf-config/web2c +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-config/ls-R +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-dist/ls-R +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-local/ls-R -%files -n texlive-lib-devel +%files -n %{shortname}-lib-devel %dir %{_includedir}/kpathsea %{_includedir}/kpathsea/* %{_includedir}/synctex/ %{_includedir}/texlua53/ -%ifnarch aarch64 riscv64 loongarch64 ppc64le +%ifnarch %{power64} s390 s390x riscv64 loongarch64 %{_includedir}/texluajit/ %endif %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc -%files -n texlive-light-latex-make +%files -n %{shortname}-light-latex-make %{_bindir}/llmk %{_mandir}/man1/llmk* -%doc %{_datadir}/texlive/texmf-dist/doc/support/light-latex-make -%{_datadir}/texlive/texmf-dist/scripts/light-latex-make +%doc %{_texdir}/texmf-dist/doc/support/light-latex-make +%{_texdir}/texmf-dist/scripts/light-latex-make -%files -n texlive-lilyglyphs +%files -n %{shortname}-lilyglyphs %license lppl1.3.txt %{_bindir}/lily-glyph-commands %{_bindir}/lily-image-commands %{_bindir}/lily-rebuild-pdfs %{_datadir}/fonts/lilyglyphs -%{_datadir}/texlive/texmf-dist/fonts/opentype/public/lilyglyphs/ -%{_datadir}/texlive/texmf-dist/scripts/lilyglyphs/ -%{_datadir}/texlive/texmf-dist/tex/latex/lilyglyphs/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/lilyglyphs/ +%{_texdir}/texmf-dist/fonts/opentype/public/lilyglyphs/ +%{_texdir}/texmf-dist/scripts/lilyglyphs/ +%{_texdir}/texmf-dist/tex/latex/lilyglyphs/ +%doc %{_texdir}/texmf-dist/doc/latex/lilyglyphs/ -%files -n texlive-listbib +%files -n %{shortname}-listbib %license gpl.txt %{_bindir}/listbib -%{_datadir}/texlive/texmf-dist/bibtex/bst/listbib/ -%{_datadir}/texlive/texmf-dist/scripts/listbib/ -%{_datadir}/texlive/texmf-dist/tex/latex/listbib/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/listbib/ +%{_texdir}/texmf-dist/bibtex/bst/listbib/ +%{_texdir}/texmf-dist/scripts/listbib/ +%{_texdir}/texmf-dist/tex/latex/listbib/ +%doc %{_texdir}/texmf-dist/doc/latex/listbib/ -%files -n texlive-listings-ext +%files -n %{shortname}-listings-ext %license lppl1.2.txt %{_bindir}/listings-ext.sh -%{_datadir}/texlive/texmf-dist/scripts/listings-ext/ -%{_datadir}/texlive/texmf-dist/tex/latex/listings-ext/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/listings-ext/ +%{_texdir}/texmf-dist/scripts/listings-ext/ +%{_texdir}/texmf-dist/tex/latex/listings-ext/ +%doc %{_texdir}/texmf-dist/doc/latex/listings-ext/ -%files -n texlive-lollipop +%files -n %{shortname}-lollipop %license gpl3.txt %{_bindir}/lollipop -%{_datadir}/texlive/texmf-dist/tex/lollipop/ -%{_datadir}/texlive/fmtutil.cnf.d/lollipop -%doc %{_datadir}/texlive/texmf-dist/doc/otherformats/lollipop/ +%{_texdir}/texmf-dist/tex/lollipop/ +%{fmtutil_cnf_d}/lollipop +%doc %{_texdir}/texmf-dist/doc/otherformats/lollipop/ -%files -n texlive-ltxfileinfo +%files -n %{shortname}-ltxfileinfo %license gpl.txt %{_bindir}/ltxfileinfo -%{_datadir}/texlive/texmf-dist/scripts/ltxfileinfo/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ltxfileinfo/ +%{_texdir}/texmf-dist/scripts/ltxfileinfo/ +%doc %{_texdir}/texmf-dist/doc/support/ltxfileinfo/ -%files -n texlive-ltximg +%files -n %{shortname}-ltximg %license gpl2.txt %{_bindir}/ltximg -%{_datadir}/texlive/texmf-dist/scripts/ltximg/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ltximg/ +%{_mandir}/man1/ltximg.1* +%{_texdir}/texmf-dist/scripts/ltximg/ +%doc %{_texdir}/texmf-dist/doc/support/ltximg/ + +%files -n %{shortname}-luafindfont +%license lppl1.3c.txt +%{_bindir}/luafindfont +%{_mandir}/man1/luafindfont.1* +%{_texdir}/texmf-dist/scripts/luafindfont/ +%doc %{_texdir}/texmf-dist/doc/support/luafindfont/ -%files -n texlive-luaotfload +%files -n %{shortname}-luaotfload %license gpl2.txt %{_bindir}/luaotfload-tool %{_mandir}/man1/luaotfload-tool.1* %{_mandir}/man5/luaotfload.conf.5* -%{_datadir}/texlive/texmf-dist/scripts/luaotfload/ -%{_datadir}/texlive/texmf-dist/tex/luatex/luaotfload/ -%doc %{_datadir}/texlive/texmf-dist/doc/luatex/luaotfload/ +%{_texdir}/texmf-dist/scripts/luaotfload/ +%{_texdir}/texmf-dist/tex/luatex/luaotfload/ +%doc %{_texdir}/texmf-dist/doc/luatex/luaotfload/ -%files -n texlive-luahbtex +%files -n %{shortname}-luahbtex %license gpl2.txt %{_bindir}/luahbtex %{_bindir}/lualatex-dev %{_mandir}/man1/luahbtex.1* %{_mandir}/man1/lualatex-dev.1* -%{_datadir}/texlive/fmtutil.cnf.d/luahbtex +%{fmtutil_cnf_d}/luahbtex -%files -n texlive-luajittex +%files -n %{shortname}-luajittex %license gpl2.txt -%ifnarch aarch64 riscv64 loongarch64 ppc64le +%ifnarch %{power64} s390 s390x riscv64 loongarch64 %{_bindir}/luajittex %{_bindir}/luajithbtex %{_bindir}/texluajit %{_bindir}/texluajitc %endif +%{_mandir}/man1/luajithbtex.1* %{_mandir}/man1/luajittex.1* -%{_datadir}/texlive/fmtutil.cnf.d/luajittex +%{fmtutil_cnf_d}/luajittex -%files -n texlive-luatex +%files -n %{shortname}-luatex %license gpl2.txt %{_bindir}/dviluatex %{_bindir}/dvilualatex-dev @@ -7593,62 +10638,64 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/luatex.1* %{_mandir}/man1/texlua.1* %{_mandir}/man1/texluac.1* -%{_datadir}/texlive/texmf-dist/tex/generic/config/luatex-unicode-letters.tex -%{_datadir}/texlive/texmf-dist/tex/generic/config/luatexiniconfig.tex -%{_datadir}/texlive/texmf-dist/web2c/texmfcnf.lua -%{_datadir}/texlive/fmtutil.cnf.d/luatex -%doc %{_datadir}/texlive/texmf-dist/doc/luatex/base/ - -%files -n texlive-lwarp +%{_sysconfdir}/texlive/web2c/texmfcnf.lua +%{_texdir}/texmf-dist/tex/generic/config/luatex-unicode-letters.tex +%{_texdir}/texmf-dist/tex/generic/config/pdftex-dvi.tex +%{_texdir}/texmf-dist/web2c/texmfcnf.lua +%{fmtutil_cnf_d}/luatex +%doc %{_texdir}/texmf-dist/doc/luatex/base/ + +%files -n %{shortname}-lwarp %license lppl1.3.txt %{_bindir}/lwarpmk -%{_datadir}/texlive/texmf-dist/scripts/lwarp -%{_datadir}/texlive/texmf-dist/tex/latex/lwarp -%doc %{_datadir}/texlive/texmf-dist/doc/latex/lwarp +%{_texdir}/texmf-dist/scripts/lwarp +%{_texdir}/texmf-dist/tex/latex/lwarp +%doc %{_texdir}/texmf-dist/doc/latex/lwarp -%files -n texlive-lyluatex -%{_datadir}/texlive/texmf-dist/scripts/lyluatex/ -%{_datadir}/texlive/texmf-dist/tex/luatex/lyluatex/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/lyluatex/ +%files -n %{shortname}-lyluatex +%{_texdir}/texmf-dist/scripts/lyluatex/ +%{_texdir}/texmf-dist/tex/luatex/lyluatex/ +%doc %{_texdir}/texmf-dist/doc/support/lyluatex/ -%files -n texlive-make4ht +%files -n %{shortname}-make4ht %license lppl1.3.txt %{_bindir}/make4ht -%{_datadir}/texlive/texmf-dist/scripts/make4ht/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/make4ht/ +%{_texdir}/texmf-dist/scripts/make4ht/ +%doc %{_texdir}/texmf-dist/doc/support/make4ht/ -%files -n texlive-makedtx +%files -n %{shortname}-makedtx %license lppl1.txt %{_bindir}/makedtx -%{_datadir}/texlive/texmf-dist/scripts/makedtx/ -%{_datadir}/texlive/texmf-dist/tex/latex/makedtx/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/makedtx/ +%{_texdir}/texmf-dist/scripts/makedtx/ +%{_texdir}/texmf-dist/tex/latex/makedtx/ +%doc %{_texdir}/texmf-dist/doc/support/makedtx/ -%files -n texlive-makeindex +%files -n %{shortname}-makeindex %{_bindir}/makeindex %{_bindir}/mkindex %{_mandir}/man1/makeindex.1* %{_mandir}/man1/mkindex.1* -%exclude %{_datadir}/texlive/texmf-dist/makeindex/latex/ -%{_datadir}/texlive/texmf-dist/makeindex/ -%{_datadir}/texlive/texmf-dist/tex/plain/makeindex/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/makeindex/ +%exclude %{_texdir}/texmf-dist/makeindex/latex/ +%{_texdir}/texmf-dist/makeindex/ +%{_texdir}/texmf-dist/tex/plain/makeindex/ +%doc %{_texdir}/texmf-dist/doc/support/makeindex/ -%files -n texlive-match_parens +%files -n %{shortname}-match_parens %license gpl.txt %{_bindir}/match_parens -%{_datadir}/texlive/texmf-dist/scripts/match_parens/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/match_parens/ +%{_mandir}/man1/match_parens.1* +%{_texdir}/texmf-dist/scripts/match_parens/ +%doc %{_texdir}/texmf-dist/doc/support/match_parens/ -%files -n texlive-mathspic +%files -n %{shortname}-mathspic %license lppl1.txt %{_bindir}/mathspic %{_mandir}/man1/mathspic.1* -%{_datadir}/texlive/texmf-dist/scripts/mathspic/ -%{_datadir}/texlive/texmf-dist/tex/latex/mathspic/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/mathspic/ +%{_texdir}/texmf-dist/scripts/mathspic/ +%{_texdir}/texmf-dist/tex/latex/mathspic/ +%doc %{_texdir}/texmf-dist/doc/latex/mathspic/ -%files -n texlive-metafont +%files -n %{shortname}-metafont %license knuth.txt %{_bindir}/inimf %{_bindir}/mf @@ -7656,10 +10703,10 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/inimf.1.* %{_mandir}/man1/mf-nowin.1* %{_mandir}/man1/mf.1* -%{_datadir}/texlive/texmf-dist/metafont/ -%{_datadir}/texlive/fmtutil.cnf.d/metafont +%{_texdir}/texmf-dist/metafont/ +%{fmtutil_cnf_d}/metafont -%files -n texlive-metapost +%files -n %{shortname}-metapost %license lgpl2.1.txt %{_bindir}/dvitomp %{_bindir}/mfplain @@ -7667,37 +10714,37 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/r-mpost %{_mandir}/man1/dvitomp.1* %{_mandir}/man1/mpost.1* -%{_datadir}/texlive/texmf-dist/fonts/afm/metapost/ -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/metapost/ -%{_datadir}/texlive/texmf-dist/fonts/map/dvips/metapost/ -%{_datadir}/texlive/texmf-dist/fonts/tfm/metapost/ -%{_datadir}/texlive/texmf-dist/fonts/type1/metapost/ -%exclude %{_datadir}/texlive/texmf-dist/metapost/context/ -%{_datadir}/texlive/texmf-dist/metapost/ -%{_datadir}/texlive/texmf-dist/tex/generic/metapost/ -%doc %{_datadir}/texlive/texmf-dist/doc/metapost/ - -%files -n texlive-mex +%{_texdir}/texmf-dist/fonts/afm/metapost/ +%{_texdir}/texmf-dist/fonts/enc/dvips/metapost/ +%{_texdir}/texmf-dist/fonts/map/dvips/metapost/ +%{_texdir}/texmf-dist/fonts/tfm/metapost/ +%{_texdir}/texmf-dist/fonts/type1/metapost/ +%exclude %{_texdir}/texmf-dist/metapost/context/ +%{_texdir}/texmf-dist/metapost/ +%{_texdir}/texmf-dist/tex/generic/metapost/ +%doc %{_texdir}/texmf-dist/doc/metapost/ + +%files -n %{shortname}-mex %license pd.txt %{_bindir}/mex %{_bindir}/pdfmex %{_bindir}/utf8mex -%{_datadir}/texlive/texmf-dist/tex/mex/ -%{_datadir}/texlive/fmtutil.cnf.d/mex -%doc %{_datadir}/texlive/texmf-dist/doc/mex/ +%{_texdir}/texmf-dist/tex/mex/ +%{fmtutil_cnf_d}/mex +%doc %{_texdir}/texmf-dist/doc/mex/ -%files -n texlive-mflua +%files -n %{shortname}-mflua %license gpl2.txt %{_bindir}/mflua %{_bindir}/mflua-nowin -%ifnarch aarch64 riscv64 loongarch64 ppc64le +%ifnarch %{power64} s390 s390x riscv64 loongarch64 %{_bindir}/mfluajit %{_bindir}/mfluajit-nowin %endif -%{_datadir}/texlive/fmtutil.cnf.d/mflua -%{_datadir}/texlive/texmf-dist/scripts/mflua/ +%{fmtutil_cnf_d}/mflua +%{_texdir}/texmf-dist/scripts/mflua/ -%files -n texlive-mfware +%files -n %{shortname}-mfware %license knuth.txt %{_bindir}/gftodvi %{_bindir}/gftopk @@ -7711,101 +10758,101 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/mft.1* %{_mandir}/man1/pktogf.1* %{_mandir}/man1/pktype.1* -%{_datadir}/texlive/texmf-dist/mft/ +%{_texdir}/texmf-dist/mft/ -%files -n texlive-mf2pt1 +%files -n %{shortname}-mf2pt1 %license lppl1.txt %{_bindir}/mf2pt1 %{_infodir}/mf2pt1.info* -%{_datadir}/texlive/texmf-dist/metapost/mf2pt1/ -%{_datadir}/texlive/texmf-dist/scripts/mf2pt1/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/mf2pt1/ +%{_texdir}/texmf-dist/metapost/mf2pt1/ +%{_texdir}/texmf-dist/scripts/mf2pt1/ +%doc %{_texdir}/texmf-dist/doc/support/mf2pt1/ -%files -n texlive-mkgrkindex +%files -n %{shortname}-mkgrkindex %{_bindir}/mkgrkindex -%{_datadir}/texlive/texmf-dist/makeindex/mkgrkindex/ -%{_datadir}/texlive/texmf-dist/scripts/mkgrkindex/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/mkgrkindex/ +%{_texdir}/texmf-dist/makeindex/mkgrkindex/ +%{_texdir}/texmf-dist/scripts/mkgrkindex/ +%doc %{_texdir}/texmf-dist/doc/support/mkgrkindex/ -%files -n texlive-mkjobtexmf +%files -n %{shortname}-mkjobtexmf %{_bindir}/mkjobtexmf %{_mandir}/man1/mkjobtexmf.1* -%{_datadir}/texlive/texmf-dist/scripts/mkjobtexmf/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/mkjobtexmf/ +%{_texdir}/texmf-dist/scripts/mkjobtexmf/ +%doc %{_texdir}/texmf-dist/doc/generic/mkjobtexmf/ -%files -n texlive-mkpic +%files -n %{shortname}-mkpic %license gpl.txt %{_bindir}/mkpic -%{_datadir}/texlive/texmf-dist/scripts/mkpic/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/mkpic/ +%{_texdir}/texmf-dist/scripts/mkpic/ +%doc %{_texdir}/texmf-dist/doc/support/mkpic/ -%files -n texlive-mltex +%files -n %{shortname}-mltex %license knuth.txt %{_bindir}/mllatex %{_bindir}/mltex -%{_datadir}/texlive/texmf-dist/tex/latex/mltex/ -%{_datadir}/texlive/texmf-dist/tex/mltex/ -%{_datadir}/texlive/fmtutil.cnf.d/mltex -%doc %{_datadir}/texlive/texmf-dist/doc/latex/mltex/ +%{_texdir}/texmf-dist/tex/latex/mltex/ +%{_texdir}/texmf-dist/tex/mltex/ +%{fmtutil_cnf_d}/mltex +%doc %{_texdir}/texmf-dist/doc/latex/mltex/ -%files -n texlive-mptopdf +%files -n %{shortname}-mptopdf %license lppl1.txt %{_bindir}/mptopdf %{_mandir}/man1/mptopdf.1* -%{_datadir}/texlive/texmf-dist/scripts/context/perl/mptopdf.pl -%{_datadir}/texlive/texmf-dist/tex/context/base/mkii/supp-mis.mkii -%{_datadir}/texlive/texmf-dist/tex/context/base/mkii/supp-mpe.mkii -%{_datadir}/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -%{_datadir}/texlive/texmf-dist/tex/context/base/mkii/syst-tex.mkii -%{_datadir}/texlive/texmf-dist/tex/generic/context/mptopdf/ -%{_datadir}/texlive/fmtutil.cnf.d/mptopdf -%doc %{_datadir}/texlive/texmf-dist/doc/context/scripts/mkii/mptopdf.man - -%files -n texlive-multibibliography +%{_texdir}/texmf-dist/scripts/context/perl/mptopdf.pl +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-mis.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-mpe.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/syst-tex.mkii +%{_texdir}/texmf-dist/tex/generic/context/mptopdf/ +%{fmtutil_cnf_d}/mptopdf +%doc %{_texdir}/texmf-dist/doc/context/scripts/mkii/mptopdf.man + +%files -n %{shortname}-multibibliography %license lppl1.3.txt %{_bindir}/multibibliography -%{_datadir}/texlive/texmf-dist/bibtex/bst/multibibliography/ -%{_datadir}/texlive/texmf-dist/scripts/multibibliography/ -%{_datadir}/texlive/texmf-dist/tex/latex/multibibliography/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/multibibliography/ +%{_texdir}/texmf-dist/bibtex/bst/multibibliography/ +%{_texdir}/texmf-dist/scripts/multibibliography/ +%{_texdir}/texmf-dist/tex/latex/multibibliography/ +%doc %{_texdir}/texmf-dist/doc/latex/multibibliography/ -%files -n texlive-musixtex +%files -n %{shortname}-musixtex %license gpl2.txt %{_bindir}/musixflx %{_bindir}/musixtex %{_mandir}/man1/musixflx.1* %{_mandir}/man1/musixtex.1* -%{_datadir}/texlive/texmf-dist/dvips/musixtex/ -%{_datadir}/texlive/texmf-dist/scripts/musixtex/ -%{_datadir}/texlive/texmf-dist/tex/generic/musixtex/ -%{_datadir}/texlive/texmf-dist/tex/latex/musixtex/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/musixtex/ +%{_texdir}/texmf-dist/dvips/musixtex/ +%{_texdir}/texmf-dist/scripts/musixtex/ +%{_texdir}/texmf-dist/tex/generic/musixtex/ +%{_texdir}/texmf-dist/tex/latex/musixtex/ +%doc %{_texdir}/texmf-dist/doc/generic/musixtex/ -%files -n texlive-musixtnt +%files -n %{shortname}-musixtnt %license gpl2.txt %{_bindir}/msxlint %{_mandir}/man1/msxlint.1* -%{_datadir}/texlive/texmf-dist/tex/generic/musixtnt/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/musixtnt/ +%{_texdir}/texmf-dist/tex/generic/musixtnt/ +%doc %{_texdir}/texmf-dist/doc/generic/musixtnt/ -%files -n texlive-m-tx +%files -n %{shortname}-m-tx %license gpl.txt %{_bindir}/m-tx %{_bindir}/prepmx %{_mandir}/man1/prepmx.1* -%{_datadir}/texlive/texmf-dist/scripts/m-tx/ -%{_datadir}/texlive/texmf-dist/tex/generic/m-tx/ -%{_datadir}/texlive/texmf-dist/tex/latex/m-tx/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/m-tx/ +%{_texdir}/texmf-dist/scripts/m-tx/ +%{_texdir}/texmf-dist/tex/generic/m-tx/ +%{_texdir}/texmf-dist/tex/latex/m-tx/ +%doc %{_texdir}/texmf-dist/doc/generic/m-tx/ -%files -n texlive-oberdiek +%files -n %{shortname}-oberdiek %license lppl1.txt -%{_datadir}/texlive/texmf-dist/bibtex/bib/oberdiek/ -%{_datadir}/texlive/texmf-dist/tex/generic/oberdiek/ -%{_datadir}/texlive/texmf-dist/tex/latex/oberdiek/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/oberdiek/ +%{_texdir}/texmf-dist/bibtex/bib/oberdiek/ +%{_texdir}/texmf-dist/tex/generic/oberdiek/ +%{_texdir}/texmf-dist/tex/latex/oberdiek/ +%doc %{_texdir}/texmf-dist/doc/latex/oberdiek/ -%files -n texlive-omegaware +%files -n %{shortname}-omegaware %license lppl1.txt %{_bindir}/odvicopy %{_bindir}/odvitype @@ -7830,52 +10877,67 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/ovf2ovp.1* %{_mandir}/man1/ovp2ovf.1* -%files -n texlive-optex +%files -n %{shortname}-optex %{_bindir}/optex -%{_datadir}/texlive/fmtutil.cnf.d/optex +%{fmtutil_cnf_d}/optex %{_mandir}/man1/optex.1* -%{_datadir}/texlive/texmf-dist/tex/optex/ -%doc %{_datadir}/texlive/texmf-dist/doc/optex/ +%{_texdir}/texmf-dist/tex/optex/ +%doc %{_texdir}/texmf-dist/doc/optex/ -%files -n texlive-patgen +%files -n %{shortname}-optexcount +%{_bindir}/optexcount +%{_texdir}/texmf-dist/scripts/optexcount/ +%doc %{_texdir}/texmf-dist/doc/support/optexcount/ + +%files -n %{shortname}-pagelayout +%license lppl1.3c.txt +%doc %{_texdir}/texmf-dist/doc/latex/pagelayout +%{_bindir}/pagelayoutapi +%{_bindir}/textestvis +%{_mandir}/man1/pagelayoutapi.1* +%{_mandir}/man1/textestvis.1* +%{_texdir}/texmf-dist/scripts/pagelayout +%{_texdir}/texmf-dist/tex/latex/pagelayout + +%files -n %{shortname}-patgen %license knuth.txt %{_bindir}/patgen %{_mandir}/man1/patgen.1* -%files -n texlive-pax +%files -n %{shortname}-pax %{_bindir}/pdfannotextractor -%{_datadir}/texlive/texmf-dist/scripts/pax/ -%{_datadir}/texlive/texmf-dist/tex/latex/pax/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/pax/ +%{_texdir}/texmf-dist/scripts/pax/ +%{_texdir}/texmf-dist/tex/latex/pax/ +%doc %{_texdir}/texmf-dist/doc/latex/pax/ -%files -n texlive-pdfbook2 +%files -n %{shortname}-pdfbook2 %license gpl3.txt %{_bindir}/pdfbook2 %{_mandir}/man1/pdfbook2.1* -%{_datadir}/texlive/texmf-dist/scripts/pdfbook2/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdfbook2/ +%{_texdir}/texmf-dist/scripts/pdfbook2/ +%doc %{_texdir}/texmf-dist/doc/support/pdfbook2/ -%files -n texlive-pdfcrop +%files -n %{shortname}-pdfcrop %license lppl1.txt %{_bindir}/pdfcrop %{_bindir}/rpdfcrop -%{_datadir}/texlive/texmf-dist/scripts/pdfcrop/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdfcrop/ +%{_texdir}/texmf-dist/scripts/pdfcrop/ +%doc %{_texdir}/texmf-dist/doc/support/pdfcrop/ -%files -n texlive-pdfjam +%files -n %{shortname}-pdfjam %license gpl2.txt %{_bindir}/pdfjam %{_mandir}/man1/pdfjam.1* -%{_datadir}/texlive/texmf-dist/scripts/pdfjam/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdfjam/ +%{_texdir}/texmf-dist/scripts/pdfjam/ +%doc %{_texdir}/texmf-dist/doc/support/pdfjam/ -%files -n texlive-pdflatexpicscale +%files -n %{shortname}-pdflatexpicscale %license lppl.txt %{_bindir}/pdflatexpicscale -%{_datadir}/texlive/texmf-dist/scripts/pdflatexpicscale -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdflatexpicscale +%{_texdir}/texmf-dist/scripts/pdflatexpicscale +%doc %{_texdir}/texmf-dist/doc/support/pdflatexpicscale -%files -n texlive-pdftex +%files -n %{shortname}-pdftex %license gpl.txt %{_bindir}/etex %{_bindir}/latex-dev @@ -7887,146 +10949,145 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/pdfetex.1* %{_mandir}/man1/pdflatex-dev.1* %{_mandir}/man1/pdftex.1* -%{_datadir}/texlive/texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map -%{_datadir}/texlive/texmf-dist/fonts/tfm/public/pdftex/ -%{_datadir}/texlive/texmf-dist/fonts/type1/public/pdftex/ -%{_datadir}/texlive/texmf-dist/scripts/simpdftex/simpdftex -%{_datadir}/texlive/texmf-dist/tex/generic/config/pdftex-dvi.tex -%{_datadir}/texlive/texmf-dist/tex/generic/pdftex/ -%{_datadir}/texlive/fmtutil.cnf.d/latex-bin-dev -%{_datadir}/texlive/fmtutil.cnf.d/pdftex -%doc %{_datadir}/texlive/texmf-dist/doc/pdftex/ - -%files -n texlive-pdftex-quiet +%{_texdir}/texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map +%{_texdir}/texmf-dist/fonts/tfm/public/pdftex/ +%{_texdir}/texmf-dist/fonts/type1/public/pdftex/ +%{_texdir}/texmf-dist/scripts/simpdftex/simpdftex +%{_texdir}/texmf-dist/tex/generic/config/pdftex-dvi.tex +%{_texdir}/texmf-dist/tex/generic/pdftex/ +%{fmtutil_cnf_d}/latex-bin-dev +%{fmtutil_cnf_d}/pdftex +%doc %{_texdir}/texmf-dist/doc/pdftex/ + +%files -n %{shortname}-pdftex-quiet %license gpl3.txt %{_bindir}/pdftex-quiet -%{_datadir}/texlive/texmf-dist/scripts/pdftex-quiet/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdftex-quiet/ +%{_texdir}/texmf-dist/scripts/pdftex-quiet/ +%doc %{_texdir}/texmf-dist/doc/support/pdftex-quiet/ -%files -n texlive-pdftosrc +%files -n %{shortname}-pdftosrc %license gpl2.txt %{_bindir}/pdftosrc %{_mandir}/man1/pdftosrc.1* -%files -n texlive-pdfxup +%files -n %{shortname}-pdfxup %license lppl1.3.txt %{_bindir}/pdfxup %{_mandir}/man1/pdfxup.1* -%{_datadir}/texlive/texmf-dist/tex/latex/pdfxup/ -%{_datadir}/texlive/texmf-dist/scripts/pdfxup/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdfxup/ +%{_texdir}/texmf-dist/tex/latex/pdfxup/ +%{_texdir}/texmf-dist/scripts/pdfxup/ +%doc %{_texdir}/texmf-dist/doc/support/pdfxup/ -%files -n texlive-pedigree-perl +%files -n %{shortname}-pedigree-perl %license gpl2.txt %{_bindir}/pedigree %{_mandir}/man1/pedigree.1* -%{_datadir}/texlive/texmf-dist/scripts/pedigree-perl/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pedigree-perl/ +%{_texdir}/texmf-dist/scripts/pedigree-perl/ +%doc %{_texdir}/texmf-dist/doc/support/pedigree-perl/ -%files -n texlive-perltex +%files -n %{shortname}-perltex %license lppl1.txt %{_bindir}/perltex %{_mandir}/man1/perltex.1* -%{_datadir}/texlive/texmf-dist/scripts/perltex/ -%{_datadir}/texlive/texmf-dist/tex/latex/perltex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/perltex/ +%{_texdir}/texmf-dist/scripts/perltex/ +%{_texdir}/texmf-dist/tex/latex/perltex/ +%doc %{_texdir}/texmf-dist/doc/latex/perltex/ -%files -n texlive-petri-nets +%files -n %{shortname}-petri-nets %license gpl.txt %{_bindir}/pn2pdf -%{_datadir}/texlive/texmf-dist/scripts/petri-nets/ -%{_datadir}/texlive/texmf-dist/tex/generic/petri-nets/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/petri-nets/ +%{_texdir}/texmf-dist/scripts/petri-nets/ +%{_texdir}/texmf-dist/tex/generic/petri-nets/ +%doc %{_texdir}/texmf-dist/doc/generic/petri-nets/ -%files -n texlive-pfarrei +%files -n %{shortname}-pfarrei %license lppl1.3.txt %{_bindir}/a5toa4 %{_bindir}/pfarrei -%{_datadir}/texlive/texmf-dist/scripts/pfarrei/ -%{_datadir}/texlive/texmf-dist/tex/latex/pfarrei/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/pfarrei/ +%{_texdir}/texmf-dist/scripts/pfarrei/ +%{_texdir}/texmf-dist/tex/latex/pfarrei/ +%doc %{_texdir}/texmf-dist/doc/latex/pfarrei/ -%files -n texlive-pkfix +%files -n %{shortname}-pkfix %license lppl1.3.txt %{_bindir}/pkfix -%{_datadir}/texlive/texmf-dist/scripts/pkfix/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pkfix/ +%{_texdir}/texmf-dist/scripts/pkfix/ +%doc %{_texdir}/texmf-dist/doc/support/pkfix/ -%files -n texlive-pkfix-helper +%files -n %{shortname}-pkfix-helper %license lppl1.txt %{_bindir}/pkfix-helper %{_mandir}/man1/pkfix-helper.1* -%{_datadir}/texlive/texmf-dist/scripts/pkfix-helper/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pkfix-helper/ +%{_texdir}/texmf-dist/scripts/pkfix-helper/ +%doc %{_texdir}/texmf-dist/doc/support/pkfix-helper/ -%files -n texlive-pmx +%files -n %{shortname}-pmx %license gpl2.txt %{_bindir}/pmxab %{_bindir}/scor2prt %{_mandir}/man1/pmxab.1* %{_mandir}/man1/scor2prt.1* -%{_datadir}/texlive/texmf-dist/tex/generic/pmx/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/pmx/ +%{_texdir}/texmf-dist/tex/generic/pmx/ +%doc %{_texdir}/texmf-dist/doc/generic/pmx/ -%files -n texlive-pmxchords +%files -n %{shortname}-pmxchords %license gpl2.txt %{_bindir}/pmxchords %{_mandir}/man1/pmxchords.1* -%{_datadir}/texlive/texmf-dist/scripts/pmxchords/ -%{_datadir}/texlive/texmf-dist/tex/generic/pmxchords/ -%doc %{_datadir}/texlive/texmf-dist/doc/pmxchords/ +%{_texdir}/texmf-dist/scripts/pmxchords/ +%{_texdir}/texmf-dist/tex/generic/pmxchords/ +%doc %{_texdir}/texmf-dist/doc/support/pmxchords -%files -n texlive-pst2pdf +%files -n %{shortname}-pst2pdf %license gpl2.txt %{_bindir}/pst2pdf -%{_datadir}/texlive/texmf-dist/scripts/pst2pdf/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pst2pdf/ +%{_texdir}/texmf-dist/scripts/pst2pdf/ +%doc %{_texdir}/texmf-dist/doc/support/pst2pdf/ -%files -n texlive-pst-pdf +%files -n %{shortname}-pst-pdf %license lppl1.txt %{_bindir}/ps4pdf -%{_datadir}/texlive/texmf-dist/scripts/pst-pdf/ -%{_datadir}/texlive/texmf-dist/tex/latex/pst-pdf/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/pst-pdf/ - -# No psutils for you today! -%if 0 -%files -n texlive-psutils -%{_bindir}/epsffit -%{_bindir}/extractres -%{_bindir}/includeres -%{_bindir}/psbook -%{_bindir}/psjoin -%{_bindir}/psnup -%{_bindir}/psresize -%{_bindir}/psselect -%{_bindir}/pstops -%{_mandir}/man1/epsffit.1* -%{_mandir}/man1/extractres.1* -%{_mandir}/man1/includeres.1* -%{_mandir}/man1/psbook.1* -%{_mandir}/man1/psjoin.1* -%{_mandir}/man1/psnup.1* -%{_mandir}/man1/psresize.1* -%{_mandir}/man1/psselect.1* -%{_mandir}/man1/pstops.1* -%{_mandir}/man1/psutils.1* -%{_datadir}/texlive/texmf-dist/dvips/getafm/ -%{_datadir}/texlive/texmf-dist/psutils/ +%{_texdir}/texmf-dist/scripts/pst-pdf/ +%{_texdir}/texmf-dist/tex/latex/pst-pdf/ +%doc %{_texdir}/texmf-dist/doc/latex/pst-pdf/ + +%if %{without psutils} +%files -n %{shortname}-psutils +%{_bindir}/tl-epsffit +%{_bindir}/tl-extractres +%{_bindir}/tl-includeres +%{_bindir}/tl-psbook +%{_bindir}/tl-psjoin +%{_bindir}/tl-psnup +%{_bindir}/tl-psresize +%{_bindir}/tl-psselect +%{_bindir}/tl-pstops +%{_mandir}/man1/tl-epsffit.1* +%{_mandir}/man1/tl-extractres.1* +%{_mandir}/man1/tl-includeres.1* +%{_mandir}/man1/tl-psbook.1* +%{_mandir}/man1/tl-psjoin.1* +%{_mandir}/man1/tl-psnup.1* +%{_mandir}/man1/tl-psresize.1* +%{_mandir}/man1/tl-psselect.1* +%{_mandir}/man1/tl-pstops.1* +%{_mandir}/man1/tl-psutils.1* +%{_texdir}/texmf-dist/dvips/getafm/ +%{_texdir}/texmf-dist/psutils/ %dir %{_sysconfdir}/texlive/psutils %config(noreplace) %{_sysconfdir}/texlive/psutils/paper.cfg -%{_datadir}/texlive/texmf-dist/scripts/psutils +%{_texdir}/texmf-dist/scripts/psutils %endif -%files -n texlive-ps2eps +%files -n %{shortname}-ps2eps %license gpl.txt %{_bindir}/bbox %{_bindir}/ps2eps %{_mandir}/man1/bbox.1* %{_mandir}/man1/ps2eps.1* -%{_datadir}/texlive/texmf-dist/scripts/ps2eps/ +%{_texdir}/texmf-dist/scripts/ps2eps/ -%files -n texlive-ps2pk +%files -n %{shortname}-ps2pk %license other-free.txt %{_bindir}/mag %{_bindir}/pfb2pfa @@ -8037,7 +11098,8 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/pk2bm.1* %{_mandir}/man1/ps2pk.1* -%files -n texlive-ptex +%files -n %{shortname}-ptex +%{_bindir}/ptekf %{_bindir}/eptex %{_bindir}/makejvf %{_bindir}/mendex @@ -8051,68 +11113,70 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/ptex %{_bindir}/ptftopl %{_bindir}/r-pmpost +%{_mandir}/man1/ptekf.1* %{_mandir}/man1/eptex.1* %{_mandir}/man1/makejvf.1* %{_mandir}/man1/mendex.1* +%{_mandir}/man1/pbibtex.1* %{_mandir}/man1/platex-dev.1* %{_mandir}/man1/ppltotf.1* %{_mandir}/man1/ptex.1* %{_mandir}/man1/ptftopl.1* -%{_datadir}/texlive/fmtutil.cnf.d/platex -%{_datadir}/texlive/fmtutil.cnf.d/ptex +%{fmtutil_cnf_d}/platex +%{fmtutil_cnf_d}/ptex -%files -n texlive-ptex-fontmaps +%files -n %{shortname}-ptex-fontmaps %license gpl3.txt %license pd.txt %{_bindir}/kanji-config-updmap %{_bindir}/kanji-config-updmap-sys %{_bindir}/kanji-config-updmap-user %{_bindir}/kanji-fontmap-creator -%{_datadir}/texlive/texmf-dist/fonts/cmap/ptex-fontmaps -%{_datadir}/texlive/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps -%{_datadir}/texlive/texmf-dist/fonts/misc/ptex-fontmaps/ -%{_datadir}/texlive/texmf-dist/scripts/ptex-fontmaps -%{_datadir}/texlive/tlpkg/tlpostcode/ptex-fontmaps-tlpost.pl -%doc %{_datadir}/texlive/texmf-dist/doc/fonts/ptex-fontmaps - -%files -n texlive-ptex2pdf +%{_texdir}/texmf-dist/fonts/cmap/ptex-fontmaps +%{_texdir}/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps +%{_texdir}/texmf-dist/fonts/misc/ptex-fontmaps/ +%{_texdir}/texmf-dist/scripts/ptex-fontmaps +%{_texdir}/tlpkg/tlpostcode/ptex-fontmaps-tlpost.pl +%doc %{_texdir}/texmf-dist/doc/fonts/ptex-fontmaps + +%files -n %{shortname}-ptex2pdf %license gpl2.txt %{_bindir}/ptex2pdf -%{_datadir}/texlive/texmf-dist/scripts/ptex2pdf/ -%{_datadir}/texlive/tlpkg/tlpostcode/ptex2pdf-tlpost.pl -%doc %{_datadir}/texlive/texmf-dist/doc/latex/ptex2pdf/ +%{_texdir}/texmf-dist/scripts/ptex2pdf/ +%{_texdir}/tlpkg/tlpostcode/ptex2pdf-tlpost.pl +%doc %{_texdir}/texmf-dist/doc/latex/ptex2pdf/ -%files -n texlive-purifyeps +%files -n %{shortname}-purifyeps %license lppl1.txt %{_bindir}/purifyeps %{_mandir}/man1/purifyeps.1* -%{_datadir}/texlive/texmf-dist/scripts/purifyeps/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/purifyeps/ +%{_texdir}/texmf-dist/scripts/purifyeps/ +%doc %{_texdir}/texmf-dist/doc/support/purifyeps/ -%files -n texlive-pygmentex +%files -n %{shortname}-pygmentex %license lppl1.3.txt %{_bindir}/pygmentex -%{_datadir}/texlive/texmf-dist/scripts/pygmentex/ -%{_datadir}/texlive/texmf-dist/tex/latex/pygmentex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/pygmentex/ +%{_texdir}/texmf-dist/scripts/pygmentex/ +%{_texdir}/texmf-dist/tex/latex/pygmentex/ +%doc %{_texdir}/texmf-dist/doc/latex/pygmentex/ -%files -n texlive-pythontex +%files -n %{shortname}-pythontex %license lppl1.3.txt %{_bindir}/depythontex %{_bindir}/pythontex -%{_datadir}/texlive/texmf-dist/scripts/pythontex/ -%{_datadir}/texlive/texmf-dist/tex/latex/pythontex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/pythontex/ +%{_texdir}/texmf-dist/scripts/pythontex/ +%{_texdir}/texmf-dist/tex/latex/pythontex/ +%doc %{_texdir}/texmf-dist/doc/latex/pythontex/ -%files -n texlive-rubik +%files -n %{shortname}-rubik %license lppl1.3.txt %{_bindir}/rubikrotation %{_mandir}/man1/rubikrotation.1* -%{_datadir}/texlive/texmf-dist/scripts/rubik/ -%{_datadir}/texlive/texmf-dist/tex/latex/rubik/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/rubik/ +%{_texdir}/texmf-dist/scripts/rubik/ +%{_texdir}/texmf-dist/tex/latex/rubik/ +%doc %{_texdir}/texmf-dist/doc/latex/rubik/ -%files -n texlive-seetexk +%files -n %{shortname}-seetexk %{_bindir}/dvibook %{_bindir}/dviconcat %{_bindir}/dviselect @@ -8122,69 +11186,69 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/dviselect.1* %{_mandir}/man1/dvitodvi.1* -%files -n texlive-spix +%files -n %{shortname}-spix %license gpl3.txt %{_bindir}/spix %{_mandir}/man1/spix* -%doc %{_datadir}/texlive/texmf-dist/doc/support/spix -%{_datadir}/texlive/texmf-dist/scripts/spix +%doc %{_texdir}/texmf-dist/doc/support/spix +%{_texdir}/texmf-dist/scripts/spix -%files -n texlive-splitindex +%files -n %{shortname}-splitindex %license lppl1.txt %{_bindir}/splitindex %{_mandir}/man1/splitindex.1* -%{_datadir}/texlive/texmf-dist/scripts/splitindex/ -%{_datadir}/texlive/texmf-dist/tex/generic/splitindex/ -%{_datadir}/texlive/texmf-dist/tex/latex/splitindex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/splitindex/ +%{_texdir}/texmf-dist/scripts/splitindex/ +%{_texdir}/texmf-dist/tex/generic/splitindex/ +%{_texdir}/texmf-dist/tex/latex/splitindex/ +%doc %{_texdir}/texmf-dist/doc/latex/splitindex/ -%files -n texlive-srcredact +%files -n %{shortname}-srcredact %license gpl2.txt %{_bindir}/srcredact %{_mandir}/man1/srcredact.1* -%{_datadir}/texlive/texmf-dist/scripts/srcredact/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/srcredact/ +%{_texdir}/texmf-dist/scripts/srcredact/ +%doc %{_texdir}/texmf-dist/doc/support/srcredact/ -%files -n texlive-sty2dtx +%files -n %{shortname}-sty2dtx %license gpl3.txt %{_bindir}/sty2dtx %{_mandir}/man1/sty2dtx.1* -%{_datadir}/texlive/texmf-dist/scripts/sty2dtx/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/sty2dtx/ +%{_texdir}/texmf-dist/scripts/sty2dtx/ +%doc %{_texdir}/texmf-dist/doc/support/sty2dtx/ -%files -n texlive-svn-multi +%files -n %{shortname}-svn-multi %license lppl1.txt %{_bindir}/svn-multi -%{_datadir}/texlive/texmf-dist/scripts/svn-multi/ -%{_datadir}/texlive/texmf-dist/tex/latex/svn-multi/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/svn-multi/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/svn-multi/ +%{_texdir}/texmf-dist/scripts/svn-multi/ +%{_texdir}/texmf-dist/tex/latex/svn-multi/ +%doc %{_texdir}/texmf-dist/doc/latex/svn-multi/ +%doc %{_texdir}/texmf-dist/doc/support/svn-multi/ -%files -n texlive-synctex +%files -n %{shortname}-synctex %license lppl1.txt %{_bindir}/synctex %{_mandir}/man1/synctex.1* %{_mandir}/man5/synctex.5* -%files -n texlive-tex +%files -n %{shortname}-tex %license knuth.txt %{_bindir}/initex %{_bindir}/tex %{_mandir}/man1/initex.1* %{_mandir}/man1/tex.1* -%{_datadir}/texlive/fmtutil.cnf.d/tex +%{fmtutil_cnf_d}/tex -%files -n texlive-tex4ebook +%files -n %{shortname}-tex4ebook %license lppl1.3.txt %{_bindir}/tex4ebook -%{_datadir}/texlive/texmf-dist/scripts/tex4ebook/ -%{_datadir}/texlive/texmf-dist/tex/latex/tex4ebook/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/tex4ebook/ +%{_texdir}/texmf-dist/scripts/tex4ebook/ +%{_texdir}/texmf-dist/tex/latex/tex4ebook/ +%doc %{_texdir}/texmf-dist/doc/support/tex4ebook/ -%files -n texlive-tex4ht +%files -n %{shortname}-tex4ht %license lppl1.txt %{_bindir}/ht -%{_bindir}/htcontext +##%{_bindir}/htcontext %{_bindir}/htlatex %{_bindir}/htmex %{_bindir}/httex @@ -8195,72 +11259,81 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/t4ht %{_bindir}/tex4ht %{_bindir}/xhlatex -%{_datadir}/texlive/texmf-dist/scripts/tex4ht/ -%{_datadir}/texlive/texmf-dist/tex/generic/tex4ht/ -%{_datadir}/texlive/texmf-dist/tex4ht/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/tex4ht/ +%{_texdir}/texmf-dist/scripts/tex4ht/ +%{_texdir}/texmf-dist/tex/generic/tex4ht/ +%{_texdir}/texmf-dist/tex4ht/ +%doc %{_texdir}/texmf-dist/doc/generic/tex4ht/ -%files -n texlive-texcount +%if 0 +%files -n %{shortname}-texaccents +%license mit.txt +%{_bindir}/texaccents +%{_mandir}/man1/texaccents.1* +%doc %{_texdir}/texmf-dist/doc/support/texaccents +%{_texdir}/texmf-dist/scripts/texaccents +%endif + +%files -n %{shortname}-texcount %license lppl1.txt %{_bindir}/texcount -%{_datadir}/texlive/texmf-dist/scripts/texcount/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texcount/ +%{_texdir}/texmf-dist/scripts/texcount/ +%doc %{_texdir}/texmf-dist/doc/support/texcount/ -%files -n texlive-texdef +%files -n %{shortname}-texdef %license gpl3.txt %{_bindir}/latexdef %{_bindir}/texdef -%{_datadir}/texlive/texmf-dist/scripts/texdef/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texdef/ +%{_texdir}/texmf-dist/scripts/texdef/ +%doc %{_texdir}/texmf-dist/doc/support/texdef/ -%files -n texlive-texdiff +%files -n %{shortname}-texdiff %license gpl.txt %{_bindir}/texdiff -%{_datadir}/texlive/texmf-dist/scripts/texdiff +%{_texdir}/texmf-dist/scripts/texdiff %{_mandir}/man1/texdiff.1* -%doc %{_datadir}/texlive/texmf-dist/doc/support/texdiff/ +%doc %{_texdir}/texmf-dist/doc/support/texdiff/ -%files -n texlive-texdirflatten +%files -n %{shortname}-texdirflatten %{_bindir}/texdirflatten %{_mandir}/man1/texdirflatten.1* -%{_datadir}/texlive/texmf-dist/scripts/texdirflatten/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texdirflatten/ +%{_texdir}/texmf-dist/scripts/texdirflatten/ +%doc %{_texdir}/texmf-dist/doc/support/texdirflatten/ -%files -n texlive-texdoc +%files -n %{shortname}-texdoc %license gpl.txt %{_bindir}/texdoc %{_mandir}/man1/texdoc.1* -%{_datadir}/texlive/texmf-dist/scripts/texdoc/ -%{_datadir}/texlive/texmf-dist/texdoc/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texdoc/ +%{_texdir}/texmf-dist/scripts/texdoc/ +%{_texdir}/texmf-dist/texdoc/ +%doc %{_texdir}/texmf-dist/doc/support/texdoc/ -%files -n texlive-texdoctk +%files -n %{shortname}-texdoctk %license gpl.txt %{_bindir}/texdoctk %{_mandir}/man1/texdoctk.1* -%{_datadir}/texlive/texmf-dist/scripts/texdoctk/ -%{_datadir}/texlive/texmf-dist/texdoctk/ +%{_texdir}/texmf-dist/scripts/texdoctk/ +%{_texdir}/texmf-dist/texdoctk/ -%files -n texlive-texfot +%files -n %{shortname}-texfot %license pd.txt %{_bindir}/texfot %{_mandir}/man1/texfot.1* -%{_datadir}/texlive/texmf-dist/scripts/texfot/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texfot/ +%{_texdir}/texmf-dist/scripts/texfot/ +%doc %{_texdir}/texmf-dist/doc/support/texfot/ -%files -n texlive-texliveonfly +%files -n %{shortname}-texliveonfly %license gpl3.txt %{_bindir}/texliveonfly -%{_datadir}/texlive/texmf-dist/scripts/texliveonfly/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texliveonfly/ +%{_texdir}/texmf-dist/scripts/texliveonfly/ +%doc %{_texdir}/texmf-dist/doc/support/texliveonfly/ -%files -n texlive-texlive-en +%files -n %{shortname}-texlive-en %{_infodir}/tlbuild.info* -%doc %{_datadir}/texlive/texmf-dist/doc/texlive/texlive-en/ -%doc %{_datadir}/texlive/texmf-dist/doc/texlive/tlbuild/tlbuild.html -%doc %{_datadir}/texlive/texmf-dist/doc/texlive/tlbuild/tlbuild.pdf +%doc %{_texdir}/texmf-dist/doc/texlive/texlive-en/ +%doc %{_texdir}/texmf-dist/doc/texlive/tlbuild/tlbuild.html +%doc %{_texdir}/texmf-dist/doc/texlive/tlbuild/tlbuild.pdf -%files -n texlive-texlive-scripts +%files -n %{shortname}-texlive-scripts %license lppl1.txt %{_bindir}/fmtutil %{_bindir}/fmtutil-sys @@ -8285,25 +11358,26 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/updmap-sys.1* %{_mandir}/man1/updmap-user.1* %{_mandir}/man5/updmap.cfg.5* -%{_datadir}/texlive/texmf-config/web2c/updmap.cfg +%{_texdir}/texmf-config/web2c/updmap.cfg %config(noreplace) %{_sysconfdir}/texlive/web2c/updmap.cfg -%{_datadir}/texlive/texmf-dist/dvips/tetex/ -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/tetex/ -%{_datadir}/texlive/texmf-dist/fonts/map/dvips/tetex/ -%{_datadir}/texlive/texmf-dist/scripts/texlive/fmtutil-sys.sh -%{_datadir}/texlive/texmf-dist/scripts/texlive/fmtutil-user.sh -%{_datadir}/texlive/texmf-dist/scripts/texlive/fmtutil.pl -%{_datadir}/texlive/texmf-dist/scripts/texlive/mktexlsr* -%{_datadir}/texlive/texmf-dist/scripts/texlive/mktexmf -%{_datadir}/texlive/texmf-dist/scripts/texlive/mktexpk -%{_datadir}/texlive/texmf-dist/scripts/texlive/mktextfm -%{_datadir}/texlive/texmf-dist/scripts/texlive/rungs.tlu -%{_datadir}/texlive/texmf-dist/scripts/texlive/updmap-sys.sh -%{_datadir}/texlive/texmf-dist/scripts/texlive/updmap-user.sh -%{_datadir}/texlive/texmf-dist/scripts/texlive/updmap.pl -%{_datadir}/texlive/texmf-dist/web2c/updmap.cfg - -%files -n texlive-texlive-scripts-extra +%{_texdir}/texmf-dist/dvips/tetex/ +%{_texdir}/texmf-dist/fonts/enc/dvips/tetex/ +%{_texdir}/texmf-dist/fonts/map/dvips/tetex/ +%{_texdir}/texmf-dist/scripts/texlive/fmtutil-sys.sh +%{_texdir}/texmf-dist/scripts/texlive/fmtutil-user.sh +%{_texdir}/texmf-dist/scripts/texlive/fmtutil.pl +%{_texdir}/texmf-dist/scripts/texlive/mktexlsr* +%{_texdir}/texmf-dist/scripts/texlive/mktexmf +%{_texdir}/texmf-dist/scripts/texlive/mktexpk +%{_texdir}/texmf-dist/scripts/texlive/mktextfm +%{_texdir}/texmf-dist/scripts/texlive/rungs.lua +# %%{_texdir}/texmf-dist/scripts/texlive/rungs.tlu +%{_texdir}/texmf-dist/scripts/texlive/updmap-sys.sh +%{_texdir}/texmf-dist/scripts/texlive/updmap-user.sh +%{_texdir}/texmf-dist/scripts/texlive/updmap.pl +%{_texdir}/texmf-dist/web2c/updmap.cfg + +%files -n %{shortname}-texlive-scripts-extra %license gpl.txt %license lppl1.txt %{_bindir}/allcm @@ -8337,114 +11411,128 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/texconfig-sys.1* %{_mandir}/man1/texconfig.1* %{_mandir}/man1/texlinks.1* -%{_datadir}/texlive/texmf-dist/texconfig/ -%{_datadir}/texlive/texmf-dist/scripts/texlive-extra/ +%{_texdir}/texmf-dist/texconfig/ +%{_texdir}/texmf-dist/scripts/texlive-extra/ -%files -n texlive-texlive.infra +%files -n %{shortname}-texlive.infra %license lppl1.txt %{_bindir}/tlmgr -%{_datadir}/texlive/texmf-dist/web2c/fmtutil-hdr.cnf -%{_datadir}/texlive/texmf-dist/web2c/updmap-hdr.cfg -%{_datadir}/texlive/LICENSE.CTAN -%{_datadir}/texlive/LICENSE.TL -%{_datadir}/texlive/README -%{_datadir}/texlive/README.usergroups -%{_datadir}/texlive/index.html -%{_datadir}/texlive/readme-html.dir/readme.cs.html -%{_datadir}/texlive/readme-html.dir/readme.de.html -%{_datadir}/texlive/readme-html.dir/readme.en.html -%{_datadir}/texlive/readme-html.dir/readme.es.html -%{_datadir}/texlive/readme-html.dir/readme.fr.html -%{_datadir}/texlive/readme-html.dir/readme.it.html -%{_datadir}/texlive/readme-html.dir/readme.ja.html -%{_datadir}/texlive/readme-html.dir/readme.pl.html -%{_datadir}/texlive/readme-html.dir/readme.pt-br.html -%{_datadir}/texlive/readme-html.dir/readme.ru.html -%{_datadir}/texlive/readme-html.dir/readme.sk.html -%{_datadir}/texlive/readme-html.dir/readme.sr.html -%{_datadir}/texlive/readme-html.dir/readme.vi.html -%{_datadir}/texlive/readme-html.dir/readme.zh-cn.html -%{_datadir}/texlive/release-texlive.txt -%{_datadir}/texlive/texmf-dist/scripts/texlive/tlmgr.pl -%{_datadir}/texlive/tlpkg/installer/config.guess -%{_datadir}/texlive/tlpkg/TeXLive/TLConfFile.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLConfig.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLCrypto.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLDownload.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLPDB.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLPOBJ.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLPSRC.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLPaper.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLTREE.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLUtils.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLWinGoo.pm -%{_datadir}/texlive/tlpkg/TeXLive/TeXCatalogue.pm -%{_datadir}/texlive/tlpkg/TeXLive/trans.pl +%{_texdir}/texmf-dist/web2c/fmtutil-hdr.cnf +%{_texdir}/texmf-dist/web2c/updmap-hdr.cfg +%{_texdir}/LICENSE.CTAN +%{_texdir}/LICENSE.TL +%{_texdir}/README +%{_texdir}/README.usergroups +%{_texdir}/index.html +%{_texdir}/readme-html.dir/readme.cs.html +%{_texdir}/readme-html.dir/readme.de.html +%{_texdir}/readme-html.dir/readme.en.html +%{_texdir}/readme-html.dir/readme.es.html +%{_texdir}/readme-html.dir/readme.fr.html +%{_texdir}/readme-html.dir/readme.it.html +%{_texdir}/readme-html.dir/readme.ja.html +%{_texdir}/readme-html.dir/readme.pl.html +%{_texdir}/readme-html.dir/readme.pt-br.html +%{_texdir}/readme-html.dir/readme.ru.html +%{_texdir}/readme-html.dir/readme.sk.html +%{_texdir}/readme-html.dir/readme.sr.html +%{_texdir}/readme-html.dir/readme.vi.html +%{_texdir}/readme-html.dir/readme.zh-cn.html +%{_texdir}/release-texlive.txt +%{_texdir}/texmf-dist/scripts/texlive/tlmgr.pl +%{_texdir}/tlpkg/installer/config.guess +%{_texdir}/tlpkg/TeXLive/TLConfFile.pm +%{_texdir}/tlpkg/TeXLive/TLConfig.pm +%{_texdir}/tlpkg/TeXLive/TLCrypto.pm +%{_texdir}/tlpkg/TeXLive/TLDownload.pm +%{_texdir}/tlpkg/TeXLive/TLPDB.pm +%{_texdir}/tlpkg/TeXLive/TLPOBJ.pm +%{_texdir}/tlpkg/TeXLive/TLPSRC.pm +%{_texdir}/tlpkg/TeXLive/TLPaper.pm +%{_texdir}/tlpkg/TeXLive/TLTREE.pm +%{_texdir}/tlpkg/TeXLive/TLUtils.pm +%{_texdir}/tlpkg/TeXLive/TLWinGoo.pm +%{_texdir}/tlpkg/TeXLive/TeXCatalogue.pm +%{_texdir}/tlpkg/TeXLive/trans.pl +%{_datadir}/perl5/TeXLive %{_mandir}/man1/tlmgr.1* -%doc %{_datadir}/texlive/texmf-dist/scripts/texlive/NEWS -%doc %{_datadir}/texlive/tlpkg/README +%doc %{_texdir}/texmf-dist/scripts/texlive/NEWS +%doc %{_texdir}/tlpkg/README -%files -n texlive-texloganalyser +%files -n %{shortname}-texloganalyser %{_bindir}/texloganalyser -%{_datadir}/texlive/texmf-dist/scripts/texloganalyser/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texloganalyser/ +%{_texdir}/texmf-dist/scripts/texloganalyser/ +%doc %{_texdir}/texmf-dist/doc/support/texloganalyser/ + +%files -n %{shortname}-texlogfilter +%{_bindir}/texlogfilter +%{_mandir}/man1/texlogfilter.1* +%{_texdir}/texmf-dist/scripts/texlogfilter/ +%doc %{_texdir}/texmf-dist/doc/support/texlogfilter/ -%files -n texlive-texosquery +%files -n %{shortname}-texlogsieve +%license gpl3.txt +%{_bindir}/texlogsieve +%{_mandir}/man1/texlogsieve.1* +%{_texdir}/texmf-dist/scripts/texlogsieve/ +%doc %{_texdir}/texmf-dist/doc/support/texlogsieve/ + +%files -n %{shortname}-texosquery %license lppl1.3.txt %{_bindir}/texosquery* -%{_datadir}/texlive/texmf-dist/scripts/texosquery -%{_datadir}/texlive/texmf-dist/tex/latex/texosquery -%doc %{_datadir}/texlive/texmf-dist/doc/support/texosquery +%{_texdir}/texmf-dist/scripts/texosquery +%{_texdir}/texmf-dist/tex/latex/texosquery +%doc %{_texdir}/texmf-dist/doc/support/texosquery -%files -n texlive-texplate +%files -n %{shortname}-texplate %license bsd.txt %{_bindir}/texplate -%{_datadir}/texlive/texmf-dist/scripts/texplate -%doc %{_datadir}/texlive/texmf-dist/doc/support/texplate +%{_texdir}/texmf-dist/scripts/texplate +%doc %{_texdir}/texmf-dist/doc/support/texplate -%files -n texlive-texsis +%files -n %{shortname}-texsis %license lppl1.txt %{_bindir}/texsis %{_mandir}/man1/texsis.1* -%{_datadir}/texlive/texmf-dist/bibtex/bst/texsis/ -%{_datadir}/texlive/texmf-dist/tex/texsis/ -%{_datadir}/texlive/fmtutil.cnf.d/texsis -%doc %{_datadir}/texlive/texmf-dist/doc/otherformats/texsis/ +%{_texdir}/texmf-dist/bibtex/bst/texsis/ +%{_texdir}/texmf-dist/tex/texsis/ +%{fmtutil_cnf_d}/texsis +%doc %{_texdir}/texmf-dist/doc/otherformats/texsis/ -%files -n texlive-texware +%files -n %{shortname}-texware %license knuth.txt %{_bindir}/dvitype %{_bindir}/pooltype %{_mandir}/man1/dvitype.1* %{_mandir}/man1/pooltype.1* -%files -n texlive-thumbpdf +%files -n %{shortname}-thumbpdf %license lppl1.txt %{_bindir}/thumbpdf %{_mandir}/man1/thumbpdf.1* -%{_datadir}/texlive/texmf-dist/scripts/thumbpdf/ -%{_datadir}/texlive/texmf-dist/tex/generic/thumbpdf/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/thumbpdf/ +%{_texdir}/texmf-dist/scripts/thumbpdf/ +%{_texdir}/texmf-dist/tex/generic/thumbpdf/ +%doc %{_texdir}/texmf-dist/doc/generic/thumbpdf/ -%files -n texlive-tie +%files -n %{shortname}-tie %{_bindir}/tie %{_mandir}/man1/tie.1* -%files -n texlive-tikztosvg +%files -n %{shortname}-tikztosvg %license gpl3.txt %{_bindir}/tikztosvg %{_mandir}/man1/tikztosvg* -%doc %{_datadir}/texlive/texmf-dist/doc/support/tikztosvg -%{_datadir}/texlive/texmf-dist/scripts/tikztosvg +%doc %{_texdir}/texmf-dist/doc/support/tikztosvg/ +%{_texdir}/texmf-dist/scripts/tikztosvg -%files -n texlive-tpic2pdftex +%files -n %{shortname}-tpic2pdftex %license gpl.txt %{_bindir}/tpic2pdftex %{_mandir}/man1/tpic2pdftex.1* -%doc %{_datadir}/texlive/texmf-dist/doc/tpic2pdftex/ +%doc %{_texdir}/texmf-dist/doc/support/tpic2pdftex/ -%files -n texlive-ttfutils +%files -n %{shortname}-ttfutils %license lppl1.txt %{_bindir}/ttf2afm %{_bindir}/ttf2pk @@ -8454,25 +11542,31 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/ttf2pk.1* %{_mandir}/man1/ttf2tfm.1* %{_mandir}/man1/ttfdump.1* -%{_datadir}/texlive/texmf-dist/fonts/enc/ttf2pk/ -%{_datadir}/texlive/texmf-dist/fonts/sfd/ttf2pk/ -%{_datadir}/texlive/texmf-dist/ttf2pk/ -%doc %{_datadir}/texlive/texmf-dist/doc/ttf2pk/ +%{_texdir}/texmf-dist/fonts/enc/ttf2pk/ +%{_texdir}/texmf-dist/fonts/sfd/ttf2pk/ +%{_texdir}/texmf-dist/ttf2pk/ +%doc %{_texdir}/texmf-dist/doc/support/ttf2pk/ -%files -n texlive-typeoutfileinfo +%files -n %{shortname}-typeoutfileinfo %license lppl1.3.txt %{_bindir}/typeoutfileinfo -%{_datadir}/texlive/texmf-dist/scripts/typeoutfileinfo/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/typeoutfileinfo/ +%{_texdir}/texmf-dist/scripts/typeoutfileinfo/ +%doc %{_texdir}/texmf-dist/doc/support/typeoutfileinfo/ -%files -n texlive-ulqda +%files -n %{shortname}-ulqda %license lppl1.txt %{_bindir}/ulqda -%{_datadir}/texlive/texmf-dist/scripts/ulqda/ -%{_datadir}/texlive/texmf-dist/tex/latex/ulqda/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/ulqda/ +%{_texdir}/texmf-dist/scripts/ulqda/ +%{_texdir}/texmf-dist/tex/latex/ulqda/ +%doc %{_texdir}/texmf-dist/doc/latex/ulqda/ + +%files -n %{shortname}-upmendex +%license bsd.txt +%{_bindir}/upmendex +%{_mandir}/man1/upmendex.1* +%doc %{_texdir}/texmf-dist/doc/support/upmendex/ -%files -n texlive-uptex +%files -n %{shortname}-uptex %{_bindir}/euptex %{_bindir}/r-upmpost %{_bindir}/upbibtex @@ -8480,149 +11574,158 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/updvitype %{_bindir}/uplatex %{_bindir}/uplatex-dev -%{_bindir}/upmendex %{_bindir}/upmpost %{_bindir}/uppltotf %{_bindir}/uptex %{_bindir}/uptftopl %{_bindir}/wovp2ovf %{_mandir}/man1/euptex.1* +%{_mandir}/man1/upbibtex.1* %{_mandir}/man1/uplatex.1* %{_mandir}/man1/uplatex-dev.1* -%{_mandir}/man1/upmendex.1* %{_mandir}/man1/uppltotf.1* %{_mandir}/man1/uptex.1* %{_mandir}/man1/uptftopl.1* -%{_datadir}/texlive/fmtutil.cnf.d/uplatex -%{_datadir}/texlive/fmtutil.cnf.d/uptex -%doc %{_datadir}/texlive/texmf-dist/doc/upmendex/ -%doc %{_datadir}/texlive/texmf-dist/doc/uplatex/ +%{fmtutil_cnf_d}/uplatex +%{fmtutil_cnf_d}/uptex +%doc %{_texdir}/texmf-dist/doc/uplatex/ -%files -n texlive-urlbst +%files -n %{shortname}-urlbst %license gpl.txt %{_bindir}/urlbst -%{_datadir}/texlive/texmf-dist/bibtex/bst/urlbst/ -%{_datadir}/texlive/texmf-dist/scripts/urlbst/ -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/urlbst/ +%{_texdir}/texmf-dist/bibtex/bst/urlbst/ +%{_texdir}/texmf-dist/scripts/urlbst/ +%doc %{_texdir}/texmf-dist/doc/bibtex/urlbst/ -%files -n texlive-velthuis +%files -n %{shortname}-velthuis %license gpl.txt %{_bindir}/devnag %{_mandir}/man1/devnag.1* -%{_datadir}/texlive/texmf-dist/fonts/afm/public/velthuis/ -%{_datadir}/texlive/texmf-dist/fonts/map/dvips/velthuis/ -%{_datadir}/texlive/texmf-dist/fonts/source/public/velthuis/ -%{_datadir}/texlive/texmf-dist/fonts/tfm/public/velthuis/ -%{_datadir}/texlive/texmf-dist/fonts/type1/public/velthuis/ -%{_datadir}/texlive/texmf-dist/tex/generic/velthuis/ -%{_datadir}/texlive/texmf-dist/tex/latex/velthuis/ -%{_datadir}/texlive/texmf-dist/tex/plain/velthuis/ -%{_datadir}/texlive/texmf-dist/tex/xelatex/velthuis/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/velthuis/ - -%files -n texlive-vlna +%{_texdir}/texmf-dist/fonts/afm/public/velthuis/ +%{_texdir}/texmf-dist/fonts/map/dvips/velthuis/ +%{_texdir}/texmf-dist/fonts/source/public/velthuis/ +%{_texdir}/texmf-dist/fonts/tfm/public/velthuis/ +%{_texdir}/texmf-dist/fonts/type1/public/velthuis/ +%{_texdir}/texmf-dist/tex/generic/velthuis/ +%{_texdir}/texmf-dist/tex/latex/velthuis/ +%{_texdir}/texmf-dist/tex/plain/velthuis/ +%{_texdir}/texmf-dist/tex/xelatex/velthuis/ +%doc %{_texdir}/texmf-dist/doc/generic/velthuis/ + +%files -n %{shortname}-vlna %license lppl1.txt %{_bindir}/vlna %{_mandir}/man1/vlna.1* -%doc %{_datadir}/texlive/texmf-dist/doc/vlna/ +%doc %{_texdir}/texmf-dist/doc/support/vlna/ -%files -n texlive-vpe +%files -n %{shortname}-vpe %license lppl1.txt %{_bindir}/vpe -%{_datadir}/texlive/texmf-dist/scripts/vpe/ -%{_datadir}/texlive/texmf-dist/tex/latex/vpe/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/vpe/ +%{_texdir}/texmf-dist/scripts/vpe/ +%{_texdir}/texmf-dist/tex/latex/vpe/ +%doc %{_texdir}/texmf-dist/doc/latex/vpe/ -%files -n texlive-web +%files -n %{shortname}-web %license knuth.txt %{_bindir}/tangle %{_bindir}/weave %{_mandir}/man1/tangle.1* %{_mandir}/man1/weave.1* -%files -n texlive-webquiz +%files -n %{shortname}-webquiz %license gpl.txt %{_bindir}/webquiz %{_mandir}/man1/webquiz.1* -%{_datadir}/texlive/texmf-dist/scripts/webquiz/ -%{_datadir}/texlive/texmf-dist/tex/latex/webquiz/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/webquiz/ +%{_texdir}/texmf-dist/scripts/webquiz/ +%{_texdir}/texmf-dist/tex/latex/webquiz/ +%doc %{_texdir}/texmf-dist/doc/latex/webquiz/ -%files -n texlive-wordcount +%files -n %{shortname}-wordcount %license lppl1.txt %{_bindir}/wordcount -%{_datadir}/texlive/texmf-dist/scripts/wordcount/ -%{_datadir}/texlive/texmf-dist/tex/latex/wordcount/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/wordcount/ +%{_texdir}/texmf-dist/scripts/wordcount/ +%{_texdir}/texmf-dist/tex/latex/wordcount/ +%doc %{_texdir}/texmf-dist/doc/latex/wordcount/ -%files -n texlive-xdvi +%files -n %{shortname}-xdvi %{_bindir}/xdvi %{_bindir}/xdvi-xaw %{_mandir}/man1/xdvi.1* -%{_datadir}/texlive/texmf-dist/dvips/xdvi/ -%{_datadir}/texlive/texmf-dist/xdvi/ +%{_texdir}/texmf-dist/dvips/xdvi/ +%{_texdir}/texmf-dist/xdvi/ -%files -n texlive-xetex +%files -n %{shortname}-xetex %license other-free.txt %{_bindir}/xdvipdfmx %{_bindir}/xelatex %{_bindir}/xelatex-dev +%{_bindir}/xelatex-unsafe %{_bindir}/xetex +%{_bindir}/xetex-unsafe %{_mandir}/man1/xelatex.1* %{_mandir}/man1/xelatex-dev.1* +%{_mandir}/man1/xelatex-unsafe.1* %{_mandir}/man1/xetex.1* -%{_datadir}/texlive/tlpkg/tlpostcode/xetex.pl -%{_datadir}/texlive/texmf-dist/fonts/misc/xetex/ -%{_datadir}/texlive/fmtutil.cnf.d/xelatex-dev -%{_datadir}/texlive/fmtutil.cnf.d/xetex -%doc %{_datadir}/texlive/texmf-dist/doc/xetex/ - -%files -n texlive-xindex +%{_mandir}/man1/xetex-unsafe.1* +%{_texdir}/tlpkg/tlpostcode/xetex.pl +%{_texdir}/texmf-dist/fonts/misc/xetex/ +%{fmtutil_cnf_d}/xelatex-dev +%{fmtutil_cnf_d}/xetex +%doc %{_texdir}/texmf-dist/doc/xetex/ + +%files -n %{shortname}-xindex %license lppl1.3.txt %{_bindir}/xindex -%{_datadir}/texlive/texmf-dist/scripts/xindex/ -%{_datadir}/texlive/texmf-dist/tex/latex/xindex/ -%{_datadir}/texlive/texmf-dist/tex/lualatex/xindex/ -%doc %{_datadir}/texlive/texmf-dist/doc/lualatex/xindex/ +%{_texdir}/texmf-dist/scripts/xindex/ +%{_texdir}/texmf-dist/tex/latex/xindex/ +%{_texdir}/texmf-dist/tex/lualatex/xindex/ +%doc %{_texdir}/texmf-dist/doc/lualatex/xindex/ -%ifarch empty -%files -n texlive-xindy +%files -n %{shortname}-xindy %license gpl.txt +%if %{without bootstrap} +%{_bindir}/tex2xindy +%{_bindir}/texindy +%{_bindir}/xindy +%{_bindir}/xindy.mem +%endif %{_mandir}/man1/xindy.1* %{_mandir}/man1/texindy.1* %{_mandir}/man1/tex2xindy.1* -%{_datadir}/texlive/texmf-dist/scripts/xindy/ -%{_datadir}/texlive/texmf-dist/xindy/ -%doc %{_datadir}/texlive/texmf-dist/doc/xindy/ -%endif +%{_texdir}/texmf-dist/scripts/xindy/ +%{_texdir}/texmf-dist/xindy/ +%doc %{_texdir}/texmf-dist/doc/xindy/ -%files -n texlive-xml2pmx +%files -n %{shortname}-xml2pmx %license gpl3.txt %{_bindir}/xml2pmx %{_mandir}/man1/xml2pmx* -%files -n texlive-xmltex +%files -n %{shortname}-xmltex %license lppl1.txt %{_bindir}/pdfxmltex %{_bindir}/xmltex -%{_datadir}/texlive/texmf-dist/tex/xmltex/ -%{_datadir}/texlive/fmtutil.cnf.d/xmltex -%doc %{_datadir}/texlive/texmf-dist/doc/otherformats/xmltex/ +%{_texdir}/texmf-dist/tex/xmltex/ +%{fmtutil_cnf_d}/xmltex +%doc %{_texdir}/texmf-dist/doc/otherformats/xmltex/ -%files -n texlive-xpdfopen +%files -n %{shortname}-xpdfopen %{_bindir}/pdfclose %{_bindir}/pdfopen %{_mandir}/man1/pdfclose.1* %{_mandir}/man1/pdfopen.1* -%files -n texlive-yplan +%files -n %{shortname}-yplan %license lppl1.txt %{_bindir}/yplan -%{_datadir}/texlive/texmf-dist/scripts/yplan/ -%{_datadir}/texlive/texmf-dist/tex/latex/yplan/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/yplan/ +%{_texdir}/texmf-dist/scripts/yplan/ +%{_texdir}/texmf-dist/tex/latex/yplan/ +%doc %{_texdir}/texmf-dist/doc/latex/yplan/ %changelog +* Mon Nov 03 2025 wangkai <13474090681@163.com> - 10:20250308-1 +- Update to 20250308 + * Thu Mar 06 2025 yaoxin <1024769339@qq.com> - 9:20210325-11 - Fix build failure caused by icu update to 76 diff --git a/texlive-en.doc.tar.xz b/texlive-en.doc.tar.xz index bb5f6c60e8e63ebf8167e400235aae439546e7ab..e286c649b3478b223148ae8be5803a47d4f2d547 100644 Binary files a/texlive-en.doc.tar.xz and b/texlive-en.doc.tar.xz differ diff --git a/texlive-fedora-texmfcnf.lua.patch b/texlive-fedora-texmfcnf.lua.patch new file mode 100644 index 0000000000000000000000000000000000000000..42607b94dc5aacce4c3629b8b4c00dc2b796df5b --- /dev/null +++ b/texlive-fedora-texmfcnf.lua.patch @@ -0,0 +1,59 @@ +diff -up ./web2c/texmfcnf.lua.fedora ./web2c/texmfcnf.lua +--- ./web2c/texmfcnf.lua.fedora 2023-05-25 10:25:41.195939763 -0400 ++++ ./web2c/texmfcnf.lua 2023-05-25 10:33:33.761097942 -0400 +@@ -11,6 +11,7 @@ return { + comment = "ConTeXt MkIV and LMTX configuration file", + author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", + target = "texlive", ++ -- modified for Fedora, based on Preining Norbert's work in Debian + + content = { + +@@ -52,7 +53,7 @@ return { + + TEXMFVAR = "home:" .. hiddentexlivepath .. "/texmf-var", + TEXMFCONFIG = "home:" .. hiddentexlivepath .. "/texmf-config", +- TEXMFSYSVAR = "selfautoparent:texmf-var", ++ TEXMFSYSVAR = "/var/lib/texmf", + TEXMFCACHE = "$TEXMFSYSVAR;$TEXMFVAR", + + -- I don't like this texmf under home and texmf-home would make more sense. One never knows +@@ -62,7 +63,7 @@ return { + -- By using prefixes we don't get expanded paths in the cache __path__ entry. This makes the + -- tex root relocatable. + +- TEXMFOS = "selfautodir:", ++ -- TEXMFOS = "selfautodir:", + + -- standalone: + +@@ -73,14 +74,15 @@ return { + + -- texlive: + +- TEXMFDIST = "selfautoparent:texmf-dist", +- TEXMFSYSCONFIG = "selfautoparent:texmf-config", ++ TEXMFDIST = "/usr/share/texlive/texmf-dist", ++ TEXMFFEDORA = "/usr/share/texmf", ++ TEXMFSYSCONFIG = "/usr/share/texlive/texmf-config", + + -- The texmf-local path is only used for (maybe) some additional configuration file. + +- TEXMFLOCAL = "selfautoparent:texmf-local", +- TEXMFFONTS = "selfautoparent:texmf-fonts", +- TEXMFPROJECT = "selfautoparent:texmf-project", ++ TEXMFLOCAL = "/usr/share/texlive/texmf-local", ++ -- TEXMFFONTS = "selfautoparent:texmf-fonts", ++ -- TEXMFPROJECT = "selfautoparent:texmf-project", + + TEXMFHOME = "home:texmf", + -- TEXMFHOME = os.name == "macosx" and "home:Library/texmf" or "home:texmf", +@@ -94,7 +96,7 @@ return { + + -- texlive: + +- TEXMF = "{$TEXMFCONFIG,$TEXMFHOME,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFPROJECT,!!$TEXMFFONTS,!!$TEXMFLOCAL,!!$TEXMFDIST}", ++ TEXMF = "{$TEXMFCONFIG,$TEXMFHOME,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFLOCAL,!!$TEXMFFEDORA,!!$TEXMFDIST}", + + TEXFONTMAPS = ".;$TEXMF/fonts/data//;$TEXMF/fonts/map/{pdftex,dvips}//", + ENCFONTS = ".;$TEXMF/fonts/data//;$TEXMF/fonts/enc/{dvips,pdftex}//", diff --git a/texlive-licenses.tar.xz b/texlive-licenses.tar.xz index 1c33a007397d034547f430d3d912a2c401ad5085..6bdf4e0a97a7ab1dde8d9863241fc27547e119f1 100644 Binary files a/texlive-licenses.tar.xz and b/texlive-licenses.tar.xz differ diff --git a/texlive-scripts-extra.doc.tar.xz b/texlive-scripts-extra.doc.tar.xz index 65c98a3a4b3399b4b014e0862b03a275835a0275..06d318019c7bd5f01c46e06beb1e34acd436a17d 100644 Binary files a/texlive-scripts-extra.doc.tar.xz and b/texlive-scripts-extra.doc.tar.xz differ diff --git a/texlive-scripts-extra.tar.xz b/texlive-scripts-extra.tar.xz index 16dc36b62e5aa6f96e533eca481c64f5aabd1fde..9c477743c9c3e67374f27fa27890170fb9f9f8bc 100644 Binary files a/texlive-scripts-extra.tar.xz and b/texlive-scripts-extra.tar.xz differ diff --git a/texlive-scripts.doc.tar.xz b/texlive-scripts.doc.tar.xz index a4fcb57e4e94f9b872f95fcf71a290b3ec799348..e75271db2ce1198715eaf71528e66b07048f0eae 100644 Binary files a/texlive-scripts.doc.tar.xz and b/texlive-scripts.doc.tar.xz differ diff --git a/texlive-scripts.tar.xz b/texlive-scripts.tar.xz index 089d17931eef00d049566181c7d4ff3516a6f920..96b1cc3bf70456f2babe07f7d1429e53ca46a7ab 100644 Binary files a/texlive-scripts.tar.xz and b/texlive-scripts.tar.xz differ diff --git a/texlive.infra.doc.tar.xz b/texlive.infra.doc.tar.xz index c7cb4dc50cd33b1a74e42e06159100c5a9021cd7..afdf2524d9f90bacec3760d9a78fe7a09e0f0c74 100644 Binary files a/texlive.infra.doc.tar.xz and b/texlive.infra.doc.tar.xz differ diff --git a/texlive.infra.tar.xz b/texlive.infra.tar.xz index 2757056c6ef4c4b3e22973fa8b6a9bebcb71ff30..33640cbfe2335b5e52e4cc2dc25c362c0ab2d88d 100644 Binary files a/texlive.infra.tar.xz and b/texlive.infra.tar.xz differ diff --git a/texliveonfly.doc.tar.xz b/texliveonfly.doc.tar.xz index 700d3e5ec5971077631af1e6b5897c66b1d13384..c68385dc8ae1c408a55d821ff2e78c9e3e22d146 100644 Binary files a/texliveonfly.doc.tar.xz and b/texliveonfly.doc.tar.xz differ diff --git a/texliveonfly.tar.xz b/texliveonfly.tar.xz index c9778046bf3e8fee46286e1fa3b59696d7723f01..4e72ddd6640605d4bc05b9654ec9e237f4a7aab3 100644 Binary files a/texliveonfly.tar.xz and b/texliveonfly.tar.xz differ diff --git a/texloganalyser.doc.tar.xz b/texloganalyser.doc.tar.xz index c54e09291d476e54e03bd1f77827bd376bd56251..612919cb8322328a84ff724613fd89e4e3222a61 100644 Binary files a/texloganalyser.doc.tar.xz and b/texloganalyser.doc.tar.xz differ diff --git a/texloganalyser.tar.xz b/texloganalyser.tar.xz index 169533cd641d533977930fc7fc600df80cc9c2fc..d12c74fa49a55fdfc24a22c402ae09443faedb8d 100644 Binary files a/texloganalyser.tar.xz and b/texloganalyser.tar.xz differ diff --git a/texlogfilter.doc.tar.xz b/texlogfilter.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..13b72efa1c3ed203fd99f37a0a6f993ba91055b4 --- /dev/null +++ b/texlogfilter.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c163ec2e64fe6c99a03ec87fe2cd2483982c1de33bbbfc19acca66191cb98a3 +size 29540 diff --git a/texlogsieve.doc.tar.xz b/texlogsieve.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..7c92755a52ce562e34a1770179bd99dcd347602f --- /dev/null +++ b/texlogsieve.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655c09dcf4ad53bc3edcf91d3e957f5c23d682fe4c0db22f11b5df961797ddb8 +size 119668 diff --git a/texlogsieve.tar.xz b/texlogsieve.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..b94439c675cc16a595b159f38d0f531f7d112d47 --- /dev/null +++ b/texlogsieve.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7645408045597512c3fbc22c5be453b510bdf73c3243df31e87ee2397297599f +size 49752 diff --git a/texosquery.doc.tar.xz b/texosquery.doc.tar.xz index 9b4330a9367faf831cd2efb3efab81f2cb5e6350..baa4a268b4bcb2322c8f761d7a69d9579cd69371 100644 Binary files a/texosquery.doc.tar.xz and b/texosquery.doc.tar.xz differ diff --git a/texosquery.tar.xz b/texosquery.tar.xz index 178f753da5689c22e6510ce9407d1269d81972af..422dc4512d988c9379aafd6d971d739bfd454f61 100644 Binary files a/texosquery.tar.xz and b/texosquery.tar.xz differ diff --git a/texplate.doc.tar.xz b/texplate.doc.tar.xz index 5a911f384266193b3d89bfd438ee15c8b391f8e1..4d321846e35b1b3ce38911f9e757432585fa63d3 100644 Binary files a/texplate.doc.tar.xz and b/texplate.doc.tar.xz differ diff --git a/texplate.tar.xz b/texplate.tar.xz index d7153d2ec29906eb50da852f9a2e21e8dc03939d..268d498507a4d8e472a3db8f7dbbc6c649016661 100644 Binary files a/texplate.tar.xz and b/texplate.tar.xz differ diff --git a/texsis.doc.tar.xz b/texsis.doc.tar.xz index 241cdd4fe6a951223460316745912e4663f67719..87662c71de8db04d93cf4da6d485aeffe30d6bad 100644 Binary files a/texsis.doc.tar.xz and b/texsis.doc.tar.xz differ diff --git a/texsis.tar.xz b/texsis.tar.xz index 3f440332f7bad1acd1764bd34e98a8a68eeebda5..4bef05b3ce357d9ad0ffa86d44c7b7bff9b9dd36 100644 Binary files a/texsis.tar.xz and b/texsis.tar.xz differ diff --git a/texware.doc.tar.xz b/texware.doc.tar.xz index 85690dbcff8b69af24c9be923cb706aab6765e18..d62d27767a9dcb48cb167a5f479cf92631468767 100644 Binary files a/texware.doc.tar.xz and b/texware.doc.tar.xz differ diff --git a/texware.tar.xz b/texware.tar.xz index 9a2546f566a767239b7cb9739c6450290ccc14e8..a93371f4a17a70f4815a0759eb0939979fe240d4 100644 Binary files a/texware.tar.xz and b/texware.tar.xz differ diff --git a/thumbpdf.doc.tar.xz b/thumbpdf.doc.tar.xz index 81c638de18871d241c2ab44a4750ba58c5abb513..d6819adaac4a098c15d025ed33d3fb8f8b39c0cb 100644 Binary files a/thumbpdf.doc.tar.xz and b/thumbpdf.doc.tar.xz differ diff --git a/thumbpdf.tar.xz b/thumbpdf.tar.xz index 19540cdb08fc7b816aa29884aa564d6beee822bf..f608ded0f10b74b302c0934944c0d6a40a36f140 100644 Binary files a/thumbpdf.tar.xz and b/thumbpdf.tar.xz differ diff --git a/tie.doc.tar.xz b/tie.doc.tar.xz index 55d463f41d635063f97250376a08696514eb2a55..292189059a1cea6905f6be119b6dd3e38a253603 100644 Binary files a/tie.doc.tar.xz and b/tie.doc.tar.xz differ diff --git a/tie.tar.xz b/tie.tar.xz index 39df5ff27033342f146474ab97515b44ae2f22de..f1fdf0feae70f81f063037634177d2982f0fce31 100644 Binary files a/tie.tar.xz and b/tie.tar.xz differ diff --git a/tikztosvg.doc.tar.xz b/tikztosvg.doc.tar.xz index 83798a4c26a3dc7e122f407e8c32ef3115bda795..9911fc32821c78d3c2aa04778016eb141aba326c 100644 Binary files a/tikztosvg.doc.tar.xz and b/tikztosvg.doc.tar.xz differ diff --git a/tikztosvg.tar.xz b/tikztosvg.tar.xz index cc4943fd643b918671ab3c8cbdac85d824bfe1ef..857e783f1336165e976569f0804609fa3201fb72 100644 Binary files a/tikztosvg.tar.xz and b/tikztosvg.tar.xz differ diff --git a/tl-format.patch b/tl-format.patch index a1b8ce87a5f5c489af16fdcfdb580412151584c7..6d895721145eb8ac2b3c1e7adfbd9886baeb53c7 100644 --- a/tl-format.patch +++ b/tl-format.patch @@ -1,7 +1,7 @@ -diff -up texlive-20210325-source/texk/dvi2tty/dvi2tty-src/DVI.format texlive-20210325-source/texk/dvi2tty/dvi2tty-src/DVI -diff -up texlive-20210325-source/texk/dvidvi/dvidvi.c.format texlive-20210325-source/texk/dvidvi/dvidvi.c ---- a/texlive-20210325-source/texk/dvidvi/dvidvi.c.format 2017-06-23 10:55:46.000000000 -0400 -+++ a/texlive-20210325-source/texk/dvidvi/dvidvi.c 2018-04-30 13:07:17.910020544 -0400 +diff -up texlive-base-20180414/source/texk/dvi2tty/dvi2tty-src/DVI.format texlive-base-20180414/source/texk/dvi2tty/dvi2tty-src/DVI +diff -up texlive-base-20180414/source/texk/dvidvi/dvidvi.c.format texlive-base-20180414/source/texk/dvidvi/dvidvi.c +--- texlive-base-20180414/source/texk/dvidvi/dvidvi.c.format 2017-06-23 10:55:46.000000000 -0400 ++++ texlive-base-20180414/source/texk/dvidvi/dvidvi.c 2018-04-30 13:07:17.910020544 -0400 @@ -349,7 +349,7 @@ static void stringdvibuf(integer p, inte * Print a usage error messsage, and quit. */ @@ -29,9 +29,9 @@ diff -up texlive-20210325-source/texk/dvidvi/dvidvi.c.format texlive-20210325-so (void)fprintf(stderr, "%s -> %s\n",iname,oname); temp = nextstring ; } -diff -up texlive-20210325-source/texk/web2c/tiedir/tie.c.format texlive-20210325-source/texk/web2c/tiedir/tie.c ---- a/texlive-20210325-source/texk/web2c/tiedir/tie.c.format 2016-11-25 13:24:38.000000000 -0500 -+++ a/texlive-20210325-source/texk/web2c/tiedir/tie.c 2018-04-30 13:07:27.792787747 -0400 +diff -up texlive-base-20180414/source/texk/web2c/tiedir/tie.c.format texlive-base-20180414/source/texk/web2c/tiedir/tie.c +--- texlive-base-20180414/source/texk/web2c/tiedir/tie.c.format 2016-11-25 13:24:38.000000000 -0500 ++++ texlive-base-20180414/source/texk/web2c/tiedir/tie.c 2018-04-30 13:07:27.792787747 -0400 @@ -27,14 +27,14 @@ \ diff --git a/tl-kpfix.patch b/tl-kpfix.patch index bbc5401791039bbf1a97426fa0039397200a4832..afcd92beabd97d5302588fdae900a541ede0c7bb 100644 --- a/tl-kpfix.patch +++ b/tl-kpfix.patch @@ -1,6 +1,6 @@ -diff -up texlive-2013/a/texlive-20180414-source/texk/kpathsea/progname.c.kpfix texlive-2013/a/texlive-20180414-source/texk/kpathsea/progname.c ---- a/texlive-20210325-source/texk/kpathsea/progname.c.kpfix 2013-08-12 09:28:14.422522624 +0200 -+++ a/texlive-20210325-source/texk/kpathsea/progname.c 2013-08-12 12:16:02.958132658 +0200 +diff -up texlive-2013/source/texk/kpathsea/progname.c.kpfix texlive-2013/source/texk/kpathsea/progname.c +--- source/texk/kpathsea/progname.c.kpfix 2013-08-12 09:28:14.422522624 +0200 ++++ source/texk/kpathsea/progname.c 2013-08-12 12:16:02.958132658 +0200 @@ -668,7 +668,7 @@ kpathsea_set_program_name (kpathsea kpse kpathsea_xputenv (kpse, "SELFAUTOLOC", fix_selfdir (sdir)); sdir_parent = xdirname (sdir); diff --git a/tpic2pdftex.doc.tar.xz b/tpic2pdftex.doc.tar.xz index 93b4cca3a70d8248bf484eaf232b4ab163e75a33..4e159a7bfbfafa3272800556233fffd47a555a81 100644 Binary files a/tpic2pdftex.doc.tar.xz and b/tpic2pdftex.doc.tar.xz differ diff --git a/tpic2pdftex.tar.xz b/tpic2pdftex.tar.xz index e99c7927d1a5585a901c2a2a71fc5893bec3c8ee..d0e0f52f94bf9fd17d9d113296b7e8e6eda5d2e6 100644 Binary files a/tpic2pdftex.tar.xz and b/tpic2pdftex.tar.xz differ diff --git a/ttfutils.doc.tar.xz b/ttfutils.doc.tar.xz index 9a201a85a5d60df5dc3a1de0d93b67abf63e7c5c..2f9f76d0c3719e6a86c6fbae07ab45f49d758bb8 100644 Binary files a/ttfutils.doc.tar.xz and b/ttfutils.doc.tar.xz differ diff --git a/ttfutils.tar.xz b/ttfutils.tar.xz index b8b432242c0b18949d359f77e221a076ed564639..61f62db7c85f8ec7402fb9a250009cb98570845b 100644 Binary files a/ttfutils.tar.xz and b/ttfutils.tar.xz differ diff --git a/typeoutfileinfo.doc.tar.xz b/typeoutfileinfo.doc.tar.xz index 5a28b9d1fa0238ecc55e97965a96ce0862813ac1..d11e68fdf9ae99e145158268694f369fa60de44a 100644 Binary files a/typeoutfileinfo.doc.tar.xz and b/typeoutfileinfo.doc.tar.xz differ diff --git a/typeoutfileinfo.tar.xz b/typeoutfileinfo.tar.xz index 34f7192c3e92a40f1c8a263968e64fc8182dffde..fceadc56ca1a097ad6c50738a724eee19a5f26bb 100644 Binary files a/typeoutfileinfo.tar.xz and b/typeoutfileinfo.tar.xz differ diff --git a/typog.doc.tar.xz b/typog.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..c40bccb0376dce0062d0a979f0201116c4fd846c --- /dev/null +++ b/typog.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2419fac6578cd9ec4a4d2fd5ad969c7be23cb5a67001cdf5f9a9444ac70e634b +size 1945644 diff --git a/typog.tar.xz b/typog.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..2154a77053de76fa10181a96fe6021bb424e76e4 --- /dev/null +++ b/typog.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f76088a1c42bae380b541810e0a734b0f9f642484ea066e1aa3ec64597e3ed59 +size 14776 diff --git a/ulqda.doc.tar.xz b/ulqda.doc.tar.xz index 95f24248b79d51f786f2de2a84211ec677570667..0453fdc015e092adbc8fc8b8cf980552425f3547 100644 Binary files a/ulqda.doc.tar.xz and b/ulqda.doc.tar.xz differ diff --git a/ulqda.tar.xz b/ulqda.tar.xz index ecf887ce400d3339cf041101542fbb4bf7362332..76a4bd2f665d27241586a7aa7904e0428001cdd4 100644 Binary files a/ulqda.tar.xz and b/ulqda.tar.xz differ diff --git a/uplatex.doc.tar.xz b/uplatex.doc.tar.xz index 5ff828cdb8bcc98e6e854634e48a0c4e18e69cdd..a788e8583b364a32b2d660a4d34f52a956050eab 100644 Binary files a/uplatex.doc.tar.xz and b/uplatex.doc.tar.xz differ diff --git a/upmendex.doc.tar.xz b/upmendex.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..8bb4705983da7e81550bfe8d3fd52ce946ed9760 --- /dev/null +++ b/upmendex.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f807780d5d2f204bf119c21252e3d91e61e00bdbd278b0263b82df754f8fdf +size 992768 diff --git a/uptex.doc.tar.xz b/uptex.doc.tar.xz index a56c962f6cd6dd8598d26dbb72124c671d7dcfd0..23ae36306bf4133445b5f1a071eacc9b098cc613 100644 Binary files a/uptex.doc.tar.xz and b/uptex.doc.tar.xz differ diff --git a/urlbst.doc.tar.xz b/urlbst.doc.tar.xz index 76b4b30f02f1fb967b11a07057f723bc3a7db0b4..b70b9a4c68f89bd00aefbcbda10f1d5686686c58 100644 Binary files a/urlbst.doc.tar.xz and b/urlbst.doc.tar.xz differ diff --git a/urlbst.tar.xz b/urlbst.tar.xz index 739a04bd8b913ae8e9298e794507f6ec347bb3cc..9115b2750e98f9452019f63841f2eabe5cf0882a 100644 Binary files a/urlbst.tar.xz and b/urlbst.tar.xz differ diff --git a/velthuis.doc.tar.xz b/velthuis.doc.tar.xz index 188711ee3fc4119bf8084379217591034eb434d8..82cf7af077eaaaf15dc179998d2d0beaee0e34ed 100644 Binary files a/velthuis.doc.tar.xz and b/velthuis.doc.tar.xz differ diff --git a/velthuis.tar.xz b/velthuis.tar.xz index 6799d1001d5bf8743923af6a86979736f837fa68..952a048efa29379f10ea63ac4938bb282d97027c 100644 Binary files a/velthuis.tar.xz and b/velthuis.tar.xz differ diff --git a/vlna.doc.tar.xz b/vlna.doc.tar.xz index d7cc6948959fad4d0e28304b2193052d3a8ce6f5..8e000b1333d41c319cfb9cafa4768416f27e2b2b 100644 Binary files a/vlna.doc.tar.xz and b/vlna.doc.tar.xz differ diff --git a/vpe.doc.tar.xz b/vpe.doc.tar.xz index b9c688509c5a0fe6c8ccfb5588bea765f6e6183e..c20f6c5c2bf3e8be8e86d9165838dd658f8fa87a 100644 Binary files a/vpe.doc.tar.xz and b/vpe.doc.tar.xz differ diff --git a/vpe.tar.xz b/vpe.tar.xz index fa482f6eaa196f4fffa351d572972770ad54ba02..5308985991d5dcc0d522e5f4e1d68bb38632657c 100644 Binary files a/vpe.tar.xz and b/vpe.tar.xz differ diff --git a/web.doc.tar.xz b/web.doc.tar.xz index d99203fa726e3634458403b016926f9ed0dd1a23..1ca179032b04dfe6b9643c02f20cb11d868db29e 100644 Binary files a/web.doc.tar.xz and b/web.doc.tar.xz differ diff --git a/web.tar.xz b/web.tar.xz index a55204bf564801e133db938173eac11cd08bd39c..b1df390b0725ab96c9bb3181104cc339f4ce65b4 100644 Binary files a/web.tar.xz and b/web.tar.xz differ diff --git a/webquiz.doc.tar.xz b/webquiz.doc.tar.xz index 0d400f6c450b7761f8d5f22696a850927dcb6ace..9078f8389d92ff999193a2326b848696632a138f 100644 Binary files a/webquiz.doc.tar.xz and b/webquiz.doc.tar.xz differ diff --git a/webquiz.tar.xz b/webquiz.tar.xz index 2fc9e4a6451875aaf8129914e87a28af765ba4a1..e33d6fae16ba18b03e558efa4f40f087e0c72b40 100644 Binary files a/webquiz.tar.xz and b/webquiz.tar.xz differ diff --git a/wordcount.doc.tar.xz b/wordcount.doc.tar.xz index f209a08db83b6161d4c38ac0ba7160ec45742a78..0135b956fd10656227e5cf9fff0ed168b6a24af6 100644 Binary files a/wordcount.doc.tar.xz and b/wordcount.doc.tar.xz differ diff --git a/wordcount.tar.xz b/wordcount.tar.xz index f0811f93fcd64f7f39b5df1e4cba7c361d59c589..1d296cb591e80b299b72f58b334b87a3c2f62f32 100644 Binary files a/wordcount.tar.xz and b/wordcount.tar.xz differ diff --git a/xdvi.doc.tar.xz b/xdvi.doc.tar.xz index b7fdd06162b82513a5b62d80f949af0bfb558258..5b629d5de042f3046557e67dd0fb58df5f0e997c 100644 Binary files a/xdvi.doc.tar.xz and b/xdvi.doc.tar.xz differ diff --git a/xdvi.tar.xz b/xdvi.tar.xz index 930b8963bb69f38e60b3f3f8af09d9ef9f4bd97c..2b4ed5e92aaa67afd958a056ddcce85a601f32d2 100644 Binary files a/xdvi.tar.xz and b/xdvi.tar.xz differ diff --git a/xetex.doc.tar.xz b/xetex.doc.tar.xz index faf309910f907140dfb721a5c889d8954ca913b3..2fe3ee79d2a2233fabfa5e8bd4b69191578c0ea5 100644 Binary files a/xetex.doc.tar.xz and b/xetex.doc.tar.xz differ diff --git a/xetex.tar.xz b/xetex.tar.xz index 625296bea096f5eec2070f66eca1b720e7e633cb..82f64082cc642d34eef4eb66abf875d1ba8d704b 100644 Binary files a/xetex.tar.xz and b/xetex.tar.xz differ diff --git a/xindex.doc.tar.xz b/xindex.doc.tar.xz index 48454e62b518045ac8d29b073af02f68a69d8bb1..69d38227ae14391dc28938b17fe2fc2c512f7ee3 100644 Binary files a/xindex.doc.tar.xz and b/xindex.doc.tar.xz differ diff --git a/xindex.tar.xz b/xindex.tar.xz index 01296587e9f7e3b6b0230900b24ceab5310a8f8e..7d9c0fbaa519948c5a0f10970d59d3d7a14bd12f 100644 Binary files a/xindex.tar.xz and b/xindex.tar.xz differ diff --git a/xindy.doc.tar.xz b/xindy.doc.tar.xz index ac0eb3c13c4a4b800fe51734c634df9363ed39d2..6a1ec469cdccd13351f73ecd69ee8dcc17cd6f83 100644 Binary files a/xindy.doc.tar.xz and b/xindy.doc.tar.xz differ diff --git a/xindy.tar.xz b/xindy.tar.xz index 5f059dc20e25d9614ac8f45a68b130c7995aaaf0..fd86bb3826c6a5d9feaa6127e34ecdd03f74b844 100644 Binary files a/xindy.tar.xz and b/xindy.tar.xz differ diff --git a/xml2pmx.doc.tar.xz b/xml2pmx.doc.tar.xz index 816d9c0f1a7eb9d4f264accc67dfbe348ca90fb3..033066fde51883c1c4478cd2e1a61a9ae6fdfb7d 100644 Binary files a/xml2pmx.doc.tar.xz and b/xml2pmx.doc.tar.xz differ diff --git a/xml2pmx.tar.xz b/xml2pmx.tar.xz index d4fd5cf95a53e9853596a95f2e9ae8abc75f5684..7d6ea1c6b6f3684a1b547563387b53c43d47c9b0 100644 Binary files a/xml2pmx.tar.xz and b/xml2pmx.tar.xz differ diff --git a/xmltex.doc.tar.xz b/xmltex.doc.tar.xz index 86d4b6aafbfd77f82221800433d428f386eb7305..bcdc891b2710130a5cbef36ee4d838a38f3256c2 100644 Binary files a/xmltex.doc.tar.xz and b/xmltex.doc.tar.xz differ diff --git a/xmltex.tar.xz b/xmltex.tar.xz index 6bc1641dacb9b9c450a71cfc5d5bebe99659da5f..23f020f4dd477d1fb9d6aaba78e983d6270fd26d 100644 Binary files a/xmltex.tar.xz and b/xmltex.tar.xz differ diff --git a/xpdfopen.doc.tar.xz b/xpdfopen.doc.tar.xz index dff9e716fb5269ada812d5ca3e34a77be0055aea..691a8bad42a178fd8b23f4dad1c5ccc4f7e714c3 100644 Binary files a/xpdfopen.doc.tar.xz and b/xpdfopen.doc.tar.xz differ diff --git a/yplan.doc.tar.xz b/yplan.doc.tar.xz index ceb621539c0b2accb1fefbb42d4848b101c8ad39..9a8e59e5c84a54c92858fd92333cf1769fefb0fe 100644 Binary files a/yplan.doc.tar.xz and b/yplan.doc.tar.xz differ diff --git a/yplan.tar.xz b/yplan.tar.xz index f6c73f1332444b48ed57fed368dedbeaf3b04d58..8aa439c17290712c2872b6b753ee3991f9cdbb26 100644 Binary files a/yplan.tar.xz and b/yplan.tar.xz differ