<9      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                                                                                                               ! " # $ % & '()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~     !!! ! " # # ################### #!#"###$#%#&#'#(#)#*#+#,#-#.#/#0#1#2#3#4#5#6#7#8#9#:#;#<#=#>#?#@#A#B#C#D#E#F#G#H#I#J#K#L#M#N#O#P#Q#R#S#T#U#V#W#X#Y#Z#[#\#]#^$_$`$a%b%c%d&e&f&g&h&i&j&k&l'm'n'o'p'q'r's't'u'v'w(x(y(z({(|(}(~(((((()))))*******+,-Safe=?Wrap a string in ANSI codes to set and reset foreground colour.?Wrap a string in ANSI codes to set and reset background colour.  NoneE(Get a Test's label, or the empty string.@Flatten a Test containing TestLists into a list of single tests.BFilter TestLists in a Test, recursively, preserving the structure.ESimple way to assert something is some expected value, with no label.IAssert a parse result is successful, printing the parse error on failure.IAssert a parse result is successful, printing the parse error on failure.RAssert a parse result is some expected value, printing the parse error on failure.SafeRG  A string received from or being passed to the operating system, such as a file path, command-line argument, or environment variable name or value. With GHC versions before 7.2 on some platforms (posix) these are typically encoded. When converting, we assume the encoding is UTF-8 (cf  Dhttp://www.dwheeler.com/essays/fixing-unix-linux-filenames.html#UTF8).!Convert a system string to an ordinary string, decoding from UTF-8 if it appears to be UTF8-encoded and GHC version is less than 7.2."oConvert a unicode string to a system string, encoding with UTF-8 if we are on a posix platform with GHC < 7.2.#&A SystemString-aware version of error.$*A SystemString-aware version of userError.%=A SystemString-aware version of error that adds a usage hint.  !"#$%  !"#$%NoneV^S&>A replacement pattern. May include numeric backreferences (N).'aRegular expression. Extended regular expression-ish syntax ? But does not support eg (?i) syntax.[Convert our string-based regexps to real ones. Can fail if the string regexp is malformed.*WReplace all occurrences of the regexp, transforming each match with the given function.,Replace all occurrences of the regexp with the replacement pattern. The replacement pattern supports numeric backreferences (N) but no other RE syntax..zA memoising version of regexReplace. Caches the result for each search pattern, replacement pattern, target string tuple.aReplace all occurrences of a regexp in a string, transforming each match with the given function. &'()*+,-./ '&(),-./*+Noneh# 0`An efficient-to-build tree suggested by Cale Gibbard, probably better than accountNameTreeFrom.5"List just the leaf nodes of a tree6eget the sub-tree rooted at the first (left-most, depth-first) occurrence of the specified node value7^get the sub-tree for the specified node value in the first tree in forest in which it occurs.8%remove all nodes past a certain depth9apply f to all tree nodes:8remove all subtrees whose nodes do not fulfill predicate;'is predicate true in any node of tree ?<-show a compact ascii representation of a tree=/show a compact ascii representation of a forest0123456789:;<=>?@A23456789:;<=01>?@A01None016;=6EA Ledger has the journal it derives from, and the accounts derived from that. Accounts are accessible both list-wise and tree-wise, since each one knows its parent and subs; the first account is the root of the tree and always exists.I Whether an account's balance is normally a positive number (in accounting terms, normally a debit balance), as for asset and expense accounts, or a negative number (in accounting terms, normally a credit balance), as for liability, equity and income accounts. Cf  ,https://en.wikipedia.org/wiki/Normal_balance .J$normally debit - assets, expenses...K0normally credit - liabilities, equity, income...LpAn account, with name, balances and links to parent/subaccounts which let you walk up or down the account tree.Nthis account's full nameO-this account's balance, excluding subaccountsP sub-accountsQ<number of postings to this account derived from the above :R-this account's balance, including subaccountsSparent accountT5used in the accounts report to label elidable parentsUA hledger journal reader is a triple of storage format name, a detector of that format, and a parser from that format to Journal.[2The id of a data format understood by hledger, eg journal or csv>. The --output-format option selects one of these for output.\xA journal in the process of being parsed, not yet finalised. The data is partial, and list fields are in reverse order.]_A Journal, containing transactions and various other things. The basic data model for hledger.^This is used during parsing (as the type alias ParsedJournal), and then finalised/validated for use as a Journal. Some extra parsing-related fields are included for convenience, at least for now. In a ParsedJournal these are updated as parsing proceeds, in a Journal they represent the final state at end of parsing (used eg by the add command)._Tthe current default year, specified by the most recent Y directive (or current date)`Vthe current default commodity and its format, specified by the most recent D directiveaPthe current stack of parent account names, specified by apply account directivesbthe current account name aliases in effect, specified by alias directives (& options ?) ,jparsetransactioncount :: Integer -- ^ the current count of transactions parsed so far (only journal format txns, currently)cBtimeclock sessions which have not been clocked out principal datad6accounts that have been declared by account directivese8commodities and formats declared by commodity directivesf5commodities and formats inferred from journal amountsk6any final trailing comments in the (main) journal filelthe file path and raw text of the main and any included journal files. The main file is first, followed by any included files in the order encountered.m0when this journal was last read from its file(s)Pthis transaction's 1-based position in the input stream, or 0 when not availableLthis transaction's comment lines, as a single non-indented multi-line string0tag names and values, extracted from the commentthis transaction's postings8any comment lines immediately preceding this transactionGThe position of parse errors (eg), like parsec's SourcePos but generic.4name, 1-based line number and 1-based column number.Afile name, inclusive range of 1-based line numbers (first, last).8this posting's date, if different from the transaction'sBthis posting's secondary date, if different from the transaction'sHthis posting's comment lines, as a single non-indented multi-line string0tag names and values, extracted from the commentRoptional: the expected balance in this commodity in the account after this postingvthis posting's parent transaction (co-recursive types). Tying this knot gets tedious, Maybe makes it easier/optional.Noriginal posting if this one is result of any transformations (one level only)The status of a transaction or posting, recorded with a status mark (nothing, !, or *). What these mean is ultimately user defined.)the (fixed) price for this amount, if any*amount is a multipier for AutoTransactionssA style for displaying digit groups in the integer part of a floating point number. It consists of the character used to separate groups (comma or period, whichever is not used as decimal point), and the size of each group, starting with the one nearest the decimal point. The last group size is assumed to repeat. Eg, comma between thousands is DigitGroups ',' [3].Display style for an amount.1does the symbol appear on the left or the right ?#space between symbol and quantity ?2number of digits displayed after the decimal pointZcharacter used as decimal point: period or comma. Nothing means "unspecified, use default")style for displaying digit groups, if anyAn amount's price (none, per unit, or total) in another commodity. Note the price should be a positive number, although this is not enforced.'The basic numeric type used in amounts.&A tag name and (possibly empty) value.EFHGIKJLMTSRQPONUVZYXW[\]^mlkjihgfedcba`_norqpstyxwvuz~}|{     z{|}~stuvwxynopqr]^_`abcdefghijklm\[UVWXYZLMNOPQRSTIJKEFGHEFGHIJKLMNOPQRSTUVWXYZ]^_`abcdefghijklmnopqrstuvwxyz{|}~   None: ~Convert Periods to DateSpans.qperiodAsDateSpan (MonthPeriod 2000 1) == DateSpan (Just $ fromGregorian 2000 1 1) (Just $ fromGregorian 2000 2 1)TrueConvert DateSpans to Periods.[dateSpanAsPeriod $ DateSpan (Just $ fromGregorian 2000 1 1) (Just $ fromGregorian 2000 2 1)MonthPeriod 2000 1@Convert PeriodBetweens to a more abstract period where possible.JsimplifyPeriod $ PeriodBetween (fromGregorian 1 1 1) (fromGregorian 2 1 1) YearPeriod 1QsimplifyPeriod $ PeriodBetween (fromGregorian 2000 10 1) (fromGregorian 2001 1 1)QuarterPeriod 2000 4PsimplifyPeriod $ PeriodBetween (fromGregorian 2000 2 1) (fromGregorian 2000 3 1)MonthPeriod 2000 2QsimplifyPeriod $ PeriodBetween (fromGregorian 2016 7 25) (fromGregorian 2016 8 1)WeekPeriod 2016-07-25PsimplifyPeriod $ PeriodBetween (fromGregorian 2000 1 1) (fromGregorian 2000 1 2)DayPeriod 2000-01-01QsimplifyPeriod $ PeriodBetween (fromGregorian 2000 2 28) (fromGregorian 2000 3 1)#PeriodBetween 2000-02-28 2000-03-01QsimplifyPeriod $ PeriodBetween (fromGregorian 2000 2 29) (fromGregorian 2000 3 1)DayPeriod 2000-02-29RsimplifyPeriod $ PeriodBetween (fromGregorian 2000 12 31) (fromGregorian 2001 1 1)DayPeriod 2000-12-31Is this period a "standard" period, referencing a particular day, week, month, quarter, or year ? Periods of other durations, or infinite duration, or not starting on a standard period boundary, are not.ERender a period as a compact display string suitable for user output.1showPeriod (WeekPeriod (fromGregorian 2016 7 25))"2016/07/25w30"fMove a standard period to the following period of same duration. Non-standard periods are unaffected.fMove a standard period to the preceding period of same duration. Non-standard periods are unaffected.Move a standard period to the following period of same duration, staying within enclosing dates. Non-standard periods are unaffected.Move a standard period to the preceding period of same duration, staying within enclosing dates. Non-standard periods are unaffected.iMove a standard period stepwise so that it encloses the given date. Non-standard periods are unaffected.'Enlarge a standard period to the next larger enclosing standard period, if there is one. Eg, a day becomes the enclosing week. A week becomes whichever month the week's thursday falls into. A year becomes all (unlimited). Non-standard periods (arbitrary dates, or open-ended) are unaffected.Shrink a period to the next smaller standard period inside it, choosing the subperiod which contains today's date if possible, otherwise the first subperiod. It goes like this: unbounded periods and nonstandard periods (between two arbitrary dates) -> current year -> current quarter if it's in selected year, otherwise first quarter of selected year -> current month if it's in selected quarter, otherwise first month of selected quarter -> current week if it's in selected month, otherwise first week of selected month -> today if it's in selected week, otherwise first day of selected week, unless that's in previous month, in which case first day of month containing selected week. Shrinking a day has no effect.~~-Safe None<A basic parse error type.Make a simple parse error.tMake a Pos. With a negative argument, throws InvalidPosException (megaparsec >= 6) or calls error (megaparsec < 6). Unmake a Pos.Parse and return some Text.       !"#$%&'()*+,-./0123456789:;<=>?@ NoneFTsbA parser of text in some monad, with a journal as state, that can throw an error string mid-parse.8A parser of text in some monad, with a journal as state.A parser of text in some monad.%A parser of strict text to some type. A parser of string to some type.gBacktracking choice, use this when alternatives share a prefix. Consumes no input if all choices fail.gBacktracking choice, use this when alternatives share a prefix. Consumes no input if all choices fail. None7M'Remove leading and trailing whitespace.Remove leading whitespace.Remove trailing whitespace.*Remove trailing newlines/carriage returns.7Clip and pad a string to a minimum & maximum width, andor left\right justify it. Works on multi-line strings too (but will rewrite non-unix line endings).sDouble-quote this string if it contains whitespace, single quotes or double-quotes, escaping the quotes as needed.sSingle-quote this string if it contains whitespace or double-quotes. No good for strings containing single quotes.tQuote-aware version of words - don't split on spaces which are inside quotes. NB correctly handles "a'b" but not "'a''". Can raise an error if parsing fails.NQuote-aware version of unwords - single-quote strings which contain whitespaceAKStrip one matching pair of single or double quotes on the ends of a string.Join several multi-line strings as side-by-side rectangular strings of the same height, top-padded. Treats wide characters as double width.Join several multi-line strings as side-by-side rectangular strings of the same height, bottom-padded. Treats wide characters as double width.Join multi-line strings horizontally, after compressing each of them to a single line with a comma and space between each original line.7Join strings vertically, left-aligned and right-padded.7Join strings vertically, right-aligned and left-padded.WConvert a multi-line string to a rectangular string top-padded to the specified height.ZConvert a multi-line string to a rectangular string bottom-padded to the specified height.Convert a multi-line string to a rectangular string left-padded to the specified width. Treats wide characters as double width.Convert a multi-line string to a rectangular string right-padded to the specified width. Treats wide characters as double width.MClip a multi-line string to the specified width and height from the top left.HClip and pad a multi-line string to fill the specified width and height.{General-purpose wide-char-aware single-line string layout function. It can left- or right-pad a short string to a minimum width. It can left- or right-clip a long string to a maximum width, optionally inserting an ellipsis (the third argument). It clips and pads on the right when the fourth argument is true, otherwise on the left. It treats wide characters as double width.A version of fitString that works on multi-line strings, separate for now to avoid breakage. This will rewrite any line endings to unix newlines.Left-pad a string to the specified width. Treats wide characters as double width. Works on multi-line strings too (but will rewrite non-unix line endings).Right-pad a string to the specified width. Treats wide characters as double width. Works on multi-line strings too (but will rewrite non-unix line endings).Double-width-character-aware string truncation. Take as many characters as possible from a string without exceeding the specified width. Eg takeWidth 3 "000T" = "0".Calculate the render width of a string, considering wide characters (counted as double width), ANSI escape codes (not counted), and line breaks (in a multi-line string, the longest line determines the width). Get the designated render width of a character: 0 for a combining character, 1 for a regular character, 2 for a wide character. (Wide characters are rendered as exactly double width in apps and fonts that support it.) (From Pandoc.)$$ NoneP1 'Remove leading and trailing whitespace.Remove leading whitespace.Remove trailing whitespace.Wrap a string in double quotes, and -prefix any embedded single quotes, if it contains whitespace and is not already single- or double-quoted.KStrip one matching pair of single or double quotes on the ends of a string.Join several multi-line strings as side-by-side rectangular strings of the same height, top-padded. Treats wide characters as double width.yGeneral-purpose wide-char-aware single-line text layout function. It can left- or right-pad a short string to a minimum width. It can left- or right-clip a long string to a maximum width, optionally inserting an ellipsis (the third argument). It clips and pads on the right when the fourth argument is true, otherwise on the left. It treats wide characters as double width.Left-pad a text to the specified width. Treats wide characters as double width. Works on multi-line texts too (but will rewrite non-unix line endings).Right-pad a string to the specified width. Treats wide characters as double width. Works on multi-line strings too (but will rewrite non-unix line endings).Double-width-character-aware string truncation. Take as many characters as possible from a string without exceeding the specified width. Eg textTakeWidth 3 "000T" = "0".Calculate the designated render width of a string, taking into account wide characters and line breaks (the longest line within a multi-line string determines the width ).None<FT~ FTrace (print to stderr) a showable value using a custom show function.iParsec trace - show the current parsec position and next input, and the provided label if it's non-null.Global debug level, which controls the verbosity of debug output on the console. The default is 0 meaning no debug output. The --debug$ command line flag sets it to 1, or  --debug=N' sets it to a higher value (note: not  --debug N, for some reason). This uses unsafePerformIO and can be accessed from anywhere and before normal command-line processing. When running with :main in GHCI, you must touch and reload this module to see the effect of a new --debug option. After command-line processing, it is also available as the debug_ field of ./. {- OPTIONS_GHC -fno-cse -} {- NOINLINE debugLevel -}&Convenience aliases for tracePrettyAt.Pretty-print a message and the showable value to the console when the debug level is >= 1, then return it. Uses unsafePerformIO. Convenience aliases for tracePrettyAtIO. Like dbg, but convenient to insert in an IO monad. XXX These have a bug; they should use traceIO, not trace, otherwise GHC can occasionally over-optimise (cf lpaste a few days ago where it killed/blocked a child thread).Pretty-print a message and a showable value to the console if the debug level is at or above the specified level. At level 0, always prints. Otherwise, uses unsafePerformIO.Log a message and a pretty-printed showable value to ./debug.log, if the debug level is at or above the specified level. At level 0, always logs. Otherwise, uses unsafePerformIO.print this string to the console before evaluating the expression, if the global debug level is at or above the specified level. Uses unsafePerformIO. dbgtrace :: Int -> String -> a -> a dbgtrace level | debugLevel >= level = trace | otherwise = flip constXPrint a showable value to the console, with a message, if the debug level is at or above the specified level (uses unsafePerformIO). Values are displayed with show, all on one line, which is hard to read. dbgshow :: Show a => Int -> String -> a -> a dbgshow level | debugLevel >= level = ltrace | otherwise = flip constPrint a showable value to the console, with a message, if the debug level is at or above the specified level (uses unsafePerformIO). Values are displayed with ppShow, each field/constructor on its own line.6Like dbg, then exit the program. Uses unsafePerformIO.Print a message and parsec debug info (parse position and next input) to the console when the debug level is at or above this level. Uses unsafePerformIO. pdbgAt :: GenParser m => Float -> String -> m ()Like dbg, but writes the output to "debug.log" in the current directory. Uses unsafePerformIO. Can fail due to log file contention if called too quickly ("*** Exception: debug.log: openFile: resource busy (file is locked)")..BCDEFGHIJKLMN! None JApply a function the specified number of times. Possibly uses O(n) stack ?Convert a possibly relative, possibly tilde-containing file path to an absolute one, given the current directory. ~username is not supported. Leave "-" unchanged. Can raise an error.YRead a file in universal newline mode, handling any of the usual line ending conventions.YRead a file in universal newline mode, handling any of the usual line ending conventions.YRead the given file, or standard input if the path is "-", using universal newline mode. ITotal version of maximum, for integral types, giving 0 for an empty list.!-Strict version of sum that doesn t leak space"1Strict version of maximum that doesn t leak space#1Strict version of minimum that doesn t leak space$"This is a version of sequence based on difference lists. It is slightly faster but we mostly use it because it uses the heap instead of the stack. This has the advantage that Neil Mitchell s trick of limiting the stack size to discover space leaks doesn t show this as a false positive. BCDEFGHIJKLMN !"#$%&'()*+,-./0123456789:;<=>?@A      !"#$%*     & !"#$% !"#$%None'TThe result of running cmdargs: an association list of option names to string values.*Is the named option present ? '()*+,-./0 '()*+-,.0/Noneo56Look up one of the sample commodities' symbol by name.6FFind the conversion rate between two commodities. Currently returns 1.12345671234567None"#079The empty simple amount.:The empty simple amount.;HA temporary value for parsed transactions which had no amount specified.OApply a binary arithmetic operator to two amounts, which should be in the same commodity if non-zero (warning, this is not checked). A zero result keeps the commodity of the second amount. The result's display style is that of the second amount, with precision set to the highest of either amount. Prices are ignored and discarded. Remember: the caller is responsible for ensuring both amounts have the same commodity.C~Convert an amount to the specified commodity, ignoring and discarding any assigned prices and assuming an exchange rate of 1.DIConvert an amount to the commodity of its assigned price, if any. Notes:kprice amounts must be MixedAmounts with exactly one component Amount (or there will be a runtime error) XXXGprice amounts should be positive, though this is not currently enforcedE*Divide an amount's quantity by a constant.F/Is this amount negative ? The price is ignored.GLDoes this amount appear to be zero when displayed with its given precision ?HCIs this amount "really" zero, regardless of the display precision ?P|Get the string representation of an amount, based on its commodity's display settings except using the specified precision.I"Set an amount's display precision.J+Set an amount's display precision, flipped.KxGet a string representation of an amount for debugging, appropriate to the current debug level. 9 shows maximum detail.L@Get the string representation of an amount, without any @ price.QColour version.RRGet the string representation of an amount, without any price or commodity symbol.MGet the string representation of an amount, based on its commodity's display settings. String representations equivalent to zero are converted to just "0". The special "missing" amount is displayed as the empty string.NkColour version. For a negative amount, adds ANSI codes to change the colour, currently to hard-coded red.OBLike showAmount, but show a zero amount's commodity if it has one.SqGet the string representation of the number part of of an amount, using the display settings from its commodity.TReplace a number string's decimal point with the specified character, and add the specified digit group separators. The last digit group will be repeated as needed.POFor rendering: a special precision value which means show all available digits.QQFor rendering: a special precision value which forces display of a decimal point.RNCanonicalise an amount's display style using the provided commodity style map.SFind the market value of this amount on the given date, in it's default valuation commodity, based on recorded market prices. If no default valuation commodity can be found, the amount is left unchanged.UFind the market value, if known, of one unit of this commodity (A) on the given valuation date, in the commodity (B) mentioned in the latest applicable market price. The latest applicable market price is the market price directive for commodity A with the latest date that is on or before the valuation date; or if there are multiple such prices with the same date, the last parsed.TThe empty mixed amount.UHA temporary value for parsed transactions which had no amount specified.VEConvert amounts in various commodities into a normalised MixedAmount.W,Simplify a mixed amount's component amounts:\amounts in the same commodity are combined unless they have different prices or total pricesmultiple zero amounts, all with the same non-null commodity, are replaced by just the last of them, preserving the commodity and amount style (all but the last zero amount are discarded)rmultiple zero amounts with multiple commodities, or no commodities, are replaced by one commodity-less zero amountBan empty amount list is replaced by one commodity-less zero amount4the special "missing" mixed amount remains unchangedXLike normaliseMixedAmount, but combine each commodity's amounts into just one by throwing away all prices except the first. This is only used as a rendering helper, and could show a misleading price.VSum same-commodity amounts in a lossy way, applying the first price to the result and discarding any other prices. Only used as a rendering helper.Y'Get a mixed amount's component amounts.Z9Filter a mixed amount's component amounts by a predicate.[Return an unnormalised MixedAmount containing exactly one Amount with the specified commodity and the quantity of that commodity found in the original. NB if Amount's quantity is zero it will be discarded next time the MixedAmount gets normalised.\]Convert a mixed amount's component amounts to the commodity of their assigned price, if any.]1Divide a mixed amount's quantities by a constant.^,Calculate the average of some mixed amounts._NIs this mixed amount negative, if it can be normalised to a single commodity ?`RDoes this mixed amount appear to be zero when displayed with its given precision ?a<Is this mixed amount "really" zero ? See isReallyZeroAmount.bZIs this mixed amount "really" zero, after converting to cost commodities where possible ?cGet the string representation of a mixed amount, after normalising it to one amount per commodity. Assumes amounts have no or similar prices, otherwise this can show misleading prices.dXLike showMixedAmount, but zero amounts are shown with their commodity if they have one.e9Get the one-line string representation of a mixed amount.f8Compact labelled trace of a mixed amount, for debugging.g6Set the display precision in the amount's commodities.hGet the string representation of a mixed amount, showing each of its component amounts with the specified precision, ignoring their commoditys' display precision settings.iIGet an unambiguous string representation of a mixed amount for debugging.jKGet the string representation of a mixed amount, but without any @ prices.kColour version.lTGet the one-line string representation of a mixed amount, but without any @ prices.mColour version.nTCanonicalise a mixed amount's display styles using the provided commodity style map.989:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnop99:;<>?@=ABCDES8MNOKLPQIJRTUVYZ[XW\]^F_GH`aboceijlkmdhgnfpNoneo{DTruncate all account name components but the last to two characters.~Sorted unique account names implied by these account names, ie these plus all their parent accounts up to the root. Eg: ["a:b:c","d:e"] -> ["a","a:b","a:b:c","d","d:e"]"a:b:c" -> ["a","a:b","a:b:c"]  "a:b:c","d:e" -> ["a","d"]UIs the first account a parent or other ancestor of (and not the same as) the second ?cFrom a list of account names, select those which are direct subaccounts of the given account name.*Convert a list of account names to a tree.OElide an account name to fit in the specified width. From the ledger 2.6 news: ] What Ledger now does is that if an account name is too long, it will start abbreviating the first parts of the account name down to two letters in length. If this results in a string that is still too long, the front will be elided -- not the end. For example: Expenses:Cash ; OK, not too long Ex:Wednesday:Cash ; Expenses6 was abbreviated to fit Ex:We:Afternoon:Cash ; Expenses and  Wednesday abbreviated ; Expenses:Wednesday:Afternoon:Lunch:Snack:Candy:Chocolate:Cash ..:Af:Lu:Sn:Ca:Ch:Cash ; Abbreviated and elided! yKeep only the first n components of an account name, where n is a positive integer. If n is 0, returns the empty string.nKeep only the first n components of an account name, where n is a positive integer. If n is 0, returns "...".\Escape an AccountName for use within a regular expression. >>> putStr $ escapeName "First?! $*?$(*) !@^*? %)*!#" First?!#$*?$(*) !^ \*\? %\)\*!@PConvert an account name to a regular expression matching it and its subaccounts.TConvert an account name to a regular expression matching it but not its subaccounts.MConvert an exact account-matching regular expression to a plain account name.IDoes this string look like an exact account-matching regular expression ?vwxyz{|}~vwxyz{|}~None<FT7 An id identifying which report item field to interpolate. These are drawn from several hledger report types, so are not all applicable for a given report./A posting or balance report item's account name1A posting or register or entry report item's date8A posting or register or entry report item's description`A balance or posting report item's balance or running total. Always rendered right-justified.A balance report item's indent level (which may be different from the account name depth). Rendered as this number of spaces, multiplied by the minimum width spec if any.0A report item's nth field. May be unimplemented.!Literal text to be rendered as-is:A data field to be formatted and interpolated. Parameters:'Left justify ? Right justified if false:Minimum width ? Will be space-padded if narrower than this2Maximum width ? Will be clipped if wider than this?Which of the standard hledger report item fields to interpolateQA format specification/template to use when rendering a report line item as text.A format is a sequence of components; each is either a literal string, or a hledger report item field with specified width and justification whose value will be interpolated at render time.A component's value may be a multi-line string (or a multi-commodity amount), in which case the final string will be either single-line or a top or bottom-aligned multi-line string depending on the StringFormat variant used.yCurrently this is only used in the balance command's single-column mode, which provides a limited StringFormat renderer.?multi-line values will be rendered on one line, comma-separatedAvalues will be top-aligned (and bottom-padded to the same height).values will be bottom-aligned (and top-padded)=Parse a string format specification, or return a parse error.None <FTV%URender a datespan as a display string, abbreviating into a compact form if possible.Get the current local date.#Get the current local month number.Get the current local year.?Get overall span enclosing multiple sequentially ordered spans.Split a DateSpan into one or more consecutive whole spans of the specified length which enclose it. If no interval is specified, the original span is returned. Examples:.let t i d1 d2 = splitSpan i $ mkdatespan d1 d2&t NoInterval "2008/01/01" "2009/01/01"[DateSpan 2008](t (Quarters 1) "2008/01/01" "2009/01/01"A[DateSpan 2008q1,DateSpan 2008q2,DateSpan 2008q3,DateSpan 2008q4]#splitSpan (Quarters 1) nulldatespan [DateSpan -]:t (Days 1) "2008/01/01" "2008/01/01" -- an empty datespan [DateSpan 2008/01/01-2007/12/31](t (Quarters 1) "2008/01/01" "2008/01/01" [DateSpan 2008/01/01-2007/12/31]&t (Months 1) "2008/01/01" "2008/04/01"4[DateSpan 2008/01,DateSpan 2008/02,DateSpan 2008/03]&t (Months 2) "2008/01/01" "2008/04/01"?[DateSpan 2008/01/01-2008/02/29,DateSpan 2008/03/01-2008/04/30]%t (Weeks 1) "2008/01/01" "2008/01/15"F[DateSpan 2007/12/31w01,DateSpan 2008/01/07w02,DateSpan 2008/01/14w03]%t (Weeks 2) "2008/01/01" "2008/01/15"?[DateSpan 2007/12/31-2008/01/13,DateSpan 2008/01/14-2008/01/27]*t (DayOfMonth 2) "2008/01/01" "2008/04/01"}[DateSpan 2007/12/02-2008/01/01,DateSpan 2008/01/02-2008/02/01,DateSpan 2008/02/02-2008/03/01,DateSpan 2008/03/02-2008/04/01]0t (WeekdayOfMonth 2 4) "2011/01/01" "2011/02/15"^[DateSpan 2010/12/09-2011/01/12,DateSpan 2011/01/13-2011/02/09,DateSpan 2011/02/10-2011/03/09])t (DayOfWeek 2) "2011/01/01" "2011/01/15"^[DateSpan 2010/12/28-2011/01/03,DateSpan 2011/01/04-2011/01/10,DateSpan 2011/01/11-2011/01/17]-t (DayOfYear 11 29) "2011/10/01" "2011/10/15" [DateSpan 2010/11/29-2011/11/28]-t (DayOfYear 11 29) "2011/12/01" "2012/12/15"?[DateSpan 2011/11/29-2012/11/28,DateSpan 2012/11/29-2013/11/28]DCount the days in a DateSpan, or if it is open-ended return Nothing.&Does the span include the given date ?GDoes the period include the given date ? (Here to avoid import cycle).4Calculate the intersection of a number of datespans.,Calculate the intersection of two datespans.rFill any unspecified dates in the first span with the dates from the second one. Sort of a one-way spanIntersect.-Calculate the union of a number of datespans.%Calculate the union of two datespans.zParse a period expression to an Interval and overall DateSpan using the provided reference date, or return a parse error.WShow a DateSpan as a human-readable pseudo-period-expression string. dateSpanAsText :: DateSpan -> String dateSpanAsText (DateSpan Nothing Nothing) = "all" dateSpanAsText (DateSpan Nothing (Just e)) = printf "to %s" (show e) dateSpanAsText (DateSpan (Just b) Nothing) = printf "from %s" (show b) dateSpanAsText (DateSpan (Just b) (Just e)) = printf "%s to %s" (show b) (show e)#Convert a single smart date string to a date span using the provided reference date, or raise an error. spanFromSmartDateString :: Day -> String -> DateSpan spanFromSmartDateString refdate s = spanFromSmartDate refdate sdate where sdate = fromparse $ parsewith smartdateonly ssConvert a smart date string to an explicit yyyy/mm/dd string using the provided reference date, or raise an error."A safe version of fixSmartDateStr.JConvert a SmartDate to an absolute date using the provided reference date. Examples: :set -XOverloadedStrings0let t = fixSmartDateStr (parsedate "2008/11/26")t "0000-01-01" "0000/01/01"t "1999-12-02" "1999/12/02"t "1999.12.02" "1999/12/02" t "1999/3/2" "1999/03/02" t "19990302" "1999/03/02" t "2008/2" "2008/02/01" t "0020/2" "0020/02/01"t "1000" "1000/01/01"t "4/2" "2008/04/02"t "2" "2008/11/02" t "January" "2008/01/01"t "feb" "2008/02/01" t "today" "2008/11/26" t "yesterday" "2008/11/25" t "tomorrow" "2008/11/27" t "this day" "2008/11/26" t "last day" "2008/11/25" t "next day" "2008/11/27"t "this week" -- last monday "2008/11/24"!t "last week" -- previous monday "2008/11/17"t "next week" -- next monday "2008/12/01"t "this month" "2008/11/01"t "last month" "2008/10/01"t "next month" "2008/12/01"t "this quarter" "2008/10/01"t "last quarter" "2008/07/01"t "next quarter" "2009/01/01" t "this year" "2008/01/01" t "last year" "2007/01/01" t "next year" "2009/01/01"t "last wed" "20081119" t "next friday" "20081128" t "next january" "20090101"X\For given date d find year-long interval that starts on given MM/DD of year and covers it. cExamples: lets take 2017-11-22. Year-long intervals covering it that starts before Nov 22 will start in 2017. However intervals that start after Nov 23rd should start in 2016: >>> let wed22nd = parsedate "2017-11-22" >>> nthdayofyearcontaining 11 21 wed22nd 2017-11-21 >>> nthdayofyearcontaining 11 22 wed22nd 2017-11-22 >>> nthdayofyearcontaining 11 23 wed22nd 2016-11-23 >>> nthdayofyearcontaining 12 02 wed22nd 2016-12-02 >>> nthdayofyearcontaining 12 31 wed22nd 2016-12-31 >>> nthdayofyearcontaining 1 1 wed22nd 2017-01-01 YZFor given date d find month-long interval that starts on nth day of month and covers it. &Examples: lets take 2017-11-22. Month-long intervals covering it that start on 1st-22nd of month will start in Nov. However intervals that start on 23rd-30th of month should start in Oct: >>> let wed22nd = parsedate "2017-11-22" >>> nthdayofmonthcontaining 1 wed22nd 2017-11-01 >>> nthdayofmonthcontaining 12 wed22nd 2017-11-12 >>> nthdayofmonthcontaining 22 wed22nd 2017-11-22 >>> nthdayofmonthcontaining 23 wed22nd 2017-10-23 >>> nthdayofmonthcontaining 30 wed22nd 2017-10-30 ZXFor given date d find week-long interval that starts on nth day of week and covers it.  Examples: 2017-11-22 is Wed. Week-long intervals that cover it and start on Mon, Tue or Wed will start in the same week. However intervals that start on Thu or Fri should start in prev week: >>> let wed22nd = parsedate "2017-11-22" >>> nthdayofweekcontaining 1 wed22nd 2017-11-20 >>> nthdayofweekcontaining 2 wed22nd 2017-11-21 >>> nthdayofweekcontaining 3 wed22nd 2017-11-22 >>> nthdayofweekcontaining 4 wed22nd 2017-11-16 >>> nthdayofweekcontaining 5 wed22nd 2017-11-17 [^For given date d find month-long interval that starts on nth weekday of month and covers it.  Examples: 2017-11-22 is 3rd Wed of Nov. Month-long intervals that cover it and start on 1st-4th Wed will start in Nov. However intervals that start on 4th Thu or Fri or later should start in Oct: >>> let wed22nd = parsedate "2017-11-22" >>> nthweekdayofmonthcontaining 1 3 wed22nd 2017-11-01 >>> nthweekdayofmonthcontaining 3 2 wed22nd 2017-11-21 >>> nthweekdayofmonthcontaining 4 3 wed22nd 2017-11-22 >>> nthweekdayofmonthcontaining 4 4 wed22nd 2017-10-26 >>> nthweekdayofmonthcontaining 4 5 wed22nd 2017-10-27\1Advance to nth weekday wd after given start day s5Parse a couple of date string formats to a time type.Parse a YYYY-MM-DD or YYYYMMBDD date string to a Day, or raise an error. For testing/debugging.parsedate "2008/02/03" 2008-02-03aParse a date in any of the formats allowed in ledger's period expressions, and maybe some others: q2004 2004/10 2004/10/1 10/1 21 october, oct yesterday, today, tomorrow this/next/last week/day/month/quarter/yearReturns a SmartDate, to be converted to a full date later (see fixSmartDate). Assumes any text in the parse stream has been lowercased.]OLike smartdate, but there must be nothing other than whitespace after the date.^0let p = parsePeriodExpr (parsedate "2008/11/26")p "from Aug to Oct"1Right (NoInterval,DateSpan 2008/08/01-2008/09/30)p "aug to oct"1Right (NoInterval,DateSpan 2008/08/01-2008/09/30)p "every 3 days in Aug"Right (Days 3,DateSpan 2008/08)p "daily from aug"#Right (Days 1,DateSpan 2008/08/01-)p "every week to 2009"$Right (Weeks 1,DateSpan -2008/12/31)p "every 2nd day of month"Right (DayOfMonth 2,DateSpan -)p "every 2nd day"Right (DayOfMonth 2,DateSpan -)p "every 2nd day 2009-"+Right (DayOfMonth 2,DateSpan 2009/01/01-) p "every 29th Nov""Right (DayOfYear 11 29,DateSpan -)p "every 29th nov -2009",Right (DayOfYear 11 29,DateSpan -2008/12/31)p "every nov 29th""Right (DayOfYear 11 29,DateSpan -)p "every Nov 29th 2009-",Right (DayOfYear 11 29,DateSpan 2009/01/01-)p "every 11/29 from 2009",Right (DayOfYear 11 29,DateSpan 2009/01/01-)'p "every 2nd Thursday of month to 2009"/Right (WeekdayOfMonth 2 4,DateSpan -2008/12/31)%p "every 1st monday of month to 2009"/Right (WeekdayOfMonth 1 1,DateSpan -2008/12/31) p "every tue"Right (DayOfWeek 2,DateSpan -)p "every 2nd day of week"Right (DayOfWeek 2,DateSpan -)p "every 2nd day of month"Right (DayOfMonth 2,DateSpan -)p "every 2nd day"Right (DayOfMonth 2,DateSpan -)p "every 2nd day 2009-")Right (DayOfMonth 2,DateSpan 2009/01/01-) p "every 2nd day of month 2009-")Right (DayOfMonth 2,DateSpan 2009/01/01-)mMake a datespan from two valid date strings parseable by parsedate (or raise an error). Eg: mkdatespan "201111" "20111231".$$None 9Sorted unique account names referenced by these postings.Remove all prices of a postingGet a posting's (primary) date - it's own primary date if specified, otherwise the parent transaction's primary date, or the null date if there is no parent transaction.Get a posting's secondary (secondary) date, which is the first of: posting's secondary date, transaction's secondary date, posting's primary date, transaction's primary date, or the null date if there is no parent transaction.TGet a posting's status. This is cleared or pending if those are explicitly set on the posting, otherwise the status of its parent transaction, or unmarked if there is no parent transaction. (Note the ambiguity, unmarked can mean "posting and transaction are both unmarked" or "posting is unmarked and don't know about the transaction".Parse a transaction's description into payee and note (aka narration) fields, assuming a convention of separating these with | (like Beancount). Ie, everything up to the first | is the payee, everything after it is the note. When there's no |, payee == note == description.JTags for this posting including any inherited from its parent transaction.:Tags for this transaction including any from its postings.3Does this posting fall within the given date span ?dGet the minimal date span which contains all the postings, or the null date span if there are none.`Prefix one account name to another, preserving posting type indicators like concatAccountNames.Join account names into one. If any of them has () or [] posting type indicators, these (the first type encountered) will also be applied to the resulting account name.Rewrite an account name using all matching aliases from the given list, in sequence. Each alias sees the result of applying the previous aliases.=Memoising version of accountNameApplyAliases, maybe overkill.$$None<]* jShow a journal transaction, formatted for the print command. ledger 2.x's standard format looks like this: yyyymmdd[ *][ CODE] description......... [ ; comment...............] account name 1..................... ...$amount1[ ; comment...............] account name 2..................... ..$-amount1[ ; comment...............] pcodewidth = no limit -- 10 -- mimicking ledger layout. pdescwidth = no limit -- 20 -- I don't remember what these mean, pacctwidth = 35 minimum, no maximum -- they were important at the time. pamtwidth = 11 pcommentwidth = no limit -- 22 >Produce posting line with all comment lines associated with itShow an account name, clipped to the given width if any, and appropriately bracketed/parenthesised for the given posting type.MGet the sums of a transaction's real, virtual, and balanced virtual postings.Is this transaction balanced ? A balanced transaction's real (non-virtual) postings sum to 0, and any balanced virtual postings also sum to 0.Ensure this transaction is balanced, possibly inferring a missing amount or conversion price(s), or return an error message. Balancing is affected by commodity display precisions, so those can (optionally) be provided.athis fails for example, if there are several missing amounts (possibly with balance assignments)More general version of  that takes an update function_Infer up to one missing amount for this transactions's real postings, and likewise for its balanced virtual postings, if needed; or return an error message if we can't.We can infer a missing amount when there are multiple postings and exactly one of them is amountless. If the amounts had price(s) the inferred amount have the same price(s), and will be converted to the price commodity.` Infer prices for this transaction's posting amounts, if needed to make the postings balance, and if possible. This is done once for the real postings and again (separately) for the balanced virtual postings. When it's not possible, the transaction is left unchanged.The simplest example is a transaction with two postings, each in a different commodity, with no prices specified. In this case we'll add a price to the first posting such that it can be converted to the commodity of the second posting (with -B), and such that the postings balance.&In general, we can infer a conversion price when the sum of posting amounts contains exactly two different commodities and no explicit prices. Also all postings are expected to contain an explicit amount (no missing amounts) in a single commodity. Otherwise no price inferring is attempted.The transaction itself could contain more than two commodities, and/or prices, if they cancel out; what matters is that the sum of posting amounts contains exactly two commodities and zero prices.FThere can also be more than two postings in either of the commodities.We want to avoid excessive display of digits when the calculated price is an irrational number, while hopefully also ensuring the displayed numbers make sense if the user does a manual calculation. This is (mostly) achieved in two ways:when there is only one posting in the "from" commodity, a total price (@@) is used, and all available decimal digits are shownotherwise, a suitable averaged unit price (@) is applied to the relevant postings, with display precision equal to the summed display precisions of the two commodities being converted between, or 2, whichever is larger.'(We don't always calculate a good-looking display precision for unit prices when the commodity display precisions are low, eg when a journal doesn't use any decimal places. The minimum of 2 helps make the prices shown by the print command a bit less surprising in this case. Could do better.)aGenerate a posting update function which assigns a suitable balancing price to the posting, if and as appropriate for the given transaction and posting type (real or balanced virtual).ZEnsure a transaction's postings refer back to it, so that eg relatedPostings works right. qEnsure a transaction's postings do not refer back to it, so that eg recursiveSize and GHCI's :sprint work right.b#Set a posting's parent transaction.update function_update function    None%1 1A query option changes a query 's/report'#s behaviour and output in some way.1show an account register focussed on this accountas above but include sub-accounts in the account register | QueryOptCostBasis -- ^ show amounts converted to cost where possible | QueryOptDate2 -- ^ show secondary dates instead of primary datessA query is a composition of search criteria, which can be used to match postings, transactions, accounts and more. always match never matchnegate this matchmatch if any of these matchmatch if all of these match!match if code matches this regexp(match if description matches this regexp0match postings whose account matches this regexp'match if primary date in this date span)match if secondary date in this date span$match txns/postings with this statusJmatch if "realness" (involves a real non-virtual account ?) has this value3match if the amount's numeric quantity is less than greater than'equal to/unsignedly equal to some value>match if the entire commodity symbol is matched by this regexp yif true, show zero-amount postings/accounts which are usually not shown more of a query option than a query criteria ?!match if account depth is less than or equal to this value. Depth is sometimes used like a query (for filtering report data) and sometimes like a query option (for controlling display)"match if a tag's name, and optionally its value, is matched by these respective regexps matching the regexp if provided, exists#Convert a query expression containing zero or more space-separated terms to a query and zero or more query options. A query term is either: :a search pattern, which matches on one or more fields, eg:acct:REGEXP - match the account name with a regular expression desc:REGEXP - match the transaction description date:PERIODEXP - match the date with a period expression^The prefix indicates the field to match, or if there is no prefix account name is assumed. a query option, which modifies the reporting behaviour in some way. There is currently one of these, which may appear only once:inacct:FULLACCTNAMEThe usual shell quoting rules are assumed. When a pattern contains whitespace, it (or the whole term including prefix) should be enclosed in single or double quotes.ePeriod expressions may contain relative dates, so a reference date is required to fully parse these.Multiple terms are combined as follows: 1. multiple account patterns are OR'd together 2. multiple description patterns are OR'd together 3. multiple status patterns are OR'd together 4. then all terms are AND'd together$Quote-and-prefix-aware version of words - don't split on spaces which are inside quotes, including quotes which may have one of the specified prefixes in front, and maybe an additional not: prefix in front of that.ckParse a single query term as either a query or a query option, or raise an error if it has invalid syntax.d>Parse the value part of a "status:" query, or return an error.exParse the boolean value part of a "status:" query. "1" means true, anything else will be parsed as false without error.&Remove query terms (or whole sub-expressions) not matching the given predicate from this query. XXX Semantics not completely clear.'"Does this query match everything ?1Does this query specify a start date and nothing else (that would filter postings prior to the date) ? When the flag is true, look for a starting secondary date instead.2What start date (or secondary date) does this query specify, if any ? For OR expressions, use the earliest of the dates. NOT is ignored.3What end date (or secondary date) does this query specify, if any ? For OR expressions, use the latest of the dates. NOT is ignored.4What date span (or secondary date span) does this query specify ? For OR expressions, use the widest possible span. NOT is ignored.fTExtract all date (or secondary date) spans specified in this query. NOT is ignored.5What date span (or secondary date span) does this query specify ? For OR expressions, use the widest possible span. NOT is ignored.gTExtract all date (or secondary date) spans specified in this query. NOT is ignored.h>What is the earliest of these dates, where Nothing is latest ?i>What is the latest of these dates, where Nothing is earliest ?j8What is the earliest of these dates, ignoring Nothings ?k6What is the latest of these dates, ignoring Nothings ?l-Compare two maybe dates, Nothing is earliest.6@The depth limit this query specifies, or a large number if none.7~The account we are currently focussed on, if any, and whether subaccounts are included. Just looks at the first query option.8gA query for the account(s) we are currently focussed on, if any. Just looks at the first query option.9aDoes the match expression match this account ? A matching in: clause is also considered a match.;6Does the match expression match this (simple) amount ?mIs this simple (single-amount) mixed amount's quantity less than, greater than, equal to, or unsignedly equal to this number ? For multi-amount (multiple commodities, or just unsimplified) mixed amounts this is always true.aIs this amount's quantity less than, greater than, equal to, or unsignedly equal to this number ?<.Does the match expression match this posting ?FNote that for account match we try both original and effective account=2Does the match expression match this transaction ?nXFilter a list of tags by matching against their names and optionally also their values.1 "!#$%&'()*+,-./0123456789:;<=>1 !"#%&',()*+1-./02345678=<9:;$>o pqrstuvwxy !"NoneHConvert time log entries to journal transactions. When there is no clockout, add one with the provided current time. Sessions crossing midnight are split into days to give accurate per-day totals.IConvert a timeclock clockin and clockout entry to an equivalent journal transaction, representing the time expenditure. Note this entry is not balanced, since we omit the "assets:time" transaction for simpler output.HIJMLKHIJNone"#0xO@Derive 1. an account tree and 2. each account's total exclusive and inclusive changes from a list of postings. This is the core of the balance command (and of *ledger). The accounts are returned as a list in flattened tree order, and also reference each other as a tree. (The first account is the root of the tree.)P.Convert an AccountName tree to an Account treeQ;Tie the knot so all subaccounts' parents are set correctly.RDGet this account's parent accounts, from the nearest up to the root.S4List the accounts at each level of the account tree.TIMap a (non-tree-structure-modifying) function over this and sub accounts.UAIs the predicate true on any of this account or its subaccounts ?V5Add subaccount-inclusive balances to an account tree.W-Remove all subaccounts below a certain depth.XRemove subaccounts below the specified depth, aggregating their balance at the depth limit (accounts at the depth limit will have any sub-balances merged into their exclusive balance).Y;Remove all leaf accounts and subtrees matching a predicate.ZFlatten an account tree into a list, which is sometimes convenient. Note since accounts link to their parents/subs, the tree's structure remains intact and can still be used. It's a tree/list![#Filter an account tree (to a list).\Sort each level of an account tree by inclusive amount, so that the accounts with largest normal balances are listed first. The provided normal balance sign determines whether normal balances are negative or positive.]Search an account list by name.NOPQRSTUVWXYZ[\]^_`abdcNOPQRSTUVWXYZ[\]^_`abNone]e]Get the string representation of an market price, based on its commodity's display settings.efefNone0QV*8zMonad transformer stack with a reference to a mutable hashtable of current account balances and a mutable array of finished transactions in original parsing order.{Environment for znWGet the transaction with this index (its 1-based position in the input stream), if any.oYGet the transaction that appeared immediately after this one in the input stream, if any.pZGet the transaction that appeared immediately before this one in the input stream, if any.q5Unique transaction descriptions used in this journal.r8All postings from this journal's transactions, in order.sESorted unique account names posted to by this journal's transactions.tSorted unique account names implied by this journal's transactions - accounts posted to and all their implied parent accounts.uKSorted unique account names declared by account directives in this journal.viSorted unique account names declared by account directives or posted to by transactions in this journal.wSorted unique account names declared by account directives, or posted to or implied as parents by transactions in this journal.xIConvenience/compatibility alias for journalAccountNamesDeclaredOrImplied.y8A query for Profit & Loss accounts in this journal. Cf  Ghttp://en.wikipedia.org/wiki/Chart_of_accounts#Profit_.26_Loss_accounts.zsA query for Income (Revenue) accounts in this journal. This is currently hard-coded to the case-insensitive regex ^(income|revenue)s?(:|$).{jA query for Expense accounts in this journal. This is currently hard-coded to the case-insensitive regex ^expenses?(:|$).|DA query for Asset, Liability & Equity accounts in this journal. Cf  Ehttp://en.wikipedia.org/wiki/Chart_of_accounts#Balance_Sheet_Accounts.}hA query for Asset accounts in this journal. This is currently hard-coded to the case-insensitive regex  ^assets?(:|$).~lA query for Liability accounts in this journal. This is currently hard-coded to the case-insensitive regex ^(debts?|liabilit(y|ies))(:|$).iA query for Equity accounts in this journal. This is currently hard-coded to the case-insensitive regex  ^equity(:|$).A query for Cash (-equivalent) accounts in this journal (ie, accounts which appear on the cashflow statement.) This is currently hard-coded to be all the Asset accounts except for those containing the case-insensitive regex (receivable|:A/R|:fixed).5Keep only transactions matching the query expression.ZKeep only postings matching the query expression. This can leave unbalanced transactions.nWithin each posting's amount, keep only the parts matching the query. This can leave unbalanced transactions.|Filter out all parts of this transaction's amounts which do not match the query. This can leave the transaction unbalanced.KFilter out all parts of this posting's amount which do not match the query.YApply additional account aliases (eg from the command-line) to all postings in a journal.Do post-parse processing on a parsed journal to make it ready for use. Reverse parsed data to normal order, canonicalise amount formats, check/ensure that transactions are balanced, and maybe check balance assertions.|RNumber (set the tindex field) this journal's transactions, counting upward from 1.}Tie the knot in all of this journal's transactions, ensuring their postings refer to them. This should be done last, after any other transaction-modifying operations.qUntie all transaction-posting knots in this journal, so that eg recursiveSize and GHCI's :sprint can work on it.]Check any balance assertions in the journal and return an error message if any of them fail.~ECheck a posting's balance assertion and return an error if it fails.Fill in any missing amounts and check that all journal transactions balance, or return an error message. This is done after parsing all amounts and applying canonical commodity styles, since balancing depends on display precision. Reports only the first error encountered.LGeneralization used in the definition of 'journalBalanceTransactionsST and This converts a transaction into a list of objects whose dates have to be considered when checking balance assertions and handled by .Transaction without balance assignments can be balanced and stored immediately and their (possibly) dated postings are returned.MTransaction with balance assignments are only supported if no posting has a \ value. Supported transactions will be returned unchanged and balanced and stored later in .This function takes different objects describing changes to account balances on a single day. It can handle either a single posting (from an already balanced transaction without assigments) or a whole transaction with assignments (which is required to no posting with pdate set.).For a single posting, there is not much to do. Only add its amount to its account and check the assertion, if there is one. This functionality is provided by .CFor a whole transaction, it loops over all postings, and performs , if there is an amount. If there is no amount, the amount is inferred by the assertion or left empty if there is no assertion. Then, the transaction is balanced, the inferred amount added to the balance (all in e) and the resulting transaction with no missing amounts is stored in the array, for later retrieval.Again in short:'Left Posting': Check the balance assertion and update the account balance. If the amount is empty do nothing. this can be the case e.g. for virtual postingsm'Right Transaction': Loop over all postings, infer their amounts and then balance and store the transaction.Adds a posting's amonut to the posting's account balance and checks a possible balance assertion. If there is no amount, it runs the supplied fallback action.]Sets an account's balance to a given amount and returns the difference of new and old amountIAdds an amount to an account's balance and returns the resulting balanceIStores a transaction in the transaction array in original parsing order.Helper functionChoose and apply a consistent display format to the posting amounts in each commodity. Each commodity's format is specified by a commodity format directive, or otherwise inferred from posting amounts as in hledger < 0.28.-Get this journal's standard display style for the given commodity. That is the style defined by the last corresponding commodity format directive if any, otherwise the style inferred from the posting amounts (or in some cases, price amounts) in this commodity if any, otherwise the default style.Infer a display format for each commodity based on the amounts parsed. "hledger... will use the format of the first posting amount in the commodity, and the highest precision of all posting amounts in the commodity."vGiven a list of amounts in parse order, build a map from their commodity names to standard commodity display formats.Given an ordered list of amount styles, choose a canonical style. That is: the style of the first, and the maximum precision of all.LConvert all this journal's amounts to cost by applying their prices, if any.rGet an ordered list of the amounts in this journal which will influence amount style canonicalisation. These are:3amounts in market price directives (in parse order)$amounts in postings (in parse order)Amounts in default commodity directives also influence canonicalisation, but earlier, as amounts are parsed. Amounts in posting prices are not used for canonicalisation.+Maps over all of the amounts in the journalLTraverses over all ofthe amounts in the journal, in the order indicated by .The fully specified date span enclosing the dates (primary or secondary) of all this journal's transactions and postings, or DateSpan Nothing Nothing if there are none.Apply the pivot transformation to all postings in a journal, replacing their account name by their value for the given field or tag.eReplace this transaction's postings' account names with the value of the given field or tag, if any.rReplace this posting's account name with the value of the given field or tag, if any, otherwise the empty string.Check if a set of hledger account/description filter patterns matches the given account name or entry description. Patterns are case-insensitive regular expressions. Prefixed with not:, they become anti-patterns.creates transaction store"store" operation"calculate result from transactions+action to execute, if posting has no amount2ghijklmnopqrstuvwxyz{|}~2mkljstuvwxqhinopr|yz{}~g{None; Filter a journal's transactions with the given query, then derive a ledger containing the chart of accounts and balances. If the query includes a depth limit, that will affect the ledger's journal but not the ledger's account tree.List a ledger's account names.$Get the named account from a ledger.Get this ledger's root account, which is a dummy "root" account above all others. This should always be first in the account list, if somehow not this returns a null account.LList a ledger's top-level accounts (the ones below the root), in tree order.GList a ledger's bottom-level (subaccount-less) accounts, in tree order.AAccounts in ledger whose name matches the pattern, in tree order..List a ledger's postings, in the order parsed.The (fully specified) date span containing all the ledger's (filtered) transactions, or DateSpan Nothing Nothing if there are none.$All commodities used in this ledger. None%t Builds a  transformer based on .^ parameter allows injection of additional restriction on posting match. Don't forget to call .zrunModifierTransaction Any (ModifierTransaction "" ["pong" `post` usd 2]) nulltransaction{tpostings=["ping" `post` usd 1]} 0000/01/01 ping $1.00 pong $2.00~runModifierTransaction Any (ModifierTransaction "miss" ["pong" `post` usd 2]) nulltransaction{tpostings=["ping" `post` usd 1]} 0000/01/01 ping $1.00{runModifierTransaction None (ModifierTransaction "" ["pong" `post` usd 2]) nulltransaction{tpostings=["ping" `post` usd 1]} 0000/01/01 ping $1.00runModifierTransaction Any (ModifierTransaction "ping" ["pong" `post` amount{amultiplier=True, aquantity=3}]) nulltransaction{tpostings=["ping" `post` usd 2]} 0000/01/01 ping $2.00 pong $6.00Extract  equivalent of  from 2mtvaluequery (ModifierTransaction "" []) undefinedAny6mtvaluequery (ModifierTransaction "ping" []) undefined Acct "ping";mtvaluequery (ModifierTransaction "date:2016" []) undefinedDate (DateSpan 2016)Fmtvaluequery (ModifierTransaction "date:today" []) (read "2017-01-01")Date (DateSpan 2017/01/01) of all dates mentioned in ]jdatespan nulljournal DateSpan -Hjdatespan nulljournal{jtxns=[nulltransaction{tdate=read "2016-01-01"}] }DateSpan 2016/01/01jdatespan nulljournal{jtxns=[nulltransaction{tdate=read "2016-01-01", tpostings=[nullposting{pdate=Just $ read "2016-02-01"}]}] }DateSpan 2016/01/01-2016/02/01 of all dates mentioned in tdates nulltransaction [0000-01-01]Generate transactions from  within a #Note that new transactions require  post-processing.wlet gen str = mapM_ (putStr . show) $ runPeriodicTransaction (PeriodicTransaction str ["hi" `post` usd 1]) nulldatespan#gen "monthly from 2017/1 to 2017/4" 2017/01/01 hi $1.00 2017/02/01 hi $1.00 2017/03/01 hi $1.00#gen "monthly from 2017/1 to 2017/5" 2017/01/01 hi $1.00 2017/02/01 hi $1.00 2017/03/01 hi $1.00 2017/04/01 hi $1.004gen "every 2nd day of month from 2017/02 to 2017/04" 2017/01/02 hi $1.00 2017/02/02 hi $1.00 2017/03/02 hi $1.00#gen "monthly from 2017/1 to 2017/4" 2017/01/01 hi $1.00 2017/02/01 hi $1.00 2017/03/01 hi $1.003gen "every 30th day of month from 2017/1 to 2017/5" 2016/12/30 hi $1.00 2017/01/30 hi $1.00 2017/02/28 hi $1.00 2017/03/30 hi $1.00 2017/04/30 hi $1.007gen "every 2nd Thursday of month from 2017/1 to 2017/4" 2016/12/08 hi $1.00 2017/01/12 hi $1.00 2017/02/09 hi $1.00 2017/03/09 hi $1.00&gen "every nov 29th from 2017 to 2019" 2016/11/29 hi $1.00 2017/11/29 hi $1.00 2018/11/29 hi $1.00 gen "2017/1" 2017/01/01 hi $1.00gen ""... Failed to parse ...gen "weekly from 2017"{*** Exception: Unable to generate transactions according to "weekly from 2017" as 2017-01-01 is not a first day of the weekgen "monthly from 2017/5/4"*** Exception: Unable to generate transactions according to "monthly from 2017/5/4" as 2017-05-04 is not a first day of the month !gen "every quarter from 2017/1/2"*** Exception: Unable to generate transactions according to "every quarter from 2017/1/2" as 2017-01-02 is not a first day of the quarter gen "yearly from 2017/1/14"*** Exception: Unable to generate transactions according to "yearly from 2017/1/14" as 2017-01-14 is not a first day of the year NoneuEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~~'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopvwxyz{|}~  HIJNOPQRSTUVWXYZ[\]^_`abefghijklmnopqrstuvwxyz{|}~None"#1Standard options for customising report filtering and output. Most of these correspond to standard hledger command-line options or query arguments, but not all. Some are used only by certain commands, as noted below. (Zero, one, or two statuses to be matchedwhen running a balance report on accounts of the same normal balance type, eg in the income section of an income statement, this helps --sort-amount know how to sort negative numbers.aShould accounts be displayed: in the command's default style, hierarchically, or as a flat list ?3Which "balance" is being shown in a balance report.%The change of balance in each period./The accumulated change across multiple periods.The historical ending balance, including the effect of all postings before the report period. Unless altered by, a query, this is what you would see on a bank statement.PDo extra validation of raw option values, raising an error if there's a problem.MDo extra validation of report options, raising an error if there's a problem.JGet the report interval, if any, specified by the last of -p/--period, -D --daily, -W$--weekly, -M/--monthly etc. options.BGet any statuses to be matched, as specified by -U/--unmarked, -P --pending, -C`--cleared flags. -UPC is equivalent to no flags, so this returns a list of 0-2 unique statuses.mReduce a list of statuses to just one of each status, and if all statuses are present return the empty list.@Add/remove this status from the status list. Used by hledger-ui.6Select the Transaction date accessor based on --date2.2Select the Posting date accessor based on --date2.5Report which date we will report on based on --date2.;Legacy-compatible convenience aliases for accountlistmode_.\Convert this journal's postings' amounts to the cost basis amounts if specified by options.0Convert report options and arguments to a query.PConvert report options to a query, ignoring any non-flag command line arguments.6Convert report options and arguments to query options.The effective report start/end dates are the dates specified by options or queries, otherwise the earliest/latest transaction or posting date in the journal, otherwise (for an empty journal) nothing. Needs IO to parse smart dates in options/queries.The specified report start/end dates are the dates specified by options or queries, if any. Needs IO to parse smart dates in options/queries.::None"#1;=<FAn account transactions report represents transactions affecting a particular account (or possibly several accounts, but we don't use that). It is used eg by hledger-ui's and hledger-web's account register view, where we want to show one row per transaction, in the context of the current account. Report items consist of:the transaction, unmodifiedXthe transaction as seen in the context of the current account and query, which means:the transaction date is set to the "transaction context date", which can be different from the transaction's general date: if postings to the current account (and matched by the report query) have their own dates, it's the earliest of these dates.ethe transaction's postings are filtered, excluding any which are not matched by the report query9a text description of the other account(s) posted to/fromFa flag indicating whether there's more than one other account involved2the total increase/decrease to the current accountthe report transactions' running total after this transaction; or if historical balance is requested (-H), the historical running total. The historical running total includes transactions from before the report start date if one is specified, filtered by the report query. The historical running total may or may not be the account's historical running balance, depending on the report query.Items are sorted by transaction register date (the earliest date the transaction posts to the current account), most recent first. Reporting intervals are currently ignored.A transactions report includes a list of transactions (posting-filtered and unfiltered variants), a running balance, and some other information helpful for rendering a register view (a flag indicating multiple other accounts and a display string describing them) with or without a notion of current account(s). Two kinds of report use this data structure, see journalTransactionsReport and accountTransactionsReport below for detais.Select transactions from the whole journal. This is similar to a "postingsReport" except with transaction-based report items which are ordered most recent first. XXX Or an EntriesReport - use that instead ? This is used by hledger-web's journal view.TGenerate transactions report items from a list of transactions, using the provided user-specified report query, a query specifying which account to use as the focus, a starting balance, a sign-setting function and a balance-summing function. Or with a None current account query, this can also be used for the journalTransactionsReport.What is the transaction's date in the context of a particular account (specified with a query) and report query, as in an account register ? It's normally the transaction's general date, but if any posting(s) matched by the report query and affecting the matched account(s) have their own earlier dates, it's the earliest of these dates. Secondary transaction/posting dates are ignored.Generate a simplified summary of some postings' accounts. To reduce noise, if there are both real and virtual postings, show only the real ones.Split a transactions report whose items may involve several commodities, into one or more single-commodity transactions reports. None"#1;=N  A summary posting summarises the activity in one account within a report interval. It is currently kludgily represented by a regular Posting with no description, the interval's start date stored as the posting date, and the interval's end date attached with a tuple.A postings report is a list of postings with a running total, a label for the total field, and a little extra transaction info to help with rendering. This is used eg for the register command.Select postings from the journal and add running balance and other information to make a postings report. Used by eg hledger's register command.ZAdjust report start/end dates to more useful ones based on journal data and report intervals. Ie: 1. If the start date is unspecified, use the earliest date in the journal (if any) 2. If the end date is unspecified, use the latest date in the journal (if any) 3. If a report interval is specified, enlarge the dates to enclose whole intervalsFind postings matching a given query, within a given date span, and also any similarly-matched postings before that date span. Date restrictions and depth restrictions in the query are ignored. A helper for the postings report.sGenerate postings report line items from a list of postings or (with non-Nothing dates attached) summary postings.Generate one postings report line item, containing the posting, the current running balance, and optionally the posting date and/or the transaction description.nConvert a list of postings into summary postings, one per interval, aggregated to the specified depth if any.Given a date span (representing a report interval) and a list of postings within it, aggregate the postings into one summary posting per account.When a depth argument is present, postings to accounts of greater depth are also aggregated where possible. If the depth is 0, all postings in the span are aggregated into a single posting with account name "...".TThe showempty flag includes spans with no postings and also postings with 0 amount.!None"#1;=,A journal entries report is a list of whole transactions as originally entered in the journal (mostly). This is used by eg hledger's print command and hledger-web's journal entries view.*Select transactions for an entries report.  "None"#1;=d lGet the historical running inclusive balance of a particular account, from earliest to latest posting date.  #None "#$1<NV]t' Various options to use when reading journal files. Similar to CliOptions.inputflags, simplifies the journal-reading functions. _a file/storage format to try, unless overridden by a filename prefix. Nothing means try all.1a conversion rules file to use (when reading CSV)account name aliases to apply/do light anonymisation/obfuscation of the data don't check balance assertions8read only new transactions since this file was last read0save latest new transactions state for next time0use the given field's value as the account name 8Run a string parser with no state in the identity monad.8Run a string parser with no state in the identity monad.7Run a journal parser with a null journal-parsing state.7Run a journal parser with a null journal-parsing state.FRun an error-raising journal parser with a null journal-parsing state.FRun an error-raising journal parser with a null journal-parsing state.Given a megaparsec ParsedJournal parser, balance assertion flag, file path and file content: parse and post-process a Journal, or give an error.%2Get amount style associated with default currency.Returns t used to defined by a latest default commodity directive prior to current position within this file or its parents.&&Lookup currency-specific amount style.Returns g used in commodity directive within current journal prior to current position or in its parents files./gTerminate parsing entirely, returning the given error message with the given parse position prepended.3Parse a date in YYYYMMDD format. Hyphen (-) and period (.) are also allowed as separators. The year may be omitted if a default year has been set. Leading zeroes may be omitted.4Parse a date and time in YYYYMM<DD HH:MM[:SS][+-ZZZZ] format. Hyphen (-) and period (.) are also allowed as date separators. The year may be omitted if a default year has been set. Seconds are optional. The timezone is optional and ignored (the time is always interpreted as a local time). Leading zeroes may be omitted (except in a timezone).6 1> parsewith twoorthreepartdatestringp "2016/01/2" Right "201601n2" twoorthreepartdatestringp = do n1 <- some digitChar c <- datesepchar n2 <- some digitChar mn3  -optional $ char c<> some digitChar return $ n1 ++ c:n2 ++ maybe "" (c:) mn3gParse an account name, then apply any parent account prefix and/or account aliases currently in effect.7KParse an account name. Account names start with a non-space, may have single spaces inside them, and are terminated by two or more spaces (or end of input). Also they have one or more components of at least one character, separated by the account separator char. (This parser will also consume one following space, if present.)8Parse whitespace then an amount, with an optional left or right currency symbol and optional price, or return the special "missing" marker amount.9Parse a single-commodity amount, with optional symbol on the left or right, optional unit or total price, and optional (ignored) ledger-style balance assertion or fixed lot price declaration.:/Parse an amount from a string, or get an error.;4Parse a mixed amount from a string, or get an error.GPParse a string representation of a number for its value and display attributes.Some international number formats are accepted, eg either period or comma may be used for the decimal point, and the other of these may be used for separating digit groups in the integer part. See  .http://en.wikipedia.org/wiki/Decimal_separator for more examples.This returns: the parsed numeric value, the precision (number of digits seen following the decimal point), the decimal point character used if any, and the digit group style if any.JVParse a unicode char that represents any non-control space char (Zs general category).M:Parse a possibly multi-line comment following a semicolon.NParse a possibly multi-line comment following a semicolon, and any tags and/or posting dates within it. Posting dates can be expressed with "date""date2" tags andor bracketed dates. The dates are parsed in full here so that errors are reported in the right position. Missing years can be inferred if a default date is provided.Yrejp (followingcommentandtagsp (Just $ fromGregorian 2000 1 2)) "; a:b, date:3/4, [=5/6]"\Right ("a:b, date:3/4, [=5/6]\n",[("a","b"),("date","3/4")],Just 2000-03-04,Just 2000-05-06)Year unspecified and no default provided -> unknown year error, at correct position: >>> rejp (followingcommentandtagsp Nothing) " ; xxx date:3/4n ; second line" Left ...1:22...partial date 3/4 found, but the current year is unknown...Date tag value contains trailing text - forgot the comma, confused: the syntaxes ? We'll accept the leading date anyway >>> rejp (followingcommentandtagsp (Just $ fromGregorian 2000 1 2)) "; date:34=56" Right ("date:34=56n",[("date","34=56")],Just 2000-03-04,Nothing)RMExtract any tags (name:value ended by comma or newline) embedded in a string.commentTags "a b:, c:c d:d, e"[("b",""),("c","c d:d")]QcommentTags "a [1/1/1] [1/1] [1], [=1/1/1] [=1/1] [=1] [1/1=1/1/1] [1=1/1/1] b:c" [("b","c")] -[("date","111"),("date","11"),("date2","111"),("date2","11"),("date","11"),("date2","111"),("date","1"),("date2","11/1")]commentTags "\na b:, \nd:e, f"[("b",""),("d","e")]S!Parse all tags found in a string.T'Parse everything up till the first tag.rtp nontagp "\na b:, \nd:e, f" Right "\na "UTags begin with a colon-suffixed tag name (a word beginning with a letter) and are followed by a tag value (any text up to a comma or newline, whitespace-stripped).!rtp tagp "a:b b , c AuxDate: 4/2"Right ("a","b b")Vrtp tagnamep "a:" Right "a"XTParse all posting dates found in a string. Posting dates can be expressed with datedate2 tags andor bracketed dates. The dates are parsed fully to give useful errors. Missing years can be inferred only if a default date is provided.YDate tags are tags with name "date" or "date2". Their value is parsed as a date, using the provided default date if any for inferring a missing year if needed. Any error in date parsing is reported and terminates parsing.)rejp (datetagp Nothing) "date: 2000/1/2 "Right ("date",2000-01-02);rejp (datetagp (Just $ fromGregorian 2001 2 3)) "date2:3/4"Right ("date2",2001-03-04)$rejp (datetagp Nothing) "date: 3/4"HLeft ...1:9...partial date 3/4 found, but the current year is unknown...Z#Parse Ledger-style bracketed posting dates ([DATE=DATE2]), as "date" and/or "date2" tags. Anything that looks like an attempt at this (a square-bracketed sequence of 0123456789/-.= containing at least one digit and one date separator) is also parsed, and will throw an appropriate error.The dates are parsed in full here so that errors are reported in the right position. A missing year in DATE can be inferred if a default date is provided. A missing year in DATE2 will be inferred from DATE.2rejp (bracketeddatetagsp Nothing) "[2016/1/2=3/4]"0Right [("date",2016-01-02),("date2",2016-03-04)]'rejp (bracketeddatetagsp Nothing) "[1]"Left ...not a bracketed date.../rejp (bracketeddatetagsp Nothing) "[2016/1/32]"&Left ...1:11:...bad date: 2016/1/32...*rejp (bracketeddatetagsp Nothing) "[1/31]"JLeft ...1:6:...partial date 1/31 found, but the current year is unknown...8rejp (bracketeddatetagsp Nothing) "[0123456789/-.=/-.=]"1Left ...1:15:...bad date, different separators...P    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZQ   [ !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ   $NoneParse and post-process a Journal+ from the timedot format, or give an error.KParse timedot day entries to zero or more time transactions for that day. Y 2/1 fos.haskell .... .. biz.research . inc.client1 .... .... .... .... .... .... =Parse a single timedot entry to one (dateless) transaction.  fos.haskell .... .. Parse a duration of seconds, minutes, hours, days, weeks, months or years, written as a decimal number followed by s, m, h, d, w, mo or y, assuming h if there is no unit. Returns the duration as hours, assuming 1m = 60s, 1h = 60m, 1d = 24h, 1w = 7d, 1mo = 30d, 1y=365d.  1.5 1.5h 90m EParse a quantity written as a line of dots, each representing 0.25.  .... .. ^_`^_`%NoneParse and post-process a Journaln from timeclock.el's timeclock format, saving the provided file path and the current time, or give an error.Parse a timeclock entry.abcabc&None "#$<NV` Parse and post-process a Journal7 from hledger's journal file format, or give an error.e,A journal parser. Accumulates and returns a  ParsedJournal2, which should be finalised/validated before use.*rejp (journalp <* eof) "2015/1/1\n a 0\n".Right Journal with 1 transactions, 1 accountsbA side-effecting parser; parses any kind of journal item and updates the parse state accordingly.fHParse any journal directive and update the parse state accordingly. Cf  )http://hledger.org/manual.html#directives, =http://ledger-cli.org/3.0/doc/ledger3.html#Command-DirectivesfLift an IO action into the exception monad, rethrowing any IO error with the given message prepended.3Parse a one-line or multi-line commodity directive.5Right _ <- rejp commoditydirectivep "commodity $1.00"ARight _ <- rejp commoditydirectivep "commodity $\n format $1.00"SRight _ <- rejp commoditydirectivep "commodity $\n\n" -- a commodity with no format]Right _ <- rejp commoditydirectivep "commodity $1.00\n format $1.00" -- both, what happens ?%Parse a one-line commodity directive.<Right _ <- rejp commoditydirectiveonelinep "commodity $1.00"ERight _ <- rejp commoditydirectiveonelinep "commodity $1.00 ; blah\n"RParse a multi-line commodity directive, containing 0 or more format subdirectives.YRight _ <- rejp commoditydirectivemultilinep "commodity $ ; blah \n format $1.00 ; blah"bParse a format (sub)directive, throwing a parse error if its symbol does not match the one given.WBacktracking parser similar to string, but allows varying amount of space between words*Parse a (possibly unbalanced) transaction.*0346LMdefghijkd*efhi436j0LMgk'None %;<=FTV¦ A set of data definitions and account-matching patterns sufficient to convert a particular CSV data file into meaningful journal transactions.Parse and post-process a Journal` from CSV data, or give an error. XXX currently ignores the string and reads from the file pathzRead a Journal from the given CSV data (and filename, used for error messages), or return an error. Proceed as follows:  1. parse CSV conversion rules from the specified rules file, or from the default rules file for the specified CSV file, if it exists, or throw a parse error; if it doesn't exist, use built-in default rules 2. parse the CSV data, or throw a parse error 3. convert the CSV records to transactions using the rules 4. if the rules file didn't exist, create it with the default rules and filename 5. return the transactions as a Journal :Return the cleaned up and validated CSV data, or an error.oAn error-throwing action that parses this file's content as CSV conversion rules, interpolating any included files first, and runs some extra validation checks.pInline all files referenced by include directives in this hledger CSV rules text, recursively. Included file paths may be relative to the directory of the provided file path. This is a cheap hack to avoid rewriting the CSV rules parser.qAn error-throwing action that parses this text as CSV conversion rules and runs some extra validation checks. The file path is for error messages.MParse this text as CSV conversion rules. The file path is for error messages.(Return the validated rules, or an error.Canonicalise the sign in a CSV amount string. Such strings can be parenthesized, which is equivalent to having a minus sign. Also they can end up with a double minus sign, which cancels out.;Show a (approximate) recreation of the original CSV record.MGiven the conversion rules, a CSV record and a journal entry field name, find the template value ultimately assigned to this field, either at top level or in a matching conditional block. Conditional blocks' patterns are matched against an approximation of the original CSV record: all the field values with commas intercalated.lmnopqrsmlnoqprs(NoneVw]A file path optionally prefixed by a reader name and colon (journal:, csv:, timedot:, etc.).xNRead the default journal file specified by the environment, or raise an error.y#Get the default journal file path specified by the environment. Like ledger, we look first for the LEDGER_FILE environment variable, and if that does not exist, for the legacy LEDGER environment variable. If neither is set, or the value is blank, return the hard-coded default, which is .hledger.journalh in the users's home directory (or in the current directory, if we cannot determine a home directory).z 7readJournalFiles mformat mrulesfile assrt prefixedfileslRead a Journal from each specified file path and combine them into one. Or, return the first error message.Combining Journals means concatenating them, basically. The parse state resets at the start of each file, which means that directives & aliases do not cross file boundaries. (The final parse state saved in the Journal does span all files, however.)TAs with readJournalFile, file paths can optionally have a READER: prefix, and the mformat, mrulesfile, and Eassrt@ arguments are supported (and these are applied to all files).{ 5readJournalFile mformat mrulesfile assrt prefixedfileRead a Journal from this file, or from stdin if the file path is -, or return an error message. The file path can have a READER: prefix.FThe reader (data format) is chosen based on (in priority order): the mformat argument; the file path's READER: prefix, if any; a recognised file name extension (in readJournal); if none of these identify a known reader, all built-in readers are tried in turn.A CSV conversion rules file ( mrulesfiles,) can be specified to help convert CSV data.BOptionally, any balance assertions in the journal can be checked (assrt).|sIf a filepath is prefixed by one of the reader names and a colon, split that off. Eg "csv:-" -> (Just "csv", "-").}^If the specified journal file does not exist (and is not "-"), give a helpful error and quit.~REnsure there is a journal file at the given path, creating an empty one if needed.5Give the content for a new auto-created journal file.QRead a Journal from the given text trying all readers in turn, or throw an error. .readJournal mformat mrulesfile assrt mfile txt:Read a Journal from some text, or return an error message.FThe reader (data format) is chosen based on (in priority order): the mformat0 argument; a recognised file name extension in mfile (if provided). If none of these identify a known reader, all built-in readers are tried in turn (returning the first one's error message if none of them succeed).A CSV conversion rules file ( mrulesfiles,) can be specified to help convert CSV data.BOptionally, any balance assertions in the journal can be checked (assrt). findReader mformat mpathFind the reader named by mformato, if provided. Or, if a file path is provided, find the first reader that handles its file extension, if any. *tryReaders readers mrulesfile assrt path tTry to parse the given text to a Journal using each reader in turn, returning the first success, or if all of them fail, the first error message.Get all instances of the latest date in an unsorted list of dates. Ie, if the latest date appears once, return it in a one-element list, if it appears three times (anywhere), return three of it.[Remember that these transaction dates were the latest seen when reading this journal file.(What were the latest transaction dates seen the last time this journal file was read ? If there were multiple transactions on the latest date, that number of dates is returned, otherwise just one. Or none if no transactions were read, or if latest dates info is not available for this file.OWhere to save latest transaction dates for the given file path. (.latest.FILE)Given zero or more latest dates (all the same, representing the latest previously seen transaction date, and how many transactions were seen on that date), remove transactions with earlier dates from the journal, and the same number of transactions on the latest date, if any, leaving only transactions that we can assume are newer. Also returns the new latest dates of the new journal._    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZgjwxyz{|}~wxyz{}~|gj)None;=V;.A simple single-column balance report. It has: 2a list of items, one per account, each containing:the full account namethe Ledger-style elided short account name (the leaf account name, prefixed by any boring parents immediately above); or with --flat, the full account name againthe number of indentation steps for rendering a Ledger-style account tree, taking into account elided boring parents, --no-elide and --flat an amount the total of all amountsWhen true (the default), this makes balance --flat reports and their implementation clearer. Single/multi-col balance reports currently aren't all correct if this is false. Enabling this makes balance --flat --empty also show parent accounts without postings, in addition to those with postings and a zero balance. Disabling it shows only the latter. No longer supported, but leave this here for a bit. flatShowsPostinglessAccounts = TrueGenerate a simple balance report, containing the matched accounts and their balances (change of balance) during the specified period. This is like PeriodChangeReport with a single column (but more mature, eg this can do hierarchical display).In an account tree with zero-balance leaves removed, mark the elidable parent accounts (those with one subaccount and no balance of their own).*None;=V*LA multi balance report is a balance report with one or more columns. It has: *a list of each column's period (date span) a list of rows, each containing:the full account namethe leaf account namethe account's depth&a list of amounts, one for each columnthe total of the row's amounts the average of the row's amounts 3the column totals and the overall total and averageThe meaning of the amounts depends on the type of multi balance report, of which there are three: periodic, cumulative and historical (see  and Hledger.Cli.Commands.Balance).Generates a single column BalanceReport like balanceReport, but uses multiBalanceReport, so supports --historical. TODO Does not support boring parent eliding or --flat yet.Generate a multicolumn balance report for the matched accounts, showing the change of balance, accumulated balance, or historical balance in each of the specified periods.+None"#1;=+] ,None-7 BCDEFGHIJKLMN !"#$%&'()*+,-./0123456789:;<=>?@AEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~~      !"#$%'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopvwxyz{|}~   "!#$%&'()*+,-./0123456789:;<=>HIJNOPQRSTUVWXYZ[\]^_`abefghijklmnopqrstuvwxyz{|}~     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZgjwxyz{|}~01201301401501601701801901:01;01<01=>?@>?A>?B>?C>?D>?E>FG>FH>FIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{||}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                                                                                      !"#$%&'()* + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M NOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%& ' ( ) * +!,!-!.!/"0#1#1#2#3#4#5#6#7#8#9#:#;#<#=#>#?#@#A#B#C#D#E#F#G#H#I#J#K#L#M#N#O#P#Q#R#S#T#U#V#W#X#Y#Z#[#\#]#^#_#`#a#b#c#d#e#f#g#h#i#j#k#l#m#n#o#p#q#r#s#t#u#v#w#x#y#z#{#|#}#~####$$$%%%&&&&&&&&'''''''''''((((((((((((()))))*******+,-------->>>      !"#$%&'()*+,-./0123435363738393:3;3<3=3>3?3@3A3B3C3D3E3F3G3H3I3J3KLMLNL<LOLPLQLRLSLTLULVLWLXLYLZ[\[][^[_[`[a[b[c[c[d[d[e[f[g >hi>hj>hk>hl>hm>hn>ho>hp>hq>hr>hs>ht>huvwxyz{|}~      $$$$$%%&&&&&&&&&''''''''''''''(((((((()&hledger-lib-1.5-3Yp7rto1AaFI5WWC7fkex8Hledger.Utils.ColorHledger.Utils.UTF8IOCompatHledger.Utils.DebugHledger.Utils.TestHledger.Utils.RegexHledger.Utils.TreeHledger.Data.TypesHledger.Data.PeriodText.Megaparsec.CompatHledger.Utils.ParseHledger.Utils.StringHledger.Utils.Text Hledger.UtilsHledger.Data.RawOptionsHledger.Data.CommodityHledger.Data.AmountHledger.Data.AccountNameHledger.Data.StringFormatHledger.Data.DatesHledger.Data.PostingHledger.Data.Transaction Hledger.QueryHledger.Data.TimeclockHledger.Data.AccountHledger.Data.MarketPriceHledger.Data.JournalHledger.Data.LedgerHledger.Data.AutoTransaction Hledger.DataHledger.Reports.ReportOptions#Hledger.Reports.TransactionsReportsHledger.Reports.PostingsReportHledger.Reports.EntriesReport$Hledger.Reports.BalanceHistoryReportHledger.Read.CommonHledger.Read.TimedotReaderHledger.Read.TimeclockReaderHledger.Read.JournalReaderHledger.Read.CsvReader Hledger.ReadHledger.Reports.BalanceReport#Hledger.Reports.MultiBalanceReportsHledger.ReportsHledgerPaths_hledger_libHledger.Cli.CliOptionsCliOpts(ansi-terminal-0.8-DandwYS4JkH9Xnw74PUapCSystem.Console.ANSI.TypesWhiteCyanMagentaBlueYellowGreenRedBlackColorVividDullColorIntensitybase System.IO appendFile writeFilereadFile getContentsputStrLnputStrGHC.IO.Handle.Text hPutStrLnhPutStr hGetContents)pretty-show-1.6.15-5cAvN2LPVLH9nYGqOguH1NText.Show.PrettyppShowcolorbgColortestName flattenTests filterTestsis assertParseassertParseFailureassertParseEqualprintParseError SystemStringfromSystemStringtoSystemStringerror' userError' usageError ReplacementRegexp regexMatchesregexMatchesCIregexReplaceByregexReplaceByCI regexReplaceregexReplaceCIregexReplaceMemoregexReplaceCIMemoFastTreeTrootsubsbranchesleaves subtreeatsubtreeinforest treeprunetreemap treefiltertreeanyshowtree showforest emptyTree mergeTrees treeFromPath treeFromPaths$fShowFastTree $fEqFastTree $fOrdFastTreeLedgerljournal laccounts NormalBalanceNormalPositiveNormalNegativeAccountaname aebalanceasubs anumpostings aibalanceaparentaboringReaderrFormat rExtensionsrParser rExperimental StorageFormat ParsedJournalJournaljparsedefaultyearjparsedefaultcommodityjparseparentaccounts jparsealiasesjparsetimeclockentries jaccounts jcommoditiesjinferredcommodities jmarketprices jmodifiertxns jperiodictxnsjtxnsjfinalcommentlinesjfiles jlastreadtime MarketPricempdate mpcommoditympamountTimeclockEntry tlsourcepostlcode tldatetime tlaccount tldescription TimeclockCode SetBalanceSetRequiredHoursInOutFinalOutPeriodicTransactionptperiodicexpr ptpostingsModifierTransaction mtvalueexpr mtpostings Transactiontindex tsourcepostdatetdate2tstatustcode tdescriptiontcommentttags tpostingstpreceding_comment_linesGenericSourcePosJournalSourcePosPostingpdatepdate2pstatuspaccountpamountpcommentptypeptagspbalanceassertion ptransactionporiginBalanceAssertionStatusUnmarkedPendingClearedTagTagValueTagName PostingTypeRegularPostingVirtualPostingBalancedVirtualPosting MixedAmountMixedAmount acommodity aquantityapriceastyle amultiplier CommoditycsymbolcformatCommoditySymbolDigitGroupStyle DigitGroups AmountStyleascommoditysideascommodityspaced asprecisionasdecimalpoint asdigitgroupsPriceNoPrice UnitPrice TotalPriceQuantitySideLR AccountAlias BasicAlias RegexAlias AccountNameInterval NoIntervalDaysWeeksMonthsQuartersYears DayOfMonthWeekdayOfMonth DayOfWeek DayOfYearPeriod DayPeriod WeekPeriod MonthPeriod QuarterPeriod YearPeriod PeriodBetween PeriodFromPeriodTo PeriodAllWeekDayMonthDayYearDay MonthWeekYearWeekQuarterMonthYearDateSpan WhichDate PrimaryDate SecondaryDate SmartDate$fNFDataClockTime$fNFDataDateSpan$fDefaultDateSpan$fDefaultPeriod$fNFDataInterval$fDefaultInterval$fNFDataAccountAlias $fNFDataSide$fToMarkupDecimalRaw$fNFDataDigitGroupStyle$fNFDataAmountStyle$fNFDataCommodity$fNFDataAmount $fNFDataPrice$fNFDataMixedAmount$fNFDataPostingType $fShowStatus$fNFDataStatus$fNFDataGenericSourcePos$fNFDataTransaction $fEqPosting$fNFDataPosting$fNFDataModifierTransaction$fNFDataPeriodicTransaction$fNFDataTimeclockCode$fNFDataTimeclockEntry$fNFDataMarketPrice$fNFDataJournal $fShowReader $fEqWhichDate$fShowWhichDate $fEqDateSpan $fOrdDateSpan$fDataDateSpan$fGenericDateSpan $fEqPeriod $fOrdPeriod $fShowPeriod $fDataPeriod$fGenericPeriod $fEqInterval$fShowInterval $fOrdInterval$fDataInterval$fGenericInterval$fEqAccountAlias$fReadAccountAlias$fShowAccountAlias$fOrdAccountAlias$fDataAccountAlias$fGenericAccountAlias$fEqSide $fShowSide $fReadSide $fOrdSide $fDataSide $fGenericSide$fEqDigitGroupStyle$fOrdDigitGroupStyle$fReadDigitGroupStyle$fShowDigitGroupStyle$fDataDigitGroupStyle$fGenericDigitGroupStyle$fEqAmountStyle$fOrdAmountStyle$fReadAmountStyle$fShowAmountStyle$fDataAmountStyle$fGenericAmountStyle$fShowCommodity $fEqCommodity$fDataCommodity$fGenericCommodity $fEqAmount $fOrdAmount $fDataAmount$fGenericAmount $fEqPrice $fOrdPrice $fDataPrice$fGenericPrice$fEqMixedAmount$fOrdMixedAmount$fDataMixedAmount$fGenericMixedAmount$fEqPostingType$fShowPostingType$fDataPostingType$fGenericPostingType $fEqStatus $fOrdStatus$fBoundedStatus $fEnumStatus $fDataStatus$fGenericStatus$fEqGenericSourcePos$fReadGenericSourcePos$fShowGenericSourcePos$fOrdGenericSourcePos$fDataGenericSourcePos$fGenericGenericSourcePos$fEqTransaction$fDataTransaction$fGenericTransaction $fDataPosting$fGenericPosting$fEqModifierTransaction$fDataModifierTransaction$fGenericModifierTransaction$fEqPeriodicTransaction$fDataPeriodicTransaction$fGenericPeriodicTransaction$fEqTimeclockCode$fOrdTimeclockCode$fDataTimeclockCode$fGenericTimeclockCode$fEqTimeclockEntry$fOrdTimeclockEntry$fDataTimeclockEntry$fGenericTimeclockEntry$fEqMarketPrice$fOrdMarketPrice$fDataMarketPrice$fGenericMarketPrice $fEqJournal $fDataJournal$fGenericJournal $fDataAccount$fGenericAccount$fShowNormalBalance$fDataNormalBalance$fEqNormalBalance$fGenericClockTime$fDataClockTime$fDataDecimalRawperiodAsDateSpandateSpanAsPeriodsimplifyPeriodisLastDayOfMonthisStandardPeriod showPeriod periodStart periodEnd periodNextperiodPrevious periodNextInperiodPreviousIn periodMoveTo periodGrow periodShrink mondayBeforeyearMonthContainingWeekStartingquarterContainingMonthfirstMonthOfQuarterstartOfFirstWeekInMonthMPErrmpMkParseErrormpMkPosmpUnPosmptextErroringJournalParser JournalParser TextParserSimpleTextParserSimpleStringParserchoice' choiceInState surroundedBy parsewithparsewithStringparseWithStateparseWithState' fromparse parseerrorshowParseErrorshowDateParseErrornonspacespacenonewline restoflineeolof lowercase uppercasestriplstriprstripchomp stripbrackets elideLeft elideRight formatString underline quoteIfNeededsingleQuoteIfNeeded escapeQuoteswords'unwords' unbracketconcatTopPaddedconcatBottomPadded concatOneLinevConcatLeftAlignedvConcatRightAlignedpadtop padbottompadleftpadright cliptopleftfitto fitStringfitStringMulti padLeftWide padRightWide takeWidthstrWidth stripAnsi charWidth textstrip textlstrip textrstriptextElideRight quoteIfSpaced quotecharswhitespacecharsescapeDoubleQuotesescapeSingleQuotes stripquotesisSingleQuotedisDoubleQuoted textUnbrackettextConcatTopPadded difforzerofitTexttextPadLeftWidetextPadRightWide textTakeWidth textWidthpprint traceWithptrace debugLeveldbg0dbg1dbg2dbg3dbg4dbg5dbg6dbg7dbg8dbg9dbg0IOdbg1IOdbg2IOdbg3IOdbg4IOdbg5IOdbg6IOdbg7IOdbg8IOdbg9IO tracePrettyAttracePrettyAtIOlog0 logPrettyAt dbgppshowdbgExitpdbgdbglogfirst3second3third3first4second4third4fourth4first5second5third5fourth5fifth5first6second6third6fourth6fifth6sixth6splitAtElementgetCurrentLocalTimegetCurrentZonedTimeisLeftisRightapplyN expandPath firstJust readFile'readFileAnyLineEndingreadFileOrStdinAnyLineEndingmaximum' sumStrict maximumStrict minimumStrict sequence'mapM' $fDefaultBoolRawOptssetopt setboolopt inRawOptsbooloptmaybestringopt stringoptlistofstringopt maybeintoptintoptnonsimplecommoditycharsquoteCommoditySymbolIfNeeded commoditycommoditysymbolscommconversionRatetests_Hledger_Data_Commodity amountstyleamountnullamt missingamtnumhrsusdeurgbpat@@amountWithCommodity costOfAmount divideAmountisNegativeAmount isZeroAmountisReallyZeroAmountsetAmountPrecision withPrecisionshowAmountDebugshowAmountWithoutPrice showAmount cshowAmountshowAmountWithZeroCommodity maxprecisionmaxprecisionwithpointcanonicaliseAmount amountValue nullmixedamtmissingmixedamtmixednormaliseMixedAmount*normaliseMixedAmountSquashPricesForDisplayamountsfilterMixedAmountfilterMixedAmountByCommoditycostOfMixedAmountdivideMixedAmountaverageMixedAmountsisNegativeMixedAmountisZeroMixedAmountisReallyZeroMixedAmountisReallyZeroMixedAmountCostshowMixedAmount showMixedAmountWithZeroCommodityshowMixedAmountOneLine ltraceamountsetMixedAmountPrecisionshowMixedAmountWithPrecisionshowMixedAmountDebugshowMixedAmountWithoutPricecshowMixedAmountWithoutPrice"showMixedAmountOneLineWithoutPrice#cshowMixedAmountOneLineWithoutPricecanonicaliseMixedAmountmixedAmountValuetests_Hledger_Data_Amount$fNumMixedAmount$fShowMixedAmount $fNumAmount $fShowAmount$fShowMarketPrice acctsepcharacctsepaccountNameComponentsaccountNameFromComponentsaccountLeafNameaccountSummarisedNameaccountNameLevelaccountNameDropexpandAccountNamesexpandAccountNametopAccountNamesparentAccountNameparentAccountNamesisAccountNamePrefixOfisSubAccountNameOfsubAccountNamesFromaccountNameTreeFromnullaccountnametreeelideAccountNameclipAccountNameclipOrEllipsifyAccountName escapeNameaccountNameToAccountRegexaccountNameToAccountOnlyRegexaccountRegexToAccountNameisAccountRegextests_Hledger_Data_AccountNameReportItemField AccountFieldDefaultDateFieldDescriptionField TotalFieldDepthSpacerFieldFieldNoStringFormatComponent FormatLiteral FormatField StringFormatOneLine TopAligned BottomAlignedparseStringFormatdefaultStringFormatStyletests_Hledger_Data_StringFormat$fShowReportItemField$fEqReportItemField$fShowStringFormatComponent$fEqStringFormatComponent$fShowStringFormat$fEqStringFormatshowDate showDateSpan getCurrentDaygetCurrentMonthgetCurrentYearelapsedSeconds spanStartspanEnd spansSpan splitSpan daysInSpanspanContainsDateperiodContainsDatespansIntersect spanIntersectspanDefaultsFrom spansUnion spanUnionparsePeriodExpr maybePeriodfixSmartDateStrfixSmartDateStrEitherfixSmartDateStrEither' fixSmartDateprevday parsedateM parsedate smartdate datesepchars datesepcharfailIfInvalidYearfailIfInvalidMonthfailIfInvalidDay mkdatespan nulldatespannulldate$fShowDateSpan nullpostingpostingpostoriginalPosting showPosting showCommentisReal isVirtualisBalancedVirtual hasAmount isAssignmentaccountNamesFromPostings sumPostings removePrices postingDate postingDate2 postingStatustransactionPayeetransactionNotepayeeAndNoteFromDescriptionpostingAllTagstransactionAllTagsrelatedPostingsisPostingInDateSpanisPostingInDateSpan'isEmptyPostingpostingsDateSpanpostingsDateSpan'accountNamePostingTypeaccountNameWithoutPostingTypeaccountNameWithPostingTypejoinAccountNamesconcatAccountNamesaccountNameApplyAliasesaccountNameApplyAliasesMemotests_Hledger_Data_Posting $fShowPostingsourceFilePathsourceFirstLineshowGenericSourcePos nullsourceposnulltransactionshowTransactionshowTransactionUnelided%showTransactionUnelidedOneLineAmountsshowPostingLineshowPostingLinesshowAccountNamehasRealPostings realPostingsassignmentPostingsvirtualPostingsbalancedVirtualPostingstransactionsPostingstransactionPostingBalancesisTransactionBalancedbalanceTransactionbalanceTransactionUpdatetransactionDate2 txnTieKnot txnUntieKnottests_Hledger_Data_Transaction$fShowPeriodicTransaction$fShowModifierTransaction$fShowTransactionQueryOptQueryOptInAcctOnlyQueryOptInAcctQueryAnyNoneNotOrAndCodeDescAcctDateDate2StatusQRealAmtSymEmptyDepth parseQuerywords'' simplifyQuery filterQuery queryIsNull queryIsDepth queryIsDate queryIsDate2queryIsDateOrDate2 queryIsAcct queryIsSym queryIsReal queryIsStatus queryIsEmptyqueryIsStartDateOnlyqueryStartDate queryEndDate queryDateSpanqueryDateSpan' queryDepth inAccountinAccountQuerymatchesAccountmatchesMixedAmount matchesAmountmatchesPostingmatchesTransactiontests_Hledger_Query $fShowQuery$fShowQueryOpt $fEqQueryOpt$fDataQueryOpt $fShowOrdPlus $fEqOrdPlus $fDataOrdPlus $fEqQuery $fDataQuerytimeclockEntriesToTransactionsentryFromTimeclockInOuttests_Hledger_Data_Timeclock$fReadTimeclockCode$fShowTimeclockCode$fShowTimeclockEntrynullacctaccountsFromPostingsnameTreeToAccounttieAccountParentsparentAccountsaccountsLevels mapAccounts anyAccounts sumAccounts clipAccountsclipAccountsAndAggregate pruneAccountsflattenAccountsfilterAccountssortAccountTreeByAmount lookupAccount printAccounts showAccountsshowAccountsBoringFlagshowAccountDebugtests_Hledger_Data_Account $fEqAccount $fShowAccountshowMarketPricetests_Hledger_Data_MarketPrice nulljournaljournalFilePathjournalFilePathsaddTransactionaddModifierTransactionaddPeriodicTransactionaddMarketPricejournalTransactionAtjournalNextTransactionjournalPrevTransactionjournalDescriptionsjournalPostingsjournalAccountNamesUsedjournalAccountNamesImpliedjournalAccountNamesDeclared!journalAccountNamesDeclaredOrUsed$journalAccountNamesDeclaredOrImpliedjournalAccountNames journalProfitAndLossAccountQueryjournalIncomeAccountQueryjournalExpenseAccountQueryjournalBalanceSheetAccountQueryjournalAssetAccountQueryjournalLiabilityAccountQueryjournalEquityAccountQueryjournalCashAccountQueryfilterJournalTransactionsfilterJournalPostingsfilterJournalAmountsfilterTransactionAmountsfilterPostingAmountfilterTransactionPostingsjournalApplyAliasesjournalFinalisejournalNumberAndTieTransactionsjournalUntieTransactionsjournalCheckBalanceAssertionsjournalBalanceTransactionsjournalApplyCommodityStylescommodityStylesFromAmountscanonicalStyleFromjournalConvertAmountsToCostjournalAmountsoverJournalAmountstraverseJournalAmountsjournalDateSpan journalPivot matchpats samplejournaltests_Hledger_Data_Journal$fMonoidJournal $fShowJournal nullledgerledgerFromJournalledgerAccountNames ledgerAccountledgerRootAccountledgerTopAccountsledgerLeafAccountsledgerAccountsMatchingledgerPostingsledgerDateSpanledgerCommoditiestests_ledgerFromJournaltests_Hledger_Data_Ledger $fShowLedgerrunModifierTransaction mtvaluequery jdatespanrunPeriodicTransactiontests_Hledger_Data ReportOptsperiod_ interval_ statuses_cost_depth_display_date2_empty_ no_elide_real_format_query_average_related_ balancetype_accountlistmode_drop_ row_total_ no_total_value_pretty_tables_ sort_amount_normalbalance_color_ forecast_auto_AccountListMode ALDefaultALTreeALFlat BalanceType PeriodChangeCumulativeChangeHistoricalBalance FormatStr defreportoptsrawOptsToReportOptscheckReportOptssimplifyStatusesreportOptsToggleStatustransactionDateFn postingDateFnwhichDateFromOptstree_flat_journalSelectingAmountFromOpts queryFromOptsqueryFromOptsOnlyqueryOptsFromOptsreportStartEndDatesreportStartDate reportEndDatespecifiedStartEndDatesspecifiedStartDatespecifiedEndDate#tests_Hledger_Reports_ReportOptions$fDefaultBalanceType$fDefaultAccountListMode$fDefaultReportOpts$fEqBalanceType$fShowBalanceType$fDataBalanceType$fEqAccountListMode$fShowAccountListMode$fDataAccountListMode$fShowReportOpts$fDataReportOptsAccountTransactionsReportItemAccountTransactionsReportTransactionsReportItemTransactionsReporttriOrigTransactiontriDate triAmount triBalancetriCommodityAmounttriCommodityBalancejournalTransactionsReportaccountTransactionsReporttransactionRegisterDatetransactionsReportByCommodityPostingsReportItemPostingsReportpostingsReportmkpostingsReportItem$tests_Hledger_Reports_PostingsReportEntriesReportItem EntriesReport entriesReport#tests_Hledger_Reports_EntriesReportaccountBalanceHistory InputOptsmformat_ mrules_file_aliases_anon_ignore_assertions_new_ new_save_pivot_ definputoptsrawOptsToInputOpts runTextParserrtprunJournalParserrjprunErroringJournalParserrejpgenericSourcePosjournalSourcePosparseAndFinaliseJournalparseAndFinaliseJournal'setYeargetYearsetDefaultCommodityAndStylegetDefaultCommodityAndStylegetDefaultAmountStylegetAmountStyle pushAccountpushParentAccountpopParentAccountgetParentAccountaddAccountAliasgetAccountAliasesclearAccountAliasesjournalAddFile parserErrorAtstatuspcodep descriptionpdatep datetimepsecondarydatepmodifiedaccountnamep accountnamepspaceandamountormissingpamountpamountp' mamountp'signp multiplierpleftsymbolamountprightsymbolamountpnosymbolamountpcommoditysymbolpquotedcommoditysymbolpsimplecommoditysymbolp priceamountppartialbalanceassertionpfixedlotpricepnumberp fromRawNumber rawnumberpwhitespaceCharmultilinecommentpemptyorcommentlinepfollowingcommentpfollowingcommentandtagspcommentp linecommentpcommentStartingWithp commentTagstagspnontagptagptagnamep tagvaluep postingdatespdatetagpbracketeddatetagsp$fDefaultInputOpts$fShowInputOpts$fDataInputOptsreader timedotfilep tests_Hledger_Read_TimedotReadertimeclockfilep"tests_Hledger_Read_TimeclockReaderjournalp directivep accountaliaspdefaultyeardirectivepmarketpricedirectiveppostingp tests_Hledger_Read_JournalReader CsvRecord rulesFileForparseRulesFileexpandIncludesparseAndValidateCsvRulestransactionFromCsvRecordtests_Hledger_Read_CsvReader$fShowErrorComponent[]$fShowCsvRules $fEqCsvRulesPrefixedFilePathdefaultJournaldefaultJournalPathreadJournalFilesreadJournalFilesplitReaderPrefixrequireJournalFileExistsensureJournalFileExists readJournal' readJournalreadJournalFilesWithOptstests_Hledger_ReadBalanceReportItem BalanceReportflatShowsExclusiveBalance balanceReport#tests_Hledger_Reports_BalanceReportMultiBalanceReportRowMultiBalanceReportsingleBalanceReportmultiBalanceReport(tests_Hledger_Reports_MultiBalanceReport$fShowMultiBalanceReporttests_Hledger_Reports tests_HledgertoRegex replaceAllByversion getBinDir getLibDir getDynLibDir getDataDir getLibexecDir getSysconfDirgetDataFileNameControl.ApplicativeoptionalGHC.Baseempty<|>/parser-combinators-0.4.0-LXzRXKyLrFT6DPfieme8NKControl.Applicative.CombinatorsbetweenchoiceeitherPoptionControl.Monad.Combinatorscountcount'endByendBy1manyTillsomesomeTillsepBysepBy1sepEndBy sepEndBy1skipManyskipSome skipCount skipManyTill skipSomeTillmany&megaparsec-6.4.0-xl4HlJBghw88uZEZB1lRfText.Megaparsec.Charstring'stringsatisfynoneOfoneOfnotCharanyCharchar'char categoryName charCategory latin1Char asciiChar separatorChar symbolCharpunctuationChar numberCharmarkChar hexDigitChar octDigitChar digitChar printChar alphaNumChar letterChar lowerChar upperChar spaceChar controlCharspace1spacetabeolcrlfnewlineText.MegaparsecdbgsetParserState setTabWidth getTabWidthsetTokensProcessedgetTokensProcessed popPosition pushPosition setPositiongetNextTokenPosition getPositionsetInputgetInputatEndtakeRestregionmatch customFailure unexpected runParserT' runParserT runParser' runParser parseTest' parseTest parseMaybeparseState stateInputstatePosstateTokensProcessed stateTabWidthParsecParsecT MonadParsectryeof lookAheadlabelfailure fancyFailurehidden notFollowedBy withRecovery observingtokentokens takeWhileP takeWhile1PtakePgetParserStateupdateParserStateText.Megaparsec.ErrorparseErrorTextPrettysourcePosStackPrettyparseErrorPretty_parseErrorPretty'parseErrorPrettyerrorPos ErrorItemLabelTokens EndOfInput ErrorFancy ErrorFailErrorIndentation ErrorCustom ParseError TrivialError FancyError ShowToken showTokens LineToken tokenAsChartokenIsNewlineShowErrorComponentshowErrorComponentText.Megaparsec.StreamStreamToken tokenToChunk tokensToChunk chunkToTokens chunkLength chunkEmpty positionAt1 positionAtNadvance1advanceNtake1_takeN_ takeWhile_Text.Megaparsec.PossourcePosPretty initialPosdefaultTabWidthpos1unPosmkPosPosInvalidPosException SourcePos sourceLine sourceColumn sourceName Debug.Trace traceMarkerIO traceMarker traceEventIO traceEvent traceStack traceShowMtraceM traceShowId traceShowtraceIdtrace putTraceMsgtraceIOsimilarAmountsOpshowAmountWithPrecisioncshowAmountWithoutPrice!showAmountWithoutPriceOrCommodityshowamountquantitypunctuatenumbercommodityValue sumSimilarAmountsUsingFirstPricespanFromSmartDatenthdayofyearcontainingnthdayofmonthcontainingnthdayofweekcontainingnthweekdayofmonthcontainingadvancetonthweekday smartdateonly periodexprinferBalancingAmountinferBalancingPricespriceInferrerForpostingSetTransactionparseQueryTerm parseStatus parseBoolqueryDateSpansqueryDateSpans'earliestMaybeDatelatestMaybeDateearliestMaybeDate'latestMaybeDate'compareMaybeDates compareAmount matchesTagsOrdPlusLtLtEqGtGtEqEqAbsLtAbsLtEqAbsGtAbsGtEqAbsEqCurrentBalancesModifierEnvjournalNumberTransactionsjournalTieTransactionscheckBalanceAssertionjournalBalanceTransactionsSTdiscriminateByDatecheckInferAndRegisterAmountsaddAmountAndCheckBalance setBalance addToBalancestoreTransaction liftModifierjournalCommodityStylejournalInferCommodityStylestransactionPivot postingPivot eBalanceseStoreTxeAssrteStylestdates checkRawOptsintervalFromRawOptsstatusesFromRawOptsaccountTransactionsReportItemssummarisePostingAccountsSummaryPostingadjustReportDatesmatchedPostingsBeforeAndDuringpostingsReportItemssummarisePostingsByIntervalsummarisePostingsInDateSpan timedotdayp timedotentryptimedotnumericp timedotdotsptimeclockentrypaddJournalItemPorRethrowIOErrorcommoditydirectivepcommoditydirectiveonelinepcommoditydirectivemultilinepformatdirectivep keywordsp transactionpCsvRulesreadJournalFromCsv validateCsv parseCsvRules validateRules simplifySign showRecordgetEffectiveAssignment rdirectivesrcsvfieldindexes rassignmentsrconditionalblocksnewJournalContent findReader tryReaders latestDatessaveLatestDatespreviousLatestDateslatestDatesFileForjournalFilterSinceLatestDatesmarkBoringParentAccounts