wandb 0.19.1rc1__py3-none-musllinux_1_2_aarch64.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (822) hide show
  1. package_readme.md +97 -0
  2. wandb/__init__.py +252 -0
  3. wandb/__init__.pyi +1197 -0
  4. wandb/__main__.py +3 -0
  5. wandb/_globals.py +19 -0
  6. wandb/agents/__init__.py +0 -0
  7. wandb/agents/pyagent.py +363 -0
  8. wandb/analytics/__init__.py +3 -0
  9. wandb/analytics/sentry.py +263 -0
  10. wandb/apis/__init__.py +48 -0
  11. wandb/apis/attrs.py +51 -0
  12. wandb/apis/importers/__init__.py +1 -0
  13. wandb/apis/importers/internals/internal.py +385 -0
  14. wandb/apis/importers/internals/protocols.py +103 -0
  15. wandb/apis/importers/internals/util.py +78 -0
  16. wandb/apis/importers/mlflow.py +254 -0
  17. wandb/apis/importers/validation.py +108 -0
  18. wandb/apis/importers/wandb.py +1603 -0
  19. wandb/apis/internal.py +232 -0
  20. wandb/apis/normalize.py +73 -0
  21. wandb/apis/paginator.py +81 -0
  22. wandb/apis/public/__init__.py +34 -0
  23. wandb/apis/public/api.py +1387 -0
  24. wandb/apis/public/artifacts.py +1095 -0
  25. wandb/apis/public/const.py +4 -0
  26. wandb/apis/public/files.py +263 -0
  27. wandb/apis/public/history.py +149 -0
  28. wandb/apis/public/jobs.py +653 -0
  29. wandb/apis/public/projects.py +154 -0
  30. wandb/apis/public/query_generator.py +166 -0
  31. wandb/apis/public/reports.py +458 -0
  32. wandb/apis/public/runs.py +1012 -0
  33. wandb/apis/public/sweeps.py +240 -0
  34. wandb/apis/public/teams.py +198 -0
  35. wandb/apis/public/users.py +136 -0
  36. wandb/apis/public/utils.py +68 -0
  37. wandb/apis/reports/__init__.py +1 -0
  38. wandb/apis/reports/v1/__init__.py +8 -0
  39. wandb/apis/reports/v2/__init__.py +8 -0
  40. wandb/apis/workspaces/__init__.py +8 -0
  41. wandb/beta/workflows.py +288 -0
  42. wandb/bin/gpu_stats +0 -0
  43. wandb/bin/wandb-core +0 -0
  44. wandb/cli/__init__.py +0 -0
  45. wandb/cli/beta.py +178 -0
  46. wandb/cli/cli.py +2812 -0
  47. wandb/data_types.py +66 -0
  48. wandb/docker/__init__.py +343 -0
  49. wandb/docker/auth.py +435 -0
  50. wandb/docker/wandb-entrypoint.sh +33 -0
  51. wandb/docker/www_authenticate.py +94 -0
  52. wandb/env.py +513 -0
  53. wandb/errors/__init__.py +17 -0
  54. wandb/errors/errors.py +37 -0
  55. wandb/errors/links.py +73 -0
  56. wandb/errors/term.py +415 -0
  57. wandb/errors/util.py +57 -0
  58. wandb/errors/warnings.py +2 -0
  59. wandb/filesync/__init__.py +0 -0
  60. wandb/filesync/dir_watcher.py +403 -0
  61. wandb/filesync/stats.py +100 -0
  62. wandb/filesync/step_checksum.py +142 -0
  63. wandb/filesync/step_prepare.py +179 -0
  64. wandb/filesync/step_upload.py +287 -0
  65. wandb/filesync/upload_job.py +142 -0
  66. wandb/integration/__init__.py +0 -0
  67. wandb/integration/catboost/__init__.py +5 -0
  68. wandb/integration/catboost/catboost.py +178 -0
  69. wandb/integration/cohere/__init__.py +3 -0
  70. wandb/integration/cohere/cohere.py +21 -0
  71. wandb/integration/cohere/resolver.py +347 -0
  72. wandb/integration/diffusers/__init__.py +3 -0
  73. wandb/integration/diffusers/autologger.py +76 -0
  74. wandb/integration/diffusers/pipeline_resolver.py +50 -0
  75. wandb/integration/diffusers/resolvers/__init__.py +9 -0
  76. wandb/integration/diffusers/resolvers/multimodal.py +882 -0
  77. wandb/integration/diffusers/resolvers/utils.py +102 -0
  78. wandb/integration/fastai/__init__.py +245 -0
  79. wandb/integration/gym/__init__.py +99 -0
  80. wandb/integration/huggingface/__init__.py +3 -0
  81. wandb/integration/huggingface/huggingface.py +18 -0
  82. wandb/integration/huggingface/resolver.py +213 -0
  83. wandb/integration/keras/__init__.py +11 -0
  84. wandb/integration/keras/callbacks/__init__.py +5 -0
  85. wandb/integration/keras/callbacks/metrics_logger.py +129 -0
  86. wandb/integration/keras/callbacks/model_checkpoint.py +188 -0
  87. wandb/integration/keras/callbacks/tables_builder.py +228 -0
  88. wandb/integration/keras/keras.py +1089 -0
  89. wandb/integration/kfp/__init__.py +6 -0
  90. wandb/integration/kfp/helpers.py +28 -0
  91. wandb/integration/kfp/kfp_patch.py +334 -0
  92. wandb/integration/kfp/wandb_logging.py +182 -0
  93. wandb/integration/langchain/__init__.py +3 -0
  94. wandb/integration/langchain/wandb_tracer.py +48 -0
  95. wandb/integration/lightgbm/__init__.py +239 -0
  96. wandb/integration/lightning/__init__.py +0 -0
  97. wandb/integration/lightning/fabric/__init__.py +3 -0
  98. wandb/integration/lightning/fabric/logger.py +764 -0
  99. wandb/integration/metaflow/__init__.py +3 -0
  100. wandb/integration/metaflow/metaflow.py +383 -0
  101. wandb/integration/openai/__init__.py +3 -0
  102. wandb/integration/openai/fine_tuning.py +480 -0
  103. wandb/integration/openai/openai.py +22 -0
  104. wandb/integration/openai/resolver.py +240 -0
  105. wandb/integration/prodigy/__init__.py +3 -0
  106. wandb/integration/prodigy/prodigy.py +299 -0
  107. wandb/integration/sacred/__init__.py +117 -0
  108. wandb/integration/sagemaker/__init__.py +12 -0
  109. wandb/integration/sagemaker/auth.py +28 -0
  110. wandb/integration/sagemaker/config.py +49 -0
  111. wandb/integration/sagemaker/files.py +3 -0
  112. wandb/integration/sagemaker/resources.py +34 -0
  113. wandb/integration/sb3/__init__.py +3 -0
  114. wandb/integration/sb3/sb3.py +147 -0
  115. wandb/integration/sklearn/__init__.py +37 -0
  116. wandb/integration/sklearn/calculate/__init__.py +32 -0
  117. wandb/integration/sklearn/calculate/calibration_curves.py +125 -0
  118. wandb/integration/sklearn/calculate/class_proportions.py +68 -0
  119. wandb/integration/sklearn/calculate/confusion_matrix.py +93 -0
  120. wandb/integration/sklearn/calculate/decision_boundaries.py +40 -0
  121. wandb/integration/sklearn/calculate/elbow_curve.py +55 -0
  122. wandb/integration/sklearn/calculate/feature_importances.py +67 -0
  123. wandb/integration/sklearn/calculate/learning_curve.py +64 -0
  124. wandb/integration/sklearn/calculate/outlier_candidates.py +69 -0
  125. wandb/integration/sklearn/calculate/residuals.py +86 -0
  126. wandb/integration/sklearn/calculate/silhouette.py +118 -0
  127. wandb/integration/sklearn/calculate/summary_metrics.py +62 -0
  128. wandb/integration/sklearn/plot/__init__.py +35 -0
  129. wandb/integration/sklearn/plot/classifier.py +329 -0
  130. wandb/integration/sklearn/plot/clusterer.py +146 -0
  131. wandb/integration/sklearn/plot/regressor.py +121 -0
  132. wandb/integration/sklearn/plot/shared.py +91 -0
  133. wandb/integration/sklearn/utils.py +183 -0
  134. wandb/integration/tensorboard/__init__.py +10 -0
  135. wandb/integration/tensorboard/log.py +354 -0
  136. wandb/integration/tensorboard/monkeypatch.py +186 -0
  137. wandb/integration/tensorflow/__init__.py +5 -0
  138. wandb/integration/tensorflow/estimator_hook.py +54 -0
  139. wandb/integration/torch/__init__.py +0 -0
  140. wandb/integration/torch/wandb_torch.py +554 -0
  141. wandb/integration/ultralytics/__init__.py +11 -0
  142. wandb/integration/ultralytics/bbox_utils.py +215 -0
  143. wandb/integration/ultralytics/callback.py +524 -0
  144. wandb/integration/ultralytics/classification_utils.py +83 -0
  145. wandb/integration/ultralytics/mask_utils.py +202 -0
  146. wandb/integration/ultralytics/pose_utils.py +103 -0
  147. wandb/integration/xgboost/__init__.py +11 -0
  148. wandb/integration/xgboost/xgboost.py +189 -0
  149. wandb/integration/yolov8/__init__.py +0 -0
  150. wandb/integration/yolov8/yolov8.py +284 -0
  151. wandb/jupyter.py +513 -0
  152. wandb/mpmain/__init__.py +0 -0
  153. wandb/mpmain/__main__.py +1 -0
  154. wandb/old/__init__.py +0 -0
  155. wandb/old/core.py +53 -0
  156. wandb/old/settings.py +173 -0
  157. wandb/old/summary.py +440 -0
  158. wandb/plot/__init__.py +28 -0
  159. wandb/plot/bar.py +70 -0
  160. wandb/plot/confusion_matrix.py +181 -0
  161. wandb/plot/custom_chart.py +124 -0
  162. wandb/plot/histogram.py +65 -0
  163. wandb/plot/line.py +74 -0
  164. wandb/plot/line_series.py +176 -0
  165. wandb/plot/pr_curve.py +185 -0
  166. wandb/plot/roc_curve.py +163 -0
  167. wandb/plot/scatter.py +66 -0
  168. wandb/plot/utils.py +183 -0
  169. wandb/plot/viz.py +41 -0
  170. wandb/proto/__init__.py +0 -0
  171. wandb/proto/v3/__init__.py +0 -0
  172. wandb/proto/v3/wandb_base_pb2.py +55 -0
  173. wandb/proto/v3/wandb_internal_pb2.py +1658 -0
  174. wandb/proto/v3/wandb_server_pb2.py +228 -0
  175. wandb/proto/v3/wandb_settings_pb2.py +122 -0
  176. wandb/proto/v3/wandb_telemetry_pb2.py +106 -0
  177. wandb/proto/v4/__init__.py +0 -0
  178. wandb/proto/v4/wandb_base_pb2.py +30 -0
  179. wandb/proto/v4/wandb_internal_pb2.py +370 -0
  180. wandb/proto/v4/wandb_server_pb2.py +67 -0
  181. wandb/proto/v4/wandb_settings_pb2.py +47 -0
  182. wandb/proto/v4/wandb_telemetry_pb2.py +41 -0
  183. wandb/proto/v5/wandb_base_pb2.py +31 -0
  184. wandb/proto/v5/wandb_internal_pb2.py +371 -0
  185. wandb/proto/v5/wandb_server_pb2.py +68 -0
  186. wandb/proto/v5/wandb_settings_pb2.py +48 -0
  187. wandb/proto/v5/wandb_telemetry_pb2.py +42 -0
  188. wandb/proto/wandb_base_pb2.py +10 -0
  189. wandb/proto/wandb_deprecated.py +45 -0
  190. wandb/proto/wandb_generate_deprecated.py +30 -0
  191. wandb/proto/wandb_generate_proto.py +49 -0
  192. wandb/proto/wandb_internal_pb2.py +16 -0
  193. wandb/proto/wandb_server_pb2.py +10 -0
  194. wandb/proto/wandb_settings_pb2.py +10 -0
  195. wandb/proto/wandb_telemetry_pb2.py +10 -0
  196. wandb/py.typed +0 -0
  197. wandb/sdk/__init__.py +37 -0
  198. wandb/sdk/artifacts/__init__.py +0 -0
  199. wandb/sdk/artifacts/_validators.py +121 -0
  200. wandb/sdk/artifacts/artifact.py +2364 -0
  201. wandb/sdk/artifacts/artifact_download_logger.py +43 -0
  202. wandb/sdk/artifacts/artifact_file_cache.py +249 -0
  203. wandb/sdk/artifacts/artifact_instance_cache.py +17 -0
  204. wandb/sdk/artifacts/artifact_manifest.py +75 -0
  205. wandb/sdk/artifacts/artifact_manifest_entry.py +249 -0
  206. wandb/sdk/artifacts/artifact_manifests/__init__.py +0 -0
  207. wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +92 -0
  208. wandb/sdk/artifacts/artifact_saver.py +265 -0
  209. wandb/sdk/artifacts/artifact_state.py +11 -0
  210. wandb/sdk/artifacts/artifact_ttl.py +7 -0
  211. wandb/sdk/artifacts/exceptions.py +57 -0
  212. wandb/sdk/artifacts/staging.py +25 -0
  213. wandb/sdk/artifacts/storage_handler.py +62 -0
  214. wandb/sdk/artifacts/storage_handlers/__init__.py +0 -0
  215. wandb/sdk/artifacts/storage_handlers/azure_handler.py +213 -0
  216. wandb/sdk/artifacts/storage_handlers/gcs_handler.py +224 -0
  217. wandb/sdk/artifacts/storage_handlers/http_handler.py +114 -0
  218. wandb/sdk/artifacts/storage_handlers/local_file_handler.py +139 -0
  219. wandb/sdk/artifacts/storage_handlers/multi_handler.py +56 -0
  220. wandb/sdk/artifacts/storage_handlers/s3_handler.py +298 -0
  221. wandb/sdk/artifacts/storage_handlers/tracking_handler.py +72 -0
  222. wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +135 -0
  223. wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +74 -0
  224. wandb/sdk/artifacts/storage_layout.py +6 -0
  225. wandb/sdk/artifacts/storage_policies/__init__.py +4 -0
  226. wandb/sdk/artifacts/storage_policies/register.py +1 -0
  227. wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +378 -0
  228. wandb/sdk/artifacts/storage_policy.py +72 -0
  229. wandb/sdk/backend/__init__.py +0 -0
  230. wandb/sdk/backend/backend.py +221 -0
  231. wandb/sdk/data_types/__init__.py +0 -0
  232. wandb/sdk/data_types/_dtypes.py +918 -0
  233. wandb/sdk/data_types/_private.py +10 -0
  234. wandb/sdk/data_types/audio.py +165 -0
  235. wandb/sdk/data_types/base_types/__init__.py +0 -0
  236. wandb/sdk/data_types/base_types/json_metadata.py +55 -0
  237. wandb/sdk/data_types/base_types/media.py +376 -0
  238. wandb/sdk/data_types/base_types/wb_value.py +282 -0
  239. wandb/sdk/data_types/bokeh.py +70 -0
  240. wandb/sdk/data_types/graph.py +405 -0
  241. wandb/sdk/data_types/helper_types/__init__.py +0 -0
  242. wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +305 -0
  243. wandb/sdk/data_types/helper_types/classes.py +159 -0
  244. wandb/sdk/data_types/helper_types/image_mask.py +241 -0
  245. wandb/sdk/data_types/histogram.py +94 -0
  246. wandb/sdk/data_types/html.py +115 -0
  247. wandb/sdk/data_types/image.py +847 -0
  248. wandb/sdk/data_types/molecule.py +241 -0
  249. wandb/sdk/data_types/object_3d.py +470 -0
  250. wandb/sdk/data_types/plotly.py +82 -0
  251. wandb/sdk/data_types/saved_model.py +445 -0
  252. wandb/sdk/data_types/table.py +1204 -0
  253. wandb/sdk/data_types/trace_tree.py +438 -0
  254. wandb/sdk/data_types/utils.py +228 -0
  255. wandb/sdk/data_types/video.py +268 -0
  256. wandb/sdk/integration_utils/__init__.py +0 -0
  257. wandb/sdk/integration_utils/auto_logging.py +232 -0
  258. wandb/sdk/integration_utils/data_logging.py +475 -0
  259. wandb/sdk/interface/__init__.py +0 -0
  260. wandb/sdk/interface/constants.py +4 -0
  261. wandb/sdk/interface/interface.py +1010 -0
  262. wandb/sdk/interface/interface_queue.py +53 -0
  263. wandb/sdk/interface/interface_relay.py +53 -0
  264. wandb/sdk/interface/interface_shared.py +546 -0
  265. wandb/sdk/interface/interface_sock.py +61 -0
  266. wandb/sdk/interface/message_future.py +27 -0
  267. wandb/sdk/interface/message_future_poll.py +50 -0
  268. wandb/sdk/interface/router.py +115 -0
  269. wandb/sdk/interface/router_queue.py +41 -0
  270. wandb/sdk/interface/router_relay.py +37 -0
  271. wandb/sdk/interface/router_sock.py +36 -0
  272. wandb/sdk/interface/summary_record.py +67 -0
  273. wandb/sdk/internal/__init__.py +0 -0
  274. wandb/sdk/internal/context.py +89 -0
  275. wandb/sdk/internal/datastore.py +297 -0
  276. wandb/sdk/internal/file_pusher.py +181 -0
  277. wandb/sdk/internal/file_stream.py +695 -0
  278. wandb/sdk/internal/flow_control.py +263 -0
  279. wandb/sdk/internal/handler.py +905 -0
  280. wandb/sdk/internal/internal.py +403 -0
  281. wandb/sdk/internal/internal_api.py +4587 -0
  282. wandb/sdk/internal/internal_util.py +97 -0
  283. wandb/sdk/internal/job_builder.py +638 -0
  284. wandb/sdk/internal/profiler.py +78 -0
  285. wandb/sdk/internal/progress.py +79 -0
  286. wandb/sdk/internal/run.py +25 -0
  287. wandb/sdk/internal/sample.py +70 -0
  288. wandb/sdk/internal/sender.py +1696 -0
  289. wandb/sdk/internal/sender_config.py +197 -0
  290. wandb/sdk/internal/settings_static.py +97 -0
  291. wandb/sdk/internal/system/__init__.py +0 -0
  292. wandb/sdk/internal/system/assets/__init__.py +25 -0
  293. wandb/sdk/internal/system/assets/aggregators.py +37 -0
  294. wandb/sdk/internal/system/assets/asset_registry.py +20 -0
  295. wandb/sdk/internal/system/assets/cpu.py +163 -0
  296. wandb/sdk/internal/system/assets/disk.py +210 -0
  297. wandb/sdk/internal/system/assets/gpu.py +416 -0
  298. wandb/sdk/internal/system/assets/gpu_amd.py +233 -0
  299. wandb/sdk/internal/system/assets/interfaces.py +205 -0
  300. wandb/sdk/internal/system/assets/ipu.py +177 -0
  301. wandb/sdk/internal/system/assets/memory.py +166 -0
  302. wandb/sdk/internal/system/assets/network.py +125 -0
  303. wandb/sdk/internal/system/assets/open_metrics.py +293 -0
  304. wandb/sdk/internal/system/assets/tpu.py +154 -0
  305. wandb/sdk/internal/system/assets/trainium.py +393 -0
  306. wandb/sdk/internal/system/env_probe_helpers.py +13 -0
  307. wandb/sdk/internal/system/system_info.py +250 -0
  308. wandb/sdk/internal/system/system_monitor.py +222 -0
  309. wandb/sdk/internal/tb_watcher.py +519 -0
  310. wandb/sdk/internal/thread_local_settings.py +18 -0
  311. wandb/sdk/internal/writer.py +204 -0
  312. wandb/sdk/launch/__init__.py +15 -0
  313. wandb/sdk/launch/_launch.py +331 -0
  314. wandb/sdk/launch/_launch_add.py +255 -0
  315. wandb/sdk/launch/_project_spec.py +566 -0
  316. wandb/sdk/launch/agent/__init__.py +5 -0
  317. wandb/sdk/launch/agent/agent.py +924 -0
  318. wandb/sdk/launch/agent/config.py +296 -0
  319. wandb/sdk/launch/agent/job_status_tracker.py +53 -0
  320. wandb/sdk/launch/agent/run_queue_item_file_saver.py +39 -0
  321. wandb/sdk/launch/builder/__init__.py +0 -0
  322. wandb/sdk/launch/builder/abstract.py +156 -0
  323. wandb/sdk/launch/builder/build.py +297 -0
  324. wandb/sdk/launch/builder/context_manager.py +235 -0
  325. wandb/sdk/launch/builder/docker_builder.py +177 -0
  326. wandb/sdk/launch/builder/kaniko_builder.py +594 -0
  327. wandb/sdk/launch/builder/noop.py +58 -0
  328. wandb/sdk/launch/builder/templates/_wandb_bootstrap.py +188 -0
  329. wandb/sdk/launch/builder/templates/dockerfile.py +92 -0
  330. wandb/sdk/launch/create_job.py +528 -0
  331. wandb/sdk/launch/environment/abstract.py +29 -0
  332. wandb/sdk/launch/environment/aws_environment.py +322 -0
  333. wandb/sdk/launch/environment/azure_environment.py +105 -0
  334. wandb/sdk/launch/environment/gcp_environment.py +335 -0
  335. wandb/sdk/launch/environment/local_environment.py +65 -0
  336. wandb/sdk/launch/errors.py +13 -0
  337. wandb/sdk/launch/git_reference.py +109 -0
  338. wandb/sdk/launch/inputs/files.py +148 -0
  339. wandb/sdk/launch/inputs/internal.py +315 -0
  340. wandb/sdk/launch/inputs/manage.py +113 -0
  341. wandb/sdk/launch/inputs/schema.py +39 -0
  342. wandb/sdk/launch/loader.py +249 -0
  343. wandb/sdk/launch/registry/abstract.py +48 -0
  344. wandb/sdk/launch/registry/anon.py +29 -0
  345. wandb/sdk/launch/registry/azure_container_registry.py +124 -0
  346. wandb/sdk/launch/registry/elastic_container_registry.py +192 -0
  347. wandb/sdk/launch/registry/google_artifact_registry.py +219 -0
  348. wandb/sdk/launch/registry/local_registry.py +65 -0
  349. wandb/sdk/launch/runner/__init__.py +0 -0
  350. wandb/sdk/launch/runner/abstract.py +185 -0
  351. wandb/sdk/launch/runner/kubernetes_monitor.py +472 -0
  352. wandb/sdk/launch/runner/kubernetes_runner.py +963 -0
  353. wandb/sdk/launch/runner/local_container.py +301 -0
  354. wandb/sdk/launch/runner/local_process.py +78 -0
  355. wandb/sdk/launch/runner/sagemaker_runner.py +426 -0
  356. wandb/sdk/launch/runner/vertex_runner.py +230 -0
  357. wandb/sdk/launch/sweeps/__init__.py +37 -0
  358. wandb/sdk/launch/sweeps/scheduler.py +740 -0
  359. wandb/sdk/launch/sweeps/scheduler_sweep.py +90 -0
  360. wandb/sdk/launch/sweeps/utils.py +316 -0
  361. wandb/sdk/launch/utils.py +747 -0
  362. wandb/sdk/launch/wandb_reference.py +138 -0
  363. wandb/sdk/lib/__init__.py +5 -0
  364. wandb/sdk/lib/apikey.py +269 -0
  365. wandb/sdk/lib/capped_dict.py +26 -0
  366. wandb/sdk/lib/config_util.py +101 -0
  367. wandb/sdk/lib/credentials.py +141 -0
  368. wandb/sdk/lib/deprecate.py +42 -0
  369. wandb/sdk/lib/disabled.py +29 -0
  370. wandb/sdk/lib/exit_hooks.py +54 -0
  371. wandb/sdk/lib/file_stream_utils.py +118 -0
  372. wandb/sdk/lib/filenames.py +64 -0
  373. wandb/sdk/lib/filesystem.py +372 -0
  374. wandb/sdk/lib/fsm.py +180 -0
  375. wandb/sdk/lib/gitlib.py +239 -0
  376. wandb/sdk/lib/gql_request.py +65 -0
  377. wandb/sdk/lib/handler_util.py +21 -0
  378. wandb/sdk/lib/hashutil.py +84 -0
  379. wandb/sdk/lib/import_hooks.py +275 -0
  380. wandb/sdk/lib/ipython.py +126 -0
  381. wandb/sdk/lib/json_util.py +80 -0
  382. wandb/sdk/lib/lazyloader.py +63 -0
  383. wandb/sdk/lib/mailbox.py +456 -0
  384. wandb/sdk/lib/module.py +78 -0
  385. wandb/sdk/lib/paths.py +106 -0
  386. wandb/sdk/lib/preinit.py +42 -0
  387. wandb/sdk/lib/printer.py +548 -0
  388. wandb/sdk/lib/progress.py +273 -0
  389. wandb/sdk/lib/proto_util.py +90 -0
  390. wandb/sdk/lib/redirect.py +845 -0
  391. wandb/sdk/lib/retry.py +289 -0
  392. wandb/sdk/lib/run_moment.py +72 -0
  393. wandb/sdk/lib/runid.py +12 -0
  394. wandb/sdk/lib/server.py +38 -0
  395. wandb/sdk/lib/service_connection.py +216 -0
  396. wandb/sdk/lib/service_token.py +94 -0
  397. wandb/sdk/lib/sock_client.py +290 -0
  398. wandb/sdk/lib/sparkline.py +44 -0
  399. wandb/sdk/lib/telemetry.py +100 -0
  400. wandb/sdk/lib/timed_input.py +133 -0
  401. wandb/sdk/lib/timer.py +19 -0
  402. wandb/sdk/service/__init__.py +0 -0
  403. wandb/sdk/service/_startup_debug.py +22 -0
  404. wandb/sdk/service/port_file.py +53 -0
  405. wandb/sdk/service/server.py +107 -0
  406. wandb/sdk/service/server_sock.py +274 -0
  407. wandb/sdk/service/service.py +242 -0
  408. wandb/sdk/service/streams.py +425 -0
  409. wandb/sdk/verify/__init__.py +0 -0
  410. wandb/sdk/verify/verify.py +501 -0
  411. wandb/sdk/wandb_alerts.py +12 -0
  412. wandb/sdk/wandb_config.py +322 -0
  413. wandb/sdk/wandb_helper.py +54 -0
  414. wandb/sdk/wandb_init.py +1313 -0
  415. wandb/sdk/wandb_login.py +339 -0
  416. wandb/sdk/wandb_metric.py +110 -0
  417. wandb/sdk/wandb_require.py +94 -0
  418. wandb/sdk/wandb_require_helpers.py +44 -0
  419. wandb/sdk/wandb_run.py +4066 -0
  420. wandb/sdk/wandb_settings.py +1309 -0
  421. wandb/sdk/wandb_setup.py +402 -0
  422. wandb/sdk/wandb_summary.py +150 -0
  423. wandb/sdk/wandb_sweep.py +119 -0
  424. wandb/sdk/wandb_sync.py +82 -0
  425. wandb/sdk/wandb_watch.py +150 -0
  426. wandb/sklearn.py +35 -0
  427. wandb/sync/__init__.py +3 -0
  428. wandb/sync/sync.py +442 -0
  429. wandb/trigger.py +29 -0
  430. wandb/util.py +1955 -0
  431. wandb/vendor/__init__.py +0 -0
  432. wandb/vendor/gql-0.2.0/setup.py +40 -0
  433. wandb/vendor/gql-0.2.0/tests/__init__.py +0 -0
  434. wandb/vendor/gql-0.2.0/tests/starwars/__init__.py +0 -0
  435. wandb/vendor/gql-0.2.0/tests/starwars/fixtures.py +96 -0
  436. wandb/vendor/gql-0.2.0/tests/starwars/schema.py +146 -0
  437. wandb/vendor/gql-0.2.0/tests/starwars/test_dsl.py +293 -0
  438. wandb/vendor/gql-0.2.0/tests/starwars/test_query.py +355 -0
  439. wandb/vendor/gql-0.2.0/tests/starwars/test_validation.py +171 -0
  440. wandb/vendor/gql-0.2.0/tests/test_client.py +31 -0
  441. wandb/vendor/gql-0.2.0/tests/test_transport.py +89 -0
  442. wandb/vendor/gql-0.2.0/wandb_gql/__init__.py +4 -0
  443. wandb/vendor/gql-0.2.0/wandb_gql/client.py +75 -0
  444. wandb/vendor/gql-0.2.0/wandb_gql/dsl.py +152 -0
  445. wandb/vendor/gql-0.2.0/wandb_gql/gql.py +10 -0
  446. wandb/vendor/gql-0.2.0/wandb_gql/transport/__init__.py +0 -0
  447. wandb/vendor/gql-0.2.0/wandb_gql/transport/http.py +6 -0
  448. wandb/vendor/gql-0.2.0/wandb_gql/transport/local_schema.py +15 -0
  449. wandb/vendor/gql-0.2.0/wandb_gql/transport/requests.py +46 -0
  450. wandb/vendor/gql-0.2.0/wandb_gql/utils.py +21 -0
  451. wandb/vendor/graphql-core-1.1/setup.py +86 -0
  452. wandb/vendor/graphql-core-1.1/wandb_graphql/__init__.py +287 -0
  453. wandb/vendor/graphql-core-1.1/wandb_graphql/error/__init__.py +6 -0
  454. wandb/vendor/graphql-core-1.1/wandb_graphql/error/base.py +42 -0
  455. wandb/vendor/graphql-core-1.1/wandb_graphql/error/format_error.py +11 -0
  456. wandb/vendor/graphql-core-1.1/wandb_graphql/error/located_error.py +29 -0
  457. wandb/vendor/graphql-core-1.1/wandb_graphql/error/syntax_error.py +36 -0
  458. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/__init__.py +26 -0
  459. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/base.py +311 -0
  460. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executor.py +398 -0
  461. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/__init__.py +0 -0
  462. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/asyncio.py +53 -0
  463. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/gevent.py +22 -0
  464. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/process.py +32 -0
  465. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/sync.py +7 -0
  466. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/thread.py +35 -0
  467. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/utils.py +6 -0
  468. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/__init__.py +0 -0
  469. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/executor.py +66 -0
  470. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/fragment.py +252 -0
  471. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/resolver.py +151 -0
  472. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/utils.py +7 -0
  473. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/middleware.py +57 -0
  474. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/values.py +145 -0
  475. wandb/vendor/graphql-core-1.1/wandb_graphql/graphql.py +60 -0
  476. wandb/vendor/graphql-core-1.1/wandb_graphql/language/__init__.py +0 -0
  477. wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py +1349 -0
  478. wandb/vendor/graphql-core-1.1/wandb_graphql/language/base.py +19 -0
  479. wandb/vendor/graphql-core-1.1/wandb_graphql/language/lexer.py +435 -0
  480. wandb/vendor/graphql-core-1.1/wandb_graphql/language/location.py +30 -0
  481. wandb/vendor/graphql-core-1.1/wandb_graphql/language/parser.py +779 -0
  482. wandb/vendor/graphql-core-1.1/wandb_graphql/language/printer.py +193 -0
  483. wandb/vendor/graphql-core-1.1/wandb_graphql/language/source.py +18 -0
  484. wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor.py +222 -0
  485. wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor_meta.py +82 -0
  486. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/__init__.py +0 -0
  487. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/cached_property.py +17 -0
  488. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/contain_subset.py +28 -0
  489. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/default_ordered_dict.py +40 -0
  490. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/ordereddict.py +8 -0
  491. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/pair_set.py +43 -0
  492. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/version.py +78 -0
  493. wandb/vendor/graphql-core-1.1/wandb_graphql/type/__init__.py +67 -0
  494. wandb/vendor/graphql-core-1.1/wandb_graphql/type/definition.py +619 -0
  495. wandb/vendor/graphql-core-1.1/wandb_graphql/type/directives.py +132 -0
  496. wandb/vendor/graphql-core-1.1/wandb_graphql/type/introspection.py +440 -0
  497. wandb/vendor/graphql-core-1.1/wandb_graphql/type/scalars.py +131 -0
  498. wandb/vendor/graphql-core-1.1/wandb_graphql/type/schema.py +100 -0
  499. wandb/vendor/graphql-core-1.1/wandb_graphql/type/typemap.py +145 -0
  500. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/__init__.py +0 -0
  501. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/assert_valid_name.py +9 -0
  502. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_from_value.py +65 -0
  503. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_to_code.py +49 -0
  504. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_to_dict.py +24 -0
  505. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/base.py +75 -0
  506. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/build_ast_schema.py +291 -0
  507. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/build_client_schema.py +250 -0
  508. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/concat_ast.py +9 -0
  509. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/extend_schema.py +357 -0
  510. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/get_field_def.py +27 -0
  511. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/get_operation_ast.py +21 -0
  512. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/introspection_query.py +90 -0
  513. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/is_valid_literal_value.py +67 -0
  514. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/is_valid_value.py +66 -0
  515. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/quoted_or_list.py +21 -0
  516. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/schema_printer.py +168 -0
  517. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/suggestion_list.py +56 -0
  518. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_comparators.py +69 -0
  519. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_from_ast.py +21 -0
  520. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_info.py +149 -0
  521. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/value_from_ast.py +69 -0
  522. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/__init__.py +4 -0
  523. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/__init__.py +79 -0
  524. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/arguments_of_correct_type.py +24 -0
  525. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/base.py +8 -0
  526. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/default_values_of_correct_type.py +44 -0
  527. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/fields_on_correct_type.py +113 -0
  528. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/fragments_on_composite_types.py +33 -0
  529. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_argument_names.py +70 -0
  530. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_directives.py +97 -0
  531. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_fragment_names.py +19 -0
  532. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_type_names.py +43 -0
  533. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/lone_anonymous_operation.py +23 -0
  534. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_fragment_cycles.py +59 -0
  535. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_undefined_variables.py +36 -0
  536. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_unused_fragments.py +38 -0
  537. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_unused_variables.py +37 -0
  538. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/overlapping_fields_can_be_merged.py +529 -0
  539. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/possible_fragment_spreads.py +44 -0
  540. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/provided_non_null_arguments.py +46 -0
  541. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/scalar_leafs.py +33 -0
  542. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_argument_names.py +32 -0
  543. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_fragment_names.py +28 -0
  544. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_input_field_names.py +33 -0
  545. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_operation_names.py +31 -0
  546. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_variable_names.py +27 -0
  547. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/variables_are_input_types.py +21 -0
  548. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/variables_in_allowed_position.py +53 -0
  549. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/validation.py +158 -0
  550. wandb/vendor/promise-2.3.0/conftest.py +30 -0
  551. wandb/vendor/promise-2.3.0/setup.py +64 -0
  552. wandb/vendor/promise-2.3.0/tests/__init__.py +0 -0
  553. wandb/vendor/promise-2.3.0/tests/conftest.py +8 -0
  554. wandb/vendor/promise-2.3.0/tests/test_awaitable.py +32 -0
  555. wandb/vendor/promise-2.3.0/tests/test_awaitable_35.py +47 -0
  556. wandb/vendor/promise-2.3.0/tests/test_benchmark.py +116 -0
  557. wandb/vendor/promise-2.3.0/tests/test_complex_threads.py +23 -0
  558. wandb/vendor/promise-2.3.0/tests/test_dataloader.py +452 -0
  559. wandb/vendor/promise-2.3.0/tests/test_dataloader_awaitable_35.py +99 -0
  560. wandb/vendor/promise-2.3.0/tests/test_dataloader_extra.py +65 -0
  561. wandb/vendor/promise-2.3.0/tests/test_extra.py +670 -0
  562. wandb/vendor/promise-2.3.0/tests/test_issues.py +132 -0
  563. wandb/vendor/promise-2.3.0/tests/test_promise_list.py +70 -0
  564. wandb/vendor/promise-2.3.0/tests/test_spec.py +584 -0
  565. wandb/vendor/promise-2.3.0/tests/test_thread_safety.py +115 -0
  566. wandb/vendor/promise-2.3.0/tests/utils.py +3 -0
  567. wandb/vendor/promise-2.3.0/wandb_promise/__init__.py +38 -0
  568. wandb/vendor/promise-2.3.0/wandb_promise/async_.py +135 -0
  569. wandb/vendor/promise-2.3.0/wandb_promise/compat.py +32 -0
  570. wandb/vendor/promise-2.3.0/wandb_promise/dataloader.py +326 -0
  571. wandb/vendor/promise-2.3.0/wandb_promise/iterate_promise.py +12 -0
  572. wandb/vendor/promise-2.3.0/wandb_promise/promise.py +848 -0
  573. wandb/vendor/promise-2.3.0/wandb_promise/promise_list.py +151 -0
  574. wandb/vendor/promise-2.3.0/wandb_promise/pyutils/__init__.py +0 -0
  575. wandb/vendor/promise-2.3.0/wandb_promise/pyutils/version.py +83 -0
  576. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/__init__.py +0 -0
  577. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/asyncio.py +22 -0
  578. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/gevent.py +21 -0
  579. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/immediate.py +27 -0
  580. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/thread.py +18 -0
  581. wandb/vendor/promise-2.3.0/wandb_promise/utils.py +56 -0
  582. wandb/vendor/pygments/__init__.py +90 -0
  583. wandb/vendor/pygments/cmdline.py +568 -0
  584. wandb/vendor/pygments/console.py +74 -0
  585. wandb/vendor/pygments/filter.py +74 -0
  586. wandb/vendor/pygments/filters/__init__.py +350 -0
  587. wandb/vendor/pygments/formatter.py +95 -0
  588. wandb/vendor/pygments/formatters/__init__.py +153 -0
  589. wandb/vendor/pygments/formatters/_mapping.py +85 -0
  590. wandb/vendor/pygments/formatters/bbcode.py +109 -0
  591. wandb/vendor/pygments/formatters/html.py +851 -0
  592. wandb/vendor/pygments/formatters/img.py +600 -0
  593. wandb/vendor/pygments/formatters/irc.py +182 -0
  594. wandb/vendor/pygments/formatters/latex.py +482 -0
  595. wandb/vendor/pygments/formatters/other.py +160 -0
  596. wandb/vendor/pygments/formatters/rtf.py +147 -0
  597. wandb/vendor/pygments/formatters/svg.py +153 -0
  598. wandb/vendor/pygments/formatters/terminal.py +136 -0
  599. wandb/vendor/pygments/formatters/terminal256.py +309 -0
  600. wandb/vendor/pygments/lexer.py +871 -0
  601. wandb/vendor/pygments/lexers/__init__.py +329 -0
  602. wandb/vendor/pygments/lexers/_asy_builtins.py +1645 -0
  603. wandb/vendor/pygments/lexers/_cl_builtins.py +232 -0
  604. wandb/vendor/pygments/lexers/_cocoa_builtins.py +72 -0
  605. wandb/vendor/pygments/lexers/_csound_builtins.py +1346 -0
  606. wandb/vendor/pygments/lexers/_lasso_builtins.py +5327 -0
  607. wandb/vendor/pygments/lexers/_lua_builtins.py +295 -0
  608. wandb/vendor/pygments/lexers/_mapping.py +500 -0
  609. wandb/vendor/pygments/lexers/_mql_builtins.py +1172 -0
  610. wandb/vendor/pygments/lexers/_openedge_builtins.py +2547 -0
  611. wandb/vendor/pygments/lexers/_php_builtins.py +4756 -0
  612. wandb/vendor/pygments/lexers/_postgres_builtins.py +621 -0
  613. wandb/vendor/pygments/lexers/_scilab_builtins.py +3094 -0
  614. wandb/vendor/pygments/lexers/_sourcemod_builtins.py +1163 -0
  615. wandb/vendor/pygments/lexers/_stan_builtins.py +532 -0
  616. wandb/vendor/pygments/lexers/_stata_builtins.py +419 -0
  617. wandb/vendor/pygments/lexers/_tsql_builtins.py +1004 -0
  618. wandb/vendor/pygments/lexers/_vim_builtins.py +1939 -0
  619. wandb/vendor/pygments/lexers/actionscript.py +240 -0
  620. wandb/vendor/pygments/lexers/agile.py +24 -0
  621. wandb/vendor/pygments/lexers/algebra.py +221 -0
  622. wandb/vendor/pygments/lexers/ambient.py +76 -0
  623. wandb/vendor/pygments/lexers/ampl.py +87 -0
  624. wandb/vendor/pygments/lexers/apl.py +101 -0
  625. wandb/vendor/pygments/lexers/archetype.py +318 -0
  626. wandb/vendor/pygments/lexers/asm.py +641 -0
  627. wandb/vendor/pygments/lexers/automation.py +374 -0
  628. wandb/vendor/pygments/lexers/basic.py +500 -0
  629. wandb/vendor/pygments/lexers/bibtex.py +160 -0
  630. wandb/vendor/pygments/lexers/business.py +612 -0
  631. wandb/vendor/pygments/lexers/c_cpp.py +252 -0
  632. wandb/vendor/pygments/lexers/c_like.py +541 -0
  633. wandb/vendor/pygments/lexers/capnproto.py +78 -0
  634. wandb/vendor/pygments/lexers/chapel.py +102 -0
  635. wandb/vendor/pygments/lexers/clean.py +288 -0
  636. wandb/vendor/pygments/lexers/compiled.py +34 -0
  637. wandb/vendor/pygments/lexers/configs.py +833 -0
  638. wandb/vendor/pygments/lexers/console.py +114 -0
  639. wandb/vendor/pygments/lexers/crystal.py +393 -0
  640. wandb/vendor/pygments/lexers/csound.py +366 -0
  641. wandb/vendor/pygments/lexers/css.py +689 -0
  642. wandb/vendor/pygments/lexers/d.py +251 -0
  643. wandb/vendor/pygments/lexers/dalvik.py +125 -0
  644. wandb/vendor/pygments/lexers/data.py +555 -0
  645. wandb/vendor/pygments/lexers/diff.py +165 -0
  646. wandb/vendor/pygments/lexers/dotnet.py +691 -0
  647. wandb/vendor/pygments/lexers/dsls.py +878 -0
  648. wandb/vendor/pygments/lexers/dylan.py +289 -0
  649. wandb/vendor/pygments/lexers/ecl.py +125 -0
  650. wandb/vendor/pygments/lexers/eiffel.py +65 -0
  651. wandb/vendor/pygments/lexers/elm.py +121 -0
  652. wandb/vendor/pygments/lexers/erlang.py +533 -0
  653. wandb/vendor/pygments/lexers/esoteric.py +277 -0
  654. wandb/vendor/pygments/lexers/ezhil.py +69 -0
  655. wandb/vendor/pygments/lexers/factor.py +344 -0
  656. wandb/vendor/pygments/lexers/fantom.py +250 -0
  657. wandb/vendor/pygments/lexers/felix.py +273 -0
  658. wandb/vendor/pygments/lexers/forth.py +177 -0
  659. wandb/vendor/pygments/lexers/fortran.py +205 -0
  660. wandb/vendor/pygments/lexers/foxpro.py +428 -0
  661. wandb/vendor/pygments/lexers/functional.py +21 -0
  662. wandb/vendor/pygments/lexers/go.py +101 -0
  663. wandb/vendor/pygments/lexers/grammar_notation.py +213 -0
  664. wandb/vendor/pygments/lexers/graph.py +80 -0
  665. wandb/vendor/pygments/lexers/graphics.py +553 -0
  666. wandb/vendor/pygments/lexers/haskell.py +843 -0
  667. wandb/vendor/pygments/lexers/haxe.py +936 -0
  668. wandb/vendor/pygments/lexers/hdl.py +382 -0
  669. wandb/vendor/pygments/lexers/hexdump.py +103 -0
  670. wandb/vendor/pygments/lexers/html.py +602 -0
  671. wandb/vendor/pygments/lexers/idl.py +270 -0
  672. wandb/vendor/pygments/lexers/igor.py +288 -0
  673. wandb/vendor/pygments/lexers/inferno.py +96 -0
  674. wandb/vendor/pygments/lexers/installers.py +322 -0
  675. wandb/vendor/pygments/lexers/int_fiction.py +1343 -0
  676. wandb/vendor/pygments/lexers/iolang.py +63 -0
  677. wandb/vendor/pygments/lexers/j.py +146 -0
  678. wandb/vendor/pygments/lexers/javascript.py +1525 -0
  679. wandb/vendor/pygments/lexers/julia.py +333 -0
  680. wandb/vendor/pygments/lexers/jvm.py +1573 -0
  681. wandb/vendor/pygments/lexers/lisp.py +2621 -0
  682. wandb/vendor/pygments/lexers/make.py +202 -0
  683. wandb/vendor/pygments/lexers/markup.py +595 -0
  684. wandb/vendor/pygments/lexers/math.py +21 -0
  685. wandb/vendor/pygments/lexers/matlab.py +663 -0
  686. wandb/vendor/pygments/lexers/ml.py +769 -0
  687. wandb/vendor/pygments/lexers/modeling.py +358 -0
  688. wandb/vendor/pygments/lexers/modula2.py +1561 -0
  689. wandb/vendor/pygments/lexers/monte.py +204 -0
  690. wandb/vendor/pygments/lexers/ncl.py +894 -0
  691. wandb/vendor/pygments/lexers/nimrod.py +159 -0
  692. wandb/vendor/pygments/lexers/nit.py +64 -0
  693. wandb/vendor/pygments/lexers/nix.py +136 -0
  694. wandb/vendor/pygments/lexers/oberon.py +105 -0
  695. wandb/vendor/pygments/lexers/objective.py +504 -0
  696. wandb/vendor/pygments/lexers/ooc.py +85 -0
  697. wandb/vendor/pygments/lexers/other.py +41 -0
  698. wandb/vendor/pygments/lexers/parasail.py +79 -0
  699. wandb/vendor/pygments/lexers/parsers.py +835 -0
  700. wandb/vendor/pygments/lexers/pascal.py +644 -0
  701. wandb/vendor/pygments/lexers/pawn.py +199 -0
  702. wandb/vendor/pygments/lexers/perl.py +620 -0
  703. wandb/vendor/pygments/lexers/php.py +267 -0
  704. wandb/vendor/pygments/lexers/praat.py +294 -0
  705. wandb/vendor/pygments/lexers/prolog.py +306 -0
  706. wandb/vendor/pygments/lexers/python.py +939 -0
  707. wandb/vendor/pygments/lexers/qvt.py +152 -0
  708. wandb/vendor/pygments/lexers/r.py +453 -0
  709. wandb/vendor/pygments/lexers/rdf.py +270 -0
  710. wandb/vendor/pygments/lexers/rebol.py +431 -0
  711. wandb/vendor/pygments/lexers/resource.py +85 -0
  712. wandb/vendor/pygments/lexers/rnc.py +67 -0
  713. wandb/vendor/pygments/lexers/roboconf.py +82 -0
  714. wandb/vendor/pygments/lexers/robotframework.py +560 -0
  715. wandb/vendor/pygments/lexers/ruby.py +519 -0
  716. wandb/vendor/pygments/lexers/rust.py +220 -0
  717. wandb/vendor/pygments/lexers/sas.py +228 -0
  718. wandb/vendor/pygments/lexers/scripting.py +1222 -0
  719. wandb/vendor/pygments/lexers/shell.py +794 -0
  720. wandb/vendor/pygments/lexers/smalltalk.py +195 -0
  721. wandb/vendor/pygments/lexers/smv.py +79 -0
  722. wandb/vendor/pygments/lexers/snobol.py +83 -0
  723. wandb/vendor/pygments/lexers/special.py +103 -0
  724. wandb/vendor/pygments/lexers/sql.py +681 -0
  725. wandb/vendor/pygments/lexers/stata.py +108 -0
  726. wandb/vendor/pygments/lexers/supercollider.py +90 -0
  727. wandb/vendor/pygments/lexers/tcl.py +145 -0
  728. wandb/vendor/pygments/lexers/templates.py +2283 -0
  729. wandb/vendor/pygments/lexers/testing.py +207 -0
  730. wandb/vendor/pygments/lexers/text.py +25 -0
  731. wandb/vendor/pygments/lexers/textedit.py +169 -0
  732. wandb/vendor/pygments/lexers/textfmts.py +297 -0
  733. wandb/vendor/pygments/lexers/theorem.py +458 -0
  734. wandb/vendor/pygments/lexers/trafficscript.py +54 -0
  735. wandb/vendor/pygments/lexers/typoscript.py +226 -0
  736. wandb/vendor/pygments/lexers/urbi.py +133 -0
  737. wandb/vendor/pygments/lexers/varnish.py +190 -0
  738. wandb/vendor/pygments/lexers/verification.py +111 -0
  739. wandb/vendor/pygments/lexers/web.py +24 -0
  740. wandb/vendor/pygments/lexers/webmisc.py +988 -0
  741. wandb/vendor/pygments/lexers/whiley.py +116 -0
  742. wandb/vendor/pygments/lexers/x10.py +69 -0
  743. wandb/vendor/pygments/modeline.py +44 -0
  744. wandb/vendor/pygments/plugin.py +68 -0
  745. wandb/vendor/pygments/regexopt.py +92 -0
  746. wandb/vendor/pygments/scanner.py +105 -0
  747. wandb/vendor/pygments/sphinxext.py +158 -0
  748. wandb/vendor/pygments/style.py +155 -0
  749. wandb/vendor/pygments/styles/__init__.py +80 -0
  750. wandb/vendor/pygments/styles/abap.py +29 -0
  751. wandb/vendor/pygments/styles/algol.py +63 -0
  752. wandb/vendor/pygments/styles/algol_nu.py +63 -0
  753. wandb/vendor/pygments/styles/arduino.py +98 -0
  754. wandb/vendor/pygments/styles/autumn.py +65 -0
  755. wandb/vendor/pygments/styles/borland.py +51 -0
  756. wandb/vendor/pygments/styles/bw.py +49 -0
  757. wandb/vendor/pygments/styles/colorful.py +81 -0
  758. wandb/vendor/pygments/styles/default.py +73 -0
  759. wandb/vendor/pygments/styles/emacs.py +72 -0
  760. wandb/vendor/pygments/styles/friendly.py +72 -0
  761. wandb/vendor/pygments/styles/fruity.py +42 -0
  762. wandb/vendor/pygments/styles/igor.py +29 -0
  763. wandb/vendor/pygments/styles/lovelace.py +97 -0
  764. wandb/vendor/pygments/styles/manni.py +75 -0
  765. wandb/vendor/pygments/styles/monokai.py +106 -0
  766. wandb/vendor/pygments/styles/murphy.py +80 -0
  767. wandb/vendor/pygments/styles/native.py +65 -0
  768. wandb/vendor/pygments/styles/paraiso_dark.py +125 -0
  769. wandb/vendor/pygments/styles/paraiso_light.py +125 -0
  770. wandb/vendor/pygments/styles/pastie.py +75 -0
  771. wandb/vendor/pygments/styles/perldoc.py +69 -0
  772. wandb/vendor/pygments/styles/rainbow_dash.py +89 -0
  773. wandb/vendor/pygments/styles/rrt.py +33 -0
  774. wandb/vendor/pygments/styles/sas.py +44 -0
  775. wandb/vendor/pygments/styles/stata.py +40 -0
  776. wandb/vendor/pygments/styles/tango.py +141 -0
  777. wandb/vendor/pygments/styles/trac.py +63 -0
  778. wandb/vendor/pygments/styles/vim.py +63 -0
  779. wandb/vendor/pygments/styles/vs.py +38 -0
  780. wandb/vendor/pygments/styles/xcode.py +51 -0
  781. wandb/vendor/pygments/token.py +213 -0
  782. wandb/vendor/pygments/unistring.py +217 -0
  783. wandb/vendor/pygments/util.py +388 -0
  784. wandb/vendor/pynvml/__init__.py +0 -0
  785. wandb/vendor/pynvml/pynvml.py +4779 -0
  786. wandb/vendor/watchdog_0_9_0/wandb_watchdog/__init__.py +17 -0
  787. wandb/vendor/watchdog_0_9_0/wandb_watchdog/events.py +615 -0
  788. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/__init__.py +98 -0
  789. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/api.py +369 -0
  790. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/fsevents.py +172 -0
  791. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/fsevents2.py +239 -0
  792. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify.py +218 -0
  793. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify_buffer.py +81 -0
  794. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify_c.py +575 -0
  795. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/kqueue.py +730 -0
  796. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/polling.py +145 -0
  797. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/read_directory_changes.py +133 -0
  798. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/winapi.py +348 -0
  799. wandb/vendor/watchdog_0_9_0/wandb_watchdog/patterns.py +265 -0
  800. wandb/vendor/watchdog_0_9_0/wandb_watchdog/tricks/__init__.py +174 -0
  801. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/__init__.py +151 -0
  802. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/bricks.py +249 -0
  803. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/compat.py +29 -0
  804. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/decorators.py +198 -0
  805. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/delayed_queue.py +88 -0
  806. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/dirsnapshot.py +293 -0
  807. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/echo.py +157 -0
  808. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/event_backport.py +41 -0
  809. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py +40 -0
  810. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py +57 -0
  811. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py +64 -0
  812. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py +123 -0
  813. wandb/vendor/watchdog_0_9_0/wandb_watchdog/version.py +28 -0
  814. wandb/vendor/watchdog_0_9_0/wandb_watchdog/watchmedo.py +577 -0
  815. wandb/wandb_agent.py +588 -0
  816. wandb/wandb_controller.py +719 -0
  817. wandb/wandb_run.py +9 -0
  818. wandb-0.19.1rc1.dist-info/METADATA +223 -0
  819. wandb-0.19.1rc1.dist-info/RECORD +822 -0
  820. wandb-0.19.1rc1.dist-info/WHEEL +5 -0
  821. wandb-0.19.1rc1.dist-info/entry_points.txt +3 -0
  822. wandb-0.19.1rc1.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,1645 @@
