emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Bug: Org Table Performance Issue/Regression
@ 2018-06-10 19:04 Tim Baumgard
  2018-06-26  9:58 ` Nicolas Goaziou
  0 siblings, 1 reply; 5+ messages in thread
From: Tim Baumgard @ 2018-06-10 19:04 UTC (permalink / raw)
  To: emacs-orgmode

I recently updated Emacs from 25.3 (Org mode v. 8.2.10) to 26.1 (Org mode
v. 9.1.9) and noticed a performance issue/regression in one of my Org files that
contains a table that currently has nine columns, around 1,200 rows, and uses
formulas. In 25.3, I could create a new row or use org-table-copy-down without
issues. In 26.1, there’s a multi-second delay each time I try to do either of
these things. As mentioned below, this issue also occurs in the latest commits
to both Emacs and Org mode.

I did some profiling and found that garbage-collect was being called quite a
bit. I set gc-cons-threshold in both versions to a large value to effectively
disable garbage collection and noticed two things: 1) it largely fixed the
performance issues—though performance still wasn’t as good as it was in 25.3—and
2) Emacs/Org mode was using about four times as much memory as it did after
creating a new row and doing calling org-table-copy-down three
times. Specifically, Emacs 25.3 was using a little under 200 MB and Emacs 26.3
was using a around 800 MB.

I also noticed that Org mode is recalculating the table formulas more often than
in past versions. It used to be that it would only recalculate the formulas for
the whole table when I called org-table-recalculate, but after testing some
things and then diff’ing the files, I noticed that other rows were being updated
based on the table formulas I’m using. I’m unsure if this is related.

For what it’s worth, using the Org mode files from Emacs 25.3 in 26.1 doesn’t
display the performance issue, but there are other issues that make it a poor
workaround. What I’m currently doing to work around this for my use case is,
only for this file, setting gc-cons-threshold to a large value and adding a hook
to after-save-hook to call garbage-collect since calling it once when saving
doesn’t take too long.

I’ve inlined a test file and a test init.el file below. The test file includes a
reduced version of the table I’m currently using, including the table TBLFM
line. The init.el file includes the functions required for my table formulas and
how I was using gc-cons-threshold and my workaround. I was still seeing the
issue even without using the formulas, but I thought I'd include them in case
it's helpful.

Some notes:
- All of my testing was done using emacs -Q
- I’m running Emacs on macOS compiled from the sources available on gnu.org. 
- I also tested everything using the latest commits of Emacs
  (efa750e68466fb1bab03028701350a745e0504b6) and Org mode
	(842002f9f7e3246cc285cc9bca1adb715120438d) from the repositories.
- Emacs: GNU Emacs 27.0.50 (build 1, x86_64-apple-darwin17.6.0, NS
  appkit-1561.40 Version 10.13.5 (Build 17F77))
	of 2018-06-10
- Package: Org mode version 9.1.13 (release_9.1.13-791-g842002)


test.org
======

|   | A       | B         | C      | D                         | E                         |        F |   G | H                          |
|---+---------+-----------+--------+---------------------------+---------------------------+----------+-----+----------------------------|
| # | ABCDEFG | HIJKLMNOP | QRSTUV | [2018-06-10 Sun 00:00:00] | [2018-06-10 Sun 02:00:00] | 02:00:00 | 2.0 | ABCDEFGHIJKLMNOPQRSTUVWXYZ |
#+TBLFM: $7='(time-stamp-difference $5 $6)::$8='(time-stamp-difference-hours $5 $6)


init.el
====

(defun time-stamp-difference (earlier-date later-date)
  "Get the difference from two time stamps. This only works when the difference is less than 24 hours."
	(let* ((time-difference
				 (round (- (time-to-seconds (date-to-time later-date))
									 (time-to-seconds (date-to-time earlier-date)))))
				(absolute-time-difference (max time-difference 0)))
		(format-time-string "%T" (encode-time absolute-time-difference 0 0 1 1 1))))

(defun time-stamp-difference-hours (earlier-date later-date)
  "Get the difference from two time stamps in the number of hours."
	(let* ((seconds
				 (- (time-to-seconds (date-to-time later-date))
						(time-to-seconds (date-to-time earlier-date))))
				 (absolute-seconds (max seconds 0))
				 (hours (/ (/ absolute-seconds 60) 60.0)))
		(/ (round (* hours 1000.0)) 1000.0)))

;; This sets the garbage-collection threshold to a large value, effectively
;; disabling it for testing purposes.
;; (setq-default gc-cons-threshold 80000000000)
;; (add-hook 'after-save-hook 'garbage-collect)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Bug: Org Table Performance Issue/Regression
  2018-06-10 19:04 Bug: Org Table Performance Issue/Regression Tim Baumgard
@ 2018-06-26  9:58 ` Nicolas Goaziou
  2018-07-16  2:47   ` Tim Baumgard
  0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Goaziou @ 2018-06-26  9:58 UTC (permalink / raw)
  To: Tim Baumgard; +Cc: emacs-orgmode

Hello,

Tim Baumgard <timbaumgard@me.com> writes:

> I recently updated Emacs from 25.3 (Org mode v. 8.2.10) to 26.1 (Org mode
> v. 9.1.9) and noticed a performance issue/regression in one of my Org files that
> contains a table that currently has nine columns, around 1,200 rows, and uses
> formulas. In 25.3, I could create a new row or use org-table-copy-down without
> issues. In 26.1, there’s a multi-second delay each time I try to do either of
> these things. As mentioned below, this issue also occurs in the latest commits
> to both Emacs and Org mode.
>
> I did some profiling and found that garbage-collect was being called quite a
> bit. I set gc-cons-threshold in both versions to a large value to effectively
> disable garbage collection and noticed two things: 1) it largely fixed the
> performance issues—though performance still wasn’t as good as it was in 25.3—and
> 2) Emacs/Org mode was using about four times as much memory as it did after
> creating a new row and doing calling org-table-copy-down three
> times. Specifically, Emacs 25.3 was using a little under 200 MB and Emacs 26.3
> was using a around 800 MB.

Could you send the result of your profiling (using both Elp and
profiler would be nice) on an uncompiled Org?

Thank you.

Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Bug: Org Table Performance Issue/Regression
  2018-06-26  9:58 ` Nicolas Goaziou
@ 2018-07-16  2:47   ` Tim Baumgard
  2018-09-03  7:59     ` Nicolas Goaziou
  0 siblings, 1 reply; 5+ messages in thread
From: Tim Baumgard @ 2018-07-16  2:47 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1313 bytes --]


> On Jun 26, 2018, at 4:58 AM, Nicolas Goaziou wrote:
> 
> Could you send the result of your profiling (using both Elp and
> profiler would be nice) on an uncompiled Org?

I've attached ten profiler results: Two are from 25.3 with the garbage collector
running normally, two are from 25.3 with the garbage collector "disabled" as
described in my previous email, two are from 26.1 with the garbage collector
running normally, two are from 26.1 with the garbage collector "disabled," and
two are the Elp profiles--I used elp-instrument-package--for both versions.

In case it helps, my process to obtain these has been:

1. I use the test.org file from my previous email with the test row duplicated
   so that it occurs 3500 times. I can't remember how many rows I used in my
   previous tests.
2. I invoke Emacs by calling "Emacs.app/Contents/MacOS/Emacs -Q"
3. I use "M-x load-file" to load the test init.el file I included in my previous
   email, with the last two lines commented out or not depending on what I'm
   testing.
4. I then open the test.org file and go to column A in the last row.
5. I then start one of the profilers, hit enter, hit shift+enter
   (org-table-copy-down), and then get the report from the profiler.

Let me know if I can provide anything else.

Tim


