1# 2# AFL dictionary for PNG images 3# ----------------------------- 4# 5# Just the basic, standard-originating sections; does not include vendor 6# extensions. 7# 8# Created by Michal Zalewski <lcamtuf@google.com> 9# 10 11header_png="\x89PNG\x0d\x0a\x1a\x0a" 12 13section_IDAT="IDAT" 14section_IEND="IEND" 15section_IHDR="IHDR" 16section_PLTE="PLTE" 17section_bKGD="bKGD" 18section_cHRM="cHRM" 19section_eXIf="eXIf" 20section_fRAc="fRAc" 21section_gAMA="gAMA" 22section_gIFg="gIFg" 23section_gIFt="gIFt" 24section_gIFx="gIFx" 25section_hIST="hIST" 26section_iCCP="iCCP" 27section_iTXt="iTXt" 28section_oFFs="oFFs" 29section_pCAL="pCAL" 30section_pHYs="pHYs" 31section_sBIT="sBIT" 32section_sCAL="sCAL" 33section_sPLT="sPLT" 34section_sRGB="sRGB" 35section_sTER="sTER" 36section_tEXt="tEXt" 37section_tIME="tIME" 38section_tRNS="tRNS" 39section_zTXt="zTXt" 40