1
+ # -*- coding: utf-8 -*-
2
+ """
3
+ pygments.lexers._asy_builtins
4
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5
+
6
+ This file contains the asy-function names and asy-variable names of
7
+ Asymptote.
8
+
9
+ Do not edit the ASYFUNCNAME and ASYVARNAME sets by hand.
10
+ TODO: perl/python script in Asymptote SVN similar to asy-list.pl but only
11
+ for function and variable names.
12
+
13
+ :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS.
14
+ :license: BSD, see LICENSE for details.
15
+ """
16
+
17
+ ASYFUNCNAME = set((
18
+ 'AND',
19
+ 'Arc',
20
+ 'ArcArrow',
21
+ 'ArcArrows',
22
+ 'Arrow',
23
+ 'Arrows',
24
+ 'Automatic',
25
+ 'AvantGarde',
26
+ 'BBox',
27
+ 'BWRainbow',
28
+ 'BWRainbow2',
29
+ 'Bar',
30
+ 'Bars',
31
+ 'BeginArcArrow',
32
+ 'BeginArrow',
33
+ 'BeginBar',
34
+ 'BeginDotMargin',
35
+ 'BeginMargin',
36
+ 'BeginPenMargin',
37
+ 'Blank',
38
+ 'Bookman',
39
+ 'Bottom',
40
+ 'BottomTop',
41
+ 'Bounds',
42
+ 'Break',
43
+ 'Broken',
44
+ 'BrokenLog',
45
+ 'Ceil',
46
+ 'Circle',
47
+ 'CircleBarIntervalMarker',
48
+ 'Cos',
49
+ 'Courier',
50
+ 'CrossIntervalMarker',
51
+ 'DefaultFormat',
52
+ 'DefaultLogFormat',
53
+ 'Degrees',
54
+ 'Dir',
55
+ 'DotMargin',
56
+ 'DotMargins',
57
+ 'Dotted',
58
+ 'Draw',
59
+ 'Drawline',
60
+ 'Embed',
61
+ 'EndArcArrow',
62
+ 'EndArrow',
63
+ 'EndBar',
64
+ 'EndDotMargin',
65
+ 'EndMargin',
66
+ 'EndPenMargin',
67
+ 'Fill',
68
+ 'FillDraw',
69
+ 'Floor',
70
+ 'Format',
71
+ 'Full',
72
+ 'Gaussian',
73
+ 'Gaussrand',
74
+ 'Gaussrandpair',
75
+ 'Gradient',
76
+ 'Grayscale',
77
+ 'Helvetica',
78
+ 'Hermite',
79
+ 'HookHead',
80
+ 'InOutTicks',
81
+ 'InTicks',
82
+ 'J',
83
+ 'Label',
84
+ 'Landscape',
85
+ 'Left',
86
+ 'LeftRight',
87
+ 'LeftTicks',
88
+ 'Legend',
89
+ 'Linear',
90
+ 'Link',
91
+ 'Log',
92
+ 'LogFormat',
93
+ 'Margin',
94
+ 'Margins',
95
+ 'Mark',
96
+ 'MidArcArrow',
97
+ 'MidArrow',
98
+ 'NOT',
99
+ 'NewCenturySchoolBook',
100
+ 'NoBox',
101
+ 'NoMargin',
102
+ 'NoModifier',
103
+ 'NoTicks',
104
+ 'NoTicks3',
105
+ 'NoZero',
106
+ 'NoZeroFormat',
107
+ 'None',
108
+ 'OR',
109
+ 'OmitFormat',
110
+ 'OmitTick',
111
+ 'OutTicks',
112
+ 'Ox',
113
+ 'Oy',
114
+ 'Palatino',
115
+ 'PaletteTicks',
116
+ 'Pen',
117
+ 'PenMargin',
118
+ 'PenMargins',
119
+ 'Pentype',
120
+ 'Portrait',
121
+ 'RadialShade',
122
+ 'Rainbow',
123
+ 'Range',
124
+ 'Relative',
125
+ 'Right',
126
+ 'RightTicks',
127
+ 'Rotate',
128
+ 'Round',
129
+ 'SQR',
130
+ 'Scale',
131
+ 'ScaleX',
132
+ 'ScaleY',
133
+ 'ScaleZ',
134
+ 'Seascape',
135
+ 'Shift',
136
+ 'Sin',
137
+ 'Slant',
138
+ 'Spline',
139
+ 'StickIntervalMarker',
140
+ 'Straight',
141
+ 'Symbol',
142
+ 'Tan',
143
+ 'TeXify',
144
+ 'Ticks',
145
+ 'Ticks3',
146
+ 'TildeIntervalMarker',
147
+ 'TimesRoman',
148
+ 'Top',
149
+ 'TrueMargin',
150
+ 'UnFill',
151
+ 'UpsideDown',
152
+ 'Wheel',
153
+ 'X',
154
+ 'XEquals',
155
+ 'XOR',
156
+ 'XY',
157
+ 'XYEquals',
158
+ 'XYZero',
159
+ 'XYgrid',
160
+ 'XZEquals',
161
+ 'XZZero',
162
+ 'XZero',
163
+ 'XZgrid',
164
+ 'Y',
165
+ 'YEquals',
166
+ 'YXgrid',
167
+ 'YZ',
168
+ 'YZEquals',
169
+ 'YZZero',
170
+ 'YZero',
171
+ 'YZgrid',
172
+ 'Z',
173
+ 'ZX',
174
+ 'ZXgrid',
175
+ 'ZYgrid',
176
+ 'ZapfChancery',
177
+ 'ZapfDingbats',
178
+ '_cputime',
179
+ '_draw',
180
+ '_eval',
181
+ '_image',
182
+ '_labelpath',
183
+ '_projection',
184
+ '_strokepath',
185
+ '_texpath',
186
+ 'aCos',
187
+ 'aSin',
188
+ 'aTan',
189
+ 'abort',
190
+ 'abs',
191
+ 'accel',
192
+ 'acos',
193
+ 'acosh',
194
+ 'acot',
195
+ 'acsc',
196
+ 'add',
197
+ 'addArrow',
198
+ 'addMargins',
199
+ 'addSaveFunction',
200
+ 'addnode',
201
+ 'addnodes',
202
+ 'addpenarc',
203
+ 'addpenline',
204
+ 'addseg',
205
+ 'adjust',
206
+ 'alias',
207
+ 'align',
208
+ 'all',
209
+ 'altitude',
210
+ 'angabscissa',
211
+ 'angle',
212
+ 'angpoint',
213
+ 'animate',
214
+ 'annotate',
215
+ 'anticomplementary',
216
+ 'antipedal',
217
+ 'apply',
218
+ 'approximate',
219
+ 'arc',
220
+ 'arcarrowsize',
221
+ 'arccircle',
222
+ 'arcdir',
223
+ 'arcfromcenter',
224
+ 'arcfromfocus',
225
+ 'arclength',
226
+ 'arcnodesnumber',
227
+ 'arcpoint',
228
+ 'arcsubtended',
229
+ 'arcsubtendedcenter',
230
+ 'arctime',
231
+ 'arctopath',
232
+ 'array',
233
+ 'arrow',
234
+ 'arrow2',
235
+ 'arrowbase',
236
+ 'arrowbasepoints',
237
+ 'arrowsize',
238
+ 'asec',
239
+ 'asin',
240
+ 'asinh',
241
+ 'ask',
242
+ 'assert',
243
+ 'asy',
244
+ 'asycode',
245
+ 'asydir',
246
+ 'asyfigure',
247
+ 'asyfilecode',
248
+ 'asyinclude',
249
+ 'asywrite',
250
+ 'atan',
251
+ 'atan2',
252
+ 'atanh',
253
+ 'atbreakpoint',
254
+ 'atexit',
255
+ 'atime',
256
+ 'attach',
257
+ 'attract',
258
+ 'atupdate',
259
+ 'autoformat',
260
+ 'autoscale',
261
+ 'autoscale3',
262
+ 'axes',
263
+ 'axes3',
264
+ 'axialshade',
265
+ 'axis',
266
+ 'axiscoverage',
267
+ 'azimuth',
268
+ 'babel',
269
+ 'background',
270
+ 'bangles',
271
+ 'bar',
272
+ 'barmarksize',
273
+ 'barsize',
274
+ 'basealign',
275
+ 'baseline',
276
+ 'bbox',
277
+ 'beep',
278
+ 'begin',
279
+ 'beginclip',
280
+ 'begingroup',
281
+ 'beginpoint',
282
+ 'between',
283
+ 'bevel',
284
+ 'bezier',
285
+ 'bezierP',
286
+ 'bezierPP',
287
+ 'bezierPPP',
288
+ 'bezulate',
289
+ 'bibliography',
290
+ 'bibliographystyle',
291
+ 'binarytree',
292
+ 'binarytreeNode',
293
+ 'binomial',
294
+ 'binput',
295
+ 'bins',
296
+ 'bisector',
297
+ 'bisectorpoint',
298
+ 'blend',
299
+ 'boutput',
300
+ 'box',
301
+ 'bqe',
302
+ 'breakpoint',
303
+ 'breakpoints',
304
+ 'brick',
305
+ 'buildRestoreDefaults',
306
+ 'buildRestoreThunk',
307
+ 'buildcycle',
308
+ 'bulletcolor',
309
+ 'canonical',
310
+ 'canonicalcartesiansystem',
311
+ 'cartesiansystem',
312
+ 'case1',
313
+ 'case2',
314
+ 'case3',
315
+ 'cbrt',
316
+ 'cd',
317
+ 'ceil',
318
+ 'center',
319
+ 'centerToFocus',
320
+ 'centroid',
321
+ 'cevian',
322
+ 'change2',
323
+ 'changecoordsys',
324
+ 'checkSegment',
325
+ 'checkconditionlength',
326
+ 'checker',
327
+ 'checklengths',
328
+ 'checkposition',
329
+ 'checktriangle',
330
+ 'choose',
331
+ 'circle',
332
+ 'circlebarframe',
333
+ 'circlemarkradius',
334
+ 'circlenodesnumber',
335
+ 'circumcenter',
336
+ 'circumcircle',
337
+ 'clamped',
338
+ 'clear',
339
+ 'clip',
340
+ 'clipdraw',
341
+ 'close',
342
+ 'cmyk',
343
+ 'code',
344
+ 'colatitude',
345
+ 'collect',
346
+ 'collinear',
347
+ 'color',
348
+ 'colorless',
349
+ 'colors',
350
+ 'colorspace',
351
+ 'comma',
352
+ 'compassmark',
353
+ 'complement',
354
+ 'complementary',
355
+ 'concat',
356
+ 'concurrent',
357
+ 'cone',
358
+ 'conic',
359
+ 'conicnodesnumber',
360
+ 'conictype',
361
+ 'conj',
362
+ 'connect',
363
+ 'containmentTree',
364
+ 'contains',
365
+ 'contour',
366
+ 'contour3',
367
+ 'controlSpecifier',
368
+ 'convert',
369
+ 'coordinates',
370
+ 'coordsys',
371
+ 'copy',
372
+ 'cos',
373
+ 'cosh',
374
+ 'cot',
375
+ 'countIntersections',
376
+ 'cputime',
377
+ 'crop',
378
+ 'cropcode',
379
+ 'cross',
380
+ 'crossframe',
381
+ 'crosshatch',
382
+ 'crossmarksize',
383
+ 'csc',
384
+ 'cubicroots',
385
+ 'curabscissa',
386
+ 'curlSpecifier',
387
+ 'curpoint',
388
+ 'currentarrow',
389
+ 'currentexitfunction',
390
+ 'currentmomarrow',
391
+ 'currentpolarconicroutine',
392
+ 'curve',
393
+ 'cut',
394
+ 'cutafter',
395
+ 'cutbefore',
396
+ 'cyclic',
397
+ 'cylinder',
398
+ 'debugger',
399
+ 'deconstruct',
400
+ 'defaultdir',
401
+ 'defaultformat',
402
+ 'defaultpen',
403
+ 'defined',
404
+ 'degenerate',
405
+ 'degrees',
406
+ 'delete',
407
+ 'deletepreamble',
408
+ 'determinant',
409
+ 'diagonal',
410
+ 'diamond',
411
+ 'diffdiv',
412
+ 'dir',
413
+ 'dirSpecifier',
414
+ 'dirtime',
415
+ 'display',
416
+ 'distance',
417
+ 'divisors',
418
+ 'do_overpaint',
419
+ 'dot',
420
+ 'dotframe',
421
+ 'dotsize',
422
+ 'downcase',
423
+ 'draw',
424
+ 'drawAll',
425
+ 'drawDoubleLine',
426
+ 'drawFermion',
427
+ 'drawGhost',
428
+ 'drawGluon',
429
+ 'drawMomArrow',
430
+ 'drawPhoton',
431
+ 'drawScalar',
432
+ 'drawVertex',
433
+ 'drawVertexBox',
434
+ 'drawVertexBoxO',
435
+ 'drawVertexBoxX',
436
+ 'drawVertexO',
437
+ 'drawVertexOX',
438
+ 'drawVertexTriangle',
439
+ 'drawVertexTriangleO',
440
+ 'drawVertexX',
441
+ 'drawarrow',
442
+ 'drawarrow2',
443
+ 'drawline',
444
+ 'drawtick',
445
+ 'duplicate',
446
+ 'elle',
447
+ 'ellipse',
448
+ 'ellipsenodesnumber',
449
+ 'embed',
450
+ 'embed3',
451
+ 'empty',
452
+ 'enclose',
453
+ 'end',
454
+ 'endScript',
455
+ 'endclip',
456
+ 'endgroup',
457
+ 'endl',
458
+ 'endpoint',
459
+ 'endpoints',
460
+ 'eof',
461
+ 'eol',
462
+ 'equation',
463
+ 'equations',
464
+ 'erase',
465
+ 'erasestep',
466
+ 'erf',
467
+ 'erfc',
468
+ 'error',
469
+ 'errorbar',
470
+ 'errorbars',
471
+ 'eval',
472
+ 'excenter',
473
+ 'excircle',
474
+ 'exit',
475
+ 'exitXasyMode',
476
+ 'exitfunction',
477
+ 'exp',
478
+ 'expfactors',
479
+ 'expi',
480
+ 'expm1',
481
+ 'exradius',
482
+ 'extend',
483
+ 'extension',
484
+ 'extouch',
485
+ 'fabs',
486
+ 'factorial',
487
+ 'fermat',
488
+ 'fft',
489
+ 'fhorner',
490
+ 'figure',
491
+ 'file',
492
+ 'filecode',
493
+ 'fill',
494
+ 'filldraw',
495
+ 'filloutside',
496
+ 'fillrule',
497
+ 'filltype',
498
+ 'find',
499
+ 'finite',
500
+ 'finiteDifferenceJacobian',
501
+ 'firstcut',
502
+ 'firstframe',
503
+ 'fit',
504
+ 'fit2',
505
+ 'fixedscaling',
506
+ 'floor',
507
+ 'flush',
508
+ 'fmdefaults',
509
+ 'fmod',
510
+ 'focusToCenter',
511
+ 'font',
512
+ 'fontcommand',
513
+ 'fontsize',
514
+ 'foot',
515
+ 'format',
516
+ 'frac',
517
+ 'frequency',
518
+ 'fromCenter',
519
+ 'fromFocus',
520
+ 'fspline',
521
+ 'functionshade',
522
+ 'gamma',
523
+ 'generate_random_backtrace',
524
+ 'generateticks',
525
+ 'gergonne',
526
+ 'getc',
527
+ 'getint',
528
+ 'getpair',
529
+ 'getreal',
530
+ 'getstring',
531
+ 'gettriple',
532
+ 'gluon',
533
+ 'gouraudshade',
534
+ 'graph',
535
+ 'graphic',
536
+ 'gray',
537
+ 'grestore',
538
+ 'grid',
539
+ 'grid3',
540
+ 'gsave',
541
+ 'halfbox',
542
+ 'hatch',
543
+ 'hdiffdiv',
544
+ 'hermite',
545
+ 'hex',
546
+ 'histogram',
547
+ 'history',
548
+ 'hline',
549
+ 'hprojection',
550
+ 'hsv',
551
+ 'hyperbola',
552
+ 'hyperbolanodesnumber',
553
+ 'hyperlink',
554
+ 'hypot',
555
+ 'identity',
556
+ 'image',
557
+ 'incenter',
558
+ 'incentral',
559
+ 'incircle',
560
+ 'increasing',
561
+ 'incrementposition',
562
+ 'indexedTransform',
563
+ 'indexedfigure',
564
+ 'initXasyMode',
565
+ 'initdefaults',
566
+ 'input',
567
+ 'inradius',
568
+ 'insert',
569
+ 'inside',
570
+ 'integrate',
571
+ 'interactive',
572
+ 'interior',
573
+ 'interp',
574
+ 'interpolate',
575
+ 'intersect',
576
+ 'intersection',
577
+ 'intersectionpoint',
578
+ 'intersectionpoints',
579
+ 'intersections',
580
+ 'intouch',
581
+ 'inverse',
582
+ 'inversion',
583
+ 'invisible',
584
+ 'is3D',
585
+ 'isDuplicate',
586
+ 'isogonal',
587
+ 'isogonalconjugate',
588
+ 'isotomic',
589
+ 'isotomicconjugate',
590
+ 'isparabola',
591
+ 'italic',
592
+ 'item',
593
+ 'key',
594
+ 'kurtosis',
595
+ 'kurtosisexcess',
596
+ 'label',
597
+ 'labelaxis',
598
+ 'labelmargin',
599
+ 'labelpath',
600
+ 'labels',
601
+ 'labeltick',
602
+ 'labelx',
603
+ 'labelx3',
604
+ 'labely',
605
+ 'labely3',
606
+ 'labelz',
607
+ 'labelz3',
608
+ 'lastcut',
609
+ 'latex',
610
+ 'latitude',
611
+ 'latticeshade',
612
+ 'layer',
613
+ 'layout',
614
+ 'ldexp',
615
+ 'leastsquares',
616
+ 'legend',
617
+ 'legenditem',
618
+ 'length',
619
+ 'lift',
620
+ 'light',
621
+ 'limits',
622
+ 'line',
623
+ 'linear',
624
+ 'linecap',
625
+ 'lineinversion',
626
+ 'linejoin',
627
+ 'linemargin',
628
+ 'lineskip',
629
+ 'linetype',
630
+ 'linewidth',
631
+ 'link',
632
+ 'list',
633
+ 'lm_enorm',
634
+ 'lm_evaluate_default',
635
+ 'lm_lmdif',
636
+ 'lm_lmpar',
637
+ 'lm_minimize',
638
+ 'lm_print_default',
639
+ 'lm_print_quiet',
640
+ 'lm_qrfac',
641
+ 'lm_qrsolv',
642
+ 'locale',
643
+ 'locate',
644
+ 'locatefile',
645
+ 'location',
646
+ 'log',
647
+ 'log10',
648
+ 'log1p',
649
+ 'logaxiscoverage',
650
+ 'longitude',
651
+ 'lookup',
652
+ 'magnetize',
653
+ 'makeNode',
654
+ 'makedraw',
655
+ 'makepen',
656
+ 'map',
657
+ 'margin',
658
+ 'markangle',
659
+ 'markangleradius',
660
+ 'markanglespace',
661
+ 'markarc',
662
+ 'marker',
663
+ 'markinterval',
664
+ 'marknodes',
665
+ 'markrightangle',
666
+ 'markuniform',
667
+ 'mass',
668
+ 'masscenter',
669
+ 'massformat',
670
+ 'math',
671
+ 'max',
672
+ 'max3',
673
+ 'maxbezier',
674
+ 'maxbound',
675
+ 'maxcoords',
676
+ 'maxlength',
677
+ 'maxratio',
678
+ 'maxtimes',
679
+ 'mean',
680
+ 'medial',
681
+ 'median',
682
+ 'midpoint',
683
+ 'min',
684
+ 'min3',
685
+ 'minbezier',
686
+ 'minbound',
687
+ 'minipage',
688
+ 'minratio',
689
+ 'mintimes',
690
+ 'miterlimit',
691
+ 'momArrowPath',
692
+ 'momarrowsize',
693
+ 'monotonic',
694
+ 'multifigure',
695
+ 'nativeformat',
696
+ 'natural',
697
+ 'needshipout',
698
+ 'newl',
699
+ 'newpage',
700
+ 'newslide',
701
+ 'newton',
702
+ 'newtree',
703
+ 'nextframe',
704
+ 'nextnormal',
705
+ 'nextpage',
706
+ 'nib',
707
+ 'nodabscissa',
708
+ 'none',
709
+ 'norm',
710
+ 'normalvideo',
711
+ 'notaknot',
712
+ 'nowarn',
713
+ 'numberpage',
714
+ 'nurb',
715
+ 'object',
716
+ 'offset',
717
+ 'onpath',
718
+ 'opacity',
719
+ 'opposite',
720
+ 'orientation',
721
+ 'orig_circlenodesnumber',
722
+ 'orig_circlenodesnumber1',
723
+ 'orig_draw',
724
+ 'orig_ellipsenodesnumber',
725
+ 'orig_ellipsenodesnumber1',
726
+ 'orig_hyperbolanodesnumber',
727
+ 'orig_parabolanodesnumber',
728
+ 'origin',
729
+ 'orthic',
730
+ 'orthocentercenter',
731
+ 'outformat',
732
+ 'outline',
733
+ 'outprefix',
734
+ 'output',
735
+ 'overloadedMessage',
736
+ 'overwrite',
737
+ 'pack',
738
+ 'pad',
739
+ 'pairs',
740
+ 'palette',
741
+ 'parabola',
742
+ 'parabolanodesnumber',
743
+ 'parallel',
744
+ 'partialsum',
745
+ 'path',
746
+ 'path3',
747
+ 'pattern',
748
+ 'pause',
749
+ 'pdf',
750
+ 'pedal',
751
+ 'periodic',
752
+ 'perp',
753
+ 'perpendicular',
754
+ 'perpendicularmark',
755
+ 'phantom',
756
+ 'phi1',
757
+ 'phi2',
758
+ 'phi3',
759
+ 'photon',
760
+ 'piecewisestraight',
761
+ 'point',
762
+ 'polar',
763
+ 'polarconicroutine',
764
+ 'polargraph',
765
+ 'polygon',
766
+ 'postcontrol',
767
+ 'postscript',
768
+ 'pow10',
769
+ 'ppoint',
770
+ 'prc',
771
+ 'prc0',
772
+ 'precision',
773
+ 'precontrol',
774
+ 'prepend',
775
+ 'print_random_addresses',
776
+ 'project',
777
+ 'projection',
778
+ 'purge',
779
+ 'pwhermite',
780
+ 'quadrant',
781
+ 'quadraticroots',
782
+ 'quantize',
783
+ 'quarticroots',
784
+ 'quotient',
785
+ 'radialshade',
786
+ 'radians',
787
+ 'radicalcenter',
788
+ 'radicalline',
789
+ 'radius',
790
+ 'rand',
791
+ 'randompath',
792
+ 'rd',
793
+ 'readline',
794
+ 'realmult',
795
+ 'realquarticroots',
796
+ 'rectangle',
797
+ 'rectangular',
798
+ 'rectify',
799
+ 'reflect',
800
+ 'relabscissa',
801
+ 'relative',
802
+ 'relativedistance',
803
+ 'reldir',
804
+ 'relpoint',
805
+ 'reltime',
806
+ 'remainder',
807
+ 'remark',
808
+ 'removeDuplicates',
809
+ 'rename',
810
+ 'replace',
811
+ 'report',
812
+ 'resetdefaultpen',
813
+ 'restore',
814
+ 'restoredefaults',
815
+ 'reverse',
816
+ 'reversevideo',
817
+ 'rf',
818
+ 'rfind',
819
+ 'rgb',
820
+ 'rgba',
821
+ 'rgbint',
822
+ 'rms',
823
+ 'rotate',
824
+ 'rotateO',
825
+ 'rotation',
826
+ 'round',
827
+ 'roundbox',
828
+ 'roundedpath',
829
+ 'roundrectangle',
830
+ 'samecoordsys',
831
+ 'sameside',
832
+ 'sample',
833
+ 'save',
834
+ 'savedefaults',
835
+ 'saveline',
836
+ 'scale',
837
+ 'scale3',
838
+ 'scaleO',
839
+ 'scaleT',
840
+ 'scaleless',
841
+ 'scientific',
842
+ 'search',
843
+ 'searchtree',
844
+ 'sec',
845
+ 'secondaryX',
846
+ 'secondaryY',
847
+ 'seconds',
848
+ 'section',
849
+ 'sector',
850
+ 'seek',
851
+ 'seekeof',
852
+ 'segment',
853
+ 'sequence',
854
+ 'setpens',
855
+ 'sgn',
856
+ 'sgnd',
857
+ 'sharpangle',
858
+ 'sharpdegrees',
859
+ 'shift',
860
+ 'shiftless',
861
+ 'shipout',
862
+ 'shipout3',
863
+ 'show',
864
+ 'side',
865
+ 'simeq',
866
+ 'simpson',
867
+ 'sin',
868
+ 'single',
869
+ 'sinh',
870
+ 'size',
871
+ 'size3',
872
+ 'skewness',
873
+ 'skip',
874
+ 'slant',
875
+ 'sleep',
876
+ 'slope',
877
+ 'slopefield',
878
+ 'solve',
879
+ 'solveBVP',
880
+ 'sort',
881
+ 'sourceline',
882
+ 'sphere',
883
+ 'split',
884
+ 'sqrt',
885
+ 'square',
886
+ 'srand',
887
+ 'standardizecoordsys',
888
+ 'startScript',
889
+ 'startTrembling',
890
+ 'stdev',
891
+ 'step',
892
+ 'stickframe',
893
+ 'stickmarksize',
894
+ 'stickmarkspace',
895
+ 'stop',
896
+ 'straight',
897
+ 'straightness',
898
+ 'string',
899
+ 'stripdirectory',
900
+ 'stripextension',
901
+ 'stripfile',
902
+ 'strokepath',
903
+ 'subdivide',
904
+ 'subitem',
905
+ 'subpath',
906
+ 'substr',
907
+ 'sum',
908
+ 'surface',
909
+ 'symmedial',
910
+ 'symmedian',
911
+ 'system',
912
+ 'tab',
913
+ 'tableau',
914
+ 'tan',
915
+ 'tangent',
916
+ 'tangential',
917
+ 'tangents',
918
+ 'tanh',
919
+ 'tell',
920
+ 'tensionSpecifier',
921
+ 'tensorshade',
922
+ 'tex',
923
+ 'texcolor',
924
+ 'texify',
925
+ 'texpath',
926
+ 'texpreamble',
927
+ 'texreset',
928
+ 'texshipout',
929
+ 'texsize',
930
+ 'textpath',
931
+ 'thick',
932
+ 'thin',
933
+ 'tick',
934
+ 'tickMax',
935
+ 'tickMax3',
936
+ 'tickMin',
937
+ 'tickMin3',
938
+ 'ticklabelshift',
939
+ 'ticklocate',
940
+ 'tildeframe',
941
+ 'tildemarksize',
942
+ 'tile',
943
+ 'tiling',
944
+ 'time',
945
+ 'times',
946
+ 'title',
947
+ 'titlepage',
948
+ 'topbox',
949
+ 'transform',
950
+ 'transformation',
951
+ 'transpose',
952
+ 'tremble',
953
+ 'trembleFuzz',
954
+ 'tremble_circlenodesnumber',
955
+ 'tremble_circlenodesnumber1',
956
+ 'tremble_draw',
957
+ 'tremble_ellipsenodesnumber',
958
+ 'tremble_ellipsenodesnumber1',
959
+ 'tremble_hyperbolanodesnumber',
960
+ 'tremble_marknodes',
961
+ 'tremble_markuniform',
962
+ 'tremble_parabolanodesnumber',
963
+ 'triangle',
964
+ 'triangleAbc',
965
+ 'triangleabc',
966
+ 'triangulate',
967
+ 'tricoef',
968
+ 'tridiagonal',
969
+ 'trilinear',
970
+ 'trim',
971
+ 'trueMagnetize',
972
+ 'truepoint',
973
+ 'tube',
974
+ 'uncycle',
975
+ 'unfill',
976
+ 'uniform',
977
+ 'unit',
978
+ 'unitrand',
979
+ 'unitsize',
980
+ 'unityroot',
981
+ 'unstraighten',
982
+ 'upcase',
983
+ 'updatefunction',
984
+ 'uperiodic',
985
+ 'upscale',
986
+ 'uptodate',
987
+ 'usepackage',
988
+ 'usersetting',
989
+ 'usetypescript',
990
+ 'usleep',
991
+ 'value',
992
+ 'variance',
993
+ 'variancebiased',
994
+ 'vbox',
995
+ 'vector',
996
+ 'vectorfield',
997
+ 'verbatim',
998
+ 'view',
999
+ 'vline',
1000
+ 'vperiodic',
1001
+ 'vprojection',
1002
+ 'warn',
1003
+ 'warning',
1004
+ 'windingnumber',
1005
+ 'write',
1006
+ 'xaxis',
1007
+ 'xaxis3',
1008
+ 'xaxis3At',
1009
+ 'xaxisAt',
1010
+ 'xequals',
1011
+ 'xinput',
1012
+ 'xlimits',
1013
+ 'xoutput',
1014
+ 'xpart',
1015
+ 'xscale',
1016
+ 'xscaleO',
1017
+ 'xtick',
1018
+ 'xtick3',
1019
+ 'xtrans',
1020
+ 'yaxis',
1021
+ 'yaxis3',
1022
+ 'yaxis3At',
1023
+ 'yaxisAt',
1024
+ 'yequals',
1025
+ 'ylimits',
1026
+ 'ypart',
1027
+ 'yscale',
1028
+ 'yscaleO',
1029
+ 'ytick',
1030
+ 'ytick3',
1031
+ 'ytrans',
1032
+ 'zaxis3',
1033
+ 'zaxis3At',
1034
+ 'zero',
1035
+ 'zero3',
1036
+ 'zlimits',
1037
+ 'zpart',
1038
+ 'ztick',
1039
+ 'ztick3',
1040
+ 'ztrans'
1041
+ ))
1042
+
1043
+ ASYVARNAME = set((
1044
+ 'AliceBlue',
1045
+ 'Align',
1046
+ 'Allow',
1047
+ 'AntiqueWhite',
1048
+ 'Apricot',
1049
+ 'Aqua',
1050
+ 'Aquamarine',
1051
+ 'Aspect',
1052
+ 'Azure',
1053
+ 'BeginPoint',
1054
+ 'Beige',
1055
+ 'Bisque',
1056
+ 'Bittersweet',
1057
+ 'Black',
1058
+ 'BlanchedAlmond',
1059
+ 'Blue',
1060
+ 'BlueGreen',
1061
+ 'BlueViolet',
1062
+ 'Both',
1063
+ 'Break',
1064
+ 'BrickRed',
1065
+ 'Brown',
1066
+ 'BurlyWood',
1067
+ 'BurntOrange',
1068
+ 'CCW',
1069
+ 'CW',
1070
+ 'CadetBlue',
1071
+ 'CarnationPink',
1072
+ 'Center',
1073
+ 'Centered',
1074
+ 'Cerulean',
1075
+ 'Chartreuse',
1076
+ 'Chocolate',
1077
+ 'Coeff',
1078
+ 'Coral',
1079
+ 'CornflowerBlue',
1080
+ 'Cornsilk',
1081
+ 'Crimson',
1082
+ 'Crop',
1083
+ 'Cyan',
1084
+ 'Dandelion',
1085
+ 'DarkBlue',
1086
+ 'DarkCyan',
1087
+ 'DarkGoldenrod',
1088
+ 'DarkGray',
1089
+ 'DarkGreen',
1090
+ 'DarkKhaki',
1091
+ 'DarkMagenta',
1092
+ 'DarkOliveGreen',
1093
+ 'DarkOrange',
1094
+ 'DarkOrchid',
1095
+ 'DarkRed',
1096
+ 'DarkSalmon',
1097
+ 'DarkSeaGreen',
1098
+ 'DarkSlateBlue',
1099
+ 'DarkSlateGray',
1100
+ 'DarkTurquoise',
1101
+ 'DarkViolet',
1102
+ 'DeepPink',
1103
+ 'DeepSkyBlue',
1104
+ 'DefaultHead',
1105
+ 'DimGray',
1106
+ 'DodgerBlue',
1107
+ 'Dotted',
1108
+ 'Draw',
1109
+ 'E',
1110
+ 'ENE',
1111
+ 'EPS',
1112
+ 'ESE',
1113
+ 'E_Euler',
1114
+ 'E_PC',
1115
+ 'E_RK2',
1116
+ 'E_RK3BS',
1117
+ 'Emerald',
1118
+ 'EndPoint',
1119
+ 'Euler',
1120
+ 'Fill',
1121
+ 'FillDraw',
1122
+ 'FireBrick',
1123
+ 'FloralWhite',
1124
+ 'ForestGreen',
1125
+ 'Fuchsia',
1126
+ 'Gainsboro',
1127
+ 'GhostWhite',
1128
+ 'Gold',
1129
+ 'Goldenrod',
1130
+ 'Gray',
1131
+ 'Green',
1132
+ 'GreenYellow',
1133
+ 'Honeydew',
1134
+ 'HookHead',
1135
+ 'Horizontal',
1136
+ 'HotPink',
1137
+ 'I',
1138
+ 'IgnoreAspect',
1139
+ 'IndianRed',
1140
+ 'Indigo',
1141
+ 'Ivory',
1142
+ 'JOIN_IN',
1143
+ 'JOIN_OUT',
1144
+ 'JungleGreen',
1145
+ 'Khaki',
1146
+ 'LM_DWARF',
1147
+ 'LM_MACHEP',
1148
+ 'LM_SQRT_DWARF',
1149
+ 'LM_SQRT_GIANT',
1150
+ 'LM_USERTOL',
1151
+ 'Label',
1152
+ 'Lavender',
1153
+ 'LavenderBlush',
1154
+ 'LawnGreen',
1155
+ 'LeftJustified',
1156
+ 'LeftSide',
1157
+ 'LemonChiffon',
1158
+ 'LightBlue',
1159
+ 'LightCoral',
1160
+ 'LightCyan',
1161
+ 'LightGoldenrodYellow',
1162
+ 'LightGreen',
1163
+ 'LightGrey',
1164
+ 'LightPink',
1165
+ 'LightSalmon',
1166
+ 'LightSeaGreen',
1167
+ 'LightSkyBlue',
1168
+ 'LightSlateGray',
1169
+ 'LightSteelBlue',
1170
+ 'LightYellow',
1171
+ 'Lime',
1172
+ 'LimeGreen',
1173
+ 'Linear',
1174
+ 'Linen',
1175
+ 'Log',
1176
+ 'Logarithmic',
1177
+ 'Magenta',
1178
+ 'Mahogany',
1179
+ 'Mark',
1180
+ 'MarkFill',
1181
+ 'Maroon',
1182
+ 'Max',
1183
+ 'MediumAquamarine',
1184
+ 'MediumBlue',
1185
+ 'MediumOrchid',
1186
+ 'MediumPurple',
1187
+ 'MediumSeaGreen',
1188
+ 'MediumSlateBlue',
1189
+ 'MediumSpringGreen',
1190
+ 'MediumTurquoise',
1191
+ 'MediumVioletRed',
1192
+ 'Melon',
1193
+ 'MidPoint',
1194
+ 'MidnightBlue',
1195
+ 'Min',
1196
+ 'MintCream',
1197
+ 'MistyRose',
1198
+ 'Moccasin',
1199
+ 'Move',
1200
+ 'MoveQuiet',
1201
+ 'Mulberry',
1202
+ 'N',
1203
+ 'NE',
1204
+ 'NNE',
1205
+ 'NNW',
1206
+ 'NW',
1207
+ 'NavajoWhite',
1208
+ 'Navy',
1209
+ 'NavyBlue',
1210
+ 'NoAlign',
1211
+ 'NoCrop',
1212
+ 'NoFill',
1213
+ 'NoSide',
1214
+ 'OldLace',
1215
+ 'Olive',
1216
+ 'OliveDrab',
1217
+ 'OliveGreen',
1218
+ 'Orange',
1219
+ 'OrangeRed',
1220
+ 'Orchid',
1221
+ 'Ox',
1222
+ 'Oy',
1223
+ 'PC',
1224
+ 'PaleGoldenrod',
1225
+ 'PaleGreen',
1226
+ 'PaleTurquoise',
1227
+ 'PaleVioletRed',
1228
+ 'PapayaWhip',
1229
+ 'Peach',
1230
+ 'PeachPuff',
1231
+ 'Periwinkle',
1232
+ 'Peru',
1233
+ 'PineGreen',
1234
+ 'Pink',
1235
+ 'Plum',
1236
+ 'PowderBlue',
1237
+ 'ProcessBlue',
1238
+ 'Purple',
1239
+ 'RK2',
1240
+ 'RK3',
1241
+ 'RK3BS',
1242
+ 'RK4',
1243
+ 'RK5',
1244
+ 'RK5DP',
1245
+ 'RK5F',
1246
+ 'RawSienna',
1247
+ 'Red',
1248
+ 'RedOrange',
1249
+ 'RedViolet',
1250
+ 'Rhodamine',
1251
+ 'RightJustified',
1252
+ 'RightSide',
1253
+ 'RosyBrown',
1254
+ 'RoyalBlue',
1255
+ 'RoyalPurple',
1256
+ 'RubineRed',
1257
+ 'S',
1258
+ 'SE',
1259
+ 'SSE',
1260
+ 'SSW',
1261
+ 'SW',
1262
+ 'SaddleBrown',
1263
+ 'Salmon',
1264
+ 'SandyBrown',
1265
+ 'SeaGreen',
1266
+ 'Seashell',
1267
+ 'Sepia',
1268
+ 'Sienna',
1269
+ 'Silver',
1270
+ 'SimpleHead',
1271
+ 'SkyBlue',
1272
+ 'SlateBlue',
1273
+ 'SlateGray',
1274
+ 'Snow',
1275
+ 'SpringGreen',
1276
+ 'SteelBlue',
1277
+ 'Suppress',
1278
+ 'SuppressQuiet',
1279
+ 'Tan',
1280
+ 'TeXHead',
1281
+ 'Teal',
1282
+ 'TealBlue',
1283
+ 'Thistle',
1284
+ 'Ticksize',
1285
+ 'Tomato',
1286
+ 'Turquoise',
1287
+ 'UnFill',
1288
+ 'VERSION',
1289
+ 'Value',
1290
+ 'Vertical',
1291
+ 'Violet',
1292
+ 'VioletRed',
1293
+ 'W',
1294
+ 'WNW',
1295
+ 'WSW',
1296
+ 'Wheat',
1297
+ 'White',
1298
+ 'WhiteSmoke',
1299
+ 'WildStrawberry',
1300
+ 'XYAlign',
1301
+ 'YAlign',
1302
+ 'Yellow',
1303
+ 'YellowGreen',
1304
+ 'YellowOrange',
1305
+ 'addpenarc',
1306
+ 'addpenline',
1307
+ 'align',
1308
+ 'allowstepping',
1309
+ 'angularsystem',
1310
+ 'animationdelay',
1311
+ 'appendsuffix',
1312
+ 'arcarrowangle',
1313
+ 'arcarrowfactor',
1314
+ 'arrow2sizelimit',
1315
+ 'arrowangle',
1316
+ 'arrowbarb',
1317
+ 'arrowdir',
1318
+ 'arrowfactor',
1319
+ 'arrowhookfactor',
1320
+ 'arrowlength',
1321
+ 'arrowsizelimit',
1322
+ 'arrowtexfactor',
1323
+ 'authorpen',
1324
+ 'axis',
1325
+ 'axiscoverage',
1326
+ 'axislabelfactor',
1327
+ 'background',
1328
+ 'backgroundcolor',
1329
+ 'backgroundpen',
1330
+ 'barfactor',
1331
+ 'barmarksizefactor',
1332
+ 'basealign',
1333
+ 'baselinetemplate',
1334
+ 'beveljoin',
1335
+ 'bigvertexpen',
1336
+ 'bigvertexsize',
1337
+ 'black',
1338
+ 'blue',
1339
+ 'bm',
1340
+ 'bottom',
1341
+ 'bp',
1342
+ 'brown',
1343
+ 'bullet',
1344
+ 'byfoci',
1345
+ 'byvertices',
1346
+ 'camerafactor',
1347
+ 'chartreuse',
1348
+ 'circlemarkradiusfactor',
1349
+ 'circlenodesnumberfactor',
1350
+ 'circleprecision',
1351
+ 'circlescale',
1352
+ 'cm',
1353
+ 'codefile',
1354
+ 'codepen',
1355
+ 'codeskip',
1356
+ 'colorPen',
1357
+ 'coloredNodes',
1358
+ 'coloredSegments',
1359
+ 'conditionlength',
1360
+ 'conicnodesfactor',
1361
+ 'count',
1362
+ 'cputimeformat',
1363
+ 'crossmarksizefactor',
1364
+ 'currentcoordsys',
1365
+ 'currentlight',
1366
+ 'currentpatterns',
1367
+ 'currentpen',
1368
+ 'currentpicture',
1369
+ 'currentposition',
1370
+ 'currentprojection',
1371
+ 'curvilinearsystem',
1372
+ 'cuttings',
1373
+ 'cyan',
1374
+ 'darkblue',
1375
+ 'darkbrown',
1376
+ 'darkcyan',
1377
+ 'darkgray',
1378
+ 'darkgreen',
1379
+ 'darkgrey',
1380
+ 'darkmagenta',
1381
+ 'darkolive',
1382
+ 'darkred',
1383
+ 'dashdotted',
1384
+ 'dashed',
1385
+ 'datepen',
1386
+ 'dateskip',
1387
+ 'debuggerlines',
1388
+ 'debugging',
1389
+ 'deepblue',
1390
+ 'deepcyan',
1391
+ 'deepgray',
1392
+ 'deepgreen',
1393
+ 'deepgrey',
1394
+ 'deepmagenta',
1395
+ 'deepred',
1396
+ 'default',
1397
+ 'defaultControl',
1398
+ 'defaultS',
1399
+ 'defaultbackpen',
1400
+ 'defaultcoordsys',
1401
+ 'defaultfilename',
1402
+ 'defaultformat',
1403
+ 'defaultmassformat',
1404
+ 'defaultpen',
1405
+ 'diagnostics',
1406
+ 'differentlengths',
1407
+ 'dot',
1408
+ 'dotfactor',
1409
+ 'dotframe',
1410
+ 'dotted',
1411
+ 'doublelinepen',
1412
+ 'doublelinespacing',
1413
+ 'down',
1414
+ 'duplicateFuzz',
1415
+ 'ellipsenodesnumberfactor',
1416
+ 'eps',
1417
+ 'epsgeo',
1418
+ 'epsilon',
1419
+ 'evenodd',
1420
+ 'extendcap',
1421
+ 'fermionpen',
1422
+ 'figureborder',
1423
+ 'figuremattpen',
1424
+ 'firstnode',
1425
+ 'firststep',
1426
+ 'foregroundcolor',
1427
+ 'fuchsia',
1428
+ 'fuzz',
1429
+ 'gapfactor',
1430
+ 'ghostpen',
1431
+ 'gluonamplitude',
1432
+ 'gluonpen',
1433
+ 'gluonratio',
1434
+ 'gray',
1435
+ 'green',
1436
+ 'grey',
1437
+ 'hatchepsilon',
1438
+ 'havepagenumber',
1439
+ 'heavyblue',
1440
+ 'heavycyan',
1441
+ 'heavygray',
1442
+ 'heavygreen',
1443
+ 'heavygrey',
1444
+ 'heavymagenta',
1445
+ 'heavyred',
1446
+ 'hline',
1447
+ 'hwratio',
1448
+ 'hyperbolanodesnumberfactor',
1449
+ 'identity4',
1450
+ 'ignore',
1451
+ 'inXasyMode',
1452
+ 'inch',
1453
+ 'inches',
1454
+ 'includegraphicscommand',
1455
+ 'inf',
1456
+ 'infinity',
1457
+ 'institutionpen',
1458
+ 'intMax',
1459
+ 'intMin',
1460
+ 'invert',
1461
+ 'invisible',
1462
+ 'itempen',
1463
+ 'itemskip',
1464
+ 'itemstep',
1465
+ 'labelmargin',
1466
+ 'landscape',
1467
+ 'lastnode',
1468
+ 'left',
1469
+ 'legendhskip',
1470
+ 'legendlinelength',
1471
+ 'legendmargin',
1472
+ 'legendmarkersize',
1473
+ 'legendmaxrelativewidth',
1474
+ 'legendvskip',
1475
+ 'lightblue',
1476
+ 'lightcyan',
1477
+ 'lightgray',
1478
+ 'lightgreen',
1479
+ 'lightgrey',
1480
+ 'lightmagenta',
1481
+ 'lightolive',
1482
+ 'lightred',
1483
+ 'lightyellow',
1484
+ 'linemargin',
1485
+ 'lm_infmsg',
1486
+ 'lm_shortmsg',
1487
+ 'longdashdotted',
1488
+ 'longdashed',
1489
+ 'magenta',
1490
+ 'magneticPoints',
1491
+ 'magneticRadius',
1492
+ 'mantissaBits',
1493
+ 'markangleradius',
1494
+ 'markangleradiusfactor',
1495
+ 'markanglespace',
1496
+ 'markanglespacefactor',
1497
+ 'mediumblue',
1498
+ 'mediumcyan',
1499
+ 'mediumgray',
1500
+ 'mediumgreen',
1501
+ 'mediumgrey',
1502
+ 'mediummagenta',
1503
+ 'mediumred',
1504
+ 'mediumyellow',
1505
+ 'middle',
1506
+ 'minDistDefault',
1507
+ 'minblockheight',
1508
+ 'minblockwidth',
1509
+ 'mincirclediameter',
1510
+ 'minipagemargin',
1511
+ 'minipagewidth',
1512
+ 'minvertexangle',
1513
+ 'miterjoin',
1514
+ 'mm',
1515
+ 'momarrowfactor',
1516
+ 'momarrowlength',
1517
+ 'momarrowmargin',
1518
+ 'momarrowoffset',
1519
+ 'momarrowpen',
1520
+ 'monoPen',
1521
+ 'morepoints',
1522
+ 'nCircle',
1523
+ 'newbulletcolor',
1524
+ 'ngraph',
1525
+ 'nil',
1526
+ 'nmesh',
1527
+ 'nobasealign',
1528
+ 'nodeMarginDefault',
1529
+ 'nodesystem',
1530
+ 'nomarker',
1531
+ 'nopoint',
1532
+ 'noprimary',
1533
+ 'nullpath',
1534
+ 'nullpen',
1535
+ 'numarray',
1536
+ 'ocgindex',
1537
+ 'oldbulletcolor',
1538
+ 'olive',
1539
+ 'orange',
1540
+ 'origin',
1541
+ 'overpaint',
1542
+ 'page',
1543
+ 'pageheight',
1544
+ 'pagemargin',
1545
+ 'pagenumberalign',
1546
+ 'pagenumberpen',
1547
+ 'pagenumberposition',
1548
+ 'pagewidth',
1549
+ 'paleblue',
1550
+ 'palecyan',
1551
+ 'palegray',
1552
+ 'palegreen',
1553
+ 'palegrey',
1554
+ 'palemagenta',
1555
+ 'palered',
1556
+ 'paleyellow',
1557
+ 'parabolanodesnumberfactor',
1558
+ 'perpfactor',
1559
+ 'phi',
1560
+ 'photonamplitude',
1561
+ 'photonpen',
1562
+ 'photonratio',
1563
+ 'pi',
1564
+ 'pink',
1565
+ 'plain',
1566
+ 'plus',
1567
+ 'preamblenodes',
1568
+ 'pt',
1569
+ 'purple',
1570
+ 'r3',
1571
+ 'r4a',
1572
+ 'r4b',
1573
+ 'randMax',
1574
+ 'realDigits',
1575
+ 'realEpsilon',
1576
+ 'realMax',
1577
+ 'realMin',
1578
+ 'red',
1579
+ 'relativesystem',
1580
+ 'reverse',
1581
+ 'right',
1582
+ 'roundcap',
1583
+ 'roundjoin',
1584
+ 'royalblue',
1585
+ 'salmon',
1586
+ 'saveFunctions',
1587
+ 'scalarpen',
1588
+ 'sequencereal',
1589
+ 'settings',
1590
+ 'shipped',
1591
+ 'signedtrailingzero',
1592
+ 'solid',
1593
+ 'springgreen',
1594
+ 'sqrtEpsilon',
1595
+ 'squarecap',
1596
+ 'squarepen',
1597
+ 'startposition',
1598
+ 'stdin',
1599
+ 'stdout',
1600
+ 'stepfactor',
1601
+ 'stepfraction',
1602
+ 'steppagenumberpen',
1603
+ 'stepping',
1604
+ 'stickframe',
1605
+ 'stickmarksizefactor',
1606
+ 'stickmarkspacefactor',
1607
+ 'textpen',
1608
+ 'ticksize',
1609
+ 'tildeframe',
1610
+ 'tildemarksizefactor',
1611
+ 'tinv',
1612
+ 'titlealign',
1613
+ 'titlepagepen',
1614
+ 'titlepageposition',
1615
+ 'titlepen',
1616
+ 'titleskip',
1617
+ 'top',
1618
+ 'trailingzero',
1619
+ 'treeLevelStep',
1620
+ 'treeMinNodeWidth',
1621
+ 'treeNodeStep',
1622
+ 'trembleAngle',
1623
+ 'trembleFrequency',
1624
+ 'trembleRandom',
1625
+ 'tremblingMode',
1626
+ 'undefined',
1627
+ 'unitcircle',
1628
+ 'unitsquare',
1629
+ 'up',
1630
+ 'urlpen',
1631
+ 'urlskip',
1632
+ 'version',
1633
+ 'vertexpen',
1634
+ 'vertexsize',
1635
+ 'viewportmargin',
1636
+ 'viewportsize',
1637
+ 'vline',
1638
+ 'white',
1639
+ 'wye',
1640
+ 'xformStack',
1641
+ 'yellow',
1642
+ 'ylabelwidth',
1643
+ 'zerotickfuzz',
1644
+ 'zerowinding'
1645
+ ))