o
    sdff                     @   s  d Z ddlZddlmZmZmZmZmZmZm	Z	m
Z
 ddlmZmZmZmZmZmZmZmZmZmZmZmZ ddlmZ ddlmZ g dZG dd	 d	eZG d
d deZG dd deZG dd deZ G dd deZ!dd Z"G dd deZ#G dd deZ$G dd deZ%G dd deZ&G dd deZ'G dd deZ(G d d! d!eZ)G d"d# d#eZ*G d$d% d%eZ+G d&d' d'eZ,G d(d) d)eZ-G d*d+ d+eZ.G d,d- d-eZ/G d.d/ d/eZ0G d0d1 d1eZ1G d2d3 d3eZ2G d4d5 d5eZ3dS )6z
    pygments.lexers.configs
    ~~~~~~~~~~~~~~~~~~~~~~~

    Lexers for configuration file formats.

    :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details.
    N)ExtendedRegexLexer
RegexLexerdefaultwordsbygroupsincludeusingline_re)TextCommentOperatorKeywordNameStringNumberPunctuation
WhitespaceLiteralErrorGeneric)	BashLexer)	JsonLexer)IniLexerSystemdLexerDesktopLexerRegeditLexerPropertiesLexerKconfigLexerCfengine3LexerApacheConfLexerSquidConfLexerNginxConfLexerLighttpdConfLexerDockerLexerTerraformLexerTermcapLexerTerminfoLexerPkgConfigLexerPacmanConfLexerAugeasLexer	TOMLLexerNestedTextLexerSingularityLexerUnixConfigLexerc                   @   s   e Zd ZdZdZg dZg dZddgZdZdZ	d	e
fd
ejfdeee
fdeeje
ee
eee
dfdeeje
ee
efdejfgd	e
fdee
eee
fdedfgdZdd ZdS )r   z5
    Lexer for configuration files in INI style.
    INI)inicfgdosini)z*.iniz*.cfgz*.infz.editorconfigz
