✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /usr/share/ghostscript/lib//pdf_info.ps
%!PS
% Copyright (C) 2001-2021 Artifex Software, Inc.
% All Rights Reserved.
%
% This software is provided AS-IS with no warranty, either express or
% implied.
%
% This software is distributed under license and may not be copied,
% modified or distributed except as expressly authorized under the terms
% of the license contained in the file LICENSE in this distribution.
%
% Refer to licensing information at http://www.artifex.com or contact
% Artifex Software, Inc.,  1305 Grant Avenue - Suite 200, Novato,
% CA 94945, U.S.A., +1(415)492-9861, for further information.
%
%
% $Id: pdf_info.ps 6300 2005-12-28 19:56:24Z alexcher $

% Dump some info from a PDF file

% usage: gs -dNODISPLAY -q -sFile=____.pdf [-dDumpMediaSizes=false] [-dDumpFontsNeeded=false] [-dDumpXML]
%                                          [-dDumpFontsUsed [-dShowEmbeddedFonts] ] lib/pdf_info.ps

128 dict begin

/QUIET true def		% in case they forgot

/showoptions {
  (           where "options" are:) =
  (           -dDumpMediaSizes=false    (default true) MediaBox and CropBox for each page) =
  (           -dDumpFontsNeeded=false   (default true)Fonts used, but not embedded) =
  (           -dDumpXML                 print the XML Metadata from the PDF, if present) =
  (           -dDumpFontsUsed           List all fonts used) =
  (           -dShowEmbeddedFonts       only meaningful with -dDumpFontsUsed) =
  (\n          If no options are given, the default is -dDumpMediaSizes -dDumpFontsNeeded) =
  () =
  flush
} bind def

/DumpMediaSizes where { pop } { /DumpMediaSizes true def } ifelse
/DumpFontsNeeded where { pop } { /DumpFontsNeeded true def } ifelse

[ {.shellarguments} stopped not
  {
    { counttomark 1 eq {
        dup 0 get (-) 0 get ne {
          % File specified on the command line using:  -- lib/pdf_info.ps infile.pdf
          /File exch def
          false   % don't show usage
        } {
          true    % show usage and quit
        } ifelse
      } { true } ifelse
      {
        (\n*** Usage: gs [options] -- lib/pdf_info.ps infile.pdf  ***\n\n) print
        showoptions
        quit
      } if
    } if
  } if
/File where not {
  (\n   *** Missing input file name \(use -sFile=____.pdf\)\n) =
  (    usage: gs -dNODISPLAY -q -sFile=____.pdf [ options ] lib/pdf_info.ps\n) =
  showoptions
  quit
} if
cleartomark		% discard the dict from --where--

% ---- No more executable code on the top level after this line -----
% ---- except 2 lines at the very end                           -----

% Write a character to the standard output.
/putchar [ % int -> -
  (%stdout) (w) file
  /exch cvx /write cvx
] cvx bind def

% Write U+xxxx to the standard output as UTF-8.
/put-ucode { % int -> -
  dup 16#80 ge {
    dup 16#800 ge {
      dup 16#10000 ge {
        dup -18 bitshift 16#f0 or putchar
        dup -12 bitshift 16#3f and 16#80 or putchar
      } {
        dup -12 bitshift 16#e0 or putchar
      } ifelse
      dup -6  bitshift 16#3f and 16#80 or putchar
    } {
      dup -6 bitshift 16#C0 or putchar
    } ifelse
    16#3f and 16#80 or
  } if
  putchar
} bind def

% PDFDocEncoding to U+xxxx decoding table.
/doc-to-ucode [
  0 1 23 {} for
  16#2d8 16#2c7 16#2c6 16#2d9 16#2dd 16#2db 16#2da 16#2dc
  32 1 127 {} for
  16#2022 16#2020 16#2021 16#2026 16#2014 16#2013 16#192
  16#2044 16#2039 16#203a 16#2212 16#2030 16#201e 16#201c 
  16#201d 16#2018 16#2019 16#201a 16#2122 16#fb01 16#fb02
  16#141 16#152 16#160 16#178 16#17d 16#131 16#142 16#153
  16#161 16#17e 0 16#20ac
  161 1 255 {} for
] readonly def

