Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/pygments/lexers/ncl.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

14 statements  

1""" 

2 pygments.lexers.ncl 

3 ~~~~~~~~~~~~~~~~~~~ 

4 

5 Lexers for NCAR Command Language. 

6 

7 :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. 

8 :license: BSD, see LICENSE for details. 

9""" 

10 

11import re 

12 

13from pygments.lexer import RegexLexer, include, words 

14from pygments.token import Text, Comment, Operator, Keyword, Name, String, \ 

15 Number, Punctuation 

16 

17__all__ = ['NCLLexer'] 

18 

19 

20class NCLLexer(RegexLexer): 

21 """ 

22 Lexer for NCL code. 

23 """ 

24 name = 'NCL' 

25 aliases = ['ncl'] 

26 filenames = ['*.ncl'] 

27 mimetypes = ['text/ncl'] 

28 url = 'https://www.ncl.ucar.edu' 

29 version_added = '2.2' 

30 

31 flags = re.MULTILINE 

32 

33 tokens = { 

34 'root': [ 

35 (r';.*\n', Comment), 

36 include('strings'), 

37 include('core'), 

38 (r'[a-zA-Z_]\w*', Name), 

39 include('nums'), 

40 (r'[\s]+', Text), 

41 ], 

42 'core': [ 

43 # Statements 

44 (words(( 

45 'begin', 'break', 'continue', 'create', 'defaultapp', 'do', 

46 'else', 'end', 'external', 'exit', 'True', 'False', 'file', 'function', 

47 'getvalues', 'graphic', 'group', 'if', 'list', 'load', 'local', 

48 'new', '_Missing', 'Missing', 'noparent', 'procedure', 

49 'quit', 'QUIT', 'Quit', 'record', 'return', 'setvalues', 'stop', 

50 'then', 'while'), prefix=r'\b', suffix=r'\s*\b'), 

51 Keyword), 

52 

53 # Data Types 

54 (words(( 

55 'ubyte', 'uint', 'uint64', 'ulong', 'string', 'byte', 

56 'character', 'double', 'float', 'integer', 'int64', 'logical', 

57 'long', 'short', 'ushort', 'enumeric', 'numeric', 'snumeric'), 

58 prefix=r'\b', suffix=r'\s*\b'), 

59 Keyword.Type), 

60 

61 # Operators 

62 (r'[\%^*+\-/<>]', Operator), 

63 

64 # punctuation: 

65 (r'[\[\]():@$!&|.,\\{}]', Punctuation), 

66 (r'[=:]', Punctuation), 

67 

68 # Intrinsics 

69 (words(( 

70 'abs', 'acos', 'addfile', 'addfiles', 'all', 'angmom_atm', 'any', 

71 'area_conserve_remap', 'area_hi2lores', 'area_poly_sphere', 

72 'asciiread', 'asciiwrite', 'asin', 'atan', 'atan2', 'attsetvalues', 

73 'avg', 'betainc', 'bin_avg', 'bin_sum', 'bw_bandpass_filter', 

74 'cancor', 'cbinread', 'cbinwrite', 'cd_calendar', 'cd_inv_calendar', 

75 'cdfbin_p', 'cdfbin_pr', 'cdfbin_s', 'cdfbin_xn', 'cdfchi_p', 

76 'cdfchi_x', 'cdfgam_p', 'cdfgam_x', 'cdfnor_p', 'cdfnor_x', 

77 'cdft_p', 'cdft_t', 'ceil', 'center_finite_diff', 

78 'center_finite_diff_n', 'cfftb', 'cfftf', 'cfftf_frq_reorder', 

79 'charactertodouble', 'charactertofloat', 'charactertointeger', 

80 'charactertolong', 'charactertoshort', 'charactertostring', 

81 'chartodouble', 'chartofloat', 'chartoint', 'chartointeger', 

82 'chartolong', 'chartoshort', 'chartostring', 'chiinv', 'clear', 

83 'color_index_to_rgba', 'conform', 'conform_dims', 'cos', 'cosh', 

84 'count_unique_values', 'covcorm', 'covcorm_xy', 'craybinnumrec', 

85 'craybinrecread', 'create_graphic', 'csa1', 'csa1d', 'csa1s', 

86 'csa1x', 'csa1xd', 'csa1xs', 'csa2', 'csa2d', 'csa2l', 'csa2ld', 

87 'csa2ls', 'csa2lx', 'csa2lxd', 'csa2lxs', 'csa2s', 'csa2x', 

88 'csa2xd', 'csa2xs', 'csa3', 'csa3d', 'csa3l', 'csa3ld', 'csa3ls', 

89 'csa3lx', 'csa3lxd', 'csa3lxs', 'csa3s', 'csa3x', 'csa3xd', 

90 'csa3xs', 'csc2s', 'csgetp', 'css2c', 'cssetp', 'cssgrid', 'csstri', 

91 'csvoro', 'cumsum', 'cz2ccm', 'datatondc', 'day_of_week', 

92 'day_of_year', 'days_in_month', 'default_fillvalue', 'delete', 

93 'depth_to_pres', 'destroy', 'determinant', 'dewtemp_trh', 

94 'dgeevx_lapack', 'dim_acumrun_n', 'dim_avg', 'dim_avg_n', 

95 'dim_avg_wgt', 'dim_avg_wgt_n', 'dim_cumsum', 'dim_cumsum_n', 

96 'dim_gamfit_n', 'dim_gbits', 'dim_max', 'dim_max_n', 'dim_median', 

97 'dim_median_n', 'dim_min', 'dim_min_n', 'dim_num', 'dim_num_n', 

98 'dim_numrun_n', 'dim_pqsort', 'dim_pqsort_n', 'dim_product', 

99 'dim_product_n', 'dim_rmsd', 'dim_rmsd_n', 'dim_rmvmean', 

100 'dim_rmvmean_n', 'dim_rmvmed', 'dim_rmvmed_n', 'dim_spi_n', 

101 'dim_standardize', 'dim_standardize_n', 'dim_stat4', 'dim_stat4_n', 

102 'dim_stddev', 'dim_stddev_n', 'dim_sum', 'dim_sum_n', 'dim_sum_wgt', 

103 'dim_sum_wgt_n', 'dim_variance', 'dim_variance_n', 'dimsizes', 

104 'doubletobyte', 'doubletochar', 'doubletocharacter', 

105 'doubletofloat', 'doubletoint', 'doubletointeger', 'doubletolong', 

106 'doubletoshort', 'dpres_hybrid_ccm', 'dpres_plevel', 'draw', 

107 'draw_color_palette', 'dsgetp', 'dsgrid2', 'dsgrid2d', 'dsgrid2s', 

108 'dsgrid3', 'dsgrid3d', 'dsgrid3s', 'dspnt2', 'dspnt2d', 'dspnt2s', 

109 'dspnt3', 'dspnt3d', 'dspnt3s', 'dssetp', 'dtrend', 'dtrend_msg', 

110 'dtrend_msg_n', 'dtrend_n', 'dtrend_quadratic', 

111 'dtrend_quadratic_msg_n', 'dv2uvf', 'dv2uvg', 'dz_height', 

112 'echo_off', 'echo_on', 'eof2data', 'eof_varimax', 'eofcor', 

113 'eofcor_pcmsg', 'eofcor_ts', 'eofcov', 'eofcov_pcmsg', 'eofcov_ts', 

114 'eofunc', 'eofunc_ts', 'eofunc_varimax', 'equiv_sample_size', 'erf', 

115 'erfc', 'esacr', 'esacv', 'esccr', 'esccv', 'escorc', 'escorc_n', 

116 'escovc', 'exit', 'exp', 'exp_tapersh', 'exp_tapersh_wgts', 

117 'exp_tapershC', 'ezfftb', 'ezfftb_n', 'ezfftf', 'ezfftf_n', 

118 'f2fosh', 'f2foshv', 'f2fsh', 'f2fshv', 'f2gsh', 'f2gshv', 'fabs', 

119 'fbindirread', 'fbindirwrite', 'fbinnumrec', 'fbinread', 

120 'fbinrecread', 'fbinrecwrite', 'fbinwrite', 'fft2db', 'fft2df', 

121 'fftshift', 'fileattdef', 'filechunkdimdef', 'filedimdef', 

122 'fileexists', 'filegrpdef', 'filevarattdef', 'filevarchunkdef', 

123 'filevarcompressleveldef', 'filevardef', 'filevardimsizes', 

124 'filwgts_lancos', 'filwgts_lanczos', 'filwgts_normal', 

125 'floattobyte', 'floattochar', 'floattocharacter', 'floattoint', 

126 'floattointeger', 'floattolong', 'floattoshort', 'floor', 

127 'fluxEddy', 'fo2fsh', 'fo2fshv', 'fourier_info', 'frame', 'fspan', 

128 'ftcurv', 'ftcurvd', 'ftcurvi', 'ftcurvp', 'ftcurvpi', 'ftcurvps', 

129 'ftcurvs', 'ftest', 'ftgetp', 'ftkurv', 'ftkurvd', 'ftkurvp', 

130 'ftkurvpd', 'ftsetp', 'ftsurf', 'g2fsh', 'g2fshv', 'g2gsh', 

131 'g2gshv', 'gamma', 'gammainc', 'gaus', 'gaus_lobat', 

132 'gaus_lobat_wgt', 'gc_aangle', 'gc_clkwise', 'gc_dangle', 

133 'gc_inout', 'gc_latlon', 'gc_onarc', 'gc_pnt2gc', 'gc_qarea', 

134 'gc_tarea', 'generate_2d_array', 'get_color_index', 

135 'get_color_rgba', 'get_cpu_time', 'get_isolines', 'get_ncl_version', 

136 'get_script_name', 'get_script_prefix_name', 'get_sphere_radius', 

137 'get_unique_values', 'getbitsone', 'getenv', 'getfiledimsizes', 

138 'getfilegrpnames', 'getfilepath', 'getfilevaratts', 

139 'getfilevarchunkdimsizes', 'getfilevardims', 'getfilevardimsizes', 

140 'getfilevarnames', 'getfilevartypes', 'getvaratts', 'getvardims', 

141 'gradsf', 'gradsg', 'greg2jul', 'grid2triple', 'hlsrgb', 'hsvrgb', 

142 'hydro', 'hyi2hyo', 'idsfft', 'igradsf', 'igradsg', 'ilapsf', 

143 'ilapsg', 'ilapvf', 'ilapvg', 'ind', 'ind_resolve', 'int2p', 

144 'int2p_n', 'integertobyte', 'integertochar', 'integertocharacter', 

145 'integertoshort', 'inttobyte', 'inttochar', 'inttoshort', 

146 'inverse_matrix', 'isatt', 'isbigendian', 'isbyte', 'ischar', 

147 'iscoord', 'isdefined', 'isdim', 'isdimnamed', 'isdouble', 

148 'isenumeric', 'isfile', 'isfilepresent', 'isfilevar', 

149 'isfilevaratt', 'isfilevarcoord', 'isfilevardim', 'isfloat', 

150 'isfunc', 'isgraphic', 'isint', 'isint64', 'isinteger', 

151 'isleapyear', 'islogical', 'islong', 'ismissing', 'isnan_ieee', 

152 'isnumeric', 'ispan', 'isproc', 'isshort', 'issnumeric', 'isstring', 

153 'isubyte', 'isuint', 'isuint64', 'isulong', 'isunlimited', 

154 'isunsigned', 'isushort', 'isvar', 'jul2greg', 'kmeans_as136', 

155 'kolsm2_n', 'kron_product', 'lapsf', 'lapsg', 'lapvf', 'lapvg', 

156 'latlon2utm', 'lclvl', 'lderuvf', 'lderuvg', 'linint1', 'linint1_n', 

157 'linint2', 'linint2_points', 'linmsg', 'linmsg_n', 'linrood_latwgt', 

158 'linrood_wgt', 'list_files', 'list_filevars', 'list_hlus', 

159 'list_procfuncs', 'list_vars', 'ListAppend', 'ListCount', 

160 'ListGetType', 'ListIndex', 'ListIndexFromName', 'ListPop', 

161 'ListPush', 'ListSetType', 'loadscript', 'local_max', 'local_min', 

162 'log', 'log10', 'longtobyte', 'longtochar', 'longtocharacter', 

163 'longtoint', 'longtointeger', 'longtoshort', 'lspoly', 'lspoly_n', 

164 'mask', 'max', 'maxind', 'min', 'minind', 'mixed_layer_depth', 

165 'mixhum_ptd', 'mixhum_ptrh', 'mjo_cross_coh2pha', 

166 'mjo_cross_segment', 'moc_globe_atl', 'monthday', 'natgrid', 

167 'natgridd', 'natgrids', 'ncargpath', 'ncargversion', 'ndctodata', 

168 'ndtooned', 'new', 'NewList', 'ngezlogo', 'nggcog', 'nggetp', 

169 'nglogo', 'ngsetp', 'NhlAddAnnotation', 'NhlAddData', 

170 'NhlAddOverlay', 'NhlAddPrimitive', 'NhlAppGetDefaultParentId', 

171 'NhlChangeWorkstation', 'NhlClassName', 'NhlClearWorkstation', 

172 'NhlDataPolygon', 'NhlDataPolyline', 'NhlDataPolymarker', 

173 'NhlDataToNDC', 'NhlDestroy', 'NhlDraw', 'NhlFrame', 'NhlFreeColor', 

174 'NhlGetBB', 'NhlGetClassResources', 'NhlGetErrorObjectId', 

175 'NhlGetNamedColorIndex', 'NhlGetParentId', 

176 'NhlGetParentWorkstation', 'NhlGetWorkspaceObjectId', 

177 'NhlIsAllocatedColor', 'NhlIsApp', 'NhlIsDataComm', 'NhlIsDataItem', 

178 'NhlIsDataSpec', 'NhlIsTransform', 'NhlIsView', 'NhlIsWorkstation', 

179 'NhlName', 'NhlNDCPolygon', 'NhlNDCPolyline', 'NhlNDCPolymarker', 

180 'NhlNDCToData', 'NhlNewColor', 'NhlNewDashPattern', 'NhlNewMarker', 

181 'NhlPalGetDefined', 'NhlRemoveAnnotation', 'NhlRemoveData', 

182 'NhlRemoveOverlay', 'NhlRemovePrimitive', 'NhlSetColor', 

183 'NhlSetDashPattern', 'NhlSetMarker', 'NhlUpdateData', 

184 'NhlUpdateWorkstation', 'nice_mnmxintvl', 'nngetaspectd', 

185 'nngetaspects', 'nngetp', 'nngetsloped', 'nngetslopes', 'nngetwts', 

186 'nngetwtsd', 'nnpnt', 'nnpntd', 'nnpntend', 'nnpntendd', 

187 'nnpntinit', 'nnpntinitd', 'nnpntinits', 'nnpnts', 'nnsetp', 'num', 

188 'obj_anal_ic', 'omega_ccm', 'onedtond', 'overlay', 'paleo_outline', 

189 'pdfxy_bin', 'poisson_grid_fill', 'pop_remap', 'potmp_insitu_ocn', 

190 'prcwater_dp', 'pres2hybrid', 'pres_hybrid_ccm', 'pres_sigma', 

191 'print', 'print_table', 'printFileVarSummary', 'printVarSummary', 

192 'product', 'pslec', 'pslhor', 'pslhyp', 'qsort', 'rand', 

193 'random_chi', 'random_gamma', 'random_normal', 'random_setallseed', 

194 'random_uniform', 'rcm2points', 'rcm2rgrid', 'rdsstoi', 

195 'read_colormap_file', 'reg_multlin', 'regcoef', 'regCoef_n', 

196 'regline', 'relhum', 'replace_ieeenan', 'reshape', 'reshape_ind', 

197 'rgba_to_color_index', 'rgbhls', 'rgbhsv', 'rgbyiq', 'rgrid2rcm', 

198 'rhomb_trunc', 'rip_cape_2d', 'rip_cape_3d', 'round', 'rtest', 

199 'runave', 'runave_n', 'set_default_fillvalue', 'set_sphere_radius', 

200 'setfileoption', 'sfvp2uvf', 'sfvp2uvg', 'shaec', 'shagc', 

201 'shgetnp', 'shgetp', 'shgrid', 'shorttobyte', 'shorttochar', 

202 'shorttocharacter', 'show_ascii', 'shsec', 'shsetp', 'shsgc', 

203 'shsgc_R42', 'sigma2hybrid', 'simpeq', 'simpne', 'sin', 

204 'sindex_yrmo', 'sinh', 'sizeof', 'sleep', 'smth9', 'snindex_yrmo', 

205 'solve_linsys', 'span_color_indexes', 'span_color_rgba', 

206 'sparse_matrix_mult', 'spcorr', 'spcorr_n', 'specx_anal', 

207 'specxy_anal', 'spei', 'sprintf', 'sprinti', 'sqrt', 'sqsort', 

208 'srand', 'stat2', 'stat4', 'stat_medrng', 'stat_trim', 

209 'status_exit', 'stdatmus_p2tdz', 'stdatmus_z2tdp', 'stddev', 

210 'str_capital', 'str_concat', 'str_fields_count', 'str_get_cols', 

211 'str_get_dq', 'str_get_field', 'str_get_nl', 'str_get_sq', 

212 'str_get_tab', 'str_index_of_substr', 'str_insert', 'str_is_blank', 

213 'str_join', 'str_left_strip', 'str_lower', 'str_match', 

214 'str_match_ic', 'str_match_ic_regex', 'str_match_ind', 

215 'str_match_ind_ic', 'str_match_ind_ic_regex', 'str_match_ind_regex', 

216 'str_match_regex', 'str_right_strip', 'str_split', 

217 'str_split_by_length', 'str_split_csv', 'str_squeeze', 'str_strip', 

218 'str_sub_str', 'str_switch', 'str_upper', 'stringtochar', 

219 'stringtocharacter', 'stringtodouble', 'stringtofloat', 

220 'stringtoint', 'stringtointeger', 'stringtolong', 'stringtoshort', 

221 'strlen', 'student_t', 'sum', 'svd_lapack', 'svdcov', 'svdcov_sv', 

222 'svdstd', 'svdstd_sv', 'system', 'systemfunc', 'tan', 'tanh', 

223 'taper', 'taper_n', 'tdclrs', 'tdctri', 'tdcudp', 'tdcurv', 

224 'tddtri', 'tdez2d', 'tdez3d', 'tdgetp', 'tdgrds', 'tdgrid', 

225 'tdgtrs', 'tdinit', 'tditri', 'tdlbla', 'tdlblp', 'tdlbls', 

226 'tdline', 'tdlndp', 'tdlnpa', 'tdlpdp', 'tdmtri', 'tdotri', 

227 'tdpara', 'tdplch', 'tdprpa', 'tdprpi', 'tdprpt', 'tdsetp', 

228 'tdsort', 'tdstri', 'tdstrs', 'tdttri', 'thornthwaite', 'tobyte', 

229 'tochar', 'todouble', 'tofloat', 'toint', 'toint64', 'tointeger', 

230 'tolong', 'toshort', 'tosigned', 'tostring', 'tostring_with_format', 

231 'totype', 'toubyte', 'touint', 'touint64', 'toulong', 'tounsigned', 

232 'toushort', 'trend_manken', 'tri_trunc', 'triple2grid', 

233 'triple2grid2d', 'trop_wmo', 'ttest', 'typeof', 'undef', 

234 'unique_string', 'update', 'ushorttoint', 'ut_calendar', 

235 'ut_inv_calendar', 'utm2latlon', 'uv2dv_cfd', 'uv2dvf', 'uv2dvg', 

236 'uv2sfvpf', 'uv2sfvpg', 'uv2vr_cfd', 'uv2vrdvf', 'uv2vrdvg', 

237 'uv2vrf', 'uv2vrg', 'v5d_close', 'v5d_create', 'v5d_setLowLev', 

238 'v5d_setUnits', 'v5d_write', 'v5d_write_var', 'variance', 'vhaec', 

239 'vhagc', 'vhsec', 'vhsgc', 'vibeta', 'vinth2p', 'vinth2p_ecmwf', 

240 'vinth2p_ecmwf_nodes', 'vinth2p_nodes', 'vintp2p_ecmwf', 'vr2uvf', 

241 'vr2uvg', 'vrdv2uvf', 'vrdv2uvg', 'wavelet', 'wavelet_default', 

242 'weibull', 'wgt_area_smooth', 'wgt_areaave', 'wgt_areaave2', 

243 'wgt_arearmse', 'wgt_arearmse2', 'wgt_areasum2', 'wgt_runave', 

244 'wgt_runave_n', 'wgt_vert_avg_beta', 'wgt_volave', 'wgt_volave_ccm', 

245 'wgt_volrmse', 'wgt_volrmse_ccm', 'where', 'wk_smooth121', 'wmbarb', 

246 'wmbarbmap', 'wmdrft', 'wmgetp', 'wmlabs', 'wmsetp', 'wmstnm', 

247 'wmvect', 'wmvectmap', 'wmvlbl', 'wrf_avo', 'wrf_cape_2d', 

248 'wrf_cape_3d', 'wrf_dbz', 'wrf_eth', 'wrf_helicity', 'wrf_ij_to_ll', 

249 'wrf_interp_1d', 'wrf_interp_2d_xy', 'wrf_interp_3d_z', 

250 'wrf_latlon_to_ij', 'wrf_ll_to_ij', 'wrf_omega', 'wrf_pvo', 

251 'wrf_rh', 'wrf_slp', 'wrf_smooth_2d', 'wrf_td', 'wrf_tk', 

252 'wrf_updraft_helicity', 'wrf_uvmet', 'wrf_virtual_temp', 

253 'wrf_wetbulb', 'wrf_wps_close_int', 'wrf_wps_open_int', 

254 'wrf_wps_rddata_int', 'wrf_wps_rdhead_int', 'wrf_wps_read_int', 

255 'wrf_wps_write_int', 'write_matrix', 'write_table', 'yiqrgb', 

256 'z2geouv', 'zonal_mpsi', 'addfiles_GetVar', 'advect_variable', 

257 'area_conserve_remap_Wrap', 'area_hi2lores_Wrap', 

258 'array_append_record', 'assignFillValue', 'byte2flt', 

259 'byte2flt_hdf', 'calcDayAnomTLL', 'calcMonAnomLLLT', 

260 'calcMonAnomLLT', 'calcMonAnomTLL', 'calcMonAnomTLLL', 

261 'calculate_monthly_values', 'cd_convert', 'changeCase', 

262 'changeCaseChar', 'clmDayTLL', 'clmDayTLLL', 'clmMon2clmDay', 

263 'clmMonLLLT', 'clmMonLLT', 'clmMonTLL', 'clmMonTLLL', 'closest_val', 

264 'copy_VarAtts', 'copy_VarCoords', 'copy_VarCoords_1', 

265 'copy_VarCoords_2', 'copy_VarMeta', 'copyatt', 'crossp3', 

266 'cshstringtolist', 'cssgrid_Wrap', 'dble2flt', 'decimalPlaces', 

267 'delete_VarAtts', 'dim_avg_n_Wrap', 'dim_avg_wgt_n_Wrap', 

268 'dim_avg_wgt_Wrap', 'dim_avg_Wrap', 'dim_cumsum_n_Wrap', 

269 'dim_cumsum_Wrap', 'dim_max_n_Wrap', 'dim_min_n_Wrap', 

270 'dim_rmsd_n_Wrap', 'dim_rmsd_Wrap', 'dim_rmvmean_n_Wrap', 

271 'dim_rmvmean_Wrap', 'dim_rmvmed_n_Wrap', 'dim_rmvmed_Wrap', 

272 'dim_standardize_n_Wrap', 'dim_standardize_Wrap', 

273 'dim_stddev_n_Wrap', 'dim_stddev_Wrap', 'dim_sum_n_Wrap', 

274 'dim_sum_wgt_n_Wrap', 'dim_sum_wgt_Wrap', 'dim_sum_Wrap', 

275 'dim_variance_n_Wrap', 'dim_variance_Wrap', 'dpres_plevel_Wrap', 

276 'dtrend_leftdim', 'dv2uvF_Wrap', 'dv2uvG_Wrap', 'eof_north', 

277 'eofcor_Wrap', 'eofcov_Wrap', 'eofunc_north', 'eofunc_ts_Wrap', 

278 'eofunc_varimax_reorder', 'eofunc_varimax_Wrap', 'eofunc_Wrap', 

279 'epsZero', 'f2fosh_Wrap', 'f2foshv_Wrap', 'f2fsh_Wrap', 

280 'f2fshv_Wrap', 'f2gsh_Wrap', 'f2gshv_Wrap', 'fbindirSwap', 

281 'fbinseqSwap1', 'fbinseqSwap2', 'flt2dble', 'flt2string', 

282 'fo2fsh_Wrap', 'fo2fshv_Wrap', 'g2fsh_Wrap', 'g2fshv_Wrap', 

283 'g2gsh_Wrap', 'g2gshv_Wrap', 'generate_resample_indices', 

284 'generate_sample_indices', 'generate_unique_indices', 

285 'genNormalDist', 'get1Dindex', 'get1Dindex_Collapse', 

286 'get1Dindex_Exclude', 'get_file_suffix', 'GetFillColor', 

287 'GetFillColorIndex', 'getFillValue', 'getind_latlon2d', 

288 'getVarDimNames', 'getVarFillValue', 'grib_stime2itime', 

289 'hyi2hyo_Wrap', 'ilapsF_Wrap', 'ilapsG_Wrap', 'ind_nearest_coord', 

290 'indStrSubset', 'int2dble', 'int2flt', 'int2p_n_Wrap', 'int2p_Wrap', 

291 'isMonotonic', 'isStrSubset', 'latGau', 'latGauWgt', 'latGlobeF', 

292 'latGlobeFo', 'latRegWgt', 'linint1_n_Wrap', 'linint1_Wrap', 

293 'linint2_points_Wrap', 'linint2_Wrap', 'local_max_1d', 

294 'local_min_1d', 'lonFlip', 'lonGlobeF', 'lonGlobeFo', 'lonPivot', 

295 'merge_levels_sfc', 'mod', 'month_to_annual', 

296 'month_to_annual_weighted', 'month_to_season', 'month_to_season12', 

297 'month_to_seasonN', 'monthly_total_to_daily_mean', 'nameDim', 

298 'natgrid_Wrap', 'NewCosWeight', 'niceLatLon2D', 'NormCosWgtGlobe', 

299 'numAsciiCol', 'numAsciiRow', 'numeric2int', 

300 'obj_anal_ic_deprecated', 'obj_anal_ic_Wrap', 'omega_ccm_driver', 

301 'omega_to_w', 'oneDtostring', 'pack_values', 'pattern_cor', 'pdfx', 

302 'pdfxy', 'pdfxy_conform', 'pot_temp', 'pot_vort_hybrid', 

303 'pot_vort_isobaric', 'pres2hybrid_Wrap', 'print_clock', 

304 'printMinMax', 'quadroots', 'rcm2points_Wrap', 'rcm2rgrid_Wrap', 

305 'readAsciiHead', 'readAsciiTable', 'reg_multlin_stats', 

306 'region_ind', 'regline_stats', 'relhum_ttd', 'replaceSingleChar', 

307 'RGBtoCmap', 'rgrid2rcm_Wrap', 'rho_mwjf', 'rm_single_dims', 

308 'rmAnnCycle1D', 'rmInsufData', 'rmMonAnnCycLLLT', 'rmMonAnnCycLLT', 

309 'rmMonAnnCycTLL', 'runave_n_Wrap', 'runave_Wrap', 'short2flt', 

310 'short2flt_hdf', 'shsgc_R42_Wrap', 'sign_f90', 'sign_matlab', 

311 'smth9_Wrap', 'smthClmDayTLL', 'smthClmDayTLLL', 'SqrtCosWeight', 

312 'stat_dispersion', 'static_stability', 'stdMonLLLT', 'stdMonLLT', 

313 'stdMonTLL', 'stdMonTLLL', 'symMinMaxPlt', 'table_attach_columns', 

314 'table_attach_rows', 'time_to_newtime', 'transpose', 

315 'triple2grid_Wrap', 'ut_convert', 'uv2dvF_Wrap', 'uv2dvG_Wrap', 

316 'uv2vrF_Wrap', 'uv2vrG_Wrap', 'vr2uvF_Wrap', 'vr2uvG_Wrap', 

317 'w_to_omega', 'wallClockElapseTime', 'wave_number_spc', 

318 'wgt_areaave_Wrap', 'wgt_runave_leftdim', 'wgt_runave_n_Wrap', 

319 'wgt_runave_Wrap', 'wgt_vertical_n', 'wind_component', 

320 'wind_direction', 'yyyyddd_to_yyyymmdd', 'yyyymm_time', 

321 'yyyymm_to_yyyyfrac', 'yyyymmdd_time', 'yyyymmdd_to_yyyyddd', 

322 'yyyymmdd_to_yyyyfrac', 'yyyymmddhh_time', 'yyyymmddhh_to_yyyyfrac', 

323 'zonal_mpsi_Wrap', 'zonalAve', 'calendar_decode2', 'cd_string', 

324 'kf_filter', 'run_cor', 'time_axis_labels', 'ut_string', 

325 'wrf_contour', 'wrf_map', 'wrf_map_overlay', 'wrf_map_overlays', 

326 'wrf_map_resources', 'wrf_map_zoom', 'wrf_overlay', 'wrf_overlays', 

327 'wrf_user_getvar', 'wrf_user_ij_to_ll', 'wrf_user_intrp2d', 

328 'wrf_user_intrp3d', 'wrf_user_latlon_to_ij', 'wrf_user_list_times', 

329 'wrf_user_ll_to_ij', 'wrf_user_unstagger', 'wrf_user_vert_interp', 

330 'wrf_vector', 'gsn_add_annotation', 'gsn_add_polygon', 

331 'gsn_add_polyline', 'gsn_add_polymarker', 

332 'gsn_add_shapefile_polygons', 'gsn_add_shapefile_polylines', 

333 'gsn_add_shapefile_polymarkers', 'gsn_add_text', 'gsn_attach_plots', 

334 'gsn_blank_plot', 'gsn_contour', 'gsn_contour_map', 

335 'gsn_contour_shade', 'gsn_coordinates', 'gsn_create_labelbar', 

336 'gsn_create_legend', 'gsn_create_text', 

337 'gsn_csm_attach_zonal_means', 'gsn_csm_blank_plot', 

338 'gsn_csm_contour', 'gsn_csm_contour_map', 'gsn_csm_contour_map_ce', 

339 'gsn_csm_contour_map_overlay', 'gsn_csm_contour_map_polar', 

340 'gsn_csm_hov', 'gsn_csm_lat_time', 'gsn_csm_map', 'gsn_csm_map_ce', 

341 'gsn_csm_map_polar', 'gsn_csm_pres_hgt', 

342 'gsn_csm_pres_hgt_streamline', 'gsn_csm_pres_hgt_vector', 

343 'gsn_csm_streamline', 'gsn_csm_streamline_contour_map', 

344 'gsn_csm_streamline_contour_map_ce', 

345 'gsn_csm_streamline_contour_map_polar', 'gsn_csm_streamline_map', 

346 'gsn_csm_streamline_map_ce', 'gsn_csm_streamline_map_polar', 

347 'gsn_csm_streamline_scalar', 'gsn_csm_streamline_scalar_map', 

348 'gsn_csm_streamline_scalar_map_ce', 

349 'gsn_csm_streamline_scalar_map_polar', 'gsn_csm_time_lat', 

350 'gsn_csm_vector', 'gsn_csm_vector_map', 'gsn_csm_vector_map_ce', 

351 'gsn_csm_vector_map_polar', 'gsn_csm_vector_scalar', 

352 'gsn_csm_vector_scalar_map', 'gsn_csm_vector_scalar_map_ce', 

353 'gsn_csm_vector_scalar_map_polar', 'gsn_csm_x2y', 'gsn_csm_x2y2', 

354 'gsn_csm_xy', 'gsn_csm_xy2', 'gsn_csm_xy3', 'gsn_csm_y', 

355 'gsn_define_colormap', 'gsn_draw_colormap', 'gsn_draw_named_colors', 

356 'gsn_histogram', 'gsn_labelbar_ndc', 'gsn_legend_ndc', 'gsn_map', 

357 'gsn_merge_colormaps', 'gsn_open_wks', 'gsn_panel', 'gsn_polygon', 

358 'gsn_polygon_ndc', 'gsn_polyline', 'gsn_polyline_ndc', 

359 'gsn_polymarker', 'gsn_polymarker_ndc', 'gsn_retrieve_colormap', 

360 'gsn_reverse_colormap', 'gsn_streamline', 'gsn_streamline_map', 

361 'gsn_streamline_scalar', 'gsn_streamline_scalar_map', 'gsn_table', 

362 'gsn_text', 'gsn_text_ndc', 'gsn_vector', 'gsn_vector_map', 

363 'gsn_vector_scalar', 'gsn_vector_scalar_map', 'gsn_xy', 'gsn_y', 

364 'hsv2rgb', 'maximize_output', 'namedcolor2rgb', 'namedcolor2rgba', 

365 'reset_device_coordinates', 'span_named_colors'), prefix=r'\b'), 

366 Name.Builtin), 

367 

368 # Resources 

369 (words(( 

370 'amDataXF', 'amDataYF', 'amJust', 'amOn', 'amOrthogonalPosF', 

371 'amParallelPosF', 'amResizeNotify', 'amSide', 'amTrackData', 

372 'amViewId', 'amZone', 'appDefaultParent', 'appFileSuffix', 

373 'appResources', 'appSysDir', 'appUsrDir', 'caCopyArrays', 

374 'caXArray', 'caXCast', 'caXMaxV', 'caXMinV', 'caXMissingV', 

375 'caYArray', 'caYCast', 'caYMaxV', 'caYMinV', 'caYMissingV', 

376 'cnCellFillEdgeColor', 'cnCellFillMissingValEdgeColor', 

377 'cnConpackParams', 'cnConstFEnableFill', 'cnConstFLabelAngleF', 

378 'cnConstFLabelBackgroundColor', 'cnConstFLabelConstantSpacingF', 

379 'cnConstFLabelFont', 'cnConstFLabelFontAspectF', 

380 'cnConstFLabelFontColor', 'cnConstFLabelFontHeightF', 

381 'cnConstFLabelFontQuality', 'cnConstFLabelFontThicknessF', 

382 'cnConstFLabelFormat', 'cnConstFLabelFuncCode', 'cnConstFLabelJust', 

383 'cnConstFLabelOn', 'cnConstFLabelOrthogonalPosF', 

384 'cnConstFLabelParallelPosF', 'cnConstFLabelPerimColor', 

385 'cnConstFLabelPerimOn', 'cnConstFLabelPerimSpaceF', 

386 'cnConstFLabelPerimThicknessF', 'cnConstFLabelSide', 

387 'cnConstFLabelString', 'cnConstFLabelTextDirection', 

388 'cnConstFLabelZone', 'cnConstFUseInfoLabelRes', 

389 'cnExplicitLabelBarLabelsOn', 'cnExplicitLegendLabelsOn', 

390 'cnExplicitLineLabelsOn', 'cnFillBackgroundColor', 'cnFillColor', 

391 'cnFillColors', 'cnFillDotSizeF', 'cnFillDrawOrder', 'cnFillMode', 

392 'cnFillOn', 'cnFillOpacityF', 'cnFillPalette', 'cnFillPattern', 

393 'cnFillPatterns', 'cnFillScaleF', 'cnFillScales', 'cnFixFillBleed', 

394 'cnGridBoundFillColor', 'cnGridBoundFillPattern', 

395 'cnGridBoundFillScaleF', 'cnGridBoundPerimColor', 

396 'cnGridBoundPerimDashPattern', 'cnGridBoundPerimOn', 

397 'cnGridBoundPerimThicknessF', 'cnHighLabelAngleF', 

398 'cnHighLabelBackgroundColor', 'cnHighLabelConstantSpacingF', 

399 'cnHighLabelCount', 'cnHighLabelFont', 'cnHighLabelFontAspectF', 

400 'cnHighLabelFontColor', 'cnHighLabelFontHeightF', 

401 'cnHighLabelFontQuality', 'cnHighLabelFontThicknessF', 

402 'cnHighLabelFormat', 'cnHighLabelFuncCode', 'cnHighLabelPerimColor', 

403 'cnHighLabelPerimOn', 'cnHighLabelPerimSpaceF', 

404 'cnHighLabelPerimThicknessF', 'cnHighLabelString', 'cnHighLabelsOn', 

405 'cnHighLowLabelOverlapMode', 'cnHighUseLineLabelRes', 

406 'cnInfoLabelAngleF', 'cnInfoLabelBackgroundColor', 

407 'cnInfoLabelConstantSpacingF', 'cnInfoLabelFont', 

408 'cnInfoLabelFontAspectF', 'cnInfoLabelFontColor', 

409 'cnInfoLabelFontHeightF', 'cnInfoLabelFontQuality', 

410 'cnInfoLabelFontThicknessF', 'cnInfoLabelFormat', 

411 'cnInfoLabelFuncCode', 'cnInfoLabelJust', 'cnInfoLabelOn', 

412 'cnInfoLabelOrthogonalPosF', 'cnInfoLabelParallelPosF', 

413 'cnInfoLabelPerimColor', 'cnInfoLabelPerimOn', 

414 'cnInfoLabelPerimSpaceF', 'cnInfoLabelPerimThicknessF', 

415 'cnInfoLabelSide', 'cnInfoLabelString', 'cnInfoLabelTextDirection', 

416 'cnInfoLabelZone', 'cnLabelBarEndLabelsOn', 'cnLabelBarEndStyle', 

417 'cnLabelDrawOrder', 'cnLabelMasking', 'cnLabelScaleFactorF', 

418 'cnLabelScaleValueF', 'cnLabelScalingMode', 'cnLegendLevelFlags', 

419 'cnLevelCount', 'cnLevelFlag', 'cnLevelFlags', 'cnLevelSelectionMode', 

420 'cnLevelSpacingF', 'cnLevels', 'cnLineColor', 'cnLineColors', 

421 'cnLineDashPattern', 'cnLineDashPatterns', 'cnLineDashSegLenF', 

422 'cnLineDrawOrder', 'cnLineLabelAngleF', 'cnLineLabelBackgroundColor', 

423 'cnLineLabelConstantSpacingF', 'cnLineLabelCount', 

424 'cnLineLabelDensityF', 'cnLineLabelFont', 'cnLineLabelFontAspectF', 

425 'cnLineLabelFontColor', 'cnLineLabelFontColors', 

426 'cnLineLabelFontHeightF', 'cnLineLabelFontQuality', 

427 'cnLineLabelFontThicknessF', 'cnLineLabelFormat', 

428 'cnLineLabelFuncCode', 'cnLineLabelInterval', 'cnLineLabelPerimColor', 

429 'cnLineLabelPerimOn', 'cnLineLabelPerimSpaceF', 

430 'cnLineLabelPerimThicknessF', 'cnLineLabelPlacementMode', 

431 'cnLineLabelStrings', 'cnLineLabelsOn', 'cnLinePalette', 

432 'cnLineThicknessF', 'cnLineThicknesses', 'cnLinesOn', 

433 'cnLowLabelAngleF', 'cnLowLabelBackgroundColor', 

434 'cnLowLabelConstantSpacingF', 'cnLowLabelCount', 'cnLowLabelFont', 

435 'cnLowLabelFontAspectF', 'cnLowLabelFontColor', 

436 'cnLowLabelFontHeightF', 'cnLowLabelFontQuality', 

437 'cnLowLabelFontThicknessF', 'cnLowLabelFormat', 'cnLowLabelFuncCode', 

438 'cnLowLabelPerimColor', 'cnLowLabelPerimOn', 'cnLowLabelPerimSpaceF', 

439 'cnLowLabelPerimThicknessF', 'cnLowLabelString', 'cnLowLabelsOn', 

440 'cnLowUseHighLabelRes', 'cnMaxDataValueFormat', 'cnMaxLevelCount', 

441 'cnMaxLevelValF', 'cnMaxPointDistanceF', 'cnMinLevelValF', 

442 'cnMissingValFillColor', 'cnMissingValFillPattern', 

443 'cnMissingValFillScaleF', 'cnMissingValPerimColor', 

444 'cnMissingValPerimDashPattern', 'cnMissingValPerimGridBoundOn', 

445 'cnMissingValPerimOn', 'cnMissingValPerimThicknessF', 

446 'cnMonoFillColor', 'cnMonoFillPattern', 'cnMonoFillScale', 

447 'cnMonoLevelFlag', 'cnMonoLineColor', 'cnMonoLineDashPattern', 

448 'cnMonoLineLabelFontColor', 'cnMonoLineThickness', 'cnNoDataLabelOn', 

449 'cnNoDataLabelString', 'cnOutOfRangeFillColor', 

450 'cnOutOfRangeFillPattern', 'cnOutOfRangeFillScaleF', 

451 'cnOutOfRangePerimColor', 'cnOutOfRangePerimDashPattern', 

452 'cnOutOfRangePerimOn', 'cnOutOfRangePerimThicknessF', 

453 'cnRasterCellSizeF', 'cnRasterMinCellSizeF', 'cnRasterModeOn', 

454 'cnRasterSampleFactorF', 'cnRasterSmoothingOn', 'cnScalarFieldData', 

455 'cnSmoothingDistanceF', 'cnSmoothingOn', 'cnSmoothingTensionF', 

456 'cnSpanFillPalette', 'cnSpanLinePalette', 'ctCopyTables', 

457 'ctXElementSize', 'ctXMaxV', 'ctXMinV', 'ctXMissingV', 'ctXTable', 

458 'ctXTableLengths', 'ctXTableType', 'ctYElementSize', 'ctYMaxV', 

459 'ctYMinV', 'ctYMissingV', 'ctYTable', 'ctYTableLengths', 

460 'ctYTableType', 'dcDelayCompute', 'errBuffer', 

461 'errFileName', 'errFilePtr', 'errLevel', 'errPrint', 'errUnitNumber', 

462 'gsClipOn', 'gsColors', 'gsEdgeColor', 'gsEdgeDashPattern', 

463 'gsEdgeDashSegLenF', 'gsEdgeThicknessF', 'gsEdgesOn', 

464 'gsFillBackgroundColor', 'gsFillColor', 'gsFillDotSizeF', 

465 'gsFillIndex', 'gsFillLineThicknessF', 'gsFillOpacityF', 

466 'gsFillScaleF', 'gsFont', 'gsFontAspectF', 'gsFontColor', 

467 'gsFontHeightF', 'gsFontOpacityF', 'gsFontQuality', 

468 'gsFontThicknessF', 'gsLineColor', 'gsLineDashPattern', 

469 'gsLineDashSegLenF', 'gsLineLabelConstantSpacingF', 'gsLineLabelFont', 

470 'gsLineLabelFontAspectF', 'gsLineLabelFontColor', 

471 'gsLineLabelFontHeightF', 'gsLineLabelFontQuality', 

472 'gsLineLabelFontThicknessF', 'gsLineLabelFuncCode', 

473 'gsLineLabelString', 'gsLineOpacityF', 'gsLineThicknessF', 

474 'gsMarkerColor', 'gsMarkerIndex', 'gsMarkerOpacityF', 'gsMarkerSizeF', 

475 'gsMarkerThicknessF', 'gsSegments', 'gsTextAngleF', 

476 'gsTextConstantSpacingF', 'gsTextDirection', 'gsTextFuncCode', 

477 'gsTextJustification', 'gsnAboveYRefLineBarColors', 

478 'gsnAboveYRefLineBarFillScales', 'gsnAboveYRefLineBarPatterns', 

479 'gsnAboveYRefLineColor', 'gsnAddCyclic', 'gsnAttachBorderOn', 

480 'gsnAttachPlotsXAxis', 'gsnBelowYRefLineBarColors', 

481 'gsnBelowYRefLineBarFillScales', 'gsnBelowYRefLineBarPatterns', 

482 'gsnBelowYRefLineColor', 'gsnBoxMargin', 'gsnCenterString', 

483 'gsnCenterStringFontColor', 'gsnCenterStringFontHeightF', 

484 'gsnCenterStringFuncCode', 'gsnCenterStringOrthogonalPosF', 

485 'gsnCenterStringParallelPosF', 'gsnContourLineThicknessesScale', 

486 'gsnContourNegLineDashPattern', 'gsnContourPosLineDashPattern', 

487 'gsnContourZeroLineThicknessF', 'gsnDebugWriteFileName', 'gsnDraw', 

488 'gsnFrame', 'gsnHistogramBarWidthPercent', 'gsnHistogramBinIntervals', 

489 'gsnHistogramBinMissing', 'gsnHistogramBinWidth', 

490 'gsnHistogramClassIntervals', 'gsnHistogramCompare', 

491 'gsnHistogramComputePercentages', 

492 'gsnHistogramComputePercentagesNoMissing', 

493 'gsnHistogramDiscreteBinValues', 'gsnHistogramDiscreteClassValues', 

494 'gsnHistogramHorizontal', 'gsnHistogramMinMaxBinsOn', 

495 'gsnHistogramNumberOfBins', 'gsnHistogramPercentSign', 

496 'gsnHistogramSelectNiceIntervals', 'gsnLeftString', 

497 'gsnLeftStringFontColor', 'gsnLeftStringFontHeightF', 

498 'gsnLeftStringFuncCode', 'gsnLeftStringOrthogonalPosF', 

499 'gsnLeftStringParallelPosF', 'gsnMajorLatSpacing', 

500 'gsnMajorLonSpacing', 'gsnMaskLambertConformal', 

501 'gsnMaskLambertConformalOutlineOn', 'gsnMaximize', 

502 'gsnMinorLatSpacing', 'gsnMinorLonSpacing', 'gsnPanelBottom', 

503 'gsnPanelCenter', 'gsnPanelDebug', 'gsnPanelFigureStrings', 

504 'gsnPanelFigureStringsBackgroundFillColor', 

505 'gsnPanelFigureStringsFontHeightF', 'gsnPanelFigureStringsJust', 

506 'gsnPanelFigureStringsPerimOn', 'gsnPanelLabelBar', 'gsnPanelLeft', 

507 'gsnPanelMainFont', 'gsnPanelMainFontColor', 

508 'gsnPanelMainFontHeightF', 'gsnPanelMainString', 'gsnPanelRight', 

509 'gsnPanelRowSpec', 'gsnPanelScalePlotIndex', 'gsnPanelTop', 

510 'gsnPanelXF', 'gsnPanelXWhiteSpacePercent', 'gsnPanelYF', 

511 'gsnPanelYWhiteSpacePercent', 'gsnPaperHeight', 'gsnPaperMargin', 

512 'gsnPaperOrientation', 'gsnPaperWidth', 'gsnPolar', 

513 'gsnPolarLabelDistance', 'gsnPolarLabelFont', 

514 'gsnPolarLabelFontHeightF', 'gsnPolarLabelSpacing', 'gsnPolarTime', 

515 'gsnPolarUT', 'gsnRightString', 'gsnRightStringFontColor', 

516 'gsnRightStringFontHeightF', 'gsnRightStringFuncCode', 

517 'gsnRightStringOrthogonalPosF', 'gsnRightStringParallelPosF', 

518 'gsnScalarContour', 'gsnScale', 'gsnShape', 'gsnSpreadColorEnd', 

519 'gsnSpreadColorStart', 'gsnSpreadColors', 'gsnStringFont', 

520 'gsnStringFontColor', 'gsnStringFontHeightF', 'gsnStringFuncCode', 

521 'gsnTickMarksOn', 'gsnXAxisIrregular2Linear', 'gsnXAxisIrregular2Log', 

522 'gsnXRefLine', 'gsnXRefLineColor', 'gsnXRefLineDashPattern', 

523 'gsnXRefLineThicknessF', 'gsnXYAboveFillColors', 'gsnXYBarChart', 

524 'gsnXYBarChartBarWidth', 'gsnXYBarChartColors', 

525 'gsnXYBarChartColors2', 'gsnXYBarChartFillDotSizeF', 

526 'gsnXYBarChartFillLineThicknessF', 'gsnXYBarChartFillOpacityF', 

527 'gsnXYBarChartFillScaleF', 'gsnXYBarChartOutlineOnly', 

528 'gsnXYBarChartOutlineThicknessF', 'gsnXYBarChartPatterns', 

529 'gsnXYBarChartPatterns2', 'gsnXYBelowFillColors', 'gsnXYFillColors', 

530 'gsnXYFillOpacities', 'gsnXYLeftFillColors', 'gsnXYRightFillColors', 

531 'gsnYAxisIrregular2Linear', 'gsnYAxisIrregular2Log', 'gsnYRefLine', 

532 'gsnYRefLineColor', 'gsnYRefLineColors', 'gsnYRefLineDashPattern', 

533 'gsnYRefLineDashPatterns', 'gsnYRefLineThicknessF', 

534 'gsnYRefLineThicknesses', 'gsnZonalMean', 'gsnZonalMeanXMaxF', 

535 'gsnZonalMeanXMinF', 'gsnZonalMeanYRefLine', 'lbAutoManage', 

536 'lbBottomMarginF', 'lbBoxCount', 'lbBoxEndCapStyle', 'lbBoxFractions', 

537 'lbBoxLineColor', 'lbBoxLineDashPattern', 'lbBoxLineDashSegLenF', 

538 'lbBoxLineThicknessF', 'lbBoxLinesOn', 'lbBoxMajorExtentF', 

539 'lbBoxMinorExtentF', 'lbBoxSeparatorLinesOn', 'lbBoxSizing', 

540 'lbFillBackground', 'lbFillColor', 'lbFillColors', 'lbFillDotSizeF', 

541 'lbFillLineThicknessF', 'lbFillPattern', 'lbFillPatterns', 

542 'lbFillScaleF', 'lbFillScales', 'lbJustification', 'lbLabelAlignment', 

543 'lbLabelAngleF', 'lbLabelAutoStride', 'lbLabelBarOn', 

544 'lbLabelConstantSpacingF', 'lbLabelDirection', 'lbLabelFont', 

545 'lbLabelFontAspectF', 'lbLabelFontColor', 'lbLabelFontHeightF', 

546 'lbLabelFontQuality', 'lbLabelFontThicknessF', 'lbLabelFuncCode', 

547 'lbLabelJust', 'lbLabelOffsetF', 'lbLabelPosition', 'lbLabelStride', 

548 'lbLabelStrings', 'lbLabelsOn', 'lbLeftMarginF', 'lbMaxLabelLenF', 

549 'lbMinLabelSpacingF', 'lbMonoFillColor', 'lbMonoFillPattern', 

550 'lbMonoFillScale', 'lbOrientation', 'lbPerimColor', 

551 'lbPerimDashPattern', 'lbPerimDashSegLenF', 'lbPerimFill', 

552 'lbPerimFillColor', 'lbPerimOn', 'lbPerimThicknessF', 

553 'lbRasterFillOn', 'lbRightMarginF', 'lbTitleAngleF', 

554 'lbTitleConstantSpacingF', 'lbTitleDirection', 'lbTitleExtentF', 

555 'lbTitleFont', 'lbTitleFontAspectF', 'lbTitleFontColor', 

556 'lbTitleFontHeightF', 'lbTitleFontQuality', 'lbTitleFontThicknessF', 

557 'lbTitleFuncCode', 'lbTitleJust', 'lbTitleOffsetF', 'lbTitleOn', 

558 'lbTitlePosition', 'lbTitleString', 'lbTopMarginF', 'lgAutoManage', 

559 'lgBottomMarginF', 'lgBoxBackground', 'lgBoxLineColor', 

560 'lgBoxLineDashPattern', 'lgBoxLineDashSegLenF', 'lgBoxLineThicknessF', 

561 'lgBoxLinesOn', 'lgBoxMajorExtentF', 'lgBoxMinorExtentF', 

562 'lgDashIndex', 'lgDashIndexes', 'lgItemCount', 'lgItemOrder', 

563 'lgItemPlacement', 'lgItemPositions', 'lgItemType', 'lgItemTypes', 

564 'lgJustification', 'lgLabelAlignment', 'lgLabelAngleF', 

565 'lgLabelAutoStride', 'lgLabelConstantSpacingF', 'lgLabelDirection', 

566 'lgLabelFont', 'lgLabelFontAspectF', 'lgLabelFontColor', 

567 'lgLabelFontHeightF', 'lgLabelFontQuality', 'lgLabelFontThicknessF', 

568 'lgLabelFuncCode', 'lgLabelJust', 'lgLabelOffsetF', 'lgLabelPosition', 

569 'lgLabelStride', 'lgLabelStrings', 'lgLabelsOn', 'lgLeftMarginF', 

570 'lgLegendOn', 'lgLineColor', 'lgLineColors', 'lgLineDashSegLenF', 

571 'lgLineDashSegLens', 'lgLineLabelConstantSpacingF', 'lgLineLabelFont', 

572 'lgLineLabelFontAspectF', 'lgLineLabelFontColor', 

573 'lgLineLabelFontColors', 'lgLineLabelFontHeightF', 

574 'lgLineLabelFontHeights', 'lgLineLabelFontQuality', 

575 'lgLineLabelFontThicknessF', 'lgLineLabelFuncCode', 

576 'lgLineLabelStrings', 'lgLineLabelsOn', 'lgLineThicknessF', 

577 'lgLineThicknesses', 'lgMarkerColor', 'lgMarkerColors', 

578 'lgMarkerIndex', 'lgMarkerIndexes', 'lgMarkerSizeF', 'lgMarkerSizes', 

579 'lgMarkerThicknessF', 'lgMarkerThicknesses', 'lgMonoDashIndex', 

580 'lgMonoItemType', 'lgMonoLineColor', 'lgMonoLineDashSegLen', 

581 'lgMonoLineLabelFontColor', 'lgMonoLineLabelFontHeight', 

582 'lgMonoLineThickness', 'lgMonoMarkerColor', 'lgMonoMarkerIndex', 

583 'lgMonoMarkerSize', 'lgMonoMarkerThickness', 'lgOrientation', 

584 'lgPerimColor', 'lgPerimDashPattern', 'lgPerimDashSegLenF', 

585 'lgPerimFill', 'lgPerimFillColor', 'lgPerimOn', 'lgPerimThicknessF', 

586 'lgRightMarginF', 'lgTitleAngleF', 'lgTitleConstantSpacingF', 

587 'lgTitleDirection', 'lgTitleExtentF', 'lgTitleFont', 

588 'lgTitleFontAspectF', 'lgTitleFontColor', 'lgTitleFontHeightF', 

589 'lgTitleFontQuality', 'lgTitleFontThicknessF', 'lgTitleFuncCode', 

590 'lgTitleJust', 'lgTitleOffsetF', 'lgTitleOn', 'lgTitlePosition', 

591 'lgTitleString', 'lgTopMarginF', 'mpAreaGroupCount', 

592 'mpAreaMaskingOn', 'mpAreaNames', 'mpAreaTypes', 'mpBottomAngleF', 

593 'mpBottomMapPosF', 'mpBottomNDCF', 'mpBottomNPCF', 

594 'mpBottomPointLatF', 'mpBottomPointLonF', 'mpBottomWindowF', 

595 'mpCenterLatF', 'mpCenterLonF', 'mpCenterRotF', 'mpCountyLineColor', 

596 'mpCountyLineDashPattern', 'mpCountyLineDashSegLenF', 

597 'mpCountyLineThicknessF', 'mpDataBaseVersion', 'mpDataResolution', 

598 'mpDataSetName', 'mpDefaultFillColor', 'mpDefaultFillPattern', 

599 'mpDefaultFillScaleF', 'mpDynamicAreaGroups', 'mpEllipticalBoundary', 

600 'mpFillAreaSpecifiers', 'mpFillBoundarySets', 'mpFillColor', 

601 'mpFillColors', 'mpFillColors-default', 'mpFillDotSizeF', 

602 'mpFillDrawOrder', 'mpFillOn', 'mpFillPatternBackground', 

603 'mpFillPattern', 'mpFillPatterns', 'mpFillPatterns-default', 

604 'mpFillScaleF', 'mpFillScales', 'mpFillScales-default', 

605 'mpFixedAreaGroups', 'mpGeophysicalLineColor', 

606 'mpGeophysicalLineDashPattern', 'mpGeophysicalLineDashSegLenF', 

607 'mpGeophysicalLineThicknessF', 'mpGreatCircleLinesOn', 

608 'mpGridAndLimbDrawOrder', 'mpGridAndLimbOn', 'mpGridLatSpacingF', 

609 'mpGridLineColor', 'mpGridLineDashPattern', 'mpGridLineDashSegLenF', 

610 'mpGridLineThicknessF', 'mpGridLonSpacingF', 'mpGridMaskMode', 

611 'mpGridMaxLatF', 'mpGridPolarLonSpacingF', 'mpGridSpacingF', 

612 'mpInlandWaterFillColor', 'mpInlandWaterFillPattern', 

613 'mpInlandWaterFillScaleF', 'mpLabelDrawOrder', 'mpLabelFontColor', 

614 'mpLabelFontHeightF', 'mpLabelsOn', 'mpLambertMeridianF', 

615 'mpLambertParallel1F', 'mpLambertParallel2F', 'mpLandFillColor', 

616 'mpLandFillPattern', 'mpLandFillScaleF', 'mpLeftAngleF', 

617 'mpLeftCornerLatF', 'mpLeftCornerLonF', 'mpLeftMapPosF', 

618 'mpLeftNDCF', 'mpLeftNPCF', 'mpLeftPointLatF', 

619 'mpLeftPointLonF', 'mpLeftWindowF', 'mpLimbLineColor', 

620 'mpLimbLineDashPattern', 'mpLimbLineDashSegLenF', 

621 'mpLimbLineThicknessF', 'mpLimitMode', 'mpMaskAreaSpecifiers', 

622 'mpMaskOutlineSpecifiers', 'mpMaxLatF', 'mpMaxLonF', 

623 'mpMinLatF', 'mpMinLonF', 'mpMonoFillColor', 'mpMonoFillPattern', 

624 'mpMonoFillScale', 'mpNationalLineColor', 'mpNationalLineDashPattern', 

625 'mpNationalLineThicknessF', 'mpOceanFillColor', 'mpOceanFillPattern', 

626 'mpOceanFillScaleF', 'mpOutlineBoundarySets', 'mpOutlineDrawOrder', 

627 'mpOutlineMaskingOn', 'mpOutlineOn', 'mpOutlineSpecifiers', 

628 'mpPerimDrawOrder', 'mpPerimLineColor', 'mpPerimLineDashPattern', 

629 'mpPerimLineDashSegLenF', 'mpPerimLineThicknessF', 'mpPerimOn', 

630 'mpPolyMode', 'mpProjection', 'mpProvincialLineColor', 

631 'mpProvincialLineDashPattern', 'mpProvincialLineDashSegLenF', 

632 'mpProvincialLineThicknessF', 'mpRelativeCenterLat', 

633 'mpRelativeCenterLon', 'mpRightAngleF', 'mpRightCornerLatF', 

634 'mpRightCornerLonF', 'mpRightMapPosF', 'mpRightNDCF', 

635 'mpRightNPCF', 'mpRightPointLatF', 'mpRightPointLonF', 

636 'mpRightWindowF', 'mpSatelliteAngle1F', 'mpSatelliteAngle2F', 

637 'mpSatelliteDistF', 'mpShapeMode', 'mpSpecifiedFillColors', 

638 'mpSpecifiedFillDirectIndexing', 'mpSpecifiedFillPatterns', 

639 'mpSpecifiedFillPriority', 'mpSpecifiedFillScales', 

640 'mpTopAngleF', 'mpTopMapPosF', 'mpTopNDCF', 'mpTopNPCF', 

641 'mpTopPointLatF', 'mpTopPointLonF', 'mpTopWindowF', 

642 'mpUSStateLineColor', 'mpUSStateLineDashPattern', 

643 'mpUSStateLineDashSegLenF', 'mpUSStateLineThicknessF', 

644 'pmAnnoManagers', 'pmAnnoViews', 'pmLabelBarDisplayMode', 

645 'pmLabelBarHeightF', 'pmLabelBarKeepAspect', 'pmLabelBarOrthogonalPosF', 

646 'pmLabelBarParallelPosF', 'pmLabelBarSide', 'pmLabelBarWidthF', 

647 'pmLabelBarZone', 'pmLegendDisplayMode', 'pmLegendHeightF', 

648 'pmLegendKeepAspect', 'pmLegendOrthogonalPosF', 

649 'pmLegendParallelPosF', 'pmLegendSide', 'pmLegendWidthF', 

650 'pmLegendZone', 'pmOverlaySequenceIds', 'pmTickMarkDisplayMode', 

651 'pmTickMarkZone', 'pmTitleDisplayMode', 'pmTitleZone', 

652 'prGraphicStyle', 'prPolyType', 'prXArray', 'prYArray', 

653 'sfCopyData', 'sfDataArray', 'sfDataMaxV', 'sfDataMinV', 

654 'sfElementNodes', 'sfExchangeDimensions', 'sfFirstNodeIndex', 

655 'sfMissingValueV', 'sfXArray', 'sfXCActualEndF', 'sfXCActualStartF', 

656 'sfXCEndIndex', 'sfXCEndSubsetV', 'sfXCEndV', 'sfXCStartIndex', 

657 'sfXCStartSubsetV', 'sfXCStartV', 'sfXCStride', 'sfXCellBounds', 

658 'sfYArray', 'sfYCActualEndF', 'sfYCActualStartF', 'sfYCEndIndex', 

659 'sfYCEndSubsetV', 'sfYCEndV', 'sfYCStartIndex', 'sfYCStartSubsetV', 

660 'sfYCStartV', 'sfYCStride', 'sfYCellBounds', 'stArrowLengthF', 

661 'stArrowStride', 'stCrossoverCheckCount', 

662 'stExplicitLabelBarLabelsOn', 'stLabelBarEndLabelsOn', 

663 'stLabelFormat', 'stLengthCheckCount', 'stLevelColors', 

664 'stLevelCount', 'stLevelPalette', 'stLevelSelectionMode', 

665 'stLevelSpacingF', 'stLevels', 'stLineColor', 'stLineOpacityF', 

666 'stLineStartStride', 'stLineThicknessF', 'stMapDirection', 

667 'stMaxLevelCount', 'stMaxLevelValF', 'stMinArrowSpacingF', 

668 'stMinDistanceF', 'stMinLevelValF', 'stMinLineSpacingF', 

669 'stMinStepFactorF', 'stMonoLineColor', 'stNoDataLabelOn', 

670 'stNoDataLabelString', 'stScalarFieldData', 'stScalarMissingValColor', 

671 'stSpanLevelPalette', 'stStepSizeF', 'stStreamlineDrawOrder', 

672 'stUseScalarArray', 'stVectorFieldData', 'stZeroFLabelAngleF', 

673 'stZeroFLabelBackgroundColor', 'stZeroFLabelConstantSpacingF', 

674 'stZeroFLabelFont', 'stZeroFLabelFontAspectF', 

675 'stZeroFLabelFontColor', 'stZeroFLabelFontHeightF', 

676 'stZeroFLabelFontQuality', 'stZeroFLabelFontThicknessF', 

677 'stZeroFLabelFuncCode', 'stZeroFLabelJust', 'stZeroFLabelOn', 

678 'stZeroFLabelOrthogonalPosF', 'stZeroFLabelParallelPosF', 

679 'stZeroFLabelPerimColor', 'stZeroFLabelPerimOn', 

680 'stZeroFLabelPerimSpaceF', 'stZeroFLabelPerimThicknessF', 

681 'stZeroFLabelSide', 'stZeroFLabelString', 'stZeroFLabelTextDirection', 

682 'stZeroFLabelZone', 'tfDoNDCOverlay', 'tfPlotManagerOn', 

683 'tfPolyDrawList', 'tfPolyDrawOrder', 'tiDeltaF', 'tiMainAngleF', 

684 'tiMainConstantSpacingF', 'tiMainDirection', 'tiMainFont', 

685 'tiMainFontAspectF', 'tiMainFontColor', 'tiMainFontHeightF', 

686 'tiMainFontQuality', 'tiMainFontThicknessF', 'tiMainFuncCode', 

687 'tiMainJust', 'tiMainOffsetXF', 'tiMainOffsetYF', 'tiMainOn', 

688 'tiMainPosition', 'tiMainSide', 'tiMainString', 'tiUseMainAttributes', 

689 'tiXAxisAngleF', 'tiXAxisConstantSpacingF', 'tiXAxisDirection', 

690 'tiXAxisFont', 'tiXAxisFontAspectF', 'tiXAxisFontColor', 

691 'tiXAxisFontHeightF', 'tiXAxisFontQuality', 'tiXAxisFontThicknessF', 

692 'tiXAxisFuncCode', 'tiXAxisJust', 'tiXAxisOffsetXF', 

693 'tiXAxisOffsetYF', 'tiXAxisOn', 'tiXAxisPosition', 'tiXAxisSide', 

694 'tiXAxisString', 'tiYAxisAngleF', 'tiYAxisConstantSpacingF', 

695 'tiYAxisDirection', 'tiYAxisFont', 'tiYAxisFontAspectF', 

696 'tiYAxisFontColor', 'tiYAxisFontHeightF', 'tiYAxisFontQuality', 

697 'tiYAxisFontThicknessF', 'tiYAxisFuncCode', 'tiYAxisJust', 

698 'tiYAxisOffsetXF', 'tiYAxisOffsetYF', 'tiYAxisOn', 'tiYAxisPosition', 

699 'tiYAxisSide', 'tiYAxisString', 'tmBorderLineColor', 

700 'tmBorderThicknessF', 'tmEqualizeXYSizes', 'tmLabelAutoStride', 

701 'tmSciNoteCutoff', 'tmXBAutoPrecision', 'tmXBBorderOn', 

702 'tmXBDataLeftF', 'tmXBDataRightF', 'tmXBFormat', 'tmXBIrrTensionF', 

703 'tmXBIrregularPoints', 'tmXBLabelAngleF', 'tmXBLabelConstantSpacingF', 

704 'tmXBLabelDeltaF', 'tmXBLabelDirection', 'tmXBLabelFont', 

705 'tmXBLabelFontAspectF', 'tmXBLabelFontColor', 'tmXBLabelFontHeightF', 

706 'tmXBLabelFontQuality', 'tmXBLabelFontThicknessF', 

707 'tmXBLabelFuncCode', 'tmXBLabelJust', 'tmXBLabelStride', 'tmXBLabels', 

708 'tmXBLabelsOn', 'tmXBMajorLengthF', 'tmXBMajorLineColor', 

709 'tmXBMajorOutwardLengthF', 'tmXBMajorThicknessF', 'tmXBMaxLabelLenF', 

710 'tmXBMaxTicks', 'tmXBMinLabelSpacingF', 'tmXBMinorLengthF', 

711 'tmXBMinorLineColor', 'tmXBMinorOn', 'tmXBMinorOutwardLengthF', 

712 'tmXBMinorPerMajor', 'tmXBMinorThicknessF', 'tmXBMinorValues', 

713 'tmXBMode', 'tmXBOn', 'tmXBPrecision', 'tmXBStyle', 'tmXBTickEndF', 

714 'tmXBTickSpacingF', 'tmXBTickStartF', 'tmXBValues', 'tmXMajorGrid', 

715 'tmXMajorGridLineColor', 'tmXMajorGridLineDashPattern', 

716 'tmXMajorGridThicknessF', 'tmXMinorGrid', 'tmXMinorGridLineColor', 

717 'tmXMinorGridLineDashPattern', 'tmXMinorGridThicknessF', 

718 'tmXTAutoPrecision', 'tmXTBorderOn', 'tmXTDataLeftF', 

719 'tmXTDataRightF', 'tmXTFormat', 'tmXTIrrTensionF', 

720 'tmXTIrregularPoints', 'tmXTLabelAngleF', 'tmXTLabelConstantSpacingF', 

721 'tmXTLabelDeltaF', 'tmXTLabelDirection', 'tmXTLabelFont', 

722 'tmXTLabelFontAspectF', 'tmXTLabelFontColor', 'tmXTLabelFontHeightF', 

723 'tmXTLabelFontQuality', 'tmXTLabelFontThicknessF', 

724 'tmXTLabelFuncCode', 'tmXTLabelJust', 'tmXTLabelStride', 'tmXTLabels', 

725 'tmXTLabelsOn', 'tmXTMajorLengthF', 'tmXTMajorLineColor', 

726 'tmXTMajorOutwardLengthF', 'tmXTMajorThicknessF', 'tmXTMaxLabelLenF', 

727 'tmXTMaxTicks', 'tmXTMinLabelSpacingF', 'tmXTMinorLengthF', 

728 'tmXTMinorLineColor', 'tmXTMinorOn', 'tmXTMinorOutwardLengthF', 

729 'tmXTMinorPerMajor', 'tmXTMinorThicknessF', 'tmXTMinorValues', 

730 'tmXTMode', 'tmXTOn', 'tmXTPrecision', 'tmXTStyle', 'tmXTTickEndF', 

731 'tmXTTickSpacingF', 'tmXTTickStartF', 'tmXTValues', 'tmXUseBottom', 

732 'tmYLAutoPrecision', 'tmYLBorderOn', 'tmYLDataBottomF', 

733 'tmYLDataTopF', 'tmYLFormat', 'tmYLIrrTensionF', 

734 'tmYLIrregularPoints', 'tmYLLabelAngleF', 'tmYLLabelConstantSpacingF', 

735 'tmYLLabelDeltaF', 'tmYLLabelDirection', 'tmYLLabelFont', 

736 'tmYLLabelFontAspectF', 'tmYLLabelFontColor', 'tmYLLabelFontHeightF', 

737 'tmYLLabelFontQuality', 'tmYLLabelFontThicknessF', 

738 'tmYLLabelFuncCode', 'tmYLLabelJust', 'tmYLLabelStride', 'tmYLLabels', 

739 'tmYLLabelsOn', 'tmYLMajorLengthF', 'tmYLMajorLineColor', 

740 'tmYLMajorOutwardLengthF', 'tmYLMajorThicknessF', 'tmYLMaxLabelLenF', 

741 'tmYLMaxTicks', 'tmYLMinLabelSpacingF', 'tmYLMinorLengthF', 

742 'tmYLMinorLineColor', 'tmYLMinorOn', 'tmYLMinorOutwardLengthF', 

743 'tmYLMinorPerMajor', 'tmYLMinorThicknessF', 'tmYLMinorValues', 

744 'tmYLMode', 'tmYLOn', 'tmYLPrecision', 'tmYLStyle', 'tmYLTickEndF', 

745 'tmYLTickSpacingF', 'tmYLTickStartF', 'tmYLValues', 'tmYMajorGrid', 

746 'tmYMajorGridLineColor', 'tmYMajorGridLineDashPattern', 

747 'tmYMajorGridThicknessF', 'tmYMinorGrid', 'tmYMinorGridLineColor', 

748 'tmYMinorGridLineDashPattern', 'tmYMinorGridThicknessF', 

749 'tmYRAutoPrecision', 'tmYRBorderOn', 'tmYRDataBottomF', 

750 'tmYRDataTopF', 'tmYRFormat', 'tmYRIrrTensionF', 

751 'tmYRIrregularPoints', 'tmYRLabelAngleF', 'tmYRLabelConstantSpacingF', 

752 'tmYRLabelDeltaF', 'tmYRLabelDirection', 'tmYRLabelFont', 

753 'tmYRLabelFontAspectF', 'tmYRLabelFontColor', 'tmYRLabelFontHeightF', 

754 'tmYRLabelFontQuality', 'tmYRLabelFontThicknessF', 

755 'tmYRLabelFuncCode', 'tmYRLabelJust', 'tmYRLabelStride', 'tmYRLabels', 

756 'tmYRLabelsOn', 'tmYRMajorLengthF', 'tmYRMajorLineColor', 

757 'tmYRMajorOutwardLengthF', 'tmYRMajorThicknessF', 'tmYRMaxLabelLenF', 

758 'tmYRMaxTicks', 'tmYRMinLabelSpacingF', 'tmYRMinorLengthF', 

759 'tmYRMinorLineColor', 'tmYRMinorOn', 'tmYRMinorOutwardLengthF', 

760 'tmYRMinorPerMajor', 'tmYRMinorThicknessF', 'tmYRMinorValues', 

761 'tmYRMode', 'tmYROn', 'tmYRPrecision', 'tmYRStyle', 'tmYRTickEndF', 

762 'tmYRTickSpacingF', 'tmYRTickStartF', 'tmYRValues', 'tmYUseLeft', 

763 'trGridType', 'trLineInterpolationOn', 

764 'trXAxisType', 'trXCoordPoints', 'trXInterPoints', 'trXLog', 

765 'trXMaxF', 'trXMinF', 'trXReverse', 'trXSamples', 'trXTensionF', 

766 'trYAxisType', 'trYCoordPoints', 'trYInterPoints', 'trYLog', 

767 'trYMaxF', 'trYMinF', 'trYReverse', 'trYSamples', 'trYTensionF', 

768 'txAngleF', 'txBackgroundFillColor', 'txConstantSpacingF', 'txDirection', 

769 'txFont', 'HLU-Fonts', 'txFontAspectF', 'txFontColor', 

770 'txFontHeightF', 'txFontOpacityF', 'txFontQuality', 

771 'txFontThicknessF', 'txFuncCode', 'txJust', 'txPerimColor', 

772 'txPerimDashLengthF', 'txPerimDashPattern', 'txPerimOn', 

773 'txPerimSpaceF', 'txPerimThicknessF', 'txPosXF', 'txPosYF', 

774 'txString', 'vcExplicitLabelBarLabelsOn', 'vcFillArrowEdgeColor', 

775 'vcFillArrowEdgeThicknessF', 'vcFillArrowFillColor', 

776 'vcFillArrowHeadInteriorXF', 'vcFillArrowHeadMinFracXF', 

777 'vcFillArrowHeadMinFracYF', 'vcFillArrowHeadXF', 'vcFillArrowHeadYF', 

778 'vcFillArrowMinFracWidthF', 'vcFillArrowWidthF', 'vcFillArrowsOn', 

779 'vcFillOverEdge', 'vcGlyphOpacityF', 'vcGlyphStyle', 

780 'vcLabelBarEndLabelsOn', 'vcLabelFontColor', 'vcLabelFontHeightF', 

781 'vcLabelsOn', 'vcLabelsUseVectorColor', 'vcLevelColors', 

782 'vcLevelCount', 'vcLevelPalette', 'vcLevelSelectionMode', 

783 'vcLevelSpacingF', 'vcLevels', 'vcLineArrowColor', 

784 'vcLineArrowHeadMaxSizeF', 'vcLineArrowHeadMinSizeF', 

785 'vcLineArrowThicknessF', 'vcMagnitudeFormat', 

786 'vcMagnitudeScaleFactorF', 'vcMagnitudeScaleValueF', 

787 'vcMagnitudeScalingMode', 'vcMapDirection', 'vcMaxLevelCount', 

788 'vcMaxLevelValF', 'vcMaxMagnitudeF', 'vcMinAnnoAngleF', 

789 'vcMinAnnoArrowAngleF', 'vcMinAnnoArrowEdgeColor', 

790 'vcMinAnnoArrowFillColor', 'vcMinAnnoArrowLineColor', 

791 'vcMinAnnoArrowMinOffsetF', 'vcMinAnnoArrowSpaceF', 

792 'vcMinAnnoArrowUseVecColor', 'vcMinAnnoBackgroundColor', 

793 'vcMinAnnoConstantSpacingF', 'vcMinAnnoExplicitMagnitudeF', 

794 'vcMinAnnoFont', 'vcMinAnnoFontAspectF', 'vcMinAnnoFontColor', 

795 'vcMinAnnoFontHeightF', 'vcMinAnnoFontQuality', 

796 'vcMinAnnoFontThicknessF', 'vcMinAnnoFuncCode', 'vcMinAnnoJust', 

797 'vcMinAnnoOn', 'vcMinAnnoOrientation', 'vcMinAnnoOrthogonalPosF', 

798 'vcMinAnnoParallelPosF', 'vcMinAnnoPerimColor', 'vcMinAnnoPerimOn', 

799 'vcMinAnnoPerimSpaceF', 'vcMinAnnoPerimThicknessF', 'vcMinAnnoSide', 

800 'vcMinAnnoString1', 'vcMinAnnoString1On', 'vcMinAnnoString2', 

801 'vcMinAnnoString2On', 'vcMinAnnoTextDirection', 'vcMinAnnoZone', 

802 'vcMinDistanceF', 'vcMinFracLengthF', 'vcMinLevelValF', 

803 'vcMinMagnitudeF', 'vcMonoFillArrowEdgeColor', 

804 'vcMonoFillArrowFillColor', 'vcMonoLineArrowColor', 

805 'vcMonoWindBarbColor', 'vcNoDataLabelOn', 'vcNoDataLabelString', 

806 'vcPositionMode', 'vcRefAnnoAngleF', 'vcRefAnnoArrowAngleF', 

807 'vcRefAnnoArrowEdgeColor', 'vcRefAnnoArrowFillColor', 

808 'vcRefAnnoArrowLineColor', 'vcRefAnnoArrowMinOffsetF', 

809 'vcRefAnnoArrowSpaceF', 'vcRefAnnoArrowUseVecColor', 

810 'vcRefAnnoBackgroundColor', 'vcRefAnnoConstantSpacingF', 

811 'vcRefAnnoExplicitMagnitudeF', 'vcRefAnnoFont', 

812 'vcRefAnnoFontAspectF', 'vcRefAnnoFontColor', 'vcRefAnnoFontHeightF', 

813 'vcRefAnnoFontQuality', 'vcRefAnnoFontThicknessF', 

814 'vcRefAnnoFuncCode', 'vcRefAnnoJust', 'vcRefAnnoOn', 

815 'vcRefAnnoOrientation', 'vcRefAnnoOrthogonalPosF', 

816 'vcRefAnnoParallelPosF', 'vcRefAnnoPerimColor', 'vcRefAnnoPerimOn', 

817 'vcRefAnnoPerimSpaceF', 'vcRefAnnoPerimThicknessF', 'vcRefAnnoSide', 

818 'vcRefAnnoString1', 'vcRefAnnoString1On', 'vcRefAnnoString2', 

819 'vcRefAnnoString2On', 'vcRefAnnoTextDirection', 'vcRefAnnoZone', 

820 'vcRefLengthF', 'vcRefMagnitudeF', 'vcScalarFieldData', 

821 'vcScalarMissingValColor', 'vcScalarValueFormat', 

822 'vcScalarValueScaleFactorF', 'vcScalarValueScaleValueF', 

823 'vcScalarValueScalingMode', 'vcSpanLevelPalette', 'vcUseRefAnnoRes', 

824 'vcUseScalarArray', 'vcVectorDrawOrder', 'vcVectorFieldData', 

825 'vcWindBarbCalmCircleSizeF', 'vcWindBarbColor', 

826 'vcWindBarbLineThicknessF', 'vcWindBarbScaleFactorF', 

827 'vcWindBarbTickAngleF', 'vcWindBarbTickLengthF', 

828 'vcWindBarbTickSpacingF', 'vcZeroFLabelAngleF', 

829 'vcZeroFLabelBackgroundColor', 'vcZeroFLabelConstantSpacingF', 

830 'vcZeroFLabelFont', 'vcZeroFLabelFontAspectF', 

831 'vcZeroFLabelFontColor', 'vcZeroFLabelFontHeightF', 

832 'vcZeroFLabelFontQuality', 'vcZeroFLabelFontThicknessF', 

833 'vcZeroFLabelFuncCode', 'vcZeroFLabelJust', 'vcZeroFLabelOn', 

834 'vcZeroFLabelOrthogonalPosF', 'vcZeroFLabelParallelPosF', 

835 'vcZeroFLabelPerimColor', 'vcZeroFLabelPerimOn', 

836 'vcZeroFLabelPerimSpaceF', 'vcZeroFLabelPerimThicknessF', 

837 'vcZeroFLabelSide', 'vcZeroFLabelString', 'vcZeroFLabelTextDirection', 

838 'vcZeroFLabelZone', 'vfCopyData', 'vfDataArray', 

839 'vfExchangeDimensions', 'vfExchangeUVData', 'vfMagMaxV', 'vfMagMinV', 

840 'vfMissingUValueV', 'vfMissingVValueV', 'vfPolarData', 

841 'vfSingleMissingValue', 'vfUDataArray', 'vfUMaxV', 'vfUMinV', 

842 'vfVDataArray', 'vfVMaxV', 'vfVMinV', 'vfXArray', 'vfXCActualEndF', 

843 'vfXCActualStartF', 'vfXCEndIndex', 'vfXCEndSubsetV', 'vfXCEndV', 

844 'vfXCStartIndex', 'vfXCStartSubsetV', 'vfXCStartV', 'vfXCStride', 

845 'vfYArray', 'vfYCActualEndF', 'vfYCActualStartF', 'vfYCEndIndex', 

846 'vfYCEndSubsetV', 'vfYCEndV', 'vfYCStartIndex', 'vfYCStartSubsetV', 

847 'vfYCStartV', 'vfYCStride', 'vpAnnoManagerId', 'vpClipOn', 

848 'vpHeightF', 'vpKeepAspect', 'vpOn', 'vpUseSegments', 'vpWidthF', 

849 'vpXF', 'vpYF', 'wkAntiAlias', 'wkBackgroundColor', 'wkBackgroundOpacityF', 

850 'wkColorMapLen', 'wkColorMap', 'wkColorModel', 'wkDashTableLength', 

851 'wkDefGraphicStyleId', 'wkDeviceLowerX', 'wkDeviceLowerY', 

852 'wkDeviceUpperX', 'wkDeviceUpperY', 'wkFileName', 'wkFillTableLength', 

853 'wkForegroundColor', 'wkFormat', 'wkFullBackground', 'wkGksWorkId', 

854 'wkHeight', 'wkMarkerTableLength', 'wkMetaName', 'wkOrientation', 

855 'wkPDFFileName', 'wkPDFFormat', 'wkPDFResolution', 'wkPSFileName', 

856 'wkPSFormat', 'wkPSResolution', 'wkPaperHeightF', 'wkPaperSize', 

857 'wkPaperWidthF', 'wkPause', 'wkTopLevelViews', 'wkViews', 

858 'wkVisualType', 'wkWidth', 'wkWindowId', 'wkXColorMode', 'wsCurrentSize', 

859 'wsMaximumSize', 'wsThresholdSize', 'xyComputeXMax', 

860 'xyComputeXMin', 'xyComputeYMax', 'xyComputeYMin', 'xyCoordData', 

861 'xyCoordDataSpec', 'xyCurveDrawOrder', 'xyDashPattern', 

862 'xyDashPatterns', 'xyExplicitLabels', 'xyExplicitLegendLabels', 

863 'xyLabelMode', 'xyLineColor', 'xyLineColors', 'xyLineDashSegLenF', 

864 'xyLineLabelConstantSpacingF', 'xyLineLabelFont', 

865 'xyLineLabelFontAspectF', 'xyLineLabelFontColor', 

866 'xyLineLabelFontColors', 'xyLineLabelFontHeightF', 

867 'xyLineLabelFontQuality', 'xyLineLabelFontThicknessF', 

868 'xyLineLabelFuncCode', 'xyLineThicknessF', 'xyLineThicknesses', 

869 'xyMarkLineMode', 'xyMarkLineModes', 'xyMarker', 'xyMarkerColor', 

870 'xyMarkerColors', 'xyMarkerSizeF', 'xyMarkerSizes', 

871 'xyMarkerThicknessF', 'xyMarkerThicknesses', 'xyMarkers', 

872 'xyMonoDashPattern', 'xyMonoLineColor', 'xyMonoLineLabelFontColor', 

873 'xyMonoLineThickness', 'xyMonoMarkLineMode', 'xyMonoMarker', 

874 'xyMonoMarkerColor', 'xyMonoMarkerSize', 'xyMonoMarkerThickness', 

875 'xyXIrrTensionF', 'xyXIrregularPoints', 'xyXStyle', 'xyYIrrTensionF', 

876 'xyYIrregularPoints', 'xyYStyle'), prefix=r'\b'), 

877 Name.Builtin), 

878 

879 # Booleans 

880 (r'\.(True|False)\.', Name.Builtin), 

881 # Comparing Operators 

882 (r'\.(eq|ne|lt|le|gt|ge|not|and|or|xor)\.', Operator.Word), 

883 ], 

884 

885 'strings': [ 

886 (r'(?s)"(\\\\|\\[0-7]+|\\.|[^"\\])*"', String.Double), 

887 ], 

888 

889 'nums': [ 

890 (r'\d+(?![.e])(_[a-z]\w+)?', Number.Integer), 

891 (r'[+-]?\d*\.\d+(e[-+]?\d+)?(_[a-z]\w+)?', Number.Float), 

892 (r'[+-]?\d+\.\d*(e[-+]?\d+)?(_[a-z]\w+)?', Number.Float), 

893 ], 

894 }