text/x-iniztext/infz&https://en.wikipedia.org/wiki/INI_file \s+[;#].*z(\[.*?\])([ \t]*)$u0   (.*?)([  \t]*)([=:])([ \t]*)([^;#\n]*)(\\)(\s+)valueu8   (.*?)([ \t]*)([=:])([  \t]*)([^ ;#\n]*(?: +[^ ;#\n]+)*)z(.+?)$z(\s*)(.*)(\\)([ \t]*)z.*$#poprootr5   c                 C   s:   |  d}|dk rdS | d dkr| |d  dkrdS dS )	N
   Fr   [   ]g?)find)textZnpos r@   `/var/www/html/software/conda/envs/catlas/lib/python3.10/site-packages/pygments/lexers/configs.pyanalyse_text@   s   
zIniLexer.analyse_textN)__name__
__module____qualname____doc__namealiases	filenames	mimetypesurlversion_addedr   r   Singler   r   r   	Attributer   r   r
   tokensrB   r@   r@   r@   rA   r      s<    r   c                   @   sx   e Zd ZdZdZdZdgZdgZdgZdZ	dd	e
fd
eeje
fdeee
fdeejeje
ee
ee
fgiZdd ZdS )r   z#
    Lexer for .desktop files.
    zDesktop filezXhttps://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.htmlZdesktopz	*.desktopzapplication/x-desktop2.16r8   	^[ \t]*\nz
^(#.*)(\n)(\[[^\]\n]+\])(\n)zG([-A-Za-z0-9]+)(\[[^\] \t=]+\])?([ \t]*)(=)([ \t]*)([^\n]*)([ \t\n]*\n)c                 C   2   |  drdS td| d d tjd urdS dS )Nz[Desktop Entry]      ?z^\[Desktop Entry\][ \t]*$  ?        
startswithresearch	MULTILINEr?   r@   r@   rA   rB   _   
   
zDesktopLexer.analyse_textN)rC   rD   rE   rF   rG   rK   rH   rI   rJ   rL   r   r   r   rM   r   r   rN   	Namespacer   r   rO   rB   r@   r@   r@   rA   r   I   s$    
r   c                   @   s   e Zd ZdZdZdZdgZg dZdZde	fde
eje	fd	e
ee	fd
e
eje	ee	eee	dfde
eje	ee	ee	fgde
eje	fde
e	eee	fde
e	ee	dfgdZdd ZdS )r   z'
    Lexer for systemd unit files.
    ZSystemdzDhttps://www.freedesktop.org/software/systemd/man/systemd.syntax.htmlZsystemd)z	*.servicez*.socketz*.devicez*.mountz*.automountz*.swapz*.targetz*.pathz*.timerz*.slicez*.scoperP   rQ   z^([;#].*)(\n)rR   z*([^=]+)([ \t]*)(=)([ \t]*)([^\n]*)(\\)(\n)r5   z&([^=]+)([ \t]*)(=)([ \t]*)([^\n]*)(\n)z([ \t]*)([^\n]*)(\\)(\n)z([ \t]*)([^\n]*)(\n)r6   r7   c                 C   rS   )Nz[Unit]rT   z^\[Unit\][ \t]*$rU   rV   rW   rX   r]   r@   r@   rA   rB      r^   zSystemdLexer.analyse_textN)rC   rD   rE   rF   rG   rK   rH   rI   rL   r   r   r   rM   r   r   rN   r   r   r
   rO   rB   r@   r@   r@   rA   r   g   s<    r   c                   @   s   e Zd ZdZdZdZdgZdgZdgZdZ	de
fd	efd
ejfdeeeejefdeejeeedfdeejeeedfgdedfdeejeedfdedfedgdZdd ZdS )r   z?
    Lexer for Windows Registry files produced by regedit.
    regz8http://en.wikipedia.org/wiki/Windows_Registry#.REG_filesregistryz*.regztext/x-windows-registry1.6zWindows Registry Editor.*r3   r4   z(\[)(-?)(HKEY_[A-Z_]+)(.*?\])$z)("(?:\\"|\\\\|[^"])+")([ \t]*)(=)([ \t]*)r5   z(.*?)([ \t]*)(=)([ \t]*)-r6   z1(dword|hex(?:\([0-9a-fA-F]\))?)(:)([0-9a-fA-F,]+).+r7   c                 C   s
   |  dS )NzWindows Registry Editor)rY   r]   r@   r@   rA   rB      s   
zRegeditLexer.analyse_textN)rC   rD   rE   rF   rG   rK   rH   rI   rJ   rL   r
   r   r   rM   r   r   r   r   BuiltinrN   Variabler   r   r   r   rO   rB   r@   r@   r@   rA   r      s@    r   c                   @   s   e Zd ZdZdZddgZdgZdgZdZdZ	d	e
jfd
efdefedgdejfeddeeeedfdedfd
edfgdefedd
edfgdeejefdejfgdZdS )r   z
    Lexer for configuration files in Java's properties format.

    Note: trailing whitespace counts as part of the value as per spec
    
Properties
propertiesjpropertiesz*.propertiesztext/x-java-propertiesz)https://en.wikipedia.org/wiki/.propertiesz1.4z[!#].*|/{2}.*\nz	^[^\S\n]+keyz
[^\\:=\s]+escapesz([^\S\n]*)([:=])([^\S\n]*))r6   r5   [^\S\n]+r6   z[^\\\n]+z(\\\n)([^\S\n]*)z\\(.|\n))r8   rk   r5   rl   N)rC   rD   rE   rF   rG   rH   rI   rJ   rK   rL   r   rM   r   r   r   rN   r   r   r   r   EscaperO   r@   r@   r@   rA   r      s<    


r   c                 C   sP   d}|dkr	d}nd|d  }| dkrd}nd|  d}d	| d
| d| dS )N      +z{1,%d}r<   r2   {}z(?:\t| z\t| {z})z.*\nr@   )levelZ	tab_widthZspace_repeatZlevel_repeatr@   r@   rA   
_rx_indent   s   ru   c                   @   s  e Zd ZdZdZg dZdZg dZdgZdZ	dZ
d	d
 Zdd Zdefdejfedddefdedfdejfdefdefdejfdejfdejfdefgdefededededed ed!ed"ed#g	ededededed ed!ed"d$	Zd%S )&r   z(
    For Linux-style Kconfig files.
    Kconfig)kconfig
menuconfigzlinux-configzkernel-configrb   )zKconfig*z*Config.in*zexternal.in*zstandard-modules.inztext/x-kconfigzChttps://www.kernel.org/doc/html/latest/kbuild/kconfig-language.htmlr   c                 C   s   t | tjd|  fS )Nindent)ru   r   Docrt   r@   r@   rA   call_indent  s   zKconfigLexer.call_indentc                 C   s   t | tjfdtftdgS )N\s*\n#pop:2)ru   r   rz   r
   r   r{   r@   r@   rA   	do_indent  s   zKconfigLexer.do_indentr3   #.*?\n)Zmainmenuconfigrx   choiceZ	endchoicecommentZmenuZendmenuz
visible ififendifsourcepromptselectz
depends onr   rangeoption\bsuffixz(---help---|help)[\t ]*\nhelpz;(bool|tristate|string|hex|int|defconfig_list|modules|env)\bz[!=&|]z[()][0-9]+z'(''|[^'])*'z"(""|[^"])*"\S+r}               r:   rp   r<   r6   )	r8   r   Zindent7Zindent6Zindent5Zindent4Zindent3Zindent2Zindent1N)rC   rD   rE   rF   rG   rH   rL   rI   rJ   rK   flagsr|   r   r   r   rM   r   r   r   re   r   r   r   Integerr   Doubler
   r   rO   r@   r@   r@   rA   r   	  s^    
r   c                   @   sv  e Zd ZdZdZdZddgZdgZg ZdZ	de
fd	eeeeeefd
eeeeeejedfdeeeeeejfdeeejeeejeeefdeejeeefdedfdeejefdeejefdeejefdejfdefdefdefdejfdejfdejfdefgdejdfdejfdedfd efd!efgdejd"fd#ejdfd$ejfgd%edfd&efdejfdefgd'Zd(S ))r   z+
    Lexer for CFEngine3 policy files.
    	CFEngine3zhttp://cfengine.org	cfengine3cf3z*.cfz1.5r   z(body)(\s+)(\S+)(\s+)(control)z%(body|bundle)(\s+)(\S+)(\s+)(\w+)(\()arglistz!(body|bundle)(\s+)(\S+)(\s+)(\w+)z7(")([^"]+)(")(\s+)(string|slist|int|real)(\s*)(=>)(\s*)z(\S+)(\s*)(=>)(\s*)"stringz	(\w+)(\()z([\w.!&|()]+)(::)z(\w+)(:)z@[{(][^)}]+[})]z[(){},;]z=>z->z\d+\.\d+\d+\w+r3   z\$[{(]interpol\\.r6   rj   .#pushz[})]z	[^${()}]+z\),)r8   r   r   r   N)rC   rD   rE   rF   rG   rK   rH   rI   rJ   rL   r   r   r   r   r   Functionr   rf   Typer   Reservedr
   r   ClassDeclarationr   Floatr   Interpolrn   rO   r@   r@   r@   rA   r   W  sp    




r   c                   @   s   e Zd ZdZdZg dZg dZdgZdZdZ	e
je
jB Zdefd	efd
eejeeejfdeejejfdejdfdefgdefdedfdefdefdefdefdejfdefdejfdefg
dZdS )r   zT
    Lexer for configuration files following the Apache config file
    format.
    
ApacheConf)
apacheconfaconfapache)z	.htaccesszapache.confzapache2.confztext/x-apacheconfz6https://httpd.apache.org/docs/current/configuring.htmlz0.6r3   z#(.*\\\n)+.*$|(#.*?)$z"(<[^\s>/][^\s>]*)(?:(\s+)(.*))?(>)z(</[^\s>]+)(>)z[a-z]\w*r5   z\.+z\\\nz\n+r6   z\\rm   \d+\.\d+\.\d+\.\d+(?:/\d+)?r   z/([*a-z0-9][*\w./-]+)z(on|off|none|any|all|double|email|dns|min|minimal|os|productonly|full|emerg|alert|crit|error|warn|notice|info|debug|registry|script|inetd|standalone|user|group)\bz"([^"\\]*(?:\\(.|\n)[^"\\]*)*)"z	[^\s"\\]+r7   N)rC   rD   rE   rF   rG   rH   rI   rJ   rK   rL   rZ   r\   
IGNORECASEr   r   r   r   r   Tagr   re   r
   r   Otherr   r   rO   r@   r@   r@   rA   r     sD    

r   c                   @   sB  e Zd ZdZdZdZg dZdgZdgZdZ	e
jZdZd	Zd
ZdZdZdZdZde de dZdZde de dZde de dZe de dZdefdedfeedddefeedddejfeedddefeedddefeedd defeedddefee j!fd!e fd"e"fgd#ej#d$fd%ed$fe$d$gd&Z%d'S )(r    z.
    Lexer for squid configuration files.
    	SquidConfzhttp://www.squid-cache.org/)	squidconf
squid.confsquidr   ztext/x-squidconfz0.9)Z
access_logZaclZalways_directZannounce_hostZannounce_periodZannounce_portZannounce_toZanonymize_headersZappend_domainZas_whois_serverZauth_param_basicZauthenticate_childrenZauthenticate_programZauthenticate_ttlZbroken_postsZbuffered_logsZcache_access_logZcache_announce	cache_dirZcache_dns_programZcache_effective_groupZcache_effective_userZ
cache_hostZcache_host_aclZcache_host_domainZ	cache_logZ	cache_memZcache_mem_highZcache_mem_lowZ	cache_mgrZcachemgr_passwdZ
cache_peerZcache_peer_accessZcache_replacement_policyZcache_stoplistZcache_stoplist_patternZcache_store_logZ
cache_swapZcache_swap_highZcache_swap_logZcache_swap_lowZ	client_dbZclient_lifetimeZclient_netmaskconnect_timeoutZcoredump_dirZdead_peer_timeoutZdebug_optionsZdelay_accessZdelay_classZdelay_initial_bucket_levelZdelay_parametersZdelay_poolsZ	deny_infoZdns_childrenZdns_defnamesZdns_nameserversZdns_testnamesZemulate_httpd_logZerr_html_textZfake_user_agentZfirewall_ipZforwarded_forZforward_snmpd_portZfqdncache_sizeZftpget_optionsZftpget_programZftp_list_widthZftp_passiveZftp_userZhalf_closed_clientsZheader_accessZheader_replaceZhierarchy_stoplistZhigh_response_time_warningZhigh_page_fault_warningZ
hosts_fileZ	htcp_portZhttp_accessZhttp_anonymizerZhttpd_accelZhttpd_accel_hostZhttpd_accel_portZhttpd_accel_uses_host_headerZhttpd_accel_with_proxyZ	http_portZhttp_reply_accessZ
icp_accessZicp_hit_staleZicp_portZicp_query_timeoutZident_lookupZident_lookup_accessZident_timeoutZincoming_http_averageZincoming_icp_averageZinside_firewallZipcache_highZipcache_lowZipcache_sizeZlocal_domainZlocal_ipZlogfile_rotateZlog_fqdnZlog_icp_queriesZlog_mime_hdrsZmaximum_object_sizeZmaximum_single_addr_triesZmcast_groupsZmcast_icp_query_timeoutZmcast_miss_addrZmcast_miss_encode_keyZmcast_miss_portZmemory_poolsZmemory_pools_limitZmemory_replacement_policyZ
mime_tableZmin_http_poll_cntZmin_icp_poll_cntZminimum_direct_hopsZminimum_object_sizeZminimum_retry_timeoutZmiss_accessZnegative_dns_ttlZnegative_ttlZneighbor_timeoutZneighbor_type_domainZ
netdb_highZ	netdb_lowZnetdb_ping_periodZnetdb_ping_rateZnever_directno_cacheZpassthrough_proxyZpconn_timeoutZpid_filenameZpinger_programZpositive_dns_ttlZprefer_direct
proxy_authZproxy_auth_realmZ
query_icmpZquick_abortZquick_abort_maxZquick_abort_minZquick_abort_pctZrange_offset_limitread_timeoutZredirect_childrenZredirect_programZredirect_rewrites_host_headerZreference_ageZrefresh_patternZreload_into_imsZrequest_body_max_sizeZrequest_sizerequest_timeoutZshutdown_lifetimeZsingle_parent_bypassZsiteselect_timeoutZsnmp_accessZsnmp_incoming_addressZ	snmp_portZsource_pingZ	ssl_proxyZstore_avg_object_sizeZstore_objects_per_bucketZstrip_query_termsZswap_level1_dirsZswap_level2_dirsZtcp_incoming_addressZtcp_outgoing_addressZtcp_recv_bufsizeZtest_reachabilityZudp_hit_objZudp_hit_obj_sizeZudp_incoming_addressZudp_outgoing_addressZunique_hostnameZunlinkd_programZuri_whitespaceZuseragent_logZvisible_hostnameZ
wais_relayZwais_relay_hostZwais_relay_port)z
proxy-onlyweightttlzno-queryr   zround-robinzmulticast-responderonoffallZdenyZallowZviaparentz	no-digestheapZlrurealmchildrenq1q2ZcredentialsttlnonedisableZoffline_toggleZdiskd)shutdowninfoZ	parameterZserver_listZclient_listr   )objectsZ
vm_objectsZutilizationZipcacheZ	fqdncacheZdnsZ
redirectorioZreply_headersZfiledescriptorsZnetdb)statusenabler   clear)Z	url_regexZurlpath_regexZreferer_regexportprotoZreq_mime_typeZrep_mime_typemethodZbrowserusersrcdsttimeZ	dstdomainidentZsnmp_communityz(\d+|0x[0-9a-f]+)(z(\.z){3})z([0-9a-f]{0,4})z(:z){1,7})|)z(/(z|\d+))?r3   #r   r   prefixr   zstats/zlog/=z(?:\b\d+\b(?:-\b\d+|%)?)r   z	\s*TAG:.*r6   rd   )r8   r   N)&rC   rD   rE   rF   rG   rK   rH   rI   rJ   rL   rZ   r   r   keywordsoptsactionsZactions_statsZactions_logZaclsZ
ipv4_groupZipv4Z
ipv6_groupZipv6Zbare_ipipr   r   r   r   r   Constantr   r   r   r
   rn   r   rO   r@   r@   r@   rA   r      sL    ;

r    c                   @   s   e Zd ZdZdZdZdgZdgZdgZdZ	de
eeefd	ed
fedgdedfd	ejd
fedgdedfdedfedgdejfdejfdejfde
eeejfdefdejfde
eeejfdefdefdefdefdefgdZdS ) r!   z.
    Lexer for Nginx configuration files.
    zNginx configuration filezhttp://nginx.net/nginxz
nginx.confztext/x-nginx-conf0.11z(include)(\s+)([^\s;]+)z[^\s;#]+stmtbase\}r~   \{block;r6   #.*\nzon|offz\$[^\s;#()]+z([a-z0-9.-]+)(:)([0-9]+)z[a-z-]+/[a-z-+]+z[0-9]+[km]?\bz(~)(\s*)([^\s{]+)z[:=~]z[^\s;#{}$]+z	/[^\s;#]*r3   z[$;])r8   r   r   r   N)rC   rD   rE   rF   rG   rK   rH   rI   rJ   rL   r   r   r   r   r   r   r_   r   rM   r   rf   r   r   r   Regexr
   rO   r@   r@   r@   rA   r!   @  sH    

r!   c                   @   sz   e Zd ZdZdZdZddgZdgZdgZdZ	d	d
e
jfdefdefdefdefdefdejfdefdejfdefg
iZdS )r"   z1
    Lexer for Lighttpd configuration files.
    zLighttpd configuration filezhttp://lighttpd.net/lighttpdlightyzlighttpd.confztext/x-lighttpd-confr   r8   r   z/\S*z[a-zA-Z._-]+r   r   z=>|=~|\+=|==|=|\+z\$[A-Z]+z[(){}\[\],]z"([^"\\]*(?:\\.[^"\\]*)*)"r3   N)rC   rD   rE   rF   rG   rK   rH   rI   rJ   rL   r   rM   r   r   r   r   re   r   r   r   r   rO   r@   r@   r@   rA   r"   n  s*    r"   c                   @   s  e Zd ZdZdZdZddgZddgZdgZd	Z	d
Z
dZdZejejB Zddefdeeeeeeeefde deeeeefde de deeeeefde deeeeeeefde de deeeeefde
 deeeefde deeefdeefg	iZdS )r#   z/
    Lexer for Docker configuration files.
    Dockerzhttp://docker.iodocker
dockerfile
Dockerfilez*.dockerztext/x-dockerfile-configz2.0z-(?:MAINTAINER|EXPOSE|WORKDIR|USER|STOPSIGNAL)z-(?:RUN|CMD|ENTRYPOINT|ENV|ARG|LABEL|ADD|COPY)z(?:\s*\\?\s*)r8   #.*z1(FROM)([ \t]*)(\S*)([ \t]*)(?:(AS)([ \t]*)(\S*))?z(ONBUILD)(\s+)(r   z(HEALTHCHECK)(\s+)((z	--\w+=\w+z)*)z#(VOLUME|ENTRYPOINT|CMD|SHELL)(\s+)(z
)(\[.*?\])z(LABEL|ENV|ARG)(\s+)((z\w+=\w+r   z|VOLUME)\b(\s+)(.*)z)(\s+)z(.*\\\n)*.+N)rC   rD   rE   rF   rG   rK   rH   rI   rJ   rL   Z	_keywordsZ_bash_keywordsZ_lbrZ   r   r\   r   r   r   r   r   r   r   r   r   rO   r@   r@   r@   rA   r#     s@    

r#   c                   @   s  e Zd ZdZdZdZg dZddgZddgZd	Z	d
Z
dde
ZdZdZdZdZdZdZdZdZdZdZee e e e e e e e ZddeZdd Zededdeejfedddde j!feeddde"j#feded d!e$fgd"e%j&d#fd$e%j'fedd%ee(e j)e(e*e(e+fd&ee(e j,e(e*e(fd'ee(e-jje(e*e(fed( ee j.e+fd)ee+e j)e+fed* ee"j/e(e j0e(e j1e(e+fd+efg
d,ee j1fd-ee j1fgd.e+fgd/e%j&fd0e%j&d1fd2e%j&d3fd4e%j&fgd5e(fd6e(fd7ee2e(fgd8Z3d9S ):r$   z-
    Lexer for terraformi ``.tf`` files.
    	Terraformzhttps://www.terraform.io/)	terraformtfhclz*.tfz*.hclzapplication/x-tfzapplication/x-terraform2.1)backenddatamoduleoutputproviderZprovisionerresourcevariablez({})r   )	r   numberboollisttuplemapsetobjectnull)	absceilfloorlogmaxZmixZparseintpowsignum)ZchompformatZ
formatlistry   joinlowerregexZregexallreplacesplitZstrrevsubstrtitleZtrimZ
trimprefixZ
trimsuffixZ	trimspaceupper)ZalltrueZanytrueZ	chunklistZcoalesceZcoalescelistcompactconcatcontainsZdistinctelementflattenindexkeyslengthr  lookupr  Z	matchkeysmerger   reverseZsetintersectionZ
setproductZsetsubtractZsetunionslicesortsumZ	transposevaluesZzipmap)Zbase64decodeZbase64encodeZ
base64gzipZ	csvdecodeZ
jsondecodeZ
jsonencodeZtextdecodebase64Ztextencodebase64	urlencodeZ
yamldecodeZ
yamlencode)	abspathdirnameZ
pathexpandbasenamefileZ
fileexistsZfilesetZ
filebase64Ztemplatefile)
formatdateZtimeadd	timestamp)Zbase64sha256Zbase64sha512ZbcryptZfilebase64sha256Zfilebase64sha512Zfilemd5Zfilesha1Z
filesha256Z
filesha512md5Z
rsadecryptsha1sha256sha512uuidZuuidv5)ZcidrhostZcidrnetmaskZ
cidrsubnetZcidrsubnets)	ZcandefaultsZtobooltolistZtomapZtonumberZtosetZtostringtryc           	      c   s:   | d}|t|dfV  | dtj|dfV  | d|_|d|_|jtj|dfV  | |_|d}d}g }t	|j
|jD ]<}|rT|  }n|  }||kr|D ]}|  tj| fV  q`|  tj| fV  | |_ n|| qI|D ]}|  t| fV  qt|j
|_d S )Nr<   rp   r:   T)startr   groupr   	DelimiterposendHeredocr	   finditerr?   striprstripappendr   len)	selfmatchctxr9  ZhdnameZtolerantlinescheckZamatchr@   r@   rA   heredoc_callback  s2   