% Convert a doc string from PDFDocEncoding or UTF-16BE to UTF-8
% and write it to standard output. 
/write-doc-string { % (string) -> -
  1024 string cvs <feff> anchorsearch {
    pop
    0 exch                 % hi16 (str) 
    0 2 2 index length 2 sub {
      2 copy 2 copy        % hi16 (str) i (str) i (str) i
      get 256 mul 3 1 roll % hi16 (str) i hi*256 (str) i
      1 add get add        % hi16 (str) i 256*hi+lo
      dup 16#fc00 and dup  % hi16 (str) i 256*hi+lo tag tag
      16#d800 eq { % High surrogate
        pop
        16#3ff and
        10 bitshift
        16#10000 add       % hi16  (str) i hi16'
        4 1 roll           % hi16' hi16 (str) i
        pop exch pop       % hi16' (str)
      } {
        16#dc00 eq { % Low surrogate
          16#3ff and       % hi16 (str) i (256*hi+lo)&0x3ff
          4 -1 roll add    % (str) i (256*hi+lo)&0x3ff+hi16
          put-ucode        % (str) i
          pop 0 exch       % 0 (str)
        } { % BMP plane
          put-ucode        % hi16 (str) i
          pop              % hi16 (str)
        } ifelse
      } ifelse
    } for
    pop pop                % -
  } {
    { //doc-to-ucode exch get put-ucode 
    } forall
  } ifelse
} bind def

%% When checking Resources for Font objects, we must ensure that we don't end
%% up following a circular reference. Circular references in Resources should
%% not, of course, be present but we've seen a number of cases. If we do detect
%% a circular reference, then stop checking that chain.

/oforce_no_circular {
  dup type /packedarraytype eq {
    dup 0 get
    currentdict /ProcessedResources known {
      dup ProcessedResources exch known {
        pop pop //null
      } {
        dup ProcessedResources 3 1 roll put
        oforce
      } ifelse
    } {
      oforce
    } ifelse
  } {
    oforce
  } ifelse
} bind def

/dump-pdf-info {    % (fname) -> -
  () = (        ) print print ( has ) print
  PDFPageCount dup =print 10 mod 1 eq { ( page.\n) } { ( pages\n) } ifelse = flush

  Trailer /Root oget /AcroForm knownoget {
    /XFA knownoget {
      (File uses XFA forms.\n\n) print
      pop
    } if
  } if

  /DumpXML where {
    pop
    Trailer /Root oget /Metadata knownoget {
      //false resolvestream
      { dup 256 string readstring exch print not { exit } if } loop
      pop		% done with the stream
      (\n_____________________________________________________________) =
      flush
    } if
  } if

  % Print out the "Info" dictionary if present
  Trailer /Info knownoget {
     dup /Title knownoget { (Title: ) print write-doc-string () = flush } if
     dup /Author knownoget { (Author: ) print write-doc-string () = flush } if
     dup /Subject knownoget { (Subject: ) print write-doc-string () = flush } if
     dup /Keywords knownoget { (Keywords: ) print write-doc-string () = flush } if
     dup /Creator knownoget { (Creator: ) print write-doc-string () = flush } if
     dup /Producer knownoget { (Producer: ) print write-doc-string () = flush } if
     dup /CreationDate knownoget { (CreationDate: ) print write-doc-string () = flush } if
     dup /ModDate knownoget { (ModDate: ) print write-doc-string () = flush } if
     dup /Trapped knownoget { (Trapped: ) print write-doc-string () = flush } if
     pop
  } if

} bind def