[-- Attachment #2: 25.3-elp --]
[-- Type: application/octet-stream, Size: 5278 bytes --]

org-table-align                                     3           2.8589320000  0.9529773333
org-table-copy-down                                 1           2.096765      2.096765
org-table-maybe-recalculate-line                    2           1.848399      0.9241995
org-table-recalculate                               2           1.848058      0.924029
org-return                                          1           0.822278      0.822278
org-table-next-row                                  1           0.82219       0.82219
org-split-string                                    10510       0.7838239999  7.457...e-05
org-string-width                                    94500       0.2911139999  3.080...e-06
org-table-get-specials                              2           0.0331189999  0.0165594999
org-table-begin                                     7           0.030416      0.0043451428
org-table-insert-row                                1           0.008986      0.008986
org-table-current-dline                             1           0.008727      0.008727
org-table-eval-formula                              4           0.004301      0.00107525
org-activate-dates                                  106         0.0006110000  5.764...e-06
org-unfontify-region                                14          0.0003589999  2.564...e-05
org-table-justify-field-maybe                       5           0.000284      5.680...e-05
org-table-current-column                            20          0.0002839999  1.419...e-05
org-do-emphasis-faces                               14          0.0002510000  1.792...e-05
org-activate-footnote-links                         14          0.000178      1.271...e-05
org-activate-plain-links                            14          0.000177      1.264...e-05
org-table-goto-column                               15          0.000163      1.086...e-05
org-fontify-meta-lines-and-blocks                   16          0.0001599999  9.999...e-06
org-footnote-next-reference-or-definition           14          0.000158      1.128...e-05
org-table-clean-line                                1           0.000156      0.000156
org-fontify-meta-lines-and-blocks-1                 16          0.00013       8.125e-06
org-table-check-inside-data-field                   5           0.0001139999  2.28e-05
org-remove-flyspell-overlays-in                     92          0.0001119999  1.217...e-06
org-hide-wide-columns                               14          8.800...e-05  6.285...e-06
org-table-make-reference                            8           8.7e-05       1.0875e-05
org-activate-angle-links                            14          8.2e-05       5.857...e-06
org-table-get-field                                 4           8.2e-05       2.05e-05
org-do-latex-and-related                            14          7.4e-05       5.285...e-06
org-table-get-stored-formulas                       2           6.500...e-05  3.250...e-05
org-activate-tags                                   14          6.3e-05       4.5e-06
org-table-maybe-eval-formula                        1           5.9e-05       5.9e-05
org-activate-code                                   14          5.600...e-05  4.000...e-06
org-activate-bracket-links                          14          5.500...e-05  3.928...e-06
org-in-src-block-p                                  1           5.3e-05       5.3e-05
org-remove-font-lock-display-properties             14          5.3e-05       3.785...e-06
org-string-nw-p                                     14          4.999...e-05  3.571...e-06
org-at-table-hline-p                                9           4.600...e-05  5.111...e-06
org-at-table-p                                      10          4.500...e-05  4.500...e-06
org-font-lock-add-priority-faces                    14          4.499...e-05  3.214...e-06
org-table-end                                       8           3.400...e-05  4.250...e-06
org-string-match-p                                  14          2.400...e-05  1.714...e-06
org-trim                                            1           2.4e-05       2.4e-05
org-table-fix-formulas                              1           2.4e-05       2.4e-05
org-move-to-column                                  2           2.3e-05       1.15e-05
org-table-formula-substitute-names                  4           2.100...e-05  5.250...e-06
org-before-change-function                          11          1.999...e-05  1.818...e-06
org-table-formula-handle-first/last-rc              8           1.7e-05       2.125e-06
org-at-timestamp-p                                  1           8e-06         8e-06
org-table-rewrite-old-row-references                4           6.999...e-06  1.749...e-06
org-activate-target-links                           14          5.999...e-06  4.285...e-07
org-font-lock-add-tag-faces                         14          5.999...e-06  4.285...e-07
org-font-lock-hook                                  14          4.999...e-06  3.571...e-07
org-fontify-entities                                14          4e-06         2.857...e-07
org-raise-scripts                                   14          4e-06         2.857...e-07
org-table-expand-lhs-ranges                         2           3e-06         1.5e-06

[-- Attachment #3: 25.3-gc-cpu --]
[-- Type: application/octet-stream, Size: 14400 bytes --]


[profiler-profile "24.3" cpu #s(hash-table size 97 test equal rehash-size 1.5 rehash-threshold 0.8 data ([profiler-start funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4 [sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 11 [image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil] 1 [redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1 [read-event sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1 [org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 1 [file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 11 [org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 6 [org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 28 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively] 1 [parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively] 1 [apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-symlink-p file-truename apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-truename file-truename] 3 [define-button-type byte-code require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 1 [byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively] 1 [parse-time-string date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively] 1 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-table-end org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 50 ["#<compiled 0x40ab9697>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 1 ["#<compiled 0x40ab9b17>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 44 [mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 7 [org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 2 [apply "#<compiled 0x40aba897>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 27 [font-lock-extend-jit-lock-region-after-change run-hook-with-args jit-lock-after-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 1 [undo-auto--undoable-change-no-timer undo-auto--undoable-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 1 [org-table-begin org-table-current-dline org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-table-current-dline org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 25 [image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil] 3 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070f9db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil] 2 [org-table-begin org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2 [org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1 [org-table-begin org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-table-end org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3 [org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 49 [org-table-current-column org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil] 1 [timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil] 1 [org-table-make-reference org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 38 ["#<compiled 0x40ab9697>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2 ["#<compiled 0x40ab9b17>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 26 [org-split-string "#<compiled 0x40ab9b17>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3 [mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 6 [org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 6 [apply "#<compiled 0x40aba897>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 19 ["#<compiled 0x40aba897>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [jit-lock-after-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 39 [org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 43 [org-split-string org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 3 ["#<compiled 0x40ab9697>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3 ["#<compiled 0x40ab9b17>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 10 [org-split-string "#<compiled 0x40ab9b17>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4 [mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 6 [org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 4 ["#<compiled 0x40aba897>" mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [apply "#<compiled 0x40aba897>" mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 15 [jit-lock-after-change org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1 [undo-auto--undoable-change-no-timer undo-auto--undoable-change org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [org-string-match-p org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x407025f3>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil] 1 [jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 74 [read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 17 [call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 1 [profiler-cpu-profile profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2 [Automatic\ GC] 356)) (23350 53826 198980 0) nil]

[-- Attachment #4: 25.3-gc-mem --]
[-- Type: application/octet-stream, Size: 77261 bytes --]


[profiler-profile "24.3" memory #s(hash-table size 325 test equal rehash-size 1.5 rehash-threshold 0.8 data ([message profiler-start funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3832 [profiler-start funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 812 [redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 4360 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively] 10450 [ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute] 20795 [image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil] 9858 [kill-this-buffer-enabled-p redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [read-event sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 58 [org-in-src-block-p org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 11264 [org-at-table-p org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1024 [substitute-env-vars substitute-env-in-file-name org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1402 [org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 1024 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-symlink-p file-truename apply let* tramp-completion-run-real-handler if let] 7326 [apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-symlink-p file-truename apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-truename file-truename] 132 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute] 1045 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil] 42 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil] 2025 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil] 58 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil] 2040 [file-truename file-truename file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 88 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil] 2049 [file-truename file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 106 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2059 [file-truename file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 126 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2064 [file-truename file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 136 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2068 [file-truename file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 144 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2082 [file-truename org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 172 [org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 219544 [easy-menu-convert-item-1 easy-menu-convert-item mapcar easy-menu-create-menu easy-menu-do-define org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2212 [do-after-load-evaluation org-table-justify-field-maybe org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 12038 [call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 16 [org-table-get-field org-table-maybe-eval-formula org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-trim org-table-maybe-eval-formula org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-table-maybe-eval-formula org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2200 [org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-table-begin org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1108 [org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 427784 [org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 5331963 [apply org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 56136 [org-split-string org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 10750 [org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 ["#<compiled 0x406ef7f5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-table-formula-handle-first/last-rc "#<compiled 0x406ef7f5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 1216 [org-table-formula-substitute-names "#<compiled 0x406ef7f5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 2048 [org-table-goto-column org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-table-goto-column org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3072 [org-at-table-hline-p org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 2048 [org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 ["#<compiled 0x40090bbd>" called-interactively-p org-table-current-column org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 2112 [org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 13126 [org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-table-rewrite-old-row-references org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-table-make-reference org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 4000 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively] 15886 [substitute-env-vars substitute-env-in-file-name parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively] 1396 [cons let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename parse-time-string] 1056 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-symlink-p file-truename apply let* tramp-completion-run-real-handler if] 305920 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round] 2101 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 42 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let*] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 2025 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 58 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 2040 [file-truename file-truename file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 88 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 2049 [file-truename file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 106 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 2059 [file-truename file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 126 [file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively] 1210 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 2064 [file-truename file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively] 136 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 2073 [file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return] 8372 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively] 2088 [parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively] 23776 [do-after-load-evaluation parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return] 11364 [let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-name-nondirectory file-truename apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-truename file-truename file-truename] 1056 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds -] 1045 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 42 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let*] 2025 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 58 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let*] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 3096 [file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 88 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 2049 [file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 106 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 2059 [file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 126 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 2064 [file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 136 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 2075 [file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively] 158 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 2101 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 2088 [file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively] 184 [cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return] 24036 [let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-symlink-p apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-symlink-p file-truename apply let*] 1056 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds] 1045 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let*] 42 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds -] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round] 2025 [file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 58 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let*] 2040 [file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 88 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let*] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 3105 [file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 106 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 3115 [file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 126 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 2064 [file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 136 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 2078 [file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 164 [require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively] 45628 [byte-code require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 3328 [define-button-type byte-code require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 9512 [elisp--font-lock-flush-elisp-buffers run-hook-with-args do-after-load-evaluation cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 1056 [let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 11 [org-at-table-hline-p org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [run-hook-with-args-until-success called-interactively-p org-table-current-column org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil] 1056 [org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2040 [org-at-table-p org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [parse-time-string date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively] 2112 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [run-hook-with-args-until-success called-interactively-p org-table-current-column org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 1056 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 9353706 [substitute-env-vars substitute-env-in-file-name untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 1264 [let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-symlink-p file-truename apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-truename file-truename file-truename] 1056 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively] 1045 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively] 42 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return] 2025 [file-truename file-truename file-truename file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively] 58 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively] 2040 [file-truename file-truename file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute] 1144 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively] 2049 [file-truename file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil] 106 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute] 2059 [file-truename file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil] 126 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil] 2064 [file-truename file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 136 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil] 2075 [file-truename untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 158 [untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2120 [do-after-load-evaluation untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 11388 [elisp--font-lock-flush-elisp-buffers run-hook-with-args do-after-load-evaluation untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil] 1056 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 5468 ["#<compiled 0x40ab9697>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 2132 [org-split-string "#<compiled 0x40ab9b17>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 7008 ["#<compiled 0x40ab9b17>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 5371908 [apply "#<compiled 0x40aba897>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 3556555 ["#<compiled 0x40aba897>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 76423 [mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 0 [undo-auto--undoable-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1739 [ucs-normalize-region ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 38660 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 4076 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 113296 [jit-lock-after-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 5928 [org-table-goto-column org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2040 [org-at-table-p org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1088 [org-table-clean-line org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 22428 [org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2154 [org-table-begin org-table-current-dline org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1144 [org-table-current-dline org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1178 [org-table-fix-formulas org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2182 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 57030 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) nil nil nil nil nil] 20900 [ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 41590 [image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil] 9054 [kill-this-buffer-enabled-p redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 2048 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil] 1382668 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 39340 [org-activate-angle-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 24748 [org-activate-plain-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 27260 [org-activate-bracket-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 22906 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 25620 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 22784 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 22572 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 39736 [org-string-match-p org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil] 22528 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 22528 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40645173>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 25168 [file-remote-p redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 10240 [org-table-get-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1024 [org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 9127712 [org-table-begin org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1024 [org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1024 [org-at-table-hline-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1024 [org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1024 [org-at-timestamp-p org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1376 [org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1024 [org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 68324 [apply org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 56152 [org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 12362080 [org-split-string org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2048 [org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 ["#<compiled 0x406ef7f5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-formula-handle-first/last-rc "#<compiled 0x406ef7f5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-formula-substitute-names "#<compiled 0x406ef7f5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-table-goto-column org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [org-table-goto-column org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 4096 [org-at-table-hline-p org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 20476 [org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [org-table-rewrite-old-row-references org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [org-table-make-reference org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4000 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil] 6144 [substitute-env-vars substitute-env-in-file-name timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 1024 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let*] 1045 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 42 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval] 2025 [file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 58 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 2040 [file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 88 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 2049 [file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down] 106 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 2059 [file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively] 126 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down] 2064 [file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 136 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively] 2077 [file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 162 [timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil] 9252 [do-after-load-evaluation timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 11264 [timezone-parse-date timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 12800 [timezone-parse-time timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 4096 [let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 11 [org-at-table-hline-p org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [org-at-table-p org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [timezone-parse-date timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 13208 [timezone-parse-time timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 4096 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 14351159 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 12536 ["#<compiled 0x40ab9697>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-split-string "#<compiled 0x40ab9b17>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 4612 ["#<compiled 0x40ab9b17>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 8769696 [apply "#<compiled 0x40aba897>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 4042980 ["#<compiled 0x40aba897>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 116602 [mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 0 [undo-auto--undoable-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1805 [jit-lock-after-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3610 [org-split-string org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 7220 [org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 21716365 ["#<compiled 0x40ab9b17>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 7405373 [org-split-string "#<compiled 0x40ab9b17>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1805 [apply org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1805 [apply "#<compiled 0x40aba897>" mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3974036 ["#<compiled 0x40aba897>" mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3610 [mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 0 [undo-auto--undoable-change org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1805 [jit-lock-after-change org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 3610 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) nil nil nil nil] 114418 [completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 131450 [read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 9848 [call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 256 [execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 90616 [call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 16 [profiler-cpu-profile profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1845816 [profiler-report-make-buffer-name profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 32 [profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1045 [profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 8288 ["#<compiled 0x430828f3>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 4144 ["#<compiled 0x41258b63>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 4144 [profiler-format-percent "#<compiled 0x431795ef>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree] 8188 [replace-regexp-in-string profiler-report-header-line-format profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 1024 [mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 2076 [profiler-report-move-to-entry profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 704 [split-window split-window-right split-window-sensibly window--try-to-split-window display-buffer-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command] 468097 [window--display-buffer display-buffer-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 442289 [profiler-memory-profile profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1849960)) (23350 53826 203838 0) nil]

[-- Attachment #5: 25.3-nogc-cpu --]
[-- Type: application/octet-stream, Size: 35233 bytes --]


[profiler-profile "24.3" cpu #s(hash-table size 217 test equal rehash-size 1.5 rehash-threshold 0.8 data ([mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 1 [profiler-memory-profile profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3 [maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively] 5 ["#<compiled 0x43a1dfef>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 2 [apply profiler-format profiler-report-line-format profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute] 1 [redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 18 [execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 10 [execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 4 [completion-basic-try-completion "#<compiled 0x43a66be9>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 7 [completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 4 [completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x43a66be9>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 6 [completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x43a65bdb>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 30 [completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x43a60bf3>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [completion-pcm--merge-completions completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x43a5f3f3>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1 [mapcar execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 46 [read-event sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 4 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 776 [completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 181 [read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil nil] 46 [rfn-eshadow-update-overlay read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil] 2 [profiler-fixup-backtrace "#<compiled 0x43a557ef>" maphash profiler-fixup-log profiler-fixup-profile profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-directory-p write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [assoc-default set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [abbreviate-file-name locate-dominating-file vc-find-root if vc-hg-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile] 1 [basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2 [locate-dominating-file vc-find-root if vc-git-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively] 1 [write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2 [find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [inhibit-local-variables-p hack-local-variables set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [if vc-cvs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively] 1 [locate-dominating-file vc-find-root if vc-git-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile] 1 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion write-region basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil] 1 [basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 ["#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively] 1 [locate-dominating-file vc-find-root if vc-hg-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively] 1 [image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil] 1 [tooltip-show tooltip-help-tips run-hook-with-args-until-success tooltip-timeout apply timer-event-handler nil nil nil nil nil nil nil nil nil nil] 4 [line-move-visual line-move next-line funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1 [timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-symlink-p file-truename apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-truename file-truename] 1 [autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 3 [bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [completing-read-default completing-read byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 75 [read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 19 [completion-basic-try-completion "#<compiled 0x4089de01>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x41e43a45>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute] 4 [completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x41e43a45>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read byte-code call-interactively] 1 [read-from-minibuffer completing-read-default call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 7 [completing-read-default call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 17 [timer--activate timer-activate timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [undefined nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 237 [ucs-normalize-region ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion unlock-buffer primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3 [undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 5 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil] 22 [ucs-normalize-region ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion restore-buffer-modified-p "#<compiled 0x40612b63>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil] 4 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion restore-buffer-modified-p "#<compiled 0x4062b075>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil] 3 ["#<compiled 0x40ced169>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil] 17 [org-self-insert-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 1 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion unlock-buffer primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 365 [read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 100 [complete-with-action "#<compiled 0x400bdd59>" try-completion completion-basic-try-completion "#<compiled 0x40c3655b>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete] 10 [minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command] 2 ["#<compiled 0x4009db57>" walk-window-tree display-buffer-at-bottom display-buffer temp-buffer-window-show minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively] 1 [delete-window window--delete bury-buffer minibuffer-hide-completions completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x406d37ef>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer] 1 [completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 17 [read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 4 [completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x406fabef>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read] 1 [complete-with-action "#<compiled 0x400bdd59>" all-completions completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x406fb7db>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x406fabef>" completion--in-region] 1 [org-table-begin org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 3 [org-table-end org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 10 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-table-end org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 87 [org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 69 ["#<compiled 0x40db72e9>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 8 ["#<compiled 0x40db6edb>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 53 [org-split-string "#<compiled 0x40db6edb>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 2 [mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 10 [org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 13 [apply "#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 48 ["#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 4 [jit-lock-after-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 8 [org-table-begin org-table-current-dline org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2 [org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2 [org-table-begin org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-table-begin org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 2 [org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 2 [org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 97 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 1 [timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command] 1 [org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 89 ["#<compiled 0x40db72e9>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 1 ["#<compiled 0x40db6edb>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 47 [org-split-string "#<compiled 0x40db6edb>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil] 1 [mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 6 [org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 3 [apply "#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil] 44 ["#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 1 [jit-lock-after-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 5 [org-table-begin org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-table-end org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [untabify org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 82 [org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 93 ["#<compiled 0x40db72e9>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 2 ["#<compiled 0x40db6edb>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 63 [mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2 [org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 2 [apply "#<compiled 0x40db6eef>" mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 43 [jit-lock-after-change org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 4 [jit-lock-after-change primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [org-remove-flyspell-overlays-in org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40717fdb>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 2 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4071bbed>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 2 [primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion restore-buffer-modified-p "#<compiled 0x407406db>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil] 2 [font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x407456f3>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil] 1 [if eval redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x437ca16f>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code] 1 [untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-table-begin org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2 [org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1 [org-table-begin org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-table-end org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2 [org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 102 [org-table-make-reference org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [apply date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil] 1 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 85 ["#<compiled 0x40db72e9>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3 ["#<compiled 0x40db6edb>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 52 [mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 7 [org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3 [apply "#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 42 ["#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [jit-lock-after-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4 [org-table-begin org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2 [org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 95 [untabify org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1 [org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 91 ["#<compiled 0x40db72e9>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2 ["#<compiled 0x40db6edb>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 49 [mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 4 [org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2 [apply "#<compiled 0x40db6eef>" mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 42 ["#<compiled 0x40db6eef>" mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [jit-lock-after-change org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 5 [undo-auto--undoable-change-no-timer undo-auto--undoable-change org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [profiler-cpu-profile profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 4 [Automatic\ GC] 45)) (23350 53691 365743 0) nil]

[-- Attachment #6: 25.3-nogc-mem --]
[-- Type: application/octet-stream, Size: 169795 bytes --]


[profiler-profile "24.3" memory #s(hash-table size 730 test equal rehash-size 1.5 rehash-threshold 0.8 data ([profiler-report-make-buffer-name profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 32 [profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1045 [font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks profiler-report-mode profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute] 1056 [profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 4144 [maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively] 156288 ["#<compiled 0x43a1f3f3>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 24776 ["#<compiled 0x43a1dfef>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 34600 [profiler-format-percent "#<compiled 0x43a68bef>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1] 4192 ["#<compiled 0x43a68bef>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window] 1064 [profiler-format-percent "#<compiled 0x43a68bef>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build] 2096 [profiler-format-percent "#<compiled 0x43a68bef>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk] 12576 ["#<compiled 0x43a68bef>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk] 5320 [profiler-format-percent "#<compiled 0x43a68bef>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree] 1048 [profiler-format-percent "#<compiled 0x43a68bef>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report] 1048 [replace-regexp-in-string profiler-report-header-line-format profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 1048 [profiler-report-make-entry-part profiler-report-make-name-part profiler-report-line-format profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute] 9244 [apply profiler-format profiler-report-line-format profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute] 6176 [mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 3132 [profiler-format apply profiler-format profiler-report-line-format profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively] 2096 [profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively] 3168 [profiler-report-move-to-entry profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 704 [display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 1056 [display-buffer-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 1056 [window--try-to-split-window display-buffer-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 3168 [display-buffer-record-window window--display-buffer display-buffer-use-some-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 1056 [window--display-buffer display-buffer-use-some-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 919933 [redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 65808 [menu-bar-update-buffers redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 5280 [kill-this-buffer-enabled-p redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4160 [if eval redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 8448 [execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 119214 [execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2080 [mapcar execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2096 [completion-pcm--string->pattern completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x43a66be9>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [completion-pcm--pattern->regex completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x43a66be9>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 2072 [completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x43a66be9>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 36576 [completion-pcm--merge-completions completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x43a66be9>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 16496 [completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x43a66be9>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 427264 ["#<compiled 0x43a657db>" mapconcat completion-pcm--pattern->regex completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x43a65bdb>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil] 3144 [execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1048 [execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2112 [mapconcat completion-pcm--pattern->regex completion-pcm--merge-completions completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x43a637db>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil] 1048 [completion-pcm--pattern->string completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x43a637db>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1048 [completion-pcm-try-completion "#<compiled 0x43a62ff3>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 9244 [execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2096 [mapcar execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1048 [completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x43a5f3f3>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 1056 ["#<compiled 0x43a5e7db>" mapconcat completion-pcm--pattern->regex completion-pcm--merge-completions completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x43a5f3f3>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil] 2096 [mapcar execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1048 [mapcar execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1048 [completion-pcm--pattern->regex completion-pcm--merge-completions completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x43a5bbf3>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 1048 [mapconcat completion-pcm--pattern->regex completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x43a5a3f3>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil] 1048 [sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1056 [read-event sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 834 ["#<compiled 0x43a5bff5>" execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1792 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 922109 [abbreviate-file-name read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2048 [replace-regexp-in-string minibuffer--double-dollars read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2048 [read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 5120 [ucs-normalize-region ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion expand-file-name read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil] 34816 [completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 20946 [rfn-eshadow-setup-minibuffer read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil] 1056 [substitute-env-vars substitute-env-in-file-name substitute-in-file-name rfn-eshadow-update-overlay read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil] 2288 [rfn-eshadow-update-overlay read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil] 4192 [read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil nil] 34234 [menu-bar-update-buffers redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil] 1056 [keymap-canonicalize redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil] 1056 [if eval redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil] 3160 [timer--time-less-p timer--activate timer-activate-when-idle timer-event-handler read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil] 2112 [call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil] 544 [command-execute read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil] 2112 [delete-backward-char funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil] 1056 [redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil] 1056 [funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil] 1056 [seconds-to-time timer-set-idle-time run-with-idle-timer eldoc-schedule-timer read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil] 2112 [timer--time-less-p timer--activate timer-activate run-at-time apply run-with-timer blink-cursor-start apply timer-event-handler read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively] 1056 [undo-auto--undoable-change-no-timer undo-auto--undoable-change self-insert-command funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil] 1056 [minibuffer-inactive-mode read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil nil nil] 1056 [command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 2220 [generate-new-buffer profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2090 [profiler-fixup-backtrace "#<compiled 0x43a557ef>" maphash profiler-fixup-log profiler-fixup-profile profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 73920 [apply profiler-fixup-backtrace "#<compiled 0x43a557ef>" maphash profiler-fixup-log profiler-fixup-profile profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 37296 ["#<compiled 0x43a557ef>" maphash profiler-fixup-log profiler-fixup-profile profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 34600 [profiler-format-entry profiler-fixup-entry mapcar profiler-fixup-backtrace "#<compiled 0x43a557ef>" maphash profiler-fixup-log profiler-fixup-profile profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil] 1048 [profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 370772 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-directory-p write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3138 [ucs-normalize-hfs-nfd-pre-write-conversion file-directory-p write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4078 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-directory-p write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 104728 [write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 13284 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4078 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-symlink-p file-truename apply let* tramp-completion-run-real-handler if let] 9419 [apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-symlink-p file-truename apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-truename file-truename] 1210 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil] 2090 [file-truename file-truename file-truename set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 84 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 4050 [file-truename file-truename set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 116 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 4078 [file-truename set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1228 [find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1220 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil] 2090 [file-truename file-truename file-truename find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 84 [file-truename file-truename find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1164 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil] 4050 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 6190 [file-truename find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 172 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-attributes find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-attributes find-buffer-visiting set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 4078 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion lock-buffer set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 11334 [ucs-normalize-hfs-nfd-pre-write-conversion lock-buffer set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 4078 [set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 12500 [inhibit-local-variables-p set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 108736 [abbreviate-file-name set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4096 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-attributes set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-attributes set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 4078 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-attributes set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 212542 [make-auto-save-file-name auto-save-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 10350 ["#<compiled 0x40090bbd>" called-interactively-p auto-save-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1056 [file-name-sans-versions inhibit-local-variables-p set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [file-name-sans-versions inhibit-local-variables-p hack-local-variables set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 13340 [inhibit-local-variables-p hack-local-variables set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 54336 [file-name-sans-versions inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil] 12388 [inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 54296 [set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3456 [file-name-sans-versions inhibit-local-variables-p set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 12416 [inhibit-local-variables-p set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 54336 [file-name-sans-versions inhibit-local-variables-p set-auto-mode-1 set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 14018 [inhibit-local-variables-p set-auto-mode-1 set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 53248 [set-auto-mode-1 set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [file-name-sans-versions inhibit-local-variables-p hack-local-variables set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 13792 [inhibit-local-variables-p hack-local-variables set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 54296 [file-name-sans-versions inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil] 12688 [inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil] 54296 [set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 10236 [file-remote-p set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 10416 [file-name-sans-versions set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [assoc-default set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 763670 [image-type-from-buffer image-type-auto-detected-p "#<compiled 0x400a17ff>" assoc-default set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil] 19480 ["#<compiled 0x400a17ff>" assoc-default set-auto-mode set-visited-file-name write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 14848 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-writable-p write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 4180 [ucs-normalize-hfs-nfd-pre-write-conversion file-writable-p write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 9186 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-writable-p write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 214846 [save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2264 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 5134 [vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 172 [vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [vc-default-registered vc-rcs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively] 1048 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer] 12258 ["#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile] 1620 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p if vc-cvs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p if vc-cvs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile] 4074 [if vc-cvs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively] 164 [abbreviate-file-name locate-dominating-file vc-find-root if let vc-svn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file] 4096 [ucs-normalize-region ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion expand-file-name locate-dominating-file vc-find-root if let vc-svn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save] 72128 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if let vc-svn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if let vc-svn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer] 12192 [locate-dominating-file vc-find-root if let vc-svn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile] 2536 [ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion expand-file-name locate-dominating-file vc-find-root if let vc-svn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer] 1056 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer] 4180 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer] 8174 ["#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile] 380 ["#<compiled 0x40090bbd>" called-interactively-p getenv let vc-sccs-search-project-dir vc-possible-master "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered] 1056 [vc-check-master-templates vc-default-registered vc-src-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively] 1048 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-src-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-src-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer] 4092 ["#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-src-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile] 200 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-bzr-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-bzr-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file] 13344 [locate-dominating-file vc-find-root if vc-bzr-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile] 9860 [replace-buffer-in-windows file-exists-p locate-dominating-file vc-find-root if vc-bzr-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file] 1056 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-git-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-git-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file] 12192 [locate-dominating-file vc-find-root if vc-git-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile] 1488 [abbreviate-file-name locate-dominating-file vc-find-root if vc-hg-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile] 1048 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-hg-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-hg-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file] 9200 [locate-dominating-file vc-find-root if vc-hg-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile] 9664 [locate-dominating-file vc-find-root if vc-mtn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile] 2620 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-mtn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-mtn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-before-save basic-save-buffer save-buffer write-file] 13290 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 4052 [basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1348 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-writable-p basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-writable-p basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil] 12182 [basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 382180 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-attributes backup-buffer basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-attributes backup-buffer basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil] 4078 [backup-buffer basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 172 [auto-coding-alist-lookup find-auto-coding select-safe-coding-system write-region basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil] 15784 [auto-coding-regexp-alist-lookup find-auto-coding select-safe-coding-system write-region basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil] 10240 [sgml-xml-auto-coding-function find-auto-coding select-safe-coding-system write-region basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil] 2048 [sgml-html-meta-auto-coding-function find-auto-coding select-safe-coding-system write-region basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil] 2048 [ucs-normalize-region ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion write-region basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil] 74432 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion write-region basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion write-region basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil] 14346 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion write-region basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil] 215056 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-attributes basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-attributes basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 4078 [garbage-collect run-hooks basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 14892 [run-hooks basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 46188 [vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2748 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile] 12258 ["#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively] 564 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p if vc-cvs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p if vc-cvs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively] 4074 [if vc-cvs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil] 164 [abbreviate-file-name locate-dominating-file vc-find-root if let vc-svn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile] 4096 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if let vc-svn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if let vc-svn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile] 12192 [locate-dominating-file vc-find-root if let vc-svn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively] 8620 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file] 4180 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile] 8174 ["#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively] 380 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-src-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p "#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-src-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile] 4092 ["#<compiled 0x400f3e91>" mapcar vc-check-master-templates vc-default-registered vc-src-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively] 200 [locate-dominating-file vc-find-root if vc-bzr-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively] 8812 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-bzr-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-bzr-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile] 12288 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-git-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-git-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile] 12192 [locate-dominating-file vc-find-root if vc-git-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively] 432 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-hg-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-hg-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile] 8144 [locate-dominating-file vc-find-root if vc-hg-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively] 420 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-mtn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile] 6270 [ucs-normalize-hfs-nfd-pre-write-conversion file-exists-p locate-dominating-file vc-find-root if vc-mtn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile] 12234 [locate-dominating-file vc-find-root if vc-mtn-registered apply vc-call-backend "#<compiled 0x400f3ba9>" mapc vc-registered vc-backend vc-refresh-state write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively] 516 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) nil nil nil nil nil] 20900 [ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 41590 [image-search-load-path find-image eval "#<compiled 0x400f1b51>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil] 3340 [kill-this-buffer-enabled-p redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 18552 [menu-bar-update-buffers-1 menu-bar-update-buffers redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-file-name-default read-file-name byte-code call-interactively command-execute nil nil nil nil nil] 8188 [find-auto-coding select-safe-coding-system write-region basic-save-buffer-2 basic-save-buffer-1 basic-save-buffer save-buffer write-file profiler-write-profile profiler-report-write-profile funcall-interactively call-interactively command-execute nil nil nil] 1056 [mouse-fixup-help-message nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 1024 [profiler-report-expand-entry profiler-report-toggle-entry funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 416 [line-move-visual line-move next-line funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1232 [substitute-env-vars substitute-env-in-file-name autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 1264 [file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 8350 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil] 1045 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil] 42 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil] 2025 [file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil] 58 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil] 2040 [file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil] 88 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil] 2049 [file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil] 106 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil] 2059 [file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil] 126 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil] 2064 [file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 136 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil] 2077 [autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 27060 [do-after-load-evaluation autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 11716 [find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 8188 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively] 1045 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil] 42 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil] 2025 [file-truename file-truename file-truename file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil] 58 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil] 2040 [file-truename file-truename file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil] 88 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil] 2049 [file-truename file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil nil] 106 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil] 2059 [file-truename file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil nil nil] 126 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil nil] 2064 [file-truename file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil nil nil nil] 136 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil nil] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil nil nil] 2078 [file-truename bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil nil nil nil nil] 164 [bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 9252 [forward-symbol forward-thing "#<compiled 0x408a4ef7>" bounds-of-thing-at-point find-tag-default-bounds find-tag-default function-called-at-point byte-code call-interactively command-execute nil nil nil nil nil nil] 1024 [completing-read-default completing-read byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1274 [read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 9398 [call-interactively command-execute read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute nil nil nil nil nil nil nil nil] 288 [command-execute read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 8188 [completing-read-default call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 7200 [read-from-minibuffer completing-read-default call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 9412 [call-interactively command-execute read-from-minibuffer completing-read-default call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 32 [set-window-buffer-start-and-point switch-to-prev-buffer replace-buffer-in-windows kill-buffer funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1339898 [undefined nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 458 [undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 53388560 [ucs-normalize-region ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion unlock-buffer primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 181080 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion unlock-buffer primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 5225 [ucs-normalize-hfs-nfd-pre-write-conversion unlock-buffer primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 11246 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion unlock-buffer primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 535208 [primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 5048 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion set-buffer-modified-p primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 5225 [ucs-normalize-hfs-nfd-pre-write-conversion set-buffer-modified-p primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 10190 [undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 1648 [menu-bar-update-buffers redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 7392 [map-keymap keymap-canonicalize redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 8448 [jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 28472 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil] 5508450 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 94360 [org-activate-angle-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 103948 [org-activate-plain-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 111376 [org-activate-bracket-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 105564 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 205712 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 94056 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 94232 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 103716 [org-string-match-p org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil] 96328 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 95280 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 106636 [font-lock-fontify-region "#<compiled 0x40c9906b>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil] 3168 ["#<compiled 0x40608d75>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil] 297488 [ucs-normalize-region ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion restore-buffer-modified-p "#<compiled 0x40608d75>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil] 1984194 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion restore-buffer-modified-p "#<compiled 0x40608d75>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil] 55407 [ucs-normalize-hfs-nfd-pre-write-conversion restore-buffer-modified-p "#<compiled 0x40608d75>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil] 103938 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion restore-buffer-modified-p "#<compiled 0x40608d75>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil] 5422208 [jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 4224 [org-remove-flyspell-overlays-in org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40c9c2c5>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 38016 [ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion restore-buffer-modified-p "#<compiled 0x4060fbf5>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil] 3168 [replace-buffer-in-windows restore-buffer-modified-p "#<compiled 0x406167ab>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil] 1056 [if eval redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 33792 [jit-lock-context-fontify apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil nil] 3168 [timer--time-less-p timer--activate timer-activate timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil] 1056 [redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2112 [if eval redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3168 [unless eval redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1056 [run-hook-with-args-until-success called-interactively-p font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks minibuffer-inactive-mode read-from-minibuffer completing-read-default call-interactively command-execute nil nil nil] 1056 [switch-to-prev-buffer replace-buffer-in-windows kill-buffer funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2112 [redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 9504 [unless eval redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 2112 [blink-cursor-start apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil nil] 1056 [timer-inc-time timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 2112 [org-at-table-p org-self-insert-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1024 [org-self-insert-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 2248 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion self-insert-command org-self-insert-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion self-insert-command org-self-insert-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 4076 [file-remote-p redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 45076 [timer--time-less-p timer--activate timer-activate-when-idle timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil] 1056 [remove-hook blink-cursor-end nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 3168 [restore-buffer-modified-p "#<compiled 0x40d2032d>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil] 3168 [delete-window funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 799357 [timer--time-less-p timer--activate timer-activate run-at-time apply run-with-timer blink-cursor-start apply timer-event-handler nil nil nil nil nil nil nil] 1056 [font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks minibuffer-inactive-mode read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil] 2112 [completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1954304 [remove-hook "#<compiled 0x40d4915d>" read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 1056 [read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 79514 [redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil] 3168 [if eval redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 12672 [call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 1296 [funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 1056 [command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil] 4216 [minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command] 2793 ["#<compiled 0x4089d933>" completion--some completion--nth-completion completion-all-completions minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute] 1056 [font-lock-prepend-text-property "#<compiled 0x408a146f>" mapcar completion-hilit-commonality completion-basic-all-completions "#<compiled 0x4089d933>" completion--some completion--nth-completion completion-all-completions minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region] 1016 [temp-buffer-window-setup minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read] 1045 [display-buffer temp-buffer-window-show minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default] 1056 [window-in-direction "#<compiled 0x4009db57>" walk-window-tree-1 walk-window-tree display-buffer-at-bottom display-buffer temp-buffer-window-show minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete] 1072 [if eval posn-at-point window-in-direction "#<compiled 0x4009db57>" walk-window-tree-1 walk-window-tree display-buffer-at-bottom display-buffer temp-buffer-window-show minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>"] 1056 [display-buffer-at-bottom display-buffer temp-buffer-window-show minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer] 2112 [window--try-to-split-window display-buffer-at-bottom display-buffer temp-buffer-window-show minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute] 2112 [split-window display-buffer-at-bottom display-buffer temp-buffer-window-show minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute] 434541 [window--display-buffer display-buffer-at-bottom display-buffer temp-buffer-window-show minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute] 637 [completion-list-mode completion-setup-function run-hooks display-completion-list minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute] 1096 [completion-setup-function run-hooks display-completion-list minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer] 60123 [fit-window-to-buffer minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read] 3728 [window-resize window-resize-no-error fit-window-to-buffer minibuffer-completion-help completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x40c3c135>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer] 1693 [menu-bar-update-buffers redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 5280 [delete-window window--delete bury-buffer minibuffer-hide-completions completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x406d37ef>" completion--in-region completion-in-region minibuffer-complete funcall-interactively call-interactively command-execute read-from-minibuffer] 1693 [map-keymap keymap-canonicalize redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 3168 [command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1056 [completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3558 ["#<compiled 0x40090bbd>" called-interactively-p font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks minibuffer-inactive-mode read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command] 1056 [add-hook minibuffer-history-isearch-setup read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1056 [read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 5296 [map-keymap keymap-canonicalize redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 1056 [if eval redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 2112 [timer--time-less-p timer--activate timer-activate run-at-time apply run-with-timer blink-cursor-start apply timer-event-handler read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command] 1056 [call-interactively command-execute read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 32 [goto-history-element previous-history-element funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 40 [timer--time-less-p timer--activate timer-activate-when-idle run-with-idle-timer eldoc-schedule-timer read-from-minibuffer completing-read-default completing-read byte-code call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 1056 [call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 80 [undo-auto--ensure-boundary undo-auto--boundaries undo-auto--boundary-timer apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil] 1056 [unless eval redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 1056 [timer--time-less-p timer--activate timer-activate-when-idle timer-event-handler read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil] 2112 [timer-relative-time timer-inc-time timer-event-handler read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 1056 [seconds-to-time timer-set-idle-time run-with-idle-timer eldoc-schedule-timer read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil] 1056 [self-insert-command funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil] 4224 [jit-lock-context-fontify apply timer-event-handler read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 2112 [completion-pcm--string->pattern completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x406fb7db>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x406fabef>" completion--in-region completion-in-region minibuffer-complete funcall-interactively] 1024 [completion-pcm--pattern->regex completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x406fb7db>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x406fabef>" completion--in-region completion-in-region minibuffer-complete] 1024 [complete-with-action "#<compiled 0x400bdd59>" all-completions completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x406fb7db>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x406fabef>" completion--in-region] 2080 [completion-pcm--merge-completions completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x406fb7db>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled 0x400bae55>" apply "#<compiled 0x406fabef>" completion--in-region completion-in-region minibuffer-complete funcall-interactively] 1024 [menu-bar-update-yank-menu kill-new kill-region kill-word backward-kill-word funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil] 1024 [timer--time-less-p timer--activate timer-activate-when-idle run-with-idle-timer eldoc-schedule-timer read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil] 1056 ["#<compiled 0x400bf74d>" apply "#<compiled 0x406fcfef>" buffer-substring--filter filter-buffer-substring kill-region kill-line funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively] 1056 [apply "#<compiled 0x40829f75>" redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 3168 [global-font-lock-mode-cmhh kill-all-local-variables minibuffer-inactive-mode read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 3168 [profiler-start funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1972 [map-keymap keymap-canonicalize redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2112 [org-in-src-block-p org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 22528 [org-at-table-p org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2048 [org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 1056 [call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 32 [org-table-get-field org-table-maybe-eval-formula org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-table-maybe-eval-formula org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 5168 [org-trim org-table-maybe-eval-formula org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 7224 [org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [org-table-begin org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 126528 [org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 13863158 [apply org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 112272 [org-split-string org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 4096 [org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-table-current-column org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1056 ["#<compiled 0x40da8af5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-table-formula-handle-first/last-rc "#<compiled 0x40da8af5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 2048 [org-table-formula-substitute-names "#<compiled 0x40da8af5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 4096 [org-table-goto-column org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2048 [org-table-goto-column org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2048 [org-at-table-hline-p org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 2048 [org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 ["#<compiled 0x40090bbd>" called-interactively-p org-table-current-column org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 1056 [org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 17552 [org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-table-rewrite-old-row-references org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-table-make-reference org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 8000 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively] 2112 [parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively] 2112 [let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 22 [org-at-table-hline-p org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 2048 [org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 21552 [parse-time-string date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively] 2112 [org-table-current-column org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 1056 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 3096 [untabify org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 1056 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 22327400 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 ["#<compiled 0x40db72e9>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 4096 [org-split-string "#<compiled 0x40db6edb>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 2048 ["#<compiled 0x40db6edb>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 13956328 [apply "#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 15347944 ["#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 1072896 [ucs-normalize-region ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 74520 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 4180 [ucs-normalize-hfs-nfd-pre-write-conversion org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 8152 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 209456 [jit-lock-after-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2145792 [org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 8304 [org-at-table-p org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [org-table-clean-line org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 97024 [org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 8240 [run-hook-with-args-until-success called-interactively-p org-table-current-dline org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil] 2112 [org-table-begin org-table-current-dline org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2048 [org-table-current-dline org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-table-fix-formulas org-table-insert-row org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 4096 [minibuffer-inactive-mode read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil] 1056 [remove-hook blink-cursor-end read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 1056 [undo-auto--boundaries undo-auto--add-boundary read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 2112 [window--min-size-1 window-min-size "#<compiled 0x4009b825>" walk-window-tree-1 walk-window-tree window--sanitize-window-sizes read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil] 1056 [funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2112 [org-table-get-field org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 18092960 [org-table-begin org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-at-table-hline-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [remove org-move-to-column org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1056 [org-at-timestamp-p org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 61192 [org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 18225788 [apply org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 56152 [org-split-string org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1024 ["#<compiled 0x40da8af5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-table-formula-handle-first/last-rc "#<compiled 0x40da8af5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 1024 [org-table-formula-substitute-names "#<compiled 0x40da8af5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 2048 [org-table-goto-column org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-table-goto-column org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 4096 ["#<compiled 0x40090bbd>" called-interactively-p org-table-current-column org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 1056 [org-at-table-hline-p org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 2048 [org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 2048 [org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 14400 [org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 2048 [org-table-rewrite-old-row-references org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 2048 [org-table-make-reference org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 4000 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 7200 [substitute-env-vars substitute-env-in-file-name timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 1024 [cons cons let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-name-nondirectory file-truename apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-truename] 1056 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p apply let* tramp-completion-run-real-handler if let tramp-completion-file-name-handler file-symlink-p file-truename apply let* tramp-completion-run-real-handler if] 90776 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let*] 1045 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 42 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval] 2025 [file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 1114 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 2040 [file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 88 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 2049 [file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down] 106 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 2059 [file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively] 126 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down] 2064 [file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 136 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down] 1045 [ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively] 3133 [file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 162 [timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command] 22728 [do-after-load-evaluation timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 11264 [timezone-parse-date timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 24576 [timezone-parse-time timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 8192 [parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command] 2112 [let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil] 11 [org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 5176 [org-at-table-hline-p org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 2048 [org-at-table-p org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 1024 [run-hook-with-args-until-success called-interactively-p org-table-current-column org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil] 1056 [timezone-parse-date timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 25624 [timezone-parse-time timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 8192 [date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively] 1056 [timezone-time-zone-from-absolute timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 1056 [run-hook-with-args-until-success called-interactively-p org-table-current-column org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 1056 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 21030728 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1024 ["#<compiled 0x40db72e9>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 2048 [org-split-string "#<compiled 0x40db6edb>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil] 1024 ["#<compiled 0x40db6edb>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 6765232 [apply "#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil] 7736880 ["#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 532224 [jit-lock-after-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1072896 [org-table-current-column org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1056 [org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 21137768 ["#<compiled 0x40db6edb>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 7519792 [apply "#<compiled 0x40db6eef>" mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 7733680 ["#<compiled 0x40db6eef>" mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 536448 [jit-lock-after-change org-table-align org-table-copy-down funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1072896 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil] 241072 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute] 4096 [org-activate-angle-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute] 4096 [org-activate-plain-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute] 12284 [org-activate-bracket-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute] 4096 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute] 9376 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively] 4096 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute] 4096 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute] 4096 [org-string-match-p org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively] 4096 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute] 4096 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070d7db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively] 4096 [org-remove-flyspell-overlays-in org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4070dfed>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively] 1056 [jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1056 [jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1056 [file-remote-p redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 5120 [apply "#<compiled 0x40829f75>" redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 2112 [replace-buffer-in-windows unlock-buffer primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1056 [ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion restore-buffer-modified-p "#<compiled 0x407352e7>" jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil] 2112 [org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x407366db>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1048 [timer--time-less-p timer--activate timer-activate run-at-time apply run-with-timer jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil] 1056 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4180 [ucs-normalize-hfs-nfd-pre-write-conversion primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 9208 [unlock-buffer primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1056 [ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion primitive-undo undo-more undo funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1056 [timer-relative-time run-at-time apply run-with-timer blink-cursor-start apply timer-event-handler nil nil nil nil nil nil nil nil nil] 1056 [timer-relative-time timer-inc-time timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil nil] 1056 [remove-hook global-font-lock-mode-check-buffers read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 1056 ["#<compiled 0x400bdcf9>" self-insert-command funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil] 2096 [run-hooks run-mode-hooks minibuffer-inactive-mode read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 2112 ["#<compiled 0x40090bbd>" called-interactively-p org-table-current-column org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil] 1056 [run-hook-with-args-until-success called-interactively-p org-table-current-column org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil] 1056 ["#<compiled 0x40090bbd>" called-interactively-p org-table-current-column org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil] 1056 [org-table-current-column org-table-next-row funcall-interactively call-interactively org-return funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1056 [org-table-get-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1024 [org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 18099264 [org-table-begin org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1024 [org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1024 ["#<compiled 0x40090bbd>" called-interactively-p org-table-current-column org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1056 [org-at-table-hline-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1024 [org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1024 [org-at-timestamp-p org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1024 [org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2072 [org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 69340 [org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 18241704 [apply org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 56152 [org-split-string org-table-get-specials org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3096 [org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-current-column org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1056 ["#<compiled 0x40da8af5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-formula-handle-first/last-rc "#<compiled 0x40da8af5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-formula-substitute-names "#<compiled 0x40da8af5>" mapcar org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-table-goto-column org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [org-table-goto-column org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 4096 [org-at-table-hline-p org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3096 ["#<compiled 0x40090bbd>" called-interactively-p org-table-current-column org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1056 [org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 15440 [org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [org-table-rewrite-old-row-references org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [org-table-make-reference org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4000 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil] 1056 [timezone-make-arpa-date timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 1048 ["#<compiled 0x40d91ef5>" parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 2112 [let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 11 [org-at-table-hline-p org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3104 [org-at-table-p org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 ["#<compiled 0x40090bbd>" called-interactively-p org-table-current-column org-table-check-inside-data-field org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1056 [parse-time-tokenize parse-time-string date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil] 1056 [date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1056 ["#<compiled 0x40090bbd>" called-interactively-p org-table-current-column org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1056 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 21157560 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 ["#<compiled 0x40db72e9>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-split-string "#<compiled 0x40db6edb>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 ["#<compiled 0x40db6edb>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 7522920 [apply "#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 7741104 ["#<compiled 0x40db6eef>" mapconcat org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 531168 [jit-lock-after-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1072896 [org-table-current-column org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1056 [org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 21141952 ["#<compiled 0x40db6edb>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 7522920 [apply "#<compiled 0x40db6eef>" mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 7730504 ["#<compiled 0x40db6eef>" mapconcat org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 541728 [jit-lock-after-change org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1072896 ["#<compiled 0x400bdcd5>" "#<compiled 0x437dbd65>" read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 1056 [generate-new-buffer ucs-normalize-hfs-nfd-pre-write-conversion read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 2090 [ucs-normalize-hfs-nfd-pre-write-conversion read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil] 4081 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 104728 [profiler-cpu-profile profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1614808 [profiler-report-make-buffer-name profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 32 [profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1045 [profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 5200 [maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively] 63360 ["#<compiled 0x408a84b9>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 24776 ["#<compiled 0x412693cb>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 20632 [profiler-format-percent "#<compiled 0x437dcd73>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute] 8188 [profiler-format-percent "#<compiled 0x437dcd73>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree] 3144 [profiler-format-percent "#<compiled 0x437dcd73>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window] 2096 [profiler-format-percent "#<compiled 0x437dcd73>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer] 1048 ["#<compiled 0x437dcd73>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1] 1064 [apply profiler-report-header-line-format profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 1056 [replace-regexp-in-string profiler-report-header-line-format profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 1024 [apply profiler-format profiler-report-line-format profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute] 2104 [profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively] 4064 [mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 8372 [apply profiler-format apply profiler-format profiler-report-line-format profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively] 9236 [profiler-report-line-format profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 3160 [profiler-report-move-to-entry profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 704 [display-buffer-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 2112 [window--try-to-split-window display-buffer-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 1056 [split-window split-window-below split-window-sensibly window--try-to-split-window display-buffer-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command] 434541 [window--display-buffer display-buffer-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 419965 [profiler-memory-profile profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1845816)) (23350 53691 373952 0) nil]

[-- Attachment #7: 26.1-elp --]
[-- Type: application/octet-stream, Size: 6810 bytes --]

org-table-copy-down                                   1           7.716598      7.716598
org-table-align                                       2           7.172424      3.586212
org-table-maybe-recalculate-line                      2           3.7665450000  1.8832725000
org-table-recalculate                                 2           3.766518      1.883259
org-string-width                                      63018       2.1198289999  3.363...e-05
org-split-string                                      7010        1.8404919999  0.0002625523
org-string-display                                    63018       1.6949239999  2.689...e-05
org-at-table-p                                        6           0.466473      0.0777455000
org-element-at-point                                  5           0.466372      0.0932744000
org-element--parse-to                                 5           0.4661559999  0.0932311999
org-element--current-element                          17507       0.2693970000  1.538...e-05
org-table-next-row                                    1           0.217785      0.217785
org-table-check-inside-data-field                     2           0.192818      0.096409
org-activate-dates                                    13995       0.1910420000  1.365...e-05
org-table-blank-field                                 1           0.117165      0.117165
org-element-table-row-parser                          17502       0.1168620000  6.677...e-06
org-table-insert-row                                  1           0.084044      0.084044
org-remove-flyspell-overlays-in                       13993       0.0465330000  3.325...e-06
org-table-begin                                       8           0.0345259999  0.0043157499
org-table-analyze                                     2           0.0311290000  0.0155645000
org-do-emphasis-faces                                 3           0.027948      0.009316
org-unfontify-region                                  3           0.0263909999  0.008797
org-table-current-line                                1           0.014054      0.014054
org-element-table-parser                              5           0.012648      0.0025296
org-table-get                                         1           0.01147       0.01147
org-table-goto-line                                   1           0.011398      0.011398
org-activate-links                                    3           0.007601      0.0025336666
org-element--cache-put                                17507       0.0070020000  3.999...e-07
org-hide-wide-columns                                 3           0.006608      0.0022026666
org-table-current-dline                               1           0.006606      0.006606
org-fontify-meta-lines-and-blocks                     4           0.004852      0.001213
org-fontify-meta-lines-and-blocks-1                   4           0.00484       0.00121
org-activate-code                                     3           0.0048330000  0.0016110000
org-table-eval-formula                                4           0.0046580000  0.0011645000
org-fontify-drawers                                   3           0.003979      0.0013263333
org-remove-font-lock-display-properties               3           0.003081      0.001027
org-activate-footnote-links                           3           0.002797      0.0009323333
org-footnote-next-reference-or-definition             3           0.00279       0.0009299999
org-fontify-macros                                    3           0.002152      0.0007173333
org-table-end                                         9           0.0021130000  0.0002347777
org-font-lock-add-priority-faces                      3           0.0017450000  0.0005816666
org-activate-tags                                     3           0.001547      0.0005156666
org-table-message-once-per-second                     2           0.000592      0.000296
org-get-limited-outline-regexp                        20          0.00025       1.25e-05
org-table-justify-field-maybe                         4           0.00023       5.75e-05
org-match-line                                        28          0.0002050000  7.321...e-06
org-table-clean-line                                  1           0.000191      0.000191
org-table-get-field                                   5           0.000151      3.020...e-05
org-table-goto-column                                 12          0.0001430000  1.191...e-05
org-table-current-column                              15          0.0001119999  7.466...e-06
org-table-maybe-eval-formula                          1           0.000111      0.000111
org-table-get-stored-formulas                         2           0.000103      5.15e-05
org-table-make-reference                              8           8.899...e-05  1.112...e-05
org-element--collect-affiliated-keywords              5           6.8e-05       1.36e-05
org-at-heading-p                                      15          5.8e-05       3.866...e-06
org-at-table-hline-p                                  6           4.8e-05       8e-06
org-table-formula-substitute-names                    4           4.3e-05       1.075e-05
org-table-formula-handle-first/last-rc                12          3.900...e-05  3.250...e-06
org-table-fix-formulas                                1           3.3e-05       3.3e-05
org-do-latex-and-related                              3           2.6e-05       8.666...e-06
org-move-to-column                                    2           2.499...e-05  1.249...e-05
org-table-remote-reference-indirection                4           2.1e-05       5.25e-06
org-string-nw-p                                       3           1.5e-05       5e-06
org-at-timestamp-p                                    1           1e-05         1e-05
org-in-regexp                                         1           7e-06         7e-06
org-before-change-function                            9           7e-06         7.777...e-07
org-table--error-on-old-row-references                4           5.999...e-06  1.499...e-06
org-element-lineage                                   5           4.999...e-06  1e-06
org-fontify-entities                                  3           3e-06         1e-06
org-activate-target-links                             3           2e-06         6.666...e-07
org-font-lock-hook                                    3           2e-06         6.666...e-07
org-table-expand-lhs-ranges                           2           2e-06         1e-06
org-element-property                                  5           2e-06         4e-07
org-raise-scripts                                     3           1e-06         3.333...e-07
org-font-lock-add-tag-faces                           3           1e-06         3.333...e-07

[-- Attachment #8: 26.1-gc-cpu --]
[-- Type: application/octet-stream, Size: 29677 bytes --]


[profiler-profile "24.3" cpu #s(hash-table size 145 test equal rehash-size 1.5 rehash-threshold 0.8125 data ([profiler-start funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2 [sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 13 [redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 6 [image-search-load-path find-image eval "#<compiled 0x400eea89>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil] 1 [read-event sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1 [command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil] 1 [autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 4 [org-table-begin org-table-current-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1 [org-table-current-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2 [org-table-begin org-table-goto-line org-table-get org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 8 [org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 5 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2 [org-element--collect-affiliated-keywords org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 6 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1 [org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2 [parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute] 1 [file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 1 [file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 1 [byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively] 1 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 42 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 24 [font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 5 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 41 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1 [org-match-line org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1 [org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 24 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 49 [split-string org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 10 ["#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 11 [apply replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 11 [replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 3 [org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 30 [split-string org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 35 ["#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3 ["#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 25 ["#<compiled 0x42e37119>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 17 [org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 4 [mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 7 ["#<compiled 0x40cc0b5b>" "#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1 [apply org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 13 [apply org-table-message-once-per-second org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 4 [org-table-begin org-table-current-dline org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2 [org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2 [org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-table-begin org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil] 1 [apply date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil] 2 [apply date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil] 1 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 35 [font-lock-default-unfontify-region org-unfontify-region font-lock-unfontify-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1 [decompose-region org-unfontify-region font-lock-unfontify-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 2 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 30 [font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 3 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 2 [org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 19 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 32 [split-string org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 11 [apply replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 10 ["#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 7 [replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3 [mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2 [org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 13 [split-string org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 6 ["#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [apply org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 9 ["#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 29 ["#<compiled 0x4367e3ed>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 16 [org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3 [org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2 ["#<compiled 0x40cc0b5b>" "#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 5 [apply org-table-message-once-per-second org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [font-lock-default-unfontify-region org-unfontify-region font-lock-unfontify-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [decompose-region org-unfontify-region font-lock-unfontify-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-remove-font-lock-display-properties org-unfontify-region font-lock-unfontify-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 19 [font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 8 [org-fontify-drawers font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-hide-wide-columns font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2 [org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 10 [org-split-string org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 9 [split-string org-split-string org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 5 [apply replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 4 ["#<compiled 0x40cbc71f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3 [org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 12 [split-string org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 7 ["#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 41 ["#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 21 ["#<compiled 0x42f0d379>" org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 8 [org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 6 [org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 4 ["#<compiled 0x40cc0b5b>" "#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 ["#<compiled 0x40cc0b5b>" "#<compiled 0x4337a409>" org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 3 [apply org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 5 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 17 [completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 73 [read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 15 [image-search-load-path find-image eval "#<compiled 0x400eea89>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil] 1 [profiler-cpu-profile profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2 [Automatic\ GC] 1603)) (23372 741 997077 0) nil]

[-- Attachment #9: 26.1-gc-mem --]
[-- Type: application/octet-stream, Size: 82755 bytes --]


[profiler-profile "24.3" memory #s(hash-table size 487 test equal rehash-size 1.5 rehash-threshold 0.8125 data ([profiler-start funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2844 [redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 5712 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p image-search-load-path find-image eval "#<compiled 0x400eea89>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively] 102012 [image-search-load-path find-image eval "#<compiled 0x400eea89>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil] 9858 [kill-this-buffer-enabled-p redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [read-event sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 214 [substitute-env-vars substitute-env-in-file-name autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 1384 [command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 9410 [file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 318 [file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 8470 [file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil] 264 [file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil] 234 [file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil] 196 [file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil] 148 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil] 102 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil] 66 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil] 22 [autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 189456 [easy-menu-convert-item-1 easy-menu-convert-item mapcar easy-menu-create-menu easy-menu-do-define autoload-do-load command-execute nil nil nil nil nil nil nil nil nil] 1150 [easy-menu-convert-item mapcar easy-menu-create-menu easy-menu-do-define autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil] 1064 [do-after-load-evaluation autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 24308 [org-table-get-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2048 [org-table-end org-table-current-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1024 [org-table-current-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1204 [org-table-goto-column org-table-get-field org-table-get org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [replace-regexp-in-string org-table-get org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2048 [org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 7711520 [org-match-line org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [outline-on-heading-p org-at-heading-p org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1048 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1039330 [org-element--collect-affiliated-keywords org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1934 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2048 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 281152 [replace-regexp-in-string org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 4096 [org-table-get-field org-table-maybe-eval-formula org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [org-table-maybe-eval-formula org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 3128 [org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1024 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 276920 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1009604 [org-element--collect-affiliated-keywords org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1792 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 2148 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [plist-put org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 979 [org-table-begin org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1156 [org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 60334 [org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 7965366 [apply org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 56152 [org-split-string org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3200 [split-string org-split-string org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2170 [org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3550 [org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [split-string org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 9246 [org-table-formula-handle-first/last-rc org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1396 [org-table-formula-substitute-names org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2312 [replace-regexp-in-string org-table-formula-substitute-names org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-goto-column org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [org-table-goto-column org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3072 [org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 16422 [org-table-formula-handle-first/last-rc org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2328 [replace-regexp-in-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 8526 [org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 5152 [split-string org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3096 [org-table--error-on-old-row-references org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2150 [replace-regexp-in-string org-table-remote-reference-indirection org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2292 [org-table-make-reference org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 5048 [parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute] 20456 [substitute-env-vars substitute-env-in-file-name cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down] 1160 [file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively] 1400 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-name-case-insensitive-p file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 103252 [file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down] 296 [file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 1312 [file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 1282 [file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 196 [file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 148 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 102 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 9302 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let*] 22 [ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round] 1064 [cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively] 22168 [file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 1358 [file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 1312 [file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 1282 [file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 196 [file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 148 [file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 102 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let*] 66 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round] 1070 [ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 1064 [require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down] 56260 [easy-menu-do-define require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 1064 [byte-code require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 1216 [define-button-type byte-code require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 11624 [do-after-load-evaluation require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 15558 [elisp--font-lock-flush-elisp-buffers run-hook-with-args do-after-load-evaluation require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 1056 [define-button-type byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down] 1056 [apply derived-mode-p elisp--font-lock-flush-elisp-buffers run-hook-with-args do-after-load-evaluation cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 1056 [let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 11 [org-match-line org-at-table-hline-p org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 ["#<compiled 0x40cc0743>" org-string-display org-string-width org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1048 [parse-time-string date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil] 1056 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 37894258 [re-search-forward font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1200 [org-fontify-drawers font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1234 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 2690 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1240 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 3366110 [add-text-properties org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 4514 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1222 [org-fontify-macros font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1130 [org-match-line org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 83098 [org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1024 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1024 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 9709507 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 16545856 [split-string org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 6856478 [string-match split-string org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1150 ["#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 8052820 [replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 3024611 [apply replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 8601796 ["#<compiled 0x40098519>" replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 4272 [remq org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 59136 [org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 20130689 [split-string org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 3872325 ["#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 150716 [string-match org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 4404 [string-match split-string org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 2202 ["#<compiled 0x40f62071>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 9302015 ["#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 15306779 [org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 4334119 [string-width org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 5008 [org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1442049 [vconcat "#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1252 [make-byte-code org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 2504 [apply org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2332988 [line-end-position org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 5008 [next-single-property-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2308 [org-table-goto-column "#<compiled 0x406fd971>" org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [apply org-table-message-once-per-second org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 682 [org-match-line org-at-table-p org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [outline-on-heading-p org-at-heading-p org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1072 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 183728 [org-element--collect-affiliated-keywords org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2780 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2318 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 172368 [org-table-clean-line org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 9212 [org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 7362 [ucs-normalize-region ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion insert-before-markers org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 39856 [ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion insert-before-markers org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1064 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion insert-before-markers org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 100530 [org-table-begin org-table-current-dline org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-current-dline org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1104 [org-table-fix-formulas org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2048 [org-table-goto-column org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1024 [outline-on-heading-p org-at-heading-p org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 185840 [org-element--collect-affiliated-keywords org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2576 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 3112 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 177688 [org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1144 [funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 1064 [org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1024 [outline-on-heading-p org-at-heading-p org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 594624 [org-element--collect-affiliated-keywords org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1534 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 5791057 [plist-put org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1245 [org-table-begin org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1102 [org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 60284 [org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 6607922 [apply org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 56168 [org-split-string org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3200 [split-string org-split-string org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2170 [org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3550 [org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [split-string org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1058 [org-table-formula-handle-first/last-rc org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1396 [org-table-formula-substitute-names org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2312 [replace-regexp-in-string org-table-formula-substitute-names org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-goto-column org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2048 [org-table-goto-column org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3072 [org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 18422 [org-table-formula-handle-first/last-rc org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2194 [replace-regexp-in-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 7262 [org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4096 [split-string org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-table--error-on-old-row-references org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2150 [replace-regexp-in-string org-table-remote-reference-indirection org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [org-table-make-reference org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 5048 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil] 8220 [substitute-env-vars substitute-env-in-file-name timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 1160 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-name-case-insensitive-p file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 103252 [file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 300 [file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 264 [file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively] 8422 [file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down] 196 [file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 148 [file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 102 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 66 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval] 22 [timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil] 10172 [do-after-load-evaluation timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 22698 [timezone-parse-date timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 17382 [timezone-parse-time timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 4232 [timezone-time-from-absolute timezone-time-zone-from-absolute timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively] 1056 [apply date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil] 1056 [let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 11 [org-match-line org-at-table-hline-p org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2048 [org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4160 [timezone-parse-date timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 15704 [timezone-parse-time timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 4096 [timezone-make-arpa-date timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil] 1048 [date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1056 [timezone-time-from-absolute timezone-time-zone-from-absolute timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 1056 [org-table-goto-column "#<compiled 0x40f62471>" org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 37194508 [org-fontify-drawers font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2096 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 926058 [add-text-properties org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 2262 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1420 [org-fontify-macros font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1130 [org-match-line org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 83098 [org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 8057351 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 16144864 [split-string org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 6453062 [string-match split-string org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1150 ["#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 7954176 [replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3020476 [apply replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 8583188 ["#<compiled 0x40098519>" replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 4272 [remq org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 60192 [org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 17029537 [split-string org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 3341074 ["#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 150716 [string-match org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1101 [string-match split-string org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 4404 ["#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 15722484 ["#<compiled 0x40f63871>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 9077168 [string-width org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 8627 [org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2006704 [org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2661951 [make-byte-code "#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1252 ["#<compiled 0x40cc0b5b>" "#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1252 [apply org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2283588 [line-end-position org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2504 [next-single-property-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2504 [org-table-goto-column "#<compiled 0x40f93471>" org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-begin org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1024 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 44980345 [re-search-forward font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1128 [org-fontify-drawers font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1334 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3064 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1290 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 189652 [add-text-properties org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3448 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1332 [org-fontify-macros font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1156 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1130 [org-match-line org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 83098 [org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 8148951 [org-split-string org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 16541864 [split-string org-split-string org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 6844902 [string-match split-string org-split-string org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2198 ["#<compiled 0x40cbc71f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 8308248 [replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3020476 [apply replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 8429172 ["#<compiled 0x40098519>" replace-regexp-in-string "#<compiled 0x40cbc71f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 4272 [remq org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 59136 [org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 18945366 [split-string org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 4057422 ["#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 151764 [string-match org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1101 [string-match split-string org-split-string "#<compiled 0x40cbcb1f>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 4404 ["#<compiled 0x40f62c71>" org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 9579747 ["#<compiled 0x40cc0743>" org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 14822492 [org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4905171 [string-width org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 7104 [org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 989836 [apply org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2067848 [line-end-position org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1252 [next-single-property-change org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2504 [org-table-goto-column "#<compiled 0x40f6c471>" org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 17398 [image-search-load-path find-image eval "#<compiled 0x400eea89>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil] 6522 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p image-search-load-path find-image eval "#<compiled 0x400eea89>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) nil nil nil nil] 101764 [kill-this-buffer-enabled-p redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 1024 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil] 32134 [org-fontify-drawers font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1162 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 3274 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1200 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1632 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 1194 [org-fontify-macros font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 1024 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x40f8bc71>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 1376 [file-remote-p redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 4096 [completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1318 [make-local-variable minibuffer-history-isearch-setup read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 1367 [minibuffer-history-isearch-setup read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil] 7089704 [read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 6404 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-readable-p image-search-load-path find-image eval "#<compiled 0x400eea89>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-extended-command] 99240 [image-search-load-path find-image eval "#<compiled 0x400eea89>" mapcar tool-bar-make-keymap-1 tool-bar-make-keymap redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil] 9858 [call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 256 [execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 82160 [call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 16 [profiler-cpu-profile profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1895296 [profiler-report-make-buffer-name profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 32 [profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1061 [profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 8272 ["#<compiled 0x42f785f1>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 4136 ["#<compiled 0x42f77df1>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 10680 ["#<compiled 0x42f779f1>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 12408 [replace-regexp-in-string profiler-report-header-line-format profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 1024 [mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 2076 [profiler-report-move-to-entry profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 704 [split-window split-window-below split-window-sensibly window--try-to-split-window display-buffer-pop-up-window display-buffer--maybe-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute] 341437 [window--display-buffer display-buffer-pop-up-window display-buffer--maybe-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively] 325829 [profiler-memory-profile profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1895296)) (23372 742 1688 0) nil]

[-- Attachment #10: 26.1-nogc-cpu --]
[-- Type: application/octet-stream, Size: 28345 bytes --]


[profiler-profile "24.3" cpu #s(hash-table size 145 test equal rehash-size 1.5 rehash-threshold 0.8125 data ([profiler-start funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2 [sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 17 [redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 7 [execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 2 [completion-basic-try-completion "#<compiled 0x41db5771>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 13 [completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3 [completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x41db5771>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 31 [completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x41db4771>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 4 [execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 4 [mapconcat completion-pcm--pattern->regex completion-pcm--merge-completions completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x41dacf71>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil] 1 [completion-pcm-try-completion "#<compiled 0x41d95b71>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [read-event sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 19 [file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [byte-code autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 4 [org-table-begin org-table-current-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2 [org-table-current-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 4 [org-table-begin org-table-goto-line org-table-get org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [org-table-goto-line org-table-get org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2 [org-table-begin org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1 [org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 66 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 16 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 2 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 14 [org-table-begin org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 58 [org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [apply replace-regexp-in-string org-table-remote-reference-indirection org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-name-case-insensitive-p file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 1 [cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively] 1 [file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 1 [byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively] 1 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 59 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 46 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 3 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 37 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 4 [font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 48 [split-string org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 22 ["#<compiled 0x41d87b71>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 72 [apply replace-regexp-in-string "#<compiled 0x41d87b71>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 16 [org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 105 [split-string org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 33 ["#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 ["#<compiled 0x408977ed>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 122 ["#<compiled 0x444b333d>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 59 [org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 18 [mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2 [apply org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 56 [apply org-table-message-once-per-second org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [outline-next-heading org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 18 [org-table-begin org-table-current-dline org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [outline-next-heading org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 18 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 15 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3 [org-table-begin org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1 [org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2 [org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 71 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil] 2 [timezone-parse-time timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 1 [org-unfontify-region font-lock-unfontify-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 49 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 19 [org-match-line org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1 [font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 47 [split-string org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 22 [apply replace-regexp-in-string "#<compiled 0x41d87b71>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 64 ["#<compiled 0x41d87b71>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 24 [replace-regexp-in-string "#<compiled 0x41d87b71>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1 [org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 96 [split-string org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 43 ["#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 52 ["#<compiled 0x408977ed>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 111 ["#<compiled 0x475bf40d>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 84 [org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 16 [mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2 [apply org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 46 [org-table-begin org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1 [org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 54 [org-unfontify-region font-lock-unfontify-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 50 [org-fontify-drawers font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 19 [org-fontify-macros font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1 [font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 5 [org-split-string org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 48 [split-string org-split-string org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 22 ["#<compiled 0x41d87b71>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 33 [apply replace-regexp-in-string "#<compiled 0x41d87b71>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 56 [replace-regexp-in-string "#<compiled 0x41d87b71>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2 [split-string org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 38 [org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 104 [org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 24 ["#<compiled 0x49d68db9>" org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 78 ["#<compiled 0x408977ed>" org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 105 [mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 3 [org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [apply org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 51 [menu-bar-update-buffers redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil] 1 [read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 15 [completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 71 [profiler-cpu-profile profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3 [Automatic\ GC] 0)) (23372 539 121771 0) nil]

[-- Attachment #11: 26.1-nogc-mem --]
[-- Type: application/octet-stream, Size: 94535 bytes --]


[profiler-profile "24.3" memory #s(hash-table size 487 test equal rehash-size 1.5 rehash-threshold 0.8125 data ([profiler-start funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2844 [redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 5900 [redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2112 [kill-this-buffer-enabled-p redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [if eval redisplay_internal\ \(C\ function\) redisplay sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2112 [read-event sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 428 [execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2080 [execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1056 [completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 3144 [completion-pcm--string->pattern completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x41db5771>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [completion-pcm--pattern->regex completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x41db5771>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 5160 [completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x41db5771>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 35536 [completion-pcm-try-completion "#<compiled 0x41db5771>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1056 [completion-pcm--merge-completions completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x41db5771>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 14440 [completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x41db5771>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 445980 [completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x41db4771>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 2112 [mapcar execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1048 [execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1056 [mapcar execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1048 [mapconcat completion-pcm--pattern->regex completion-pcm--merge-completions completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x41dacf71>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil] 1048 [execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1048 [mapcar execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil] 1048 [execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1056 ["#<compiled 0x41da4b71>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 8188 [mapcar execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1048 [execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1048 [mapcar execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter-1 execute-extended-command--shorter execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1048 [funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 2104 [execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 145276 [sit-for execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1056 ["#<compiled 0x41d91371>" execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1020 [command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 14440 [substitute-env-vars substitute-env-in-file-name autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 1024 [file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 2422 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-name-case-insensitive-p file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil] 94200 [file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 1330 [file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil] 264 [file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil] 234 [file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil nil] 8384 [file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil] 1196 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil] 102 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil] 1114 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil] 22 [ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-symlink-p file-truename file-truename file-truename autoload-do-load command-execute nil nil nil nil nil nil nil nil] 1064 [autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 319823 [custom-initialize-reset custom-declare-variable byte-code autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil] 1056 [custom-declare-variable byte-code autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 3168 [byte-code autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 5280 [eval custom-declare-variable byte-code autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil] 2112 [easy-menu-convert-item-1 easy-menu-convert-item mapcar easy-menu-create-menu easy-menu-do-define autoload-do-load command-execute nil nil nil nil nil nil nil nil nil] 2088 [easy-menu-convert-item mapcar easy-menu-create-menu easy-menu-do-define autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil] 1056 [mapcar easy-menu-create-menu easy-menu-do-define autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil] 1056 [do-after-load-evaluation autoload-do-load command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil] 14336 [org-table-get-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2048 [org-table-end org-table-current-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2072 [org-table-current-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 368736 [org-table-goto-column org-table-get-field org-table-get org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [replace-regexp-in-string org-table-get org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2048 [org-table-get org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1056 [apply replace-regexp-in-string org-table-get org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1016 [org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 13102380 [org-match-line org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1064 [outline-on-heading-p org-at-heading-p org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1141512 [org-element--collect-affiliated-keywords org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2048 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 297016 [replace-regexp-in-string org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 6224 [org-table-get-field org-table-maybe-eval-formula org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [org-table-maybe-eval-formula org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 2080 [org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1024 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1142576 [org-element--collect-affiliated-keywords org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 2048 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 297016 [org-table-begin org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 60120 [org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 12047976 [apply org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 56152 [org-split-string org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 11252 [split-string org-split-string org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3128 [org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3072 [org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3096 [split-string org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-table-formula-handle-first/last-rc org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-formula-substitute-names org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3104 [replace-regexp-in-string org-table-formula-substitute-names org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-goto-column org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [org-table-goto-column org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3072 [org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 26732 [org-table-formula-handle-first/last-rc org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [replace-regexp-in-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 5120 [org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 4096 [split-string org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2048 [org-table--error-on-old-row-references org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2048 [replace-regexp-in-string org-table-remote-reference-indirection org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2048 [apply replace-regexp-in-string org-table-remote-reference-indirection org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1048 [org-table-make-reference org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 5048 [parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute] 20524 [substitute-env-vars substitute-env-in-file-name cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down] 1024 [file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively] 1392 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-name-case-insensitive-p file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 94200 [file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down] 1344 [file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 9508 [ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-name-case-insensitive-p file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 1064 [file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 234 [file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 196 [file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 1196 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 1150 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 66 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename cl-parse-integer parse-time-string date-to-time time-to-seconds - round let*] 22 [cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively] 21120 [cl--random-time byte-code defvar cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 1048 [file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 1350 [file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 264 [file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 9478 [file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 196 [file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 2244 [file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference] 102 [ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-name-case-insensitive-p file-truename file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds] 1064 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let*] 66 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round] 22 [require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down] 37696 [easy-menu-convert-item mapcar easy-menu-create-menu easy-menu-do-define require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 1056 [easy-menu-convert-item-1 easy-menu-convert-item mapcar easy-menu-create-menu easy-menu-do-define require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval] 1064 [easy-menu-do-define require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 1056 [byte-code require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 1208 [define-button-type byte-code require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 11624 [make-syntax-table byte-code require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 4136 [byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively] 9328 [do-after-load-evaluation require byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row] 14336 [define-button-type byte-code cl-parse-integer parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down] 1056 [let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1059 [org-match-line org-at-table-hline-p org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2040 ["#<compiled 0x408977ed>" org-string-display org-string-width org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 2112 [date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil] 1056 ["#<compiled 0x41d145f1>" org-string-display org-string-width org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1048 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 38184872 [org-fontify-drawers font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 3759992 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1024 [org-fontify-macros font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 3136 [org-match-line org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 82944 [org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1024 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1024 [font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1056 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2658752 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 16610968 [split-string org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 7982912 ["#<compiled 0x41d87b71>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 19419376 [replace-regexp-in-string "#<compiled 0x41d87b71>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 240704 [apply replace-regexp-in-string "#<compiled 0x41d87b71>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 12385648 [remq org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 59136 [org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 28453520 [split-string org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 11781648 ["#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 236848 ["#<compiled 0x408977ed>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 26037084 ["#<compiled 0x41d0e9f1>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 21029244 [org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2556048 [apply org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 11834016 [org-table-goto-column "#<compiled 0x41d129f1>" org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [apply org-table-message-once-per-second org-table-recalculate org-table-maybe-recalculate-line org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 682 [org-match-line org-at-table-p org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [outline-on-heading-p org-at-heading-p org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1140472 [org-element--collect-affiliated-keywords org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 10236 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-element--parse-to org-element-at-point org-at-table-p org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 297016 [org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 3120 [org-table-clean-line org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 25064 ["#<compiled 0x455e1575>" org-string-display org-string-width org-table-clean-line org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 6256 ["#<compiled 0x408977ed>" org-string-display org-string-width org-table-clean-line org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 11480 [org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 8416 [ucs-normalize-region ucs-normalize-HFS-NFC-region ucs-normalize-hfs-nfd-post-read-conversion insert-before-markers org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 36928 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion insert-before-markers org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 94200 [org-table-begin org-table-current-dline org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-current-dline org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [org-table-fix-formulas org-table-insert-row org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2048 [org-table-goto-column org-table-next-row org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1024 [outline-on-heading-p org-at-heading-p org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [apply derived-mode-p org-get-limited-outline-regexp org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil] 1056 [org-at-heading-p org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1064 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1141520 [org-element--collect-affiliated-keywords org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-element--parse-to org-element-at-point org-at-table-p org-table-check-inside-data-field org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 295952 [org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 3216 ["#<compiled 0x408977ed>" org-string-display org-string-width org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 8188 ["#<compiled 0x45e074c5>" org-string-display org-string-width org-table-blank-field org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1056 [apply replace-regexp-in-string org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1016 [org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2072 [outline-on-heading-p org-at-heading-p org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [outline-previous-heading org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1141528 [org-element--collect-affiliated-keywords org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-element-table-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2048 [org-element-table-row-parser org-element--current-element org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-element--parse-to org-element-at-point org-at-table-p org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 297016 [org-table-begin org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 62232 [org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 13216552 [apply org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 56168 [org-split-string org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [split-string org-split-string org-table-analyze org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3136 [org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 3072 [org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [split-string org-split-string org-table-get-stored-formulas org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 2080 [org-table-formula-handle-first/last-rc org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [org-table-formula-substitute-names org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2048 [replace-regexp-in-string org-table-formula-substitute-names org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-goto-column org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2072 [org-table-get-field org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2048 [org-table-goto-column org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 4120 [org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 15384 [org-table-formula-handle-first/last-rc org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [replace-regexp-in-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 6144 [org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4096 [split-string org-split-string org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3104 [org-table--error-on-old-row-references org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 [replace-regexp-in-string org-table-remote-reference-indirection org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3096 [org-table-make-reference org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 4000 [date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil] 7224 [substitute-env-vars substitute-env-in-file-name timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 1024 [ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-name-case-insensitive-p file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down] 1064 [ucs-normalize-region ucs-normalize-HFS-NFD-region ucs-normalize-hfs-nfd-pre-write-conversion file-name-case-insensitive-p file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 94200 [file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 300 [file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 264 [file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively] 234 [file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down] 8384 [file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line] 1196 [file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate] 1150 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula] 66 [file-truename file-truename file-truename file-truename file-truename file-truename file-truename file-truename timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval] 1078 [timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil] 18500 [do-after-load-evaluation timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 15384 [timezone-parse-date timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 20476 [timezone-parse-time timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively] 4096 [parse-time-string date-to-time time-to-seconds - round let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil] 2104 [let* time-stamp-difference eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 11 [org-match-line org-at-table-hline-p org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 2048 [org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 2048 ["#<compiled 0x408977ed>" org-string-display org-string-width org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 2104 [run-hook-with-args jit-lock-after-change replace-match org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1064 [org-table-remote-reference-indirection org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1056 [timezone-parse-date timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 12288 [timezone-parse-time timezone-fix-time timezone-make-date-arpa-standard date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute] 5144 [parse-time-string date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil] 1056 [parse-time-tokenize parse-time-string date-to-time time-to-seconds - let* time-stamp-difference-hours eval org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil] 1056 ["#<compiled 0x406db735>" org-string-display org-string-width org-table-justify-field-maybe org-table-eval-formula org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1056 [org-table-goto-column "#<compiled 0x45e07571>" org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [org-table-begin org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1024 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 37666756 [org-fontify-drawers font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 955648 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-fontify-macros font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 3088 [org-match-line org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 82944 [org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 1024 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil] 1024 [font-lock-fontify-region org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 1056 [org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 2663216 [org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 16615440 [split-string org-split-string org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 7982912 ["#<compiled 0x41d87b71>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 12462408 [replace-regexp-in-string "#<compiled 0x41d87b71>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 240704 [apply replace-regexp-in-string "#<compiled 0x41d87b71>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 19350984 [remq org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 59136 [org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 28582096 [split-string org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 11661400 ["#<compiled 0x41d87371>" mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 236848 ["#<compiled 0x408977ed>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 24960868 ["#<compiled 0x406db875>" org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil] 21264844 [org-string-display org-string-width mapcar org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 3408064 [apply org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 10676772 [run-hook-with-args jit-lock-after-change org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1064 [org-table-goto-column "#<compiled 0x406db7cd>" org-table-align org-table-recalculate org-table-maybe-recalculate-line org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-table-begin org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 1024 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 37659624 [org-fontify-drawers font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 954592 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-fontify-macros font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 3128 [org-match-line org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 82944 [org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 1024 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1024 [org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2666384 [org-split-string org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 16615424 [split-string org-split-string org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 7983928 ["#<compiled 0x41d87b71>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 12470496 [replace-regexp-in-string "#<compiled 0x41d87b71>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 240704 [apply replace-regexp-in-string "#<compiled 0x41d87b71>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 19342896 [remq org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 60192 [org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 28583192 [split-string org-split-string "#<compiled 0x41d87371>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 11658232 ["#<compiled 0x41d87371>" mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 236848 [org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil] 3408064 ["#<compiled 0x49e9a77d>" org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 20707800 ["#<compiled 0x408977ed>" org-string-display org-string-width mapcar org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil] 25519936 [apply org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 10665416 [org-table-goto-column "#<compiled 0x47ead6d1>" org-table-align org-table-copy-down funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil] 1024 [menu-bar-update-buffers redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 1056 [map-keymap keymap-canonicalize redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 1056 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 13690 [kill-this-buffer-enabled-p redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 1024 [font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil] 31800 [org-fontify-drawers font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-activate-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-activate-tags font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-activate-dates font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-footnote-next-reference-or-definition org-activate-footnote-links font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 1024 [org-fontify-macros font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-font-lock-add-priority-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-do-emphasis-faces font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-string-nw-p org-do-latex-and-related font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 1024 [org-activate-code font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1024 [org-fontify-meta-lines-and-blocks-1 org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil] 1024 [org-fontify-meta-lines-and-blocks font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled 0x4a9e5e35>" run-hook-wrapped jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil nil nil] 1048 [if eval redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 2112 [file-remote-p redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 4096 [timer--time-less-p timer--activate timer-activate-when-idle timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil] 1056 [run-hooks run-mode-hooks minibuffer-inactive-mode read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 1056 [completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 17278 [read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil nil] 14560 [redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil nil] 1056 [if eval redisplay_internal\ \(C\ function\) read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil] 2112 [call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil nil nil] 256 ["#<compiled 0x400c131d>" self-insert-command funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil] 1048 [self-insert-command funcall-interactively call-interactively command-execute read-from-minibuffer completing-read-default completing-read read-extended-command byte-code call-interactively command-execute nil nil nil nil nil] 1064 [call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 16 [profiler-cpu-profile profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1895296 [profiler-report-make-buffer-name profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 32 [profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1061 [profiler-report-mode profiler-report-setup-buffer-1 profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil] 1056 [profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 8272 [maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively] 48576 ["#<compiled 0x4aeb3f71>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 10680 ["#<compiled 0x4aeb3b71>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 10680 ["#<compiled 0x4aeb3371>" maphash profiler-calltree-build-unified profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 12408 [profiler-format-percent "#<compiled 0x4aeb95f1>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu] 1048 [profiler-format-percent "#<compiled 0x4aeb95f1>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree] 1048 [profiler-format-percent "#<compiled 0x4aeb95f1>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk] 1048 ["#<compiled 0x4aeb95f1>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu] 1064 [profiler-format-percent "#<compiled 0x4aeb95f1>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1] 9236 [profiler-format-percent "#<compiled 0x4aeb95f1>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree] 1048 [profiler-format-percent "#<compiled 0x4aeb95f1>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window] 1048 [profiler-format-percent "#<compiled 0x4aeb95f1>" profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-walk profiler-calltree-compute-percentages profiler-calltree-build profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer] 1048 [replace-regexp-in-string profiler-report-header-line-format profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 1024 [profiler-report-make-entry-part profiler-report-make-name-part profiler-report-line-format profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute] 1056 [apply profiler-format profiler-report-line-format profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute] 5152 [mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 3132 [profiler-report-line-format profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively] 1056 [apply profiler-format apply profiler-format profiler-report-line-format profiler-report-insert-calltree mapc profiler-report-insert-calltree-children profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively] 1048 [profiler-report-move-to-entry profiler-report-render-calltree-1 profiler-report-rerender-calltree profiler-report-render-calltree profiler-report-setup-buffer profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil] 704 [pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil] 1056 [display-buffer-pop-up-window display-buffer--maybe-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute] 2112 [window--try-to-split-window display-buffer-pop-up-window display-buffer--maybe-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively] 1056 [window--min-size-1 window-min-size split-window split-window-right split-window-sensibly window--try-to-split-window display-buffer-pop-up-window display-buffer--maybe-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively] 1056 [split-window split-window-right split-window-sensibly window--try-to-split-window display-buffer-pop-up-window display-buffer--maybe-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute] 346549 [record-window-buffer set-window-buffer window--display-buffer display-buffer-pop-up-window display-buffer--maybe-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command] 1064 [window--display-buffer display-buffer-pop-up-window display-buffer--maybe-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively] 326373 [window--maybe-raise-frame display-buffer-pop-up-window display-buffer--maybe-pop-up-window display-buffer--maybe-pop-up-frame-or-window display-buffer pop-to-buffer switch-to-buffer-other-window profiler-report-profile-other-window profiler-report-cpu profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively] 4224 [profiler-memory-profile profiler-report-memory profiler-report funcall-interactively call-interactively command-execute execute-extended-command funcall-interactively call-interactively command-execute nil nil nil nil nil nil] 1895296)) (23372 539 127720 0) nil]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Bug: Org Table Performance Issue/Regression
  2018-07-16  2:47   ` Tim Baumgard
@ 2018-09-03  7:59     ` Nicolas Goaziou
  2018-11-02 18:02       ` Tim Baumgard
  0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Goaziou @ 2018-09-03  7:59 UTC (permalink / raw)
  To: Tim Baumgard; +Cc: emacs-orgmode

Hello,

Tim Baumgard <timbaumgard@me.com> writes:

>> On Jun 26, 2018, at 4:58 AM, Nicolas Goaziou wrote:
>> 
>> Could you send the result of your profiling (using both Elp and
>> profiler would be nice) on an uncompiled Org?
>
> I've attached ten profiler results: Two are from 25.3 with the garbage collector
> running normally, two are from 25.3 with the garbage collector "disabled" as
> described in my previous email, two are from 26.1 with the garbage collector
> running normally, two are from 26.1 with the garbage collector "disabled," and
> two are the Elp profiles--I used elp-instrument-package--for both versions.
>
> In case it helps, my process to obtain these has been:
>
> 1. I use the test.org file from my previous email with the test row duplicated
>    so that it occurs 3500 times. I can't remember how many rows I used in my
>    previous tests.
> 2. I invoke Emacs by calling "Emacs.app/Contents/MacOS/Emacs -Q"
> 3. I use "M-x load-file" to load the test init.el file I included in my previous
>    email, with the last two lines commented out or not depending on what I'm
>    testing.
> 4. I then open the test.org file and go to column A in the last row.
> 5. I then start one of the profilers, hit enter, hit shift+enter
>    (org-table-copy-down), and then get the report from the profiler.
>
> Let me know if I can provide anything else.

I think master branch behaves better now. Could you confirm it?

Regards,

-- 
Nicolas Goaziou                                                0x80A93738

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Bug: Org Table Performance Issue/Regression
  2018-09-03  7:59     ` Nicolas Goaziou
@ 2018-11-02 18:02       ` Tim Baumgard
  0 siblings, 0 replies; 5+ messages in thread
From: Tim Baumgard @ 2018-11-02 18:02 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: emacs-orgmode


> On Sep 3, 2018, at 2:59 AM, Nicolas Goaziou wrote:
> 
> I think master branch behaves better now. Could you confirm it?

It behaves better and is usable again. It's still not quite as fast as version
8.2.10 that came with Emacs 25.3, but I think I’m using Org tables in an 
atypical way and have a workaround for my particular situation. Thanks for the
work and fixes.

Tim

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-11-02 18:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-10 19:04 Bug: Org Table Performance Issue/Regression Tim Baumgard
2018-06-26  9:58 ` Nicolas Goaziou
2018-07-16  2:47   ` Tim Baumgard
2018-09-03  7:59     ` Nicolas Goaziou
2018-11-02 18:02       ` Tim Baumgard

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).