zTerraformLexer.heredoc_callbackbasic
whitespacez(".*"))truefalser   r   
identifierpunctuationr   z\s*/\*r   z\s*(#|//).*\nz'(\s*)([0-9a-zA-Z-_]+)(\s*)(=?)(\s*)(\{)z"(\s*)([0-9a-zA-Z-_]+)(\s*)(=)(\s*)z(\s*)("\S+")(\s*)([=:])(\s*)z(\()z(\[)([a-z_,\s]+)(\])z8(\s+)("[0-9a-zA-Z-_]+")?(\s*)("[0-9a-zA-Z-_]+")(\s+)(\{)z(<<-?)\s*([a-zA-Z_]\w*)(.*?\n)z\b(var\.[0-9a-zA-Z-_\.\[\]]+)\bz.\b([0-9a-zA-Z-_\[\]]+\.[0-9a-zA-Z-_\.\[\]]+)\bz[\[\]()\{\},.?:!=]z[^*/]z/\*r   z\*/r6   z[*/]rj   r3   (\\)(\n))r8   rJ  rN  rO  r   rK  N)4rC   rD   rE   rF   rG   rK   rH   rI   rJ   rL   classesr  r  Z
classes_retypesZnumeric_functionsZstring_functionsZcollection_functionsZencoding_functionsZfilesystem_functionsZdate_time_functionsZhash_crypto_functionsZip_network_functionsZtype_conversion_functionsbuiltinsZbuiltins_rerI  r   r   r   r   r   r   r   r   r   r   r   	MultilinerM   r   re   r   r   rN   r   r   r   r   rf   r
   rO   r@   r@   r@   rA   r$     s    	'
"


r$   c                	   @   s   e Zd ZdZdZdgZddgZg ZdZdZ	de
fdejd	fd
efgdedfdedfdefdejfgdeeefdedfdeeefdedfdefdejfgdefdedfdefdefgdZdS )r%   zR
    Lexer for termcap database source.

    This is very simple and minimal.
    Termcaptermcapztermcap.srcz%https://en.wikipedia.org/wiki/Termcapr   ^#.*z