% <page index> <page dict> dump-media-sizes -
/dump-media-sizes {
  DumpMediaSizes {
    () =
    % Print out the Page Size info for each page.
    (Page ) print =print
    dup /UserUnit pget {
      ( UserUnit: ) print =print
    } if
    dup /MediaBox pget {
      ( MediaBox: ) print oforce_array ==only
    } if
    dup /CropBox pget {
      ( CropBox: ) print oforce_array ==only
    } if
    dup /BleedBox pget {
      ( BleedBox: ) print oforce_array ==only
    } if
    dup /TrimBox pget {
      ( TrimBox: ) print oforce_array ==only
    } if
    dup /ArtBox pget {
      ( ArtBox: ) print oforce_array ==only
    } if
    dup /Rotate pget {
       (    Rotate = ) print =print
    } if
    dup /Annots pget {
       pop
        (     Page contains Annotations) print
    } if
    dup pageusestransparency {
        (     Page uses transparency features) print
    } if
    dup pagespotcolors
    dup length 0 gt {
      (\n    Page Spot colors: ) =
      << /Black 0 /Cyan 0 /Magenta 0 /Yellow 0 >> exch
      {
        pop	% discard the value
        1 index 1 index known not {	% check if colorant is a standard one
          (        ) print
          (') print =print (') =
        } {
          pop	% ignore this standard colorant
        } ifelse
      } forall
      pop	% discard dict of standard colorants
    } {
      pop
    } ifelse
    pop		% done with pagedict
    () = flush
  }
  {
    pop pop
  } ifelse
} bind def

% List of standard font names for use when we are showing the FontsNeeded
/StdFontNames [
 /Times-Roman /Helvetica /Courier /Symbol
 /Times-Bold /Helvetica-Bold /Courier-Bold /ZapfDingbats
 /Times-Italic /Helvetica-Oblique /Courier-Oblique
 /Times-BoldItalic /Helvetica-BoldOblique /Courier-BoldOblique
] def

/res-type-dict 10 dict begin

  /Font {
    {
      exch pop oforce_no_circular
      dup //null ne {
        dup /DescendantFonts knownoget {
           exch pop 0 get oforce_no_circular
           %% Check to see if a potentail circular reference was detected. This could be a
           %% false positive caused by other fonts using the same DescendantFont(s), but if
           %% so then we've already cehcked them anyway.
           dup //null eq { pop << >>} if
        } if
        dup /FontDescriptor knownoget {
          dup /FontFile known 1 index /FontFile2 known or exch /FontFile3 known or
          /ShowEmbeddedFonts where { pop pop //false } if {
            pop			% skip embedded fonts
          } {
            /BaseFont knownoget { %  not embedded
              2 index exch //null put
            } if
          } ifelse
        } {
          /BaseFont knownoget { % no FontDescriptor, not embedded
            2 index exch //null put
          } if
        } ifelse
      } {
        pop
      } ifelse
    } forall	% traverse the dictionary
  } bind def

  /XObject {
    {
      exch pop oforce_no_circular
      dup //null ne {
        dup /Subtype knownoget {
          /Form eq {
            /Resources knownoget {
              get-fonts-from-res
            } if
          } {
            pop
          } ifelse
        } {
          pop
        } ifelse
      } {
        pop
      } ifelse
    } forall
  } bind def

  /Pattern {
    {
      exch pop oforce_no_circular
      dup //null ne {
        /Resources knownoget {
          get-fonts-from-res
        } if
      } {
        pop
      } ifelse
    } forall
  } bind def
currentdict end readonly def

% <dict for fonts> <<res-dict>> get-fonts-from-res -
/get-fonts-from-res {
  oforce_no_circular
  dup //null ne {
    {
      oforce_no_circular
      dup //null ne {
        //res-type-dict 3 -1 roll
        .knownget {
          exec
        } {
          pop
        } ifelse
      } {
        pop pop
      } ifelse
    } forall
  } {
    pop
  } ifelse
} bind def