^[^\s#:|]+namesr3   rj   r6   :defs\|z[^:|]+z(\\)(\n[ \t]*)z\n[ \t]*r~   (#)([0-9]+)r   r   z	[^\s:=#]+z\\072z[^:\\]+r   r8   rX  rZ  r   N)rC   rD   rE   rF   rG   rH   rI   rJ   rK   rL   r   r   r   r   r   rN   r   r
   r   r   r   r   rO   r@   r@   r@   rA   r%   V  s<    	
	
r%   c                
   @   s   e Zd ZdZdZdgZddgZg ZdZdZ	de
fdejd	fd
efgdedfdeeedfdefdejfgdefdedfdeeefdedfdeeefdejfgdefdeeedfdefdefgdZdS )r&   zS
    Lexer for terminfo database source.

    This is very simple and minimal.
    Terminfoterminfozterminfo.srcz&https://en.wikipedia.org/wiki/Terminfor   z^#.*$z
^[^\s#,|]+rX  r3   rj   r6   z(,)([ \t]*)rZ  r[  z[^,|]+z\n[ \t]+r~   r\  r   r   z	[^\s,=#]+z\\[,\\]z[^\\,]+r   r]  N)rC   rD   rE   rF   rG   rH   rI   rJ   rK   rL   r   r   r   r   r   r   rN   r   r   r   r   rO   r@   r@   r@   rA   r&     s<    	
	
r&   c                
   @   s   e Zd ZdZdZdZdgZdgZg ZdZ	de
jfdeejefd	eejed
feddefdefdefgdefdejdfgdejdfdejfgedde
jdfdedfdefdefdefgdZdS )r'   ze
    Lexer for pkg-config
    (see also `manual page <http://linux.die.net/man/1/pkg-config>`_).
    	PkgConfigz4http://www.freedesktop.org/wiki/Software/pkg-config/	pkgconfigz*.pcr   #.*$z	^(\w+)(=)z^([\w.]+)(:)spvalueinterpr3   z[^${}#=:\n.]+r   z\$\$z\$\{curlyr   r6   r   rj   z[^${}#\n\s]+)r8   rd  re  rc  N)rC   rD   rE   rF   rG   rK   rH   rI   rJ   rL   r   rM   r   r   rN   r   r   r   r   r   r
   r   r   rO   r@   r@   r@   rA   r'     s@    



r'   c                	   @   s   e Zd ZdZdZdZdgZdgZg ZdZ	dde
jfd	eeeefd
eejeefdeeejefedddejfdefdefgiZdS )r(   a@  
    Lexer for pacman.conf.

    Actually, IniLexer works almost fine for this format,
    but it yield error token. It is because pacman.conf has
    a form without assignment like:

        UseSyslog
        Color
        TotalDownload
        CheckSpace
        VerbosePkgLists

    These are flags to switch on.
    
PacmanConfz3https://www.archlinux.org/pacman/pacman.conf.5.html
pacmanconfzpacman.confr   r8   rb  z^(\s*)(\[.*?\])(\s*)$z(\w+)(\s*)(=)z^(\s*)(\w+)(\s*)$)z$repoz$archz%oz%ur   r   r3   r   N)rC   rD   rE   rF   rG   rK   rH   rI   rJ   rL   r   rM   r   r   r   r   rN   r   r   rf   r
   rO   r@   r@   r@   rA   r(     s4    	r(   c                   @   s   e Zd ZdZdZdZdgZdgZdZde	e
jeejfde	e
jeejfd	e	ejefd
e	eejee
jefdejdfdefdefdejdfdejdfde	ejeejfdejfdefgdejfdejfdejdfgdejfdejfdejdfgdejfdejdfdejdfdejfgdZdS ) r)   z
    Lexer for Augeas.
    Augeaszhttp://augeas.netaugeasz*.aug2.4z(module)(\s*)([^\s=]+)z(let)(\s*)([^\s=]+)zV(del|store|value|counter|seq|key|label|autoload|incl|excl|transform|test|get|put)(\s+)z8(\()([^:]+)(\:)(unit|string|regexp|lens|tree|filter)(\))z\(\*r   z[*+\-.;=?|]z