currentdict /res-type-dict undef

/getPDFfonts {	%	<dict for fonts> <page dict> getPDFfonts -
  /ProcessedResources 10 dict def
  dup /Resources pget { get-fonts-from-res } if
  /Annots knownoget {
    { oforce_no_circular
      dup //null ne {
        /AP knownoget {
          { exch pop oforce_no_circular
            dup //null ne {
              dup /Resources knownoget {
                get-fonts-from-res
              } if
              { exch pop oforce_no_circular
                dup type /dicttype eq {
                  /Resources knownoget {
                    get-fonts-from-res
                  } if
                } {
                  pop
                } ifelse
              } forall
            } {
              pop
            } ifelse
          } forall
        } if
      } {
        pop
      } ifelse
    } forall
  } if
  pop
  currentdict /ProcessedResources undef
} bind def

% If running with -dSAFER, .sort may not be present. Define a (slower) PS alternative
systemdict /.sort known not {
% <array> <lt-proc> .sort <array>
 /.sort
   { 1 index length 1 sub -1 1
       { 2 index exch 2 copy get 3 copy % arr proc arr i arr[i] arr i arr[i]
         0 1 3 index 1 sub
           { 3 index 1 index get        % arr proc arr i arr[i] arr imax amax j arr[j]
             2 index 1 index 10 index exec
               {                        % ... amax < arr[j]
                 4 2 roll
               }
             if pop pop
           }
         for                            % arr proc arr i arr[i] arr imax amax
         4 -1 roll exch 4 1 roll put put
       }
     for
     pop
   } bind def
} if

/dump-fonts-used { % <dict for fonts> dump-fonts-used -
  % If DumpFontsUsed is not true, then remove the 'standard' fonts from the list
  systemdict /DumpFontsUsed known not {
    StdFontNames {
      1 index 1 index known { 1 index 1 index undef } if
      pop
    } forall
  } if

  % Now dump the FontsUsed dict into an array so we can sort it.
  [ 1 index { pop } forall ]
  { 100 string cvs exch 100 string cvs exch lt } .sort

  systemdict /DumpFontsUsed known
  {
    (\nFont or CIDFont resources used (plain name and ASCIIHEX string representation):) =
    { 128 string cvs dup print (    ) print (<) print 128 string cvs {16 8 string cvrs print} forall (>) print (\n) print} forall
  } {
    DumpFontsNeeded {
      dup length 0 gt {
        (\nFonts Needed that are not embedded \(system fonts required\):) =
        { (    ) print 128 string cvs dup print (    ) print (<) print {16 8 string cvrs print} forall (>) print (\n) print} forall
      } {
        pop
        (\nNo system fonts are needed.) =
      } ifelse
    } {
      pop
    } ifelse
  } ifelse
  pop
} bind def

% Copy selected subfiles to temporary files and return the file names
% as a PostScript names to protect them from restore.
% Currently, all PDF files in the Portfolio are extracted and returned.
%
% - pdf_collection_files [ /temp_file_name ... /temp_file_name
/pdf_collection_files {
  mark
  Trailer /Root oget
  dup /Collection oknown {
    /Names knownoget {
      /EmbeddedFiles knownoget {
        pdf_collection_names
      } if
    } if
  } {
    pop
  } ifelse
} bind def

% Output all the info about the file
/dump {  % (title) -> -
  /PDFPageCount pdfpagecount def
  dump-pdf-info
  % dict will be populated with fonts through a call to 'getPDFfonts'
  % per page, then the contents dumped out in 'dump-fonts-used'
  1000 dict

  1 1 PDFPageCount
  {
    dup pdfgetpage dup 3 -1 roll
    dump-media-sizes
    1 index exch getPDFfonts
  } for

  dump-fonts-used

} bind def

% Choose between collection vs plain file.
% Enumerate collections and apply the dump procedure.
/enum-pdfs {		% - -> -
  File (r) file runpdfbegin
  pdf_collection_files
  dup mark eq {
    pop
    File dump
    runpdfend
  } {
    runpdfend
    ] 0 1 2 index length 1 sub {
        2 copy get exch           %  [file ... ] file i
        1 add (0123456789) cvs    %  [file ... ] file (i+1)
        File exch ( part ) exch concatstrings concatstrings
        exch                      %  [file ... ] (fname part i+1) file
        dup type /filetype eq {
          runpdfbegin
          dump
          runpdfend
          closefile
        } {
          1024 string cvs % .namestring is deprecated
%          .namestring
          dup (r) file
          runpdfbegin
          exch dump
          runpdfend
          deletefile
        } ifelse
    } for
    pop
  } ifelse
} bind def