[()\[\]{}]r   r   z\/r  z([A-Z]\w*)(\.)(\w+)r   r3   r   z[^"]r6   z[^/]z[^*)]r   z\*\)z[)*])r8   r   r  r   N)rC   rD   rE   rF   rG   rK   rH   rI   rL   r   r   r_   r   r   r   rf   re   r   r   r   rT  r   r   r   r   rn   rO   r@   r@   r@   rA   r)   &  sD    







r)   c                   @   s4  e Zd ZdZdZdgZg dZdgZdZdZ	dZ
d	e
 d
Zdefdejfeddeeedfdedfgdefdejdfdejdfdefgdefdejdfdejdfdefdedfdefgeejdfe
ejdfdejdfdejdfdejdfdejdfdejdfd ejdfd!ejdfd"ejd#fdejd$fd%ejd&fdejd'fd(ejdfd)ed*fd+ed,fgdefdejfd-efd.edfe dgdefeddeeedfd-efd/edfgdejdfed0d1ejfgd2ejdfgd"ejdfd3eej!efed0d1ejfdejfgd%ejdfd4ejfdejfgd5ej!fd6ej!fgd7Z"d8S )9r*   z=
    Lexer for TOML, a simple language for config files.
    TOMLtoml)z*.tomlPipfilezpoetry.lockzapplication/tomlzhttps://toml.iorj  z\d\d:\d\d:\d\d(\.\d+)?zm(?x)
                  \d\d\d\d-\d\d-\d\d # date, e.g., 1988-10-27
                (
                  [Tt ] z # optional time
                  (
                    [Zz]|[+-]\d\d:\d\d # optional time offset
                  )?
                )?
              r3   r   rk   z(=)(\s*)r5   z\[\[?	table-keyz[A-Za-z0-9_-]+r   basic-string'literal-stringz\.z\]\]?r6   [ \t]+z [+-]?\d[0-9_]*[eE][+-]?\d[0-9_]*z.[+-]?\d[0-9_]*\.\d[0-9_]*([eE][+-]?\d[0-9_]*)?z[+-]?(inf|nan)z
-?0b[01_]+z-?0o[0-7_]+z-?0x[0-9a-fA-F_]+z[+-]?[0-9_]+z""")r6   multiline-basic-string)r6   ro  z''')r6   multiline-literal-string)r6   rq  z
true|false\[)r6   arrayr   )r6   inline-tabler   \]r   rl   z[^"\\]+z.*?'rP  z[^']+z#\\u[0-9a-fA-F]{4}|\\U[0-9a-fA-F]{8}r   )r8   rk   rn  r5   rv  rw  ro  rq  rs  rt  rl   N)#rC   rD   rE   rF   rG   rH   rI   rJ   rK   rL   _time	_datetimer   r   rM   r   r   r   r   r   r   r   r   r   Dater   r   BinOctHexr   r   r   rn   rO   r@   r@   r@   rA   r*   R  s    
















&



 
r*   c                   @   sr  e Zd ZdZdZdZddgZdgZdZde	e
efd	e	e
ed
fde	e
edfde	e
efde	e
ee
ee
fde	e
efde	e
ee
ee
fde	e
efde	e
ee
eje
fde	e
ejefde	e
ejee
ee
fgeddefeddefdedfdedfgeddejfdedfdedfdedfgeddefeddedfded fgedd!ed
fd"edfgd#e
fgd$Zd%S )&r+   z
    Lexer for *NextedText*, a human-friendly data format.

    .. versionchanged:: 2.16
        Added support for *NextedText* v3.0.
    
NestedTextzhttps://nestedtext.org
nestedtextntz*.ntz2.9z^([ ]*)(#.*)$z^([ ]*)(\{)inline_dictz^([ ]*)(\[)inline_listz^([ ]*)(>)$z^([ ]*)(>)( )(.*?)([ \t]*)$z^([ ]*)(-)$z^([ ]*)(-)( )(.*?)([ \t]*)$z^([ ]*)(:)$z^([ ]*)(:)( )([^\n]*?)([ \t]*)$z^([ ]*)([^\{\[\s].*?)(:)$z)^([ ]*)([^\{\[\s].*?)(:)( )(.*?)([ \t]*)$rK  z[^\{\}\[\],\s]+inline_valuer   rx  r6   rj   z[^\{\}\[\],:\s]+rY  inline_dict_valuer   r~   r   ru  rr  )r8   r  r  r  r  rK  N)rC   rD   rE   rF   rG   rK   rH   rI   rL   r   r   r   r   r
   r   r   r   r   rO   r@   r@   r@   rA   r+     sZ    #	
r+   c                   @   s   e Zd ZdZdZdZdgZddgZdZe	j
e	jB e	jB ZdZdZd	Zeeejed
feeejed
feeeeefdefdefdefdefgdeedfgdZdd ZdS )r,   z1
    Lexer for Singularity definition files.
    SingularityzAhttps://www.sylabs.io/guides/3.0/user-guide/definition_files.htmlsingularityz*.defz2.6zS^(\s*)(bootstrap|from|osversion|mirrorurl|include|registry|namespace|includecmd)(:)zT^(%(?:pre|post|setup|environment|help|labels|test|runscript|files|startscript))(\s*)z6^(%app(?:install|help|run|labels|env|test|files))(\s*)scriptz	\s*#.*?\nz"\b(([0-9]+\.?[0-9]*)|(\.[0-9]+))\brr  z
(?!^\s*%).z(.+?(?=^\s*%))|(.*)r6   )r8   r  c                 C   s>   d}t d| t jr|d7 }t tjdd | r|d7 }|S )zlThis is a quite simple script file, but there are a few keywords
        which seem unique to this language.r   z&\b(?:osversion|includecmd|mirrorurl)\bg      ?r<   Ng\(\?)rZ   r[   r   r,   _section)r?   resultr@   r@   rA   rB   k  s   zSingularityLexer.analyse_textN)rC   rD   rE   rF   rG   rK   rH   rI   rL   rZ   r   r\   DOTALLr   _headersr  Z_appsectr   r   Headingr   r   r
   r   r   r   r   rO   rB   r@   r@   r@   rA   r,   L  s.    
r,   c                   @   sT   e Zd ZdZdZddgZg ZdZdZdde	fd	e
fd
efdefdefdefgiZdS )r-   z
    Lexer for Unix/Linux config files using colon-separated values, e.g.

    * ``/etc/group``
    * ``/etc/passwd``
    * ``/etc/shadow``
    zUnix/Linux config files
unixconfiglinuxconfigzUhttps://en.wikipedia.org/wiki/Configuration_file#Unix_and_Unix-like_operating_systemsz2.12r8   rW  rj   rY  r   z"((?!\n)[a-zA-Z0-9\_\-\s\(\),]){2,}z[^:\n]+N)rC   rD   rE   rF   rG   rH   rI   rK   rL   r   r   r   r   r
   r   rO   r@   r@   r@   rA   r-   x  s     r-   )4rF   rZ   Zpygments.lexerr   r   r   r   r   r   r   r	   Zpygments.tokenr
   r   r   r   r   r   r   r   r   r   r   r   Zpygments.lexers.shellr   Zpygments.lexers.datar   __all__r   r   r   r   r   ru   r   r   r   r    r!   r"   r#   r$   r%   r&   r'   r(   r)   r*   r+   r,   r-   r@   r@   r@   rA   <module>   sB    
(8-,*8N=+ .# *//99, )R,