enum-pdfs
end
quit

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
17 Jan 2026 3.22 PM
root / root
0755
PDFA_def.ps
2.521 KB
14 May 2025 4.03 PM
root / root
0644
PDFX_def.ps
3.773 KB
14 May 2025 4.03 PM
root / root
0644
PM760p.upp
1.133 KB
14 May 2025 4.03 PM
root / root
0644
PM760pl.upp
1.098 KB
14 May 2025 4.03 PM
root / root
0644
PM820p.upp
1.115 KB
14 May 2025 4.03 PM
root / root
0644
PM820pl.upp
1.091 KB
14 May 2025 4.03 PM
root / root
0644
Stc670p.upp
1.132 KB
14 May 2025 4.03 PM
root / root
0644
Stc670pl.upp
1.098 KB
14 May 2025 4.03 PM
root / root
0644
Stc680p.upp
1.113 KB
14 May 2025 4.03 PM
root / root
0644
Stc680pl.upp
1.089 KB
14 May 2025 4.03 PM
root / root
0644
Stc740p.upp
1.015 KB
14 May 2025 4.03 PM
root / root
0644
Stc740pl.upp
1.089 KB
14 May 2025 4.03 PM
root / root
0644
Stc760p.upp
1.114 KB
14 May 2025 4.03 PM
root / root
0644
Stc760pl.upp
1.089 KB
14 May 2025 4.03 PM
root / root
0644
Stc777p.upp
1.113 KB
14 May 2025 4.03 PM
root / root
0644
Stc777pl.upp
1.089 KB
14 May 2025 4.03 PM
root / root
0644
Stp720p.upp
1.131 KB
14 May 2025 4.03 PM
root / root
0644
Stp720pl.upp
1.089 KB
14 May 2025 4.03 PM
root / root
0644
Stp870p.upp
1.113 KB
14 May 2025 4.03 PM
root / root
0644
Stp870pl.upp
1.089 KB
14 May 2025 4.03 PM
root / root
0644
acctest.ps
4.169 KB
14 May 2025 4.03 PM
root / root
0644
align.ps
2.105 KB
14 May 2025 4.03 PM
root / root
0644
bj8.rpd
0.624 KB
14 May 2025 4.03 PM
root / root
0644
bj8gc12f.upp
1.496 KB
14 May 2025 4.03 PM
root / root
0644
bj8hg12f.upp
1.495 KB
14 May 2025 4.03 PM
root / root
0644
bj8oh06n.upp
1.481 KB
14 May 2025 4.03 PM
root / root
0644
bj8pa06n.upp
1.489 KB
14 May 2025 4.03 PM
root / root
0644
bj8pp12f.upp
1.506 KB
14 May 2025 4.03 PM
root / root
0644
bj8ts06n.upp
1.494 KB
14 May 2025 4.03 PM
root / root
0644
bjc6000a1.upp
1.621 KB
14 May 2025 4.03 PM
root / root
0644
bjc6000b1.upp
1.621 KB
14 May 2025 4.03 PM
root / root
0644
bjc610a0.upp
1.491 KB
14 May 2025 4.03 PM
root / root
0644
bjc610a1.upp
1.48 KB
14 May 2025 4.03 PM
root / root
0644
bjc610a2.upp
1.481 KB
14 May 2025 4.03 PM
root / root
0644
bjc610a3.upp
1.486 KB
14 May 2025 4.03 PM
root / root
0644
bjc610a4.upp
1.494 KB
14 May 2025 4.03 PM
root / root
0644
bjc610a5.upp
1.481 KB
14 May 2025 4.03 PM
root / root
0644
bjc610a6.upp
1.481 KB
14 May 2025 4.03 PM
root / root
0644
bjc610a7.upp
1.484 KB
14 May 2025 4.03 PM
root / root
0644
bjc610a8.upp
1.49 KB
14 May 2025 4.03 PM
root / root
0644
bjc610b1.upp
1.48 KB
14 May 2025 4.03 PM
root / root
0644
bjc610b2.upp
1.481 KB
14 May 2025 4.03 PM
root / root
0644
bjc610b3.upp
1.486 KB
14 May 2025 4.03 PM
root / root
0644
bjc610b4.upp
1.494 KB
14 May 2025 4.03 PM
root / root
0644
bjc610b6.upp
1.481 KB
14 May 2025 4.03 PM
root / root
0644
bjc610b7.upp
1.485 KB
14 May 2025 4.03 PM
root / root
0644
bjc610b8.upp
1.49 KB
14 May 2025 4.03 PM
root / root
0644
caption.ps
1.718 KB
14 May 2025 4.03 PM
root / root
0644
cbjc600.ppd
10.887 KB
14 May 2025 4.03 PM
root / root
0644
cbjc800.ppd
11.222 KB
14 May 2025 4.03 PM
root / root
0644
cdj550.upp
1.65 KB
14 May 2025 4.03 PM
root / root
0644
cdj690.upp
1.952 KB
14 May 2025 4.03 PM
root / root
0644
cdj690ec.upp
2.012 KB
14 May 2025 4.03 PM
root / root
0644
cid2code.ps
4.386 KB
14 May 2025 4.03 PM
root / root
0644
dnj750c.upp
2.742 KB
14 May 2025 4.03 PM
root / root
0644
dnj750m.upp
1.929 KB
14 May 2025 4.03 PM
root / root
0644
docie.ps
7.322 KB
14 May 2025 4.03 PM
root / root
0644
font2pcl.ps
18.007 KB
14 May 2025 4.03 PM
root / root
0644
ghostpdf.ppd
25.042 KB
14 May 2025 4.03 PM
root / root
0644
gs_ce_e.ps
2.167 KB
14 May 2025 4.03 PM
root / root
0644
gs_css_e.ps
4.807 KB
14 May 2025 4.03 PM
root / root
0644
gs_il2_e.ps
2.569 KB
14 May 2025 4.03 PM
root / root
0644
gs_kanji.ps
3.913 KB
14 May 2025 4.03 PM
root / root
0644
gs_ksb_e.ps
3.071 KB
14 May 2025 4.03 PM
root / root
0644
gs_l.xbm
1.899 KB
14 May 2025 4.03 PM
root / root
0644
gs_l.xpm
2.687 KB
14 May 2025 4.03 PM
root / root
0644
gs_l_m.xbm
1.909 KB
14 May 2025 4.03 PM
root / root
0644
gs_lgo_e.ps
2.67 KB
14 May 2025 4.03 PM
root / root
0644
gs_lgx_e.ps
1.725 KB
14 May 2025 4.03 PM
root / root
0644
gs_m.xbm
0.923 KB
14 May 2025 4.03 PM
root / root
0644
gs_m.xpm
1.403 KB
14 May 2025 4.03 PM
root / root
0644
gs_m_m.xbm
0.933 KB
14 May 2025 4.03 PM
root / root
0644
gs_s.xbm
0.58 KB
14 May 2025 4.03 PM
root / root
0644
gs_s.xpm
0.935 KB
14 May 2025 4.03 PM
root / root
0644
gs_s_m.xbm
0.59 KB
14 May 2025 4.03 PM
root / root
0644
gs_t.xbm
0.337 KB
14 May 2025 4.03 PM
root / root
0644
gs_t.xpm
0.591 KB
14 May 2025 4.03 PM
root / root
0644
gs_t_m.xbm
0.347 KB
14 May 2025 4.03 PM
root / root
0644
gs_wl1_e.ps
2.437 KB
14 May 2025 4.03 PM
root / root
0644
gs_wl2_e.ps
2.436 KB
14 May 2025 4.03 PM
root / root
0644
gs_wl5_e.ps
2.453 KB
14 May 2025 4.03 PM
root / root
0644
gslp.ps
20.242 KB
14 May 2025 4.03 PM
root / root
0644
gsnup.ps
2.572 KB
14 May 2025 4.03 PM
root / root
0644
ht_ccsto.ps
222.796 KB
14 May 2025 4.03 PM
root / root
0644
image-qa.ps
71.338 KB
14 May 2025 4.03 PM
root / root
0644
jispaper.ps
0.766 KB
14 May 2025 4.03 PM
root / root
0644
landscap.ps
1.434 KB
14 May 2025 4.03 PM
root / root
0644
lines.ps
3.648 KB
14 May 2025 4.03 PM
root / root
0644
mkcidfm.ps
21.798 KB
14 May 2025 4.03 PM
root / root
0644
necp2x.upp
1.021 KB
14 May 2025 4.03 PM
root / root
0644
necp2x6.upp
1.044 KB
14 May 2025 4.03 PM
root / root
0644
pdf2dsc.ps
7.874 KB
14 May 2025 4.03 PM
root / root
0644
pdf_info.ps
14.797 KB
14 May 2025 4.03 PM
root / root
0644
pf2afm.ps
14.937 KB
14 May 2025 4.03 PM
root / root
0644
pfbtopfa.ps
0.973 KB
14 May 2025 4.03 PM
root / root
0644
ppath.ps
1.776 KB
14 May 2025 4.03 PM
root / root
0644
pphs.ps
6.684 KB
14 May 2025 4.03 PM
root / root
0644
prfont.ps
7.044 KB
14 May 2025 4.03 PM
root / root
0644
printafm.ps
4.783 KB
14 May 2025 4.03 PM
root / root
0644
ps2ai.ps
21.783 KB
14 May 2025 4.03 PM
root / root
0644
ps2epsi.ps
5.928 KB
14 May 2025 4.03 PM
root / root
0644
ras1.upp
0.21 KB
14 May 2025 4.03 PM
root / root
0644
ras24.upp
0.214 KB
14 May 2025 4.03 PM
root / root
0644
ras3.upp
0.209 KB
14 May 2025 4.03 PM
root / root
0644
ras32.upp
0.191 KB
14 May 2025 4.03 PM
root / root
0644
ras4.upp
0.215 KB
14 May 2025 4.03 PM
root / root
0644
ras8m.upp
0.204 KB
14 May 2025 4.03 PM
root / root
0644
rollconv.ps
12.232 KB
14 May 2025 4.03 PM
root / root
0644
s400a1.upp
1.42 KB
14 May 2025 4.03 PM
root / root
0644
s400b1.upp
1.565 KB
14 May 2025 4.03 PM
root / root
0644
sharp.upp
1.891 KB
14 May 2025 4.03 PM
root / root
0644
sipixa6.upp
0.517 KB
14 May 2025 4.03 PM
root / root
0644
st640ih.upp
2.228 KB
14 May 2025 4.03 PM
root / root
0644
st640ihg.upp
1.473 KB
14 May 2025 4.03 PM
root / root
0644
st640p.upp
1.869 KB
14 May 2025 4.03 PM
root / root
0644
st640pg.upp
1.114 KB
14 May 2025 4.03 PM
root / root
0644
st640pl.upp
1.834 KB
14 May 2025 4.03 PM
root / root
0644
st640plg.upp
1.079 KB
14 May 2025 4.03 PM
root / root
0644
stc.upp
1.878 KB
14 May 2025 4.03 PM
root / root
0644
stc1520h.upp
2.104 KB
14 May 2025 4.03 PM
root / root
0644
stc2.upp
1.859 KB
14 May 2025 4.03 PM
root / root
0644
stc200_h.upp
1.805 KB
14 May 2025 4.03 PM
root / root
0644
stc2_h.upp
1.835 KB
14 May 2025 4.03 PM
root / root
0644
stc2s_h.upp
2.219 KB
14 May 2025 4.03 PM
root / root
0644
stc300.upp
2.086 KB
14 May 2025 4.03 PM
root / root
0644
stc300bl.upp
1.31 KB
14 May 2025 4.03 PM
root / root
0644
stc300bm.upp
1.396 KB
14 May 2025 4.03 PM
root / root
0644
stc500p.upp
1.858 KB
14 May 2025 4.03 PM
root / root
0644
stc500ph.upp
1.858 KB
14 May 2025 4.03 PM
root / root
0644
stc600ih.upp
2.228 KB
14 May 2025 4.03 PM
root / root
0644
stc600p.upp
1.124 KB
14 May 2025 4.03 PM
root / root
0644
stc600pl.upp
1.089 KB
14 May 2025 4.03 PM
root / root
0644
stc640p.upp
1.069 KB
14 May 2025 4.03 PM
root / root
0644
stc740ih.upp
2.073 KB
14 May 2025 4.03 PM
root / root
0644
stc800ih.upp
2.107 KB
14 May 2025 4.03 PM
root / root
0644
stc800p.upp
1.089 KB
14 May 2025 4.03 PM
root / root
0644
stc800pl.upp
1.071 KB
14 May 2025 4.03 PM
root / root
0644
stc_h.upp
1.868 KB
14 May 2025 4.03 PM
root / root
0644
stc_l.upp
0.717 KB
14 May 2025 4.03 PM
root / root
0644
stcany.upp
0.657 KB
14 May 2025 4.03 PM
root / root
0644
stcany_h.upp
0.665 KB
14 May 2025 4.03 PM
root / root
0644
stcinfo.ps
24.919 KB
14 May 2025 4.03 PM
root / root
0644
stcolor.ps
4.946 KB
14 May 2025 4.03 PM
root / root
0644
stocht.ps
2.436 KB
14 May 2025 4.03 PM
root / root
0644
traceimg.ps
1.35 KB
14 May 2025 4.03 PM
root / root
0644
traceop.ps
2.512 KB
14 May 2025 4.03 PM
root / root
0644
uninfo.ps
5.846 KB
14 May 2025 4.03 PM
root / root
0644
viewcmyk.ps
1.938 KB
14 May 2025 4.03 PM
root / root
0644
viewgif.ps
5.269 KB
14 May 2025 4.03 PM
root / root
0644
viewjpeg.ps
5.558 KB
14 May 2025 4.03 PM
root / root
0644
viewmiff.ps
4.153 KB
14 May 2025 4.03 PM
root / root
0644
viewpbm.ps
10.041 KB
14 May 2025 4.03 PM
root / root
0644
viewpcx.ps
5.109 KB
14 May 2025 4.03 PM
root / root
0644
viewps2a.ps
1.109 KB
14 May 2025 4.03 PM
root / root
0644
winmaps.ps
3.521 KB
14 May 2025 4.03 PM
root / root
0644
zeroline.ps
2.263 KB
14 May 2025 4.03 PM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF