cppman-0.4.8/0000755000175000017500000000000012707135217014434 5ustar aitjcizeaitjcize00000000000000cppman-0.4.8/bin/0000755000175000017500000000000012707135217015204 5ustar aitjcizeaitjcize00000000000000cppman-0.4.8/bin/cppman0000755000175000017500000001577312707135135016424 0ustar aitjcizeaitjcize00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # # cppman.py # # Copyright (C) 2010 - Wei-Ning Huang (AZ) # All Rights reserved. # # This file is part of cppman. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # import os import sys from optparse import OptionParser, make_option program = sys.argv[0] LAUNCH_DIR = os.path.dirname(os.path.abspath(sys.path[0])) # If launched from source directory if program.startswith('./') or program.startswith('bin/'): sys.path.insert(0, LAUNCH_DIR) from cppman.main import Cppman from cppman.environ import config from cppman.util import update_mandb_path, update_man3_link program_name = sys.argv[0] program_version = '0.4.8' def version(): sys.stderr.write( """%s Ver %s Copyright (C) 2010 Wei-Ning Huang License GPLv3+: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.\n Written by Wei-Ning Huang (AZ) .""" % (program_name, program_version)) def main(): option_list = [ make_option('-s', '--source', action='store', dest='source', help="Select source, either 'cppreference.com' or " "'cplusplus.com'. Default is 'cplusplus.com'."), make_option('-c', '--cache-all', action='store_true', dest='cache_all', default=False, help='Cache all available man pages from cppreference.com ' 'and cplusplus.com to enable offline browsing.'), make_option('-C', '--clear-cache', action='store_true', dest='clear_cache', default=False, help='Clear all cached files.'), make_option('-f', '--find-page', action='store', type='string', dest='keyword', default=None, help='Find man page.'), make_option('-o', '--force-update', action='store_true', dest='force', default=False, help="Force cppman to update existing cache when " "'--cache-all' or browsing man pages that were already " "cached."), make_option('-m', '--use-mandb', action='store', dest='mandb', help="Accepts 'true' or 'false'. If true, cppman adds " "manpage path to mandb so that you can view C++ manpages " "with `man' command. The default value is 'false'."), make_option('-p', '--pager', action='store', dest='pager', help="Select pager to use, accepts 'vim', 'less' or " "'system'. 'system' uses $PAGER environment as pager. " "The default value is 'vim'."), make_option('-r', '--rebuild-index', action='store_true', dest='rebuild_index', default=False, help="rebuild index database for the selected source, " "either 'cppreference.com' or 'cplusplus.com'."), make_option('-v', '--version', action='store_true', dest='version', default=False, help='Show version information.'), make_option('--force-columns', action='store', dest='force_columns', type=int, default=-1, help='Force terminal columns.') ] parser = OptionParser( usage='Usage: cppman [OPTION...] PAGE...', option_list=option_list) options, args = parser.parse_args() if options.version: version() sys.exit(0) if options.cache_all: cm = Cppman(options.force) cm.cache_all() sys.exit(0) if options.clear_cache: cm = Cppman() cm.clear_cache() sys.exit(0) if options.keyword: cm = Cppman() cm.find(options.keyword) sys.exit(0) if options.source: if options.source not in config.SOURCES: raise Exception("invalid value `%s' for option `--source'" % options.source) else: config.Source = options.source if config.UpdateManPath: update_man3_link() print("Source set to `%s'." % options.source) sys.exit(0) if options.pager: if options.pager not in config.PAGERS: raise Exception("invalid value `%s' for option `--pager'" % options.pager) else: config.Pager = options.pager print("Pager set to `%s'." % options.pager) sys.exit(0) if options.mandb: if options.mandb != 'true' and options.mandb != 'false': raise Exception("invalid value `%s' for option `--use-mandb'" % options.mandb) value = config.parse_bool(options.mandb) if config.UpdateManPath ^ value: config.UpdateManPath = value if config.UpdateManPath: update_mandb_path() update_man3_link() sys.exit(0) if options.rebuild_index: cm = Cppman() cm.rebuild_index() sys.exit(0) if len(args) == 0: sys.stderr.write('What manual page do you want?\n') sys.exit(1) cm = Cppman(options.force, options.force_columns) for i in args: if i != args[0]: print('--CppMan-- next: %s(3) [ view (return) | skip (Ctrl-D) ' '| quit (Ctrl-C) ]' % i) # For some reason, if only one layer of try...except is used # pressing CTRL-D CTRL-C, the second CTRL-C didn't catch by the # try..except clause. As a workaround, I add another layer to catch # the KeyboardInterrupt exception # TODO: find out what happened try: try: input() except EOFError: continue except KeyboardInterrupt: print('\n') break except KeyboardInterrupt: print('\n') break try: pid = cm.man(i) except RuntimeError as e: print(e) continue else: os.waitpid(pid, 0) if __name__ == '__main__': try: main() except (Exception, KeyboardInterrupt) as e: if type(e) == KeyboardInterrupt: print('\nAborted.') else: print('error:', e) cppman-0.4.8/test/0000755000175000017500000000000012707135217015413 5ustar aitjcizeaitjcize00000000000000cppman-0.4.8/test/test.py0000755000175000017500000000032312651075646016754 0ustar aitjcizeaitjcize00000000000000#!/usr/bin/env python import sys import os import os.path sys.path.insert(0, os.path.normpath(os.getcwd())) from cppman.formatter import cplusplus, cppreference cplusplus.func_test() cppreference.func_test() cppman-0.4.8/AUTHORS0000644000175000017500000000035312651075645015513 0ustar aitjcizeaitjcize00000000000000Developers ---------- AZ Huang Contributors ------------ ChangZhuo Chen (陳昌倬) Chris Smith Jochen Schneider John Easton cppman-0.4.8/COPYING0000644000175000017500000010451312157260706015474 0ustar aitjcizeaitjcize00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . cppman-0.4.8/README.rst0000644000175000017500000000540212707131531016117 0ustar aitjcizeaitjcize00000000000000.. image:: http://img.shields.io/travis/aitjcize/cppman.svg?style=flat :target: https://travis-ci.org/aitjcize/cppman .. image:: http://img.shields.io/pypi/v/cppman.svg?style=flat :target: https://pypi.python.org/pypi/cppman .. image:: http://img.shields.io/pypi/dm/cppman.svg?style=flat :target: https://crate.io/packages/cppman cppman ====== C++ 98/11/14 manual pages for Linux, with source from `cplusplus.com `_ and `cppreference.com `_. .. image:: https://raw.github.com/aitjcize/cppman/master/wiki/screenshot.png Features -------- * Supports two backends (switch it with ``cppman -s``): + `cplusplus.com `_ + `cppreference.com `_ * Syntax highlighting support for sections and example source code. * Usage/Interface similar to the 'man' command * Hyperlink between manpages (only available when pager=vim) + Press ``Ctrl-]`` when cursor is on keyword to go forward and ``Ctrl-T`` to go backward. + You can also double-click on keyword to go forward and right-click to go backward. * Frequently update to support `cplusplus.com `_. Demo ---- Using vim as pager .. image:: https://raw.github.com/aitjcize/cppman/master/wiki/demo.gif Installation ------------ 1. Install from PyPI: .. code-block:: bash $ pip install cppman Note that cppman requires Python 3. Make sure that either ``pip`` is configured for Python 3 installation, your default Python interpreter is version 3 or just use ``pip3`` instead. 2. Arch Linux users can find it on AUR or using `Yaourt `_: .. code-block:: bash $ yaourt -S cppman or install the git version .. code-block:: bash $ yaourt -S cppman-git 3. Debian / Ubuntu: cppman is available in Debian sid/unstable and Ubuntu vivid. .. code-block:: bash $ sudo apt-get install cppman Package Maintainers ------------------- * Arch Linux: myself * Debian: `czchen `_ * Gentoo: `rindeal `_ * MacPorts: `eborisch `_ FAQ --- * Q: Can I use the system ``man`` command instead of ``cppman``? * A: Yes, just execute ``cppman -m true`` and all cached man pages are exposed to the system ``man`` command. Note: You may want to download all available man pages with ``cppman -c``. Bugs ---- * Please report bugs / mis-formatted pages to the github issue tracker. Contributing ------------ 1. Fork it 2. Create your feature branch (``git checkout -b my-new-feature``) 3. Commit your changes (``git commit -am 'Add some feature'``) 4. Push to the branch (``git push origin my-new-feature``) 5. Create new Pull Request Notes ----- * manpages-cpp is renamed to cppman since September 19, 2012 cppman-0.4.8/ChangeLog0000644000175000017500000000735612707135135016220 0ustar aitjcizeaitjcize00000000000000------------------------------------------------------------------------------ cppman Changelog ------------------------------------------------------------------------------ cppman 0.4.8 (April 24th, 2016): Bug fixed: * Fix in-vim loading. * Use html5lib instead of html.paser. * Fix table parser for certain situation. * Various bug fixes. * Unify pager script. cppman 0.4.6 (October 8th, 2015): Bug fixed: * Various of bug fix. Features add: * MacOS support cppman 0.4.5 (July 1th, 2015): Bug fixed: * Multiple formatting bugs fixed * Fix typos Features add: * Migrate to Python 3 cppman 0.4.2 (January 18th, 2015): Bug fixed: * `cache-all` now respect user's selection of source * fallback to less if vim is not found cppman 0.4.1 (October 12th, 2014): Bug fixed: * Minor bug fixes * Fix empty man pages on some system (MacOS) * Fix wrong output dev cppman 0.4.0 (October 10th, 2014): Features added: * Add cppreference.com backend cppman 0.3.1 (November 29th, 2013): Bug fixed: * Minor bug fixes * Update manpage copyright year Features added: * Allow right click to go back to previous page * Update README with RST format. cppman 0.3.0 (November 15th, 2013): Bug fixed: * Fix various formatting bugs, issue #15, #17 Features added: * Update search index (index.db). * New DOM-based table parser, all table can be rendered correctly. * Automatically re-render when window is resized. * Better hyperlink support, implement our own page loader instead of using VIM's keyword program. * We can now jump between hyperlinks with mouse double-click cppman 0.2.7 (September 25th, 2013): Bug fixed: * Fix prefix bug that still persist in 0.2.6 version cppman 0.2.6 (September 24th, 2013): Bug fixed: * Fix prefix when install via easy_install or pip * Fix formatting bugs * Add Travis CI test cppman 0.2.5 (July 28th, 2013): Bug fixed: * Extra color control characters on some distro * Misc formatting bugs * Redirect format error to /dev/null cppman 0.2.4 (June 05th, 2013): Bug fixed: * Fix some formatting issue * Fix typos Features added: * New index crawler, much faster! * Update index.db cppman 0.2.3 (February 13rd, 2013): Features added: * More C++11 support * Update cplusplus.com index * Faster crawler (30x improvement) cppman 0.2.2 (January 19th, 2013): Bug fixed: * Fix formatting due to the change of cplusplus.com * Fix syntax highlighting in vim Features added: * Reimplement table converter, now support unlimited column table generation cppman 0.2.0 (September 19th, 2012): Bug fixed: * Fix formatting due to the change of cplusplus.com Misc: * Rename project from manpages-cpp to cppman cppman 0.1.9 (April 22nd, 2012): Bug fixed: * Fix formatting due to the change of cplusplus.com cppman 0.1.8 (November 29th, 2011): Bug fixed: * Fix formatting due to the change of cplusplus.com cppman 0.1.7 (October 7th, 2011): Bug fixed: * Minor formatting bug Features added: * Pager is now configurable, either 'vim' or 'less' is accepted. * Integration of mandb is now configurable, default disabled. cppman 0.1.6 (April 2nd, 2011): Bug fixed: * Fix formatting due to the change of cplusplus.com cppman 0.1.5 (January 31st, 2011): Bug fixed: * Backslashes in EXAMPLE section disappear * Empty "#include" line in some pages Features added: * Syntax highlighting support for SYNOPSIS and EXAMPLE section * Update database cppman 0.1.3 (September 26th, 2010): Features added: * Add BSD support (Issue #1) cppman 0.1.2 (September 21st, 2010): Bugs fixed: * Minor bug fix cppman 0.1.1 (September 11st, 2010): Bugs fixed: * Minor bug fix Features added: * Enable mandb support cppman 0.1.0 (September 11st, 2010): * Initial release cppman-0.4.8/setup.cfg0000644000175000017500000000022112157260706016251 0ustar aitjcizeaitjcize00000000000000 [bdist_rpm] packager = Wei-Ning Huang (AZ) release = 1 requires = python, vim [install] optimize=2 [build_ext] inplace=1 cppman-0.4.8/cppman/0000755000175000017500000000000012707135217015712 5ustar aitjcizeaitjcize00000000000000cppman-0.4.8/cppman/util.pyc0000644000175000017500000000552012527364535017415 0ustar aitjcizeaitjcize00000000000000ó \òTc@s}ddlZddlZddlZddlZddlZddlmZd„Zd„Zd„Z d„Z d„Z dS(iÿÿÿÿN(tenvironc CsVtjjdƒ}tjjtjj|dƒƒ}d}g}y(t|dƒ}|jƒ}WdQXWn!tk rŠtj j s‹dSnXt g|D]}||k^q•ƒ}t|dƒ‘}tj j r|s?|j dtjjtjj||ƒƒƒq?n9g}x*|D]"}||kr|j |ƒqqW|}|j |ƒWdQXdS(s(Add ~/.local/share/man to $HOME/.manpatht~s.manpaths.local/share/mantrNtwsMANDATORY_MANPATH %s (tostpatht expandusertnormpathtjointopent readlinestIOErrorRtconfigt UpdateManPathtanytappendt writelines( tHOMEt manpath_filetmanpathtlinestftlthas_patht new_linestline((s)/home/aitjcize/Work/cppman/cppman/util.pytupdate_mandb_path"s,!  %  )  cCs˜tjjtjdƒ}tjj|ƒr~tjj|ƒrktj|ƒtjj kr[dStj |ƒq~t d|ƒ‚ntj tjj |ƒdS(Ntman3s+Can't create link since `%s' already exists( RRRRtman_dirtlexiststislinktreadlinkR tSourcetunlinkt RuntimeErrortsymlink(t man3_path((s)/home/aitjcize/Work/cppman/cppman/util.pytupdate_man3_link@s cCs€tjdddddƒ}tjdtj|ƒ}tjd|ƒ\}}}}|dd}||dkr||d}n|S(sGet terminal widthtHHHHii'i(i(tstructtpacktfcntltioctlttermiost TIOCGWINSZtunpack(twsRtcolumnstxtytwidth((s)/home/aitjcize/Work/cppman/cppman/util.pyt get_widthPs c Csbtƒ}d||f}tj|dtdtjdtjdtjƒ}|j|ƒ\}}|S(s.Read groff-formated text and output man pages.s)groff -t -Tascii -m man -rLL=%dn -rLT=%dntshelltstdintstdouttstderr(R3t subprocesstPopentTruetPIPEt communicate(tdataR2tcmdthandletman_textR7((s)/home/aitjcize/Work/cppman/cppman/util.pyt groff2man\s  cCs||ƒ}t|ƒ}|S(s2Convert HTML text from cplusplus.com to man pages.(RA(R=t formattert groff_textR@((s)/home/aitjcize/Work/cppman/cppman/util.pythtml2manhs  ( R)RR'R+R8tcppmanRRR%R3RARD(((s)/home/aitjcize/Work/cppman/cppman/util.pyts        cppman-0.4.8/cppman/util.py0000644000175000017500000000665012707131531017243 0ustar aitjcizeaitjcize00000000000000# -*- coding: utf-8 -*- # # util.py - Misc utilities # # Copyright (C) 2010 - 2015 Wei-Ning Huang (AZ) # All Rights reserved. # # This file is part of cppman. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # import fcntl import os import struct import subprocess import sys import termios from cppman import environ import bs4 def update_mandb_path(): """Add ~/.local/share/man to $HOME/.manpath""" HOME = os.path.expanduser('~') manpath_file = os.path.normpath(os.path.join(HOME, '.manpath')) manpath = '.local/share/man' lines = [] try: with open(manpath_file, 'r') as f: lines = f.readlines() except IOError: if not environ.config.UpdateManPath: return has_path = any([manpath in l for l in lines]) with open(manpath_file, 'w') as f: if environ.config.UpdateManPath: if not has_path: lines.append('MANDATORY_MANPATH\t%s\n' % os.path.normpath(os.path.join(HOME, manpath))) else: new_lines = [] for line in lines: if manpath not in line: new_lines.append(line) lines = new_lines f.writelines(lines) def update_man3_link(): man3_path = os.path.join(environ.man_dir, 'man3') if os.path.lexists(man3_path): if os.path.islink(man3_path): if os.readlink(man3_path) == environ.config.Source: return else: os.unlink(man3_path) else: raise RuntimeError("Can't create link since `%s' already exists" % man3_path) try: os.makedirs(os.path.join(environ.man_dir, environ.config.Source)) except Exception: pass os.symlink(environ.config.Source, man3_path) def get_width(): """Get terminal width""" # Get terminal size ws = struct.pack("HHHH", 0, 0, 0, 0) ws = fcntl.ioctl(sys.stdout.fileno(), termios.TIOCGWINSZ, ws) lines, columns, x, y = struct.unpack("HHHH", ws) width = int(columns * 39 / 40) if width >= columns - 2: width = columns - 2 return width def groff2man(data): """Read groff-formated text and output man pages.""" width = get_width() cmd = 'groff -t -Tascii -m man -rLL=%dn -rLT=%dn' % (width, width) handle = subprocess.Popen( cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) man_text, stderr = handle.communicate(data) return man_text def html2man(data, formatter): """Convert HTML text from cplusplus.com to man pages.""" groff_text = formatter(data) man_text = groff2man(groff_text) return man_text def fixupHTML(data): return str(bs4.BeautifulSoup(data, "html5lib")) cppman-0.4.8/cppman/lib/0000755000175000017500000000000012707135217016460 5ustar aitjcizeaitjcize00000000000000cppman-0.4.8/cppman/lib/cppman.vim0000644000175000017500000000754112707131531020455 0ustar aitjcizeaitjcize00000000000000" cppman.vim " " Copyright (C) 2010 - Wei-Ning Huang (AZ) " All Rights reserved. " " This program is free software; you can redistribute it and/or modify " it under the terms of the GNU General Public License as published by " the Free Software Foundation; either version 3 of the License, or " (at your option) any later version. " " This program is distributed in the hope that it will be useful, " but WITHOUT ANY WARRANTY; without even the implied warranty of " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the " GNU General Public License for more details. " " You should have received a copy of the GNU General Public License " along with this program; if not, write to the Free Software Foundation, " Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. " " " Vim syntax file " Language: Man page " Maintainer: SungHyun Nam " Modified: Wei-Ning Huang " Previous Maintainer: Gautam H. Mudunuri " Version Info: " Last Change: 2008 Sep 17 " Additional highlighting by Johannes Tanzler : " * manSubHeading " * manSynopsis (only for sections 2 and 3) " For version 5.x: Clear all syntax items " For version 6.x: Quit when a syntax file was already loaded set nonu set iskeyword+=:,=,~,[,],*,!,<,> set keywordprg=cppman map q :q! if version < 600 syntax clear elseif exists("b:current_syntax") finish endif syntax on syntax case ignore syntax match manReference "[a-z_:+-\*][a-z_:+-~!\*<>]\+([1-9][a-z]\=)" syntax match manTitle "^\w.\+([0-9]\+[a-z]\=).*" syntax match manSectionHeading "^[a-z][a-z_ \-:]*[a-z]$" syntax match manSubHeading "^\s\{3\}[a-z][a-z ]*[a-z]$" syntax match manOptionDesc "^\s*[+-][a-z0-9]\S*" syntax match manLongOptionDesc "^\s*--[a-z0-9-]\S*" syntax include @cppCode runtime! syntax/cpp.vim syntax match manCFuncDefinition display "\<\h\w*\>\s*("me=e-1 contained syntax region manSynopsis start="^SYNOPSIS"hs=s+8 end="^\u\+\s*$"me=e-12 keepend contains=manSectionHeading,@cppCode,manCFuncDefinition syntax region manSynopsis start="^EXAMPLE"hs=s+7 end="^ [^ ]"he=s-1 keepend contains=manSectionHeading,@cppCode,manCFuncDefinition " Define the default highlighting. " For version 5.7 and earlier: only when not done already " For version 5.8 and later: only when an item doesn't have highlighting yet if version >= 508 || !exists("did_man_syn_inits") if version < 508 let did_man_syn_inits = 1 command -nargs=+ HiLink hi link else command -nargs=+ HiLink hi def link endif HiLink manTitle Title HiLink manSectionHeading Statement HiLink manOptionDesc Constant HiLink manLongOptionDesc Constant HiLink manReference PreProc HiLink manSubHeading Function HiLink manCFuncDefinition Function delcommand HiLink endif """ Vim Viewer set mouse=a set colorcolumn=0 let s:old_col = &co echo s:old_col function s:reload() echo "Loading..." exec "%d" exec "0r! cppman --force-columns " . (&co - 2) . " '" . g:page_name . "'" endfunction function Rerender() if &co != s:old_col let s:old_col = &co let save_cursor = getpos(".") call s:reload() call setpos('.', save_cursor) end endfunction autocmd VimResized * call Rerender() let g:stack = [] function LoadNewPage() " Save current page to stack call add(g:stack, [g:page_name, getpos(".")]) let g:page_name = expand("") set noro call s:reload() normal! gg set ro endfunction function BackToPrevPage() if len(g:stack) > 0 let context = g:stack[-1] call remove(g:stack, -1) let g:page_name = context[0] call s:reload() call setpos('.', context[1]) end endfunction map K :call LoadNewPage() map K map K map <2-LeftMouse> K map :call BackToPrevPage() map let b:current_syntax = "man" cppman-0.4.8/cppman/lib/index.db0000644000175000017500000302000012707131531020064 0ustar aitjcizeaitjcize00000000000000SQLite format 3@ Â-õ¡ !•!r--tablecppreference.comcppreference.comCREATE TABLE "cppreference.com" (name VARCHAR(255), url VARCHAR(255))i''tablecplusplus.comcplusplus.comCREATE TABLE "cplusplus.com" (name VARCHAR(255), url VARCHAR(255))RGûöeðêä;ÞØÒÌÆÀºj´®¨¢œ–Š„5~xrlYf`ZSTNHB#<60*$M _úôîèâÜGÖÐÊľ¸²/¬¦ š”)Žˆ‚|vAp20'Œ=$‹8A•R<“n‡J |F—75‘4+p Šˆ}/)w„:O—NE—D–pC–EB–S•i@•3?• >”a=”3R”;“N:“'N’9’Y8’/7’6‘\4‘3lVE1 0gJ?.-Ž^,Ž4MŽ*P)*(UŒR&Œ%‹xT‹O#‹"Šo!ŠHLЉa‰9K‰ˆ\ˆ4ˆ Q‡_‡(‡†\†1†…WH…*…„b„ƒs ƒK ƒP‚o ‚M ‚%[4I T)k €ÂûöðêäÞØÒÌÆÀº´®¨¢œ–Š„~xrlf`ZTNHB<60*$ úôîèâÜÖÐÊľ¸²¬¦ š”Žˆ‚|vpjd^XRLF@:4.("  þ ø ò ì æ à Ú Ô Î È Â ¼ ¶ ° ª ¤ ž ˜ ’ Œ † €Á£&À¢}¿¢R¾¢'½¡{¼¡R»¡)º¡¹ Y¸ 0· ¶Ÿ\µŸ4´Ÿ ³ž^²ž3±ž°_¯5® ­œ`¬œ5«œ ª›^©›3¨› §š\¦š/¥š¤™_£™5¢™¡˜e ˜:Ÿ˜ ž—c—9œ— ›–aš–6™– ˜•b—•:–••”d””;“”’“i‘“;“’jŽ’;’Œ‘b‹‘8Š‘‰fˆ=‡†h…<„ƒŽg‚Ž<Ž€h<~}Œk|ŒC{Œz‹py‹Gx‹wŠtvŠKuŠ"t‰zs‰Ur‰+q‰pˆRoˆ$n‡xm‡Ol‡$k†wj†Oi†%h…xg…Lf…e„td„Mc„ bƒwaƒM`ƒ"_‚x^‚S]‚*\‚[ZZ.YXWW* É)„žIô°I Ë † , à K  ª G ² w  ¼ k (Ä}ÄUÿ¿ƒ3Ê„Cø¤VÙn°w7û¤;ÉC+osize_t (cwchar)http://www.cplusplus.com/reference/cwchar/size_t/®7)chttp://www.cplusplus.com/reference/iomanip/V(9std::stringbuf::setbufhttp://www.cplusplus.com/reference/sstream/stringbuf/setbuf/d'Gstd::atomic_fetch_or_explicithttp://www.cplusplus.com/reference/atomic/atomic_fetch_or_explicit/i&Mstd::bernoulli_distribution::minhttp://www.cplusplus.com/reference/random/bernoulli_distribution/min/{%_)std::piecewise_linear_distribution::paramhttp://www.cplusplus.com/reference/random/piecewise_linear_distribution/param/L$1{std::collate::hashhttp://www.cplusplus.com/reference/locale/collate/hash/R#5std::wbuffer_converthttp://www.cplusplus.com/reference/locale/wbuffer_convert/I"/wstd::array::arrayhttp://www.cplusplus.com/reference/array/array/array/:!ostderrhttp://www.cplusplus.com/reference/cstdio/stderr/I 1ustd::multiset::endhttp://www.cplusplus.com/reference/set/multiset/end/gGstd::move_iterator::operator=http://www.cplusplus.com/reference/iterator/move_iterator/operator%3D/N5{std::set_new_handlerhttp://www.cplusplus.com/reference/new/set_new_handler/:owcstokhttp://www.cplusplus.com/reference/cwchar/wcstok/>smbrtoc16http://www.cplusplus.com/reference/cuchar/mbrtoc16/T9std::tuple_sizehttp://www.cplusplus.com/reference/array/array/tuple_size/mK!std::is_nothrow_copy_assignablehttp://www.cplusplus.com/reference/type_traits/is_nothrow_copy_assignable/V;std::match_results::strhttp://www.cplusplus.com/reference/regex/match_results/str/_Astd::money_get::~money_gethttp://www.cplusplus.com/reference/locale/money_get/%7Emoney_get/E-qsize_t (cstring)http://www.cplusplus.com/reference/cstring/size_t/bCstd::basic_streambuf::sgetchttp://www.cplusplus.com/reference/streambuf/basic_streambuf/sgetc/A)mstd::map::swaphttp://www.cplusplus.com/reference/map/map/swap/O3std::collate_bynamehttp://www.cplusplus.com/reference/locale/collate_byname/\A std::unique_lock::try_lockhttp://www.cplusplus.com/reference/mutex/unique_lock/try_lock/[; std::string::operator+=http://www.cplusplus.com/reference/string/string/operator%2B%3D/9!ehttp://www.cplusplus.com/reference/typeinfo/L1{std::ratio_greaterhttp://www.cplusplus.com/reference/ratio/ratio_greater/E)ustd::allocatorhttp://www.cplusplus.com/reference/memory/allocator/a Estd::time_get::get_monthnamehttp://www.cplusplus.com/reference/locale/time_get/get_monthname/X =std::deque::emplace_backhttp://www.cplusplus.com/reference/deque/deque/emplace_back/E +sstd::stack::tophttp://www.cplusplus.com/reference/stack/stack/top/ iMstd::linear_congruential_engine::(constructor)http://www.cplusplus.com/reference/random/linear_congruential_engine/linear_congruential_engine/J /ystd::bitset::testhttp://www.cplusplus.com/reference/bitset/bitset/test/X;std::uninitialized_fillhttp://www.cplusplus.com/reference/memory/uninitialized_fill/C+ostd::set::emptyhttp://www.cplusplus.com/reference/set/set/empty/|Y1std::unordered_multiset::hash_functionhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/hash_function/eIstd::allocator_traits::destroyhttp://www.cplusplus.com/reference/memory/allocator_traits/destroy/B)ostd::bad_allochttp://www.cplusplus.com/reference/new/bad_alloc/S;std::ios::operator boolhttp://www.cplusplus.com/reference/ios/ios/operator_bool/S5std::valarray::shifthttp://www.cplusplus.com/reference/valarray/valarray/shift/`Astd::basic_streambuf::setphttp://www.cplusplus.com/reference/streambuf/basic_streambuf/setp/ ±+nMºß¬q5ì&n Ú • , æ U  É — “ T ò Œ O Ï•Bá Ò/挖ÏCΔ5÷±±A5)msize_t (ctime)http://www.cplusplus.com/reference/ctime/size_t/Qd-o!std::relational operators (discrete_distribution)http://www.cplusplus.com/reference/random/discrete_distribution/operators/Ra1std::operator>> (chi_squared_distribution)http://www.cplusplus.com/reference/random/chi_squared_distribution/operator%3E%3E/|>]-std::operator<< (bernoulli_distribution)http://www.cplusplus.com/reference/random/bernoulli_distribution/operator%3C%3C/F@3mstd::abs (valarray)http://www.cplusplus.com/reference/valarray/abs/p.M%std::unordered_multiset::emplacehttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/emplace/%iU,5std::partition_pointhttp://www.cplusplus.com/reference/algorithm/partition_point/:+oprintfhttp://www.cplusplus.com/reference/cstdio/printf/>*sc32rtombhttp://www.cplusplus.com/reference/cuchar/c32rtomb/@TuWCHAR_MINhttp://www.cplusplus.com/reference/cwchar/WCHAR_MIN/TSA{std::chrono::duration::minhttp://www.cplusplus.com/reference/chrono/duration/min/ ãgXQ9 std::streambuf::snextchttp://www.cplusplus.com/reference/streambuf/streambuf/snextc/GP-ustd::deque::swaphttp://www.cplusplus.com/reference/deque/deque/swap/PO5std::auto_ptr::resethttp://www.cplusplus.com/reference/memory/auto_ptr/reset/ON7{std::multimap::rbeginhttp://www.cplusplus.com/reference/map/multimap/rbegin/9M!ehttp://www.cplusplus.com/reference/iostream/rLO'std::unordered_map::hash_functionhttp://www.cplusplus.com/reference/unordered_map/unordered_map/hash_function/^KA std::basic_ofstream::closehttp://www.cplusplus.com/reference/fstream/basic_ofstream/close/_JC std::random_device::entropyhttp://www.cplusplus.com/reference/random/random_device/entropy/QI9}std::ios_base::iostatehttp://www.cplusplus.com/reference/ios/ios_base/iostate/8Hmftellhttp://www.cplusplus.com/reference/cstdio/ftell/DG+qstd::list::swaphttp://www.cplusplus.com/reference/list/list/swap/8Fmstdinhttp://www.cplusplus.com/reference/cstdio/stdin/;Ekstd::stofhttp://www.cplusplus.com/reference/string/stof/dDIstd::unique_lock::try_lock_forhttp://www.cplusplus.com/reference/mutex/unique_lock/try_lock_for/`C=std::unordered_map::swaphttp://www.cplusplus.com/reference/unordered_map/unordered_map/swap/=B%ihttp://www.cplusplus.com/reference/functional/NA-math_errhandlinghttp://www.cplusplus.com/reference/cmath/math_errhandling/ d=B?)ostd::list::endhttp://www.cplusplus.com/reference/list/list/end/e8=estd::fposhttp://www.cplusplus.com/reference/ios/fpos/P</std::not_equal_tohttp://www.cplusplus.com/reference/functional/not_equal_to/6;kgetchttp://www.cplusplus.com/reference/cstdio/getc/W:7 std::next_permutationhttp://www.cplusplus.com/reference/algorithm/next_permutation/D9'ustd::wfilebufhttp://www.cplusplus.com/reference/fstream/wfilebuf/g8Estd::is_trivially_assignablehttp://www.cplusplus.com/reference/type_traits/is_trivially_assignable/C7+ohttp://www.cplusplus.com/reference/unordered_set/J6/ystd::atomic::loadhttp://www.cplusplus.com/reference/atomic/atomic/load/g4Kstd::discard_block_engine::basehttp://www.cplusplus.com/reference/random/discard_block_engine/base/[3? std::char_traits::comparehttp://www.cplusplus.com/reference/string/char_traits/compare/G2+wstd::money_basehttp://www.cplusplus.com/reference/locale/money_base/:1owcstodhttp://www.cplusplus.com/reference/cwchar/wcstod/90oqsorthttp://www.cplusplus.com/reference/cstdlib/qsort/R//std::forward_listhttp://www.cplusplus.com/reference/forward_list/forward_list/ ¹#èä¥\é¤hýˆNï±kËv Ö‡. Ä d Û f ) ¯ Wè š K ø P ÒxGõ@Îpç›*Ýpna1std::operator<< (uniform_int_distribution)http://www.cplusplus.com/reference/random/uniform_int_distribution/operator%3C%3C/D`%wstd::is_heaphttp://www.cplusplus.com/reference/algorithm/is_heap/<_mstd::endshttp://www.cplusplus.com/reference/ostream/ends/]^Ostd::relational operators (deque)http://www.cplusplus.com/reference/deque/deque/operators/8]estd::wioshttp://www.cplusplus.com/reference/ios/wios/s\Q'std::is_nothrow_copy_constructiblehttp://www.cplusplus.com/reference/type_traits/is_nothrow_copy_constructible/i[Mstd::uniform_int_distribution::bhttp://www.cplusplus.com/reference/random/uniform_int_distribution/b/:Zombrlenhttp://www.cplusplus.com/reference/cwchar/mbrlen/CY)qstd::set::~sethttp://www.cplusplus.com/reference/set/set/%7Eset/qXUstd::atomic::compare_exchange_stronghttp://www.cplusplus.com/reference/atomic/atomic/compare_exchange_strong/GW-ustd::deque::cendhttp://www.cplusplus.com/reference/deque/deque/cend/=V%istd::map::athttp://www.cplusplus.com/reference/map/map/at/aUEstd::gamma_distribution::minhttp://www.cplusplus.com/reference/random/gamma_distribution/min//wSReferencehttp://www.cplusplus.com/reference/Xv;std::istringstream::strhttp://www.cplusplus.com/reference/sstream/istringstream/str/tqstd::findhttp://www.cplusplus.com/reference/algorithm/find/gsKstd::future_error::future_errorhttp://www.cplusplus.com/reference/future/future_error/future_error/ ð?Qq/std::add_volatilehttp://www.cplusplus.com/reference/type_traits/add_volatile/Mp1}std::filebuf::swaphttp://www.cplusplus.com/reference/fstream/filebuf/swap/ToA{std::chrono::duration::maxhttp://www.cplusplus.com/reference/chrono/duration/max/Hr5ostd::sqrt (valarray)http://www.cplusplus.com/reference/valarray/sqrt/Vm=std::basic_ios::setstatehttp://www.cplusplus.com/reference/ios/basic_ios/setstate/xlU-std::unordered_set::max_bucket_counthttp://www.cplusplus.com/reference/unordered_set/unordered_set/max_bucket_count/;koasctimehttp://www.cplusplus.com/reference/ctime/asctime/sjW!std::mersenne_twister_engine::discardhttp://www.cplusplus.com/reference/random/mersenne_twister_engine/discard/ic;std::unordered_multiset::unordered_multisethttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/unordered_multiset/^hC std::unique_lock::owns_lockhttp://www.cplusplus.com/reference/mutex/unique_lock/owns_lock/hgEstd::unordered_multimap::endhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/end/Wf;std::time_put::time_puthttp://www.cplusplus.com/reference/locale/time_put/time_put/Me5ystd::ios_base::eventhttp://www.cplusplus.com/reference/ios/ios_base/event/5dahttp://www.cplusplus.com/reference/chrono/gcKstd::normal_distribution::resethttp://www.cplusplus.com/reference/random/normal_distribution/reset/Sb;std::ios_base::openmodehttp://www.cplusplus.com/reference/ios/ios_base/openmode/3agexphttp://www.cplusplus.com/reference/cmath/exp/ '™–UÅc- Ô 6 ó ž  ¹ p  ¨ H Á | 5Ç_¸p™®Tñ­Séb¤dòvÓ{÷£'q#std::relational operators (bernoulli_distribution)http://www.cplusplus.com/reference/random/bernoulli_distribution/operators/U49std::allocator::rebindhttp://www.cplusplus.com/reference/memory/allocator/rebind/y3]'std::linear_congruential_engine::discardhttp://www.cplusplus.com/reference/random/linear_congruential_engine/discard/o2[std::chrono::high_resolution_clock::nowhttp://www.cplusplus.com/reference/chrono/high_resolution_clock/now/=1slldiv_thttp://www.cplusplus.com/reference/cstdlib/lldiv_t/k0Ostd::discrete_distribution::paramhttp://www.cplusplus.com/reference/random/discrete_distribution/param/M/5yhttp://www.cplusplus.com/reference/condition_variable/.[=std::condition_variable_any::notify_allhttp://www.cplusplus.com/reference/condition_variable/condition_variable_any/notify_all/g-Kstd::thread::native_handle_typehttp://www.cplusplus.com/reference/thread/thread/native_handle_type/W,;std::basic_string::backhttp://www.cplusplus.com/reference/string/basic_string/back/A+)mstd::set::rendhttp://www.cplusplus.com/reference/set/set/rend/`*Astd::type_index::hash_codehttp://www.cplusplus.com/reference/typeindex/type_index/hash_code/W);std::seed_seq::generatehttp://www.cplusplus.com/reference/random/seed_seq/generate/T(7std::deque::operator=http://www.cplusplus.com/reference/deque/deque/operator%3D/kE&+sstd::queue::pophttp://www.cplusplus.com/reference/queue/queue/pop/a%Estd::weibull_distribution::bhttp://www.cplusplus.com/reference/random/weibull_distribution/b/@$uFOPEN_MAXhttp://www.cplusplus.com/reference/cstdio/FOPEN_MAX/e#Istd::normal_distribution::meanhttp://www.cplusplus.com/reference/random/normal_distribution/mean/k"Ostd::mersenne_twister_engine::minhttp://www.cplusplus.com/reference/random/mersenne_twister_engine/min/D!)sstd::ctype::ishttp://www.cplusplus.com/reference/locale/ctype/is/B #ustd::fill_nhttp://www.cplusplus.com/reference/algorithm/fill_n/_9std::binomial_distribution::(constructor)http://www.cplusplus.com/reference/random/binomial_distribution/binomial_distribution/]A std::recursive_timed_mutexhttp://www.cplusplus.com/reference/mutex/recursive_timed_mutex/fGstd::basic_streambuf::pubsynchttp://www.cplusplus.com/reference/streambuf/basic_streambuf/pubsync/\= std::ifstream::operator=http://www.cplusplus.com/reference/fstream/ifstream/operator%3D/F+ustd::locale::idhttp://www.cplusplus.com/reference/locale/locale/id/[? std::packaged_task::validhttp://www.cplusplus.com/reference/future/packaged_task/valid/_9std::discrete_distribution::(constructor)http://www.cplusplus.com/reference/random/discrete_distribution/discrete_distribution/R5std::atomic_fetch_orhttp://www.cplusplus.com/reference/atomic/atomic_fetch_or/@%ostd::wcmatchhttp://www.cplusplus.com/reference/regex/wcmatch/H){std::transformhttp://www.cplusplus.com/reference/algorithm/transform/P5std::vector::reservehttp://www.cplusplus.com/reference/vector/vector/reserve/V7std::streambuf::pbumphttp://www.cplusplus.com/reference/streambuf/streambuf/pbump/3gsinhttp://www.cplusplus.com/reference/cmath/sin/_Astd::unique_ptr::operator*http://www.cplusplus.com/reference/memory/unique_ptr/operator%2A/;oclock_thttp://www.cplusplus.com/reference/ctime/clock_t/O3std::filebuf::closehttp://www.cplusplus.com/reference/fstream/filebuf/close/>smbrtoc32http://www.cplusplus.com/reference/cuchar/mbrtoc32/gKstd::cauchy_distribution::paramhttp://www.cplusplus.com/reference/random/cauchy_distribution/param/ Þ'cy!IHñ¡Z ì   ` c ÐÌ À M ö § a   d *ßv¾i ÈiÀwÄjõ™/ÞÞxBY)std::operator<< (discard_block_engine)http://www.cplusplus.com/reference/random/discard_block_engine/operator%3C%3C/ kîzD[+std::operator>> (discrete_distribution)http://www.cplusplus.com/reference/random/discrete_distribution/operator%3E%3E/Q81std::get_terminatehttp://www.cplusplus.com/reference/exception/get_terminate/7]5std::unordered_multiset::max_load_factorhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/max_load_factor/U63 std::remove_pointerhttp://www.cplusplus.com/reference/type_traits/remove_pointer/H5){std::set_unionhttp://www.cplusplus.com/reference/algorithm/set_union/S[7std::char_traits::eofhttp://www.cplusplus.com/reference/string/char_traits/eof/ZZ9 std::reference_wrapperhttp://www.cplusplus.com/reference/functional/reference_wrapper/FY'ystd::count_ifhttp://www.cplusplus.com/reference/algorithm/count_if/=X!mstd::ctypehttp://www.cplusplus.com/reference/locale/ctype/fWGstd::basic_fstream::operator=http://www.cplusplus.com/reference/fstream/basic_fstream/operator%3D/\V? std::basic_ostream::tellphttp://www.cplusplus.com/reference/ostream/basic_ostream/tellp/AU%qstd::knuth_bhttp://www.cplusplus.com/reference/random/knuth_b/ZT= std::declare_no_pointershttp://www.cplusplus.com/reference/memory/declare_no_pointers/RS/std::system_errorhttp://www.cplusplus.com/reference/system_error/system_error/MR1}std::fstream::openhttp://www.cplusplus.com/reference/fstream/fstream/open/eQIstd::moneypunct::do_neg_formathttp://www.cplusplus.com/reference/locale/moneypunct/do_neg_format/fPIstd::unique_lock::~unique_lockhttp://www.cplusplus.com/reference/mutex/unique_lock/%7Eunique_lock/HO-wstd::wssub_matchhttp://www.cplusplus.com/reference/regex/wssub_match/7Nchttp://www.cplusplus.com/reference/complex/[M? std::basic_string::rbeginhttp://www.cplusplus.com/reference/string/basic_string/rbegin/LL-std::upper_boundhttp://www.cplusplus.com/reference/algorithm/upper_bound/MK3{std::stack::emplacehttp://www.cplusplus.com/reference/stack/stack/emplace/CJ)qstd::ios::~ioshttp://www.cplusplus.com/reference/ios/ios/%7Eios/LI1{std::string::beginhttp://www.cplusplus.com/reference/string/string/begin/TH7std::ostream::ostreamhttp://www.cplusplus.com/reference/ostream/ostream/ostream/pGM%std::unordered_map::emplace_hinthttp://www.cplusplus.com/reference/unordered_map/unordered_map/emplace_hint/IF-ystd::make_sharedhttp://www.cplusplus.com/reference/memory/make_shared/\E? std::poisson_distributionhttp://www.cplusplus.com/reference/random/poisson_distribution/eHC){std::push_heaphttp://www.cplusplus.com/reference/algorithm/push_heap/BA)ostd::nounitbufhttp://www.cplusplus.com/reference/ios/nounitbuf/=@sstrcspnhttp://www.cplusplus.com/reference/cstring/strcspn/I?)}std::binder1sthttp://www.cplusplus.com/reference/functional/binder1st/k>Istd::is_trivially_destructiblehttp://www.cplusplus.com/reference/type_traits/is_trivially_destructible/D=%wstd::find_ifhttp://www.cplusplus.com/reference/algorithm/find_if/M<5ystd::multiset::erasehttp://www.cplusplus.com/reference/set/multiset/erase/T;5std::exception::whathttp://www.cplusplus.com/reference/exception/exception/what/R:5std::ostream::sentryhttp://www.cplusplus.com/reference/ostream/ostream/sentry/`9?std::exception::operator=http://www.cplusplus.com/reference/exception/exception/operator%3D/ é!úꀷdŒ0Æu¤=Ý€ Ë Mú 2 Û • 7 ú Ä ` ( ¾ O ²[ù œMÓaÑt8ÒlxnY)std::operator>> (shuffle_order_engine)http://www.cplusplus.com/reference/random/shuffle_order_engine/operator%3E%3E/Ne3}std::money_put::puthttp://www.cplusplus.com/reference/locale/money_put/put/gdKstd::binomial_distribution::maxhttp://www.cplusplus.com/reference/random/binomial_distribution/max/Yc?std::bad_array_new_lengthhttp://www.cplusplus.com/reference/new/bad_array_new_length/rbO'std::unordered_set::get_allocatorhttp://www.cplusplus.com/reference/unordered_set/unordered_set/get_allocator/`aE std::vector::referencehttp://www.cplusplus.com/reference/vector/vector-bool/reference/P`5std::locale::combinehttp://www.cplusplus.com/reference/locale/locale/combine/X_;std::ifstream::ifstreamhttp://www.cplusplus.com/reference/fstream/ifstream/ifstream/k^Ostd::binomial_distribution::resethttp://www.cplusplus.com/reference/random/binomial_distribution/reset/g]Kstd::shuffle_order_engine::seedhttp://www.cplusplus.com/reference/random/shuffle_order_engine/seed/n\K#std::unordered_multimap::cbeginhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/cbegin/T|9std::timed_mutex::lockhttp://www.cplusplus.com/reference/mutex/timed_mutex/lock/K{+fesetexceptflaghttp://www.cplusplus.com/reference/cfenv/fesetexceptflag/Lz/}std::stringstreamhttp://www.cplusplus.com/reference/sstream/stringstream/lyC'std::condition_variable_anyhttp://www.cplusplus.com/reference/condition_variable/condition_variable_any/gxKstd::shuffle_order_engine::basehttp://www.cplusplus.com/reference/random/shuffle_order_engine/base/5wahttp://www.cplusplus.com/reference/limits/av?std::forward_list::uniquehttp://www.cplusplus.com/reference/forward_list/forward_list/unique/3u_http://www.cplusplus.com/reference/mutex/:towcsspnhttp://www.cplusplus.com/reference/cwchar/wcsspn/[s; std::make_exception_ptrhttp://www.cplusplus.com/reference/exception/make_exception_ptr/Cr+ostd::set::erasehttp://www.cplusplus.com/reference/set/set/erase/Tq7std::allocator_traitshttp://www.cplusplus.com/reference/memory/allocator_traits/Zp?std::deque::shrink_to_fithttp://www.cplusplus.com/reference/deque/deque/shrink_to_fit/Wo;std::codecvt::do_lengthhttp://www.cplusplus.com/reference/locale/codecvt/do_length/d=m!mstd::stoldhttp://www.cplusplus.com/reference/string/stold/;lollroundhttp://www.cplusplus.com/reference/cmath/llround/?k'kstd::ios::badhttp://www.cplusplus.com/reference/ios/ios/bad/pjI)std::unordered_map::operator[]http://www.cplusplus.com/reference/unordered_map/unordered_map/operator%5B%5D/Zi; std::make_move_iteratorhttp://www.cplusplus.com/reference/iterator/make_move_iterator/]hA std::numpunct::do_groupinghttp://www.cplusplus.com/reference/locale/numpunct/do_grouping/dgAstd::unordered_map::buckethttp://www.cplusplus.com/reference/unordered_map/unordered_map/bucket/Yf=std::char_traits::lengthhttp://www.cplusplus.com/reference/string/char_traits/length/ )‚Aî’Q º t ø ž B ² A ò x  µ v Ýwø§QáŒ3Ö“UªX»e¬bB‚%5c (tgmath.h)http://www.cplusplus.com/reference/ctgmath/G‚$-ustd::array::datahttp://www.cplusplus.com/reference/array/array/data/U‚#9std::bitset::to_ullonghttp://www.cplusplus.com/reference/bitset/bitset/to_ullong/^‚"A std::undeclare_no_pointershttp://www.cplusplus.com/reference/memory/undeclare_no_pointers/S‚!7std::ctype::do_narrowhttp://www.cplusplus.com/reference/locale/ctype/do_narrow/\‚ A std::timed_mutex::try_lockhttp://www.cplusplus.com/reference/mutex/timed_mutex/try_lock/;‚qsetjmphttp://www.cplusplus.com/reference/csetjmp/setjmp/O‚3std::stringbuf::strhttp://www.cplusplus.com/reference/sstream/stringbuf/str/d‚Estd::basic_streambuf::setbufhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/setbuf/A‚%qstd::collatehttp://www.cplusplus.com/reference/locale/collate/;‚qmemcmphttp://www.cplusplus.com/reference/cstring/memcmp/@‚ustd::rankhttp://www.cplusplus.com/reference/type_traits/rank/Z‚= std::cauchy_distributionhttp://www.cplusplus.com/reference/random/cauchy_distribution/V‚=std::ios_base::precisionhttp://www.cplusplus.com/reference/ios/ios_base/precision/R‚5std::kill_dependencyhttp://www.cplusplus.com/reference/atomic/kill_dependency/m‚K!std::forward_list::forward_listhttp://www.cplusplus.com/reference/forward_list/forward_list/forward_list/S‚3std::function::swaphttp://www.cplusplus.com/reference/functional/function/swap/N‚1std::gslice::starthttp://www.cplusplus.com/reference/valarray/gslice/start/|‚]-std::operator>> (student_t_distribution)http://www.cplusplus.com/reference/random/student_t_distribution/operator%3E%3E/c‚Gstd::this_thread::sleep_untilhttp://www.cplusplus.com/reference/thread/this_thread/sleep_until/9‚mmktimehttp://www.cplusplus.com/reference/ctime/mktime/Z‚; std::streambuf::seekoffhttp://www.cplusplus.com/reference/streambuf/streambuf/seekoff/<‚!kstd::mutexhttp://www.cplusplus.com/reference/mutex/mutex/N‚1std::istringstreamhttp://www.cplusplus.com/reference/sstream/istringstream/o‚ Qstd::packaged_task::~packaged_taskhttp://www.cplusplus.com/reference/future/packaged_task/%7Epackaged_task/w‚ estd::relational operators (istream_iterator)http://www.cplusplus.com/reference/iterator/istream_iterator/operators/L‚ -std::range_errorhttp://www.cplusplus.com/reference/stdexcept/range_error/n‚ K#std::unordered_multiset::rehashhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/rehash/ ‚ eEstd::uniform_int_distribution::(constructor)http://www.cplusplus.com/reference/random/uniform_int_distribution/uniform_int_distribution/Y‚; std::atomic::operator Thttp://www.cplusplus.com/reference/atomic/atomic/operator%20T/W‚9std::future::operator=http://www.cplusplus.com/reference/future/future/operator%3D/y‚U/std::error_category::~error_categoryhttp://www.cplusplus.com/reference/system_error/error_category/%7Eerror_category/C‚+ostd::map::erasehttp://www.cplusplus.com/reference/map/map/erase/U‚9std::auto_ptr::releasehttp://www.cplusplus.com/reference/memory/auto_ptr/release/<‚qvprintfhttp://www.cplusplus.com/reference/cstdio/vprintf/>‚!ostd::atanhhttp://www.cplusplus.com/reference/complex/atanh/Y‚=std::ratio_greater_equalhttp://www.cplusplus.com/reference/ratio/ratio_greater_equal/P‚/std::placeholdershttp://www.cplusplus.com/reference/functional/placeholders/>sgetwcharhttp://www.cplusplus.com/reference/cwchar/getwchar/=~qisnormalhttp://www.cplusplus.com/reference/cmath/isnormal/;}#ghttp://www.cplusplus.com/reference/streambuf/ _(j ­ R Ï’SÇo-È'Ô€%Ãg Ã…Ë_ôjš9îs?û»R ü D ö • *tor<< (exponî‚?a1std::operator<< (exponential_distribution)http://www.cplusplus.com/reference/random/exponential_distribution/operator%3C%3C/H‚B=g (inttypes.h)http://www.cplusplus.com/reference/cinttypes/^‚A?std::operator>> (istream)http://www.cplusplus.com/reference/istream/istream/operator-free/W‚@;std::messages::do_closehttp://www.cplusplus.com/reference/locale/messages/do_close/h‚>Istd::operator<< (basic_string)http://www.cplusplus.com/reference/string/basic_string/operator%3C%3C/i‚=Mstd::student_t_distribution::maxhttp://www.cplusplus.com/reference/random/student_t_distribution/max/M‚<5ystd::multiset::clearhttp://www.cplusplus.com/reference/set/multiset/clear/A‚;)mstd::map::rendhttp://www.cplusplus.com/reference/map/map/rend/ %M‚C5ystd::multimap::emptyhttp://www.cplusplus.com/reference/map/multimap/empty/G‚9+wstd::swap (map)http://www.cplusplus.com/reference/map/map/swap-free/W‚89std::vector::operator=http://www.cplusplus.com/reference/vector/vector/operator%3D/Y‚79 std::throw_with_nestedhttp://www.cplusplus.com/reference/exception/throw_with_nested/_‚6=std::error_code::messagehttp://www.cplusplus.com/reference/system_error/error_code/message/X‚5?std::multimap::value_comphttp://www.cplusplus.com/reference/map/multimap/value_comp/Q‚43std::basic_ofstreamhttp://www.cplusplus.com/reference/fstream/basic_ofstream/P‚35std::vector::emplacehttp://www.cplusplus.com/reference/vector/vector/emplace/U‚29std::string::push_backhttp://www.cplusplus.com/reference/string/string/push_back/F‚13mstd::exp (valarray)http://www.cplusplus.com/reference/valarray/exp/b‚0?std::unordered_map::emptyhttp://www.cplusplus.com/reference/unordered_map/unordered_map/empty/?‚/uiswprinthttp://www.cplusplus.com/reference/cwctype/iswprint/U‚.3 std::is_fundamentalhttp://www.cplusplus.com/reference/type_traits/is_fundamental/O‚-7{std::multiset::inserthttp://www.cplusplus.com/reference/set/multiset/insert/7‚,chttp://www.cplusplus.com/reference/utility/<‚+-_ (fenv.h)http://www.cplusplus.com/reference/cfenv/:‚*owcslenhttp://www.cplusplus.com/reference/cwchar/wcslen/C‚)+ostd::set::crendhttp://www.cplusplus.com/reference/set/set/crend/:‚(ofpos_thttp://www.cplusplus.com/reference/cstdio/fpos_t/X‚'9 std::istream::~istreamhttp://www.cplusplus.com/reference/istream/istream/%7Eistream/u‚&S)std::operators (unordered_multiset)http://www.cplusplus.com/reference/unordered_set/unordered_multiset/operators/h‚MEstd::unordered_multiset::endhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/end/^‚L;std::is_error_code_enumhttp://www.cplusplus.com/reference/system_error/is_error_code_enum/K‚K/{std::minstd_rand0http://www.cplusplus.com/reference/random/minstd_rand0/F‚J%{std::is_enumhttp://www.cplusplus.com/reference/type_traits/is_enum/l‚II!std::unordered_multiset::beginhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/begin/S‚H;std::ios_base::ios_basehttp://www.cplusplus.com/reference/ios/ios_base/ios_base/f‚GGstd::basic_ostream::operator=http://www.cplusplus.com/reference/ostream/basic_ostream/operator%3D/=‚Fsstrtollhttp://www.cplusplus.com/reference/cstdlib/strtoll/A‚E!uFE_INVALIDhttp://www.cplusplus.com/reference/cfenv/FE_INVALID/C‚D'sstd::messageshttp://www.cplusplus.com/reference/locale/messages/x‚:Y)std::operator>> (poisson_distribution)http://www.cplusplus.com/reference/random/poisson_distribution/operator%3E%3E/ .q±N¿] £ O ä Ÿq ? õ ¥ V  Ñ u 8 ¾ W §V â‹8¼PâžB¶v+õ¨:”*ºi ‚zm=std::operator<< (negative_binomial_distribution)http://www.cplusplus.com/reference/random/negative_binomial_distribution/operator%3C%3C/eƒAstd::error_code::operator=http://www.cplusplus.com/reference/system_error/error_code/operator%3D/Nƒ3}std::codecvt::do_inhttp://www.cplusplus.com/reference/locale/codecvt/do_in/mƒK!std::system_error::system_errorhttp://www.cplusplus.com/reference/system_error/system_error/system_error/gƒKstd::basic_string::find_last_ofhttp://www.cplusplus.com/reference/string/basic_string/find_last_of/iƒIstd::move_iterator::operator-=http://www.cplusplus.com/reference/iterator/move_iterator/operator-%3D/7ƒklrinthttp://www.cplusplus.com/reference/cmath/lrint/kƒOstd::discrete_distribution::resethttp://www.cplusplus.com/reference/random/discrete_distribution/reset/Jƒ)std::remove_cvhttp://www.cplusplus.com/reference/type_traits/remove_cv/3ƒ_http://www.cplusplus.com/reference/array/Hƒ'}std::is_consthttp://www.cplusplus.com/reference/type_traits/is_const/=ƒsstrpbrkhttp://www.cplusplus.com/reference/cstring/strpbrk/Gƒ-ustd::array::cendhttp://www.cplusplus.com/reference/array/array/cend/?ƒuiswspacehttp://www.cplusplus.com/reference/cwctype/iswspace/Yƒ=std::basic_string::beginhttp://www.cplusplus.com/reference/string/basic_string/begin/Aƒ)mNULL (cstring)http://www.cplusplus.com/reference/cstring/NULL/kƒOstd::fisher_f_distribution::paramhttp://www.cplusplus.com/reference/random/fisher_f_distribution/param/iƒ Mstd::weibull_distribution::paramhttp://www.cplusplus.com/reference/random/weibull_distribution/param/yƒ [)std::reverse_iterator::reverse_iteratorhttp://www.cplusplus.com/reference/iterator/reverse_iterator/reverse_iterator/Pƒ 5std::list::operator=http://www.cplusplus.com/reference/list/list/operator%3D/Tƒ 9std::basic_regex::swaphttp://www.cplusplus.com/reference/regex/basic_regex/swap/;ƒ #ghttp://www.cplusplus.com/reference/stdexcept/3ƒgpowhttp://www.cplusplus.com/reference/cmath/pow/Nƒ3}std::priority_queuehttp://www.cplusplus.com/reference/queue/priority_queue/]ƒA std::vector::get_allocatorhttp://www.cplusplus.com/reference/vector/vector/get_allocator/Mƒ1}std::deque::~dequehttp://www.cplusplus.com/reference/deque/deque/%7Edeque/dƒGstd::basic_filebuf::showmanychttp://www.cplusplus.com/reference/fstream/basic_filebuf/showmanyc/wƒastd::relational operators (error_category)http://www.cplusplus.com/reference/system_error/error_category/operators/:ƒ!gstd::fixedhttp://www.cplusplus.com/reference/ios/fixed/Yƒ; std::basic_stringstreamhttp://www.cplusplus.com/reference/sstream/basic_stringstream/;ƒ#ghttp://www.cplusplus.com/reference/exception/D‚'ustd::put_timehttp://www.cplusplus.com/reference/iomanip/put_time/L‚~-std::lower_boundhttp://www.cplusplus.com/reference/algorithm/lower_bound/M‚}3{std::sub_match::strhttp://www.cplusplus.com/reference/regex/sub_match/str/G‚|'{std::equal_tohttp://www.cplusplus.com/reference/functional/equal_to/]‚{;std::is_move_assignablehttp://www.cplusplus.com/reference/type_traits/is_move_assignable/B‚y5c (limits.h)http://www.cplusplus.com/reference/climits/h‚xKstd::subtract_with_carry_enginehttp://www.cplusplus.com/reference/random/subtract_with_carry_engine/Q‚w3std::basic_ifstreamhttp://www.cplusplus.com/reference/fstream/basic_ifstream/[‚v? std::string::find_last_ofhttp://www.cplusplus.com/reference/string/string/find_last_of/Y‚u5std::swap (function)http://www.cplusplus.com/reference/functional/function/swap-free/_‚t;std::atomic::operator--http://www.cplusplus.com/reference/atomic/atomic/operatorminusminus/L‚s-std::nth_elementhttp://www.cplusplus.com/reference/algorithm/nth_element/=‚r!mstd::alignhttp://www.cplusplus.com/reference/memory/align/`‚q=std::unordered_set::cendhttp://www.cplusplus.com/reference/unordered_set/unordered_set/cend/L‚p/}std::codecvt_modehttp://www.cplusplus.com/reference/codecvt/codecvt_mode/ .r®;ð˜: Ú “ N ÿ ½ Y  Ö u 0 ñ ™ 0 Ö ~ 3Ò˜Mró|Ò˜Nö¨\¨W œMæƒIÇVÿ ƒ6y+std::relational operators (extreme_value_distribution)http://www.cplusplus.com/reference/random/extreme_value_distribution/operators/TƒK3std::unary_functionhttp://www.cplusplus.com/reference/functional/unary_function/nƒJSstd::regex_traits::translate_nocasehttp://www.cplusplus.com/reference/regex/regex_traits/translate_nocase/ƒI_1std::uniform_int_distribution::operator()http://www.cplusplus.com/reference/random/uniform_int_distribution/operator%28%29/7ƒHchttp://www.cplusplus.com/reference/ostream/`ƒGCstd::basic_istream::putbackhttp://www.cplusplus.com/reference/istream/basic_istream/putback/dƒFGstd::operator+ (basic_string)http://www.cplusplus.com/reference/string/basic_string/operator%2B/LƒE1{std::vector::crendhttp://www.cplusplus.com/reference/vector/vector/crend/jƒDIstd::pointer_to_unary_functionhttp://www.cplusplus.com/reference/functional/pointer_to_unary_function/KƒC1ystd::deque::cbeginhttp://www.cplusplus.com/reference/deque/deque/cbegin/NƒB3}std::ctype::scan_ishttp://www.cplusplus.com/reference/locale/ctype/scan_is/]ƒA=std::swap (basic_string)http://www.cplusplus.com/reference/string/basic_string/swap-free/Qƒ@1std::is_heap_untilhttp://www.cplusplus.com/reference/algorithm/is_heap_until/Iƒ?/wstd::deque::dequehttp://www.cplusplus.com/reference/deque/deque/deque/Kƒ>/{std::codecvt_basehttp://www.cplusplus.com/reference/locale/codecvt_base/Uƒ=9std::codecvt::encodinghttp://www.cplusplus.com/reference/locale/codecvt/encoding/Gƒ<+wstd::ctype_basehttp://www.cplusplus.com/reference/locale/ctype_base/7ƒ;kisnanhttp://www.cplusplus.com/reference/cmath/isnan/<ƒ:!kstd::dequehttp://www.cplusplus.com/reference/deque/deque/hƒ9Kstd::basic_ostringstream::rdbufhttp://www.cplusplus.com/reference/sstream/basic_ostringstream/rdbuf/tƒ8U%std::operator<< (gamma_distribution)http://www.cplusplus.com/reference/random/gamma_distribution/operator%3C%3C/Wƒ79std::num_put::~num_puthttp://www.cplusplus.com/reference/locale/num_put/%7Enum_put/Hƒ55ostd::asin (valarray)http://www.cplusplus.com/reference/valarray/asin/7ƒ4kldexphttp://www.cplusplus.com/reference/cmath/ldexp/^ƒ3?std::streambuf::streambufhttp://www.cplusplus.com/reference/streambuf/streambuf/streambuf/Hƒ2-wstd::basic_regexhttp://www.cplusplus.com/reference/regex/basic_regex/Uƒ13 atomic_signal_fencehttp://www.cplusplus.com/reference/atomic/atomic_signal_fence/Wƒ09std::string::operator=http://www.cplusplus.com/reference/string/string/operator%3D/fƒ/Q std::chrono::high_resolution_clockhttp://www.cplusplus.com/reference/chrono/high_resolution_clock/Uƒ.;std::list::emplace_backhttp://www.cplusplus.com/reference/list/list/emplace_back/<ƒ-qwcrtombhttp://www.cplusplus.com/reference/cwchar/wcrtomb/Bƒ,#ustd::uniquehttp://www.cplusplus.com/reference/algorithm/unique/^ƒ+=std::swap (stringstream)http://www.cplusplus.com/reference/sstream/stringstream/swap-free/7ƒ*ktrunchttp://www.cplusplus.com/reference/cmath/trunc/Fƒ))wstd::wiostreamhttp://www.cplusplus.com/reference/istream/wiostream/aƒ(Estd::basic_string::push_backhttp://www.cplusplus.com/reference/string/basic_string/push_back/?ƒ'sfexcept_thttp://www.cplusplus.com/reference/cfenv/fexcept_t/Lƒ&1{std::string::rfindhttp://www.cplusplus.com/reference/string/string/rfind/Bƒ%%sstd::filebufhttp://www.cplusplus.com/reference/fstream/filebuf/Dƒ$'ustd::wostreamhttp://www.cplusplus.com/reference/ostream/wostream/]ƒ#=std::valarray::~valarrayhttp://www.cplusplus.com/reference/valarray/valarray/%7Evalarray/[ƒ"? std::codecvt::do_encodinghttp://www.cplusplus.com/reference/locale/codecvt/do_encoding/Uƒ!9std::bitset::referencehttp://www.cplusplus.com/reference/bitset/bitset/reference/Hƒ /ustd::list::inserthttp://www.cplusplus.com/reference/list/list/insert/pƒUstd::regex_traits::transform_primaryhttp://www.cplusplus.com/reference/regex/regex_traits/transform_primary/Oƒ3std::istream::tellghttp://www.cplusplus.com/reference/istream/istream/tellg/ ®(£a ™´Â ù € B æR C á ¡ 1 ñ ¿ O ã ¤ IãÊj±` ½{ ¡QïÍFä³\Åe ƒPm=std::operator>> (negative_binomial_distribution)http://www.cplusplus.com/reference/random/negative_binomial_distribution/operator%3E%3E/xƒUY)std::operator<< (weibull_distribution)http://www.cplusplus.com/reference/random/weibull_distribution/operator%3C%3C/Hƒo5ostd::log10 (complex)http://www.cplusplus.com/reference/complex/log10/fƒsGstd::basic_streambuf::seekposhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/seekpos/`ƒrAstd::basic_streambuf::setghttp://www.cplusplus.com/reference/streambuf/basic_streambuf/setg/_ƒqAstd::shared_ptr::operator=http://www.cplusplus.com/reference/memory/shared_ptr/operator%3D/eƒpIstd::gamma_distribution::alphahttp://www.cplusplus.com/reference/random/gamma_distribution/alpha/ ‚A_ƒnC std::basic_string::max_sizehttp://www.cplusplus.com/reference/string/basic_string/max_size/Mƒm9ustd::ECMAScript syntaxhttp://www.cplusplus.com/reference/regex/ECMAScript/fƒlMstd::ios_base::register_callbackhttp://www.cplusplus.com/reference/ios/ios_base/register_callback/nƒkK#std::unordered_multimap::inserthttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/insert/?ƒjuiswctypehttp://www.cplusplus.com/reference/cwctype/iswctype/Mƒi3{std::map::operator=http://www.cplusplus.com/reference/map/map/operator%3D/Pƒh5std::recursive_mutexhttp://www.cplusplus.com/reference/mutex/recursive_mutex/Nƒg3}std::bitset::bitsethttp://www.cplusplus.com/reference/bitset/bitset/bitset/[ƒf= std::messages::~messageshttp://www.cplusplus.com/reference/locale/messages/%7Emessages/Xƒe;std::filebuf::showmanychttp://www.cplusplus.com/reference/fstream/filebuf/showmanyc/]ƒdA std::time_get::do_get_timehttp://www.cplusplus.com/reference/locale/time_get/do_get_time/Jƒc/ystd::string::swaphttp://www.cplusplus.com/reference/string/string/swap/uƒbY#std::extreme_value_distribution::paramhttp://www.cplusplus.com/reference/random/extreme_value_distribution/param/Qƒa3std::gslice::stridehttp://www.cplusplus.com/reference/valarray/gslice/stride/cƒ`Astd::forward_list::reversehttp://www.cplusplus.com/reference/forward_list/forward_list/reverse/Xƒ_;std::auto_ptr::operatorhttp://www.cplusplus.com/reference/memory/auto_ptr/operators/<ƒ^qisupperhttp://www.cplusplus.com/reference/cctype/isupper/iƒ]Mstd::bernoulli_distribution::maxhttp://www.cplusplus.com/reference/random/bernoulli_distribution/max/mƒ\K!std::is_nothrow_move_assignablehttp://www.cplusplus.com/reference/type_traits/is_nothrow_move_assignable//ƒ[[Otherhttp://www.cplusplus.com/reference/std/=ƒZqcopysignhttp://www.cplusplus.com/reference/cmath/copysign/mƒYQstd::extreme_value_distribution::ahttp://www.cplusplus.com/reference/random/extreme_value_distribution/a/=ƒXsstrtoulhttp://www.cplusplus.com/reference/cstdlib/strtoul/_ƒWC std::this_thread::sleep_forhttp://www.cplusplus.com/reference/thread/this_thread/sleep_for/<ƒVqisspacehttp://www.cplusplus.com/reference/cctype/isspace/FJƒN7qstd::swap (algorithm)http://www.cplusplus.com/reference/algorithm/swap/YƒT=std::this_thread::get_idhttp://www.cplusplus.com/reference/thread/this_thread/get_id/;ƒSqstrcpyhttp://www.cplusplus.com/reference/cstring/strcpy/vƒRQ-std::unordered_multiset::operator=http://www.cplusplus.com/reference/unordered_set/unordered_multiset/operator%3D/JƒQ/ystd::vector::cendhttp://www.cplusplus.com/reference/vector/vector/cend/ niƒOMstd::basic_string::find_first_ofhttp://www.cplusplus.com/reference/string/basic_string/find_first_of/A?ƒM1a (stdio.h)http://www.cplusplus.com/reference/cstdio/ZƒLAstd::multimap::lower_boundhttp://www.cplusplus.com/reference/map/multimap/lower_bound/ '’à‰?ò’»l÷š2 Ñ ˆ @ ü À i  É u . ¼ k í § h ·7Í| ¾Ný?æE˜õ´ccë]ƒxOstd::relational operators (queue)http://www.cplusplus.com/reference/queue/queue/operators/Jƒw/ystd::ctype::widenhttp://www.cplusplus.com/reference/locale/ctype/widen/Gƒv-ustd::queue::sizehttp://www.cplusplus.com/reference/queue/queue/size/Tƒu7std::atomic_fetch_addhttp://www.cplusplus.com/reference/atomic/atomic_fetch_add/bƒt?std::unordered_map::erasehttp://www.cplusplus.com/reference/unordered_map/unordered_map/erase/7„chttp://www.cplusplus.com/reference/codecvt/d„Astd::unordered_set::key_eqhttp://www.cplusplus.com/reference/unordered_set/unordered_set/key_eq/V„9std::ofstream::is_openhttp://www.cplusplus.com/reference/fstream/ofstream/is_open/N„3}std::locale::globalhttp://www.cplusplus.com/reference/locale/locale/global/j„Ostd::match_results::match_resultshttp://www.cplusplus.com/reference/regex/match_results/match_results/N„1std::codecvt_utf16http://www.cplusplus.com/reference/codecvt/codecvt_utf16/m„Qstd::bernoulli_distribution::paramhttp://www.cplusplus.com/reference/random/bernoulli_distribution/param/L„-std::max_elementhttp://www.cplusplus.com/reference/algorithm/max_element/l„Qstd::recursive_timed_mutex::unlockhttp://www.cplusplus.com/reference/mutex/recursive_timed_mutex/unlock/N„1std::ctype::~ctypehttp://www.cplusplus.com/reference/locale/ctype/%7Ectype/g„Kstd::time_get::do_get_monthnamehttp://www.cplusplus.com/reference/locale/time_get/do_get_monthname/}„a+std::promise::set_exception_at_thread_exithttp://www.cplusplus.com/reference/future/promise/set_exception_at_thread_exit/^„=std::const_mem_fun_ref_thttp://www.cplusplus.com/reference/functional/const_mem_fun_ref_t/M„ 5ystd::basic_ios::swaphttp://www.cplusplus.com/reference/ios/basic_ios/swap/<„ !kstd::stackhttp://www.cplusplus.com/reference/stack/stack/C„ 'sstd::ranlux24http://www.cplusplus.com/reference/random/ranlux24/{„ _)std::piecewise_constant_distribution::maxhttp://www.cplusplus.com/reference/random/piecewise_constant_distribution/max/N„ 3}std::ctype::toupperhttp://www.cplusplus.com/reference/locale/ctype/toupper/o„O!std::istream_iterator::operator->http://www.cplusplus.com/reference/iterator/istream_iterator/operator-%3E/D„#ystd::is_podhttp://www.cplusplus.com/reference/type_traits/is_pod/Q„=ystd::chrono::nanosecondshttp://www.cplusplus.com/reference/chrono/nanoseconds/9„mremquohttp://www.cplusplus.com/reference/cmath/remquo/a„Estd::moneypunct::do_groupinghttp://www.cplusplus.com/reference/locale/moneypunct/do_grouping/T„7std::fstream::is_openhttp://www.cplusplus.com/reference/fstream/fstream/is_open/9„oaborthttp://www.cplusplus.com/reference/cstdlib/abort/A„%qstd::isalnumhttp://www.cplusplus.com/reference/locale/isalnum/E„%ystd::bind1sthttp://www.cplusplus.com/reference/functional/bind1st/Fƒ'ystd::pop_heaphttp://www.cplusplus.com/reference/algorithm/pop_heap/^ƒ~;std::unordered_map::endhttp://www.cplusplus.com/reference/unordered_map/unordered_map/end/eƒ}Istd::gamma_distribution::resethttp://www.cplusplus.com/reference/random/gamma_distribution/reset/Zƒ|= std::static_pointer_casthttp://www.cplusplus.com/reference/memory/static_pointer_cast/rƒ{O'std::unordered_set::unordered_sethttp://www.cplusplus.com/reference/unordered_set/unordered_set/unordered_set/Lƒz1{std::ctype::narrowhttp://www.cplusplus.com/reference/locale/ctype/narrow/Bƒy#ustd::copy_nhttp://www.cplusplus.com/reference/algorithm/copy_n/ o ÐÌ}û·M“Kæ¥Tœ ÆS ¤ S ù ¾ l þ º ? ò ° C ×Ðø’@¿‡Fê(ö€Ô‰„7a1std::operator<< (chi_squared_distribution)http://www.cplusplus.com/reference/random/chi_squared_distribution/operator%3C%3C/N„%5{std::list::push_backhttp://www.cplusplus.com/reference/list/list/push_back/>„$svfprintfhttp://www.cplusplus.com/reference/cstdio/vfprintf/b„#Ustd::relational operators (multimap)http://www.cplusplus.com/reference/map/multimap/operators/E„"-qsize_t (cstdlib)http://www.cplusplus.com/reference/cstdlib/size_t/k„!Istd::operators (unordered_map)http://www.cplusplus.com/reference/unordered_map/unordered_map/operators/I„ 1ustd::map::max_sizehttp://www.cplusplus.com/reference/map/map/max_size/g„Ostd::is_error_code_enum (io_errc)http://www.cplusplus.com/reference/ios/io_errc/is_error_code_enum/A„%qstd::isupperhttp://www.cplusplus.com/reference/locale/isupper/„W9std::condition_variable_any::wait_forhttp://www.cplusplus.com/reference/condition_variable/condition_variable_any/wait_for/L„1{std::bitset::resethttp://www.cplusplus.com/reference/bitset/bitset/reset/q„Ustd::chi_squared_distribution::paramhttp://www.cplusplus.com/reference/random/chi_squared_distribution/param/O„:;wstd::chrono::time_pointhttp://www.cplusplus.com/reference/chrono/time_point/c„9Gstd::normal_distribution::minhttp://www.cplusplus.com/reference/random/normal_distribution/min/t„8W#std::basic_stringbuf::basic_stringbufhttp://www.cplusplus.com/reference/sstream/basic_stringbuf/basic_stringbuf/hi„6Gstd::error_condition::messagehttp://www.cplusplus.com/reference/system_error/error_condition/message/j„5Gstd::unordered_multiset::findhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/find/?„4'kstd::ios::eofhttp://www.cplusplus.com/reference/ios/ios/eof/J„3/ystd::vector::rendhttp://www.cplusplus.com/reference/vector/vector/rend/x„2U-std::unordered_multimap::equal_rangehttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/equal_range/A„1wtowctranshttp://www.cplusplus.com/reference/cwctype/towctrans/k„0Mstd::reverse_iterator::operator-http://www.cplusplus.com/reference/iterator/reverse_iterator/operator-/O„/3std::ifstream::swaphttp://www.cplusplus.com/reference/fstream/ifstream/swap/8„.mscanfhttp://www.cplusplus.com/reference/cstdio/scanf/W„-;std::numpunct::groupinghttp://www.cplusplus.com/reference/locale/numpunct/grouping/N„,1std::ostringstreamhttp://www.cplusplus.com/reference/sstream/ostringstream/j„+Kstd::regex_iterator::operator==http://www.cplusplus.com/reference/regex/regex_iterator/operator%3D%3D/?„*#ostd::stringhttp://www.cplusplus.com/reference/string/string/p„)Q!std::basic_filebuf::~basic_filebufhttp://www.cplusplus.com/reference/fstream/basic_filebuf/%7Ebasic_filebuf/D„('ustd::get_timehttp://www.cplusplus.com/reference/iomanip/get_time/ „'i?std::piecewise_constant_distribution::operatorhttp://www.cplusplus.com/reference/random/piecewise_constant_distribution/operator%28%29/a„&?std::valarray::operator[]http://www.cplusplus.com/reference/valarray/valarray/operator%5B%5D/ (+Gò‘S º k ü  Ò  G  ª M è ¶ @Û”Iç’(·iÇt0Ú_ ›+¼z+L„b-std::unique_copyhttp://www.cplusplus.com/reference/algorithm/unique_copy/?„auiswupperhttp://www.cplusplus.com/reference/cwctype/iswupper/l„`Ostd::basic_fstream::basic_fstreamhttp://www.cplusplus.com/reference/fstream/basic_fstream/basic_fstream/m„_Qstd::geometric_distribution::paramhttp://www.cplusplus.com/reference/random/geometric_distribution/param/o„^O!std::reverse_iterator::operator-=http://www.cplusplus.com/reference/iterator/reverse_iterator/operator-%3D/O„]7{std::set::upper_boundhttp://www.cplusplus.com/reference/set/set/upper_bound/x„\Y)std::operator<< (poisson_distribution)http://www.cplusplus.com/reference/random/poisson_distribution/operator%3C%3C/S„[7std::messages::do_gethttp://www.cplusplus.com/reference/locale/messages/do_get/A„Z)mstd::map::findhttp://www.cplusplus.com/reference/map/map/find/P„Y/std::unary_negatehttp://www.cplusplus.com/reference/functional/unary_negate/<„Xqisalnumhttp://www.cplusplus.com/reference/cctype/isalnum/`„WE std::regex_traits::translatehttp://www.cplusplus.com/reference/regex/regex_traits/translate/K„V3wstd::multiset::cendhttp://www.cplusplus.com/reference/set/multiset/cend/n„UK#std::unordered_multiset::inserthttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/insert/g„TKstd::numpunct::do_thousands_sephttp://www.cplusplus.com/reference/locale/numpunct/do_thousands_sep/R„S1std::mem_fun_ref_thttp://www.cplusplus.com/reference/functional/mem_fun_ref_t/_„R=std::forward_list::clearhttp://www.cplusplus.com/reference/forward_list/forward_list/clear/H„Q-wstd::unique_lockhttp://www.cplusplus.com/reference/mutex/unique_lock/D„P'ustd::iostreamhttp://www.cplusplus.com/reference/istream/iostream/b„OAstd::streambuf::~streambufhttp://www.cplusplus.com/reference/streambuf/streambuf/%7Estreambuf/s„NW!std::subtract_with_carry_engine::seedhttp://www.cplusplus.com/reference/random/subtract_with_carry_engine/seed//„M[http://www.cplusplus.com/reference/ios/b„LAstd::exception::~exceptionhttp://www.cplusplus.com/reference/exception/exception/%7Eexception/Z„KAstd::multiset::lower_boundhttp://www.cplusplus.com/reference/set/multiset/lower_bound/Y„J9 std::partial_sort_copyhttp://www.cplusplus.com/reference/algorithm/partial_sort_copy/>„I#mstd::ignorehttp://www.cplusplus.com/reference/tuple/ignore/5„Hahttp://www.cplusplus.com/reference/locale/P„G5std::ctype::scan_nothttp://www.cplusplus.com/reference/locale/ctype/scan_not/>„Fsfwprintfhttp://www.cplusplus.com/reference/cwchar/fwprintf/k„EOstd::moneypunct::do_negative_signhttp://www.cplusplus.com/reference/locale/moneypunct/do_negative_sign/x„DU-std::unordered_multimap::load_factorhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/load_factor/l„CMstd::basic_streambuf::pubseekoffhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/pubseekoff/L„B1{std::string::emptyhttp://www.cplusplus.com/reference/string/string/empty/Y„A7 std::hashhttp://www.cplusplus.com/reference/system_error/error_code/hash/:„@ofgetwchttp://www.cplusplus.com/reference/cwchar/fgetwc/;„?qstrcmphttp://www.cplusplus.com/reference/cstring/strcmp/^„>A std::basic_ifstream::closehttp://www.cplusplus.com/reference/fstream/basic_ifstream/close/R„=5std::swap (multiset)http://www.cplusplus.com/reference/set/multiset/swap-free/F„<-sstd::list::crendhttp://www.cplusplus.com/reference/list/list/crend/m„;Mstd::ostream_iterator::operator=http://www.cplusplus.com/reference/iterator/ostream_iterator/operator%3D/ ù%f ­ 5ðn!ºj¤Uõ‡'ëŒÑw*ßXžf_ ± Dô• ¶ °  ¼ Bcos (valarra±H„z5ostd::acos (valarray)http://www.cplusplus.com/reference/valarray/acos/U„}7std::valarray::cshifthttp://www.cplusplus.com/reference/valarray/valarray/cshift/S„|;std::basic_ios::copyfmthttp://www.cplusplus.com/reference/ios/basic_ios/copyfmt/<„{qungetwchttp://www.cplusplus.com/reference/cwchar/ungetwc/g„yEstd::is_nothrow_destructiblehttp://www.cplusplus.com/reference/type_traits/is_nothrow_destructible/M„x5ystd::basic_ios::movehttp://www.cplusplus.com/reference/ios/basic_ios/move/„w[=std::condition_variable_any::wait_untilhttp://www.cplusplus.com/reference/condition_variable/condition_variable_any/wait_until/H„v'}std::is_classhttp://www.cplusplus.com/reference/type_traits/is_class/J„u+}std::type_indexhttp://www.cplusplus.com/reference/typeindex/type_index/W„t5 std::swap (valarray)http://www.cplusplus.com/reference/valarray/valarray/swap-free/H„s){std::streambufhttp://www.cplusplus.com/reference/streambuf/streambuf/m„rMstd::reverse_iterator::operator*http://www.cplusplus.com/reference/iterator/reverse_iterator/operator%2A/\„qA std::recursive_mutex::lockhttp://www.cplusplus.com/reference/mutex/recursive_mutex/lock/9„pmllrinthttp://www.cplusplus.com/reference/cmath/llrint/]„oA std::numpunct::do_truenamehttp://www.cplusplus.com/reference/locale/numpunct/do_truename/k„nOstd::uniform_real_distribution::bhttp://www.cplusplus.com/reference/random/uniform_real_distribution/b/]„mOstd::relational operators (array)http://www.cplusplus.com/reference/array/array/operators/L„l1{std::time_get::gethttp://www.cplusplus.com/reference/locale/time_get/get/v„kQ-std::unordered_set::~unordered_sethttp://www.cplusplus.com/reference/unordered_set/unordered_set/%7Eunordered_set/J„j1wstd::list::crbeginhttp://www.cplusplus.com/reference/list/list/crbegin/M„i+ATOMIC_VAR_INIThttp://www.cplusplus.com/reference/atomic/ATOMIC_VAR_INIT/d„hGstd::exponential_distributionhttp://www.cplusplus.com/reference/random/exponential_distribution/J„g/ystd::hashhttp://www.cplusplus.com/reference/bitset/bitset/hash/„f_1std::reference_wrapper::reference_wrapperhttp://www.cplusplus.com/reference/functional/reference_wrapper/reference_wrapper/B„e5c (stdarg.h)http://www.cplusplus.com/reference/cstdarg/u„dY#std::promise::set_value_at_thread_exithttp://www.cplusplus.com/reference/future/promise/set_value_at_thread_exit/I„c/wstd::queue::fronthttp://www.cplusplus.com/reference/queue/queue/front/ G·…o?std::operator<< (piecewise_constant_distribution)http://www.cplusplus.com/reference/random/piecewise_constant_distribution/operator%3C%3C/w…W)std::discard_block_engine::operator()http://www.cplusplus.com/reference/random/discard_block_engine/operator%28%29/I…1uhttp://www.cplusplus.com/reference/initializer_list/<…qisdigithttp://www.cplusplus.com/reference/cctype/isdigit/o\…= std::iostream::~iostreamhttp://www.cplusplus.com/reference/istream/iostream/%7Eiostream/}…a+std::negative_binomial_distribution::paramhttp://www.cplusplus.com/reference/random/negative_binomial_distribution/param/\…A std::match_results::suffixhttp://www.cplusplus.com/reference/regex/match_results/suffix/M…5ystd::multimap::crendhttp://www.cplusplus.com/reference/map/multimap/crend/Y„; std::codecvt_utf8_utf16http://www.cplusplus.com/reference/codecvt/codecvt_utf8_utf16/]„~Istd::chrono::steady_clock::nowhttp://www.cplusplus.com/reference/chrono/steady_clock/now/ -dÅeû›L ´ : Û ‹ 0 Þ r , Ö \d ! ¬ Ÿm²l±v¯Gý˜4ÂsÌ:þ³q«D…;1kstd::tan (complex)http://www.cplusplus.com/reference/complex/tan/V…W7std::streambuf::egptrhttp://www.cplusplus.com/reference/streambuf/streambuf/egptr/j…VIstd::basic_ostream::operator<http://www.cplusplus.com/reference/set/x…?U-std::unordered_multiset::load_factorhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/load_factor/…>o?std::operator>> (piecewise_constant_distribution)http://www.cplusplus.com/reference/random/piecewise_constant_distribution/operator%3E%3E/r…=Wstd::recursive_mutex::recursive_mutexhttp://www.cplusplus.com/reference/mutex/recursive_mutex/recursive_mutex/8…<gstd::tiehttp://www.cplusplus.com/reference/tuple/tie/w…:[%std::piecewise_linear_distribution::maxhttp://www.cplusplus.com/reference/random/piecewise_linear_distribution/max/S…97std::promise::promisehttp://www.cplusplus.com/reference/future/promise/promise/C…8!ylocaleconvhttp://www.cplusplus.com/reference/clocale/localeconv/i…7Mstd::uniform_int_distribution::ahttp://www.cplusplus.com/reference/random/uniform_int_distribution/a/O…65}std::deque::max_sizehttp://www.cplusplus.com/reference/deque/deque/max_size/X…5=std::regex_traits::imbuehttp://www.cplusplus.com/reference/regex/regex_traits/imbue/M…4+std::false_typehttp://www.cplusplus.com/reference/type_traits/false_type/\…3? std::basic_iostream::swaphttp://www.cplusplus.com/reference/istream/basic_iostream/swap/w…2I7std::swap (unordered_multiset)http://www.cplusplus.com/reference/unordered_set/unordered_multiset/swap%28global%29/V…17std::streambuf::ebackhttp://www.cplusplus.com/reference/streambuf/streambuf/eback/<…0mstd::realhttp://www.cplusplus.com/reference/complex/real/L…/1{std::future::sharehttp://www.cplusplus.com/reference/future/future/share/]….;std::error_code::assignhttp://www.cplusplus.com/reference/system_error/error_code/assign/g…-Astd::initializer_list::endhttp://www.cplusplus.com/reference/initializer_list/initializer_list/end/]…,;std::forward_list::sorthttp://www.cplusplus.com/reference/forward_list/forward_list/sort/8…+mfwidehttp://www.cplusplus.com/reference/cwchar/fwide/ .ž¿c ÔO ÿ £ b  ° P  µ h  s 0 Ó b ÆUø°b¹sÖŠHü–O÷Œ$Ë:Ýzž~†_/std::operator>> (independent_bits_engine)http://www.cplusplus.com/reference/random/independent_bits_engine/operator%3E%3E/X†?std::basic_ios::set_rdbufhttp://www.cplusplus.com/reference/ios/basic_ios/set_rdbuf/`†Astd::basic_streambuf::synchttp://www.cplusplus.com/reference/streambuf/basic_streambuf/sync/Z†= std::basic_istream::peekhttp://www.cplusplus.com/reference/istream/basic_istream/peek/B†5c (assert.h)http://www.cplusplus.com/reference/cassert/I†1ustd::set::max_sizehttp://www.cplusplus.com/reference/set/set/max_size/V…C}std::chrono::duration::zerohttp://www.cplusplus.com/reference/chrono/duration/zero/e…~Istd::poisson_distribution::minhttp://www.cplusplus.com/reference/random/poisson_distribution/min/h…}Istd::basic_iostream::operator=http://www.cplusplus.com/reference/istream/basic_iostream/operator%3D/U…|3 std::is_convertiblehttp://www.cplusplus.com/reference/type_traits/is_convertible/D…{+qstd::list::backhttp://www.cplusplus.com/reference/list/list/back/c…zAstd::is_nothrow_assignablehttp://www.cplusplus.com/reference/type_traits/is_nothrow_assignable/I…y/wstd::deque::emptyhttp://www.cplusplus.com/reference/deque/deque/empty/?…xuRAND_MAXhttp://www.cplusplus.com/reference/cstdlib/RAND_MAX/I…w+{std::mask_arrayhttp://www.cplusplus.com/reference/valarray/mask_array/>…vsvwprintfhttp://www.cplusplus.com/reference/cwchar/vwprintf/Y…u9 std::swap (unique_ptr)http://www.cplusplus.com/reference/memory/unique_ptr/swap-free/C…t'sstd::time_gethttp://www.cplusplus.com/reference/locale/time_get/Z…s= std::basic_ostream::swaphttp://www.cplusplus.com/reference/ostream/basic_ostream/swap/I…r-ystd::atomic_flaghttp://www.cplusplus.com/reference/atomic/atomic_flag/K…q3wstd::multiset::sizehttp://www.cplusplus.com/reference/set/multiset/size/E…p-qstd::map::cbeginhttp://www.cplusplus.com/reference/map/map/cbegin/Z…o= std::istringstream::swaphttp://www.cplusplus.com/reference/sstream/istringstream/swap/n…nSstd::regex_traits::lookup_classnamehttp://www.cplusplus.com/reference/regex/regex_traits/lookup_classname/;…mqmbtowchttp://www.cplusplus.com/reference/cstdlib/mbtowc/[…l? std::basic_string::cbeginhttp://www.cplusplus.com/reference/string/basic_string/cbegin/n…kK#std::unordered_multiset::buckethttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/bucket/Z…j?std::tuple_elementhttp://www.cplusplus.com/reference/array/array/tuple_element/@…i!sstd::counthttp://www.cplusplus.com/reference/algorithm/count/ …ho7std::recursive_timed_mutex::recursive_timed_mutexhttp://www.cplusplus.com/reference/mutex/recursive_timed_mutex/recursive_timed_mutex/d…gGstd::atomic_flag_test_and_sethttp://www.cplusplus.com/reference/atomic/atomic_flag_test_and_set/J…f7qstd::move (algorithm)http://www.cplusplus.com/reference/algorithm/move/L…e/}std::codecvt_utf8http://www.cplusplus.com/reference/codecvt/codecvt_utf8/I…d5qstd::chrono::secondshttp://www.cplusplus.com/reference/chrono/seconds/]…c;std::is_copy_assignablehttp://www.cplusplus.com/reference/type_traits/is_copy_assignable/_…bAstd::allocator::~allocatorhttp://www.cplusplus.com/reference/memory/allocator/%7Eallocator/M…a3{std::queue::emplacehttp://www.cplusplus.com/reference/queue/queue/emplace/>…`qstd::copyhttp://www.cplusplus.com/reference/algorithm/copy/Y…_; std::promise::operator=http://www.cplusplus.com/reference/future/promise/operator%3D/M…^1}std::istream::readhttp://www.cplusplus.com/reference/istream/istream/read/;…]qwctombhttp://www.cplusplus.com/reference/cstdlib/wctomb/D…\1kstd::cos (complex)http://www.cplusplus.com/reference/complex/cos/I…[1ustd::set::key_comphttp://www.cplusplus.com/reference/set/set/key_comp/@…Z!sstd::mergehttp://www.cplusplus.com/reference/algorithm/merge/Y…Y=std::packaged_task::swaphttp://www.cplusplus.com/reference/future/packaged_task/swap/>…Xqstd::sorthttp://www.cplusplus.com/reference/algorithm/sort/ ,}b™ ß  ) ï} ‘ Z é ‰ C ÿ † 5 ¯ 6ΉLð“RüšUíšPú›]Ï{;ì˜>Îföv†W'std::operator<< (normal_distribution)http://www.cplusplus.com/reference/random/normal_distribution/operator%3C%3C/m†1Qstd::student_t_distribution::paramhttp://www.cplusplus.com/reference/random/student_t_distribution/param/e†0Q std::chrono::duration_values::zerohttp://www.cplusplus.com/reference/chrono/duration_values/zero/m†/Qstd::bernoulli_distribution::resethttp://www.cplusplus.com/reference/random/bernoulli_distribution/reset/W†.9std::type_info::beforehttp://www.cplusplus.com/reference/typeinfo/type_info/before/Q†-9}std::ios_base::seekdirhttp://www.cplusplus.com/reference/ios/ios_base/seekdir/L†,1{std::vector::fronthttp://www.cplusplus.com/reference/vector/vector/front/=†+qfegetenvhttp://www.cplusplus.com/reference/cfenv/fegetenv/Q†*1std::adjacent_findhttp://www.cplusplus.com/reference/algorithm/adjacent_find/G†)-ustd::queue::pushhttp://www.cplusplus.com/reference/queue/queue/push/A†(%qstd::wstringhttp://www.cplusplus.com/reference/string/wstring/;†'qmallochttp://www.cplusplus.com/reference/cstdlib/malloc/\†&? std::discard_block_enginehttp://www.cplusplus.com/reference/random/discard_block_engine/S†%7std::string::pop_backhttp://www.cplusplus.com/reference/string/string/pop_back/G†$-ustd::stack::pushhttp://www.cplusplus.com/reference/stack/stack/push/P†#5std::weak_ptr::resethttp://www.cplusplus.com/reference/memory/weak_ptr/reset/e†"Istd::geometric_distribution::phttp://www.cplusplus.com/reference/random/geometric_distribution/p/B†!)ostd::showpointhttp://www.cplusplus.com/reference/ios/showpoint/_† Kstd::chrono::duration::durationhttp://www.cplusplus.com/reference/chrono/duration/duration/S†;std::multimap::multimaphttp://www.cplusplus.com/reference/map/multimap/multimap/>†svswscanfhttp://www.cplusplus.com/reference/cwchar/vswscanf/Z†Astd::multiset::equal_rangehttp://www.cplusplus.com/reference/set/multiset/equal_range/Y†9 std::rethrow_exceptionhttp://www.cplusplus.com/reference/exception/rethrow_exception/:†otmpnamhttp://www.cplusplus.com/reference/cstdio/tmpnam/B†#ustd::minmaxhttp://www.cplusplus.com/reference/algorithm/minmax/e†Kstd::bidirectional_iterator_taghttp://www.cplusplus.com/reference/iterator/BidirectionalIterator/v†S+std::unordered_map::max_load_factorhttp://www.cplusplus.com/reference/unordered_map/unordered_map/max_load_factor/†_7std::unordered_multimap::max_bucket_counthttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/max_bucket_count/N†3}std::string::assignhttp://www.cplusplus.com/reference/string/string/assign/v†Y%std::atomic_flag_test_and_set_explicithttp://www.cplusplus.com/reference/atomic/atomic_flag_test_and_set_explicit/A†)mstd::map::sizehttp://www.cplusplus.com/reference/map/map/size/C†+ostd::ios::widenhttp://www.cplusplus.com/reference/ios/ios/widen/]†;std::system_error::codehttp://www.cplusplus.com/reference/system_error/system_error/code/n†K#std::unordered_map::load_factorhttp://www.cplusplus.com/reference/unordered_map/unordered_map/load_factor/4†![Containershttp://www.cplusplus.com/reference/stl/[†= std::piecewise_constructhttp://www.cplusplus.com/reference/utility/piecewise_construct/7† mitoahttp://www.cplusplus.com/reference/cstdlib/itoa/S† 7std::forward_as_tuplehttp://www.cplusplus.com/reference/tuple/forward_as_tuple/]† A std::allocator::deallocatehttp://www.cplusplus.com/reference/memory/allocator/deallocate/>† sclearerrhttp://www.cplusplus.com/reference/cstdio/clearerr/v† W'std::regex_token_iterator::operator++http://www.cplusplus.com/reference/regex/regex_token_iterator/operator%2B%2B/g†Gstd::basic_string::operator[]http://www.cplusplus.com/reference/string/basic_string/operator%5B%5D/\†A std::uses_allocatorhttp://www.cplusplus.com/reference/tuple/tuple/uses_allocator/†eastd::piecewise_constant_distribution::(ctor)http://www.cplusplus.com/reference/random/piecewise_constant_distribution/piecewise_constant_distribution/ +e”3Ý£i ß x  Û œ 4 ù ­ - ­ i  Ä _ «UÌoû޽`eý…Ùˆ8¶_þ†Dó †Pm9std::relational operators (weibull_distribution)http://www.cplusplus.com/reference/random/weibull_distribution/relational%20operators/N†\3}std::atomic::atomichttp://www.cplusplus.com/reference/atomic/atomic/atomic/?†['kNULL (cstdio)http://www.cplusplus.com/reference/cstdio/NULL/u†ZU'std::normal_distribution::operator()http://www.cplusplus.com/reference/random/normal_distribution/operator%28%29/^†YC std::getline (basic_string)http://www.cplusplus.com/reference/string/basic_string/getline/T†X7std::fstream::fstreamhttp://www.cplusplus.com/reference/fstream/fstream/fstream/†Wc-std::piecewise_constant_distribution::paramhttp://www.cplusplus.com/reference/random/piecewise_constant_distribution/param/M†V5ystd::ios_base::pwordhttp://www.cplusplus.com/reference/ios/ios_base/pword/N†U3}std::string::lengthhttp://www.cplusplus.com/reference/string/string/length/B†T%sstd::forwardhttp://www.cplusplus.com/reference/utility/forward/d†S;std::condition_variablehttp://www.cplusplus.com/reference/condition_variable/condition_variable/u†RS)std::error_condition::operator boolhttp://www.cplusplus.com/reference/system_error/error_condition/operator_bool/`†Q?std::swap (basic_filebuf)http://www.cplusplus.com/reference/fstream/basic_filebuf/swap-free/Z†O?std::regex_traits::lengthhttp://www.cplusplus.com/reference/regex/regex_traits/length/R†N3std::indirect_arrayhttp://www.cplusplus.com/reference/valarray/indirect_array/y†MY+std::discrete_distribution::operator()http://www.cplusplus.com/reference/random/discrete_distribution/operator%28%29/j†LGstd::unordered_multiset::sizehttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/size/q†KUstd::linear_congruential_engine::maxhttp://www.cplusplus.com/reference/random/linear_congruential_engine/max/Z†J?std::priority_queue::sizehttp://www.cplusplus.com/reference/queue/priority_queue/size/J†I/ystd::string::backhttp://www.cplusplus.com/reference/string/string/back/9†H!ehttp://www.cplusplus.com/reference/valarray/S†G1std::remove_extenthttp://www.cplusplus.com/reference/type_traits/remove_extent/V†F7std::streambuf::sputnhttp://www.cplusplus.com/reference/streambuf/streambuf/sputn/X†EEstd::chrono::time_point::minhttp://www.cplusplus.com/reference/chrono/time_point/min/b†D?std::unordered_map::clearhttp://www.cplusplus.com/reference/unordered_map/unordered_map/clear/?†Cuiswcntrlhttp://www.cplusplus.com/reference/cwctype/iswcntrl/`†B=std::unordered_map::cendhttp://www.cplusplus.com/reference/unordered_map/unordered_map/cend/A†A)mWEOF (cwctype)http://www.cplusplus.com/reference/cwctype/WEOF/}†@[1std::normal_distribution::(constructor)http://www.cplusplus.com/reference/random/normal_distribution/normal_distirbution/}†?]/std::independent_bits_engine::operator()http://www.cplusplus.com/reference/random/independent_bits_engine/operator%28%29/I†>-ystd::minstd_randhttp://www.cplusplus.com/reference/random/minstd_rand/8†=mwctobhttp://www.cplusplus.com/reference/cwchar/wctob/e†<Istd::char_traits::to_char_typehttp://www.cplusplus.com/reference/string/char_traits/to_char_type/<†;qTMP_MAXhttp://www.cplusplus.com/reference/cstdio/TMP_MAX/<†:qfwscanfhttp://www.cplusplus.com/reference/cwchar/fwscanf/[†9= std::time_put::~time_puthttp://www.cplusplus.com/reference/locale/time_put/%7Etime_put/d†8Gstd::uniform_int_distributionhttp://www.cplusplus.com/reference/random/uniform_int_distribution/†7c;std::unordered_multimap::unordered_multimaphttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/unordered_multimap/7†6mfreehttp://www.cplusplus.com/reference/cstdlib/free/7†5kfrexphttp://www.cplusplus.com/reference/cmath/frexp/S†47std::atomic::fetch_orhttp://www.cplusplus.com/reference/atomic/atomic/fetch_or/^†3=std::ostream::operator<http://www.cplusplus.com/reference/memory/<†w!kstd::queuehttp://www.cplusplus.com/reference/queue/queue/B†v5c (wctype.h)http://www.cplusplus.com/reference/cwctype/d†uAstd::unordered_set::cbeginhttp://www.cplusplus.com/reference/unordered_set/unordered_set/cbegin/J†t/ystd::string::findhttp://www.cplusplus.com/reference/string/string/find/O†s7{std::multiset::rbeginhttp://www.cplusplus.com/reference/set/multiset/rbegin/O†r3std::istream::ungethttp://www.cplusplus.com/reference/istream/istream/unget/^†q?std::exception::exceptionhttp://www.cplusplus.com/reference/exception/exception/exception/`†p?std::swap (istringstream)http://www.cplusplus.com/reference/sstream/istringstream/swap-free/e†oCstd::error_condition::clearhttp://www.cplusplus.com/reference/system_error/error_condition/clear/`†nAstd::swap (priority_queue)http://www.cplusplus.com/reference/queue/priority_queue/swap-free/g†mS std::chrono::time_point::time_pointhttp://www.cplusplus.com/reference/chrono/time_point/time_point/k†lIstd::forward_list::erase_afterhttp://www.cplusplus.com/reference/forward_list/forward_list/erase_after/K†k3wstd::multiset::findhttp://www.cplusplus.com/reference/set/multiset/find/?†j'kNULL (cwchar)http://www.cplusplus.com/reference/cwchar/NULL/?†i'khttp://www.cplusplus.com/reference/type_traits/U†h9std::vector::push_backhttp://www.cplusplus.com/reference/vector/vector/push_back/{†g[-std::student_t_distribution::operator()http://www.cplusplus.com/reference/random/student_t_distribution/operator%28%29/{†f[-std::bernoulli_distribution::operator()http://www.cplusplus.com/reference/random/bernoulli_distribution/operator%28%29/c†eGstd::string::find_last_not_ofhttp://www.cplusplus.com/reference/string/string/find_last_not_of/l†dOstd::basic_istream::basic_istreamhttp://www.cplusplus.com/reference/istream/basic_istream/basic_istream/|†cY1std::unordered_multimap::get_allocatorhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/get_allocator/W†b9std::promise::~promisehttp://www.cplusplus.com/reference/future/promise/%7Epromise/m†aQstd::lognormal_distribution::paramhttp://www.cplusplus.com/reference/random/lognormal_distribution/param/A†`wwctrans_thttp://www.cplusplus.com/reference/cwctype/wctrans_t/N†_5{std::list::pop_fronthttp://www.cplusplus.com/reference/list/list/pop_front/C†^#wFE_OVERFLOWhttp://www.cplusplus.com/reference/cfenv/FE_OVERFLOW/U†]7std::move_if_noexcepthttp://www.cplusplus.com/reference/utility/move_if_noexcept/ ’%ã%Óc¼`ó–8 ë n 5 Ô I Ï ‡ 5 Ð d ûã )Êb$Ø{ Âz5ÛbüNÜ!Õ³^^m}‡mstd::relational operators (poisson_distribution)http://www.cplusplus.com/reference/random/poisson_distribution/operators/m‡K!std::forward_list::insert_afterhttp://www.cplusplus.com/reference/forward_list/forward_list/insert_after/O‡-std::is_functionhttp://www.cplusplus.com/reference/type_traits/is_function/W‡5 std::is_null_pointerhttp://www.cplusplus.com/reference/type_traits/is_null_pointer/Z‡Astd::multimap::upper_boundhttp://www.cplusplus.com/reference/map/multimap/upper_bound/o‡(O!std::reverse_iterator::operator->http://www.cplusplus.com/reference/iterator/reverse_iterator/operator-%3E/<‡'qvfscanfhttp://www.cplusplus.com/reference/cstdio/vfscanf/l‡&Kstd::basic_streambuf::operator=http://www.cplusplus.com/reference/streambuf/basic_streambuf/operator%3D/c‡%M std::chrono::duration::~durationhttp://www.cplusplus.com/reference/chrono/duration/%7Eduration/v‡$W'std::regex_token_iterator::operator!=http://www.cplusplus.com/reference/regex/regex_token_iterator/operator%21%3D/W‡#Kwstd::relational operators (map)http://www.cplusplus.com/reference/map/map/operators/B‡")ostd::uppercasehttp://www.cplusplus.com/reference/ios/uppercase/E‡!%ystd::bit_andhttp://www.cplusplus.com/reference/functional/bit_and/[‡ ? std::allocator::allocatorhttp://www.cplusplus.com/reference/memory/allocator/allocator/X‡9 std::streambuf::setbufhttp://www.cplusplus.com/reference/streambuf/streambuf/setbuf/Z‡?std::priority_queue::pushhttp://www.cplusplus.com/reference/queue/priority_queue/push/I‡/wstd::array::beginhttp://www.cplusplus.com/reference/array/array/begin/;‡qstrcathttp://www.cplusplus.com/reference/cstring/strcat/e‡Istd::shuffle_order_engine::minhttp://www.cplusplus.com/reference/random/shuffle_order_engine/min/\‡? std::basic_istream::seekghttp://www.cplusplus.com/reference/istream/basic_istream/seekg/f‡Istd::basic_stringstream::rdbufhttp://www.cplusplus.com/reference/sstream/basic_stringstream/rdbuf/if‡Cstd::unordered_set::reservehttp://www.cplusplus.com/reference/unordered_set/unordered_set/reserve/i‡Y std::relational operators (shared_ptr)http://www.cplusplus.com/reference/memory/shared_ptr/operators/b‡Cstd::basic_streambuf::epptrhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/epptr/O‡-std::is_compoundhttp://www.cplusplus.com/reference/type_traits/is_compound/E‡-qstd::map::inserthttp://www.cplusplus.com/reference/map/map/insert/w‡W)std::poisson_distribution::operator()http://www.cplusplus.com/reference/random/poisson_distribution/operator%28%29/‡k5std::discard_block_engine::discard_block_enginehttp://www.cplusplus.com/reference/random/discard_block_engine/discard_block_engine/^‡A std::default_random_enginehttp://www.cplusplus.com/reference/random/default_random_engine/6‡kputshttp://www.cplusplus.com/reference/cstdio/puts/z‡_'std::recursive_timed_mutex::native_handlehttp://www.cplusplus.com/reference/mutex/recursive_timed_mutex/native_handle/J‡ )std::add_consthttp://www.cplusplus.com/reference/type_traits/add_const/[‡ Astd::operators (sub_match)http://www.cplusplus.com/reference/regex/sub_match/operators/Z‡ ?std::match_results::emptyhttp://www.cplusplus.com/reference/regex/match_results/empty/j‡ Kstd::basic_streambuf::underflowhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/underflow/Y‡ =std::char_traits::assignhttp://www.cplusplus.com/reference/string/char_traits/assign/A‡)mstd::set::cendhttp://www.cplusplus.com/reference/set/set/cend/ "’Âd¨n"£Qç’®Cù¼w ¤ J ô § J ù § i  Ç b  Ñ m 3ó™)ØBÜW1ò|R‡25std::ifstream::rdbufhttp://www.cplusplus.com/reference/fstream/ifstream/rdbuf/g‡1Kstd::binomial_distribution::minhttp://www.cplusplus.com/reference/random/binomial_distribution/min/O‡05}std::array::max_sizehttp://www.cplusplus.com/reference/array/array/max_size/|‡/]-std::operator>> (lognormal_distribution)http://www.cplusplus.com/reference/random/lognormal_distribution/operator%3E%3E/I‡.-ystd::atomic_inithttp://www.cplusplus.com/reference/atomic/atomic_init/7‡-mrandhttp://www.cplusplus.com/reference/cstdlib/rand/k‡,Ostd::fisher_f_distribution::resethttp://www.cplusplus.com/reference/random/fisher_f_distribution/reset/K‡++std::logical_orhttp://www.cplusplus.com/reference/functional/logical_or/[‡*= std::time_get::~time_gethttp://www.cplusplus.com/reference/locale/time_get/%7Etime_get/d‡)Astd::unordered_map::rehashhttp://www.cplusplus.com/reference/unordered_map/unordered_map/rehash/m‡JQstd::geometric_distribution::resethttp://www.cplusplus.com/reference/random/geometric_distribution/reset/W‡I7 std::set_intersectionhttp://www.cplusplus.com/reference/algorithm/set_intersection/=‡Hsmemmovehttp://www.cplusplus.com/reference/cstring/memmove/7‡Gkacoshhttp://www.cplusplus.com/reference/cmath/acosh/a‡F?std::add_rvalue_referencehttp://www.cplusplus.com/reference/type_traits/add_rvalue_reference/?‡E!qstd::wcloghttp://www.cplusplus.com/reference/iostream/wclog/L‡D1{std::time_put::puthttp://www.cplusplus.com/reference/locale/time_put/put/b‡C?std::unordered_set::emptyhttp://www.cplusplus.com/reference/unordered_set/unordered_set/empty/O‡B7{std::multimap::inserthttp://www.cplusplus.com/reference/map/multimap/insert/M‡A5ystd::multimap::beginhttp://www.cplusplus.com/reference/map/multimap/begin/;‡@qva_endhttp://www.cplusplus.com/reference/cstdarg/va_end/O‡?3std::pointer_safetyhttp://www.cplusplus.com/reference/memory/pointer_safety/N‡>+std::error_codehttp://www.cplusplus.com/reference/system_error/error_code/Z‡=Estd::chrono::duration_valueshttp://www.cplusplus.com/reference/chrono/duration_values/J‡<)std::true_typehttp://www.cplusplus.com/reference/type_traits/true_type/S‡;5std::thread::~threadhttp://www.cplusplus.com/reference/thread/thread/%7Ethread/W‡:7 std::invalid_argumenthttp://www.cplusplus.com/reference/stdexcept/invalid_argument/q‡9O%std::reverse_iterator::operator++http://www.cplusplus.com/reference/iterator/reverse_iterator/operator%2B%2B/\‡8? std::basic_stringbuf::strhttp://www.cplusplus.com/reference/sstream/basic_stringbuf/str/B‡7#ustd::all_ofhttp://www.cplusplus.com/reference/algorithm/all_of/:‡6oBUFSIZhttp://www.cplusplus.com/reference/cstdio/BUFSIZ/G‡5-ustd::queue::swaphttp://www.cplusplus.com/reference/queue/queue/swap/h‡4Kstd::basic_stringbuf::pbackfailhttp://www.cplusplus.com/reference/sstream/basic_stringbuf/pbackfail/O‡33std::ofstream::swaphttp://www.cplusplus.com/reference/fstream/ofstream/swap/ -tHít. ì | 0 Ì n ý ¯ w ? ÿ G  ¯ "Àq+ÕŒ-¿cÀJý„8ù¼\í•Qñ²Mÿ‡cw)std::relational operators (uniform_real_distribution)http://www.cplusplus.com/reference/random/uniform_real_distribution/operators/Kˆ 1ystd::mutex::unlockhttp://www.cplusplus.com/reference/mutex/mutex/unlock/bˆ Ustd::relational operators (multiset)http://www.cplusplus.com/reference/set/multiset/operators/<ˆ mstd::iotahttp://www.cplusplus.com/reference/numeric/iota/]ˆ A std::string::find_first_ofhttp://www.cplusplus.com/reference/string/string/find_first_of/Aˆ!uFE_DFL_ENVhttp://www.cplusplus.com/reference/cfenv/FE_DFL_ENV/UˆA}std::chrono::duration_casthttp://www.cplusplus.com/reference/chrono/duration_cast/lˆOstd::istringstream::istringstreamhttp://www.cplusplus.com/reference/sstream/istringstream/istringstream/]ˆA std::string::shrink_to_fithttp://www.cplusplus.com/reference/string/string/shrink_to_fit/:ˆoperrorhttp://www.cplusplus.com/reference/cstdio/perror/<ˆmstd::projhttp://www.cplusplus.com/reference/complex/proj/Iˆ+{std::bad_typeidhttp://www.cplusplus.com/reference/typeinfo/bad_typeid/vˆQ-std::unordered_map::~unordered_maphttp://www.cplusplus.com/reference/unordered_map/unordered_map/%7Eunordered_map/Jˆ/ystd::defer_lock_thttp://www.cplusplus.com/reference/mutex/defer_lock_t/s‡Q'std::is_nothrow_move_constructiblehttp://www.cplusplus.com/reference/type_traits/is_nothrow_move_constructible/E‡~'wstd::valarrayhttp://www.cplusplus.com/reference/valarray/valarray/X‡}=std::ios_base::~ios_basehttp://www.cplusplus.com/reference/ios/ios_base/%7Eios_base/Y‡|=std::promise::get_futurehttp://www.cplusplus.com/reference/future/promise/get_future/k‡{Ostd::shared_future::shared_futurehttp://www.cplusplus.com/reference/future/shared_future/shared_future/\‡zA std::regex_traits::isctypehttp://www.cplusplus.com/reference/regex/regex_traits/isctype/F‡y+ustd::csub_matchhttp://www.cplusplus.com/reference/regex/csub_match/S‡x;std::basic_ios::rdstatehttp://www.cplusplus.com/reference/ios/basic_ios/rdstate/C‡w%ustd::advancehttp://www.cplusplus.com/reference/iterator/advance/L‡v-std::min_elementhttp://www.cplusplus.com/reference/algorithm/min_element/_‡uC std::cauchy_distribution::bhttp://www.cplusplus.com/reference/random/cauchy_distribution/b/ ‡ti;std::piecewise_linear_distribution::operator()http://www.cplusplus.com/reference/random/piecewise_linear_distribution/operator%28%29/Q‡s1std::set_terminatehttp://www.cplusplus.com/reference/exception/set_terminate/A‡r%qstd::codecvthttp://www.cplusplus.com/reference/locale/codecvt/E‡q-qstd::set::inserthttp://www.cplusplus.com/reference/set/set/insert/m‡p?-std::swap (unordered_map)http://www.cplusplus.com/reference/unordered_map/unordered_map/swap%28global%29/=‡oqstd::refhttp://www.cplusplus.com/reference/functional/ref/5‡nifdimhttp://www.cplusplus.com/reference/cmath/fdim/5‡mkdivhttp://www.cplusplus.com/reference/cstdlib/div/K‡l1ystd::deque::resizehttp://www.cplusplus.com/reference/deque/deque/resize/n‡kM!std:: forward_list::before_beginhttp://www.cplusplus.com/reference/forward_list/forward_list/before_begin/[‡j; std::locale::operator==http://www.cplusplus.com/reference/locale/locale/operator%3D%3D/a‡iCstd::unique_ptr::operator->http://www.cplusplus.com/reference/memory/unique_ptr/operator-%3E/I‡h-ystd::get_deleterhttp://www.cplusplus.com/reference/memory/get_deleter/m‡gQstd::exponential_distribution::minhttp://www.cplusplus.com/reference/random/exponential_distribution/min/?‡fsstd::plushttp://www.cplusplus.com/reference/functional/plus/_‡eC std::wstring_convert::statehttp://www.cplusplus.com/reference/locale/wstring_convert/state/Z‡d; std::fstream::operator=http://www.cplusplus.com/reference/fstream/fstream/operator%3D/X‡b;std::uninitialized_copyhttp://www.cplusplus.com/reference/memory/uninitialized_copy/B‡a5c (stdint.h)http://www.cplusplus.com/reference/cstdint/p‡`Sstd::negative_binomial_distributionhttp://www.cplusplus.com/reference/random/negative_binomial_distribution/ Å(x˜,Æc ¼ t  µ _  ” * ¶ € $ à z *ò¨KÂr ÂV ¦Jåh Ÿx*ÈŒºvÅJˆ07qstd::log10 (valarray)http://www.cplusplus.com/reference/valarray/log10/Kyˆ4]'std::negative_binomial_distribution::minhttp://www.cplusplus.com/reference/random/negative_binomial_distribution/min/9ˆ3mislesshttp://www.cplusplus.com/reference/cmath/isless/_ˆ2C std::cauchy_distribution::ahttp://www.cplusplus.com/reference/random/cauchy_distribution/a/rˆ1S#std::basic_istringstream::operator=http://www.cplusplus.com/reference/sstream/basic_istringstream/operator%3D/kˆ/Istd::error_condition::categoryhttp://www.cplusplus.com/reference/system_error/error_condition/category/Xˆ.;std::basic_istream::gethttp://www.cplusplus.com/reference/istream/basic_istream/get/zˆ-W/std::unordered_multiset::emplace_hinthttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/emplace_hint/bˆ,Estd::basic_stringbuf::setbufhttp://www.cplusplus.com/reference/sstream/basic_stringbuf/setbuf/Yˆ+7 std::remove_referencehttp://www.cplusplus.com/reference/type_traits/remove_reference/aˆ*?std::forward_list::assignhttp://www.cplusplus.com/reference/forward_list/forward_list/assign/Iˆ)/wstd::deque::crendhttp://www.cplusplus.com/reference/deque/deque/crend/iˆ(Gstd::is_nothrow_constructiblehttp://www.cplusplus.com/reference/type_traits/is_nothrow_constructible/Fˆ'3mstd::log (valarray)http://www.cplusplus.com/reference/valarray/log/dˆ&Gstd::atomic_exchange_explicithttp://www.cplusplus.com/reference/atomic/atomic_exchange_explicit/Mˆ%1}std::allocator_arghttp://www.cplusplus.com/reference/memory/allocator_arg/Nˆ$1std::basic_filebufhttp://www.cplusplus.com/reference/fstream/basic_filebuf/5ˆ#icoshhttp://www.cplusplus.com/reference/cmath/cosh/Zˆ"Astd::basic_ios::exceptionshttp://www.cplusplus.com/reference/ios/basic_ios/exceptions/Gˆ!-ustd::deque::sizehttp://www.cplusplus.com/reference/deque/deque/size/5ˆ icbrthttp://www.cplusplus.com/reference/cmath/cbrt/Mˆ5ystd::multimap::counthttp://www.cplusplus.com/reference/map/multimap/count/cˆGstd::atomic_flag::atomic_flaghttp://www.cplusplus.com/reference/atomic/atomic_flag/atomic_flag/Aˆ%qstd::islowerhttp://www.cplusplus.com/reference/locale/islower/Yˆ9 std::rethrow_if_nestedhttp://www.cplusplus.com/reference/exception/rethrow_if_nested/3ˆ_http://www.cplusplus.com/reference/regex/qˆUstd::basic_string::find_first_not_ofhttp://www.cplusplus.com/reference/string/basic_string/find_first_not_of/gˆGstd::move_iterator::operator*http://www.cplusplus.com/reference/iterator/move_iterator/operator%2A/nˆQstd::match_results::~match_resultshttp://www.cplusplus.com/reference/regex/match_results/%7Ematch_results/Wˆ7 std::function::targethttp://www.cplusplus.com/reference/functional/function/target/Sˆ7std::time_get::do_gethttp://www.cplusplus.com/reference/locale/time_get/do_get/Yˆ=std::collate::do_comparehttp://www.cplusplus.com/reference/locale/collate/do_compare/`ˆCstd::lognormal_distributionhttp://www.cplusplus.com/reference/random/lognormal_distribution/Eˆ%ystd::divideshttp://www.cplusplus.com/reference/functional/divides/Aˆ#sstd::gslicehttp://www.cplusplus.com/reference/valarray/gslice/`ˆ?std::const_mem_fun1_ref_thttp://www.cplusplus.com/reference/functional/const_mem_fun1_ref_t/`ˆCstd::basic_filebuf::seekposhttp://www.cplusplus.com/reference/fstream/basic_filebuf/seekpos/cˆEstd::basic_streambuf::sbumpchttp://www.cplusplus.com/reference/streambuf/basic_streambuf/sbump/iˆGstd::is_default_constructiblehttp://www.cplusplus.com/reference/type_traits/is_default_constructible/eˆ Istd::moneypunct::decimal_pointhttp://www.cplusplus.com/reference/locale/moneypunct/decimal_point/ ¤(fä Fï½7ê‚â ß ” ' Ú t " è ’t À+f ; û ¥ J ¸_õ¶o-땾U:dÄZð¤¤;ˆI#gabs (cmath)http://www.cplusplus.com/reference/cmath/abs/ >Fˆ=3mstd::tan (valarray)http://www.cplusplus.com/reference/valarray/tan/FˆH3mstd::sinh (complex)http://www.cplusplus.com/reference/complex/sinh/xˆFY)std::operator<< (shuffle_order_engine)http://www.cplusplus.com/reference/random/shuffle_order_engine/operator%3C%3C/Tˆ85std::streambuf::gptrhttp://www.cplusplus.com/reference/streambuf/streambuf/gptr/Wˆ75 std::aligned_storagehttp://www.cplusplus.com/reference/type_traits/aligned_storage/Aˆ6)mNULL (cstdlib)http://www.cplusplus.com/reference/cstdlib/NULL/Sˆ5;std::multimap::max_sizehttp://www.cplusplus.com/reference/map/multimap/max_size/`ˆ\E std::priority_queue::emplacehttp://www.cplusplus.com/reference/queue/priority_queue/emplace/aˆ[I std::make_error_code (io_errc)http://www.cplusplus.com/reference/ios/io_errc/make_error_code/QˆZ1std::exception_ptrhttp://www.cplusplus.com/reference/exception/exception_ptr/fˆYGstd::ostringstream::operator=http://www.cplusplus.com/reference/sstream/ostringstream/operator%3D/\ˆX= std::streambuf::overflowhttp://www.cplusplus.com/reference/streambuf/streambuf/overflow/uˆWS)std::error_category::error_categoryhttp://www.cplusplus.com/reference/system_error/error_category/error_category/SˆV1std::aligned_unionhttp://www.cplusplus.com/reference/type_traits/aligned_union/?ˆUustrerrorhttp://www.cplusplus.com/reference/cstring/strerror/?ˆT#ostd::stoullhttp://www.cplusplus.com/reference/string/stoull/DˆS#ystd::add_cvhttp://www.cplusplus.com/reference/type_traits/add_cv/<ˆRqispuncthttp://www.cplusplus.com/reference/cctype/ispunct/gˆQKstd::basic_string::basic_stringhttp://www.cplusplus.com/reference/string/basic_string/basic_string/VˆP5 std::binary_functionhttp://www.cplusplus.com/reference/functional/binary_function/KˆO/{std::ctype_bynamehttp://www.cplusplus.com/reference/locale/ctype_byname/AˆN)mstd::set::sizehttp://www.cplusplus.com/reference/set/set/size/XˆM;std::get_pointer_safetyhttp://www.cplusplus.com/reference/memory/get_pointer_safety/SˆL3std::partition_copyhttp://www.cplusplus.com/reference/algorithm/partition_copy/=ˆKqdifftimehttp://www.cplusplus.com/reference/ctime/difftime/CˆJ#wfeupdateenvhttp://www.cplusplus.com/reference/cfenv/feupdateenv/ .?kˆGOstd::moneypunct::do_decimal_pointhttp://www.cplusplus.com/reference/locale/moneypunct/do_decimal_point/DdSˆE7std::codecvt::codecvthttp://www.cplusplus.com/reference/locale/codecvt/codecvt/7ˆDkatanhhttp://www.cplusplus.com/reference/cmath/atanh/OˆC3std::ifstream::openhttp://www.cplusplus.com/reference/fstream/ifstream/open/cˆBEstd::moneypunct::~moneypuncthttp://www.cplusplus.com/reference/locale/moneypunct/%7Emoneypunct/JˆA/ystd::regex_searchhttp://www.cplusplus.com/reference/regex/regex_search/jˆ@Wstd::atomic::operator (comp. assign.)http://www.cplusplus.com/reference/atomic/atomic/operatororequal/Hˆ?/ustd::list::splicehttp://www.cplusplus.com/reference/list/list/splice/bˆ>Cstd::basic_streambuf::ebackhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/eback/>eˆ<Istd::discard_block_engine::minhttp://www.cplusplus.com/reference/random/discard_block_engine/min/Jˆ;)std::is_signedhttp://www.cplusplus.com/reference/type_traits/is_signed/ˆ:_7std::unordered_multiset::max_bucket_counthttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/max_bucket_count/@ˆ9'mstd::multimaphttp://www.cplusplus.com/reference/map/multimap/ !›ñ~F š[ý»Q盎A߃( ž X î I  ¶ R  Ç Z ë › ^å1¥4芳?¦Iˆg1ustd::map::key_comphttp://www.cplusplus.com/reference/map/map/key_comp/gˆfKstd::cauchy_distribution::resethttp://www.cplusplus.com/reference/random/cauchy_distribution/reset/gˆeIstd::move_iterator::operator--http://www.cplusplus.com/reference/iterator/move_iterator/operator--/?ˆdsstd::not1http://www.cplusplus.com/reference/functional/not1/[ˆc= std::auto_ptr::operator=http://www.cplusplus.com/reference/memory/auto_ptr/operator%3D/<ˆbqwcstoulhttp://www.cplusplus.com/reference/cwchar/wcstoul/lˆaI!std::unordered_multimap::erasehttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/erase/:ˆ`owcstolhttp://www.cplusplus.com/reference/cwchar/wcstol/5ˆ_ilogbhttp://www.cplusplus.com/reference/cmath/logb/pˆ^I)std::operator- (move_iterator)http://www.cplusplus.com/reference/iterator/move_iterator/operator_minus-free/=ˆ]ostd::prevhttp://www.cplusplus.com/reference/iterator/prev/iˆ}C!std::initializer_list::sizehttp://www.cplusplus.com/reference/initializer_list/initializer_list/size/Eˆ|)ustd::to_stringhttp://www.cplusplus.com/reference/string/to_string/vˆ{W'std::basic_streambuf::basic_streambufhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/basic_streambuf/:ˆzofscanfhttp://www.cplusplus.com/reference/cstdio/fscanf/Mˆy5ystd::ios_base::imbuehttp://www.cplusplus.com/reference/ios/ios_base/imbue/lˆxI!std::unordered_multiset::erasehttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/erase/jˆwKstd::basic_streambuf::sputbackchttp://www.cplusplus.com/reference/streambuf/basic_streambuf/sputbackc/8ˆvistd::wshttp://www.cplusplus.com/reference/istream/ws/Mˆu/std::gslice_arrayhttp://www.cplusplus.com/reference/valarray/gslice_array/aˆt?std::forward_list::resizehttp://www.cplusplus.com/reference/forward_list/forward_list/resize/Hˆs/ustd::list::rbeginhttp://www.cplusplus.com/reference/list/list/rbegin/Eˆr)ustd::use_facethttp://www.cplusplus.com/reference/locale/use_facet/Cˆq'sstd::ranlux48http://www.cplusplus.com/reference/random/ranlux48/\ˆpA std::priority_queue::emptyhttp://www.cplusplus.com/reference/queue/priority_queue/empty/gˆoKstd::discard_block_engine::seedhttp://www.cplusplus.com/reference/random/discard_block_engine/seed/Cˆn+ohttp://www.cplusplus.com/reference/unordered_map/ˆma=std::student_t_distribution::(constructor)http://www.cplusplus.com/reference/random/student_t_distribution/student_t_distribution/Xˆl=std::match_results::swaphttp://www.cplusplus.com/reference/regex/match_results/swap/Yˆk=std::basic_string::fronthttp://www.cplusplus.com/reference/string/basic_string/front/_ˆj;std::unordered_multisethttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/Jˆi)std::enable_ifhttp://www.cplusplus.com/reference/type_traits/enable_if/oˆhK%std::error_condition::operator=http://www.cplusplus.com/reference/system_error/error_condition/operator%3D/ b'Ÿ¤GïŸG é • 4 ÔŸ  ” , ñ 9 Ñ q +é“¡7à'ÉŠ,lj<ø‹(¼z2׈"Ít‰1std::relational operators (piecewise_linear_distribution)http://www.cplusplus.com/reference/random/piecewise_linear_distribution/operators/E‰9+sstd::deque::endhttp://www.cplusplus.com/reference/deque/deque/end/?‰8uoffsetofhttp://www.cplusplus.com/reference/cstddef/offsetof/i‰7Mstd::basic_string::get_allocatorhttp://www.cplusplus.com/reference/string/basic_string/get_allocator/`‰6Cstd::student_t_distributionhttp://www.cplusplus.com/reference/random/student_t_distribution/j‰5?'std::realtional operatorshttp://www.cplusplus.com/reference/random/chi_squared_distribution/operators/A‰4%qstd::tolowerhttp://www.cplusplus.com/reference/locale/tolower/J‰3-{std::slice::sizehttp://www.cplusplus.com/reference/valarray/slice/size/;‰2qstrtolhttp://www.cplusplus.com/reference/cstdlib/strtol/b‰1?std::unordered_set::counthttp://www.cplusplus.com/reference/unordered_set/unordered_set/count/[‰0? std::regex_token_iteratorhttp://www.cplusplus.com/reference/regex/regex_token_iterator/<‰/#istd::skipwshttp://www.cplusplus.com/reference/ios/skipws/[‰.? std::ctype::classic_tablehttp://www.cplusplus.com/reference/locale/ctype/classic_table/f‰-Gstd::basic_streambuf::seekoffhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/seekoff/M‰,/std::swap (deque)http://www.cplusplus.com/reference/deque/deque/swap-free/T‰+5std::insert_iteratorhttp://www.cplusplus.com/reference/iterator/insert_iterator/g‰*Kstd::discrete_distribution::minhttp://www.cplusplus.com/reference/random/discrete_distribution/min/s‰)_std::chrono::time_point::time_since_epochhttp://www.cplusplus.com/reference/chrono/time_point/time_since_epoch/y‰([)std::istream_iterator::istream_iteratorhttp://www.cplusplus.com/reference/iterator/istream_iterator/istream_iterator/S‰'7std::collate::collatehttp://www.cplusplus.com/reference/locale/collate/collate/?‰&sFE_UPWARDhttp://www.cplusplus.com/reference/cfenv/FE_UPWARD/C‰%!ystd::flushhttp://www.cplusplus.com/reference/ostream/flush-free/]‰$;std::forward_list::swaphttp://www.cplusplus.com/reference/forward_list/forward_list/swap/e‰#Cstd::error_condition::valuehttp://www.cplusplus.com/reference/system_error/error_condition/value/S‰"3std::remove_copy_ifhttp://www.cplusplus.com/reference/algorithm/remove_copy_if/_‰!?std::swap (packaged_task)http://www.cplusplus.com/reference/future/packaged_task/swap-free/8‰ mfgetchttp://www.cplusplus.com/reference/cstdio/fgetc/e‰Istd::lognormal_distribution::shttp://www.cplusplus.com/reference/random/lognormal_distribution/s/j‰Ustd::chrono::treat_as_floating_pointhttp://www.cplusplus.com/reference/chrono/treat_as_floating_point/^‰A std::discrete_distributionhttp://www.cplusplus.com/reference/random/discrete_distribution/r]‰;std::system_error::whathttp://www.cplusplus.com/reference/system_error/system_error/what/^‰A std::basic_istream::ignorehttp://www.cplusplus.com/reference/istream/basic_istream/ignore/Q‰9}std::basic_ios::narrowhttp://www.cplusplus.com/reference/ios/basic_ios/narrow/[‰? std::basic_string::lengthhttp://www.cplusplus.com/reference/string/basic_string/length/U‰9std::char_traits::findhttp://www.cplusplus.com/reference/string/char_traits/find/M‰1}std::istream::synchttp://www.cplusplus.com/reference/istream/istream/sync/U‰5std::replace_copy_ifhttp://www.cplusplus.com/reference/algorithm/replace_copy_if/Z‰; std::ostream::operator=http://www.cplusplus.com/reference/ostream/ostream/operator%3D/Y‰9 std::current_exceptionhttp://www.cplusplus.com/reference/exception/current_exception/ ú(}Š;Õ€'Ê_Jí[$ Ò p # ä ¢ + Æ 1 ó ¡ H ü} ¨ c "Ñtøª¨ó’G͉5å“T©júúz‰R[+std::operator<< (fisher_f_distribution)http://www.cplusplus.com/reference/random/fisher_f_distribution/operator%3C%3C/DeF‰@3mstd::pow (valarray)http://www.cplusplus.com/reference/valarray/pow/|‰Z]-std::operator<< (student_t_distribution)http://www.cplusplus.com/reference/random/student_t_distribution/operator%3C%3C/V‰>7std::ostream_iteratorhttp://www.cplusplus.com/reference/iterator/ostream_iterator/R‰=5std::future_categoryhttp://www.cplusplus.com/reference/future/future_category/c‰<Gstd::gamma_distribution::betahttp://www.cplusplus.com/reference/random/gamma_distribution/beta/L‰;1{std::regex_replacehttp://www.cplusplus.com/reference/regex/regex_replace/X‰:9 std::streambuf::sbumpchttp://www.cplusplus.com/reference/streambuf/streambuf/sbumpc/M‰a1}std::istream::peekhttp://www.cplusplus.com/reference/istream/istream/peek/Q‰`9}std::multimap::emplacehttp://www.cplusplus.com/reference/map/multimap/emplace/A‰_!ufesetroundhttp://www.cplusplus.com/reference/cfenv/fesetround/w‰^W)std::shuffle_order_engine::operator()http://www.cplusplus.com/reference/random/shuffle_order_engine/operator%28%29/H‰]){std::partitionhttp://www.cplusplus.com/reference/algorithm/partition/^‰\A std::fisher_f_distributionhttp://www.cplusplus.com/reference/random/fisher_f_distribution/N‰[3}std::weak_ptr::swaphttp://www.cplusplus.com/reference/memory/weak_ptr/swap/ŒfK‰Y/{std::auto_ptr_refhttp://www.cplusplus.com/reference/memory/auto_ptr_ref/y‰X[)std::ostream_iterator::ostream_iteratorhttp://www.cplusplus.com/reference/iterator/ostream_iterator/ostream_iterator/Z‰W= std::normal_distributionhttp://www.cplusplus.com/reference/random/normal_distribution/N‰V1std::valarray::maxhttp://www.cplusplus.com/reference/valarray/valarray/max/>‰Usvsprintfhttp://www.cplusplus.com/reference/cstdio/vsprintf/B‰T%sstd::fstreamhttp://www.cplusplus.com/reference/fstream/fstream/Q‰S9}std::set::emplace_hinthttp://www.cplusplus.com/reference/set/set/emplace_hint/I‰Q1ustd::multimap::endhttp://www.cplusplus.com/reference/map/multimap/end/V‰P7std::type_index::namehttp://www.cplusplus.com/reference/typeindex/type_index/name/O‰O-ATOMIC_FLAG_INIThttp://www.cplusplus.com/reference/atomic/ATOMIC_FLAG_INIT/;‰Nkstd::stodhttp://www.cplusplus.com/reference/string/stod/\‰M? std::dynamic_pointer_casthttp://www.cplusplus.com/reference/memory/dynamic_pointer_cast/3‰LgNANhttp://www.cplusplus.com/reference/cmath/NAN/b‰KCstd::basic_streambuf::imbuehttp://www.cplusplus.com/reference/streambuf/basic_streambuf/imbue/t‰JQ)std::reference_wrapper::operator()http://www.cplusplus.com/reference/functional/reference_wrapper/operator_func/?‰Iuiswgraphhttp://www.cplusplus.com/reference/cwctype/iswgraph/<‰Hqvwscanfhttp://www.cplusplus.com/reference/cwchar/vwscanf/J‰G/ystd::regex_traitshttp://www.cplusplus.com/reference/regex/regex_traits/_‰FC std::wbuffer_convert::statehttp://www.cplusplus.com/reference/locale/wbuffer_convert/state/O‰E/std::partial_sorthttp://www.cplusplus.com/reference/algorithm/partial_sort/4‰DiEOFhttp://www.cplusplus.com/reference/cstdio/EOF/‰Cq=std::recursive_timed_mutex::~recursive_timed_mutexhttp://www.cplusplus.com/reference/mutex/recursive_timed_mutex/%7Erecursive_timed_mutex/Z‰B= std::basic_istream::readhttp://www.cplusplus.com/reference/istream/basic_istream/read/?‰Auwcstombshttp://www.cplusplus.com/reference/cstdlib/wcstombs/>3‰?gfmahttp://www.cplusplus.com/reference/cmath/fma/  "âÒŠ-ÔwÃvÙi´xâÍ‹# » t  Ú , ¡ ' Ê w › Né§TA“ÄBÝ‹"±SÚ‰ps%std::relational operators (mersenne_twister_engine)http://www.cplusplus.com/reference/random/mersenne_twister_engine/operators/m‰m]std::relational operators (basic_string)http://www.cplusplus.com/reference/string/basic_string/operators/<‰lqtoupperhttp://www.cplusplus.com/reference/cctype/toupper/[‰k; std::unexpected_handlerhttp://www.cplusplus.com/reference/exception/unexpected_handler/J‰j/ystd::string::rendhttp://www.cplusplus.com/reference/string/string/rend/<‰iqwcsncathttp://www.cplusplus.com/reference/cwchar/wcsncat/r‰hS#std::basic_ostringstream::operator=http://www.cplusplus.com/reference/sstream/basic_ostringstream/operator%3D/Z‰g= std::basic_filebuf::synchttp://www.cplusplus.com/reference/fstream/basic_filebuf/sync/V‰f7std::streambuf::sgetchttp://www.cplusplus.com/reference/streambuf/streambuf/sgetc/Z‰e; std::istream::operator=http://www.cplusplus.com/reference/istream/istream/operator%3D/E‰d'wstd::distancehttp://www.cplusplus.com/reference/iterator/distance/G‰c'{FE_TOWARDZEROhttp://www.cplusplus.com/reference/cfenv/FE_TOWARDZERO/5‰bahttp://www.cplusplus.com/reference/string/PŠ5std::shared_ptr::gethttp://www.cplusplus.com/reference/memory/shared_ptr/get/?Šuva_starthttp://www.cplusplus.com/reference/cstdarg/va_start/bŠCstd::type_index::type_indexhttp://www.cplusplus.com/reference/typeindex/type_index/type_index/JŠ/ystd::thread::swaphttp://www.cplusplus.com/reference/thread/thread/swap/n‰Ostd::nested_exception::nested_ptrhttp://www.cplusplus.com/reference/exception/nested_exception/nested_ptr/h‰~Estd::unordered_map::max_sizehttp://www.cplusplus.com/reference/unordered_map/unordered_map/max_size/P‰}5std::codecvt::do_outhttp://www.cplusplus.com/reference/locale/codecvt/do_out/Z‰|; std::streambuf::seekposhttp://www.cplusplus.com/reference/streambuf/streambuf/seekpos/w‰{Y'std::wstring_convert::~wstring_converthttp://www.cplusplus.com/reference/locale/wstring_convert/%7Ewstring_convert/‰zk5std::piecewise_constant_distribution::intervalshttp://www.cplusplus.com/reference/random/piecewise_constant_distribution/intervals/a‰yEstd::moneypunct::frac_digitshttp://www.cplusplus.com/reference/locale/moneypunct/frac_digits/G‰x+wstd::owner_lesshttp://www.cplusplus.com/reference/memory/owner_less/:‰wowscanfhttp://www.cplusplus.com/reference/cwchar/wscanf/Z‰v; std::filebuf::operator=http://www.cplusplus.com/reference/fstream/filebuf/operator%3D/D‰u%wstd::replacehttp://www.cplusplus.com/reference/algorithm/replace/e‰tGstd::packaged_task::operator=http://www.cplusplus.com/reference/future/packaged_task/operator%3D/e‰sIstd::discard_block_engine::maxhttp://www.cplusplus.com/reference/random/discard_block_engine/max/?‰rsHUGE_VALLhttp://www.cplusplus.com/reference/cmath/HUGE_VALL/<‰qqputcharhttp://www.cplusplus.com/reference/cstdio/putchar/l9‰o!ehttp://www.cplusplus.com/reference/iterator/I‰n/wstd::array::crendhttp://www.cplusplus.com/reference/array/array/crend/ -ž›7þG æ † + Ï j  À p  ¬ R  Ÿ >ðŠ=è€=ý­[ì—#ƃݒ\Ïz2LJ žhŠHEstd::is_error_condition_enumhttp://www.cplusplus.com/reference/system_error/is_error_condition_enum/{ŠG[-std::geometric_distribution::operator()http://www.cplusplus.com/reference/random/geometric_distribution/operator%28%29/=ŠFostd::cloghttp://www.cplusplus.com/reference/iostream/clog/hŠEKstd::extreme_value_distributionhttp://www.cplusplus.com/reference/random/extreme_value_distribution/EŠD-qstd::map::rbeginhttp://www.cplusplus.com/reference/map/map/rbegin/RŠC5std::filebuf::setbufhttp://www.cplusplus.com/reference/fstream/filebuf/setbuf/?ŠBuiswpuncthttp://www.cplusplus.com/reference/cwctype/iswpunct/HŠA-wstd::codecvt::inhttp://www.cplusplus.com/reference/locale/codecvt/in/3Š@_http://www.cplusplus.com/reference/tuple/HŠ?/ustd::list::uniquehttp://www.cplusplus.com/reference/list/list/unique/8Š>mfgetshttp://www.cplusplus.com/reference/cstdio/fgets/hŠ=Mstd::timed_mutex::try_lock_untilhttp://www.cplusplus.com/reference/mutex/timed_mutex/try_lock_until/@Š<umbstate_thttp://www.cplusplus.com/reference/cwchar/mbstate_t/ZŠ;?std::regex_traits::getlochttp://www.cplusplus.com/reference/regex/regex_traits/getloc/qŠ:Ustd::uniform_int_distribution::resethttp://www.cplusplus.com/reference/random/uniform_int_distribution/reset/RŠ95std::wstring_converthttp://www.cplusplus.com/reference/locale/wstring_convert/lŠ8Ostd::basic_filebuf::basic_filebufhttp://www.cplusplus.com/reference/fstream/basic_filebuf/basic_filebuf/OŠ73std::default_deletehttp://www.cplusplus.com/reference/memory/default_delete/MŠ63{std::set::operator=http://www.cplusplus.com/reference/set/set/operator%3D/=Š5qisfinitehttp://www.cplusplus.com/reference/cmath/isfinite/@Š4uwcsrtombshttp://www.cplusplus.com/reference/cwchar/wcsrtombs/eŠ3Istd::gamma_distribution::paramhttp://www.cplusplus.com/reference/random/gamma_distribution/param/RŠ25std::istream::gcounthttp://www.cplusplus.com/reference/istream/istream/gcount/JŠ1/ystd::bitset::nonehttp://www.cplusplus.com/reference/bitset/bitset/none/cŠ0Astd::is_copy_constructiblehttp://www.cplusplus.com/reference/type_traits/is_copy_constructible/KŠ/1ystd::deque::assignhttp://www.cplusplus.com/reference/deque/deque/assign/^Š.7std::initializer_listhttp://www.cplusplus.com/reference/initializer_list/initializer_list/mŠ-Qstd::independent_bits_engine::basehttp://www.cplusplus.com/reference/random/independent_bits_engine/base/@Š,%ostd::wsmatchhttp://www.cplusplus.com/reference/regex/wsmatch/WŠ+5 std::is_literal_typehttp://www.cplusplus.com/reference/type_traits/is_literal_type/TŠ*3std::swap (fstream)http://www.cplusplus.com/reference/fstream/fstream/swap-free/jŠ)Istd::basic_istream::operator>>http://www.cplusplus.com/reference/istream/basic_istream/operator%3E%3E/MŠ(1}std::packaged_taskhttp://www.cplusplus.com/reference/future/packaged_task/UŠ'9std::money_put::do_puthttp://www.cplusplus.com/reference/locale/money_put/do_put/OŠ&3std::pointer_traitshttp://www.cplusplus.com/reference/memory/pointer_traits/bŠ%Gstd::basic_regex::basic_regexhttp://www.cplusplus.com/reference/regex/basic_regex/basic_regex/YŠ$=std::basic_string::clearhttp://www.cplusplus.com/reference/string/basic_string/clear/XŠ#;std::gamma_distributionhttp://www.cplusplus.com/reference/random/gamma_distribution/]Š"A std::basic_string::replacehttp://www.cplusplus.com/reference/string/basic_string/replace/^Š!?std::operator<< (ostream)http://www.cplusplus.com/reference/ostream/ostream/operator-free/SŠ ?{std::chrono::millisecondshttp://www.cplusplus.com/reference/chrono/milliseconds/^Š=std::istream::operator>>http://www.cplusplus.com/reference/istream/istream/operator%3E%3E/6Šcstd::ioshttp://www.cplusplus.com/reference/ios/ios/aŠQstd::relational operators (vector)http://www.cplusplus.com/reference/vector/vector/operators/bŠ?std::unordered_set::beginhttp://www.cplusplus.com/reference/unordered_set/unordered_set/begin/ '$¼t:Üz% Ý ; Ç l « Æ `  Î g ©¥(Î ÂŽ8ùš8ð‰.Ï|$Íy0õ§½FŠr3mstd::cos (valarray)http://www.cplusplus.com/rUŠo9std::money_get::do_gethttp://www.cplusplus.com/reference/locale/money_get/do_get/PŠn5std::string::reservehttp://www.cplusplus.com/reference/string/string/reserve/\Šm? std::basic_fstream::closehttp://www.cplusplus.com/reference/fstream/basic_fstream/close/XŠl;std::iostream::iostreamhttp://www.cplusplus.com/reference/istream/iostream/iostream/dŠkGstd::chi_squared_distributionhttp://www.cplusplus.com/reference/random/chi_squared_distribution/EŠj%yfetestexcepthttp://www.cplusplus.com/reference/cfenv/fetestexcept/_Ši=std::is_rvalue_referencehttp://www.cplusplus.com/reference/type_traits/is_rvalue_reference/\ŠhA std::basic_ios::~basic_ioshttp://www.cplusplus.com/reference/ios/basic_ios/%7Ebasic_ios/<Šgqfsetposhttp://www.cplusplus.com/reference/cstdio/fsetpos/SŠf7std::bitset::to_ulonghttp://www.cplusplus.com/reference/bitset/bitset/to_ulong/1Še]http://www.cplusplus.com/reference/list/DŠd+qstd::scientifichttp://www.cplusplus.com/reference/ios/scientific/sŠcW!std::wbuffer_convert::wbuffer_converthttp://www.cplusplus.com/reference/locale/wbuffer_convert/wbuffer_convert/LŠb1{std::string::clearhttp://www.cplusplus.com/reference/string/string/clear/WŠa;std::collate::transformhttp://www.cplusplus.com/reference/locale/collate/transform/zŠ`[+std::operator<< (binomial_distribution)http://www.cplusplus.com/reference/random/binomial_distribution/operator%3C%3C/[Š_? std::atomic::is_lock_freehttp://www.cplusplus.com/reference/atomic/atomic/is_lock_free/"Š^Ostd::allocator_traits::select_on_container_copy_constructionhttp://www.cplusplus.com/reference/memory/allocator_traits/select_on_container_copy_construction/jŠ]Kstd::regex_iterator::operator!=http://www.cplusplus.com/reference/regex/regex_iterator/operator%21%3D/NŠ\3}std::string::rbeginhttp://www.cplusplus.com/reference/string/string/rbegin/dŠ[Astd::unordered_set::buckethttp://www.cplusplus.com/reference/unordered_set/unordered_set/bucket/EŠZ-qstd::set::rbeginhttp://www.cplusplus.com/reference/set/set/rbegin/GŠY+wstd::unique_ptrhttp://www.cplusplus.com/reference/memory/unique_ptr/cŠXGstd::binomial_distribution::thttp://www.cplusplus.com/reference/random/binomial_distribution/t/WŠW;std::basic_string::findhttp://www.cplusplus.com/reference/string/basic_string/find/ŠVk5std::piecewise_constant_distribution::densitieshttp://www.cplusplus.com/reference/random/piecewise_constant_distribution/densities/\ŠU? std::uninitialized_copy_nhttp://www.cplusplus.com/reference/memory/uninitialized_copy_n/_ŠTC std::codecvt::always_noconvhttp://www.cplusplus.com/reference/locale/codecvt/always_noconv/XŠS;std::operator+ (string)http://www.cplusplus.com/reference/string/string/operator%2B/qŠRO%std::reverse_iterator::operator+=http://www.cplusplus.com/reference/iterator/reverse_iterator/operator%2B%3D/OŠQ7{std::map::lower_boundhttp://www.cplusplus.com/reference/map/map/lower_bound/MŠP1}std::complex::imaghttp://www.cplusplus.com/reference/complex/complex/imag/EŠO%yFE_TONEARESThttp://www.cplusplus.com/reference/cfenv/FE_TONEAREST/RŠN9std::iostream_categoryhttp://www.cplusplus.com/reference/ios/iostream_category/_ŠM?std::type_index::operatorhttp://www.cplusplus.com/reference/typeindex/type_index/operators/[ŠL? std::shared_future::validhttp://www.cplusplus.com/reference/future/shared_future/valid/7ŠKkroundhttp://www.cplusplus.com/reference/cmath/round/EŠJ+sstd::array::endhttp://www.cplusplus.com/reference/array/array/end/AŠI%qstd::promisehttp://www.cplusplus.com/reference/future/promise/ é&m$ЇLþµ1ážF Î Œ  © : î ¯ B ø ž E ó ¦ l ¾Iòmy Ëp%Äiø{lщ,ééy‹ istd::relational operators (gamma_distribution)http://www.cplusplus.com/reference/random/gamma_distribution/operators/‡‹ q#std::relational operators (student_t_distribution)http://www.cplusplus.com/reference/random/student_t_distribution/operators/KŠt3wstd::multimap::findhttp://www.cplusplus.com/reference/map/multimap/find/8Šsmfopenhttp://www.cplusplus.com/reference/cstdio/fopen/FŠr3mstd::cos (valarray)http://www.cplusplus.com/reference/valarray/cos/QŠq9}std::ios_base::failurehttp://www.cplusplus.com/reference/ios/ios_base/failure/TŠp7std::istream::getlinehttp://www.cplusplus.com/reference/istream/istream/getline/z‹W/std::unordered_multiset::bucket_counthttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/bucket_count/n‹K#std::unordered_set::load_factorhttp://www.cplusplus.com/reference/unordered_set/unordered_set/load_factor/X‹=std::match_results::cendhttp://www.cplusplus.com/reference/regex/match_results/cend/^‹A std::basic_filebuf::setbufhttp://www.cplusplus.com/reference/fstream/basic_filebuf/setbuf/H‹-wstd::bitset::allhttp://www.cplusplus.com/reference/bitset/bitset/all/X‹=std::unique_lock::unlockhttp://www.cplusplus.com/reference/mutex/unique_lock/unlock/;‹oscalblnhttp://www.cplusplus.com/reference/cmath/scalbln/{‹S5std::condition_variable::notify_onehttp://www.cplusplus.com/reference/condition_variable/condition_variable/notify_one/kT‹ 7std::filebuf::filebufhttp://www.cplusplus.com/reference/fstream/filebuf/filebuf/r‹ U!std::regex_token_iterator::operator*http://www.cplusplus.com/reference/regex/regex_token_iterator/operator%2A/\‹ = std::ofstream::operator=http://www.cplusplus.com/reference/fstream/ofstream/operator%3D/L‹1{std::tuple_elementhttp://www.cplusplus.com/reference/tuple/tuple_element/7‹kctimehttp://www.cplusplus.com/reference/ctime/ctime/J‹/ystd::adopt_lock_thttp://www.cplusplus.com/reference/mutex/adopt_lock_t/O‹3std::end (valarray)http://www.cplusplus.com/reference/valarray/valarray/end/V‹5 std::const_mem_fun_thttp://www.cplusplus.com/reference/functional/const_mem_fun_t/W‹;std::numpunct::truenamehttp://www.cplusplus.com/reference/locale/numpunct/truename/G‹-ustd::mutex::lockhttp://www.cplusplus.com/reference/mutex/mutex/lock/j‹Kstd::basic_streambuf::showmanychttp://www.cplusplus.com/reference/streambuf/basic_streambuf/showmanyc/<‹qsetvbufhttp://www.cplusplus.com/reference/cstdio/setvbuf/IŠ/wstd::queue::queuehttp://www.cplusplus.com/reference/queue/queue/queue/lŠ~Ostd::basic_ostream::basic_ostreamhttp://www.cplusplus.com/reference/ostream/basic_ostream/basic_ostream/XŠ};std::ofstream::ofstreamhttp://www.cplusplus.com/reference/fstream/ofstream/ofstream/Š|g3std::basic_ostringstream::basic_ostringstreamhttp://www.cplusplus.com/reference/sstream/basic_ostringstream/basic_ostringstream/?Š{#ostd::vectorhttp://www.cplusplus.com/reference/vector/vector/uŠzY#std::extreme_value_distribution::resethttp://www.cplusplus.com/reference/random/extreme_value_distribution/reset/UŠy7std::valarray::resizehttp://www.cplusplus.com/reference/valarray/valarray/resize/@Šxuvfwprintfhttp://www.cplusplus.com/reference/cwchar/vfwprintf/MŠw3{std::deque::crbeginhttp://www.cplusplus.com/reference/deque/deque/crbegin/Šv]5std::weibull_distribution::(constructor)http://www.cplusplus.com/reference/random/weibull_distribution/weibull_distribution/HŠu/ustd::list::cbeginhttp://www.cplusplus.com/reference/list/list/cbegin/ ´#k>ãEÀ„4é¡DŒ9à˜ Ç d  Ð k Ï j " Ï r  ° m ,å“kã’)Ù›Qºk ´F‹83mstd::move (utility)http://www.cplusplus.com/reference/utility/move/M@‹!!sstd::equalhttp://www.cplusplus.com/reference/algorithm/equal/Z‹ ; std::swap (unique_lock)http://www.cplusplus.com/reference/mutex/unique_lock/swap-free/E‹9e (stdbool.h)http://www.cplusplus.com/reference/cstdbool/H‹+ystd::wstringbufhttp://www.cplusplus.com/reference/sstream/wstringbuf/M‹3{std::array::crbeginhttp://www.cplusplus.com/reference/array/array/crbegin/9‹osrandhttp://www.cplusplus.com/reference/cstdlib/srand/E‹)ustd::addressofhttp://www.cplusplus.com/reference/memory/addressof/:‹oungetchttp://www.cplusplus.com/reference/cstdio/ungetc/U‹1 std::unordered_maphttp://www.cplusplus.com/reference/unordered_map/unordered_map/C‹#wstd::negatehttp://www.cplusplus.com/reference/functional/negate/X‹;std::basic_ostream::puthttp://www.cplusplus.com/reference/ostream/basic_ostream/put/R‹5std::numpunct_bynamehttp://www.cplusplus.com/reference/locale/numpunct_byname/O‹77{std::basic_ios::clearhttp://www.cplusplus.com/reference/ios/basic_ios/clear/D‹6)sstd::once_flaghttp://www.cplusplus.com/reference/mutex/once_flag/>‹5%kstd::unitbufhttp://www.cplusplus.com/reference/ios/unitbuf/@‹4uvsnprintfhttp://www.cplusplus.com/reference/cstdio/vsnprintf/\‹3= std::operator>> (string)http://www.cplusplus.com/reference/string/string/operator%3E%3E/`‹2Astd::basic_streambuf::swaphttp://www.cplusplus.com/reference/streambuf/basic_streambuf/swap/Z‹1= std::stringstream::rdbufhttp://www.cplusplus.com/reference/sstream/stringstream/rdbuf/P‹05std::ratio_not_equalhttp://www.cplusplus.com/reference/ratio/ratio_not_equal/E‹/%ystd::greaterhttp://www.cplusplus.com/reference/functional/greater/b‹.?std::unordered_set::clearhttp://www.cplusplus.com/reference/unordered_set/unordered_set/clear/:‹-osetbufhttp://www.cplusplus.com/reference/cstdio/setbuf/\‹,? std::basic_istream::tellghttp://www.cplusplus.com/reference/istream/basic_istream/tellg/b‹+Estd::lock_guard::~lock_guardhttp://www.cplusplus.com/reference/mutex/lock_guard/%7Elock_guard/I‹*1ustd::ios::setstatehttp://www.cplusplus.com/reference/ios/ios/setstate/E‹))ustd::money_puthttp://www.cplusplus.com/reference/locale/money_put/`‹(E std::recursive_mutex::unlockhttp://www.cplusplus.com/reference/mutex/recursive_mutex/unlock/T‹'5std::iterator_traitshttp://www.cplusplus.com/reference/iterator/iterator_traits/w‹&[%std::piecewise_linear_distribution::minhttp://www.cplusplus.com/reference/random/piecewise_linear_distribution/min/E‹%%ystd::mem_funhttp://www.cplusplus.com/reference/functional/mem_fun/V‹$7std::streambuf::uflowhttp://www.cplusplus.com/reference/streambuf/streambuf/uflow/P‹#/std:: is_unsignedhttp://www.cplusplus.com/reference/type_traits/is_unsigned/q‹"Ustd::subtract_with_carry_engine::minhttp://www.cplusplus.com/reference/random/subtract_with_carry_engine/min/ ô)‡„=•$ Ê n # Û œ R  ½ n ÿ º O õ ’ 7ãžBÆ„?‡Ô€1íˆú¾~Èb´Aâ¥aôj‹jE!std::operator<< (error_code)http://www.cplusplus.com/reference/system_error/error_code/operator%3C%3C/KD‹p1kstd::sin (complex)http://www.cplusplus.com/reference/complex/sin/p‹xM%std::unordered_map::bucket_counthttp://www.cplusplus.com/reference/unordered_map/unordered_map/bucket_count/P‹w1std::move_iteratorhttp://www.cplusplus.com/reference/iterator/move_iterator/X‹v=std::match_results::sizehttp://www.cplusplus.com/reference/regex/match_results/size/c‹uGstd::char_traits::to_int_typehttp://www.cplusplus.com/reference/string/char_traits/to_int_type/9‹tmlgammahttp://www.cplusplus.com/reference/cmath/lgamma/w‹sO1std::condition_variable_any::waithttp://www.cplusplus.com/reference/condition_variable/condition_variable_any/wait/=‹rostd::couthttp://www.cplusplus.com/reference/iostream/cout/ ‹qcAstd::mersenne_twister_engine::(constructor)http://www.cplusplus.com/reference/random/mersenne_twister_engine/mersenne_twister_engine/=b‹oCstd::basic_streambuf::pbasehttp://www.cplusplus.com/reference/streambuf/basic_streambuf/pbase/A‹n)mstd::ios::goodhttp://www.cplusplus.com/reference/ios/ios/good/L‹m-std::remove_copyhttp://www.cplusplus.com/reference/algorithm/remove_copy/Q‹l9}std::map::emplace_hinthttp://www.cplusplus.com/reference/map/map/emplace_hint/h‹kKstd::basic_istringstream::rdbufhttp://www.cplusplus.com/reference/sstream/basic_istringstream/rdbuf/B‹i%sstd::complexhttp://www.cplusplus.com/reference/complex/complex/?‹h1a (errno.h)http://www.cplusplus.com/reference/cerrno/y‹gY+std::binomial_distribution::operator()http://www.cplusplus.com/reference/random/binomial_distribution/operator%28%29/Y‹f=std::basic_string::rfindhttp://www.cplusplus.com/reference/string/basic_string/rfind/B‹e!wstd::decayhttp://www.cplusplus.com/reference/type_traits/decay/Q‹d9}std::multimap::crbeginhttp://www.cplusplus.com/reference/map/multimap/crbegin/X‹cEstd::chrono::time_point::maxhttp://www.cplusplus.com/reference/chrono/time_point/max/`‹bCstd::basic_istream::getlinehttp://www.cplusplus.com/reference/istream/basic_istream/getline/W‹a;std::auto_ptr::auto_ptrhttp://www.cplusplus.com/reference/memory/auto_ptr/auto_ptr/h‹`Kstd::stringstream::stringstreamhttp://www.cplusplus.com/reference/sstream/stringstream/stringstream/B‹_5c (string.h)http://www.cplusplus.com/reference/cstring/l‹^Ostd::atomic_compare_exchange_weakhttp://www.cplusplus.com/reference/atomic/atomic_compare_exchange_weak/L‹]-std::equal_rangehttp://www.cplusplus.com/reference/algorithm/equal_range/F‹\-sstd::list::clearhttp://www.cplusplus.com/reference/list/list/clear/I‹[5qstd::chrono::minuteshttp://www.cplusplus.com/reference/chrono/minutes/G‹Z-ustd::array::sizehttp://www.cplusplus.com/reference/array/array/size/<‹Yqfgetposhttp://www.cplusplus.com/reference/cstdio/fgetpos/E‹X%ystd::bit_xorhttp://www.cplusplus.com/reference/functional/bit_xor/H‹W-wstd::future::gethttp://www.cplusplus.com/reference/future/future/get/Y‹V=std::basic_string::crendhttp://www.cplusplus.com/reference/string/basic_string/crend/W‹U;std::seed_seq::seed_seqhttp://www.cplusplus.com/reference/random/seed_seq/seed_seq/n‹TSstd::recursive_mutex::native_handlehttp://www.cplusplus.com/reference/mutex/recursive_mutex/native_handle/i‹SUstd::relational operators (function)http://www.cplusplus.com/reference/functional/function/operators/9‹Roraisehttp://www.cplusplus.com/reference/csignal/raise/D‹Q%wstd::copy_ifhttp://www.cplusplus.com/reference/algorithm/copy_if/y‹PW-std::is_nothrow_default_constructiblehttp://www.cplusplus.com/reference/type_traits/is_nothrow_default_constructible/ õ&qÙ•(±O· ˜ @ î ' ç y  Ì qq  Å *ÒyÀo'Æ‚Eì–7ÚuÞˆ0õõŒ a1std::operator>> (uniform_int_distribution)http://www.cplusplus.com/reference/random/uniform_int_distribution/operator%3E%3E/3j‹|Gstd::unordered_multimap::cendhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/cend/A‹{!ufpclassifyhttp://www.cplusplus.com/reference/cmath/fpclassify/:‹z!gstd::righthttp://www.cplusplus.com/reference/ios/right/\‹y= std::iostream::operator=http://www.cplusplus.com/reference/istream/iostream/operator%3D/bŒEstd::independent_bits_enginehttp://www.cplusplus.com/reference/random/independent_bits_engine/ZŒ?std::unique_lock::releasehttp://www.cplusplus.com/reference/mutex/unique_lock/release/\ŒA std::uses_allocatorhttp://www.cplusplus.com/reference/stack/stack/uses_allocator/SŒ7std::ratio_less_equalhttp://www.cplusplus.com/reference/ratio/ratio_less_equal/VŒ7std::streambuf::sputchttp://www.cplusplus.com/reference/streambuf/streambuf/sputc/:Œofclosehttp://www.cplusplus.com/reference/cstdio/fclose/AŒ%qstd::num_gethttp://www.cplusplus.com/reference/locale/num_get/^ŒA std::atomic_store_explicithttp://www.cplusplus.com/reference/atomic/atomic_store_explicit/EŒ%yfeholdexcepthttp://www.cplusplus.com/reference/cfenv/feholdexcept/NŒ3}std::ratio_multiplyhttp://www.cplusplus.com/reference/ratio/ratio_multiply/OŒ-std::add_pointerhttp://www.cplusplus.com/reference/type_traits/add_pointer/dŒAstd::unordered_map::cbeginhttp://www.cplusplus.com/reference/unordered_map/unordered_map/cbegin/VŒ9std::istream::readsomehttp://www.cplusplus.com/reference/istream/istream/readsome/UŒ5std::is_sorted_untilhttp://www.cplusplus.com/reference/algorithm/is_sorted_until/Œc]std::negative_binomial_distribution::(ctor)http://www.cplusplus.com/reference/random/negative_binomial_distribution/negative_binomial_distribution/PŒ5std::string::comparehttp://www.cplusplus.com/reference/string/string/compare/VŒ7std::streambuf::pbasehttp://www.cplusplus.com/reference/streambuf/streambuf/pbase/XŒ ?std::multiset::value_comphttp://www.cplusplus.com/reference/set/multiset/value_comp/6Œ kfeofhttp://www.cplusplus.com/reference/cstdio/feof/qŒ G-std::begin (initializer_list)http://www.cplusplus.com/reference/initializer_list/initializer_list/begin-free/kŒ Istd::move_iterator::operator[]http://www.cplusplus.com/reference/iterator/move_iterator/operator%5B%5D/=Œsreallochttp://www.cplusplus.com/reference/cstdlib/realloc/eŒIstd::moneypunct::thousands_sephttp://www.cplusplus.com/reference/locale/moneypunct/thousands_sep/\Œ? std::stringbuf::pbackfailhttp://www.cplusplus.com/reference/sstream/stringbuf/pbackfail/OŒ7{std::set::lower_boundhttp://www.cplusplus.com/reference/set/set/lower_bound/UŒ9std::shared_ptr::resethttp://www.cplusplus.com/reference/memory/shared_ptr/reset/Œc3std::operator>> (uniform_real_distribution)http://www.cplusplus.com/reference/random/uniform_real_distribution/operator%3E%3E/^ŒE std::multiset::get_allocatorhttp://www.cplusplus.com/reference/set/multiset/get_allocator/5Œahttp://www.cplusplus.com/reference/vector/KŒ/{std::bad_weak_ptrhttp://www.cplusplus.com/reference/memory/bad_weak_ptr/G‹/sstd::map::emplacehttp://www.cplusplus.com/reference/map/map/emplace/_‹~=std::forward_list::fronthttp://www.cplusplus.com/reference/forward_list/forward_list/front/L‹}/}std::slice::starthttp://www.cplusplus.com/reference/valarray/slice/start/ èo,Ötù¦=þ¨P¶`òoŽ Ê q 7 Ä X  › . Ø s 4 Ç w ,¬{-ОD©7ÓUèvŒ,W'std::operator>> (cauchy_distribution)http://www.cplusplus.com/reference/random/cauchy_distribution/operator%3E%3E/-8Œ(mfputchttp://www.cplusplus.com/reference/cstdio/fputc/UŒ'3 std::is_polymorphichttp://www.cplusplus.com/reference/type_traits/is_polymorphic/SŒ&3std::random_shufflehttp://www.cplusplus.com/reference/algorithm/random_shuffle/<Œ%qsprintfhttp://www.cplusplus.com/reference/cstdio/sprintf/fŒ$Cstd::unordered_set::emplacehttp://www.cplusplus.com/reference/unordered_set/unordered_set/emplace/PŒ#5std::unique_ptr::gethttp://www.cplusplus.com/reference/memory/unique_ptr/get/xŒ"U-std::unordered_multiset::bucket_sizehttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/bucket_size/_Œ!C std::weak_ptr::owner_beforehttp://www.cplusplus.com/reference/memory/weak_ptr/owner_before/SŒ 7std::string::capacityhttp://www.cplusplus.com/reference/string/string/capacity/}Œmstd::relational operators (discard_block_engine)http://www.cplusplus.com/reference/random/discard_block_engine/operators/}Œ=[1std::is_trivially_default_constructiblehttp://www.cplusplus.com/reference/type_traits/is_trivially_default_constructible/HŒ<'}std::is_arrayhttp://www.cplusplus.com/reference/type_traits/is_array/MŒ;+std::is_base_ofhttp://www.cplusplus.com/reference/type_traits/is_base_of/jŒ:Kstd::basic_streambuf::pbackfailhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/pbackfail/<Œ9mstd::setwhttp://www.cplusplus.com/reference/iomanip/setw/bŒ8Cstd::basic_streambuf::sputchttp://www.cplusplus.com/reference/streambuf/basic_streambuf/sputc/SŒ77std::collate::do_hashhttp://www.cplusplus.com/reference/locale/collate/do_hash/jŒ6Gstd::unordered_multimap::findhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/find/hŒ5Istd::basic_ofstream::operator=http://www.cplusplus.com/reference/fstream/basic_ofstream/operator%3D/OŒ4-std::conditionalhttp://www.cplusplus.com/reference/type_traits/conditional/iŒ3Ustd::chrono::system_clock::to_time_thttp://www.cplusplus.com/reference/chrono/system_clock/to_time_t/pŒ2Q!std::basic_stringstream::operator=http://www.cplusplus.com/reference/sstream/basic_stringstream/operator%3D/7Œ1khypothttp://www.cplusplus.com/reference/cmath/hypot/VŒ09std::stringstream::strhttp://www.cplusplus.com/reference/sstream/stringstream/str/NŒ/1std::valarray::minhttp://www.cplusplus.com/reference/valarray/valarray/min/pŒ.Sstd::basic_ofstream::basic_ofstreamhttp://www.cplusplus.com/reference/fstream/basic_ofstream/basic_ofstream/aŒ-;std::swap (basic_regex)http://www.cplusplus.com/reference/regex/basic_regex/swap%28global%29/kŒ+Ostd::random_device::random_devicehttp://www.cplusplus.com/reference/random/random_device/random_device/SŒ*5std::string::~stringhttp://www.cplusplus.com/reference/string/string/%7Estring/GŒ)'{std::functionhttp://www.cplusplus.com/reference/functional/function/ 0‘´gÝ} Á k , è ® Z  á " × š $ Ü ¢ >‘Ì_¾mÄ‚)ÛCþ¤:̃ü¨k)¯r#ØDŒi1kstd::exp (complex)http://www.cplusplus.com/reference/complex/exp/H/ustd::defaultfloathttp://www.cplusplus.com/reference/ios/defaultfloat/L/}std::slice::slicehttp://www.cplusplus.com/reference/valarray/slice/slice/:owcscmphttp://www.cplusplus.com/reference/cwchar/wcscmp/wŒY'std::wbuffer_convert::~wbuffer_converthttp://www.cplusplus.com/reference/locale/wbuffer_convert/%7Ewbuffer_convert/?Œ~'kstd::ios::ioshttp://www.cplusplus.com/reference/ios/ios/ios/:Œ}oferrorhttp://www.cplusplus.com/reference/cstdio/ferror/QŒ|3std::gslice::gslicehttp://www.cplusplus.com/reference/valarray/gslice/gslice/Œ{g1std::piecewise_linear_distribution::intervalshttp://www.cplusplus.com/reference/random/piecewise_linear_distribution/intervals/FŒz-sstd::noboolalphahttp://www.cplusplus.com/reference/ios/noboolalpha/kŒyKstd::default_delete::operator()http://www.cplusplus.com/reference/memory/default_delete/operator%28%29/gŒxIstd::unique_ptr::operator boolhttp://www.cplusplus.com/reference/memory/unique_ptr/operator%20bool/WŒw;std::messages::messageshttp://www.cplusplus.com/reference/locale/messages/messages/BŒv%sstd::setfillhttp://www.cplusplus.com/reference/iomanip/setfill/WŒu7 std::stable_partitionhttp://www.cplusplus.com/reference/algorithm/stable_partition/;Œtqsystemhttp://www.cplusplus.com/reference/cstdlib/system/KŒs-}std::slice_arrayhttp://www.cplusplus.com/reference/valarray/slice_array/VŒr7std::streambuf::epptrhttp://www.cplusplus.com/reference/streambuf/streambuf/epptr/?ŒqsHUGE_VALFhttp://www.cplusplus.com/reference/cmath/HUGE_VALF/OŒp3std::uses_allocatorhttp://www.cplusplus.com/reference/memory/uses_allocator/TŒo3std::swap (filebuf)http://www.cplusplus.com/reference/fstream/filebuf/swap-free/NŒn-std::logical_andhttp://www.cplusplus.com/reference/functional/logical_and/DŒm+qMulti-threadinghttp://www.cplusplus.com/reference/multithreading/WŒl;std::shared_ptr::uniquehttp://www.cplusplus.com/reference/memory/shared_ptr/unique/jŒkGstd::unordered_multimap::swaphttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/swap/oŒjSstd::default_delete::default_deletehttp://www.cplusplus.com/reference/memory/default_delete/default_delete/aŒhEstd::shared_future::wait_forhttp://www.cplusplus.com/reference/future/shared_future/wait_for/7Œgklog10http://www.cplusplus.com/reference/cmath/log10/EŒf%yFE_UNDERFLOWhttp://www.cplusplus.com/reference/cfenv/FE_UNDERFLOW/sŒeW!std::exponential_distribution::lambdahttp://www.cplusplus.com/reference/random/exponential_distribution/lambda/:Œdoremovehttp://www.cplusplus.com/reference/cstdio/remove/HŒc5ostd::cosh (valarray)http://www.cplusplus.com/reference/valarray/cosh/\Œb? std::basic_filebuf::closehttp://www.cplusplus.com/reference/fstream/basic_filebuf/close/]ŒaA std::time_get::do_get_yearhttp://www.cplusplus.com/reference/locale/time_get/do_get_year/9Œ`omblenhttp://www.cplusplus.com/reference/cstdlib/mblen/:Œ_ofgetwshttp://www.cplusplus.com/reference/cwchar/fgetws/QŒ^9}std::multiset::crbeginhttp://www.cplusplus.com/reference/set/multiset/crbegin/7Œ]kasinhhttp://www.cplusplus.com/reference/cmath/asinh/AŒ\)mNULL (clocale)http://www.cplusplus.com/reference/clocale/NULL/<Œ[qmbsinithttp://www.cplusplus.com/reference/cwchar/mbsinit/SŒZ7std::basic_string::athttp://www.cplusplus.com/reference/string/basic_string/at/RŒY1std::binary_negatehttp://www.cplusplus.com/reference/functional/binary_negate/dŒXO std::chrono::time_point operatorshttp://www.cplusplus.com/reference/chrono/time_point/operators/]ŒWOstd::relational operators (tuple)http://www.cplusplus.com/reference/tuple/tuple/operators/<ŒV!kstd::tuplehttp://www.cplusplus.com/reference/tuple/tuple/HŒU-wstd::try_to_lockhttp://www.cplusplus.com/reference/mutex/try_to_lock/JŒT/ystd::vectorhttp://www.cplusplus.com/reference/vector/vector-bool/IŒS-ystd::char_traitshttp://www.cplusplus.com/reference/string/char_traits/ å(dd¡(í’$ Á E Ô [  ¼ H é „ + Ù x 9þ—Wý«<Ú–OkàŽéà’R»q1ây,å~_/std::operator<< (independent_bits_engine)http://www.cplusplus.com/reference/random/independent_bits_engine/operator%3C%3C/$†{kstd::relational operators (normal_distribution)http://www.cplusplus.com/reference/random/normal_distribution/operators/$e5std::operator>> (extreme_value_distribution)http://www.cplusplus.com/reference/random/extreme_value_distribution/operator%3E%3E/G*+wstd::to_wstringhttp://www.cplusplus.com/reference/string/to_wstring/\)= std::streambuf::pubimbuehttp://www.cplusplus.com/reference/streambuf/streambuf/pubimbue/5(ahttp://www.cplusplus.com/reference/future/='sva_listhttp://www.cplusplus.com/reference/cstdarg/va_list/K&+fegetexceptflaghttp://www.cplusplus.com/reference/cfenv/fegetexceptflag/A%%qstd::ispuncthttp://www.cplusplus.com/reference/locale/ispunct/çjO#3std::numeric_limitshttp://www.cplusplus.com/reference/limits/numeric_limits/6"cstd::dechttp://www.cplusplus.com/reference/ios/dec/c!Gstd::fisher_f_distribution::mhttp://www.cplusplus.com/reference/random/fisher_f_distribution/m/e Istd::moneypunct::negative_signhttp://www.cplusplus.com/reference/locale/moneypunct/negative_sign/hD'ustd::ofstreamhttp://www.cplusplus.com/reference/fstream/ofstream/A)mstd::ios::inithttp://www.cplusplus.com/reference/ios/ios/init/_C std::shared_ptr::shared_ptrhttp://www.cplusplus.com/reference/memory/shared_ptr/shared_ptr/lI!std::unordered_multimap::emptyhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/empty/O3std::ostream::tellphttp://www.cplusplus.com/reference/ostream/ostream/tellp/W;std::basic_string::swaphttp://www.cplusplus.com/reference/string/basic_string/swap/=sva_copyhttp://www.cplusplus.com/reference/cstdarg/va_copy/dEstd::stringstream::operator=http://www.cplusplus.com/reference/sstream/stringstream/operator%3D/8mputwchttp://www.cplusplus.com/reference/cwchar/putwc/<qfprintfhttp://www.cplusplus.com/reference/cstdio/fprintf/^A std::basic_ofstream::rdbufhttp://www.cplusplus.com/reference/fstream/basic_ofstream/rdbuf/O5}std::deque::pop_backhttp://www.cplusplus.com/reference/deque/deque/pop_back/V;std::match_results::endhttp://www.cplusplus.com/reference/regex/match_results/end/bEstd::basic_ofstream::is_openhttp://www.cplusplus.com/reference/fstream/basic_ofstream/is_open/\? std::stringbuf::stringbufhttp://www.cplusplus.com/reference/sstream/stringbuf/stringbuf/qUstd::subtract_with_carry_engine::maxhttp://www.cplusplus.com/reference/random/subtract_with_carry_engine/max/O/std::replace_copyhttp://www.cplusplus.com/reference/algorithm/replace_copy/J /ystd::string::cendhttp://www.cplusplus.com/reference/string/string/cend/v W'std::nested_exception::rethrow_nestedhttp://www.cplusplus.com/reference/exception/nested_exception/rethrow_nested/n K#std::unordered_multiset::cbeginhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/cbegin/y c!std::relational operators (error_condition)http://www.cplusplus.com/reference/system_error/error_condition/operators/` =std::unordered_map::findhttp://www.cplusplus.com/reference/unordered_map/unordered_map/find/kOstd::binomial_distribution::paramhttp://www.cplusplus.com/reference/random/binomial_distribution/param/X9 std::ostream::~ostreamhttp://www.cplusplus.com/reference/ostream/ostream/%7Eostream/8estd::lefthttp://www.cplusplus.com/reference/ios/left/vQ-std::unordered_multimap::operator=http://www.cplusplus.com/reference/unordered_map/unordered_multimap/operator%3D/\A std::match_results::lengthhttp://www.cplusplus.com/reference/regex/match_results/length/ ž&=ÈÂY Åa%å’4 Î „  · K Á W ¢ M æ ­ \ =`¯<≠®t¡g\ÃqqCe5std::operator<< (linear_congruential_engine)http://www.cplusplus.com/reference/random/linear_congruential_engine/operator%3C%3C/D/+qstd::list::sorthttp://www.cplusplus.com/reference/list/list/sort/J./ystd::bitset::fliphttp://www.cplusplus.com/reference/bitset/bitset/flip/f-Istd::atomic_fetch_sub_explicithttp://www.cplusplus.com/reference/atomic/atomic_fetch_sub_explicit/L,1{std::vector::beginhttp://www.cplusplus.com/reference/vector/vector/begin/SP5std::basic_stringbufhttp://www.cplusplus.com/reference/sstream/basic_stringbuf/7Okclockhttp://www.cplusplus.com/reference/ctime/clock/lNG#std::unordered_set::operator=http://www.cplusplus.com/reference/unordered_set/unordered_set/operator%3D/aM?std::forward_list::cbeginhttp://www.cplusplus.com/reference/forward_list/forward_list/cbegin/7Lchttp://www.cplusplus.com/reference/fstream/ZK= std::stringbuf::overflowhttp://www.cplusplus.com/reference/sstream/stringbuf/overflow/{J_)std::discrete_distribution::probabilitieshttp://www.cplusplus.com/reference/random/discrete_distribution/probabilities/VI9std::float_round_stylehttp://www.cplusplus.com/reference/limits/float_round_style/WH;std::this_thread::yieldhttp://www.cplusplus.com/reference/thread/this_thread/yield/pGUstd::sub_match::operator string_typehttp://www.cplusplus.com/reference/regex/sub_match/operator_string_type/UF5std::underflow_errorhttp://www.cplusplus.com/reference/stdexcept/underflow_error/VE7std::streambuf::imbuehttp://www.cplusplus.com/reference/streambuf/streambuf/imbue/;D#ghttp://www.cplusplus.com/reference/algorithm/*=+qdouble_thttp://www.cplusplus.com/reference/cmath/double_t/QB1std::move_backwardhttp://www.cplusplus.com/reference/algorithm/move_backward/NA3}std::vector::assignhttp://www.cplusplus.com/reference/vector/vector/assign/6@kFILEhttp://www.cplusplus.com/reference/cstdio/FILE/d?Estd::basic_streambuf::xsputnhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/xsputn/R>5std::ofstream::closehttp://www.cplusplus.com/reference/fstream/ofstream/close/[=9std::forward_list::endhttp://www.cplusplus.com/reference/forward_list/forward_list/end/T<7std::tuple::operator=http://www.cplusplus.com/reference/tuple/tuple/operator%3D/g;Kstd::discrete_distribution::maxhttp://www.cplusplus.com/reference/random/discrete_distribution/max/:c;std::integral_constant::operator value_typehttp://www.cplusplus.com/reference/type_traits/integral_constant/operator%20value_type/i9Gstd::is_member_object_pointerhttp://www.cplusplus.com/reference/type_traits/is_member_object_pointer/W85 std::is_destructiblehttp://www.cplusplus.com/reference/type_traits/is_destructible/p7M%std::unordered_multiset::reservehttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/reserve/G6/sstd::map::crbeginhttp://www.cplusplus.com/reference/map/map/crbegin/c5Cstd::unique_ptr::operator[]http://www.cplusplus.com/reference/memory/unique_ptr/operator%5B%5D/[4= std::auto_ptr::operator*http://www.cplusplus.com/reference/memory/auto_ptr/operator%2A/P37}std::list::push_fronthttp://www.cplusplus.com/reference/list/list/push_front/=2sbsearchhttp://www.cplusplus.com/reference/cstdlib/bsearch/91mtgammahttp://www.cplusplus.com/reference/cmath/tgamma/0sUstd::condition_variable_any::condition_variable_anyhttp://www.cplusplus.com/reference/condition_variable/condition_variable_any/condition_variable_any/  ˜írò—O‰AðžvÍ„ ³ f ± E Ú˜  ° n  Ì ‡Þˆ>zÙn½yÎTÅn}fmstd::relational operators (shuffle_order_engine)http://www.cplusplus.com/reference/random/shuffle_order_engine/operators/mc3std::operator<< (uniform_real_distribution)http://www.cplusplus.com/reference/random/uniform_real_distribution/operator%3C%3C/OZ-std::is_volatilehttp://www.cplusplus.com/reference/type_traits/is_volatile/NY1std::basic_fstreamhttp://www.cplusplus.com/reference/fstream/basic_fstream/EX'wstd::iteratorhttp://www.cplusplus.com/reference/iterator/iterator/zWW/std::unordered_multimap::bucket_counthttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/bucket_count/FV+ustd::thread::idhttp://www.cplusplus.com/reference/thread/thread/id/EU-qstd::ios::narrowhttp://www.cplusplus.com/reference/ios/ios/narrow/XT;std::stringbuf::seekoffhttp://www.cplusplus.com/reference/sstream/stringbuf/seekoff/}S[1std::cauchy_distribution::(constructor)http://www.cplusplus.com/reference/random/cauchy_distribution/cauchy_distribution/xR]%std::recursive_timed_mutex::try_lock_forhttp://www.cplusplus.com/reference/mutex/recursive_timed_mutex/try_lock_for/NQ3}std::seed_seq::sizehttp://www.cplusplus.com/reference/random/seed_seq/size/Gp/sstd::set::emplacehttp://www.cplusplus.com/reference/set/set/emplace/So;std::ios_base::fmtflagshttp://www.cplusplus.com/reference/ios/ios_base/fmtflags/=nqHUGE_VALhttp://www.cplusplus.com/reference/cmath/HUGE_VAL/ qiBl%sstd::istreamhttp://www.cplusplus.com/reference/istream/istream/Lk-std::logic_errorhttp://www.cplusplus.com/reference/stdexcept/logic_error/Pj5std::string::replacehttp://www.cplusplus.com/reference/string/string/replace/?i'kstd::set::sethttp://www.cplusplus.com/reference/set/set/set/]h;std::is_standard_layouthttp://www.cplusplus.com/reference/type_traits/is_standard_layout/^g?std::streambuf::pbackfailhttp://www.cplusplus.com/reference/streambuf/streambuf/pbackfail/iheIstd::basic_streambuf::pubimbuehttp://www.cplusplus.com/reference/streambuf/basic_streambuf/pubimbue/idMstd::geometric_distribution::maxhttp://www.cplusplus.com/reference/random/geometric_distribution/max/Lc1{std::string::crendhttp://www.cplusplus.com/reference/string/string/crend/cbGstd::fisher_f_distribution::nhttp://www.cplusplus.com/reference/random/fisher_f_distribution/n/Ja/ystd::string::nposhttp://www.cplusplus.com/reference/string/string/npos/i`Mstd::normal_distribution::stddevhttp://www.cplusplus.com/reference/random/normal_distribution/stddev/b_?std::unordered_map::counthttp://www.cplusplus.com/reference/unordered_map/unordered_map/count/F^+ustd::ratio_lesshttp://www.cplusplus.com/reference/ratio/ratio_less/O]7{std::ios_base::unsetfhttp://www.cplusplus.com/reference/ios/ios_base/unsetf/T\7std::complex::complexhttp://www.cplusplus.com/reference/complex/complex/complex/[k3std::regex_token_iterator::regex_token_iteratorhttp://www.cplusplus.com/reference/regex/regex_token_iterator/regex_token_iterator/ -Œ¬Qÿ£a È v 9 ÷ ™ M  ¥ B ï n ª TùšŒTë“8ô°q ÀRéµQüz8x+ÑBŽ1gstruct tm (cwchar)http://www.cplusplus.com/reference/cwchar/tm/WŽ49std::atomic::operator=http://www.cplusplus.com/reference/atomic/atomic/operator%3D/JŽ3/ystd::num_get::gethttp://www.cplusplus.com/reference/locale/num_get/get/Ž2e5std::operator>> (subtract_with_carry_engine)http://www.cplusplus.com/reference/random/subtract_with_carry_engine/operator%3E%3E/5Ž1iatanhttp://www.cplusplus.com/reference/cmath/atan/?Ž01a (float.h)http://www.cplusplus.com/reference/cfloat/Ž/c-std::piecewise_constant_distribution::resethttp://www.cplusplus.com/reference/random/piecewise_constant_distribution/reset/RŽ.5std::atomic_exchangehttp://www.cplusplus.com/reference/atomic/atomic_exchange/aŽ-Estd::weibull_distribution::ahttp://www.cplusplus.com/reference/random/weibull_distribution/a/YŽ,=std::weak_ptr::use_counthttp://www.cplusplus.com/reference/memory/weak_ptr/use_count/kŽ+Istd::move_iterator::operator++http://www.cplusplus.com/reference/iterator/move_iterator/operator%2B%2B/gŽ*Kstd::fisher_f_distribution::minhttp://www.cplusplus.com/reference/random/fisher_f_distribution/min/fŽ)Istd::uniform_real_distributionhttp://www.cplusplus.com/reference/random/uniform_real_distribution/kŽ(Ostd::thread::hardware_concurrencyhttp://www.cplusplus.com/reference/thread/thread/hardware_concurrency/HŽ'-wstd::vector::endhttp://www.cplusplus.com/reference/vector/vector/end/cŽ&Gstd::binomial_distribution::phttp://www.cplusplus.com/reference/random/binomial_distribution/p/<Ž%ynanhttp://www.cplusplus.com/reference/cmath/nan-function/AŽ$wsetlocalehttp://www.cplusplus.com/reference/clocale/setlocale/AŽ#%qstd::isprinthttp://www.cplusplus.com/reference/locale/isprint/XŽ"9 std::streambuf::xsgetnhttp://www.cplusplus.com/reference/streambuf/streambuf/xsgetn/UŽ!9std::unique_ptr::resethttp://www.cplusplus.com/reference/memory/unique_ptr/reset/fŽ Istd::atomic_fetch_and_explicithttp://www.cplusplus.com/reference/atomic/atomic_fetch_and_explicit/CŽ'sstd::isxdigithttp://www.cplusplus.com/reference/locale/isxdigit/\ŽSystd::chrono::common_type (duration)http://www.cplusplus.com/reference/chrono/common_type/XŽ;std::filebuf::underflowhttp://www.cplusplus.com/reference/fstream/filebuf/underflow/SŽ5std::type_info::namehttp://www.cplusplus.com/reference/typeinfo/type_info/name/SŽ;std::multimap::key_comphttp://www.cplusplus.com/reference/map/multimap/key_comp/kŽIstd::operators (unordered_set)http://www.cplusplus.com/reference/unordered_set/unordered_set/operators/~Ža-std::atomic_compare_exchange_weak_explicithttp://www.cplusplus.com/reference/atomic/atomic_compare_exchange_weak_explicit/PŽ5std::locale::classichttp://www.cplusplus.com/reference/locale/locale/classic/`ŽAstd::basic_streambuf::pptrhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/pptr/fŽIstd::basic_stringbuf::overflowhttp://www.cplusplus.com/reference/sstream/basic_stringbuf/overflow/<Ž!kstd::arrayhttp://www.cplusplus.com/reference/array/array/IŽ/wstd::stack::stackhttp://www.cplusplus.com/reference/stack/stack/stack/[Ž; std::string::operator[]http://www.cplusplus.com/reference/string/string/operator%5B%5D/?Ž!qstd::wcouthttp://www.cplusplus.com/reference/iostream/wcout/:Žowcschrhttp://www.cplusplus.com/reference/cwchar/wcschr/OŽ3std::filebuf::uflowhttp://www.cplusplus.com/reference/fstream/filebuf/uflow/DŽ%wstd::shufflehttp://www.cplusplus.com/reference/algorithm/shuffle/OŽ 7{std::map::equal_rangehttp://www.cplusplus.com/reference/map/map/equal_range/?Ž sstd::not2http://www.cplusplus.com/reference/functional/not2/YŽ 9 std::terminate_handlerhttp://www.cplusplus.com/reference/exception/terminate_handler/OŽ 5}std::mutex::try_lockhttp://www.cplusplus.com/reference/mutex/mutex/try_lock/XŽ ;std::const_pointer_casthttp://www.cplusplus.com/reference/memory/const_pointer_cast/QŽ7std::deque::pop_fronthttp://www.cplusplus.com/reference/deque/deque/pop_front/ *º¬n¯q Ç ƒº Ì i  · { 3 à q - Å ` ½?¾JØžHÅk½SîšR¡Pƒ'ÍsŽ=3std::relational operators (negative_binomial_distribution)http://www.cplusplus.com/reference/random/negative_binomial_distribution/operators/NŽ^1std::inner_producthttp://www.cplusplus.com/reference/numeric/inner_product/\Ž]? std::uninitialized_fill_nhttp://www.cplusplus.com/reference/memory/uninitialized_fill_n/OŽ\7{std::map::upper_boundhttp://www.cplusplus.com/reference/map/map/upper_bound/EŽ[)ustd::u32stringhttp://www.cplusplus.com/reference/string/u32string/QŽZ9}std::multiset::emplacehttp://www.cplusplus.com/reference/set/multiset/emplace/bŽYEstd::basic_filebuf::overflowhttp://www.cplusplus.com/reference/fstream/basic_filebuf/overflow/gŽXKstd::wstring_convert::convertedhttp://www.cplusplus.com/reference/locale/wstring_convert/converted/QŽW1std::swap (vector)http://www.cplusplus.com/reference/vector/vector/swap-free/WŽV;std::basic_string::nposhttp://www.cplusplus.com/reference/string/basic_string/npos/WŽU;std::future::wait_untilhttp://www.cplusplus.com/reference/future/future/wait_until/<ŽTqswscanfhttp://www.cplusplus.com/reference/cwchar/swscanf/AŽS%qstd::isspacehttp://www.cplusplus.com/reference/locale/isspace/SŽR?{std::chrono::system_clockhttp://www.cplusplus.com/reference/chrono/system_clock/7ŽQkisinfhttp://www.cplusplus.com/reference/cmath/isinf/oŽPM#std::forward_list::get_allocatorhttp://www.cplusplus.com/reference/forward_list/forward_list/get_allocator/qŽOO%std::istream_iterator::operator++http://www.cplusplus.com/reference/iterator/istream_iterator/operator%2B%2B/DŽN+qstd::list::listhttp://www.cplusplus.com/reference/list/list/list/7ŽMmexithttp://www.cplusplus.com/reference/cstdlib/exit/=ŽLsjmp_bufhttp://www.cplusplus.com/reference/csetjmp/jmp_buf/;ŽKqmemsethttp://www.cplusplus.com/reference/cstring/memset/FŽJ%{std::is_voidhttp://www.cplusplus.com/reference/type_traits/is_void/WŽI;std::random_device::minhttp://www.cplusplus.com/reference/random/random_device/min/bŽHEstd::basic_istream::readsomehttp://www.cplusplus.com/reference/istream/basic_istream/readsome/eŽGCstd::has_virtual_destructorhttp://www.cplusplus.com/reference/type_traits/has_virtual_destructor/AŽF)mstd::set::swaphttp://www.cplusplus.com/reference/set/set/swap/lŽEI!std::unordered_multiset::counthttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/count/PŽD5std::char_traits::eqhttp://www.cplusplus.com/reference/string/char_traits/eq/EŽC-qstd::set::cbeginhttp://www.cplusplus.com/reference/set/set/cbegin/9ŽBgstd::listhttp://www.cplusplus.com/reference/list/list/YŽA=std::unique_ptr::releasehttp://www.cplusplus.com/reference/memory/unique_ptr/release/SŽ@5std::valarray::applyhttp://www.cplusplus.com/reference/valarray/valarray/apply/`Ž??std::swap (ostringstream)http://www.cplusplus.com/reference/sstream/ostringstream/swap-free/AŽ>%qstd::isgraphhttp://www.cplusplus.com/reference/locale/isgraph/sAŽ<%qstd::isdigithttp://www.cplusplus.com/reference/locale/isdigit/VŽ;;std::vector::fliphttp://www.cplusplus.com/reference/vector/vector-bool/flip/NŽ:3}std::locale::localehttp://www.cplusplus.com/reference/locale/locale/locale/;Ž9ofloat_thttp://www.cplusplus.com/reference/cmath/float_t/QŽ83std::basic_iostreamhttp://www.cplusplus.com/reference/istream/basic_iostream/hŽ7Istd::match_results::operator[]http://www.cplusplus.com/reference/regex/match_results/operator%5B%5D/;Ž6osignbithttp://www.cplusplus.com/reference/cmath/signbit/QŽ53std::valarray::swaphttp://www.cplusplus.com/reference/valarray/valarray/swap/ *]ù¬m·]¥Lú à Ž @  \  ¿ W  ‹ 0 ä œ Y ¸u(íŒ@ãx5ƆÔ|:…!ÏiiýWŽd;std::basic_string::sizehttp://www.cplusplus.com/reference/string/basic_string/size/WŽc;std::future_error::whathttp://www.cplusplus.com/reference/future/future_error/what/YŽb=std::codecvt::max_lengthhttp://www.cplusplus.com/reference/locale/codecvt/max_length/<Žaostd::minhttp://www.cplusplus.com/reference/algorithm/min/JŽ`/ystd::future::waithttp://www.cplusplus.com/reference/future/future/wait/>Ž_%kstd::nothrowhttp://www.cplusplus.com/reference/new/nothrow/?sstd::bindhttp://www.cplusplus.com/reference/functional/bind/U3 atomic_thread_fencehttp://www.cplusplus.com/reference/atomic/atomic_thread_fence/?snextafterhttp://www.cplusplus.com/reference/cmath/nextafter/mK!std::error_category::equivalenthttp://www.cplusplus.com/reference/system_error/error_category/equivalent/=!mstd::stollhttp://www.cplusplus.com/reference/string/stoll/lKstd::swap (basic_ostringstream)http://www.cplusplus.com/reference/sstream/basic_ostringstream/swap-free/@'mstd::ios_basehttp://www.cplusplus.com/reference/ios/ios_base/hMstd::recursive_timed_mutex::lockhttp://www.cplusplus.com/reference/mutex/recursive_timed_mutex/lock/Z?std::sub_match::sub_matchhttp://www.cplusplus.com/reference/regex/sub_match/sub_match/IŽ)}CLOCKS_PER_SEChttp://www.cplusplus.com/reference/ctime/CLOCKS_PER_SEC/^Ž~?std::streambuf::showmanychttp://www.cplusplus.com/reference/streambuf/streambuf/showmanyc/8Ž}mbtowchttp://www.cplusplus.com/reference/cwchar/btowc/JŽ|/ystd::ctype::do_ishttp://www.cplusplus.com/reference/locale/ctype/do_is/@Ž{uWCHAR_MAXhttp://www.cplusplus.com/reference/cwchar/WCHAR_MAX/RŽz5std::messages_bynamehttp://www.cplusplus.com/reference/locale/messages_byname/IŽy)}isgreaterequalhttp://www.cplusplus.com/reference/cmath/isgreaterequal/@Žx%ostruct lconvhttp://www.cplusplus.com/reference/clocale/lconv/EŽw'wstd::bad_casthttp://www.cplusplus.com/reference/typeinfo/bad_cast/IŽv)}std::binder2ndhttp://www.cplusplus.com/reference/functional/binder2nd/XŽu9 std::filebuf::~filebufhttp://www.cplusplus.com/reference/fstream/filebuf/%7Efilebuf/zŽtY-std::gamma_distribution::(constructor)http://www.cplusplus.com/reference/random/gamma_distribution/gamma_distribution/LŽs1{std::string::c_strhttp://www.cplusplus.com/reference/string/string/c_str/eŽrIstd::weibull_distribution::maxhttp://www.cplusplus.com/reference/random/weibull_distribution/max/MŽq5ystd::map::value_comphttp://www.cplusplus.com/reference/map/map/value_comp/JŽp-{std::setiosflagshttp://www.cplusplus.com/reference/iomanip/setiosflags/>Žo#mstd::wregexhttp://www.cplusplus.com/reference/regex/wregex/fŽnIstd::basic_ostringstream::swaphttp://www.cplusplus.com/reference/sstream/basic_ostringstream/swap/7Žmmatoihttp://www.cplusplus.com/reference/cstdlib/atoi/KŽl/{std::istream::gethttp://www.cplusplus.com/reference/istream/istream/get/OŽk7{std::ios_base::getlochttp://www.cplusplus.com/reference/ios/ios_base/getloc/=Žj!mstd::asynchttp://www.cplusplus.com/reference/future/async/lŽiKstd::pointer_to_binary_functionhttp://www.cplusplus.com/reference/functional/pointer_to_binary_function/hŽhIstd::basic_streambuf::in_availhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/in_avail/OŽg7{std::basic_ios::imbuehttp://www.cplusplus.com/reference/ios/basic_ios/imbue/VŽf9std::declare_reachablehttp://www.cplusplus.com/reference/memory/declare_reachable/XŽe;std::stringstream::swaphttp://www.cplusplus.com/reference/sstream/stringstream/swap/ û!´\×gÅf°J®>Ó}4 Î d ß ‚  Ý ‹ ‹ 5 Ë … :Å%<æsÐ:ш7óŒF&3mstd::tanh (complex)http://www.cplusplus.com/reference/complex/tanh/cEstd::unique_ptr::~unique_ptrhttp://www.cplusplus.com/reference/memory/unique_ptr/%7Eunique_ptr/O3std::filebuf::imbuehttp://www.cplusplus.com/reference/fstream/filebuf/imbue/aEstd::moneypunct::curr_symbolhttp://www.cplusplus.com/reference/locale/moneypunct/curr_symbol/\= std::streambuf::in_availhttp://www.cplusplus.com/reference/streambuf/streambuf/in_avail/V9std::atomic_flag_clearhttp://www.cplusplus.com/reference/atomic/atomic_flag_clear/F3mstd::cosh (complex)http://www.cplusplus.com/reference/complex/cosh/m C)std::end (initializer_list)http://www.cplusplus.com/reference/initializer_list/initializer_list/end-free/8 mfputshttp://www.cplusplus.com/reference/cstdio/fputs/G +wstd::pair::swaphttp://www.cplusplus.com/reference/utility/pair/swap/U ;std::input_iterator_taghttp://www.cplusplus.com/reference/iterator/InputIterator/n Sstd::priority_queue::priority_queuehttp://www.cplusplus.com/reference/queue/priority_queue/priority_queue/W);std::basic_string::datahttp://www.cplusplus.com/reference/string/basic_string/data/C(+ostd::ios::clearhttp://www.cplusplus.com/reference/ios/ios/clear/3'gcoshttp://www.cplusplus.com/reference/cmath/cos/?H%-wstd::wcsub_matchhttp://www.cplusplus.com/reference/regex/wcsub_match/C$+ostd::map::beginhttp://www.cplusplus.com/reference/map/map/begin/g#Estd::error_category::messagehttp://www.cplusplus.com/reference/system_error/error_category/message/S"7std::string::max_sizehttp://www.cplusplus.com/reference/string/string/max_size/!_1std::chi_squared_distribution::operator()http://www.cplusplus.com/reference/random/chi_squared_distribution/operator%28%29/{ _)std::piecewise_constant_distribution::minhttp://www.cplusplus.com/reference/random/piecewise_constant_distribution/min/O3std::istream::seekghttp://www.cplusplus.com/reference/istream/istream/seekg/?uiswlowerhttp://www.cplusplus.com/reference/cwctype/iswlower/`E std::basic_regex::mark_counthttp://www.cplusplus.com/reference/regex/basic_regex/mark_count/Z= std::ostringstream::swaphttp://www.cplusplus.com/reference/sstream/ostringstream/swap/[9std::initializer_list::initializer_listhttp://www.cplusplus.com/reference/initializer_list/initializer_list/initializer_list/gKstd::allocator_traits::allocatehttp://www.cplusplus.com/reference/memory/allocator_traits/allocate/cGstd::shared_ptr::owner_beforehttp://www.cplusplus.com/reference/memory/shared_ptr/owner_before/F-sstd::list::erasehttp://www.cplusplus.com/reference/list/list/erase/S7std::locale::categoryhttp://www.cplusplus.com/reference/locale/locale/category/hIstd::packaged_task::operator()http://www.cplusplus.com/reference/future/packaged_task/operator_func/mYstd::chrono::system_clock::from_time_thttp://www.cplusplus.com/reference/chrono/system_clock/from_time_t/O3std::ostream::seekphttp://www.cplusplus.com/reference/ostream/ostream/seekp/ å(œºFù±` » O Ó a ð + ß j œ ¬ R °_ÔŽCÆ|×y(ÞVøSÝ{µZåFP3mstd::acos (complex)http://www.cplusplus.com/reference/complex/acos/–_gC std::moneypunct::neg_formathttp://www.cplusplus.com/reference/locale/moneypunct/neg_format/5fiacoshttp://www.cplusplus.com/reference/cmath/acos/;eqstrchrhttp://www.cplusplus.com/reference/cstring/strchr/7dkexpm1http://www.cplusplus.com/reference/cmath/expm1/hcIstd::operator>> (basic_string)http://www.cplusplus.com/reference/string/basic_string/operator%3E%3E/[b9std::integral_constanthttp://www.cplusplus.com/reference/type_traits/integral_constant/ag3std::basic_istringstream::basic_istringstreamhttp://www.cplusplus.com/reference/sstream/basic_istringstream/basic_istringstream/G`)ystd::type_infohttp://www.cplusplus.com/reference/typeinfo/type_info/N_3}std::ios::operator!http://www.cplusplus.com/reference/ios/ios/operator_not/[^9std::error_code::clearhttp://www.cplusplus.com/reference/system_error/error_code/clear/D]+qstd::list::cendhttp://www.cplusplus.com/reference/list/list/cend/[\= std::basic_ostringstreamhttp://www.cplusplus.com/reference/sstream/basic_ostringstream/G[%}EXIT_FAILUREhttp://www.cplusplus.com/reference/cstdlib/EXIT_FAILURE/zZY-std::basic_streambuf::~basic_streambufhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/%7Ebasic_streambuf/HY){std::is_sortedhttp://www.cplusplus.com/reference/algorithm/is_sorted/CX+ostd::set::counthttp://www.cplusplus.com/reference/set/set/count/?Wsremainderhttp://www.cplusplus.com/reference/cmath/remainder/FV%{FILENAME_MAXhttp://www.cplusplus.com/reference/cstdio/FILENAME_MAX/NU1std::slice::stridehttp://www.cplusplus.com/reference/valarray/slice/stride/RT5std::istream::sentryhttp://www.cplusplus.com/reference/istream/istream/sentry/JS+}std::unexpectedhttp://www.cplusplus.com/reference/exception/unexpected/WR5 std::underlying_typehttp://www.cplusplus.com/reference/type_traits/underlying_type/mQQstd::discard_block_engine::discardhttp://www.cplusplus.com/reference/random/discard_block_engine/discard/KO3wstd::ios_base::Inithttp://www.cplusplus.com/reference/ios/ios_base/Init/rNWstd::is_error_code_enum (future_errc)http://www.cplusplus.com/reference/future/future_errc/is_error_code_enum/IM/wstd::deque::beginhttp://www.cplusplus.com/reference/deque/deque/begin/_LAstd::piecewise_construct_thttp://www.cplusplus.com/reference/utility/piecewise_construct_t/`KCstd::basic_regex::operator=http://www.cplusplus.com/reference/regex/basic_regex/operator%3D/nJK#std::unordered_map::equal_rangehttp://www.cplusplus.com/reference/unordered_map/unordered_map/equal_range/oISstd::uniform_real_distribution::minhttp://www.cplusplus.com/reference/random/uniform_real_distribution/min/yH[)std::enable_shared_from_this::operator=http://www.cplusplus.com/reference/memory/enable_shared_from_this/operator%3D/iGMstd::poisson_distribution::paramhttp://www.cplusplus.com/reference/random/poisson_distribution/param/bFGstd::unique_lock::unique_lockhttp://www.cplusplus.com/reference/mutex/unique_lock/unique_lock/=Esstrrchrhttp://www.cplusplus.com/reference/cstring/strrchr/ND3}std::ratio_subtracthttp://www.cplusplus.com/reference/ratio/ratio_subtract/EC)ustd::money_gethttp://www.cplusplus.com/reference/locale/money_get/JB1wstd::list::reversehttp://www.cplusplus.com/reference/list/list/reverse/qAO%std::is_trivially_copy_assignablehttp://www.cplusplus.com/reference/type_traits/is_trivially_copy_assignable/C@+ostd::map::counthttp://www.cplusplus.com/reference/map/map/count/ &vFéŽ9’|3 è © B á ˆ = Ú r ' Õ y #  |ÿ¶fñ¥Bô=Ôvœ\îIãs@ k;std::operator<< (piecewise_linear_distribution)http://www.cplusplus.com/reference/random/piecewise_linear_distribution/operator%3C%3C/¯EF 3mstd::swap (utility)http://www.cplusplus.com/reference/utility/swap/ns%std::relational operators (independent_bits_engine)http://www.cplusplus.com/reference/random/independent_bits_engine/operators/rkO'std::unordered_multimap::max_sizehttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/max_size/Xj?std::basic_ios::basic_ioshttp://www.cplusplus.com/reference/ios/basic_ios/basic_ios/Zi= std::basic_filebuf::openhttp://www.cplusplus.com/reference/fstream/basic_filebuf/open/fhIstd::basic_regex::~basic_regexhttp://www.cplusplus.com/reference/regex/basic_regex/%7Ebasic_regex/Í?k Ostd::moneypunct::do_positive_signhttp://www.cplusplus.com/reference/locale/moneypunct/do_positive_sign/= qINFINITYhttp://www.cplusplus.com/reference/cmath/INFINITY/5 ahttp://www.cplusplus.com/reference/random/fGstd::basic_istream::operator=http://www.cplusplus.com/reference/istream/basic_istream/operator%3D/P5std::regex_constantshttp://www.cplusplus.com/reference/regex/regex_constants/a?std::error_category::namehttp://www.cplusplus.com/reference/system_error/error_category/name/K1ystd::array::cbeginhttp://www.cplusplus.com/reference/array/array/cbegin/`Astd::streambuf::pubseekoffhttp://www.cplusplus.com/reference/streambuf/streambuf/pubseekoff/I/wstd::array::fronthttp://www.cplusplus.com/reference/array/array/front/rO'std::unordered_multiset::max_sizehttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/max_size/M1}std::fstream::swaphttp://www.cplusplus.com/reference/fstream/fstream/swap/F'ystd::generatehttp://www.cplusplus.com/reference/algorithm/generate/zW/std::unordered_multimap::emplace_hinthttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/emplace_hint/C~#wisunorderedhttp://www.cplusplus.com/reference/cmath/isunordered/^}A std::basic_ifstream::rdbufhttp://www.cplusplus.com/reference/fstream/basic_ifstream/rdbuf/S|7std::num_put::num_puthttp://www.cplusplus.com/reference/locale/num_put/num_put/Y{7 std::is_constructiblehttp://www.cplusplus.com/reference/type_traits/is_constructible/Oz/std::reverse_copyhttp://www.cplusplus.com/reference/algorithm/reverse_copy/Hy/ustd::list::resizehttp://www.cplusplus.com/reference/list/list/resize/exIstd::shuffle_order_engine::maxhttp://www.cplusplus.com/reference/random/shuffle_order_engine/max/`wCstd::basic_fstream::is_openhttp://www.cplusplus.com/reference/fstream/basic_fstream/is_open/Hv){std::remove_ifhttp://www.cplusplus.com/reference/algorithm/remove_if/Vu9std::moneypunct_bynamehttp://www.cplusplus.com/reference/locale/moneypunct_byname/^tE std::multimap::get_allocatorhttp://www.cplusplus.com/reference/map/multimap/get_allocator/dsGstd::basic_filebuf::underflowhttp://www.cplusplus.com/reference/fstream/basic_filebuf/underflow/Ôƒ6Ð=%%iNULL (ctime)http://www.cplusplus.com/reference/ctime/NULL/ €F-3mstd::sin (valarray)http://www.cplusplus.com/reference/valarray/sin/u'std::relational operators (uniform_int_distribution)http://www.cplusplus.com/reference/random/uniform_int_distribution/operators/9mtime_thttp://www.cplusplus.com/reference/ctime/time_t/L1{std::match_resultshttp://www.cplusplus.com/reference/regex/match_results/]5std::poisson_distribution::(constructor)http://www.cplusplus.com/reference/random/poisson_distribution/poisson_distribution/]=std::valarray::operator=http://www.cplusplus.com/reference/valarray/valarray/operator%3D/mQstd::chi_squared_distribution::maxhttp://www.cplusplus.com/reference/random/chi_squared_distribution/max/?!qstd::atan2http://www.cplusplus.com/reference/valarray/atan2/E%yFE_DIVBYZEROhttp://www.cplusplus.com/reference/cfenv/FE_DIVBYZERO/S3std::get_unexpectedhttp://www.cplusplus.com/reference/exception/get_unexpected/H'}std::is_emptyhttp://www.cplusplus.com/reference/type_traits/is_empty/`Astd::basic_streambuf::gptrhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/gptr/;qsignalhttp://www.cplusplus.com/reference/csignal/signal/l0G#std::unordered_map::operator=http://www.cplusplus.com/reference/unordered_map/unordered_map/operator%3D/T/7std::filebuf::seekposhttp://www.cplusplus.com/reference/fstream/filebuf/seekpos/K.3wstd::basic_ios::eofhttp://www.cplusplus.com/reference/ios/basic_ios/eof/“>N,3}std::string::resizehttp://www.cplusplus.com/reference/string/string/resize/`+Cstd::basic_filebuf::is_openhttp://www.cplusplus.com/reference/fstream/basic_filebuf/is_open/N*3}std::vector::vectorhttp://www.cplusplus.com/reference/vector/vector/vector/^)A std::basic_ostream::sentryhttp://www.cplusplus.com/reference/ostream/basic_ostream/sentry/C(+ostd::set::beginhttp://www.cplusplus.com/reference/set/set/begin/Q'/std::is_referencehttp://www.cplusplus.com/reference/type_traits/is_reference/<&qmbrtowchttp://www.cplusplus.com/reference/cwchar/mbrtowc/B$#ustd::rotatehttp://www.cplusplus.com/reference/algorithm/rotate/>#%kstd::showposhttp://www.cplusplus.com/reference/ios/showpos/C"'sstd::time_puthttp://www.cplusplus.com/reference/locale/time_put/g!Gstd::set_symmetric_differencehttp://www.cplusplus.com/reference/algorithm/set_symmetric_difference/C 'sstd::weak_ptrhttp://www.cplusplus.com/reference/memory/weak_ptr/hIstd::basic_streambuf::overflowhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/overflow/_C std::unique_ptr::unique_ptrhttp://www.cplusplus.com/reference/memory/unique_ptr/unique_ptr/;qwctypehttp://www.cplusplus.com/reference/cwctype/wctype/T5std::streambuf::setphttp://www.cplusplus.com/reference/streambuf/streambuf/setp/P5std::messages::closehttp://www.cplusplus.com/reference/locale/messages/close/bCstd::basic_streambuf::gbumphttp://www.cplusplus.com/reference/streambuf/basic_streambuf/gbump/m .'£Dåi Ö 2 è ” = ÷ • ? ä  Ä g Îo7åŒJìƒ/ÇUá|µdü¶`´fùÁx@J/estruct tm (ctime)http://www.cplusplus.com/reference/ctime/tm/Sl;std::multiset::key_comphttp://www.cplusplus.com/reference/set/multiset/key_comp/Ck+ostd::map::clearhttp://www.cplusplus.com/reference/map/map/clear/ejGstd::shared_future::operator=http://www.cplusplus.com/reference/future/shared_future/operator%3D/Ni-std::swap (pair)http://www.cplusplus.com/reference/utility/pair/swap-free/Mh1}std::future_statushttp://www.cplusplus.com/reference/future/future_status/tgU%std::basic_iostream::~basic_iostreamhttp://www.cplusplus.com/reference/istream/basic_iostream/%7Ebasic_iostream/bfAstd::swap (basic_ifstream)http://www.cplusplus.com/reference/fstream/basic_ifstream/swap-free/qeUstd::extreme_value_distribution::minhttp://www.cplusplus.com/reference/random/extreme_value_distribution/min/odM#std::forward_list::emplace_fronthttp://www.cplusplus.com/reference/forward_list/forward_list/emplace_front/ecCstd::error_code::error_codehttp://www.cplusplus.com/reference/system_error/error_code/error_code/Qb/std::alignment_ofhttp://www.cplusplus.com/reference/type_traits/alignment_of/faCstd::unordered_map::reservehttp://www.cplusplus.com/reference/unordered_map/unordered_map/reserve/[`? std::char_traits::not_eofhttp://www.cplusplus.com/reference/string/char_traits/not_eof/?_#ostd::localehttp://www.cplusplus.com/reference/locale/locale/V^;std::sub_match::comparehttp://www.cplusplus.com/reference/regex/sub_match/compare/O]3std::iostream::swaphttp://www.cplusplus.com/reference/istream/iostream/swap/5\imodfhttp://www.cplusplus.com/reference/cmath/modf/\[? std::atomic_load_explicithttp://www.cplusplus.com/reference/atomic/atomic_load_explicit/MZ/std::swap (tuple)http://www.cplusplus.com/reference/tuple/tuple/swap-free/FY'ystd::search_nhttp://www.cplusplus.com/reference/algorithm/search_n/ZX; std::streambuf::pubsynchttp://www.cplusplus.com/reference/streambuf/streambuf/pubsync/WW=std::list::get_allocatorhttp://www.cplusplus.com/reference/list/list/get_allocator/lVMstd::basic_streambuf::pubseekposhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/pubseekpos/TU9std::deque::push_fronthttp://www.cplusplus.com/reference/deque/deque/push_front/XT=std::timed_mutex::unlockhttp://www.cplusplus.com/reference/mutex/timed_mutex/unlock/SS;std::map::get_allocatorhttp://www.cplusplus.com/reference/map/map/get_allocator/_RC std::basic_string::capacityhttp://www.cplusplus.com/reference/string/basic_string/capacity/CQ#wFENV_ACCESShttp://www.cplusplus.com/reference/cfenv/FENV_ACCESS/TP3std::is_placeholderhttp://www.cplusplus.com/reference/functional/is_placeholder/QO7std::getline (string)http://www.cplusplus.com/reference/string/string/getline/GN%}EXIT_SUCCESShttp://www.cplusplus.com/reference/cstdlib/EXIT_SUCCESS/ZM7std::generic_categoryhttp://www.cplusplus.com/reference/system_error/generic_category/DL+qstd::noshowbasehttp://www.cplusplus.com/reference/ios/noshowbase/UK5std::swap (weak_ptr)http://www.cplusplus.com/reference/memory/weak_ptr/swap-free/;yI]'std::negative_binomial_distribution::maxhttp://www.cplusplus.com/reference/random/negative_binomial_distribution/max/\HGrelational operators (string)http://www.cplusplus.com/reference/string/string/operators/\GA std::match_results::cbeginhttp://www.cplusplus.com/reference/regex/match_results/cbegin/ZF?std::deque::emplace_fronthttp://www.cplusplus.com/reference/deque/deque/emplace_front/ -&ÁSÀSÒ›<ÌV Ï f  ¶ m  Ñ ’ P ¼ Î X Á ²P¦hÿÂ]—JËvn&â{{‘u'std::relational operators (exponential_distribution)http://www.cplusplus.com/reference/random/exponential_distribution/operators/‘e5std::operator<< (subtract_with_carry_engine)http://www.cplusplus.com/reference/random/subtract_with_carry_engine/operator%3C%3C/Fr)wstd::wifstreamhttp://www.cplusplus.com/reference/fstream/wifstream/5qilog2http://www.cplusplus.com/reference/cmath/log2/jpGstd::unordered_multiset::cendhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/cend/Ko3wstd::ios_base::setfhttp://www.cplusplus.com/reference/ios/ios_base/setf/enIstd::atomic_flag::test_and_sethttp://www.cplusplus.com/reference/atomic/atomic_flag/test_and_set/R‘5std::allocator_arg_thttp://www.cplusplus.com/reference/memory/allocator_arg_t/_‘=std::function::operator=http://www.cplusplus.com/reference/functional/function/operator%3D/ —&Amwptrdiff_thttp://www.cplusplus.com/reference/cstddef/ptrdiff_t/h‘Istd::basic_ifstream::operator=http://www.cplusplus.com/reference/fstream/basic_ifstream/operator%3D/X‘9 std::array::operator[]http://www.cplusplus.com/reference/array/array/operator%5B%5D/b‘ I std::ios_base::sync_with_stdiohttp://www.cplusplus.com/reference/ios/ios_base/sync_with_stdio/:‘ owcscathttp://www.cplusplus.com/reference/cwchar/wcscat/f‘ Cstd::unordered_map::emplacehttp://www.cplusplus.com/reference/unordered_map/unordered_map/emplace/;‘ qstrtodhttp://www.cplusplus.com/reference/cstdlib/strtod/^‘ A std::basic_istream::gcounthttp://www.cplusplus.com/reference/istream/basic_istream/gcount/F‘-sstd::list::mergehttp://www.cplusplus.com/reference/list/list/merge/_‘=std::forward_list::emptyhttp://www.cplusplus.com/reference/forward_list/forward_list/empty/S‘3std::is_partitionedhttp://www.cplusplus.com/reference/algorithm/is_partitioned/ ‘k=std::negative_binomial_distribution::operator()http://www.cplusplus.com/reference/random/negative_binomial_distribution/operator%28%29/ %E‘-qwint_t (cwctype)http://www.cplusplus.com/reference/cwctype/wint_t/Q‘1std::inplace_mergehttp://www.cplusplus.com/reference/algorithm/inplace_merge/s‘S%std::gamma_distribution::operator()http://www.cplusplus.com/reference/random/gamma_distribution/operator%28%29/A‘!uFE_INEXACThttp://www.cplusplus.com/reference/cfenv/FE_INEXACT/>?uiswalphahttp://www.cplusplus.com/reference/cwctype/iswalpha/<~-_ (math.h)http://www.cplusplus.com/reference/cmath/;}qstrtokhttp://www.cplusplus.com/reference/cstring/strtok/[|= std::basic_istringstreamhttp://www.cplusplus.com/reference/sstream/basic_istringstream/F{-sstd::list::beginhttp://www.cplusplus.com/reference/list/list/begin/Wz;std::time_get::get_timehttp://www.cplusplus.com/reference/locale/time_get/get_time/Sy7std::shared_ptr::swaphttp://www.cplusplus.com/reference/memory/shared_ptr/swap/fxKstd::unique_lock::operator boolhttp://www.cplusplus.com/reference/mutex/unique_lock/operator_bool/wc5std::subtract_with_carry_engine::operator()http://www.cplusplus.com/reference/random/subtract_with_carry_engine/operator%28%29/svW!std::uniform_real_distribution::paramhttp://www.cplusplus.com/reference/random/uniform_real_distribution/param/muMstd::reverse_iterator::operator+http://www.cplusplus.com/reference/iterator/reverse_iterator/operator%2B/\t? std::weibull_distributionhttp://www.cplusplus.com/reference/random/weibull_distribution/bsCstd::basic_streambuf::sputnhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/sputn/ Á"Þï +Þ|1ÇYÍf¹Q¶Q ä ª Y  ¤ R ù © U û • 8 Ö ˜ PÿÁa¾†±Wë®o(¡‘e5std::operator<< (extreme_value_distribution)http://www.cplusplus.com/reference/random/extreme_value_distribution/operator%3C%3C/d‘Estd::basic_streambuf::snextchttp://www.cplusplus.com/reference/streambuf/basic_streambuf/snextc/A‘)mstd::ios::failhttp://www.cplusplus.com/reference/ios/ios/fail/E‘#{max_align_thttp://www.cplusplus.com/reference/cstddef/max_align_t/k‘Ostd::moneypunct::do_thousands_sephttp://www.cplusplus.com/reference/locale/moneypunct/do_thousands_sep/g‘Kstd::poisson_distribution::meanhttp://www.cplusplus.com/reference/random/poisson_distribution/mean/H‘){std::iter_swaphttp://www.cplusplus.com/reference/algorithm/iter_swap/B‘%sstd::rel_opshttp://www.cplusplus.com/reference/utility/rel_ops/jr‘O'std::unordered_map::unordered_maphttp://www.cplusplus.com/reference/unordered_map/unordered_map/unordered_map/L‘1{std::string::erasehttp://www.cplusplus.com/reference/string/string/erase/o‘M#std::forward_list::cbefore_beginhttp://www.cplusplus.com/reference/forward_list/forward_list/cbefore_begin/]‘4? std::type_info::hash_codehttp://www.cplusplus.com/reference/typeinfo/type_info/hash_code/;‘3qstrtofhttp://www.cplusplus.com/reference/cstdlib/strtof/N‘23}std::vector::rbeginhttp://www.cplusplus.com/reference/vector/vector/rbegin/E‘1%yoperator newhttp://www.cplusplus.com/reference/new/operator%20new/;‘0qstrstrhttp://www.cplusplus.com/reference/cstring/strstr/_‘/Astd::unique_ptr::operator=http://www.cplusplus.com/reference/memory/unique_ptr/operator%3D/Z‘.= std::basic_istream::swaphttp://www.cplusplus.com/reference/istream/basic_istream/swap/c‘-Astd::type_info::operator==http://www.cplusplus.com/reference/typeinfo/type_info/operator%3D%3D/W‘,;std::basic_string::cendhttp://www.cplusplus.com/reference/string/basic_string/cend/Q‘+3std::wistringstreamhttp://www.cplusplus.com/reference/sstream/wistringstream/M‘*1}std::filebuf::openhttp://www.cplusplus.com/reference/fstream/filebuf/open/V‘)7std::streambuf::gbumphttp://www.cplusplus.com/reference/streambuf/streambuf/gbump/O‘(7{std::multiset::cbeginhttp://www.cplusplus.com/reference/set/multiset/cbegin/s‘'W!std::wstring_convert::wstring_converthttp://www.cplusplus.com/reference/locale/wstring_convert/wstring_convert/<‘&qwmemchrhttp://www.cplusplus.com/reference/cwchar/wmemchr/N‘%5{std::get_new_handlerhttp://www.cplusplus.com/reference/new/get_new_handler/7‘$matolhttp://www.cplusplus.com/reference/cstdlib/atol/j‘#Kstd::regex_iterator::operator++http://www.cplusplus.com/reference/regex/regex_iterator/operator%2B%2B/b‘"Estd::mersenne_twister_enginehttp://www.cplusplus.com/reference/random/mersenne_twister_engine/G‘!%}sig_atomic_thttp://www.cplusplus.com/reference/csignal/sig_atomic_t/N‘ 1std::wstringstreamhttp://www.cplusplus.com/reference/sstream/wstringstream/e‘Istd::string::find_first_not_ofhttp://www.cplusplus.com/reference/string/string/find_first_not_of/D‘)sstd::call_oncehttp://www.cplusplus.com/reference/mutex/call_once/ M( £Eó•6 Ô † 6 ¶ [ ó ­ ] % ¦ P ö Šù Ç@£\¹z2щ T$Òl³IÕ] N‘\3}std::string::appendhttp://www.cplusplus.com/reference/string/string/append/u‘[Y#std::negative_binomial_distribution::khttp://www.cplusplus.com/reference/random/negative_binomial_distribution/k/q‘ZUstd::linear_congruential_engine::minhttp://www.cplusplus.com/reference/random/linear_congruential_engine/min/g‘YKstd::pointer_traits::pointer_tohttp://www.cplusplus.com/reference/memory/pointer_traits/pointer_to/`‘X=std::unordered_map::sizehttp://www.cplusplus.com/reference/unordered_map/unordered_map/size/S‘W7std::future::wait_forhttp://www.cplusplus.com/reference/future/future/wait_for/c‘V=std::swap (forward_list)http://www.cplusplus.com/reference/forward_list/forward_list/swap-free/O‘U7{std::set::equal_rangehttp://www.cplusplus.com/reference/set/set/equal_range/b‘TEstd::basic_ifstream::is_openhttp://www.cplusplus.com/reference/fstream/basic_ifstream/is_open/E‘R)ustd::time_basehttp://www.cplusplus.com/reference/locale/time_base/^‘Q?std::streambuf::pubsetbufhttp://www.cplusplus.com/reference/streambuf/streambuf/pubsetbuf/E‘P)ustd::u16stringhttp://www.cplusplus.com/reference/string/u16string/<‘Oqwmemcmphttp://www.cplusplus.com/reference/cwchar/wmemcmp/F‘N+ustd::ssub_matchhttp://www.cplusplus.com/reference/regex/ssub_match/W‘M;std::ctype::do_scan_nothttp://www.cplusplus.com/reference/locale/ctype/do_scan_not/D‘L#ystd::extenthttp://www.cplusplus.com/reference/type_traits/extent/S‘K3std::set_differencehttp://www.cplusplus.com/reference/algorithm/set_difference/D‘G1kstd::pow (complex)http://www.cplusplus.com/reference/complex/pow/‘Jg1std::piecewise_linear_distribution::densitieshttp://www.cplusplus.com/reference/random/piecewise_linear_distribution/densities/D‘I+qstd::list::sizehttp://www.cplusplus.com/reference/list/list/size/<‘Hqwmemsethttp://www.cplusplus.com/reference/cwchar/wmemset/3‘Sgloghttp://www.cplusplus.com/reference/cmath/log/i‘FMstd::geometric_distribution::minhttp://www.cplusplus.com/reference/random/geometric_distribution/min/W‘E;std::promise::set_valuehttp://www.cplusplus.com/reference/future/promise/set_value/S‘D3std::overflow_errorhttp://www.cplusplus.com/reference/stdexcept/overflow_error/|‘CY1std::unordered_multimap::hash_functionhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/hash_function/5‘Bifabshttp://www.cplusplus.com/reference/cmath/fabs/M‘A5ystd::ios_base::iwordhttp://www.cplusplus.com/reference/ios/ios_base/iword/C‘@+ostd::map::emptyhttp://www.cplusplus.com/reference/map/map/empty/e‘?Estd::function::operator boolhttp://www.cplusplus.com/reference/functional/function/operator_bool/X‘>=std::priority_queue::pophttp://www.cplusplus.com/reference/queue/priority_queue/pop/}‘=a+std::negative_binomial_distribution::resethttp://www.cplusplus.com/reference/random/negative_binomial_distribution/reset/M‘<+std::is_trivialhttp://www.cplusplus.com/reference/type_traits/is_trivial/K‘;3wstd::multimap::sizehttp://www.cplusplus.com/reference/map/multimap/size/_‘:C std::moneypunct::moneypuncthttp://www.cplusplus.com/reference/locale/moneypunct/moneypunct/\‘9? std::basic_filebuf::uflowhttp://www.cplusplus.com/reference/fstream/basic_filebuf/uflow/[‘89std::is_floating_pointhttp://www.cplusplus.com/reference/type_traits/is_floating_point/O‘77{std::multimap::cbeginhttp://www.cplusplus.com/reference/map/multimap/cbegin/[‘6? std::moneypunct::groupinghttp://www.cplusplus.com/reference/locale/moneypunct/grouping/Z‘5?std::mutex::native_handlehttp://www.cplusplus.com/reference/mutex/mutex/native_handle/ q(t ” 2Û~/´pt,ç¥Cì†N ±bË‚6ôž*»[ï…Ü‚ ó ª k ' ï © c  átd::operïx‘dY)std::operator>> (weibull_distribution)http://www.cplusplus.com/reference/random/weibull_distribution/operator%3E%3E/i‘wEstd::forward_list::operator=http://www.cplusplus.com/reference/forward_list/forward_list/operator%3D/]‘v;std::forward_list::cendhttp://www.cplusplus.com/reference/forward_list/forward_list/cend/l‘uI!std::unordered_multiset::emptyhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/empty/q‘tO%std::reverse_iterator::operator[]http://www.cplusplus.com/reference/iterator/reverse_iterator/operator%5B%5D/S‘s5std::future::~futurehttp://www.cplusplus.com/reference/future/future/%7Efuture/?‘r'kstd::map::maphttp://www.cplusplus.com/reference/map/map/map/I‘q)}std::mem_fun_thttp://www.cplusplus.com/reference/functional/mem_fun_t/F‘p+ustd::adopt_lockhttp://www.cplusplus.com/reference/mutex/adopt_lock/‘owAstd::enable_shared_from_this::enable_shared_from_thishttp://www.cplusplus.com/reference/memory/enable_shared_from_this/enable_shared_from_this/L‘n-std::swap_rangeshttp://www.cplusplus.com/reference/algorithm/swap_ranges/W‘m;std::basic_string::rendhttp://www.cplusplus.com/reference/string/basic_string/rend/@‘l'mstd::internalhttp://www.cplusplus.com/reference/ios/internal/5‘kahttp://www.cplusplus.com/reference/thread/c‘jGstd::cauchy_distribution::maxhttp://www.cplusplus.com/reference/random/cauchy_distribution/max/T‘i7std::bitset operatorshttp://www.cplusplus.com/reference/bitset/bitset/operators/_‘hC std::codecvt::do_max_lengthhttp://www.cplusplus.com/reference/locale/codecvt/do_max_length/?‘guwctype_thttp://www.cplusplus.com/reference/cwctype/wctype_t/B‘f%sstd::declvalhttp://www.cplusplus.com/reference/utility/declval/A‘e!unexttowardhttp://www.cplusplus.com/reference/cmath/nexttoward/A‘c)mNULL (cstddef)http://www.cplusplus.com/reference/cstddef/NULL/x‘bU-std::unordered_multimap::bucket_sizehttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/bucket_size/?‘a1a (wchar.h)http://www.cplusplus.com/reference/cwchar/ ÝS‘x?{std::chrono::steady_clockhttp://www.cplusplus.com/reference/chrono/steady_clock/T‘_9std::unique_lock::lockhttp://www.cplusplus.com/reference/mutex/unique_lock/lock/_‘^=std::function::~functionhttp://www.cplusplus.com/reference/functional/function/%7Efunction/F‘]'ystd::find_endhttp://www.cplusplus.com/reference/algorithm/find_end/6’kgetshttp://www.cplusplus.com/reference/cstdio/gets/F’-sstd::get (array)http://www.cplusplus.com/reference/array/array/get/C’+osize_t (cstdio)http://www.cplusplus.com/reference/cstdio/size_t/C’+ostd::map::crendhttp://www.cplusplus.com/reference/map/map/crend/5’ierfchttp://www.cplusplus.com/reference/cmath/erfc/A‘%qstd::iscntrlhttp://www.cplusplus.com/reference/locale/iscntrl/<‘~qwcspbrkhttp://www.cplusplus.com/reference/cwchar/wcspbrk/F‘}-sstd::list::fronthttp://www.cplusplus.com/reference/list/list/front/ ‘|cEstd::condition_variable::condition_variablehttp://www.cplusplus.com/reference/condition_variable/condition_variable/condition_variable/W‘{Kwstd::relational operators (set)http://www.cplusplus.com/reference/set/set/operators/@‘z'mstd::noskipwshttp://www.cplusplus.com/reference/ios/noskipws/\‘y? std::shuffle_order_enginehttp://www.cplusplus.com/reference/random/shuffle_order_engine/‘`o!std::relational operators (binomial_distribution)http://www.cplusplus.com/reference/random/binomial_distribution/operators/ E+i © S  ¹ f i Ì ~ E nµiÓd݆!â™Tß‘7÷¸DÚŠAÿ´sæãhV š L  ¹rator>> (bz’ [+std::operator>> (binomial_distribution)http://www.cplusplus.com/reference/random/binomial_distribution/operator%3E%3E/\’'? std::basic_fstream::rdbufhttp://www.cplusplus.com/reference/fstream/basic_fstream/rdbuf/ [’*? std::packaged_task::resethttp://www.cplusplus.com/reference/future/packaged_task/reset/H’%){std::terminatehttp://www.cplusplus.com/reference/exception/terminate/?’$uiswalnumhttp://www.cplusplus.com/reference/cwctype/iswalnum/F’#+ustd::tuple_sizehttp://www.cplusplus.com/reference/tuple/tuple_size/M’"5ystd::ios_base::widthhttp://www.cplusplus.com/reference/ios/ios_base/width/g’!Gstd::move_iterator::operator+http://www.cplusplus.com/reference/iterator/move_iterator/operator%2B/q’ O%std::reference_wrapper::operator=http://www.cplusplus.com/reference/functional/reference_wrapper/operator%3D/<’qwcsrchrhttp://www.cplusplus.com/reference/cwchar/wcsrchr/=’ostd::nexthttp://www.cplusplus.com/reference/iterator/next/W’;std::weak_ptr::weak_ptrhttp://www.cplusplus.com/reference/memory/weak_ptr/weak_ptr/K’3wstd::basic_ios::tiehttp://www.cplusplus.com/reference/ios/basic_ios/tie/r’U!std::piecewise_constant_distributionhttp://www.cplusplus.com/reference/random/piecewise_constant_distribution/B’'qstd::try_lockhttp://www.cplusplus.com/reference/mutex/try_lock/F’3mstd::atan (complex)http://www.cplusplus.com/reference/complex/atan/<’ostd::maxhttp://www.cplusplus.com/reference/algorithm/max/b’Cstd::basic_streambuf::pbumphttp://www.cplusplus.com/reference/streambuf/basic_streambuf/pbump/T’7std::atomic_fetch_andhttp://www.cplusplus.com/reference/atomic/atomic_fetch_and/’c5std::extreme_value_distribution::operator()http://www.cplusplus.com/reference/random/extreme_value_distribution/operator%28%29/l’Ostd::ostringstream::ostringstreamhttp://www.cplusplus.com/reference/sstream/ostringstream/ostringstream/<’!kstd::ratiohttp://www.cplusplus.com/reference/ratio/ratio/T’9std::unique_lock::swaphttp://www.cplusplus.com/reference/mutex/unique_lock/swap/I’/wstd::stack::emptyhttp://www.cplusplus.com/reference/stack/stack/empty/M’1}std::ranlux48_basehttp://www.cplusplus.com/reference/random/ranlux48_base/ @6’cstd::octhttp://www.cplusplus.com/reference/ios/oct/K’ /{std::memory_orderhttp://www.cplusplus.com/reference/atomic/memory_order/J’ /ystd::thread::joinhttp://www.cplusplus.com/reference/thread/thread/join/J’ +}std::generate_nhttp://www.cplusplus.com/reference/algorithm/generate_n/P’ 5std::num_get::do_gethttp://www.cplusplus.com/reference/locale/num_get/do_get/\’? std::basic_filebuf::imbuehttp://www.cplusplus.com/reference/fstream/basic_filebuf/imbue/8’mfseekhttp://www.cplusplus.com/reference/cstdio/fseek/S’7std::num_get::num_gethttp://www.cplusplus.com/reference/locale/num_get/num_get/a’Estd::uses_allocatorhttp://www.cplusplus.com/reference/future/promise/uses_allocator/aH’5ostd::sinh (valarray)http://www.cplusplus.com/reference/valarray/sinh/H’/5ostd::atan (valarray)http://www.cplusplus.com/reference/valarray/atan/E’.%ystd::modulushttp://www.cplusplus.com/reference/functional/modulus/K’-1ystd::deque::rbeginhttp://www.cplusplus.com/reference/deque/deque/rbegin/{’,kstd::relational operators (cauchy_distribution)http://www.cplusplus.com/reference/random/cauchy_distribution/operators/M’+1}std::random_devicehttp://www.cplusplus.com/reference/random/random_device/x’)U-std::unordered_map::max_bucket_counthttp://www.cplusplus.com/reference/unordered_map/unordered_map/max_bucket_count/ ’(eEstd::chi_squared_distribution::(constructor)http://www.cplusplus.com/reference/random/chi_squared_distribution/chi_squared_distribution/ ’&y+std::relational operators (subtract_with_carry_engine)http://www.cplusplus.com/reference/random/subtract_with_carry_engine/operators/ I*¿ ï ­ m  Å ƒ D ï Ÿ 1 Ñ o $Ë™9ã…%ÌfÅtÿœd˜Döˆ;ì«L ¿‡)Ç@¿G’U+wstd::swap (set)http://www.cplusplus.com/reference/set/set/swap-free/@’T'mstd::showbasehttp://www.cplusplus.com/reference/ios/showbase/\’S? std::ostringstream::rdbufhttp://www.cplusplus.com/reference/sstream/ostringstream/rdbuf/>’RsL_tmpnamhttp://www.cplusplus.com/reference/cstdio/L_tmpnam/L’Q1{std::vector::emptyhttp://www.cplusplus.com/reference/vector/vector/empty/J’P+}std::replace_ifhttp://www.cplusplus.com/reference/algorithm/replace_if/k’OOstd::independent_bits_engine::maxhttp://www.cplusplus.com/reference/random/independent_bits_engine/max/K’N3wstd::ios::set_rdbufhttp://www.cplusplus.com/reference/ios/ios/set_rdbuf/Q’M/std::remove_consthttp://www.cplusplus.com/reference/type_traits/remove_const/k’LIstd::move_iterator::operator+=http://www.cplusplus.com/reference/iterator/move_iterator/operator%2B%3D/[’K? std::basic_string::substrhttp://www.cplusplus.com/reference/string/basic_string/substr/5’Jinanfhttp://www.cplusplus.com/reference/cmath/nanf/`’ICstd::unique_lock::operator=http://www.cplusplus.com/reference/mutex/unique_lock/operator%3D/r’HI-std::notify_all_at_thread_exithttp://www.cplusplus.com/reference/condition_variable/notify_all_at_thread_exit/N’G5{std::list::remove_ifhttp://www.cplusplus.com/reference/list/list/remove_if/N’F3}std::future::futurehttp://www.cplusplus.com/reference/future/future/future/M’E1}std::shared_futurehttp://www.cplusplus.com/reference/future/shared_future/c’DAstd::type_info::operator!=http://www.cplusplus.com/reference/typeinfo/type_info/operator%21%3D/V’C3 std::error_categoryhttp://www.cplusplus.com/reference/system_error/error_category/]’B;std::remove_all_extentshttp://www.cplusplus.com/reference/type_traits/remove_all_extents/[’A? std::basic_string::inserthttp://www.cplusplus.com/reference/string/basic_string/insert/S’@?{std::chrono::microsecondshttp://www.cplusplus.com/reference/chrono/microseconds/]’?A std::collate::do_transformhttp://www.cplusplus.com/reference/locale/collate/do_transform//’>[http://www.cplusplus.com/reference/map/V’=;std::unique_lock::mutexhttp://www.cplusplus.com/reference/mutex/unique_lock/mutex/H’<-wstd::list::~listhttp://www.cplusplus.com/reference/list/list/%7Elist/_’;=std::forward_list::beginhttp://www.cplusplus.com/reference/forward_list/forward_list/begin/]’:Ostd::relational operators (stack)http://www.cplusplus.com/reference/stack/stack/operators/k’9Ostd::uniform_real_distribution::ahttp://www.cplusplus.com/reference/random/uniform_real_distribution/a/M’85ystd::basic_ios::inithttp://www.cplusplus.com/reference/ios/basic_ios/init/R’75std::ifstream::closehttp://www.cplusplus.com/reference/fstream/ifstream/close/<’6mstd::endlhttp://www.cplusplus.com/reference/ostream/endl/?’5'kstd::set::endhttp://www.cplusplus.com/reference/set/set/end/L’41{std::auto_ptr::gethttp://www.cplusplus.com/reference/memory/auto_ptr/get/V’35 std::swap (ifstream)http://www.cplusplus.com/reference/fstream/ifstream/swap-free/=’2sstrncathttp://www.cplusplus.com/reference/cstring/strncat/?’1sisgreaterhttp://www.cplusplus.com/reference/cmath/isgreater/W’0;std::allocator::destroyhttp://www.cplusplus.com/reference/memory/allocator/destroy/÷!’Y[=std::condition_variable_any::notify_onehttp://www.cplusplus.com/reference/condition_variable/condition_variable_any/notify_one/_’XC std::promise::set_exceptionhttp://www.cplusplus.com/reference/future/promise/set_exception/[’W= std::weak_ptr::~weak_ptrhttp://www.cplusplus.com/reference/memory/weak_ptr/%7Eweak_ptr/v’VS+std::unordered_set::max_load_factorhttp://www.cplusplus.com/reference/unordered_set/unordered_set/max_load_factor/ (Z”3ÄY æ ‰ ? Ø r  Å f  Å s ø · x ÈVô£S…1ò©o!ã•U§h×Z‡ÑaJz“'[+std::nested_exception::nested_exceptionhttp://www.cplusplus.com/reference/exception/nested_exception/nested_exception/E“&+sstd::stack::pophttp://www.cplusplus.com/reference/stack/stack/pop/F“%-sstd::nouppercasehttp://www.cplusplus.com/reference/ios/nouppercase/<“$qgetcharhttp://www.cplusplus.com/reference/cstdio/getchar/q“#O%std::is_trivially_move_assignablehttp://www.cplusplus.com/reference/type_traits/is_trivially_move_assignable/7“"kilogbhttp://www.cplusplus.com/reference/cmath/ilogb/=“!!mstd::stoulhttp://www.cplusplus.com/reference/string/stoul/K“ +std::mem_fun1_thttp://www.cplusplus.com/reference/functional/mem_fun1_t/;“qstrspnhttp://www.cplusplus.com/reference/cstring/strspn/K“+operator deletehttp://www.cplusplus.com/reference/new/operator%20delete/7“matofhttp://www.cplusplus.com/reference/cstdlib/atof/F“+ustd::get (pair)http://www.cplusplus.com/reference/utility/pair/get/<“!kstd::regexhttp://www.cplusplus.com/reference/regex/regex/Q“1std::runtime_errorhttp://www.cplusplus.com/reference/stdexcept/runtime_error/ “eAstd::unordered_multimap::~unordered_multimaphttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/%7Eunordered_multimap/=“sstrcollhttp://www.cplusplus.com/reference/cstring/strcoll/M“5ystd::basic_ios::fillhttp://www.cplusplus.com/reference/ios/basic_ios/fill/N“3}std::string::substrhttp://www.cplusplus.com/reference/string/string/substr/_“C std::basic_string::pop_backhttp://www.cplusplus.com/reference/string/basic_string/pop_back/o“M#std::forward_list::emplace_afterhttp://www.cplusplus.com/reference/forward_list/forward_list/emplace_after/>“qstd::fillhttp://www.cplusplus.com/reference/algorithm/fill/l“I!std::unordered_multimap::clearhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/clear/<“qwmemcpyhttp://www.cplusplus.com/reference/cwchar/wmemcpy/>“#mstd::cmatchhttp://www.cplusplus.com/reference/regex/cmatch/x“U-std::unordered_multiset::equal_rangehttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/equal_range/O“3std::codecvt_bynamehttp://www.cplusplus.com/reference/locale/codecvt_byname/:“ istd::lockhttp://www.cplusplus.com/reference/mutex/lock/a“ ?std::error_code::categoryhttp://www.cplusplus.com/reference/system_error/error_code/category/\“ = std::ostreambuf_iteratorhttp://www.cplusplus.com/reference/iterator/ostreambuf_iterator/M“ 3{std::deque::emplacehttp://www.cplusplus.com/reference/deque/deque/emplace/Z“ = std::tuple_elementhttp://www.cplusplus.com/reference/utility/pair/tuple_element/c“Gstd::normal_distribution::maxhttp://www.cplusplus.com/reference/random/normal_distribution/max/d“Astd::unordered_set::inserthttp://www.cplusplus.com/reference/unordered_set/unordered_set/insert/G“/sstd::ios::copyfmthttp://www.cplusplus.com/reference/ios/ios/copyfmt/Z“M{std::relational operators (list)http://www.cplusplus.com/reference/list/list/operators/p“Sstd::basic_iostream::basic_iostreamhttp://www.cplusplus.com/reference/istream/basic_iostream/basic_iostream/h“Estd::unordered_set::max_sizehttp://www.cplusplus.com/reference/unordered_set/unordered_set/max_size/l“I!std::unordered_multiset::clearhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/clear/^“C std::lock_guard::lock_guardhttp://www.cplusplus.com/reference/mutex/lock_guard/lock_guard/i“Mstd::allocator_traits::constructhttp://www.cplusplus.com/reference/memory/allocator_traits/construct/ ã'jÏ_’j4õ›8  2 ñ · M ÷‡ Y  Ç V  Î h Âk ­L† Ð~"Ù?í›Bããv“.W'std::operator>> (normal_distribution)http://www.cplusplus.com/reference/random/normal_distribution/operator%3E%3E/ ‘:g“3W std::swap (basic_ofstream) (ofstream)http://www.cplusplus.com/reference/fstream/ofstream/swap-free/|“:]-std::operator>> (bernoulli_distribution)http://www.cplusplus.com/reference/random/bernoulli_distribution/operator%3E%3E/V“,9std::ifstream::is_openhttp://www.cplusplus.com/reference/fstream/ifstream/is_open/m“+Qstd::extreme_value_distribution::bhttp://www.cplusplus.com/reference/random/extreme_value_distribution/b/<“*qwcscollhttp://www.cplusplus.com/reference/cwchar/wcscoll/~“)_/std::operator>> (mersenne_twister_engine)http://www.cplusplus.com/reference/random/mersenne_twister_engine/operator%3E%3E/G“('{feraiseexcepthttp://www.cplusplus.com/reference/cfenv/feraiseexcept/F“N-sstd::new_handlerhttp://www.cplusplus.com/reference/new/new_handler/Y“M9 std::swap (shared_ptr)http://www.cplusplus.com/reference/memory/shared_ptr/swap-free/O“L3std::ofstream::openhttp://www.cplusplus.com/reference/fstream/ofstream/open/M“K1}std::ranlux24_basehttp://www.cplusplus.com/reference/random/ranlux24_base/c“JGstd::time_get::do_get_weekdayhttp://www.cplusplus.com/reference/locale/time_get/do_get_weekday/“Ia=std::geometric_distribution::(constructor)http://www.cplusplus.com/reference/random/geometric_distribution/geometric_distribution/9“Hollabshttp://www.cplusplus.com/reference/cstdlib/llabs/^“G;std::unordered_set::endhttp://www.cplusplus.com/reference/unordered_set/unordered_set/end/[“F? std::basic_string::resizehttp://www.cplusplus.com/reference/string/basic_string/resize/]“EA std::shared_ptr::use_counthttp://www.cplusplus.com/reference/memory/shared_ptr/use_count/T“D7std::tuple_sizehttp://www.cplusplus.com/reference/utility/pair/tuple_size/F“C+ustd::lock_guardhttp://www.cplusplus.com/reference/mutex/lock_guard/Z“B= std::basic_fstream::openhttp://www.cplusplus.com/reference/fstream/basic_fstream/open/c“AAstd::is_move_constructiblehttp://www.cplusplus.com/reference/type_traits/is_move_constructible/6“@cstd::sethttp://www.cplusplus.com/reference/set/set/L“?1{std::try_to_lock_thttp://www.cplusplus.com/reference/mutex/try_to_lock_t/n“>Sstd::regex_iterator::regex_iteratorhttp://www.cplusplus.com/reference/regex/regex_iterator/regex_iterator/L“=-std::stable_sorthttp://www.cplusplus.com/reference/algorithm/stable_sort/@“<'mstd::hexfloathttp://www.cplusplus.com/reference/ios/hexfloat/5“;ahttp://www.cplusplus.com/reference/bitset/ ÙfS“97std::time_put::do_puthttp://www.cplusplus.com/reference/locale/time_put/do_put/g“8Kstd::numpunct::do_decimal_pointhttp://www.cplusplus.com/reference/locale/numpunct/do_decimal_point/7“7kfloorhttp://www.cplusplus.com/reference/cmath/floor/>“6!ostd::acoshhttp://www.cplusplus.com/reference/complex/acosh/J“5/ystd::vector::sizehttp://www.cplusplus.com/reference/vector/vector/size/W“4;std::random_device::maxhttp://www.cplusplus.com/reference/random/random_device/max/_`“2Astd::streambuf::pubseekposhttp://www.cplusplus.com/reference/streambuf/streambuf/pubseekpos/W“19std::complex operatorshttp://www.cplusplus.com/reference/complex/complex/operators/<“0qwchar_thttp://www.cplusplus.com/reference/cwchar/wchar_t/[“/; std::uncaught_exceptionhttp://www.cplusplus.com/reference/exception/uncaught_exception/k“-Ostd::independent_bits_engine::minhttp://www.cplusplus.com/reference/random/independent_bits_engine/min/ G Þ(ÔŒ¢-Ò€.Õv¡Rù™M »Þ Ï c õ : â ’ ' Ñ i °l’SéŸCå¡^»J ½“a5std::relational operators (piecewise_constant_distribution)http://www.cplusplus.com/reference/random/piecewise_constant_distribution/operators/\“Y= std::operator<< (string)http://www.cplusplus.com/reference/string/string/operator%3C%3C/V“X;std::basic_regex::flagshttp://www.cplusplus.com/reference/regex/basic_regex/flags/O“W3std::fstream::closehttp://www.cplusplus.com/reference/fstream/fstream/close/O“V7{std::basic_ios::widenhttp://www.cplusplus.com/reference/ios/basic_ios/widen/X“U5 std::system_categoryhttp://www.cplusplus.com/reference/system_error/system_category/r“TO'std::unordered_set::hash_functionhttp://www.cplusplus.com/reference/unordered_set/unordered_set/hash_function/m“SQstd::exponential_distribution::maxhttp://www.cplusplus.com/reference/random/exponential_distribution/max/w“Restd::relational operators (reverse_iterator)http://www.cplusplus.com/reference/iterator/reverse_iterator/operators/E“Q-qsize_t (cstddef)http://www.cplusplus.com/reference/cstddef/size_t/Q“P1std::find_first_ofhttp://www.cplusplus.com/reference/algorithm/find_first_of/A“O%qstd::num_puthttp://www.cplusplus.com/reference/locale/num_put/A“n%qstd::mt19937http://www.cplusplus.com/reference/random/mt19937/V“m;std::basic_regex::imbuehttp://www.cplusplus.com/reference/regex/basic_regex/imbue/]“lA std::string::get_allocatorhttp://www.cplusplus.com/reference/string/string/get_allocator/e“kIstd::poisson_distribution::maxhttp://www.cplusplus.com/reference/random/poisson_distribution/max/S“j7std::vector::pop_backhttp://www.cplusplus.com/reference/vector/vector/pop_back/h“iKstd::basic_stringbuf::underflowhttp://www.cplusplus.com/reference/sstream/basic_stringbuf/underflow/M“h1}std::complex::realhttp://www.cplusplus.com/reference/complex/complex/real/U“g9std::messages::do_openhttp://www.cplusplus.com/reference/locale/messages/do_open/`“f=std::unordered_set::swaphttp://www.cplusplus.com/reference/unordered_set/unordered_set/swap/U“e9std::atomic::fetch_xorhttp://www.cplusplus.com/reference/atomic/atomic/fetch_xor/k“dOstd::allocator_traits::deallocatehttp://www.cplusplus.com/reference/memory/allocator_traits/deallocate/i“cMstd::basic_string::shrink_to_fithttp://www.cplusplus.com/reference/string/basic_string/shrink_to_fit/u“bU'std::cauchy_distribution::operator()http://www.cplusplus.com/reference/random/cauchy_distribution/operator%28%29/tO“`-std::is_abstracthttp://www.cplusplus.com/reference/type_traits/is_abstract/=“_ostd::cerrhttp://www.cplusplus.com/reference/iostream/cerr/I“^-ystd::future_errchttp://www.cplusplus.com/reference/future/future_errc/]“]A std::vector::shrink_to_fithttp://www.cplusplus.com/reference/vector/vector/shrink_to_fit/V“\7std::streambuf::sgetnhttp://www.cplusplus.com/reference/streambuf/streambuf/sgetn/L“[1{std::string::fronthttp://www.cplusplus.com/reference/string/string/front/\“Z? std::istringstream::rdbufhttp://www.cplusplus.com/reference/sstream/istringstream/rdbuf/ -l‡B¶L ð ’ $ Ä [ !   h ( ß ™ X ã Ÿ E÷¶y«l-î•Sñ¯H ´C÷&Ò{Ê^éz” [+std::operator>> (fisher_f_distribution)http://www.cplusplus.com/reference/random/fisher_f_distribution/operator%3E%3E/r”3Wstd::regex_traits::lookup_collatenamehttp://www.cplusplus.com/reference/regex/regex_traits/lookup_collatename/i”2Mstd::wstring_convert::from_byteshttp://www.cplusplus.com/reference/locale/wstring_convert/from_bytes/M”15ystd::set::value_comphttp://www.cplusplus.com/reference/set/set/value_comp/^”0Mstd::relational operators (pair)http://www.cplusplus.com/reference/utility/pair/operators/T”/5std::streambuf::swaphttp://www.cplusplus.com/reference/streambuf/streambuf/swap/Q”.1std::binary_searchhttp://www.cplusplus.com/reference/algorithm/binary_search/g”-Gstd::basic_string::operator+=http://www.cplusplus.com/reference/string/basic_string/operator%2B%3D/d”,Gstd::basic_filebuf::pbackfailhttp://www.cplusplus.com/reference/fstream/basic_filebuf/pbackfail/I”+-ystd::this_threadhttp://www.cplusplus.com/reference/thread/this_thread/n”*K#std::unordered_multiset::key_eqhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/key_eq/S”)7std::vector::max_sizehttp://www.cplusplus.com/reference/vector/vector/max_size/;”(qgetenvhttp://www.cplusplus.com/reference/cstdlib/getenv/d”'Kstd::random_access_iterator_taghttp://www.cplusplus.com/reference/iterator/RandomAccessIterator/?”&!qstd::slicehttp://www.cplusplus.com/reference/valarray/slice/_”%C std::numpunct::do_falsenamehttp://www.cplusplus.com/reference/locale/numpunct/do_falsename/?”$sstd::hashhttp://www.cplusplus.com/reference/functional/hash/V”#7std::hashhttp://www.cplusplus.com/reference/typeindex/type_index/hash/<”"mstd::imaghttp://www.cplusplus.com/reference/complex/imag/{”!S5std::condition_variable::wait_untilhttp://www.cplusplus.com/reference/condition_variable/condition_variable/wait_until/Y”=std::numpunct::falsenamehttp://www.cplusplus.com/reference/locale/numpunct/falsename/o”Qstd::shared_future::~shared_futurehttp://www.cplusplus.com/reference/future/shared_future/%7Eshared_future/:”ofwritehttp://www.cplusplus.com/reference/cstdio/fwrite/>”sc16rtombhttp://www.cplusplus.com/reference/cuchar/c16rtomb/K”/{std::basic_stringhttp://www.cplusplus.com/reference/string/basic_string/W”9std::locale::operator=http://www.cplusplus.com/reference/locale/locale/operator%3D/A”!ustd::minushttp://www.cplusplus.com/reference/functional/minus/r”U!std::regex_token_iterator::operator=http://www.cplusplus.com/reference/regex/regex_token_iterator/operator%3D/>”sswprintfhttp://www.cplusplus.com/reference/cwchar/swprintf/C”)qstd::map::~maphttp://www.cplusplus.com/reference/map/map/%7Emap/F”+ustd::vector::athttp://www.cplusplus.com/reference/vector/vector/at/=”qfesetenvhttp://www.cplusplus.com/reference/cfenv/fesetenv/5”itimehttp://www.cplusplus.com/reference/ctime/time/~”_/std::operator<< (mersenne_twister_engine)http://www.cplusplus.com/reference/random/mersenne_twister_engine/operator%3C%3C/7”katan2http://www.cplusplus.com/reference/cmath/atan2/f”Kstd::regex_traits::regex_traitshttp://www.cplusplus.com/reference/regex/regex_traits/regex_traits/]”? std::auto_ptr::operator->http://www.cplusplus.com/reference/memory/auto_ptr/operator-%3E/k”Sstd::make_error_condition (io_errc)http://www.cplusplus.com/reference/ios/io_errc/make_error_condition/[” ; std::vector::operator[]http://www.cplusplus.com/reference/vector/vector/operator%5B%5D/Y” =std::shared_future::waithttp://www.cplusplus.com/reference/future/shared_future/wait/g” Estd::forward_list::remove_ifhttp://www.cplusplus.com/reference/forward_list/forward_list/remove_if/L” /}std::setprecisionhttp://www.cplusplus.com/reference/iomanip/setprecision/:” offlushhttp://www.cplusplus.com/reference/cstdio/fflush/B”5c (locale.h)http://www.cplusplus.com/reference/clocale/v”W'std::operator<< (cauchy_distribution)http://www.cplusplus.com/reference/random/cauchy_distribution/operator%3C%3C/ .ƒx@ñªb ö « Y ÿ ² B ó ¹ F ÷   A ô © n ÖI ˜BåC¿}7ø„'„×[ Áqƒf”aaYstd::piecewise_linear_distribution::(ctor)http://www.cplusplus.com/reference/random/piecewise_linear_distribution/piecewise_linear_distribution/S”`7std::vector::capacityhttp://www.cplusplus.com/reference/vector/vector/capacity/M”_5ystd::ios::exceptionshttp://www.cplusplus.com/reference/ios/ios/exceptions/E”^'wstd::inserterhttp://www.cplusplus.com/reference/iterator/inserter/O”]3std::fstream::rdbufhttp://www.cplusplus.com/reference/fstream/fstream/rdbuf/y”\]'std::subtract_with_carry_engine::discardhttp://www.cplusplus.com/reference/random/subtract_with_carry_engine/discard/C”[!yquick_exithttp://www.cplusplus.com/reference/cstdlib/quick_exit/d”ZGstd::basic_stringbuf::seekposhttp://www.cplusplus.com/reference/sstream/basic_stringbuf/seekpos/;”Yqstrlenhttp://www.cplusplus.com/reference/cstring/strlen/b”X?std::function::operator()http://www.cplusplus.com/reference/functional/function/operator_func/Z”WAstd::multiset::upper_boundhttp://www.cplusplus.com/reference/set/multiset/upper_bound/q”VUstd::exponential_distribution::paramhttp://www.cplusplus.com/reference/random/exponential_distribution/param/<”Uqwcstollhttp://www.cplusplus.com/reference/cwchar/wcstoll/C”T#wstd::mem_fnhttp://www.cplusplus.com/reference/functional/mem_fn/?”S!qstd::beginhttp://www.cplusplus.com/reference/iterator/begin/B”R%sstd::ostreamhttp://www.cplusplus.com/reference/ostream/ostream/<”Qqwcstoldhttp://www.cplusplus.com/reference/cwchar/wcstold/I”P'at_quick_exithttp://www.cplusplus.com/reference/cstdlib/at_quick_exit/S”O5std::vector::~vectorhttp://www.cplusplus.com/reference/vector/vector/%7Evector/Z”NAstd::multimap::equal_rangehttp://www.cplusplus.com/reference/map/multimap/equal_range/S”M7std::thread::joinablehttp://www.cplusplus.com/reference/thread/thread/joinable/r”LO'std::unordered_map::get_allocatorhttp://www.cplusplus.com/reference/unordered_map/unordered_map/get_allocator/9”Kmlroundhttp://www.cplusplus.com/reference/cmath/lround/ ”JcAstd::independent_bits_engine::(constructor)http://www.cplusplus.com/reference/random/independent_bits_engine/independent_bits_engine/D”I%wstd::reversehttp://www.cplusplus.com/reference/algorithm/reverse/N”H-std::mem_fun_refhttp://www.cplusplus.com/reference/functional/mem_fun_ref/8”Gmfreadhttp://www.cplusplus.com/reference/cstdio/fread/H”F/ustd::list::removehttp://www.cplusplus.com/reference/list/list/remove/J”E/ystd::vector::backhttp://www.cplusplus.com/reference/vector/vector/back/\”D? std::stringbuf::underflowhttp://www.cplusplus.com/reference/sstream/stringbuf/underflow/T”C9std::sub_match::lengthhttp://www.cplusplus.com/reference/regex/sub_match/length/L”B3ystd::list::pop_backhttp://www.cplusplus.com/reference/list/list/pop_back/p”ASstd::basic_ifstream::basic_ifstreamhttp://www.cplusplus.com/reference/fstream/basic_ifstream/basic_ifstream/7”@klog1phttp://www.cplusplus.com/reference/cmath/log1p/L”?1{std::vector::erasehttp://www.cplusplus.com/reference/vector/vector/erase/m”>Qstd::shuffle_order_engine::discardhttp://www.cplusplus.com/reference/random/shuffle_order_engine/discard/J”=/ystd::string::sizehttp://www.cplusplus.com/reference/string/string/size/W”<;std::future_error::codehttp://www.cplusplus.com/reference/future/future_error/code/O”;-std::common_typehttp://www.cplusplus.com/reference/type_traits/common_type/H”:){std::sort_heaphttp://www.cplusplus.com/reference/algorithm/sort_heap/i”9Gstd::forward_list::push_fronthttp://www.cplusplus.com/reference/forward_list/forward_list/push_front/E”8%ystd::bind2ndhttp://www.cplusplus.com/reference/functional/bind2nd/D”7%wstd::none_ofhttp://www.cplusplus.com/reference/algorithm/none_of/L”63ystd::list::max_sizehttp://www.cplusplus.com/reference/list/list/max_size/5”5iceilhttp://www.cplusplus.com/reference/cmath/ceil/”4e5std::operator>> (linear_congruential_engine)http://www.cplusplus.com/reference/random/linear_congruential_engine/operator%3E%3E/ )ïÅGý¸v$ Ó e Æ x & ¶ W ô ” Y Ë i !Ô†Â(Ûkeψ¬HÊbïŠMížep• M%std::unordered_multimap::reservehttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/reserve/e• Istd::packaged_task::get_futurehttp://www.cplusplus.com/reference/future/packaged_task/get_future/{•[-std::lognormal_distribution::operator()http://www.cplusplus.com/reference/random/lognormal_distribution/operator%28%29/a•Cstd::shared_ptr::operator->http://www.cplusplus.com/reference/memory/shared_ptr/operator-%3E/c•Astd::is_trivially_copyablehttp://www.cplusplus.com/reference/type_traits/is_trivially_copyable/s•W!std::uniform_real_distribution::resethttp://www.cplusplus.com/reference/random/uniform_real_distribution/reset/D•)sstd::sub_matchhttp://www.cplusplus.com/reference/regex/sub_match/J•/ystd::ctype::tablehttp://www.cplusplus.com/reference/locale/ctype/table/F•)wstd::wofstreamhttp://www.cplusplus.com/reference/fstream/wofstream/5•iexp2http://www.cplusplus.com/reference/cmath/exp2/d•Estd::basic_streambuf::getlochttp://www.cplusplus.com/reference/streambuf/basic_streambuf/getloc/d”Gstd::basic_ostringstream::strhttp://www.cplusplus.com/reference/sstream/basic_ostringstream/str/m”~Qstd::uses_allocatorhttp://www.cplusplus.com/reference/future/packaged_task/uses_allocator/J”}+}std::wstreambufhttp://www.cplusplus.com/reference/streambuf/wstreambuf/V”|;std::hash>http://www.cplusplus.com/reference/vector/vector-bool/hash/>”{swmemmovehttp://www.cplusplus.com/reference/cwchar/wmemmove/U”z9std::char_traits::copyhttp://www.cplusplus.com/reference/string/char_traits/copy/i”yMstd::weibull_distribution::resethttp://www.cplusplus.com/reference/random/weibull_distribution/reset/K”x3wstd::multiset::rendhttp://www.cplusplus.com/reference/set/multiset/rend/J”w/ystd::vector::swaphttp://www.cplusplus.com/reference/vector/vector/swap/E”v1mstd::chrono::hourshttp://www.cplusplus.com/reference/chrono/hours/_”uC std::moneypunct::pos_formathttp://www.cplusplus.com/reference/locale/moneypunct/pos_format/>”tsvfwscanfhttp://www.cplusplus.com/reference/cwchar/vfwscanf/J”s)std::result_ofhttp://www.cplusplus.com/reference/type_traits/result_of/8”rmerrnohttp://www.cplusplus.com/reference/cerrno/errno/]”qIstd::chrono::system_clock::nowhttp://www.cplusplus.com/reference/chrono/system_clock/now/`”p=std::unordered_set::findhttp://www.cplusplus.com/reference/unordered_set/unordered_set/find/\”oA std::uses_allocatorhttp://www.cplusplus.com/reference/queue/queue/uses_allocator/m”nMstd::reverse_iterator::operator=http://www.cplusplus.com/reference/iterator/reverse_iterator/operator%3D/O”m7{std::ios_base::xallochttp://www.cplusplus.com/reference/ios/ios_base/xalloc/K”l+std::less_equalhttp://www.cplusplus.com/reference/functional/less_equal/W”k;std::allocator::addresshttp://www.cplusplus.com/reference/memory/allocator/address/B”j5c (signal.h)http://www.cplusplus.com/reference/csignal/k”iMstd::basic_string::~basic_stringhttp://www.cplusplus.com/reference/string/basic_string/%7Ebasic_string/N”h-std::logical_nothttp://www.cplusplus.com/reference/functional/logical_not/O”g3std::ostream::writehttp://www.cplusplus.com/reference/ostream/ostream/write/?”f'kabs (cstdlib)http://www.cplusplus.com/reference/cstdlib/abs/B”e5c (stdlib.h)http://www.cplusplus.com/reference/cstdlib/G”d+wstd::mt19937_64http://www.cplusplus.com/reference/random/mt19937_64/{”c_)std::piecewise_linear_distribution::resethttp://www.cplusplus.com/reference/random/piecewise_linear_distribution/reset/8”bgstd::gethttp://www.cplusplus.com/reference/tuple/get/ ¼)sð³SËT\Ät ¬ f à }  Û šÒ à l  Î ˜ ,sÉ‘.ÉŠ=Åj.î§EèU°6¼¼F•%3mstd::asin (complex)http://www.cplusplus.com/reference/complex/asin/ 0•o!std::relational operators (fisher_f_distribution)http://www.cplusplus.com/reference/random/fisher_f_distribution/operators/t•U%std::operator>> (gamma_distribution)http://www.cplusplus.com/reference/random/gamma_distribution/operator%3E%3E/6•cstd::maphttp://www.cplusplus.com/reference/map/map/L•1{std::future::validhttp://www.cplusplus.com/reference/future/future/valid/]• A std::thread::native_handlehttp://www.cplusplus.com/reference/thread/thread/native_handle/:• ofputwshttp://www.cplusplus.com/reference/cwchar/fputws/b• ?std::make_error_conditionhttp://www.cplusplus.com/reference/system_error/make_error_condition/•3gIstd::uniform_real_distribution::(constructor)http://www.cplusplus.com/reference/random/uniform_real_distribution/uniform_real_distribution/Z•2= std::basic_istream::synchttp://www.cplusplus.com/reference/istream/basic_istream/sync/_•1=std::forward_list::mergehttp://www.cplusplus.com/reference/forward_list/forward_list/merge/D•0)sstd::ratio_addhttp://www.cplusplus.com/reference/ratio/ratio_add/=•/sstrtoldhttp://www.cplusplus.com/reference/cstdlib/strtold/9•.olldivhttp://www.cplusplus.com/reference/cstdlib/lldiv/X•-9 std::streambuf::xsputnhttp://www.cplusplus.com/reference/streambuf/streambuf/xsputn/u•,S)std::operators (unordered_multimap)http://www.cplusplus.com/reference/unordered_map/unordered_multimap/operators/J•+/ystd::vector::datahttp://www.cplusplus.com/reference/vector/vector/data/<•*qwprintfhttp://www.cplusplus.com/reference/cwchar/wprintf/b•)Estd::return_temporary_bufferhttp://www.cplusplus.com/reference/memory/return_temporary_buffer/`•(E std::match_results::max_sizehttp://www.cplusplus.com/reference/regex/match_results/max_size/5•'ahttp://www.cplusplus.com/reference/atomic/`•&Cstd::basic_filebuf::seekoffhttp://www.cplusplus.com/reference/fstream/basic_filebuf/seekoff/i•$Istd::random_device::operator()http://www.cplusplus.com/reference/random/random_device/operator%28%29/3•#_http://www.cplusplus.com/reference/queue/3•"gerfhttp://www.cplusplus.com/reference/cmath/erf/e•!Istd::weibull_distribution::minhttp://www.cplusplus.com/reference/random/weibull_distribution/min/T• 3basic_string::c_strhttp://www.cplusplus.com/reference/string/basic_string/c_str/j•Kstd::operator<< (basic_ostream)http://www.cplusplus.com/reference/ostream/basic_ostream/operator-free/žj>•ssnprintfhttp://www.cplusplus.com/reference/cstdio/snprintf/?•sstd::crefhttp://www.cplusplus.com/reference/functional/cref/]•;std::atomic::operator++http://www.cplusplus.com/reference/atomic/atomic/operatorplusplus/C•#wstd::bit_orhttp://www.cplusplus.com/reference/functional/bit_or/C•+ostd::ios::imbuehttp://www.cplusplus.com/reference/ios/ios/imbue/Z•?std::deque::get_allocatorhttp://www.cplusplus.com/reference/deque/deque/get_allocator/C•'sstd::numpuncthttp://www.cplusplus.com/reference/locale/numpunct/`•=std::unordered_set::sizehttp://www.cplusplus.com/reference/unordered_set/unordered_set/size/b•Cstd::basic_streambuf::sgetnhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/sgetn/M•1}std::filebuf::synchttp://www.cplusplus.com/reference/fstream/filebuf/sync/;•qmemcpyhttp://www.cplusplus.com/reference/cstring/memcpy/W•9std::num_get::~num_gethttp://www.cplusplus.com/reference/locale/num_get/%7Enum_get/?•1a (ctype.h)http://www.cplusplus.com/reference/cctype/b ¼ö¥Uùƒ°6¼¯`Û…C ° i  Ê ? Ò o & Ö ˆ + ì ª 7ÅUÏpsüµ})ã¢^µåw•<U+std::is_trivially_copy_constructiblehttp://www.cplusplus.com/reference/type_traits/is_trivially_copy_constructible/w•;U+std::is_trivially_move_constructiblehttp://www.cplusplus.com/reference/type_traits/is_trivially_move_constructible/i•:Mstd::student_t_distribution::minhttp://www.cplusplus.com/reference/random/student_t_distribution/min/d•9Astd::unordered_map::inserthttp://www.cplusplus.com/reference/unordered_map/unordered_map/insert/s•8W!std::linear_congruential_engine::seedhttp://www.cplusplus.com/reference/random/linear_congruential_engine/seed/Y•7?std::forward_iterator_taghttp://www.cplusplus.com/reference/iterator/ForwardIterator/M•61}std::mutex::~mutexhttp://www.cplusplus.com/reference/mutex/mutex/%7Emutex/N•53}std::string::stringhttp://www.cplusplus.com/reference/string/string/string/\•4? std::basic_ostream::writehttp://www.cplusplus.com/reference/ostream/basic_ostream/write/m•RMstd::ostream_iterator::operator*http://www.cplusplus.com/reference/iterator/ostream_iterator/operator%2A/o•QSstd::basic_string::find_last_not_ofhttp://www.cplusplus.com/reference/string/basic_string/find_last_not_of/p•PM%std::unordered_set::bucket_counthttp://www.cplusplus.com/reference/unordered_set/unordered_set/bucket_count/?•Oustrtoullhttp://www.cplusplus.com/reference/cstdlib/strtoull/<•Nqiscntrlhttp://www.cplusplus.com/reference/cctype/iscntrl/Z•M?std::match_results::beginhttp://www.cplusplus.com/reference/regex/match_results/begin/K•L3wstd::multimap::swaphttp://www.cplusplus.com/reference/map/multimap/swap/M•K5ystd::multiset::counthttp://www.cplusplus.com/reference/set/multiset/count/F•J%{std::is_samehttp://www.cplusplus.com/reference/type_traits/is_same/`•I?std::streambuf::operator=http://www.cplusplus.com/reference/streambuf/streambuf/operator%3D/j•HGstd::unordered_multiset::swaphttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/swap/•Gk5std::shuffle_order_engine::shuffle_order_enginehttp://www.cplusplus.com/reference/random/shuffle_order_engine/shuffle_order_engine/O•F/std::domain_errorhttp://www.cplusplus.com/reference/stdexcept/domain_error/J•E1wstd::list::emplacehttp://www.cplusplus.com/reference/list/list/emplace/D•D'ustd::wistreamhttp://www.cplusplus.com/reference/istream/wistream/•CeKstd::condition_variable::~condition_variablehttp://www.cplusplus.com/reference/condition_variable/condition_variable/%7Econdition_variable/?•Butowupperhttp://www.cplusplus.com/reference/cwctype/towupper/S•A5std::locale::~localehttp://www.cplusplus.com/reference/locale/locale/%7Elocale/=•@qstrftimehttp://www.cplusplus.com/reference/ctime/strftime/B•?)ostd::boolalphahttp://www.cplusplus.com/reference/ios/boolalpha/L•>-std::rotate_copyhttp://www.cplusplus.com/reference/algorithm/rotate_copy/N•=3}std::string::inserthttp://www.cplusplus.com/reference/string/string/insert/ .}Êk/ñ. Ý … F ã { 0 ½ b  Ò  Á ‚ Bß P †Eìƒ:Ö}£dÞœNý&΄(ÈH– 5ostd::tanh (valarray)http://www.cplusplus.com/reference/valarray/tanh/]–A std::basic_string::crbeginhttp://www.cplusplus.com/reference/string/basic_string/crbegin/Y–=std::allocator::max_sizehttp://www.cplusplus.com/reference/memory/allocator/max_size/G–-ustd::stack::swaphttp://www.cplusplus.com/reference/stack/stack/swap/U–9std::basic_string::endhttp://www.cplusplus.com/reference/string/basic_string/end/d–Astd::unordered_set::rehashhttp://www.cplusplus.com/reference/unordered_set/unordered_set/rehash/m–Qstd::mersenne_twister_engine::seedhttp://www.cplusplus.com/reference/random/mersenne_twister_engine/seed/N–3}std::weak_ptr::lockhttp://www.cplusplus.com/reference/memory/weak_ptr/lock/K–3wstd::basic_ios::badhttp://www.cplusplus.com/reference/ios/basic_ios/bad/?–#ostd::launchhttp://www.cplusplus.com/reference/future/launch/–e1std::atomic_compare_exchange_strong_explicithttp://www.cplusplus.com/reference/atomic/atomic_compare_exchange_strong_explicit/<– qislowerhttp://www.cplusplus.com/reference/cctype/islower/b– Estd::enable_shared_from_thishttp://www.cplusplus.com/reference/memory/enable_shared_from_this/t– W#std::regex_token_iterator::operator->http://www.cplusplus.com/reference/regex/regex_token_iterator/operator-%3E/T– 3std::mem_fun1_ref_thttp://www.cplusplus.com/reference/functional/mem_fun1_ref_t/a–Estd::numpunct::decimal_pointhttp://www.cplusplus.com/reference/locale/numpunct/decimal_point/F–+ustd::defer_lockhttp://www.cplusplus.com/reference/mutex/defer_lock/f–Gstd::basic_streambuf::sungetchttp://www.cplusplus.com/reference/streambuf/basic_streambuf/sungetc/V–;std::vector::swaphttp://www.cplusplus.com/reference/vector/vector-bool/swap/>–!ostd::polarhttp://www.cplusplus.com/reference/complex/polar/–c5std::linear_congruential_engine::operator()http://www.cplusplus.com/reference/random/linear_congruential_engine/operator%28%29/@–'mstd::multisethttp://www.cplusplus.com/reference/set/multiset/M–5ystd::multiset::crendhttp://www.cplusplus.com/reference/set/multiset/crend/<–qwcsncpyhttp://www.cplusplus.com/reference/cwchar/wcsncpy/`•Cstd::geometric_distributionhttp://www.cplusplus.com/reference/random/geometric_distribution/=•~slongjmphttp://www.cplusplus.com/reference/csetjmp/longjmp/<•}qisalphahttp://www.cplusplus.com/reference/cctype/isalpha/?•|snearbyinthttp://www.cplusplus.com/reference/cmath/nearbyint/ •{y+std::relational operators (linear_congruential_engine)http://www.cplusplus.com/reference/random/linear_congruential_engine/operators/?•zumbstowcshttp://www.cplusplus.com/reference/cstdlib/mbstowcs/A•y)mhttp://www.cplusplus.com/reference/system_error/I•x/wstd::queue::emptyhttp://www.cplusplus.com/reference/queue/queue/empty/X•w;std::float_denorm_stylehttp://www.cplusplus.com/reference/limits/float_denorm_style/p•vM%std::unordered_multimap::emplacehttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/emplace/H•u){std::exceptionhttp://www.cplusplus.com/reference/exception/exception/e•tIstd::lognormal_distribution::mhttp://www.cplusplus.com/reference/random/lognormal_distribution/m/`•sE std::regex_traits::transformhttp://www.cplusplus.com/reference/regex/regex_traits/transform/<•rmstd::normhttp://www.cplusplus.com/reference/complex/norm/U•q9std::char_traits::movehttp://www.cplusplus.com/reference/string/char_traits/move/N•p1std::basic_ostreamhttp://www.cplusplus.com/reference/ostream/basic_ostream/P•o5std::char_traits::lthttp://www.cplusplus.com/reference/string/char_traits/lt/m•nK!std::is_trivially_constructiblehttp://www.cplusplus.com/reference/type_traits/is_trivially_constructible/;•mqatexithttp://www.cplusplus.com/reference/cstdlib/atexit/9•loatollhttp://www.cplusplus.com/reference/cstdlib/atoll/\•k? std::get_temporary_bufferhttp://www.cplusplus.com/reference/memory/get_temporary_buffer/3•j_http://www.cplusplus.com/reference/stack/ .h¾Kö”P ¹ 9 ä – / Ø i  Ô u / Ò /ë}-ô³\Åk ÀV÷ŽJãpåŠBù›(Òhg–EKstd::normal_distribution::paramhttp://www.cplusplus.com/reference/random/normal_distribution/param/S–D1std::is_arithmetichttp://www.cplusplus.com/reference/type_traits/is_arithmetic/p–CQ!std::basic_istream::~basic_istreamhttp://www.cplusplus.com/reference/istream/basic_istream/%7Ebasic_istream/[–B? std::basic_ios::operator!http://www.cplusplus.com/reference/ios/basic_ios/operator_not/F–A)wstd::stringbufhttp://www.cplusplus.com/reference/sstream/stringbuf/E–@%ystd::ptr_funhttp://www.cplusplus.com/reference/functional/ptr_fun/X–?5 std::error_conditionhttp://www.cplusplus.com/reference/system_error/error_condition/–>e;std::error_category::default_error_conditionhttp://www.cplusplus.com/reference/system_error/error_category/default_error_condition/p–=M%std::unordered_set::emplace_hinthttp://www.cplusplus.com/reference/unordered_set/unordered_set/emplace_hint/d–<Gstd::basic_stringstream::swaphttp://www.cplusplus.com/reference/sstream/basic_stringstream/swap/A–;!ufegetroundhttp://www.cplusplus.com/reference/cfenv/fegetround/f–:Istd::regex_iterator::operator=http://www.cplusplus.com/reference/regex/regex_iterator/operator%3D/\–9A std::match_results::formathttp://www.cplusplus.com/reference/regex/match_results/format/g–8Kstd::moneypunct::do_curr_symbolhttp://www.cplusplus.com/reference/locale/moneypunct/do_curr_symbol/G–7-ustd::tuple::swaphttp://www.cplusplus.com/reference/tuple/tuple/swap/^–6A std::basic_istream::sentryhttp://www.cplusplus.com/reference/istream/basic_istream/sentry/W–5=std::output_iterator_taghttp://www.cplusplus.com/reference/iterator/OutputIterator/<–4-_ (time.h)http://www.cplusplus.com/reference/ctime/U–33 atomic_is_lock_freehttp://www.cplusplus.com/reference/atomic/atomic_is_lock_free/T–25std::streambuf::setghttp://www.cplusplus.com/reference/streambuf/streambuf/setg/>–1sisxdigithttp://www.cplusplus.com/reference/cctype/isxdigit/6–0kputchttp://www.cplusplus.com/reference/cstdio/putc/M–/1}std::messages_basehttp://www.cplusplus.com/reference/locale/messages_base/k–.E#std::initializer_list::beginhttp://www.cplusplus.com/reference/initializer_list/initializer_list/begin/A–-)mhttp://www.cplusplus.com/reference/forward_list/O–,7{std::basic_ios::rdbufhttp://www.cplusplus.com/reference/ios/basic_ios/rdbuf/N–+3}std::vector::resizehttp://www.cplusplus.com/reference/vector/vector/resize/Z–*= std::basic_filebuf::swaphttp://www.cplusplus.com/reference/fstream/basic_filebuf/swap/C–)'sstd::seed_seqhttp://www.cplusplus.com/reference/random/seed_seq/\–(? std::basic_ifstream::swaphttp://www.cplusplus.com/reference/fstream/basic_ifstream/swap/B–')ostd::streamoffhttp://www.cplusplus.com/reference/ios/streamoff/M–&+std::is_pointerhttp://www.cplusplus.com/reference/type_traits/is_pointer/l–%I!std::unordered_multimap::beginhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/begin/T–$7std::istream::putbackhttp://www.cplusplus.com/reference/istream/istream/putback/d–#Istd::recursive_mutex::try_lockhttp://www.cplusplus.com/reference/mutex/recursive_mutex/try_lock/K–"3wstd::multiset::swaphttp://www.cplusplus.com/reference/set/multiset/swap/R–!3std::front_inserterhttp://www.cplusplus.com/reference/iterator/front_inserter/}– ]/std::mersenne_twister_engine::operator()http://www.cplusplus.com/reference/random/mersenne_twister_engine/operator%28%29/G–/sstd::ios::rdstatehttp://www.cplusplus.com/reference/ios/ios/rdstate/J–/ystd::locale::namehttp://www.cplusplus.com/reference/locale/locale/name/A–)mstd::map::cendhttp://www.cplusplus.com/reference/map/map/cend/_–Astd::shared_ptr::operator*http://www.cplusplus.com/reference/memory/shared_ptr/operator%2A/R–) std::cv_statushttp://www.cplusplus.com/reference/condition_variable/cv_status/3–_http://www.cplusplus.com/reference/deque/:–owcsstrhttp://www.cplusplus.com/reference/cwchar/wcsstr/?–slocaltimehttp://www.cplusplus.com/reference/ctime/localtime/ 9+¼²e%ï˜W Ö k / á ’ H ä Œ¼ M Ì ” D ú   ,ÄNë há‰6þ¼l ž6Érã|Í}9z–U[+std::operator<< (discrete_distribution)http://www.cplusplus.com/reference/random/discrete_distribution/operator%3C%3C/</x–cY)std::operator>> (discard_block_engine)http://www.cplusplus.com/reference/random/discard_block_engine/operator%3E%3E/6–pcstd::hexhttp://www.cplusplus.com/reference/ios/hex/S–o7std::codecvt::unshifthttp://www.cplusplus.com/reference/locale/codecvt/unshift/T–n7std::atomic_fetch_xorhttp://www.cplusplus.com/reference/atomic/atomic_fetch_xor/j–mOstd::match_results::get_allocatorhttp://www.cplusplus.com/reference/regex/match_results/get_allocator/e–lIstd::wstring_convert::to_byteshttp://www.cplusplus.com/reference/locale/wstring_convert/to_bytes/h–kKstd::atomic_flag_clear_explicithttp://www.cplusplus.com/reference/atomic/atomic_flag_clear_explicit/`–jCstd::bernoulli_distributionhttp://www.cplusplus.com/reference/random/bernoulli_distribution/M–i5ystd::multimap::clearhttp://www.cplusplus.com/reference/map/multimap/clear/?–h#ostd::threadhttp://www.cplusplus.com/reference/thread/thread/5–gisqrthttp://www.cplusplus.com/reference/cmath/sqrt/P–f5std::string::crbeginhttp://www.cplusplus.com/reference/string/string/crbegin/U–e9std::weak_ptr::expiredhttp://www.cplusplus.com/reference/memory/weak_ptr/expired/X–d5 std::make_error_codehttp://www.cplusplus.com/reference/system_error/make_error_code/dH–b/ustd::list::assignhttp://www.cplusplus.com/reference/list/list/assign/`–aG std::ios_base::event_callbackhttp://www.cplusplus.com/reference/ios/ios_base/event_callback/3–`gtanhttp://www.cplusplus.com/reference/cmath/tan/<–_qwcsncmphttp://www.cplusplus.com/reference/cwchar/wcsncmp/f–^Gstd::basic_filebuf::operator=http://www.cplusplus.com/reference/fstream/basic_filebuf/operator%3D/q–]_std::relational operators (move_iterator)http://www.cplusplus.com/reference/iterator/move_iterator/operators/W–\;std::bad_weak_ptr::whathttp://www.cplusplus.com/reference/memory/bad_weak_ptr/what/G–['{FE_ALL_EXCEPThttp://www.cplusplus.com/reference/cfenv/FE_ALL_EXCEPT/M–Z5ystd::multiset::beginhttp://www.cplusplus.com/reference/set/multiset/begin/5–Yifminhttp://www.cplusplus.com/reference/cmath/fmin/<–Xqtmpfilehttp://www.cplusplus.com/reference/cstdio/tmpfile/?–Wuiswblankhttp://www.cplusplus.com/reference/cwctype/iswblank/<–V%gInput/Outputhttp://www.cplusplus.com/reference/iolibrary/U–T9std::atomic::fetch_subhttp://www.cplusplus.com/reference/atomic/atomic/fetch_sub/a–S?std::add_lvalue_referencehttp://www.cplusplus.com/reference/type_traits/add_lvalue_reference/G–R+wstd::pair::pairhttp://www.cplusplus.com/reference/utility/pair/pair/L–Q1{std::vector::clearhttp://www.cplusplus.com/reference/vector/vector/clear/K–P/{std::ostream::puthttp://www.cplusplus.com/reference/ostream/ostream/put/9–Oodiv_thttp://www.cplusplus.com/reference/cstdlib/div_t/h–NMstd::unique_lock::try_lock_untilhttp://www.cplusplus.com/reference/mutex/unique_lock/try_lock_until/5–Miasinhttp://www.cplusplus.com/reference/cmath/asin/F–L-sstd::list::emptyhttp://www.cplusplus.com/reference/list/list/empty/>–K%kstd::io_errchttp://www.cplusplus.com/reference/ios/io_errc/T–J5std::streambuf::pptrhttp://www.cplusplus.com/reference/streambuf/streambuf/pptr/3–I_http://www.cplusplus.com/reference/ratio/=–Hswctranshttp://www.cplusplus.com/reference/cwctype/wctrans/J–G/ystd::string::copyhttp://www.cplusplus.com/reference/string/string/copy/K–F+std::multiplieshttp://www.cplusplus.com/reference/functional/multiplies/ C&ð G£Sj«f ø © ß l ¼ L ü ‹ . Î q !¥'ÍŽP­qÛ–X¬W™,Æ^^|–|]-std::operator<< (lognormal_distribution)http://www.cplusplus.com/reference/random/lognormal_distribution/operator%3C%3C/A–u)mstd::ios::fillhttp://www.cplusplus.com/reference/ios/ios/fill/M–t/std::swap (queue)http://www.cplusplus.com/reference/queue/queue/swap-free/J–s/ystd::ratio_dividehttp://www.cplusplus.com/reference/ratio/ratio_divide/d–qGstd::match_results::operator=http://www.cplusplus.com/reference/regex/match_results/operator%3D/R—5std::time_put_bynamehttp://www.cplusplus.com/reference/locale/time_put_byname/d—Estd::basic_streambuf::xsgetnhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/xsgetn/B—)ostd::basic_ioshttp://www.cplusplus.com/reference/ios/basic_ios/;—kstd::stolhttp://www.cplusplus.com/reference/string/stol/B—)ostd::noshowposhttp://www.cplusplus.com/reference/ios/noshowpos/?—'kstd::map::endhttp://www.cplusplus.com/reference/map/map/end/Q—7std::deque::push_backhttp://www.cplusplus.com/reference/deque/deque/push_back/9—mscalbnhttp://www.cplusplus.com/reference/cmath/scalbn/W—;std::numpunct::numpuncthttp://www.cplusplus.com/reference/locale/numpunct/numpunct/F— )wstd::put_moneyhttp://www.cplusplus.com/reference/iomanip/put_money/;— qldiv_thttp://www.cplusplus.com/reference/cstdlib/ldiv_t/<— qisprinthttp://www.cplusplus.com/reference/cctype/isprint/W— ;std::atomic_flag::clearhttp://www.cplusplus.com/reference/atomic/atomic_flag/clear/{— Y/std::reference_wrapper::operator type&http://www.cplusplus.com/reference/functional/reference_wrapper/operator_typeref/y—W-std::error_condition::error_conditionhttp://www.cplusplus.com/reference/system_error/error_condition/error_condition/M—5ystd::multimap::erasehttp://www.cplusplus.com/reference/map/multimap/erase/Z—?std::match_results::readyhttp://www.cplusplus.com/reference/regex/match_results/ready/]—A std::time_get::do_get_datehttp://www.cplusplus.com/reference/locale/time_get/do_get_date/Z—= std::undeclare_reachablehttp://www.cplusplus.com/reference/memory/undeclare_reachable/n—K#std::unordered_multimap::rehashhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/rehash/M—1}std::istream::swaphttp://www.cplusplus.com/reference/istream/istream/swap/m—Qstd::uniform_int_distribution::minhttp://www.cplusplus.com/reference/random/uniform_int_distribution/min/a—Estd::gamma_distribution::maxhttp://www.cplusplus.com/reference/random/gamma_distribution/max/I–/wstd::mutex::mutexhttp://www.cplusplus.com/reference/mutex/mutex/mutex/p–~Sstd::atomic_compare_exchange_stronghttp://www.cplusplus.com/reference/atomic/atomic_compare_exchange_strong/a–}Estd::time_get::do_date_orderhttp://www.cplusplus.com/reference/locale/time_get/do_date_order/_–r=std::is_lvalue_referencehttp://www.cplusplus.com/reference/type_traits/is_lvalue_reference/L–{1{std::messages::gethttp://www.cplusplus.com/reference/locale/messages/get/k–zOstd::mersenne_twister_engine::maxhttp://www.cplusplus.com/reference/random/mersenne_twister_engine/max/B–y%sstd::setbasehttp://www.cplusplus.com/reference/iomanip/setbase/q–xUstd::exponential_distribution::resethttp://www.cplusplus.com/reference/random/exponential_distribution/reset/H–w'}std::is_unionhttp://www.cplusplus.com/reference/type_traits/is_union/–viMstd::extreme_value_distribution::(constructor)http://www.cplusplus.com/reference/random/extreme_value_distribution/extreme_value_distribution/ <!\ÿ†Ây›.È`¾á§\ æ © 1 ä ¨ b ÿ Ÿ U ÷ Ž * º i Ø“Yˆ7áŒ,ç.ã…»h—%q#std::relational operators (geometric_distribution)http://www.cplusplus.com/reference/random/geometric_distribution/operators/|—"]-std::operator<< (geometric_distribution)http://www.cplusplus.com/reference/random/geometric_distribution/operator%3C%3C/e— Istd::moneypunct::positive_signhttp://www.cplusplus.com/reference/locale/moneypunct/positive_sign/c—Istd::operators (match_results)http://www.cplusplus.com/reference/regex/match_results/operators/j—Kstd::basic_streambuf::pubsetbufhttp://www.cplusplus.com/reference/streambuf/basic_streambuf/pubsetbuf/s—]std::relational operators (forward_list)http://www.cplusplus.com/reference/forward_list/forward_list/operators/e—Cstd::forward_list::max_sizehttp://www.cplusplus.com/reference/forward_list/forward_list/max_size/F—'ystd::mismatchhttp://www.cplusplus.com/reference/algorithm/mismatch/U—9std::bitset::to_stringhttp://www.cplusplus.com/reference/bitset/bitset/to_string/i—Y std::relational operators (unique_ptr)http://www.cplusplus.com/reference/memory/unique_ptr/operators/v—[#std::make_error_condition (future_errc)http://www.cplusplus.com/reference/future/future_errc/make_error_condition/W—9std::thread::operator=http://www.cplusplus.com/reference/thread/thread/operator%3D/7—7chttp://www.cplusplus.com/reference/sstream/B—65c (setjmp.h)http://www.cplusplus.com/reference/csetjmp/D—5+qstd::streamsizehttp://www.cplusplus.com/reference/ios/streamsize/G—4/sstd::set::crbeginhttp://www.cplusplus.com/reference/set/set/crbegin/N—33}std::ctype::tolowerhttp://www.cplusplus.com/reference/locale/ctype/tolower/m—2Ostd::reverse_iterator::operator--http://www.cplusplus.com/reference/iterator/reverse_iterator/operator--/a—1Estd::numpunct::thousands_sephttp://www.cplusplus.com/reference/locale/numpunct/thousands_sep/f—0Istd::atomic_fetch_xor_explicithttp://www.cplusplus.com/reference/atomic/atomic_fetch_xor_explicit/[—/; std::locale::operator!=http://www.cplusplus.com/reference/locale/locale/operator%21%3D/G—.'{feclearexcepthttp://www.cplusplus.com/reference/cfenv/feclearexcept/]—-A std::basic_string::comparehttp://www.cplusplus.com/reference/string/basic_string/compare/`—,E std::match_results::positionhttp://www.cplusplus.com/reference/regex/match_results/position/C—+#wFE_DOWNWARDhttp://www.cplusplus.com/reference/cfenv/FE_DOWNWARD/9—*o_Exithttp://www.cplusplus.com/reference/cstdlib/_Exit/J—)-{std::partial_sumhttp://www.cplusplus.com/reference/numeric/partial_sum/u—(O-std::operator+ (reverse_iterator)http://www.cplusplus.com/reference/iterator/reverse_iterator/operator_plus-free/:—'ostdouthttp://www.cplusplus.com/reference/cstdio/stdout/S—&1std::is_assignablehttp://www.cplusplus.com/reference/type_traits/is_assignable/Xke—$Istd::student_t_distribution::nhttp://www.cplusplus.com/reference/random/student_t_distribution/n/F—#)wstd::get_moneyhttp://www.cplusplus.com/reference/iomanip/get_money/f?—!utowlowerhttp://www.cplusplus.com/reference/cwctype/towlower/ u´Y¯u7—Schttp://www.cplusplus.com/reference/numeric/T—R/ operator delete[]http://www.cplusplus.com/reference/new/operator%20delete%5B%5D/P—Q5std::vector::crbeginhttp://www.cplusplus.com/reference/vector/vector/crbegin/X—P9 std::deque::operator[]http://www.cplusplus.com/reference/deque/deque/operator%5B%5D/I—O/wstd::deque::erasehttp://www.cplusplus.com/reference/deque/deque/erase/ z# Ù z . à ‚  ¶ X Ë“Oà,Þj·ºþ©WÃd ±V¾jÞZ…*?std::priority_queue::swaphttp://www.cplusplus.com/reference/queue/priority_queue/swap/;…)qmemchrhttp://www.cplusplus.com/reference/cstring/memchr/K…(3wstd::multimap::rendhttp://www.cplusplus.com/reference/map/multimap/rend/Q…'3std::wostringstreamhttp://www.cplusplus.com/reference/sstream/wostringstream/P…&5std::num_put::do_puthttp://www.cplusplus.com/reference/locale/num_put/do_put/B…%)ostd::nothrow_thttp://www.cplusplus.com/reference/new/nothrow_t/X…$=std::regex_traits::valuehttp://www.cplusplus.com/reference/regex/regex_traits/value/X…#=std::multimap::~multimaphttp://www.cplusplus.com/reference/map/multimap/%7Emultimap/U…"9std::ctype::do_scan_ishttp://www.cplusplus.com/reference/locale/ctype/do_scan_is/\…!? std::basic_istream::ungethttp://www.cplusplus.com/reference/istream/basic_istream/unget/U… 9std::atomic::fetch_andhttp://www.cplusplus.com/reference/atomic/atomic/fetch_and/9…mgmtimehttp://www.cplusplus.com/reference/ctime/gmtime/O…3std::ostream::flushhttp://www.cplusplus.com/reference/ostream/ostream/flush/R…5std::time_get_bynamehttp://www.cplusplus.com/reference/locale/time_get_byname/y…Y+std::fisher_f_distribution::operator()http://www.cplusplus.com/reference/random/fisher_f_distribution/operator%28%29/ B=Z…; std::streambuf::sungetchttp://www.cplusplus.com/reference/streambuf/streambuf/sungetc/S…7std::collate::comparehttp://www.cplusplus.com/reference/locale/collate/compare/q…Ustd::chi_squared_distribution::resethttp://www.cplusplus.com/reference/random/chi_squared_distribution/reset/K…/{std::atomic_storehttp://www.cplusplus.com/reference/atomic/atomic_store/R…5std::istream::ignorehttp://www.cplusplus.com/reference/istream/istream/ignore/\…A std::match_results::prefixhttp://www.cplusplus.com/reference/regex/match_results/prefix/l…I!std::unordered_multimap::counthttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/count/A…%qstd::isalphahttp://www.cplusplus.com/reference/locale/isalpha/5…itanhhttp://www.cplusplus.com/reference/cmath/tanh/?…#ostd::atomichttp://www.cplusplus.com/reference/atomic/atomic/H…-wstd::ratio_equalhttp://www.cplusplus.com/reference/ratio/ratio_equal/[…? std::allocator::constructhttp://www.cplusplus.com/reference/memory/allocator/construct/J…/ystd::num_put::puthttp://www.cplusplus.com/reference/locale/num_put/put/|… Y1std::unordered_multiset::get_allocatorhttp://www.cplusplus.com/reference/unordered_set/unordered_multiset/get_allocator/[… = std::move_iterator::basehttp://www.cplusplus.com/reference/iterator/move_iterator/base/K… 1ystd::array::rbeginhttp://www.cplusplus.com/reference/array/array/rbegin/I… /wstd::tuple::tuplehttp://www.cplusplus.com/reference/tuple/tuple/tuple/\… ? std::basic_ofstream::openhttp://www.cplusplus.com/reference/fstream/basic_ofstream/open/f…Istd::timed_mutex::~timed_mutexhttp://www.cplusplus.com/reference/mutex/timed_mutex/%7Etimed_mutex/xC…+owint_t (cwchar)http://www.cplusplus.com/reference/cwchar/wint_t/ )«Mó2 Ü › a  Ò l  ®ª ù ‡ )   Tã– k;std::operator>> (piecewise_linear_distribution)http://www.cplusplus.com/reference/random/piecewise_linear_distribution/operator%3E%3E/|]-std::operator>> (geometric_distribution)http://www.cplusplus.com/reference/random/geometric_distribution/operator%3E%3E/ HmJ -{std::swap (list)http://www.cplusplus.com/reference/list/list/swap-free/n K#std::unordered_map::bucket_sizehttp://www.cplusplus.com/reference/unordered_map/unordered_map/bucket_size/I /wstd::array::emptyhttp://www.cplusplus.com/reference/array/array/empty/ i3std::enable_shared_from_this::shared_from_thishttp://www.cplusplus.com/reference/memory/enable_shared_from_this/shared_from_this/[? std::time_get::date_orderhttp://www.cplusplus.com/reference/locale/time_get/date_order/oI'std::operator+ (move_iterator)http://www.cplusplus.com/reference/iterator/move_iterator/operator_plus-free/L1{std::atomic::storehttp://www.cplusplus.com/reference/atomic/atomic/store/flKstd::swap (basic_istringstream)http://www.cplusplus.com/reference/sstream/basic_istringstream/swap-free/L1{std::locale::facethttp://www.cplusplus.com/reference/locale/locale/facet/cEstd::shared_ptr::~shared_ptrhttp://www.cplusplus.com/reference/memory/shared_ptr/%7Eshared_ptr/B)ostd::streamposhttp://www.cplusplus.com/reference/ios/streampos/G-ustd::array::fillhttp://www.cplusplus.com/reference/array/array/fill/8eC libraryhttp://www.cplusplus.com/reference/clibrary/?~#ostd::bitsethttp://www.cplusplus.com/reference/bitset/bitset/T}7std::begin (valarray)http://www.cplusplus.com/reference/valarray/valarray/begin/[|? std::money_get::money_gethttp://www.cplusplus.com/reference/locale/money_get/money_get/b{Estd::basic_stringstream::strhttp://www.cplusplus.com/reference/sstream/basic_stringstream/str/Xz=std::multiset::operator=http://www.cplusplus.com/reference/set/multiset/operator%3D/\y? std::basic_ofstream::swaphttp://www.cplusplus.com/reference/fstream/basic_ofstream/swap/Sx3std::swap (promise)http://www.cplusplus.com/reference/future/promise/swap-free/  ®_ã–= ÷ „ 9 î u  Á N ï «  ¬ c ÎgF,3mstd::sqrt (complex)http://www.cplusplus.com/reference/complex/sqrt/d?Estd::operator<< (shared_ptr)http://www.cplusplus.com/reference/memory/shared_ptr/operator%3C%3C/A>)mstd::ios::movehttp://www.cplusplus.com/reference/ios/ios/move/N=1std::basic_istreamhttp://www.cplusplus.com/reference/istream/basic_istream/F<+ustd::make_tuplehttp://www.cplusplus.com/reference/tuple/make_tuple/f;Gstd::istringstream::operator=http://www.cplusplus.com/reference/sstream/istringstream/operator%3D/:iMstd::subtract_with_carry_engine::(constructor)http://www.cplusplus.com/reference/random/subtract_with_carry_engine/subtract_with_carry_engine/A9)mstd::set::findhttp://www.cplusplus.com/reference/set/set/find/\8Cstd::multimap::emplace_hinthttp://www.cplusplus.com/reference/map/multimap/emplace_hint/p7Ustd::recursive_timed_mutex::try_lockhttp://www.cplusplus.com/reference/mutex/recursive_timed_mutex/try_lock/S67std::atomic::exchangehttp://www.cplusplus.com/reference/atomic/atomic/exchange/[5? std::vector::emplace_backhttp://www.cplusplus.com/reference/vector/vector/emplace_back/v4Y%std::recursive_mutex::~recursive_mutexhttp://www.cplusplus.com/reference/mutex/recursive_mutex/%7Erecursive_mutex/H3-wstd::bitset::anyhttp://www.cplusplus.com/reference/bitset/bitset/any/H2-wstd::bitset::sethttp://www.cplusplus.com/reference/bitset/bitset/set/p1Q!std::basic_ostream::~basic_ostreamhttp://www.cplusplus.com/reference/ostream/basic_ostream/%7Ebasic_ostream/C0!yMB_CUR_MAXhttp://www.cplusplus.com/reference/cstdlib/MB_CUR_MAX/V/7std::istream_iteratorhttp://www.cplusplus.com/reference/iterator/istream_iterator/J.)std::is_scalarhttp://www.cplusplus.com/reference/type_traits/is_scalar/:-kstd::arghttp://www.cplusplus.com/reference/complex/arg/?L+1{std::promise::swaphttp://www.cplusplus.com/reference/future/promise/swap/O*/std::out_of_rangehttp://www.cplusplus.com/reference/stdexcept/out_of_range/ ‚ð|3 õ › Q º b  Õ t  · Y íð Ðu‰q#std::relational operators (lognormal_distribution)http://www.cplusplus.com/reference/random/lognormal_distribution/operators/X‰=std::basic_regex::assignhttp://www.cplusplus.com/reference/regex/basic_regex/assign/;‰kstd::stoihttp://www.cplusplus.com/reference/string/stoi/q‰M'std::forward_list::~forward_listhttp://www.cplusplus.com/reference/forward_list/forward_list/%7Eforward_list/ki‰Mstd::poisson_distribution::resethttp://www.cplusplus.com/reference/random/poisson_distribution/reset/[‰ ; std::bitset::operator[]http://www.cplusplus.com/reference/bitset/bitset/operator%5B%5D/I‰ -ystd::atomic_loadhttp://www.cplusplus.com/reference/atomic/atomic_load/n‰ K#std::unordered_set::bucket_sizehttp://www.cplusplus.com/reference/unordered_set/unordered_set/bucket_size/^‰ ?std::streambuf::sputbackchttp://www.cplusplus.com/reference/streambuf/streambuf/sputbackc/?‰ sstd::lesshttp://www.cplusplus.com/reference/functional/less/H‰+ystd::accumulatehttp://www.cplusplus.com/reference/numeric/accumulate/U‰1 std::unordered_sethttp://www.cplusplus.com/reference/unordered_set/unordered_set/C‰)qstd::deque::athttp://www.cplusplus.com/reference/deque/deque/at/N‰3}std::string::cbeginhttp://www.cplusplus.com/reference/string/string/cbegin/G‰-ustd::array::backhttp://www.cplusplus.com/reference/array/array/back/W‰9std::codecvt::~codecvthttp://www.cplusplus.com/reference/locale/codecvt/%7Ecodecvt/;‰qasserthttp://www.cplusplus.com/reference/cassert/assert/g‰Kstd::moneypunct::do_frac_digitshttp://www.cplusplus.com/reference/locale/moneypunct/do_frac_digits/c‰Cstd::reference_wrapper::gethttp://www.cplusplus.com/reference/functional/reference_wrapper/get/vˆO/std::operator- (reverse_iterator)http://www.cplusplus.com/reference/iterator/reverse_iterator/operator_minus-free/ˆ~c/std::basic_stringstream::basic_stringstreamhttp://www.cplusplus.com/reference/sstream/basic_stringstream/basic_stringstream/ ?¯mÃj Ñ { ( à ¦ K í ¦ l ( é § B ð ‡ ¸?vŠW'std::regex_token_iterator::operator==http://www.cplusplus.com/reference/regex/regex_token_iterator/operator%3D%3D/[Š9std::is_member_pointerhttp://www.cplusplus.com/reference/type_traits/is_member_pointer/nŠK#std::unordered_multimap::buckethttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/bucket/fŠIstd::basic_istringstream::swaphttp://www.cplusplus.com/reference/sstream/basic_istringstream/swap/OŠ-std::make_signedhttp://www.cplusplus.com/reference/type_traits/make_signed/bŠ?std::unordered_set::erasehttp://www.cplusplus.com/reference/unordered_set/unordered_set/erase/?Š'kstd::ios::tiehttp://www.cplusplus.com/reference/ios/ios/tie/<Šqwcscspnhttp://www.cplusplus.com/reference/cwchar/wcscspn/AŠ)mstd::ios::swaphttp://www.cplusplus.com/reference/ios/ios/swap/7Šmldivhttp://www.cplusplus.com/reference/cstdlib/ldiv/DŠ1kstd::abs (complex)http://www.cplusplus.com/reference/complex/abs/[Š; std::locale::operator()http://www.cplusplus.com/reference/locale/locale/operator%28%29/XŠ;std::stringbuf::seekposhttp://www.cplusplus.com/reference/sstream/stringbuf/seekpos/7Šmlabshttp://www.cplusplus.com/reference/cstdlib/labs/EŠ )ustd::has_facethttp://www.cplusplus.com/reference/locale/has_facet/PŠ 5std::ctype::do_widenhttp://www.cplusplus.com/reference/locale/ctype/do_widen/SŠ 3std::is_permutationhttp://www.cplusplus.com/reference/algorithm/is_permutation/7Š chttp://www.cplusplus.com/reference/istream/\Š ? std::basic_ostream::flushhttp://www.cplusplus.com/reference/ostream/basic_ostream/flush/VŠ9std::filebuf::overflowhttp://www.cplusplus.com/reference/fstream/filebuf/overflow/=Šsstrxfrmhttp://www.cplusplus.com/reference/cstring/strxfrm/gŠKstd::bad_weak_ptr::bad_weak_ptrhttp://www.cplusplus.com/reference/memory/bad_weak_ptr/bad_weak_ptr/?Š!qstd::wcerrhttp://www.cplusplus.com/reference/iostream/wcerr/NŠ3}std::vector::inserthttp://www.cplusplus.com/reference/vector/vector/insert/ 0‘6õ…1 å ­ n ° < Ù › 0 Æ  ; Рɇ0TŽ7std::filebuf::seekoffhttp://www.cplusplus.com/reference/fstream/filebuf/seekoff/?Ž#ostd::futurehttp://www.cplusplus.com/reference/future/future/JŽ/ystd::bitset::sizehttp://www.cplusplus.com/reference/bitset/bitset/size/wŽI7std::swap (unordered_multimap)http://www.cplusplus.com/reference/unordered_map/unordered_multimap/swap%28global%29/=Žsstrncpyhttp://www.cplusplus.com/reference/cstring/strncpy/hŽKstd::regex_iterator::operator->http://www.cplusplus.com/reference/regex/regex_iterator/operator-%3E/AŽwnullptr_thttp://www.cplusplus.com/reference/cstddef/nullptr_t/DŽ'ustd::ifstreamhttp://www.cplusplus.com/reference/fstream/ifstream/gEstd::forward_list::pop_fronthttp://www.cplusplus.com/reference/forward_list/forward_list/pop_front/h~Kstd::linear_congruential_enginehttp://www.cplusplus.com/reference/random/linear_congruential_engine/;}mstd::endhttp://www.cplusplus.com/reference/iterator/end/`|Kstd::chrono::duration operatorshttp://www.cplusplus.com/reference/chrono/duration/operators/q{Ustd::uniform_int_distribution::paramhttp://www.cplusplus.com/reference/random/uniform_int_distribution/param/Xz9 std::streambuf::getlochttp://www.cplusplus.com/reference/streambuf/streambuf/getloc/`y?std::swap (basic_fstream)http://www.cplusplus.com/reference/fstream/basic_fstream/swap-free/sswcstoullhttp://www.cplusplus.com/reference/cwchar/wcstoull/Xr=std::multiset::~multisethttp://www.cplusplus.com/reference/set/multiset/%7Emultiset/lqQstd::make_error_code (future_errc)http://www.cplusplus.com/reference/future/future_errc/make_error_code/ @&– Ž " Ø l  ¹  Ä y ) à  )àf­] «PÉj$ÎuÊZ,¼Kú–a’?std::forward_list::removehttp://www.cplusplus.com/reference/forward_list/forward_list/remove/N’~)operator new[]http://www.cplusplus.com/reference/new/operator%20new%5B%5D/n’}Qstd::piecewise_linear_distributionhttp://www.cplusplus.com/reference/random/piecewise_linear_distribution/m’|Ostd::move_iterator::move_iteratorhttp://www.cplusplus.com/reference/iterator/move_iterator/move_iterator/^’{?std::streambuf::underflowhttp://www.cplusplus.com/reference/streambuf/streambuf/underflow/’za=std::lognormal_distribution::(constructor)http://www.cplusplus.com/reference/random/lognormal_distribution/lognormal_distribution/@’yumbsrtowcshttp://www.cplusplus.com/reference/cwchar/mbsrtowcs/m’xQstd::lognormal_distribution::resethttp://www.cplusplus.com/reference/random/lognormal_distribution/reset/N’w1std::resetiosflagshttp://www.cplusplus.com/reference/iomanip/resetiosflags/W’v7 std::nested_exceptionhttp://www.cplusplus.com/reference/exception/nested_exception/V’u7std::reverse_iteratorhttp://www.cplusplus.com/reference/iterator/reverse_iterator/S’t7std::unique_ptr::swaphttp://www.cplusplus.com/reference/memory/unique_ptr/swap/C’s)qstd::array::athttp://www.cplusplus.com/reference/array/array/at/\’r? std::basic_ifstream::openhttp://www.cplusplus.com/reference/fstream/basic_ifstream/open/’qg1std::packaged_task::make_ready_at_thread_exithttp://www.cplusplus.com/reference/future/packaged_task/make_ready_at_thread_exit/X’p;std::ostringstream::strhttp://www.cplusplus.com/reference/sstream/ostringstream/str/]’oA std::time_get::get_weekdayhttp://www.cplusplus.com/reference/locale/time_get/get_weekday/O’n-std::is_integralhttp://www.cplusplus.com/reference/type_traits/is_integral/M’m1}std::ostream::swaphttp://www.cplusplus.com/reference/ostream/ostream/swap/W’l;std::time_get::time_gethttp://www.cplusplus.com/reference/locale/time_get/time_get/\’kCstd::multiset::emplace_hinthttp://www.cplusplus.com/reference/set/multiset/emplace_hint/w’jW)std::weibull_distribution::operator()http://www.cplusplus.com/reference/random/weibull_distribution/operator%28%29/F’i'ystd::for_eachhttp://www.cplusplus.com/reference/algorithm/for_each/S’h;std::multiset::max_sizehttp://www.cplusplus.com/reference/set/multiset/max_size/A’g%qstd::toupperhttp://www.cplusplus.com/reference/locale/toupper/c’fGstd::char_traits::eq_int_typehttp://www.cplusplus.com/reference/string/char_traits/eq_int_type/M’e5ystd::multiset::emptyhttp://www.cplusplus.com/reference/set/multiset/empty/H’d){std::make_heaphttp://www.cplusplus.com/reference/algorithm/make_heap/W’c;std::basic_string::copyhttp://www.cplusplus.com/reference/string/basic_string/copy/`’bAstd::front_insert_iteratorhttp://www.cplusplus.com/reference/iterator/front_insert_iterator/5’airinthttp://www.cplusplus.com/reference/cmath/rint/c’`Gstd::cauchy_distribution::minhttp://www.cplusplus.com/reference/random/cauchy_distribution/min/J’_/ystd::codecvt::outhttp://www.cplusplus.com/reference/locale/codecvt/out/i’^Mstd::lognormal_distribution::minhttp://www.cplusplus.com/reference/random/lognormal_distribution/min/G’]'{islessgreaterhttp://www.cplusplus.com/reference/cmath/islessgreater/i’\Istd::move_iterator::operator->http://www.cplusplus.com/reference/iterator/move_iterator/operator-%3E/o’[Ystd::relational operators (error_code)http://www.cplusplus.com/reference/system_error/error_code/operators/=’Zsstrncmphttp://www.cplusplus.com/reference/cstring/strncmp/À ˜‹‹;í©h ª L Ò q / Þ ˆ 3 Ó Ž & Õ Š ,Äb—8a1std::operator>> (exponential_distribution)http://www.cplusplus.com/reference/random/exponential_distribution/operator%3E%3E/P—N5std::seed_seq::paramhttp://www.cplusplus.com/reference/random/seed_seq/param/_—M;std::unordered_multimaphttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/e—LIstd::codecvt::do_always_noconvhttp://www.cplusplus.com/reference/locale/codecvt/do_always_noconv/[—K= std::adjacent_differencehttp://www.cplusplus.com/reference/numeric/adjacent_difference/H—J-wstd::timed_mutexhttp://www.cplusplus.com/reference/mutex/timed_mutex/N—I3}std::thread::detachhttp://www.cplusplus.com/reference/thread/thread/detach/e—H?std::swap (match_results)http://www.cplusplus.com/reference/regex/match_results/swap%28global%29/B—G5c (stddef.h)http://www.cplusplus.com/reference/cstddef/]—FA std::basic_string::reservehttp://www.cplusplus.com/reference/string/basic_string/reserve/R—E1std::greater_equalhttp://www.cplusplus.com/reference/functional/greater_equal/S—D3std::minmax_elementhttp://www.cplusplus.com/reference/algorithm/minmax_element/N—C3}std::thread::get_idhttp://www.cplusplus.com/reference/thread/thread/get_id/?—B1a (uchar.h)http://www.cplusplus.com/reference/cuchar/^—AA std::binomial_distributionhttp://www.cplusplus.com/reference/random/binomial_distribution/w—@O1std::condition_variable::wait_forhttp://www.cplusplus.com/reference/condition_variable/condition_variable/wait_for/[—?= std::weak_ptr::operator=http://www.cplusplus.com/reference/memory/weak_ptr/operator%3D/T—>7std::filebuf::is_openhttp://www.cplusplus.com/reference/fstream/filebuf/is_open/d—=Istd::timed_mutex::try_lock_forhttp://www.cplusplus.com/reference/mutex/timed_mutex/try_lock_for/>—<swcsftimehttp://www.cplusplus.com/reference/cwchar/wcsftime/A—;wiswxdigithttp://www.cplusplus.com/reference/cwctype/iswxdigit/K—:3wstd::multimap::cendhttp://www.cplusplus.com/reference/map/multimap/cend/Z—9Estd::chrono::time_point_casthttp://www.cplusplus.com/reference/chrono/time_point_cast/h U"k ú ˜ [ ó Œ @ æ ~ -ät+Ôv¨Mø³r¹I ¯FüŒ0ø»kM‚o/std::swM‚o/std::swap (stack)http://www.cplusplus.com/reference/stack/stack/swap-free/U‚n9std::ctype::do_toupperhttp://www.cplusplus.com/reference/locale/ctype/do_toupper/‚ma=std::bernoulli_distribution::(constructor)http://www.cplusplus.com/reference/random/bernoulli_distribution/bernoulli_distribution/X‚l;std::generate_canonicalhttp://www.cplusplus.com/reference/random/generate_canonical/5‚kifmaxhttp://www.cplusplus.com/reference/cmath/fmax/Y‚j; std::valarray::valarrayhttp://www.cplusplus.com/reference/valarray/valarray/valarray/m‚iQstd::uniform_int_distribution::maxhttp://www.cplusplus.com/reference/random/uniform_int_distribution/max/G‚h-ustd::deque::rendhttp://www.cplusplus.com/reference/deque/deque/rend/f‚gKstd::timed_mutex::native_handlehttp://www.cplusplus.com/reference/mutex/timed_mutex/native_handle/X‚f;std::filebuf::pbackfailhttp://www.cplusplus.com/reference/fstream/filebuf/pbackfail/<‚eqisgraphhttp://www.cplusplus.com/reference/cctype/isgraph/m‚dQstd::chi_squared_distribution::minhttp://www.cplusplus.com/reference/random/chi_squared_distribution/min/[‚c= std::auto_ptr::~auto_ptrhttp://www.cplusplus.com/reference/memory/auto_ptr/%7Eauto_ptr/X‚b=std::multimap::operator=http://www.cplusplus.com/reference/map/multimap/operator%3D/>‚a#mstd::smatchhttp://www.cplusplus.com/reference/regex/smatch/B‚`#ustd::removehttp://www.cplusplus.com/reference/algorithm/remove/R‚_5std::allocate_sharedhttp://www.cplusplus.com/reference/memory/allocate_shared/X‚^=std::priority_queue::tophttp://www.cplusplus.com/reference/queue/priority_queue/top/W‚]7 std::function::assignhttp://www.cplusplus.com/reference/functional/function/assign/q‚\Ustd::extreme_value_distribution::maxhttp://www.cplusplus.com/reference/random/extreme_value_distribution/max/[‚[9std::error_code::valuehttp://www.cplusplus.com/reference/system_error/error_code/value/T‚Z5std::pair::operator=http://www.cplusplus.com/reference/utility/pair/operator%3D/F‚Y+ustd::string::athttp://www.cplusplus.com/reference/string/string/at/m‚XK!std::is_member_function_pointerhttp://www.cplusplus.com/reference/type_traits/is_member_function_pointer/F‚W'ystd::includeshttp://www.cplusplus.com/reference/algorithm/includes/N‚V1std::valarray::sumhttp://www.cplusplus.com/reference/valarray/valarray/sum/e‚UEstd::lexicographical_comparehttp://www.cplusplus.com/reference/algorithm/lexicographical_compare/W‚T;std::shared_future::gethttp://www.cplusplus.com/reference/future/shared_future/get/I‚S/wstd::deque::clearhttp://www.cplusplus.com/reference/deque/deque/clear/d‚RGstd::basic_stringbuf::seekoffhttp://www.cplusplus.com/reference/sstream/basic_stringbuf/seekoff/e‚QIstd::moneypunct::do_pos_formathttp://www.cplusplus.com/reference/locale/moneypunct/do_pos_format/:‚Powcscpyhttp://www.cplusplus.com/reference/cwchar/wcscpy/_‚OAstd::money_put::~money_puthttp://www.cplusplus.com/reference/locale/money_put/%7Emoney_put/X‚N7 std::const_mem_fun1_thttp://www.cplusplus.com/reference/functional/const_mem_fun1_t/« S¹Ùƒ)  m ý ˜ 6 ç ¯ X  ³ . Ú V ÉSs‡_W!std::independent_bits_engine::discardhttp://www.cplusplus.com/reference/random/independent_bits_engine/discard/<‡^qwcsxfrmhttp://www.cplusplus.com/reference/cwchar/wcsxfrm/K‡]/{std::future_errorhttp://www.cplusplus.com/reference/future/future_error/‡\]5std::unordered_multimap::max_load_factorhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/max_load_factor/Q‡[1std::copy_backwardhttp://www.cplusplus.com/reference/algorithm/copy_backward/‡Za3std::uniform_real_distribution::operator()http://www.cplusplus.com/reference/random/uniform_real_distribution/operator%28%29/c‡YEstd::basic_string::operator=http://www.cplusplus.com/reference/string/basic_string/operator%3D/<‡Xmstd::pairhttp://www.cplusplus.com/reference/utility/pair/T‡W7std::istream::istreamhttp://www.cplusplus.com/reference/istream/istream/istream/5‡Vinanlhttp://www.cplusplus.com/reference/cmath/nanl/L‡U1{std::bitset::counthttp://www.cplusplus.com/reference/bitset/bitset/count/_‡TC std::wbuffer_convert::rdbufhttp://www.cplusplus.com/reference/locale/wbuffer_convert/rdbuf/b‡SGstd::timed_mutex::timed_mutexhttp://www.cplusplus.com/reference/mutex/timed_mutex/timed_mutex/m‡RQstd::atomic::compare_exchange_weakhttp://www.cplusplus.com/reference/atomic/atomic/compare_exchange_weak/R‡Q5std::map::operator[]http://www.cplusplus.com/reference/map/map/operator%5B%5D/d‡PAstd::unordered_map::key_eqhttp://www.cplusplus.com/reference/unordered_map/unordered_map/key_eq/W‡O7 std::prev_permutationhttp://www.cplusplus.com/reference/algorithm/prev_permutation/S‡N;std::set::get_allocatorhttp://www.cplusplus.com/reference/set/set/get_allocator/B‡M5c (iso646.h)http://www.cplusplus.com/reference/ciso646/‡LyGstd::enable_shared_from_this::~enable_shared_from_thishttp://www.cplusplus.com/reference/memory/enable_shared_from_this/%7Eenable_shared_from_this/D‡K+qstd::list::rendhttp://www.cplusplus.com/reference/list/list/rend/ Q¦fÒs £ f ù » } & ç } 3 × y 5 ò – OÞ¡QM”5ystd::basic_ios::failhttp://www.cplusplus.com/reference/ios/basic_ios/fail/:”ovscanfhttp://www.cplusplus.com/reference/cstdio/vscanf/n”K#std::unordered_multimap::key_eqhttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/key_eq/D”+qstd::wstreamposhttp://www.cplusplus.com/reference/ios/wstreampos/Y”=std::basic_string::erasehttp://www.cplusplus.com/reference/string/basic_string/erase/@”uvswprintfhttp://www.cplusplus.com/reference/cwchar/vswprintf/A”%qstd::isblankhttp://www.cplusplus.com/reference/locale/isblank/[“? std::money_put::money_puthttp://www.cplusplus.com/reference/locale/money_put/money_put/Y“~=std::allocator::allocatehttp://www.cplusplus.com/reference/memory/allocator/allocate/G“}-ustd::stack::sizehttp://www.cplusplus.com/reference/stack/stack/size/g“|Kstd::fisher_f_distribution::maxhttp://www.cplusplus.com/reference/random/fisher_f_distribution/max/<“{qtolowerhttp://www.cplusplus.com/reference/cctype/tolower/T“z5std::streambuf::synchttp://www.cplusplus.com/reference/streambuf/streambuf/sync/;“yqcallochttp://www.cplusplus.com/reference/cstdlib/calloc/;“xqva_arghttp://www.cplusplus.com/reference/cstdarg/va_arg/j“wWstd::chrono::common_type (time_point)http://www.cplusplus.com/reference/chrono/common_type_time_point/:“vosscanfhttp://www.cplusplus.com/reference/cstdio/sscanf/\“u= std::istreambuf_iteratorhttp://www.cplusplus.com/reference/iterator/istreambuf_iterator/n“tK#std::unordered_set::equal_rangehttp://www.cplusplus.com/reference/unordered_set/unordered_set/equal_range/\“s;std::is_bind_expressionhttp://www.cplusplus.com/reference/functional/is_bind_expression/H“r-wstd::regex_errorhttp://www.cplusplus.com/reference/regex/regex_error/F“q-sstd::noshowpointhttp://www.cplusplus.com/reference/ios/noshowpoint/=“postd::wcinhttp://www.cplusplus.com/reference/iostream/wcin/W“o;std::time_get::get_datehttp://www.cplusplus.com/reference/locale/time_get/get_date/ ,¨’5ôš ÷ ¹ : ç ‘¨ ¿ z  Ù e  æ ’ L Çls•\cstd::swap (basic_ofstream) (basic_ofstream)http://www.cplusplus.com/reference/fstream/basic_ofstream/swap-free/K•i1ystd::deque::inserthttp://www.cplusplus.com/reference/deque/deque/insert/X•hEstd::chrono::duration::counthttp://www.cplusplus.com/reference/chrono/duration/count/A•gwstd::errchttp://www.cplusplus.com/reference/system_error/errc/>•f!ostd::asinhhttp://www.cplusplus.com/reference/complex/asinh/C•e+ostd::set::clearhttp://www.cplusplus.com/reference/set/set/clear/Q•d1std::swap (string)http://www.cplusplus.com/reference/string/string/swap-free/5•cahttp://www.cplusplus.com/reference/iosfwd/D•b'ustd::wfstreamhttp://www.cplusplus.com/reference/fstream/wfstream/q•aO%std::ostream_iterator::operator++http://www.cplusplus.com/reference/iterator/ostream_iterator/operator%2B%2B/?•`'kWEOF (cwchar)http://www.cplusplus.com/reference/cwchar/WEOF/\•_? std::raw_storage_iteratorhttp://www.cplusplus.com/reference/memory/raw_storage_iterator/B•^#ustd::any_ofhttp://www.cplusplus.com/reference/algorithm/any_of/j•]Istd::swap (basic_stringstream)http://www.cplusplus.com/reference/sstream/basic_stringstream/swap-free/eS•[3std::set_unexpectedhttp://www.cplusplus.com/reference/exception/set_unexpected/P•Z5std::codecvt::lengthhttp://www.cplusplus.com/reference/locale/codecvt/length/|•Ya)std::recursive_timed_mutex::try_lock_untilhttp://www.cplusplus.com/reference/mutex/recursive_timed_mutex/try_lock_until/;•X#ghttp://www.cplusplus.com/reference/typeindex/•Wu[std::condition_variable_any::~condition_variable_anyhttp://www.cplusplus.com/reference/condition_variable/condition_variable_any/%7Econdition_variable_any/W•V5 std::remove_volatilehttp://www.cplusplus.com/reference/type_traits/remove_volatile/>•Usputwcharhttp://www.cplusplus.com/reference/cwchar/putwchar/Z•T= std::basic_fstream::swaphttp://www.cplusplus.com/reference/fstream/basic_fstream/swap/k•SIstd::error_code::operator boolhttp://www.cplusplus.com/reference/system_error/error_code/operator_bool/ !?ㆠ« U å F ô – P ÿ – F  ¾ q 'Øy!U‹O9std::ctype::do_tolowerhttp://www.cplusplus.com/reference/locale/ctype/do_tolower/\‹N? std::basic_ostream::seekphttp://www.cplusplus.com/reference/ostream/basic_ostream/seekp/L‹M/}std::gslice::sizehttp://www.cplusplus.com/reference/valarray/gslice/size/G‹L-ustd::array::swaphttp://www.cplusplus.com/reference/array/array/swap/J‹K/ystd::ctype::ctypehttp://www.cplusplus.com/reference/locale/ctype/ctype/G‹J-ustd::queue::backhttp://www.cplusplus.com/reference/queue/queue/back/;‹Imstd::cinhttp://www.cplusplus.com/reference/iostream/cin/M‹H5ystd::basic_ios::goodhttp://www.cplusplus.com/reference/ios/basic_ios/good/f‹GIstd::atomic_fetch_add_explicithttp://www.cplusplus.com/reference/atomic/atomic_fetch_add_explicit/N‹F3}std::thread::threadhttp://www.cplusplus.com/reference/thread/thread/thread/C‹E'sstd::auto_ptrhttp://www.cplusplus.com/reference/memory/auto_ptr/[‹D? std::basic_string::appendhttp://www.cplusplus.com/reference/string/basic_string/append/O‹C/std::length_errorhttp://www.cplusplus.com/reference/stdexcept/length_error/G‹B-ustd::array::rendhttp://www.cplusplus.com/reference/array/array/rend/R‹A5std::swap (multimap)http://www.cplusplus.com/reference/map/multimap/swap-free/m‹@K!std::forward_list::splice_afterhttp://www.cplusplus.com/reference/forward_list/forward_list/splice_after/S‹?1std::make_unsignedhttp://www.cplusplus.com/reference/type_traits/make_unsigned/n‹>Sstd::uses_allocatorhttp://www.cplusplus.com/reference/queue/priority_queue/uses_allocator/g‹=Estd::error_condition::assignhttp://www.cplusplus.com/reference/system_error/error_condition/assign/Z‹<; std::valarray operatorshttp://www.cplusplus.com/reference/valarray/valarray/operators/Y‹;=std::basic_string::emptyhttp://www.cplusplus.com/reference/string/basic_string/empty/N‹:3}std::messages::openhttp://www.cplusplus.com/reference/locale/messages/open/m‹9Mstd::istream_iterator::operator*http://www.cplusplus.com/reference/iterator/istream_iterator/operator%2A/ <¹)Ëz ¬ Q õ ¥ # Ï $ ò ˜ [ ý ‹ '©<jŒRGstd::unordered_multimap::sizehttp://www.cplusplus.com/reference/unordered_map/unordered_multimap/size/{ŒQS5std::condition_variable::notify_allhttp://www.cplusplus.com/reference/condition_variable/condition_variable/notify_all/aŒPCstd::reverse_iterator::basehttp://www.cplusplus.com/reference/iterator/reverse_iterator/base/oŒOSstd::uniform_real_distribution::maxhttp://www.cplusplus.com/reference/random/uniform_real_distribution/max/[ŒN; std::function::functionhttp://www.cplusplus.com/reference/functional/function/function/:ŒMorenamehttp://www.cplusplus.com/reference/cstdio/rename/WŒL=std::list::emplace_fronthttp://www.cplusplus.com/reference/list/list/emplace_front//ŒK[http://www.cplusplus.com/reference/new/ZŒJ9 std::bad_function_callhttp://www.cplusplus.com/reference/functional/bad_function_call/KŒI7sstd::chrono::durationhttp://www.cplusplus.com/reference/chrono/duration/QŒH1std::bad_exceptionhttp://www.cplusplus.com/reference/exception/bad_exception/ŒG_1std::exponential_distribution::operator()http://www.cplusplus.com/reference/random/exponential_distribution/operator%28%29/MŒF5ystd::ios_base::flagshttp://www.cplusplus.com/reference/ios/ios_base/flags/YŒE=std::codecvt::do_unshifthttp://www.cplusplus.com/reference/locale/codecvt/do_unshift/XŒD=std::basic_regex::getlochttp://www.cplusplus.com/reference/regex/basic_regex/getloc/[ŒC? std::basic_string::assignhttp://www.cplusplus.com/reference/string/basic_string/assign/mŒB?-std::swap (unordered_set)http://www.cplusplus.com/reference/unordered_set/unordered_set/swap%28global%29/NŒA3}std::vector::cbeginhttp://www.cplusplus.com/reference/vector/vector/cbegin/[Œ@= std::numpunct::~numpuncthttp://www.cplusplus.com/reference/locale/numpunct/%7Enumpunct/ Œ?eEstd::exponential_distribution::(constructor)http://www.cplusplus.com/reference/random/exponential_distribution/exponential_distribution/DŒ>)sstd::tuple_cathttp://www.cplusplus.com/reference/tuple/tuple_cat/ dÃdú’H Ü n 1 ç ~ $ Ñ „  ± * Ò h ÊdcEO std::chrono::duration_values::maxhttp://www.cplusplus.com/reference/chrono/duration_values/max/JD)std::is_objecthttp://www.cplusplus.com/reference/type_traits/is_object/NC3}std::money_get::gethttp://www.cplusplus.com/reference/locale/money_get/get/gBKstd::allocator_traits::max_sizehttp://www.cplusplus.com/reference/memory/allocator_traits/max_size/UA9std::atomic::fetch_addhttp://www.cplusplus.com/reference/atomic/atomic/fetch_add/@_9std::fisher_f_distribution::(constructor)http://www.cplusplus.com/reference/random/fisher_f_distribution/fisher_f_distribution/c?O std::chrono::duration_values::minhttp://www.cplusplus.com/reference/chrono/duration_values/min/j>Kstd::operator>> (basic_istream)http://www.cplusplus.com/reference/istream/basic_istream/operator-free/J=/ystd::string::datahttp://www.cplusplus.com/reference/string/string/data/P<1std::back_inserterhttp://www.cplusplus.com/reference/iterator/back_inserter/W;9std::collate::~collatehttp://www.cplusplus.com/reference/locale/collate/%7Ecollate/f:Istd::regex_iterator::operator*http://www.cplusplus.com/reference/regex/regex_iterator/operator%2A/G9+wstd::shared_ptrhttp://www.cplusplus.com/reference/memory/shared_ptr/:8owcstofhttp://www.cplusplus.com/reference/cwchar/wcstof/k7Ostd::packaged_task::packaged_taskhttp://www.cplusplus.com/reference/future/packaged_task/packaged_task/i6Mstd::chi_squared_distribution::nhttp://www.cplusplus.com/reference/random/chi_squared_distribution/n/G5+wstd::moneypuncthttp://www.cplusplus.com/reference/locale/moneypunct/e4Istd::bernoulli_distribution::phttp://www.cplusplus.com/reference/random/bernoulli_distribution/p/g3Istd::shared_ptr::operator boolhttp://www.cplusplus.com/reference/memory/shared_ptr/operator%20bool/\29std::unordered_map::athttp://www.cplusplus.com/reference/unordered_map/unordered_map/at/:1ofputwchttp://www.cplusplus.com/reference/cwchar/fputwc/ *|¼Xây ¼ i  Ô ‰ ? × “ H ø µ L Ä Ð`æ’=ú«o¼>¡BçŒ2؃:µu)Ù|[*Kstd::filesystem::path::filenamehttp://en.cppreference.com/w/cpp/filesystem/path/filenameN)7ystd::list:: remove_ifhttp://en.cppreference.com/w/cpp/container/list/removeJ(/ystd::list::removehttp://en.cppreference.com/w/cpp/container/list/remove>''istd::clearerrhttp://en.cppreference.com/w/cpp/io/c/clearerr&u!std::experimental::pmr::unsynchronized_pool_resourcehttp://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resourceG%3oPointer declarationhttp://en.cppreference.com/w/cpp/language/pointerS$7std::ostream_iteratorhttp://en.cppreference.com/w/cpp/iterator/ostream_iteratorX#?std::allocator::constructhttp://en.cppreference.com/w/cpp/memory/allocator/constructX"9 std::bitset::operator~http://en.cppreference.com/w/cpp/utility/bitset/operator_logicY!; std::bitset::operator^=http://en.cppreference.com/w/cpp/utility/bitset/operator_logicY ; std::bitset::operator|=http://en.cppreference.com/w/cpp/utility/bitset/operator_logic]C std::bitset::operator&=http://en.cppreference.com/w/cpp/utility/bitset/operator_logic3std::experimental::filesystem::recursive_directory_iterator::depthhttp://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/depth|{std::unordered_multiset:: std::unordered_multiset::cendhttp://en.cppreference.com/w/cpp/container/unordered_multiset/endaEstd::unordered_multiset::endhttp://en.cppreference.com/w/cpp/container/unordered_multiset/endN5{std::wstring_converthttp://en.cppreference.com/w/cpp/locale/wstring_convert:#estd::fgetwchttp://en.cppreference.com/w/cpp/io/c/fgetwcM5ystd::weak_ptr::resethttp://en.cppreference.com/w/cpp/memory/weak_ptr/resetA#sstd::strlenhttp://en.cppreference.com/w/cpp/string/byte/strlenS;std::unique_lock::mutexhttp://en.cppreference.com/w/cpp/thread/unique_lock/mutexR1std::ratio_greaterhttp://en.cppreference.com/w/cpp/numeric/ratio/ratio_greaterxgstd::experimental::basic_string_view::comparehttp://en.cppreference.com/w/cpp/experimental/basic_string_view/comparen]std::experimental::observer_ptr::releasehttp://en.cppreference.com/w/cpp/experimental/observer_ptr/releaseK3wstd::is_polymorphichttp://en.cppreference.com/w/cpp/types/is_polymorphic$9std::experimental::filesystem:: std::experimental::filesystem::end(directory_iterator)http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/begin}std::experimental::filesystem::begin(directory_iterator)http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/begingKstd::forward_list::forward_listhttp://en.cppreference.com/w/cpp/container/forward_list/forward_listA#sstd::strtokhttp://en.cppreference.com/w/cpp/string/byte/strtokN5{std::recursive_mutexhttp://en.cppreference.com/w/cpp/thread/recursive_mutexI +{std:: std::crefhttp://en.cppreference.com/w/cpp/utility/functional/refB {std::refhttp://en.cppreference.com/w/cpp/utility/functional/reff K>=(std::experimental::optional)http://en.cppreference.com/w/cpp/experimental/optional/operator_cmpH >http://en.cppreference.com/w/cpp/experimental/optional/operator_cmpI <=http://en.cppreference.com/w/cpp/experimental/optional/operator_cmpHTqstd::fdimhttp://en.cppreference.com/w/cpp/numeric/math/fdim[S= std::multimap::operator=http://en.cppreference.com/w/cpp/container/multimap/operator%3DfRc}std::literals::chrono_literals::operator"nshttp://en.cppreference.com/w/cpp/chrono/operator%22%22nsGQ3ostd::basic_ios::eofhttp://en.cppreference.com/w/cpp/io/basic_ios/eofCP%ustd::strncmphttp://en.cppreference.com/w/cpp/string/byte/strncmp;Okstd::swaphttp://en.cppreference.com/w/cpp/algorithm/swapEN'wstd::iswgraphhttp://en.cppreference.com/w/cpp/string/wide/iswgraphRMAwC++ concepts: SeedSequencehttp://en.cppreference.com/w/cpp/concept/SeedSequenceOL;wstd::ios_base::ios_basehttp://en.cppreference.com/w/cpp/io/ios_base/ios_baseKK3wstd::get_unexpectedhttp://en.cppreference.com/w/cpp/error/get_unexpectedRJ- std::minushttp://en.cppreference.com/w/cpp/utility/functional/minus_voidRI={std::swap(std::optional)http://en.cppreference.com/w/cpp/utility/optional/swap2bHI operator<<(std::basic_ostream)http://en.cppreference.com/w/cpp/io/basic_ostream/operator_ltlt2AG'ostd::exchangehttp://en.cppreference.com/w/cpp/utility/exchangekF_ std::common_type(std::chrono::time_point)http://en.cppreference.com/w/cpp/chrono/time_point/common_typeOEKgStandard library header http://en.cppreference.com/w/cpp/header/arrayLD-std::feupdateenvhttp://en.cppreference.com/w/cpp/numeric/fenv/feupdateenvOC7{std::remove_referencehttp://en.cppreference.com/w/cpp/types/remove_referencelBYstd::experimental::optional::~optionalhttp://en.cppreference.com/w/cpp/experimental/optional/%7Eoptional^A=std::swap(std::function)http://en.cppreference.com/w/cpp/utility/functional/function/swap2>@qstd::log2http://en.cppreference.com/w/cpp/numeric/math/log2t?[std::scoped_allocator_adaptor::max_sizehttp://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/max_sizeI>5qstd::basic_ios::swaphttp://en.cppreference.com/w/cpp/io/basic_ios/swapg=Kstd::forward_list::insert_afterhttp://en.cppreference.com/w/cpp/container/forward_list/insert_after\<7std::multiplieshttp://en.cppreference.com/w/cpp/utility/functional/multiplies_void;_3std::piecewise_constant_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/maxp:Wstd::basic_string_view::find_first_ofhttp://en.cppreference.com/w/cpp/string/basic_string_view/find_first_of>9)gstd:: std::octhttp://en.cppreference.com/w/cpp/io/manip/hex>8)gstd:: std::hexhttp://en.cppreference.com/w/cpp/io/manip/hex87gstd::dechttp://en.cppreference.com/w/cpp/io/manip/hexp6Wstd::condition_variable_any::wait_forhttp://en.cppreference.com/w/cpp/thread/condition_variable_any/wait_foru5Y#std::unordered_multiset::hash_functionhttp://en.cppreference.com/w/cpp/container/unordered_multiset/hash_function@4!sstd::trunchttp://en.cppreference.com/w/cpp/numeric/math/trunc_3=std::cauchy_distributionhttp://en.cppreference.com/w/cpp/numeric/random/cauchy_distributionX2?std::basic_string::appendhttp://en.cppreference.com/w/cpp/string/basic_string/appendP1?uC++ concepts: TrivialTypehttp://en.cppreference.com/w/cpp/concept/TrivialTypeO05}std::thread::~threadhttp://en.cppreference.com/w/cpp/thread/thread/%7Ethread`/;std::function::functionhttp://en.cppreference.com/w/cpp/utility/functional/function/functionS.?{std::basic_ostream::seekphttp://en.cppreference.com/w/cpp/io/basic_ostream/seekpk-Ostd::unordered_multimap::max_sizehttp://en.cppreference.com/w/cpp/container/unordered_multimap/max_sizeZ,Astd::basic_string_view::athttp://en.cppreference.com/w/cpp/string/basic_string_view/atO+3std::exclusive_scanhttp://en.cppreference.com/w/cpp/algorithm/exclusive_scan )¹y’$ É k ù œ ? ý z ) æ ™ M å h Ù…*Ï`Ä~+Öf÷‡¨8üŠ&ÔZ¹cQstd::filesystem::is_character_filehttp://en.cppreference.com/w/cpp/filesystem/is_character_file9mObjecthttp://en.cppreference.com/w/cpp/language/objectx~gstd::experimental::flex_barrier::flex_barrierhttp://en.cppreference.com/w/cpp/experimental/flex_barrier/flex_barrierP}5std::dynarray::fronthttp://en.cppreference.com/w/cpp/container/dynarray/frontb|K std::uses_allocatorhttp://en.cppreference.com/w/cpp/container/stack/uses_allocatorp{_std::filesystem::file_status::permissionshttp://en.cppreference.com/w/cpp/filesystem/file_status/permissions:z!gstd::ctypehttp://en.cppreference.com/w/cpp/locale/ctypenyOstd::reverse_iterator::operator-=http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_arithmxMstd::reverse_iterator::operator-http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_arithnwOstd::reverse_iterator::operator--http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_arithnvOstd::reverse_iterator::operator+=http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_arithmuMstd::reverse_iterator::operator+http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_arithntOstd::reverse_iterator::operator++http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_arithSs?{std::basic_ios::set_rdbufhttp://en.cppreference.com/w/cpp/io/basic_ios/set_rdbufQrCsstd::list:: std::list::cendhttp://en.cppreference.com/w/cpp/container/list/endDq)sstd::list::endhttp://en.cppreference.com/w/cpp/container/list/endSp;std::shared_future::gethttp://en.cppreference.com/w/cpp/thread/shared_future/getEo%yDeclarationshttp://en.cppreference.com/w/cpp/language/declarationsmnQoperator<<(std::basic_string_view)http://en.cppreference.com/w/cpp/string/basic_string_view/operator_ltltYm3std:: std::hermitelhttp://en.cppreference.com/w/cpp/experimental/special_math/hermiteYl3std:: std::hermitefhttp://en.cppreference.com/w/cpp/experimental/special_math/hermiteRk%std::hermitehttp://en.cppreference.com/w/cpp/experimental/special_math/hermiteAj}va_endhttp://en.cppreference.com/w/cpp/utility/variadic/va_endJi/ystd::map::emplacehttp://en.cppreference.com/w/cpp/container/map/emplace{hK=>>(std::student_t_distribution)http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/operator_ltltgtgtfg!=operator<http://en.cppreference.com/w/cpp/header/mapAd)mstd::nullptr_thttp://en.cppreference.com/w/cpp/types/nullptr_tOc5}std::future::~futurehttp://en.cppreference.com/w/cpp/thread/future/%7Efuturebo#std::filesystem::directory_entry::directory_entryhttp://en.cppreference.com/w/cpp/filesystem/directory_entry/directory_entry@a!sstd::atan2http://en.cppreference.com/w/cpp/numeric/math/atan2[`; Member access operatorshttp://en.cppreference.com/w/cpp/language/operator_member_access[_= std::dynarray::~dynarrayhttp://en.cppreference.com/w/cpp/container/dynarray/%7Edynarrayp^Ustd::raw_storage_iterator::operator*http://en.cppreference.com/w/cpp/memory/raw_storage_iterator/operator%2A\]Cstd::basic_string::capacityhttp://en.cppreference.com/w/cpp/string/basic_string/capacityY\?std::raw_storage_iteratorhttp://en.cppreference.com/w/cpp/memory/raw_storage_iteratorl[[std::filesystem::filesystem_error::whathttp://en.cppreference.com/w/cpp/filesystem/filesystem_error/whatZo#std::experimental::ostream_joiner::ostream_joinerhttp://en.cppreference.com/w/cpp/experimental/ostream_joiner/ostream_joinerbYI std::allocator_traits::destroyhttp://en.cppreference.com/w/cpp/memory/allocator_traits/destroyXs'std::filesystem::filesystem_error::filesystem_errorhttp://en.cppreference.com/w/cpp/filesystem/filesystem_error/filesystem_error .ˆ<â= Ì ‹  Õ { % ¾ i ÿ ¾ {  Ò “ 7ù­hÒ%ц/´Hæq.Þš_ÇpÚ„?ïO.Costd::this_thread::sleep_forhttp://en.cppreference.com/w/cpp/thread/sleep_forM-5ystd::unique_ptr::gethttp://en.cppreference.com/w/cpp/memory/unique_ptr/getB,1gC++ keywords: truehttp://en.cppreference.com/w/cpp/keyword/trueS+7std::multiset::inserthttp://en.cppreference.com/w/cpp/container/multiset/insert*mIstd::piecewise_constant_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/operator%28%29T)=std::numeric_limits::maxhttp://en.cppreference.com/w/cpp/types/numeric_limits/max<(!kstd::emptyhttp://en.cppreference.com/w/cpp/iterator/emptyV'=std::timed_mutex::unlockhttp://en.cppreference.com/w/cpp/thread/timed_mutex/unlock8&!cstd::fseekhttp://en.cppreference.com/w/cpp/io/c/fseekA%#sstd::memcpyhttp://en.cppreference.com/w/cpp/string/byte/memcpyM$5ystd::system_categoryhttp://en.cppreference.com/w/cpp/error/system_category@#!sstd::log10http://en.cppreference.com/w/cpp/numeric/math/log10r"G/!=(std::discard_block_engine)http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/operator_cmp_!!/operator==http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/operator_cmpi astd::experimental::filesystem::path::emptyhttp://en.cppreference.com/w/cpp/experimental/fs/path/emptyx_#std::scoped_allocator_adaptor::deallocatehttp://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/deallocateT9floating point literalhttp://en.cppreference.com/w/cpp/language/floating_literalH3qstd::basic_iostreamhttp://en.cppreference.com/w/cpp/io/basic_iostreamQ=ystd::acos(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/acosYI}std::chrono::system_clock::nowhttp://en.cppreference.com/w/cpp/chrono/system_clock/nowN5{std::valarray::applyhttp://en.cppreference.com/w/cpp/numeric/valarray/applyC{std::hashhttp://en.cppreference.com/w/cpp/memory/unique_ptr/hashM5ystd::aligned_storagehttp://en.cppreference.com/w/cpp/types/aligned_storageB%sstd::nothrowhttp://en.cppreference.com/w/cpp/memory/new/nothrowI-ystd::stable_sorthttp://en.cppreference.com/w/cpp/algorithm/stable_sort;%eif statementhttp://en.cppreference.com/w/cpp/language/ifYI}std::filesystem::path::comparehttp://en.cppreference.com/w/cpp/filesystem/path/compare<'estd::ios_basehttp://en.cppreference.com/w/cpp/io/ios_baseC/kFundamental typeshttp://en.cppreference.com/w/cpp/language/types`Kstd::basic_stringbuf::pbackfailhttp://en.cppreference.com/w/cpp/io/basic_stringbuf/pbackfail@'mstd::numpuncthttp://en.cppreference.com/w/cpp/locale/numpunct>'istd::putwcharhttp://en.cppreference.com/w/cpp/io/c/putwchargKstd::unordered_map::bucket_sizehttp://en.cppreference.com/w/cpp/container/unordered_map/bucket_sizeR ;}std::basic_regex::imbuehttp://en.cppreference.com/w/cpp/regex/basic_regex/imbued Ystd::dynarray:: std::dynarray::crbeginhttp://en.cppreference.com/w/cpp/container/dynarray/rbeginS 7std::dynarray::rbeginhttp://en.cppreference.com/w/cpp/container/dynarray/rbeginW Cstd::strstreambuf::overflowhttp://en.cppreference.com/w/cpp/io/strstreambuf/overflow> qstd::sqrthttp://en.cppreference.com/w/cpp/numeric/math/sqrtrQ%std::uniform_int_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/max>qstd::coshhttp://en.cppreference.com/w/cpp/numeric/math/coshn]std::experimental::basic_string_view::athttp://en.cppreference.com/w/cpp/experimental/basic_string_view/atMGgCommon mathematical functionshttp://en.cppreference.com/w/cpp/numeric/mathR;}std::basic_regex::flagshttp://en.cppreference.com/w/cpp/regex/basic_regex/flagsWCstd::basic_fstream::is_openhttp://en.cppreference.com/w/cpp/io/basic_fstream/is_openI)}string literalhttp://en.cppreference.com/w/cpp/language/string_literaluastd::pmr::memory_resource::memory_resourcehttp://en.cppreference.com/w/cpp/memory/memory_resource/memory_resource ,}¥9ãš1 á r 1 ã œ B ÿ ¶ k   _  Å kø »}/ášDÃP¸[ Â[órÜ9Ñ}QZ=ystd::atan(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/ataneYGstd::unordered_map::operator=http://en.cppreference.com/w/cpp/container/unordered_map/operator%3DSXOkStandard library header http://en.cppreference.com/w/cpp/header/iomanipJW9oC++ keywords: continuehttp://en.cppreference.com/w/cpp/keyword/continue>V#mstd::gmtimehttp://en.cppreference.com/w/cpp/chrono/c/gmtimeRU9std::bitset::to_ullonghttp://en.cppreference.com/w/cpp/utility/bitset/to_ullong~TS;!=(std::linear_congruential_engine)http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/operator_cmpeS!;operator==http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/operator_cmpdRIstd::unique_lock::~unique_lockhttp://en.cppreference.com/w/cpp/thread/unique_lock/%7Eunique_lockGQC_C memory management libraryhttp://en.cppreference.com/w/cpp/memory/cLP1{std::vector::emptyhttp://en.cppreference.com/w/cpp/container/vector/emptyZOAstd::basic_string::replacehttp://en.cppreference.com/w/cpp/string/basic_string/replaceNsGstd::lognormal_distribution::lognormal_distributionhttp://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/lognormal_distributionpMcstd::experimental::pmr::new_delete_resourcehttp://en.cppreference.com/w/cpp/experimental/new_delete_resource~LyStandard library header http://en.cppreference.com/w/cpp/header/experimental/memory_resourceSK?{std::strstreambuf::pcounthttp://en.cppreference.com/w/cpp/io/strstreambuf/pcountDJ)sstd::get_moneyhttp://en.cppreference.com/w/cpp/io/manip/get_moneyKI3wstd::set_unexpectedhttp://en.cppreference.com/w/cpp/error/set_unexpectedKH%std::modulushttp://en.cppreference.com/w/cpp/utility/functional/modulus;G#gstd::size_thttp://en.cppreference.com/w/cpp/types/size_tMF)std::wcsrtombshttp://en.cppreference.com/w/cpp/string/multibyte/wcsrtombssE[std::nested_exception::nested_exceptionhttp://en.cppreference.com/w/cpp/error/nested_exception/nested_exceptiontDcstd::experimental::basic_string_view::fronthttp://en.cppreference.com/w/cpp/experimental/basic_string_view/frontpCO#std::binomial_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/resetWB;std::multiset::multisethttp://en.cppreference.com/w/cpp/container/multiset/multisetUA?std::atomic::operator T()http://en.cppreference.com/w/cpp/atomic/atomic/operator_T?@#ostd::minmaxhttp://en.cppreference.com/w/cpp/algorithm/minmax`?G std::timed_mutex::timed_mutexhttp://en.cppreference.com/w/cpp/thread/timed_mutex/timed_mutexJ>/ystd::list::resizehttp://en.cppreference.com/w/cpp/container/list/resizeY=SsRange-based for loop (since C++11)http://en.cppreference.com/w/cpp/language/range-forH<-wstd::array::swaphttp://en.cppreference.com/w/cpp/container/array/swapF;1ostd::basic_istreamhttp://en.cppreference.com/w/cpp/io/basic_istream@:!sNamespaceshttp://en.cppreference.com/w/cpp/language/namespaceW9?std::type_info::hash_codehttp://en.cppreference.com/w/cpp/types/type_info/hash_codeD8)sstd::map::sizehttp://en.cppreference.com/w/cpp/container/map/sizeK73wstd::numeric_limitshttp://en.cppreference.com/w/cpp/types/numeric_limits>6%kstd::collatehttp://en.cppreference.com/w/cpp/locale/collatel5Kstd::cauchy_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/resetM49ustd::ios_base::failurehttp://en.cppreference.com/w/cpp/io/ios_base/failuref3]std::experimental::filesystem::copy_filehttp://en.cppreference.com/w/cpp/experimental/fs/copy_fileF2va_starthttp://en.cppreference.com/w/cpp/utility/variadic/va_startS1OkStandard library header http://en.cppreference.com/w/cpp/header/csignali0Mstd::unordered_map::bucket_counthttp://en.cppreference.com/w/cpp/container/unordered_map/bucket_countX/[iFixed width integer types (since C++11)http://en.cppreference.com/w/cpp/types/integer &¸›-Ðh ³ o  Ÿ O ú j Ú L ¼ .žJð‰EÙŒÙb!ÃqÈO¬VïŸW¸T‚- / (std::complex)http://en.cppreference.com/w/cpp/numeric/complex/operator_arith3E *http://en.cppreference.com/w/cpp/numeric/complex/operator_arith3E~ -http://en.cppreference.com/w/cpp/numeric/complex/operator_arith3M} operator+http://en.cppreference.com/w/cpp/numeric/complex/operator_arith3d|Istd::shared_lock::~shared_lockhttp://en.cppreference.com/w/cpp/thread/shared_lock/%7Eshared_lockS{;std::time_put::time_puthttp://en.cppreference.com/w/cpp/locale/time_put/time_putQz=ystd::basic_istream::peekhttp://en.cppreference.com/w/cpp/io/basic_istream/peekLy;qstd::filesystem::renamehttp://en.cppreference.com/w/cpp/filesystem/renamevxU)std::exponential_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/reset%wWstd::subtract_with_carry_engine::subtract_with_carry_enginehttp://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/subtract_with_carry_engineOv7{std::collate::collatehttp://en.cppreference.com/w/cpp/locale/collate/collate[u? std::unordered_map::emptyhttp://en.cppreference.com/w/cpp/container/unordered_map/empty>t-cC++ keywords: dohttp://en.cppreference.com/w/cpp/keyword/dotscstd::experimental::basic_string_view::rfindhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/rfind/rYstd::scoped_allocator_adaptor::select_on_container_copy_constructionhttp://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/select_on_container_copy_constructionJq5sstd::basic_stringbufhttp://en.cppreference.com/w/cpp/io/basic_stringbufipMstd::unordered_multiset::emplacehttp://en.cppreference.com/w/cpp/container/unordered_multiset/emplaceAo#sstd::strspnhttp://en.cppreference.com/w/cpp/string/byte/strspndnKstd::raw_storage_iterator::basehttp://en.cppreference.com/w/cpp/memory/raw_storage_iterator/baseWm1std::greater_equalhttp://en.cppreference.com/w/cpp/utility/functional/greater_equalQl=ystd::basic_filebuf::swaphttp://en.cppreference.com/w/cpp/io/basic_filebuf/swap k'std::experimental::filesystem::directory_entry::operator>=http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/operator_cmp j'std::experimental::filesystem::directory_entry::operator>http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/operator_cmp i'std::experimental::filesystem::directory_entry::operator<=http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/operator_cmp h'std::experimental::filesystem::directory_entry::operator::fliphttp://en.cppreference.com/w/cpp/container/vector_bool/flipAa!ustd::ratiohttp://en.cppreference.com/w/cpp/numeric/ratio/ratioh`Ostd::shared_future::shared_futurehttp://en.cppreference.com/w/cpp/thread/shared_future/shared_futureG_/sstd::atomic::loadhttp://en.cppreference.com/w/cpp/atomic/atomic/loade^O std::operator+(std::basic_string)http://en.cppreference.com/w/cpp/string/basic_string/operator%2BZ]Astd::recursive_mutex::lockhttp://en.cppreference.com/w/cpp/thread/recursive_mutex/lockk\[ std::complex::operator operator-(unary)http://en.cppreference.com/w/cpp/numeric/complex/operator_arith2b[I std::complex::operator+(unary)http://en.cppreference.com/w/cpp/numeric/complex/operator_arith2 *¸|Ça ý ¶ W è ¥ S  ¯ W à E È u ¸d#Æz4×€&·A³N ÂI”"ßjþ¸C‚*%ustd::islowerhttp://en.cppreference.com/w/cpp/string/byte/isloweri‚)Mstd::unordered_multimap::reservehttp://en.cppreference.com/w/cpp/container/unordered_multimap/reserver‚(Ystd::scoped_allocator_adaptor::destroyhttp://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/destroy@‚'/eC++ keywords: xorhttp://en.cppreference.com/w/cpp/keyword/xoro‚&Wstd::nested_exception::rethrow_nestedhttp://en.cppreference.com/w/cpp/error/nested_exception/rethrow_nestedi‚%Mstd::forward_list::emplace_afterhttp://en.cppreference.com/w/cpp/container/forward_list/emplace_afterF‚$5kC++ keywords: not_eqhttp://en.cppreference.com/w/cpp/keyword/not_eqv‚#U)std::extreme_value_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/maxH‚"%std::nullopthttp://en.cppreference.com/w/cpp/utility/optional/nullopt>‚!)gstd::streamoffhttp://en.cppreference.com/w/cpp/io/streamoffb‚ Gstd::experimental::in_place_thttp://en.cppreference.com/w/cpp/experimental/optional/in_place_tQ‚9}std::unique_lock::swaphttp://en.cppreference.com/w/cpp/thread/unique_lock/swap7‚oNANhttp://en.cppreference.com/w/cpp/numeric/math/NANs‚aC++ concepts: UniformRandomNumberGeneratorhttp://en.cppreference.com/w/cpp/concept/UniformRandomNumberGeneratorl‚cstd::experimental::filesystem::copy_optionshttp://en.cppreference.com/w/cpp/experimental/fs/copy_optionsW‚;std::dynarray::max_sizehttp://en.cppreference.com/w/cpp/container/dynarray/max_sizeT‚Cystd::experimental::nonesuchhttp://en.cppreference.com/w/cpp/experimental/nonesuchZ‚Astd::basic_string::reservehttp://en.cppreference.com/w/cpp/string/basic_string/reserveC‚+ostd::is_trivialhttp://en.cppreference.com/w/cpp/types/is_trivialI‚1ustd::is_arithmetichttp://en.cppreference.com/w/cpp/types/is_arithmeticZ‚Cstd::filesystem::hash_valuehttp://en.cppreference.com/w/cpp/filesystem/path/hash_value>‚qstd::fmodhttp://en.cppreference.com/w/cpp/numeric/math/fmodQ‚1std::feclearexcepthttp://en.cppreference.com/w/cpp/numeric/fenv/feclearexceptd‚Gstd::move_iterator::operator=http://en.cppreference.com/w/cpp/iterator/move_iterator/operator%3DS‚7std::istream_iteratorhttp://en.cppreference.com/w/cpp/iterator/istream_iteratorP‚?uC++ concepts: LiteralTypehttp://en.cppreference.com/w/cpp/concept/LiteralTypez‚U1std::cauchy_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/operator%28%29‚/std::experimental::filesystem:: std::experimental::filesystem::create_directorieshttp://en.cppreference.com/w/cpp/experimental/fs/create_directoryt‚kstd::experimental::filesystem::create_directoryhttp://en.cppreference.com/w/cpp/experimental/fs/create_directoryU‚ ;std::optional::value_orhttp://en.cppreference.com/w/cpp/utility/optional/value_orT‚ / std::bit_orhttp://en.cppreference.com/w/cpp/utility/functional/bit_or_voidJ‚ 1wstd::bitset::counthttp://en.cppreference.com/w/cpp/utility/bitset/countO‚ 3std::minmax_elementhttp://en.cppreference.com/w/cpp/algorithm/minmax_element@‚ !sstd::log1phttp://en.cppreference.com/w/cpp/numeric/math/log1pl‚Wstd::basic_stringbuf::basic_stringbufhttp://en.cppreference.com/w/cpp/io/basic_stringbuf/basic_stringbuf\‚Cstd::unique_lock::owns_lockhttp://en.cppreference.com/w/cpp/thread/unique_lock/owns_lockD‚3iC++ keywords: unionhttp://en.cppreference.com/w/cpp/keyword/uniona‚Wstd:: std::is_nothrow_copy_assignablehttp://en.cppreference.com/w/cpp/types/is_copy_assignablec‚[std:: std::is_trivially_copy_assignablehttp://en.cppreference.com/w/cpp/types/is_copy_assignableS‚;std::is_copy_assignablehttp://en.cppreference.com/w/cpp/types/is_copy_assignable\‚;std::random_device::maxhttp://en.cppreference.com/w/cpp/numeric/random/random_device/max‚_3std::discrete_distribution::probabilitieshttp://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/probabilities )œh%ÖŠ: É p  Ž 9 ï x  À K ú =çœ+áƒËj ½c°]Æyò’3Õhœo‚Sg std::experimental::parallel::transform_reducehttp://en.cppreference.com/w/cpp/experimental/transform_reduceW‚RSoStandard library header http://en.cppreference.com/w/cpp/header/stdexceptj‚QMstd::ostream_iterator::operator=http://en.cppreference.com/w/cpp/iterator/ostream_iterator/operator%3D[‚PCstd::numeric_limits::digitshttp://en.cppreference.com/w/cpp/types/numeric_limits/digits\‚OCstd::lock_guard::lock_guardhttp://en.cppreference.com/w/cpp/thread/lock_guard/lock_guard]‚NC std::condition_variable_anyhttp://en.cppreference.com/w/cpp/thread/condition_variable_any‚Me3std::unordered_multiset::~unordered_multisethttp://en.cppreference.com/w/cpp/container/unordered_multiset/%7Eunordered_multisetJ‚L1wstd::valarray::maxhttp://en.cppreference.com/w/cpp/numeric/valarray/maxE‚K'wstd::iswblankhttp://en.cppreference.com/w/cpp/string/wide/iswblankL‚J1{std::deque::assignhttp://en.cppreference.com/w/cpp/container/deque/assignP‚I) std::to_stringhttp://en.cppreference.com/w/cpp/string/basic_string/to_stringT‚HCyC++ concepts: TimedLockablehttp://en.cppreference.com/w/cpp/concept/TimedLockableY‚GAstd:: ATOMIC_xxx_LOCK_FREEhttp://en.cppreference.com/w/cpp/atomic/atomic_is_lock_freeW‚F=std::atomic_is_lock_freehttp://en.cppreference.com/w/cpp/atomic/atomic_is_lock_freeI‚E5qstd::ios_base::imbuehttp://en.cppreference.com/w/cpp/io/ios_base/imbue^‚DE std::basic_string_view::swaphttp://en.cppreference.com/w/cpp/string/basic_string_view/swap^‚CE std::basic_string_view::copyhttp://en.cppreference.com/w/cpp/string/basic_string_view/copyP‚B5std::deque::pop_backhttp://en.cppreference.com/w/cpp/container/deque/pop_backb‚AGstd::packaged_task::operator=http://en.cppreference.com/w/cpp/thread/packaged_task/operator%3D[‚@? std::multimap::value_comphttp://en.cppreference.com/w/cpp/container/multimap/value_compG‚?/sstd::domain_errorhttp://en.cppreference.com/w/cpp/error/domain_errorn‚>Ystd::pmr::unsynchronized_pool_resourcehttp://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resourceH‚=5oC++ compiler supporthttp://en.cppreference.com/w/cpp/compiler_supportS‚<7std::deque::pop_fronthttp://en.cppreference.com/w/cpp/container/deque/pop_front9‚;kstd::piecewise_constant_distribution::piecewise_constant_distributionhttp://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/piecewise_constant_distributionN‚:Aovirtual function specifierhttp://en.cppreference.com/w/cpp/language/virtualr‚9Q%std::student_t_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/paramK‚8?kstd::isblank(std::locale)http://en.cppreference.com/w/cpp/locale/isblankg‚7Kstd::unordered_multimap::rehashhttp://en.cppreference.com/w/cpp/container/unordered_multimap/rehasht‚6[std::shared_timed_mutex::try_lock_untilhttp://en.cppreference.com/w/cpp/thread/shared_timed_mutex/try_lock_untilG‚53ostd::get(std::pair)http://en.cppreference.com/w/cpp/utility/pair/getR‚4Awstd::filesystem::canonicalhttp://en.cppreference.com/w/cpp/filesystem/canonical‚3_;std::exponential_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/operator%28%29W‚2Cstd::basic_streambuf::uflowhttp://en.cppreference.com/w/cpp/io/basic_streambuf/uflowV‚1=std::unique_lock::unlockhttp://en.cppreference.com/w/cpp/thread/unique_lock/unlockn‚0[std::filesystem::file_status::operator=http://en.cppreference.com/w/cpp/filesystem/file_status/operator%3DM‚/9ustd::ctype:: do_narrowhttp://en.cppreference.com/w/cpp/locale/ctype/narrowI‚.1ustd::ctype::narrowhttp://en.cppreference.com/w/cpp/locale/ctype/narrowL‚-1{std::map::key_comphttp://en.cppreference.com/w/cpp/container/map/key_comp@‚,/eC++ keywords: andhttp://en.cppreference.com/w/cpp/keyword/and‚+1std::experimental::pmr::unsynchronized_pool_resource::optionshttp://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/options %êœ#ªp ¯ # w  ³ - “ / á ˜ [ûsÊh†Þ‘1ó„<ìN’P ¼oê‚xystd::experimental::filesystem::directory_entry::statushttp://en.cppreference.com/w/cpp/experimental/fs/directory_entry/statusJ‚w/ystd::deque::dequehttp://en.cppreference.com/w/cpp/container/deque/dequeN‚v=sC++ concepts: TimedMutexhttp://en.cppreference.com/w/cpp/concept/TimedMutex@‚u!sstd::acoshhttp://en.cppreference.com/w/cpp/numeric/math/acosh?‚t%mstd::complexhttp://en.cppreference.com/w/cpp/numeric/complex8‚sM3std::experimental::filesystem:: std::experimental::filesystem::end(recursive_directory_iterator)http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/begin‚r3std::experimental::filesystem::begin(recursive_directory_iterator)http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/beginM‚q5ystd::mutex::try_lockhttp://en.cppreference.com/w/cpp/thread/mutex/try_lockE‚p-qstd::common_typehttp://en.cppreference.com/w/cpp/types/common_typel‚oWstd::basic_streambuf::basic_streambufhttp://en.cppreference.com/w/cpp/io/basic_streambuf/basic_streambuf;‚noClasseshttp://en.cppreference.com/w/cpp/language/classes]‚mA std::unordered_set::inserthttp://en.cppreference.com/w/cpp/container/unordered_set/insertJ‚l3uOrder of evaluationhttp://en.cppreference.com/w/cpp/language/eval_order$‚k?std::experimental::filesystem::recursive_directory_iterator::operator=http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/operator%3D‚jk3std::back_insert_iterator::back_insert_iteratorhttp://en.cppreference.com/w/cpp/iterator/back_insert_iterator/back_insert_iteratorU‚i5Arithmetic operatorshttp://en.cppreference.com/w/cpp/language/operator_arithmetic_‚hU}std:: std::atomic_fetch_and_explicithttp://en.cppreference.com/w/cpp/atomic/atomic_fetch_andP‚g7}std::atomic_fetch_andhttp://en.cppreference.com/w/cpp/atomic/atomic_fetch_andS‚f7Qualified name lookuphttp://en.cppreference.com/w/cpp/language/qualified_lookup‚eo+!=(std::experimental::pmr::polymorphic_allocator)http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/operator_eq]‚d!+operator==http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/operator_eq:‚cistd::sizehttp://en.cppreference.com/w/cpp/iterator/sizeF‚b5kC++ keywords: exporthttp://en.cppreference.com/w/cpp/keyword/exportK‚a7sstd::ios_base::unsetfhttp://en.cppreference.com/w/cpp/io/ios_base/unsetfa‚`K std::experimental::bad_any_casthttp://en.cppreference.com/w/cpp/experimental/any/bad_any_cast‚_'std::experimental::filesystem::operator/(std::experimental::filesystem::path)http://en.cppreference.com/w/cpp/experimental/fs/path/operator_slash‚^wstd::experimental::erase_if (std::unordered_multimap)http://en.cppreference.com/w/cpp/experimental/unordered_multimap/erase_ifh‚]Ostd::allocator_traits::deallocatehttp://en.cppreference.com/w/cpp/memory/allocator_traits/deallocateV‚\IwSpecial mathematical functionshttp://en.cppreference.com/w/cpp/numeric/special_math(‚[?!Convenience aliases for containers using polymorphic allocators (library fundamentals TS)http://en.cppreference.com/w/cpp/experimental/lib_extensions/pmr_container‚Z'{std::experimental::filesystem:: std::experimental::filesystem::symlink_statushttp://en.cppreference.com/w/cpp/experimental/fs/status_‚YW{std::experimental::filesystem::statushttp://en.cppreference.com/w/cpp/experimental/fs/status\‚X7std::function::targethttp://en.cppreference.com/w/cpp/utility/functional/function/target7‚W%]C++ keywordshttp://en.cppreference.com/w/cpp/keywordv‚Vmstd::experimental::filesystem::directory_optionshttp://en.cppreference.com/w/cpp/experimental/fs/directory_optionsv‚UK3!=(std::geometric_distribution)http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/operator_cmpa‚T!3operator==http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/operator_cmp *ˆAú«S ù “ " Ù ' º g  ² 7 þ ¢ Vù´až?Ì>ÝxÕ‹1Úˆ/Ñr»a÷ˆlƒ"Kstd::shuffle_order_engine::seedhttp://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/seedgƒ![std::common_type(std::chrono::duration)http://en.cppreference.com/w/cpp/chrono/duration/common_typeWƒ SoStandard library header http://en.cppreference.com/w/cpp/header/streambufTƒ3std::seed_seq::sizehttp://en.cppreference.com/w/cpp/numeric/random/seed_seq/size]ƒA std::unordered_map::buckethttp://en.cppreference.com/w/cpp/container/unordered_map/bucket\ƒCstd:: std::const_mem_fun1_thttp://en.cppreference.com/w/cpp/utility/functional/mem_fun_t[ƒAstd:: std::const_mem_fun_thttp://en.cppreference.com/w/cpp/utility/functional/mem_fun_tVƒ7std:: std::mem_fun1_thttp://en.cppreference.com/w/cpp/utility/functional/mem_fun_tOƒ)std::mem_fun_thttp://en.cppreference.com/w/cpp/utility/functional/mem_fun_tTƒCyC++ concepts: InputIteratorhttp://en.cppreference.com/w/cpp/concept/InputIteratorWƒSoStandard library header http://en.cppreference.com/w/cpp/header/cinttypesGƒ3ostd::strstream::strhttp://en.cppreference.com/w/cpp/io/strstream/strFƒ'ystd::isfinitehttp://en.cppreference.com/w/cpp/numeric/math/isfiniteWƒ;std::list::emplace_backhttp://en.cppreference.com/w/cpp/container/list/emplace_backbƒM std::moneypunct:: do_curr_symbolhttp://en.cppreference.com/w/cpp/locale/moneypunct/curr_symbol^ƒE std::moneypunct::curr_symbolhttp://en.cppreference.com/w/cpp/locale/moneypunct/curr_symbol ƒy-std::filesystem::recursive_directory_iterator::optionshttp://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/optionspƒostd::basic_streambuf:: std::basic_streambuf::synchttp://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync\ƒGstd::basic_streambuf::pubsynchttp://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync_ƒKstd::bitset:: std::bitset::nonehttp://en.cppreference.com/w/cpp/utility/bitset/all_any_none^ƒIstd::bitset:: std::bitset::anyhttp://en.cppreference.com/w/cpp/utility/bitset/all_any_nonePƒ -std::bitset::allhttp://en.cppreference.com/w/cpp/utility/bitset/all_any_noneBƒ 1gC++ keywords: elsehttp://en.cppreference.com/w/cpp/keyword/elseZƒ Astd::basic_string::comparehttp://en.cppreference.com/w/cpp/string/basic_string/compareIƒ +{ATOMIC_VAR_INIThttp://en.cppreference.com/w/cpp/atomic/ATOMIC_VAR_INITYƒ GIncrement/decrement operatorshttp://en.cppreference.com/w/cpp/language/operator_incdec6ƒgasserthttp://en.cppreference.com/w/cpp/error/assertxƒM5!=(std::independent_bits_engine)http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/operator_cmpbƒ!5operator==http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/operator_cmpMƒ5ystd::underflow_errorhttp://en.cppreference.com/w/cpp/error/underflow_errorPƒ;ystd::end(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/end2jƒIstd::poisson_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/maxWƒ?std::match_results::readyhttp://en.cppreference.com/w/cpp/regex/match_results/readyUƒ9std::deque::push_fronthttp://en.cppreference.com/w/cpp/container/deque/push_frontFƒ-sstd::bitset::sethttp://en.cppreference.com/w/cpp/utility/bitset/setn‚M!std::poisson_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/paramc‚~K std::numeric_limits::has_denormhttp://en.cppreference.com/w/cpp/types/numeric_limits/has_denormW‚}Cstd::basic_streambuf::sgetchttp://en.cppreference.com/w/cpp/io/basic_streambuf/sgetcU‚|A}std::basic_ostream::sentryhttp://en.cppreference.com/w/cpp/io/basic_ostream/sentryL‚{9sstd:: std::nouppercasehttp://en.cppreference.com/w/cpp/io/manip/uppercaseD‚z)sstd::uppercasehttp://en.cppreference.com/w/cpp/io/manip/uppercase;‚ykstd::experimental::filesystem::directory_entry:: std::experimental::filesystem::directory_entry::symlink_statushttp://en.cppreference.com/w/cpp/experimental/fs/directory_entry/status +mŠ ³ : è – G ñ § B Ï q + Ñ u !Ëq'Ç€3¾:ë—7ă8àšHþµk"Å\çmwƒMccpp/regex/regex token iterator/operator cmphttp://en.cppreference.com/w/cpp/regex/regex_token_iterator/operator_cmprƒLi std::experimental::filesystem::is_regular_filehttp://en.cppreference.com/w/cpp/experimental/fs/is_regular_filefƒKMstd::recursive_timed_mutex::lockhttp://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/lockZƒJ7>=(std::basic_string)http://en.cppreference.com/w/cpp/string/basic_string/operator_cmpFƒI>http://en.cppreference.com/w/cpp/string/basic_string/operator_cmpGƒH<=http://en.cppreference.com/w/cpp/string/basic_string/operator_cmpFƒGƒA)gstd::basic_ioshttp://en.cppreference.com/w/cpp/io/basic_iospƒ@Ystd::basic_streambuf::~basic_streambufhttp://en.cppreference.com/w/cpp/io/basic_streambuf/%7Ebasic_streambuf]ƒ?Kstd::experimental::observer_ptrhttp://en.cppreference.com/w/cpp/experimental/observer_ptrQƒ>=ystd::asin(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/asinLƒ=3ystd::uses_allocatorhttp://en.cppreference.com/w/cpp/memory/uses_allocatorƒ<o#std::experimental::source_location::function_namehttp://en.cppreference.com/w/cpp/experimental/source_location/function_namerƒ;astd::experimental::basic_string_view::copyhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/copyJƒ:+}std::fpclassifyhttp://en.cppreference.com/w/cpp/numeric/math/fpclassifyDƒ93iC++ keywords: classhttp://en.cppreference.com/w/cpp/keyword/class]ƒ8Uystd::experimental::filesystem::permshttp://en.cppreference.com/w/cpp/experimental/fs/permsGƒ71qdecltype specifierhttp://en.cppreference.com/w/cpp/language/decltypeWƒ6Cstd::numpunct:: do_groupinghttp://en.cppreference.com/w/cpp/locale/numpunct/groupingSƒ5;std::numpunct::groupinghttp://en.cppreference.com/w/cpp/locale/numpunct/groupingQƒ4MiStandard library header http://en.cppreference.com/w/cpp/header/bitsetYƒ3=std::forward_list::fronthttp://en.cppreference.com/w/cpp/container/forward_list/frontWƒ2=std::ctype::~ctypehttp://en.cppreference.com/w/cpp/locale/ctype_char/%7EctypeCƒ1!ystd::_Exithttp://en.cppreference.com/w/cpp/utility/program/_Exit[ƒ0? std::unordered_set::emptyhttp://en.cppreference.com/w/cpp/container/unordered_set/emptypƒ/O#std::fisher_f_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/resetbƒ.I std::unique_ptr::operator boolhttp://en.cppreference.com/w/cpp/memory/unique_ptr/operator_boolGƒ-3ostd::ios_base::Inithttp://en.cppreference.com/w/cpp/io/ios_base/InitSƒ,;std::shared_lock::mutexhttp://en.cppreference.com/w/cpp/thread/shared_lock/mutexLƒ+1{std::list::reversehttp://en.cppreference.com/w/cpp/container/list/reverseOƒ*7{std::shared_ptr::swaphttp://en.cppreference.com/w/cpp/memory/shared_ptr/swapOƒ);wstd::cosh(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/coshvƒ(u std::basic_streambuf:: std::basic_streambuf::seekposhttp://en.cppreference.com/w/cpp/io/basic_streambuf/pubseekposbƒ'M std::basic_streambuf::pubseekposhttp://en.cppreference.com/w/cpp/io/basic_streambuf/pubseekposrƒ&Ystd::shared_timed_mutex::unlock_sharedhttp://en.cppreference.com/w/cpp/thread/shared_timed_mutex/unlock_sharedƒ% std::reference_wrapper:: std::reference_wrapper::operator T&http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/gethƒ$Cstd::reference_wrapper::gethttp://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/getsƒ#o std::experimental::filesystem::path::has_..._pathhttp://en.cppreference.com/w/cpp/experimental/fs/path/has_path *^‹:ày0 Ö s Û {  ™  ’ ; Ô ‡ 3Öbþ¨bû§Núƒ°<ÝP´[ ³]öº^YƒwAstd::regex_traits::isctypehttp://en.cppreference.com/w/cpp/regex/regex_traits/isctype9ƒvgstd::hashhttp://en.cppreference.com/w/cpp/utility/hashdƒuYstd::multimap:: std::multimap::crbeginhttp://en.cppreference.com/w/cpp/container/multimap/rbeginSƒt7std::multimap::rbeginhttp://en.cppreference.com/w/cpp/container/multimap/rbeginUƒs9std::unordered_map::athttp://en.cppreference.com/w/cpp/container/unordered_map/atMƒr1}std::is_heap_untilhttp://en.cppreference.com/w/cpp/algorithm/is_heap_untilVƒq1 std::divideshttp://en.cppreference.com/w/cpp/utility/functional/divides_voidXƒp?std::char_traits::not_eofhttp://en.cppreference.com/w/cpp/string/char_traits/not_eof>ƒoqstd::erfchttp://en.cppreference.com/w/cpp/numeric/math/erfc:ƒnistd::timehttp://en.cppreference.com/w/cpp/chrono/c/timeMƒm9ustd::ios_base::iostatehttp://en.cppreference.com/w/cpp/io/ios_base/iostate\ƒlISpecial mathematical functionshttp://en.cppreference.com/w/cpp/experimental/special_mathqƒkk std::unordered_set:: std::unordered_set::cbeginhttp://en.cppreference.com/w/cpp/container/unordered_set/begin[ƒj? std::unordered_set::beginhttp://en.cppreference.com/w/cpp/container/unordered_set/beginrƒiQ%std::exponential_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/maxtƒhY!std::experimental::bad_optional_accesshttp://en.cppreference.com/w/cpp/experimental/optional/bad_optional_accessQƒg9}std::current_exceptionhttp://en.cppreference.com/w/cpp/error/current_exceptionVƒf=std::allocator::allocatehttp://en.cppreference.com/w/cpp/memory/allocator/allocateQƒe=ystd::cosh(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/coshdƒda{std::chrono::ceil(std::chrono::time_point)http://en.cppreference.com/w/cpp/chrono/time_point/ceilCƒc-mreturn statementhttp://en.cppreference.com/w/cpp/language/returnSƒbOkStandard library header http://en.cppreference.com/w/cpp/header/ctgmathaƒaOC++ concepts: ReversibleContainerhttp://en.cppreference.com/w/cpp/concept/ReversibleContainerqƒ`mstd::optional::operator std::optional::operator*http://en.cppreference.com/w/cpp/utility/optional/operator%2AZƒ_?std::optional::operator->http://en.cppreference.com/w/cpp/utility/optional/operator%2AQƒ^MiCompile-time rational arithmetichttp://en.cppreference.com/w/cpp/numeric/ratioJƒ]/ystd::stack::stackhttp://en.cppreference.com/w/cpp/container/stack/stackdƒ\Kstd::wstring_convert::convertedhttp://en.cppreference.com/w/cpp/locale/wstring_convert/convertedTƒ[=std::numeric_limits::minhttp://en.cppreference.com/w/cpp/types/numeric_limits/minƒZ_;std::chi_squared_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/operator%28%29|ƒYi!std::filesystem::directory_iterator::operator=http://en.cppreference.com/w/cpp/filesystem/directory_iterator/operator%3DtƒXo std::filesystem::operator/(std::filesystem::path)http://en.cppreference.com/w/cpp/filesystem/path/operator_slashhƒWMstd:: std::make_default_searcherhttp://en.cppreference.com/w/cpp/utility/functional/default_searcher]ƒV7std::default_searcherhttp://en.cppreference.com/w/cpp/utility/functional/default_searcherƒU1std::experimental::pmr::unsynchronized_pool_resource::releasehttp://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/release`ƒTI std::basic_iostream::operator=http://en.cppreference.com/w/cpp/io/basic_iostream/operator%3DWƒSSoStandard library header http://en.cppreference.com/w/cpp/header/cstdalignFƒR-sstd::future_errchttp://en.cppreference.com/w/cpp/thread/future_errcdƒQSstd::chrono::time_point::time_pointhttp://en.cppreference.com/w/cpp/chrono/time_point/time_pointWƒPCstd::basic_streambuf::gbumphttp://en.cppreference.com/w/cpp/io/basic_streambuf/gbumpNƒO1std::deque::~dequehttp://en.cppreference.com/w/cpp/container/deque/%7EdequerƒNQ%std::uniform_int_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/min )‘µ\»h ´ g æ M / Ç _ ñ ° c Aé8äy÷‘m χ/á›VËuü‘h„ Qstd::basic_istream::~basic_istreamhttp://en.cppreference.com/w/cpp/io/basic_istream/%7Ebasic_istreamv„[#std::reverse_iterator::reverse_iteratorhttp://en.cppreference.com/w/cpp/iterator/reverse_iterator/reverse_iteratorS„1>=(std::sub_match)http://en.cppreference.com/w/cpp/regex/sub_match/operator_cmpB„>http://en.cppreference.com/w/cpp/regex/sub_match/operator_cmpC„<=http://en.cppreference.com/w/cpp/regex/sub_match/operator_cmpB„>(std::cauchy_distribution)http://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/operator_ltltgtgtc„!7operator<>(std::chi_squared_distribution)http://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/operator_ltltgtgth„!Aoperator<http://en.cppreference.com/w/cpp/header/iosfwdb„Estd::chrono::time_point_casthttp://en.cppreference.com/w/cpp/chrono/time_point/time_point_castI„ -ystd::partial_sumhttp://en.cppreference.com/w/cpp/algorithm/partial_sumU„ 5Assignment operatorshttp://en.cppreference.com/w/cpp/language/operator_assignmentY„ =std::priority_queue::tophttp://en.cppreference.com/w/cpp/container/priority_queue/tops„ W!std::unordered_multiset::bucket_counthttp://en.cppreference.com/w/cpp/container/unordered_multiset/bucket_countM„ 1}std::adjacent_findhttp://en.cppreference.com/w/cpp/algorithm/adjacent_findJ„9oC++ keywords: decltypehttp://en.cppreference.com/w/cpp/keyword/decltype>„#mName lookuphttp://en.cppreference.com/w/cpp/language/lookupk„Sstd::regex_iterator::regex_iteratorhttp://en.cppreference.com/w/cpp/regex/regex_iterator/regex_iteratore„S C++ concepts: BidirectionalIteratorhttp://en.cppreference.com/w/cpp/concept/BidirectionalIteratore„Cstd::student_t_distributionhttp://en.cppreference.com/w/cpp/numeric/random/student_t_distributionO„7{std::thread::joinablehttp://en.cppreference.com/w/cpp/thread/thread/joinableH„g9std::experimental::propagate_const::operator std::experimental::propagate_const::operator const element_type*http://en.cppreference.com/w/cpp/experimental/propagate_const/operator_element_type%2A„9std::experimental::propagate_const::operator element_type*http://en.cppreference.com/w/cpp/experimental/propagate_const/operator_element_type%2A~„m!std::experimental::flex_barrier::arrive_and_drophttp://en.cppreference.com/w/cpp/experimental/flex_barrier/arrive_and_dropJƒ3ustd::swap(std::map)http://en.cppreference.com/w/cpp/container/map/swap2Wƒ~1std:: std::expintlhttp://en.cppreference.com/w/cpp/experimental/special_math/expintWƒ}1std:: std::expintfhttp://en.cppreference.com/w/cpp/experimental/special_math/expintPƒ|#std::expinthttp://en.cppreference.com/w/cpp/experimental/special_math/expintJƒ{/ystd::queue::fronthttp://en.cppreference.com/w/cpp/container/queue/frontQƒz9}std::throw_with_nestedhttp://en.cppreference.com/w/cpp/error/throw_with_nestedVƒy=std::basic_string::erasehttp://en.cppreference.com/w/cpp/string/basic_string/eraseHƒx-wstd::queue::swaphttp://en.cppreference.com/w/cpp/container/queue/swap -™‚¹@ â ‘ F ½ € / á ƒ 2 é ¡ X  ¸ n Ì…$ÈsÀgù•J´_”=ä‹1¶u"Ý™A„MyHUGE_VALhttp://en.cppreference.com/w/cpp/numeric/math/HUGE_VALB„LyHUGE_VALFhttp://en.cppreference.com/w/cpp/numeric/math/HUGE_VALP„K?ustd::experimental::futurehttp://en.cppreference.com/w/cpp/experimental/future>„Jqstd::ceilhttp://en.cppreference.com/w/cpp/numeric/math/ceilx„I_#std::basic_string_view::basic_string_viewhttp://en.cppreference.com/w/cpp/string/basic_string_view/basic_string_viewW„HE}std::basic_streambuf:: egptrhttp://en.cppreference.com/w/cpp/io/basic_streambuf/gptrV„GC}std::basic_streambuf:: gptrhttp://en.cppreference.com/w/cpp/io/basic_streambuf/gptrV„FC}std::basic_streambuf::ebackhttp://en.cppreference.com/w/cpp/io/basic_streambuf/gptrT„E3std::ratio_multiplyhttp://en.cppreference.com/w/cpp/numeric/ratio/ratio_multiplyp„D_std::chrono::time_point::time_since_epochhttp://en.cppreference.com/w/cpp/chrono/time_point/time_since_epochU„C;std::codecvt_utf8_utf16http://en.cppreference.com/w/cpp/locale/codecvt_utf8_utf16R„BAwC++ keywords: dynamic_casthttp://en.cppreference.com/w/cpp/keyword/dynamic_castI„A)}operator new[]http://en.cppreference.com/w/cpp/memory/new/operator_newG„@%}operator newhttp://en.cppreference.com/w/cpp/memory/new/operator_newH„?-wstd::array::sizehttp://en.cppreference.com/w/cpp/container/array/sizea„>Wstd::experimental::erase (std::deque)http://en.cppreference.com/w/cpp/experimental/deque/erasek„=Ostd::unordered_map::unordered_maphttp://en.cppreference.com/w/cpp/container/unordered_map/unordered_mapV„<=std::shared_lock::unlockhttp://en.cppreference.com/w/cpp/thread/shared_lock/unlockZ„;Istd:: std::uncaught_exceptionshttp://en.cppreference.com/w/cpp/error/uncaught_exceptionS„:;std::uncaught_exceptionhttp://en.cppreference.com/w/cpp/error/uncaught_exceptionR„9OiC++ keywords: final (since C++11)http://en.cppreference.com/w/cpp/keyword/finalY„8=std::unordered_map::findhttp://en.cppreference.com/w/cpp/container/unordered_map/find^„7Mstd::filesystem::path::root_namehttp://en.cppreference.com/w/cpp/filesystem/path/root_nameD„63iC++ keywords: bitorhttp://en.cppreference.com/w/cpp/keyword/bitorN„5-std:: std::betalhttp://en.cppreference.com/w/cpp/numeric/special_math/betaN„4-std:: std::betafhttp://en.cppreference.com/w/cpp/numeric/special_math/betaG„3std::betahttp://en.cppreference.com/w/cpp/numeric/special_math/betaU„2/ >=(std::multimap)http://en.cppreference.com/w/cpp/container/multimap/operator_cmpE„1 >http://en.cppreference.com/w/cpp/container/multimap/operator_cmpF„0 <=http://en.cppreference.com/w/cpp/container/multimap/operator_cmpE„/ É) Ð n  ½ n   h Ð {  È fñjôœPñµuè€,Ô”&Ó‘6Â7ª „t std::hash (std::experimental:: std::experimental::u16string_viewhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/hash„s std::hash (std::experimental:: std::experimental::wstring_viewhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/hashq„r_std::hash (std::experimental::string_viewhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/hashX„q3std::equal_tohttp://en.cppreference.com/w/cpp/utility/functional/equal_to_void?„p'kstd::bad_casthttp://en.cppreference.com/w/cpp/types/bad_castP„o5std::array::max_sizehttp://en.cppreference.com/w/cpp/container/array/max_sizek„nSstd::error_category::error_categoryhttp://en.cppreference.com/w/cpp/error/error_category/error_category=„m%istd::is_samehttp://en.cppreference.com/w/cpp/types/is_sameU„lEystd::chrono::time_point::minhttp://en.cppreference.com/w/cpp/chrono/time_point/minQ„k7std::move_if_noexcepthttp://en.cppreference.com/w/cpp/utility/move_if_noexcepte„jIstd::unordered_multiset::counthttp://en.cppreference.com/w/cpp/container/unordered_multiset/count „i}'std::experimental::pmr::memory_resource::memory_resourcehttp://en.cppreference.com/w/cpp/experimental/memory_resource/memory_resource=„h!mstd::mergehttp://en.cppreference.com/w/cpp/algorithm/merged„gKstd::basic_string::find_last_ofhttp://en.cppreference.com/w/cpp/string/basic_string/find_last_ofn„fM!std::bernoulli_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/mina„eI std::error_code::operator boolhttp://en.cppreference.com/w/cpp/error/error_code/operator_bool\„dWustd::time_put:: std::time_put::do_puthttp://en.cppreference.com/w/cpp/locale/time_put/putI„c1ustd::time_put::puthttp://en.cppreference.com/w/cpp/locale/time_put/putU„bOoNull-terminated multibyte stringshttp://en.cppreference.com/w/cpp/string/multibytes„aQ'std::piecewise_linear_distributionhttp://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution„`std::filesystem:: std::filesystem::end(directory_iterator)http://en.cppreference.com/w/cpp/filesystem/directory_iterator/beginr„_astd::filesystem::begin(directory_iterator)http://en.cppreference.com/w/cpp/filesystem/directory_iterator/begin_„^U}std:: std::atomic_fetch_sub_explicithttp://en.cppreference.com/w/cpp/atomic/atomic_fetch_subP„]7}std::atomic_fetch_subhttp://en.cppreference.com/w/cpp/atomic/atomic_fetch_sub]„\Uystd::experimental::filesystem::spacehttp://en.cppreference.com/w/cpp/experimental/fs/spaceR„[;}std::system_error::whathttp://en.cppreference.com/w/cpp/error/system_error/what„ZsGstd::geometric_distribution::geometric_distributionhttp://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/geometric_distributionW„YG{std::filesystem::path::assignhttp://en.cppreference.com/w/cpp/filesystem/path/assignW„X?std::sub_match::sub_matchhttp://en.cppreference.com/w/cpp/regex/sub_match/sub_matchO„W7{std::codecvt::codecvthttp://en.cppreference.com/w/cpp/locale/codecvt/codecvtL„V5wstd::exception::whathttp://en.cppreference.com/w/cpp/error/exception/what]„UC std::initializer_list::sizehttp://en.cppreference.com/w/cpp/utility/initializer_list/sizeN„T5{std::future_categoryhttp://en.cppreference.com/w/cpp/thread/future_category_„SMstd::locale::operator operator!=http://en.cppreference.com/w/cpp/locale/locale/operator_cmpV„R;std::locale::operator==http://en.cppreference.com/w/cpp/locale/locale/operator_cmp„Q3std::experimental::basic_string_view:: std::experimental::basic_string_view::lengthhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/sizer„Pastd::experimental::basic_string_view::sizehttp://en.cppreference.com/w/cpp/experimental/basic_string_view/sizez„OY-std::extreme_value_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/paramB„NyHUGE_VALLhttp://en.cppreference.com/w/cpp/numeric/math/HUGE_VAL +Šr$ÖŠ> ñ £ T  ª = Š > Ï  Í i Ïw£h “>ã’0ÓBÝ’*Â[í=ØŠK…?kstd::isupper(std::locale)http://en.cppreference.com/w/cpp/locale/isupperb…I std::timed_mutex::try_lock_forhttp://en.cppreference.com/w/cpp/thread/timed_mutex/try_lock_for?…#ostd::copy_nhttp://en.cppreference.com/w/cpp/algorithm/copy_nk…Istd::gamma_distribution:: betahttp://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/paramsk…Istd::gamma_distribution::alphahttp://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/paramsd…Istd::error_category::operatorhttp://en.cppreference.com/w/cpp/header/fstreamS…F?{std::basic_stringbuf::strhttp://en.cppreference.com/w/cpp/io/basic_stringbuf/strA…E)mstd::terminatehttp://en.cppreference.com/w/cpp/error/terminateF…D3mstd:: std::noskipwshttp://en.cppreference.com/w/cpp/io/manip/skipws>…C#mstd::skipwshttp://en.cppreference.com/w/cpp/io/manip/skipwsK…B+std::ratio_lesshttp://en.cppreference.com/w/cpp/numeric/ratio/ratio_lessK…A/{std::partial_sorthttp://en.cppreference.com/w/cpp/algorithm/partial_sortx…@gstd::experimental::source_location::file_namehttp://en.cppreference.com/w/cpp/experimental/source_location/file_nameP…??ustd::experimental::reseedhttp://en.cppreference.com/w/cpp/experimental/reseedg…>Kstd::forward_list::splice_afterhttp://en.cppreference.com/w/cpp/container/forward_list/splice_afterV…=E{C++ concepts: OutputIteratorhttp://en.cppreference.com/w/cpp/concept/OutputIteratorn…<M!std::lognormal_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/minM…;5ystd::underlying_typehttp://en.cppreference.com/w/cpp/types/underlying_typeA…:#sstd::wctypehttp://en.cppreference.com/w/cpp/string/wide/wctypex…9estd::filesystem::directory_entry::operator>=http://en.cppreference.com/w/cpp/filesystem/directory_entry/operator_cmpw…8cstd::filesystem::directory_entry::operator>http://en.cppreference.com/w/cpp/filesystem/directory_entry/operator_cmpx…7estd::filesystem::directory_entry::operator<=http://en.cppreference.com/w/cpp/filesystem/directory_entry/operator_cmpw…6cstd::filesystem::directory_entry::operatorhttp://en.cppreference.com/w/cpp/header/cwcharM…15ystd::error_conditionhttp://en.cppreference.com/w/cpp/error/error_conditionZ…0IC++ keywords: reinterpret_casthttp://en.cppreference.com/w/cpp/keyword/reinterpret_cast]…/A std::unordered_map::inserthttp://en.cppreference.com/w/cpp/container/unordered_map/insertT….Gustd::array:: std::array::cendhttp://en.cppreference.com/w/cpp/container/array/endF…-+ustd::array::endhttp://en.cppreference.com/w/cpp/container/array/endC…,+ostd:: std::nanlhttp://en.cppreference.com/w/cpp/numeric/math/nanC…++ostd:: std::nanfhttp://en.cppreference.com/w/cpp/numeric/math/nan<…*ostd::nanhttp://en.cppreference.com/w/cpp/numeric/math/nanC…)%ustd::wmemchrhttp://en.cppreference.com/w/cpp/string/wide/wmemchrB…(yFE_UPWARDhttp://en.cppreference.com/w/cpp/numeric/fenv/FE_roundF…''yFE_TOWARDZEROhttp://en.cppreference.com/w/cpp/numeric/fenv/FE_roundE…&%yFE_TONEARESThttp://en.cppreference.com/w/cpp/numeric/fenv/FE_roundD…%#yFE_DOWNWARDhttp://en.cppreference.com/w/cpp/numeric/fenv/FE_roundr…$astd::experimental::basic_string_view::backhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/backS…#;std::unexpected_handlerhttp://en.cppreference.com/w/cpp/error/unexpected_handlerO…"7{std::basic_string::athttp://en.cppreference.com/w/cpp/string/basic_string/atQ…!=ystd::sqrt(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/sqrtE… 'wstd::iswalnumhttp://en.cppreference.com/w/cpp/string/wide/iswalnum ,”¼Rþ$ Ù ‘ ? ï ž C ú ´ [ Q ÿ ¬ Oï‰ ©Wô¦`Õ>ã)¶p¨8â‘:”"…x Istd::pmr::monotonic_buffer_resource::~monotonic_buffer_resourcehttp://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/%7Emonotonic_buffer_resourceT…w5std:: std::binder2ndhttp://en.cppreference.com/w/cpp/utility/functional/binder12N…v)std::binder1sthttp://en.cppreference.com/w/cpp/utility/functional/binder12S…u?{std::basic_filebuf::uflowhttp://en.cppreference.com/w/cpp/io/basic_filebuf/uflowm…tq}std::basic_streambuf:: std::basic_streambuf::epptrhttp://en.cppreference.com/w/cpp/io/basic_streambuf/pptrl…so}std::basic_streambuf:: std::basic_streambuf::pptrhttp://en.cppreference.com/w/cpp/io/basic_streambuf/pptrV…rC}std::basic_streambuf::pbasehttp://en.cppreference.com/w/cpp/io/basic_streambuf/pptrC…q+ostd::is_pointerhttp://en.cppreference.com/w/cpp/types/is_pointerp…pe std:: std::atomic_flag_test_and_set_explicithttp://en.cppreference.com/w/cpp/atomic/atomic_flag_test_and_seta…oG std::atomic_flag_test_and_sethttp://en.cppreference.com/w/cpp/atomic/atomic_flag_test_and_setS…n;std::shared_mutex::lockhttp://en.cppreference.com/w/cpp/thread/shared_mutex/lockX…m;std::get_pointer_safetyhttp://en.cppreference.com/w/cpp/memory/gc/get_pointer_safetyO…l)>=(std::array)http://en.cppreference.com/w/cpp/container/array/operator_cmpB…k>http://en.cppreference.com/w/cpp/container/array/operator_cmpC…j<=http://en.cppreference.com/w/cpp/container/array/operator_cmpB…ihttp://en.cppreference.com/w/cpp/header/vectorg…NKstd::unordered_map::load_factorhttp://en.cppreference.com/w/cpp/container/unordered_map/load_factorA…M)mstd::sub_matchhttp://en.cppreference.com/w/cpp/regex/sub_match -y±_Ài Ì i  ¨ _ · e ò œ & Ë ‡ "Óh¸Cö©Lû¶d¢6é³U ²lÞ“2ÂyF†%!std::minushttp://en.cppreference.com/w/cpp/utility/functional/minusm†$Ustd::regex_traits::transform_primaryhttp://en.cppreference.com/w/cpp/regex/regex_traits/transform_primary^†#Kstd::make_error_code(std::errc)http://en.cppreference.com/w/cpp/error/errc/make_error_codeH†"-wstd::deque::sizehttp://en.cppreference.com/w/cpp/container/deque/size †!o7std::front_insert_iterator::front_insert_iteratorhttp://en.cppreference.com/w/cpp/iterator/front_insert_iterator/front_insert_iteratorC† -minline specifierhttp://en.cppreference.com/w/cpp/language/inlineW†;std::multiset::max_sizehttp://en.cppreference.com/w/cpp/container/multiset/max_sizeF†+ustd::map::erasehttp://en.cppreference.com/w/cpp/container/map/erase[†Gstd::swap(std::match_results)http://en.cppreference.com/w/cpp/regex/match_results/swap23†]Commentshttp://en.cppreference.com/w/cpp/commentJ†/ystd::deque::erasehttp://en.cppreference.com/w/cpp/container/deque/erasei†Mstd::forward_list::get_allocatorhttp://en.cppreference.com/w/cpp/container/forward_list/get_allocator]†S{std:: std::is_nothrow_constructiblehttp://en.cppreference.com/w/cpp/types/is_constructible_†W{std:: std::is_trivially_constructiblehttp://en.cppreference.com/w/cpp/types/is_constructibleO†7{std::is_constructiblehttp://en.cppreference.com/w/cpp/types/is_constructibleB†'qstd::wcsftimehttp://en.cppreference.com/w/cpp/chrono/c/wcsftimeN†3}std::multiset::sizehttp://en.cppreference.com/w/cpp/container/multiset/sizeZ†Estd::basic_stringbuf::setbufhttp://en.cppreference.com/w/cpp/io/basic_stringbuf/setbufJ†3ustd::swap(std::set)http://en.cppreference.com/w/cpp/container/set/swap2J†5sstd::swap(std::pair)http://en.cppreference.com/w/cpp/utility/pair/swap2r†G/!=(std::poisson_distribution)http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/operator_cmp_†!/operator==http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/operator_cmpK†7sReference declarationhttp://en.cppreference.com/w/cpp/language/referenceh†Sstd::basic_ifstream::basic_ifstreamhttp://en.cppreference.com/w/cpp/io/basic_ifstream/basic_ifstreamL† -std::islessequalhttp://en.cppreference.com/w/cpp/numeric/math/islessequalb† I std::unique_lock::try_lock_forhttp://en.cppreference.com/w/cpp/thread/unique_lock/try_lock_forA† )mstd::is_objecthttp://en.cppreference.com/w/cpp/types/is_objectX† ?std::unique_lock::releasehttp://en.cppreference.com/w/cpp/thread/unique_lock/releases† _std::pmr::polymorphic_allocator::allocatehttp://en.cppreference.com/w/cpp/memory/polymorphic_allocator/allocateS†7std::map::lower_boundhttp://en.cppreference.com/w/cpp/container/map/lower_boundp†Wstd::recursive_mutex::recursive_mutexhttp://en.cppreference.com/w/cpp/thread/recursive_mutex/recursive_mutexO†7{std::nested_exceptionhttp://en.cppreference.com/w/cpp/error/nested_exceptionS†Cwstd::filesystem::path::pathhttp://en.cppreference.com/w/cpp/filesystem/path/pathO†7{std::generic_categoryhttp://en.cppreference.com/w/cpp/error/generic_categoryF†+ustd::list::sorthttp://en.cppreference.com/w/cpp/container/list/sort[†Cstd::error_condition::clearhttp://en.cppreference.com/w/cpp/error/error_condition/clear`†Qstd::filesystem::path::is_relativehttp://en.cppreference.com/w/cpp/filesystem/path/is_absrel`†Qstd::filesystem::path::is_absolutehttp://en.cppreference.com/w/cpp/filesystem/path/is_absrelQ…9}std::char_traits::movehttp://en.cppreference.com/w/cpp/string/char_traits/moveF…~+ustd::list::listhttp://en.cppreference.com/w/cpp/container/list/listT…}A{std:: std::replace_copy_ifhttp://en.cppreference.com/w/cpp/algorithm/replace_copyK…|/{std::replace_copyhttp://en.cppreference.com/w/cpp/algorithm/replace_copyN…{1std:: std::shufflehttp://en.cppreference.com/w/cpp/algorithm/random_shuffleO…z3std::random_shufflehttp://en.cppreference.com/w/cpp/algorithm/random_shuffleL…y-Member templateshttp://en.cppreference.com/w/cpp/language/member_template *³ºSŠ Ý \ ö « ^  f    ‚ ¯Iù§Y²R ¾x3í¨Vܘ0ê“GÉ[ ³S†O?{std::basic_ofstream::swaphttp://en.cppreference.com/w/cpp/io/basic_ofstream/swapO†N;wstd::exp(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/expk†MOstd::reverse_iterator::operator[]http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_at{†Lg!std::pmr::synchronized_pool_resource::releasehttp://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/releaseI†K)}Basic conceptshttp://en.cppreference.com/w/cpp/language/basic_conceptsT†J3zero initializationhttp://en.cppreference.com/w/cpp/language/zero_initializationC†I/kArray declarationhttp://en.cppreference.com/w/cpp/language/arraye†HIstd::unordered_multimap::emptyhttp://en.cppreference.com/w/cpp/container/unordered_multimap/emptyA†G)mstd::enable_ifhttp://en.cppreference.com/w/cpp/types/enable_if>†F-cC++ keywords: orhttp://en.cppreference.com/w/cpp/keyword/or6†Eastd::feofhttp://en.cppreference.com/w/cpp/io/c/feofO†D)>=(std::deque)http://en.cppreference.com/w/cpp/container/deque/operator_cmpB†C>http://en.cppreference.com/w/cpp/container/deque/operator_cmpC†B<=http://en.cppreference.com/w/cpp/container/deque/operator_cmpB†A%ustd::wcscollhttp://en.cppreference.com/w/cpp/string/wide/wcscoll]†=A std::unordered_map::rehashhttp://en.cppreference.com/w/cpp/container/unordered_map/rehash^†<C operator<<(std::thread::id)http://en.cppreference.com/w/cpp/thread/thread/id/operator_ltltC†;+ostd::type_indexhttp://en.cppreference.com/w/cpp/types/type_indexK†:%std::ptr_funhttp://en.cppreference.com/w/cpp/utility/functional/ptr_funO†9;wstd::sinh(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/sinhM†85ystd::is_literal_typehttp://en.cppreference.com/w/cpp/types/is_literal_typec†7Astd::fisher_f_distributionhttp://en.cppreference.com/w/cpp/numeric/random/fisher_f_distributione†6O std::begin(std::initializer_list)http://en.cppreference.com/w/cpp/utility/initializer_list/begin2h†5]std::experimental::erase_if (std::deque)http://en.cppreference.com/w/cpp/experimental/deque/erase_if†4oCstd::fisher_f_distribution::fisher_f_distributionhttp://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/fisher_f_distributionf†3Cstd::mask_array::mask_arrayhttp://en.cppreference.com/w/cpp/numeric/valarray/mask_array/mask_array †2)std::experimental::pmr::polymorphic_allocator::deallocatehttp://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/deallocateU†19std::set::emplace_hinthttp://en.cppreference.com/w/cpp/container/set/emplace_hint†0}Estd::scoped_allocator_adaptor::~scoped_allocator_adaptorhttp://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/%7Escoped_allocator_adaptorY†/Mystd::vector:: std::vector::crendhttp://en.cppreference.com/w/cpp/container/vector/rendJ†./ystd::vector::rendhttp://en.cppreference.com/w/cpp/container/vector/rendH†-7mC++ concepts: Comparehttp://en.cppreference.com/w/cpp/concept/Comparec†,Istd::regex_iterator::operator=http://en.cppreference.com/w/cpp/regex/regex_iterator/operator%3D~†+m!std::experimental::function::get_memory_resourcehttp://en.cppreference.com/w/cpp/experimental/function/get_memory_resource)†*Cstd::experimental::propagate_const::operator std::experimental::propagate_const::operator->http://en.cppreference.com/w/cpp/experimental/propagate_const/operator%2Az†)gstd::experimental::propagate_const::operator*http://en.cppreference.com/w/cpp/experimental/propagate_const/operator%2AI†(1ustd::locale::facethttp://en.cppreference.com/w/cpp/locale/locale/facetd†'Kstd::shared_timed_mutex::unlockhttp://en.cppreference.com/w/cpp/thread/shared_timed_mutex/unlockC†&%ustd::isgraphhttp://en.cppreference.com/w/cpp/string/byte/isgraph (Ï~ø«B Ó n Ú v ÿ » l É S Þ „ 5ÐdÒ`í”>ô£dÑ}@üµWÚgÏK†w3wstd::is_convertiblehttp://en.cppreference.com/w/cpp/types/is_convertiblea†vI std::numeric_limits::is_modulohttp://en.cppreference.com/w/cpp/types/numeric_limits/is_modulo†uwstd::experimental::filesystem::path::replace_filenamehttp://en.cppreference.com/w/cpp/experimental/fs/path/replace_filenamea†tI std::swap(std::priority_queue)http://en.cppreference.com/w/cpp/container/priority_queue/swap2p†sWstd::wstring_convert::wstring_converthttp://en.cppreference.com/w/cpp/locale/wstring_convert/wstring_convertz†rY-std::extreme_value_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/reset[†q? std::deque::get_allocatorhttp://en.cppreference.com/w/cpp/container/deque/get_allocatorD†p3istd:: std::internalhttp://en.cppreference.com/w/cpp/io/manip/leftA†o-istd:: std::righthttp://en.cppreference.com/w/cpp/io/manip/left:†nistd::lefthttp://en.cppreference.com/w/cpp/io/manip/leftQ†m7std::initializer_listhttp://en.cppreference.com/w/cpp/utility/initializer_listH†l/ustd::codecvt_modehttp://en.cppreference.com/w/cpp/locale/codecvt_modeE†k'wstd::iswalphahttp://en.cppreference.com/w/cpp/string/wide/iswalpha<†jostd::coshttp://en.cppreference.com/w/cpp/numeric/math/cosN†i3}std::dynarray::sizehttp://en.cppreference.com/w/cpp/container/dynarray/sizeG†h/sstd::is_referencehttp://en.cppreference.com/w/cpp/types/is_referenceS†gOkStandard library header http://en.cppreference.com/w/cpp/header/numericV†f;std::promise::operator=http://en.cppreference.com/w/cpp/thread/promise/operator%3Dp†eK'std::lognormal_distribution:: shttp://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/paramso†dI'std::lognormal_distribution::mhttp://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/paramsH†c'}std::seed_seqhttp://en.cppreference.com/w/cpp/numeric/random/seed_seqD†b+qstd::any::emptyhttp://en.cppreference.com/w/cpp/utility/any/emptyi†aW C++ concepts: FormattedOutputFunctionhttp://en.cppreference.com/w/cpp/concept/FormattedOutputFunctionb†`gqstd::filesystem:: std::filesystem::remove_allhttp://en.cppreference.com/w/cpp/filesystem/removeL†_;qstd::filesystem::removehttp://en.cppreference.com/w/cpp/filesystem/removeW†^;std::forward_list::sorthttp://en.cppreference.com/w/cpp/container/forward_list/sortr†]Q%std::exponential_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/mins†\W!std::unordered_multimap::bucket_counthttp://en.cppreference.com/w/cpp/container/unordered_multimap/bucket_count†[ Astd::filesystem::recursive_directory_iterator::recursion_pendinghttp://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/recursion_pendingL†Z3ystd::codecvt_bynamehttp://en.cppreference.com/w/cpp/locale/codecvt_bynameA†Y#sstd::strcmphttp://en.cppreference.com/w/cpp/string/byte/strcmpt†X[std::pmr::operator std::pmr::operator!=http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/operator_eqa†W5std::pmr::operator==http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/operator_eq†VkGstd::negative_binomial_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/operator%28%29b†UI std::basic_string_view::substrhttp://en.cppreference.com/w/cpp/string/basic_string_view/substrl†TQstd::shared_future::~shared_futurehttp://en.cppreference.com/w/cpp/thread/shared_future/%7Eshared_futuref†Sc}std::chrono::floor(std::chrono::time_point)http://en.cppreference.com/w/cpp/chrono/time_point/floorJ†R3ustd::locale::id::idhttp://en.cppreference.com/w/cpp/locale/locale/id/id†Qa5std::negative_binomial_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/reset†Pm#std::experimental::basic_string_view::operator[]http://en.cppreference.com/w/cpp/experimental/basic_string_view/operator_at -wy-ä–E ² ç $ Ö } " á ™ P ß ‘ .ç„&²SÓŠ7Õs'½f!ñ¹l#Ú—8é¢\ÏwU‡$3 >=(std::thread::id)http://en.cppreference.com/w/cpp/thread/thread/id/operator_cmpC‡# >http://en.cppreference.com/w/cpp/thread/thread/id/operator_cmpD‡" <=http://en.cppreference.com/w/cpp/thread/thread/id/operator_cmpC‡! ‡qstd::rinthttp://en.cppreference.com/w/cpp/numeric/math/rintX‡G}std::filesystem::status_knownhttp://en.cppreference.com/w/cpp/filesystem/status_knownV‡E{std::chrono::duration_valueshttp://en.cppreference.com/w/cpp/chrono/duration_valuesK‡?kstd::isalnum(std::locale)http://en.cppreference.com/w/cpp/locale/isalnumi‡Mstd::unordered_multiset::reservehttp://en.cppreference.com/w/cpp/container/unordered_multiset/reserveT†Cystd::experimental::negationhttp://en.cppreference.com/w/cpp/experimental/negationG†~m1std::filesystem::recursive_directory_iterator::operator std::filesystem::recursive_directory_iterator::incrementhttp://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/increment†}1std::filesystem::recursive_directory_iterator::operator++http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/incrementN†|;ustd::hash (std::bitset)http://en.cppreference.com/w/cpp/utility/bitset/hashK†{3wstd::weak_ptr::swaphttp://en.cppreference.com/w/cpp/memory/weak_ptr/swapF†z5kC++ keywords: sizeofhttp://en.cppreference.com/w/cpp/keyword/sizeofI†y-ystd::lower_boundhttp://en.cppreference.com/w/cpp/algorithm/lower_bound†xo)std::pmr::synchronized_pool_resource::do_is_equalhttp://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/do_is_equal +˜î{& ¾ F ò … * Î ƒ D ù ‹ 0 » c ³Gåpü¯a¿r Åp³h½{=ó¤Põ˜Z‡O= std::declare_no_pointershttp://en.cppreference.com/w/cpp/memory/gc/declare_no_pointersX‡NG}std::filesystem::current_pathhttp://en.cppreference.com/w/cpp/filesystem/current_pathQ‡M-std::slice_arrayhttp://en.cppreference.com/w/cpp/numeric/valarray/slice_arrayL‡L?mProgram support utilitieshttp://en.cppreference.com/w/cpp/utility/programG‡K3othe pointer literalhttp://en.cppreference.com/w/cpp/language/nullptr;‡Jonullptrhttp://en.cppreference.com/w/cpp/language/nullptr?‡I'kstd::is_finalhttp://en.cppreference.com/w/cpp/types/is_finalE‡H)ustd::is_sortedhttp://en.cppreference.com/w/cpp/algorithm/is_sorted`‡GOstd::chrono::duration_values::maxhttp://en.cppreference.com/w/cpp/chrono/duration_values/maxH‡F-wstd::setiosflagshttp://en.cppreference.com/w/cpp/io/manip/setiosflags`‡EMstd::filesystem::path::operator=http://en.cppreference.com/w/cpp/filesystem/path/operator%3DW‡D;std::multiset::key_comphttp://en.cppreference.com/w/cpp/container/multiset/key_compR‡C;}std::sub_match::comparehttp://en.cppreference.com/w/cpp/regex/sub_match/compareA‡B!uExceptionshttp://en.cppreference.com/w/cpp/language/exceptionsf‡AMstd::basic_string::get_allocatorhttp://en.cppreference.com/w/cpp/string/basic_string/get_allocatorJ‡@7qstd:: std::replace_ifhttp://en.cppreference.com/w/cpp/algorithm/replaceA‡?%qstd::replacehttp://en.cppreference.com/w/cpp/algorithm/replace[‡>Cstd::error_condition::valuehttp://en.cppreference.com/w/cpp/error/error_condition/valueK‡='std::c16rtombhttp://en.cppreference.com/w/cpp/string/multibyte/c16rtombJ‡<9oC++ keywords: explicithttp://en.cppreference.com/w/cpp/keyword/explicitq‡;i std::experimental::filesystem::path::extensionhttp://en.cppreference.com/w/cpp/experimental/fs/path/extensionr‡:Q%std::independent_bits_engine::basehttp://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/base_‡9G std::swap(std::unordered_set)http://en.cppreference.com/w/cpp/container/unordered_set/swap2i‡8C!!=(std::unordered_multimap)http://en.cppreference.com/w/cpp/container/unordered_multimap/operator_cmpX‡7!!operator==http://en.cppreference.com/w/cpp/container/unordered_multimap/operator_cmpR‡6={std::basic_ostringstreamhttp://en.cppreference.com/w/cpp/io/basic_ostringstreamU‡5QmStandard library header http://en.cppreference.com/w/cpp/header/iostreamr‡4astd::experimental::basic_string_view::swaphttp://en.cppreference.com/w/cpp/experimental/basic_string_view/swapX‡3?std::packaged_task::validhttp://en.cppreference.com/w/cpp/thread/packaged_task/validk‡2Ostd::unordered_set::hash_functionhttp://en.cppreference.com/w/cpp/container/unordered_set/hash_functionH‡1/ustd::codecvt_utf8http://en.cppreference.com/w/cpp/locale/codecvt_utf8<‡0!kstd::clockhttp://en.cppreference.com/w/cpp/chrono/c/clockH‡/-wstd::list::emptyhttp://en.cppreference.com/w/cpp/container/list/emptyY‡.Cstd::experimental::any_casthttp://en.cppreference.com/w/cpp/experimental/any/any_castX‡-?std::basic_string::substrhttp://en.cppreference.com/w/cpp/string/basic_string/substrj‡,Y std::chrono::system_clock::from_time_thttp://en.cppreference.com/w/cpp/chrono/system_clock/from_time_tQ‡+MiStandard library header http://en.cppreference.com/w/cpp/header/cctypeu‡*cC++ concepts: UnorderedAssociativeContainerhttp://en.cppreference.com/w/cpp/concept/UnorderedAssociativeContainere‡)Cstd::bernoulli_distributionhttp://en.cppreference.com/w/cpp/numeric/random/bernoulli_distributionR‡(/std::sig_atomic_thttp://en.cppreference.com/w/cpp/utility/program/sig_atomic_tp‡'e std::experimental::erase (std::basic_string)http://en.cppreference.com/w/cpp/experimental/basic_string/erase‡&; std::experimental::filesystem:: std::experimental::filesystem::create_directory_symlinkhttp://en.cppreference.com/w/cpp/experimental/fs/create_symlinkp‡%g std::experimental::filesystem::create_symlinkhttp://en.cppreference.com/w/cpp/experimental/fs/create_symlink )“©UèY Ð z ' q û « = Ï d  DÿÁ…AÄgÓŽH¦;µ.­QÜz,ÎOê“T‡xCystd::experimental::optionalhttp://en.cppreference.com/w/cpp/experimental/optionalb‡wI std::recursive_mutex::try_lockhttp://en.cppreference.com/w/cpp/thread/recursive_mutex/try_lock|‡vg#std::basic_istringstream::basic_istringstreamhttp://en.cppreference.com/w/cpp/io/basic_istringstream/basic_istringstream[‡u? std::priority_queue::swaphttp://en.cppreference.com/w/cpp/container/priority_queue/swapK‡t?kstd::islower(std::locale)http://en.cppreference.com/w/cpp/locale/islower_‡sMstd::filesystem::last_write_timehttp://en.cppreference.com/w/cpp/filesystem/last_write_timer‡rastd::experimental::basic_string_view::nposhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/nposY‡q=std::ostreambuf_iteratorhttp://en.cppreference.com/w/cpp/iterator/ostreambuf_iterator~‡pY5std::fisher_f_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/operator%28%29‡o std::filesystem::path:: std::filesystem::path::generic_u8stringhttp://en.cppreference.com/w/cpp/filesystem/path/generic_string‡n std::filesystem::path:: std::filesystem::path::generic_wstringhttp://en.cppreference.com/w/cpp/filesystem/path/generic_stringh‡mW std::filesystem::path::generic_stringhttp://en.cppreference.com/w/cpp/filesystem/path/generic_stringZ‡l?>=(std::chrono::duration)http://en.cppreference.com/w/cpp/chrono/duration/operator_cmpB‡k>http://en.cppreference.com/w/cpp/chrono/duration/operator_cmpC‡j<=http://en.cppreference.com/w/cpp/chrono/duration/operator_cmpB‡ihttp://en.cppreference.com/w/cpp/header/csetjmpH‡U/ustd::basic_stringhttp://en.cppreference.com/w/cpp/string/basic_string;‡T#gstd::extenthttp://en.cppreference.com/w/cpp/types/extent ‡S std::chrono::duration::operator std::chrono::duration::operator-(unary)http://en.cppreference.com/w/cpp/chrono/duration/operator_arithj‡R[ std::chrono::duration::operator+(unary)http://en.cppreference.com/w/cpp/chrono/duration/operator_arithQ‡Q9}std::unique_lock::lockhttp://en.cppreference.com/w/cpp/thread/unique_lock/lockT‡P=std::exception_list::endhttp://en.cppreference.com/w/cpp/error/exception_list/end ,l‰£P ú “ E ÿ º t / Ý – 0 ß ˆ * Ì ‚ '×pã£$p Ào)Ò–IÕl%Ãdó~$´lEˆ$#{std::atexithttp://en.cppreference.com/w/cpp/utility/program/atexitmˆ#gstd::unordered_set:: std::unordered_set::cendhttp://en.cppreference.com/w/cpp/container/unordered_set/endWˆ";std::unordered_set::endhttp://en.cppreference.com/w/cpp/container/unordered_set/endrˆ!i std::experimental::filesystem::hard_link_counthttp://en.cppreference.com/w/cpp/experimental/fs/hard_link_countnˆ M!std::bernoulli_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/max\ˆCstd::shared_lock::owns_lockhttp://en.cppreference.com/w/cpp/thread/shared_lock/owns_lock_ˆG std::numeric_limits::digits10http://en.cppreference.com/w/cpp/types/numeric_limits/digits10Dˆ/mstd::strstreambufhttp://en.cppreference.com/w/cpp/io/strstreambuffˆMstd::shared_mutex::unlock_sharedhttp://en.cppreference.com/w/cpp/thread/shared_mutex/unlock_sharedqˆUstd::unordered_map::max_bucket_counthttp://en.cppreference.com/w/cpp/container/unordered_map/max_bucket_countJˆ9oC++ keywords: volatilehttp://en.cppreference.com/w/cpp/keyword/volatile9ˆgstd::pairhttp://en.cppreference.com/w/cpp/utility/pairTˆCystd::filesystem::space_infohttp://en.cppreference.com/w/cpp/filesystem/space_infoCˆ-mEscape sequenceshttp://en.cppreference.com/w/cpp/language/escapeNˆ3}std::dynarray::backhttp://en.cppreference.com/w/cpp/container/dynarray/back]ˆUystd::ctype:: std::ctype::do_scan_nothttp://en.cppreference.com/w/cpp/locale/ctype/scan_notMˆ5ystd::ctype::scan_nothttp://en.cppreference.com/w/cpp/locale/ctype/scan_not0ˆQstd::experimental::basic_string_view:: std::experimental::basic_string_view::operator basic_stringhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/to_string|ˆkstd::experimental::basic_string_view::to_stringhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/to_string=ˆ+cstd:: std::getchttp://en.cppreference.com/w/cpp/io/c/fgetc8ˆ!cstd::fgetchttp://en.cppreference.com/w/cpp/io/c/fgetcOˆ7{std::atomic::fetch_orhttp://en.cppreference.com/w/cpp/atomic/atomic/fetch_ordˆGstd::transform_exclusive_scanhttp://en.cppreference.com/w/cpp/algorithm/transform_exclusive_scanMˆ 9ustd::arg(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/argXˆ ?std::shared_mutex::unlockhttp://en.cppreference.com/w/cpp/thread/shared_mutex/unlockGˆ %}std::jmp_bufhttp://en.cppreference.com/w/cpp/utility/program/jmp_buf[ˆ 5std:: std::laguerrelhttp://en.cppreference.com/w/cpp/experimental/special_math/laguerre[ˆ 5std:: std::laguerrefhttp://en.cppreference.com/w/cpp/experimental/special_math/laguerreTˆ'std::laguerrehttp://en.cppreference.com/w/cpp/experimental/special_math/laguerreNˆ3}std::multimap::findhttp://en.cppreference.com/w/cpp/container/multimap/findcˆGstd::unordered_multimap::swaphttp://en.cppreference.com/w/cpp/container/unordered_multimap/swapDˆ3iC++ keywords: consthttp://en.cppreference.com/w/cpp/keyword/constOˆ)>=(std::queue)http://en.cppreference.com/w/cpp/container/queue/operator_cmpBˆ>http://en.cppreference.com/w/cpp/container/queue/operator_cmpCˆ<=http://en.cppreference.com/w/cpp/container/queue/operator_cmpBˆhttp://en.cppreference.com/w/cpp/header/cstdioSˆL;std::basic_string::copyhttp://en.cppreference.com/w/cpp/string/basic_string/copyWˆK?std::exception_list::sizehttp://en.cppreference.com/w/cpp/error/exception_list/sizeJˆJ1wstd::complex::realhttp://en.cppreference.com/w/cpp/numeric/complex/realfˆIU std::experimental::optional::emplacehttp://en.cppreference.com/w/cpp/experimental/optional/emplaceKˆH%>=(std::set)http://en.cppreference.com/w/cpp/container/set/operator_cmp@ˆG>http://en.cppreference.com/w/cpp/container/set/operator_cmpAˆF<=http://en.cppreference.com/w/cpp/container/set/operator_cmp@ˆEˆB#mstd::mallochttp://en.cppreference.com/w/cpp/memory/c/mallocOˆA/std::feholdexcepthttp://en.cppreference.com/w/cpp/numeric/fenv/feholdexceptMˆ@1}std::move_backwardhttp://en.cppreference.com/w/cpp/algorithm/move_backward^ˆ?=std::ratio_greater_equalhttp://en.cppreference.com/w/cpp/numeric/ratio/ratio_greater_equalfˆ>]std::experimental::filesystem::canonicalhttp://en.cppreference.com/w/cpp/experimental/fs/canonicalLˆ=3ystd::bitset::bitsethttp://en.cppreference.com/w/cpp/utility/bitset/bitsetˆ<s-std::pmr::unsynchronized_pool_resource::do_is_equalhttp://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/do_is_equalhˆ;_std::experimental::filesystem::equivalenthttp://en.cppreference.com/w/cpp/experimental/fs/equivalentPˆ:/Using-declarationhttp://en.cppreference.com/w/cpp/language/using_declaration>ˆ9qstd::acoshttp://en.cppreference.com/w/cpp/numeric/math/acosˆ8 std::unordered_multiset:: std::unordered_multiset::cbegin(int)http://en.cppreference.com/w/cpp/container/unordered_multiset/begin2kˆ7Sstd::unordered_multiset::begin(int)http://en.cppreference.com/w/cpp/container/unordered_multiset/begin2Hˆ69kstd:: std::find_if_nothttp://en.cppreference.com/w/cpp/algorithm/findDˆ51kstd:: std::find_ifhttp://en.cppreference.com/w/cpp/algorithm/find;ˆ4kstd::findhttp://en.cppreference.com/w/cpp/algorithm/findcˆ3K partial template specializationhttp://en.cppreference.com/w/cpp/language/partial_specializationrˆ2Q%std::lognormal_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/resetQˆ1=ystd::acosh(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/acoshrˆ0astd::experimental::shared_future::is_readyhttp://en.cppreference.com/w/cpp/experimental/shared_future/is_ready9ˆ/+[std:: std::wcinhttp://en.cppreference.com/w/cpp/io/cin2ˆ.[std::cinhttp://en.cppreference.com/w/cpp/io/cinDˆ-+qstd::pair::swaphttp://en.cppreference.com/w/cpp/utility/pair/swaptˆ,[std::condition_variable_any::notify_allhttp://en.cppreference.com/w/cpp/thread/condition_variable_any/notify_allRˆ+Awstd::experimental::shufflehttp://en.cppreference.com/w/cpp/experimental/shuffle<ˆ*ostd::sinhttp://en.cppreference.com/w/cpp/numeric/math/sinBˆ)1gC++ keywords: charhttp://en.cppreference.com/w/cpp/keyword/charHˆ(1sstd:: std::strtollhttp://en.cppreference.com/w/cpp/string/byte/strtolAˆ'#sstd::strtolhttp://en.cppreference.com/w/cpp/string/byte/strtolTˆ&=std::match_results::swaphttp://en.cppreference.com/w/cpp/regex/match_results/swapEˆ%-qstd::ctypehttp://en.cppreference.com/w/cpp/locale/ctype_char .y¹r Öw Ø n  È u  Ñ q # Ý ˜ R » g ¯Y Ã}6ðœS´g7ì3ºXó”<ÇyK‰!operator==http://en.cppreference.com/w/cpp/filesystem/path/operator_cmprˆQ%std::discard_block_engine::discardhttp://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/discardUˆ~QmStandard library header http://en.cppreference.com/w/cpp/header/ccomplex\ˆ}A std::unique_ptr::operator=http://en.cppreference.com/w/cpp/memory/unique_ptr/operator%3Dbˆ|K std::uses_allocatorhttp://en.cppreference.com/w/cpp/container/queue/uses_allocator_ˆ{W{std::experimental::filesystem::existshttp://en.cppreference.com/w/cpp/experimental/fs/existsvˆzU)std::uniform_int_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/resetWˆy?std::locale::facet::facethttp://en.cppreference.com/w/cpp/locale/locale/facet/facet\ˆxGstd::tuple_elementhttp://en.cppreference.com/w/cpp/utility/pair/tuple_elementHˆw7mC++ keywords: virtualhttp://en.cppreference.com/w/cpp/keyword/virtualHˆv?astd::experimental::filesystem::recursive_directory_iterator::recursive_directory_iteratorhttp://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/recursive_directory_iteratoraˆu=std::bad_optional_accesshttp://en.cppreference.com/w/cpp/utility/optional/bad_optional_accessJˆt SIG_IGNhttp://en.cppreference.com/w/cpp/utility/program/SIG_strategiesJˆs SIG_DFLhttp://en.cppreference.com/w/cpp/utility/program/SIG_strategiesOˆr/Logical operatorshttp://en.cppreference.com/w/cpp/language/operator_logicalFˆq-sstd::tuple::swaphttp://en.cppreference.com/w/cpp/utility/tuple/swapQˆp+ >=std::valarrayhttp://en.cppreference.com/w/cpp/numeric/valarray/operator_cmpCˆo >http://en.cppreference.com/w/cpp/numeric/valarray/operator_cmpDˆn <=http://en.cppreference.com/w/cpp/numeric/valarray/operator_cmpCˆm http://en.cppreference.com/w/cpp/header/chronoOˆf)>=(std::stack)http://en.cppreference.com/w/cpp/container/stack/operator_cmpBˆe>http://en.cppreference.com/w/cpp/container/stack/operator_cmpCˆd<=http://en.cppreference.com/w/cpp/container/stack/operator_cmpBˆchttp://en.cppreference.com/w/cpp/utility/functional/function/uses_allocatorM‰!9ustd::pow(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/powB‰ 'qstd::difftimehttp://en.cppreference.com/w/cpp/chrono/c/difftimeJ‰/ystd::deque::fronthttp://en.cppreference.com/w/cpp/container/deque/front:‰#estd::perrorhttp://en.cppreference.com/w/cpp/io/c/perrorA‰)mstatic membershttp://en.cppreference.com/w/cpp/language/staticj‰Istd::shuffle_order_engine::maxhttp://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/max5‰gstd::negative_binomial_distribution::negative_binomial_distributionhttp://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/negative_binomial_distribution ‰}'std::experimental::pmr::polymorphic_allocator::constructhttp://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/constructW‰Cstd::basic_filebuf::seekoffhttp://en.cppreference.com/w/cpp/io/basic_filebuf/seekoffQ‰1std::feraiseexcepthttp://en.cppreference.com/w/cpp/numeric/fenv/feraiseexceptV‰=std::basic_string::rfindhttp://en.cppreference.com/w/cpp/string/basic_string/rfinda‰;std::is_bind_expressionhttp://en.cppreference.com/w/cpp/utility/functional/is_bind_expressionn‰C+!=(std::gamma_distribution)http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/operator_cmp]‰!+operator==http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/operator_cmpU‰Gwstd::list:: std::list::cbeginhttp://en.cppreference.com/w/cpp/container/list/beginH‰-wstd::list::beginhttp://en.cppreference.com/w/cpp/container/list/beginx‰ostd::experimental::filesystem::directory_iteratorhttp://en.cppreference.com/w/cpp/experimental/fs/directory_iterator?‰#ostd::vectorhttp://en.cppreference.com/w/cpp/container/vectorI‰1ustd::future::sharehttp://en.cppreference.com/w/cpp/thread/future/shareJ‰9oC++ keywords: operatorhttp://en.cppreference.com/w/cpp/keyword/operatorQ‰ =ystd::basic_filebuf::openhttp://en.cppreference.com/w/cpp/io/basic_filebuf/openm‰ Ystd::pmr::memory_resource::do_is_equalhttp://en.cppreference.com/w/cpp/memory/memory_resource/do_is_equalc‰ K std::error_category::equivalenthttp://en.cppreference.com/w/cpp/error/error_category/equivalentX‰ =std::auto_ptr::operator=http://en.cppreference.com/w/cpp/memory/auto_ptr/operator%3DQ‰ MiStandard library header http://en.cppreference.com/w/cpp/header/atomic.‰Ustd::pmr::unsynchronized_pool_resource::~unsynchronized_pool_resourcehttp://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/%7Eunsynchronized_pool_resource<‰%gstd::freopenhttp://en.cppreference.com/w/cpp/io/c/freopenP‰;ystd::basic_stringstreamhttp://en.cppreference.com/w/cpp/io/basic_stringstreamZ‰?>=(std::filesystem::path)http://en.cppreference.com/w/cpp/filesystem/path/operator_cmpB‰>http://en.cppreference.com/w/cpp/filesystem/path/operator_cmpC‰<=http://en.cppreference.com/w/cpp/filesystem/path/operator_cmpB‰‰N)gstd::strstreamhttp://en.cppreference.com/w/cpp/io/strstreamU‰M7std::stack::operator=http://en.cppreference.com/w/cpp/container/stack/operator%3Dg‰LQstd::rbegin(std::initializer_list)http://en.cppreference.com/w/cpp/utility/initializer_list/rbegin2f‰KAstd::mask_array::operator=http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator%3Dg‰JKstd::unordered_map::try_emplacehttp://en.cppreference.com/w/cpp/container/unordered_map/try_emplaceN‰I-Language linkagehttp://en.cppreference.com/w/cpp/language/language_linkage‰H]9std::independent_bits_engine::operator()http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/operator%28%29\‰G;std::random_device::minhttp://en.cppreference.com/w/cpp/numeric/random/random_device/minD‰F+qstd::owner_lesshttp://en.cppreference.com/w/cpp/memory/owner_lesst‰EY!std::wbuffer_convert::~wbuffer_converthttp://en.cppreference.com/w/cpp/locale/wbuffer_convert/%7Ewbuffer_convertS‰DAystd::hashhttp://en.cppreference.com/w/cpp/error/error_code/hashl‰C[std::chrono::high_resolution_clock::nowhttp://en.cppreference.com/w/cpp/chrono/high_resolution_clock/now‰Bustd::experimental::pmr::memory_resource::do_allocatehttp://en.cppreference.com/w/cpp/experimental/memory_resource/do_allocateZ‰A= std::is_execution_policyhttp://en.cppreference.com/w/cpp/algorithm/is_execution_policyq‰@O%std::experimental::get_underlyinghttp://en.cppreference.com/w/cpp/experimental/propagate_const/get_underlyingH‰?-wstd::stack::sizehttp://en.cppreference.com/w/cpp/container/stack/sizeV‰>5 std:: std::laguerrelhttp://en.cppreference.com/w/cpp/numeric/special_math/laguerreV‰=5 std:: std::laguerrefhttp://en.cppreference.com/w/cpp/numeric/special_math/laguerreO‰<' std::laguerrehttp://en.cppreference.com/w/cpp/numeric/special_math/laguerre‰;sstd::experimental::pmr::memory_resource::deallocatehttp://en.cppreference.com/w/cpp/experimental/memory_resource/deallocate7‰:kScopehttp://en.cppreference.com/w/cpp/language/scopeW‰9Cstd::basic_istream::getlinehttp://en.cppreference.com/w/cpp/io/basic_istream/getlineX‰8UoC++ keywords: char32_t (since C++11)http://en.cppreference.com/w/cpp/keyword/char32_tO‰7KgStandard library header http://en.cppreference.com/w/cpp/header/mutexf‰6U std::experimental::latch::count_downhttp://en.cppreference.com/w/cpp/experimental/latch/count_down`‰5G std::basic_string_view::emptyhttp://en.cppreference.com/w/cpp/string/basic_string_view/emptyD‰43iC++ concepts: Mutexhttp://en.cppreference.com/w/cpp/concept/Mutexh‰3Ostd::condition_variable_any::waithttp://en.cppreference.com/w/cpp/thread/condition_variable_any/waitF‰2+ustd::list::backhttp://en.cppreference.com/w/cpp/container/list/backP‰1?ustd::experimental::void_thttp://en.cppreference.com/w/cpp/experimental/void_tr‰0Ystd::condition_variable::native_handlehttp://en.cppreference.com/w/cpp/thread/condition_variable/native_handleN‰/5{std::valarray::shifthttp://en.cppreference.com/w/cpp/numeric/valarray/shift‰._;std::reference_wrapper::reference_wrapperhttp://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/reference_wrapper‰-{std::experimental::filesystem::file_status::permissionshttp://en.cppreference.com/w/cpp/experimental/fs/file_status/permissions[‰,9!=(std::match_results)http://en.cppreference.com/w/cpp/regex/match_results/operator_cmp %²¼_œ7 Ú ‹ 1 " Ì a Ý < ” €>àm²Råy-×}+½SàfÆXþ²I‰z1ustd::remove_extenthttp://en.cppreference.com/w/cpp/types/remove_extentW‰yOsconstexpr specifier (since C++11)http://en.cppreference.com/w/cpp/language/constexprk‰xaTemplate parameters and template argumentshttp://en.cppreference.com/w/cpp/language/template_parameters‰w{Ostd::exponential_distribution::exponential_distributionhttp://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/exponential_distributionw‰vcstd::pmr::polymorphic_allocator::deallocatehttp://en.cppreference.com/w/cpp/memory/polymorphic_allocator/deallocatep‰ucstd::chrono::time_point::operator operator-http://en.cppreference.com/w/cpp/chrono/time_point/operator_arithg‰tQstd::chrono::time_point::operator+http://en.cppreference.com/w/cpp/chrono/time_point/operator_arithk‰sYC++ concepts: RandomNumberDistributionhttp://en.cppreference.com/w/cpp/concept/RandomNumberDistributionO‰rKgStandard library header http://en.cppreference.com/w/cpp/header/cfenvW‰qCstd::collate:: do_transformhttp://en.cppreference.com/w/cpp/locale/collate/transformS‰p;std::collate::transformhttp://en.cppreference.com/w/cpp/locale/collate/transformI‰o1ustd::get_terminatehttp://en.cppreference.com/w/cpp/error/get_terminatei‰nMstd::unordered_set::bucket_counthttp://en.cppreference.com/w/cpp/container/unordered_set/bucket_countj‰m] std::experimental::pmr::resource_adaptorhttp://en.cppreference.com/w/cpp/experimental/resource_adaptor]‰lS{std::multimap:: std::multimap::cendhttp://en.cppreference.com/w/cpp/container/multimap/endL‰k1{std::multimap::endhttp://en.cppreference.com/w/cpp/container/multimap/endi‰jQstd::numeric_limits::has_quiet_NaNhttp://en.cppreference.com/w/cpp/types/numeric_limits/has_quiet_NaNp‰iWstd::basic_string_view::remove_suffixhttp://en.cppreference.com/w/cpp/string/basic_string_view/remove_suffix[‰hCstd::error_code::error_codehttp://en.cppreference.com/w/cpp/error/error_code/error_code?‰g#ostd::reducehttp://en.cppreference.com/w/cpp/algorithm/reduce‰f1std::experimental::basic_string_view:: std::experimental::basic_string_view::crendhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/rendr‰eastd::experimental::basic_string_view::rendhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/rend$‰dCstd::experimental::parallel:: std::experimental::parallel::parallel_vector_execution_policyhttp://en.cppreference.com/w/cpp/experimental/execution_policy_tag_t‰c5std::experimental::parallel:: std::experimental::parallel::parallel_execution_policyhttp://en.cppreference.com/w/cpp/experimental/execution_policy_tag_t‰b}std::experimental::parallel::sequential_execution_policyhttp://en.cppreference.com/w/cpp/experimental/execution_policy_tag_th‰aestd::basic_string:: std::basic_string::crendhttp://en.cppreference.com/w/cpp/string/basic_string/rendS‰`;std::basic_string::rendhttp://en.cppreference.com/w/cpp/string/basic_string/rendx‰_W+std::mersenne_twister_engine::discardhttp://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/discard‰^-std::experimental::pmr::synchronized_pool_resource::optionshttp://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/optionsW‰]SoStandard library header http://en.cppreference.com/w/cpp/header/typeindexL‰\;qC++ concepts: Swappablehttp://en.cppreference.com/w/cpp/concept/SwappableZ‰[Estd::basic_streambuf::sbumpchttp://en.cppreference.com/w/cpp/io/basic_streambuf/sbumpcb‰ZAstd:: std::assoc_legendrelhttp://en.cppreference.com/w/cpp/numeric/special_math/assoc_legendreb‰YAstd:: std::assoc_legendrefhttp://en.cppreference.com/w/cpp/numeric/special_math/assoc_legendre[‰X3std::assoc_legendrehttp://en.cppreference.com/w/cpp/numeric/special_math/assoc_legendreZ‰WEstd::basic_streambuf::getlochttp://en.cppreference.com/w/cpp/io/basic_streambuf/getlocA‰V#sstd::strcpyhttp://en.cppreference.com/w/cpp/string/byte/strcpy (¶“Gùš: Û { " Æ 2  s ! ¿ Mñ€&Åd"Èn#Ú”@Ü—ÒAÿs&Ú ¶gŠ"Kstd::unordered_multimap::key_eqhttp://en.cppreference.com/w/cpp/container/unordered_multimap/key_eqlŠ!Sstd::condition_variable::notify_allhttp://en.cppreference.com/w/cpp/thread/condition_variable/notify_allHŠ -wstd::array::fillhttp://en.cppreference.com/w/cpp/container/array/fillIŠ5qstd::get(std::tuple)http://en.cppreference.com/w/cpp/utility/tuple/getJŠ-{Static Assertionhttp://en.cppreference.com/w/cpp/language/static_assertŠc?std::subtract_with_carry_engine::operator()http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/operator%28%29?ŠsTemplateshttp://en.cppreference.com/w/cpp/language/templates Š'std::experimental::filesystem::recursive_directory_iteratorhttp://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iteratorCŠ'sError numbershttp://en.cppreference.com/w/cpp/error/errno_macros|Š[/std::piecewise_linear_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/minBŠ)ostd::allocatorhttp://en.cppreference.com/w/cpp/memory/allocatoraŠY}std::experimental::filesystem::is_fifohttp://en.cppreference.com/w/cpp/experimental/fs/is_fifoQŠ=ystd::ios_base::precisionhttp://en.cppreference.com/w/cpp/io/ios_base/precisionCŠ?[Atomic operations libraryhttp://en.cppreference.com/w/cpp/atomicFŠ'ystd::isnormalhttp://en.cppreference.com/w/cpp/numeric/math/isnormalHŠ3qstd::basic_ifstreamhttp://en.cppreference.com/w/cpp/io/basic_ifstreamWŠCstd::ostrstream::ostrstreamhttp://en.cppreference.com/w/cpp/io/ostrstream/ostrstreamWŠ?std::error_code::categoryhttp://en.cppreference.com/w/cpp/error/error_code/category?Š'kstd::is_unionhttp://en.cppreference.com/w/cpp/types/is_union^Š=std:: std::riemann_zetalhttp://en.cppreference.com/w/cpp/numeric/special_math/riemann_zeta^Š=std:: std::riemann_zetafhttp://en.cppreference.com/w/cpp/numeric/special_math/riemann_zetaWŠ /std::riemann_zetahttp://en.cppreference.com/w/cpp/numeric/special_math/riemann_zetanŠ M!std::weibull_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/resetYŠ ?std::uninitialized_fill_nhttp://en.cppreference.com/w/cpp/memory/uninitialized_fill_noŠ g std::experimental::filesystem::path::filenamehttp://en.cppreference.com/w/cpp/experimental/fs/path/filenameJŠ o5std::filesystem::recursive_directory_iterator::operator std::filesystem::recursive_directory_iterator::operator->http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/operator%2AŠ}5std::filesystem::recursive_directory_iterator::operator*http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/operator%2AOŠKgStandard library header http://en.cppreference.com/w/cpp/header/dequeLŠ1{std::set::max_sizehttp://en.cppreference.com/w/cpp/container/set/max_sizemŠK!std::subtract_with_carry_enginehttp://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engineŠw;std::enable_shared_from_this::enable_shared_from_thishttp://en.cppreference.com/w/cpp/memory/enable_shared_from_this/enable_shared_from_thisYŠ=std::optional::~optionalhttp://en.cppreference.com/w/cpp/utility/optional/%7EoptionalVŠSmC++ keywords: alignas (since C++11)http://en.cppreference.com/w/cpp/keyword/alignas]Š=std::bitset::operator>>=http://en.cppreference.com/w/cpp/utility/bitset/operator_ltltgtgt\Š;std::bitset::operator>>http://en.cppreference.com/w/cpp/utility/bitset/operator_ltltgtgt]‰=std::bitset::operator<<=http://en.cppreference.com/w/cpp/utility/bitset/operator_ltltgtgt\‰~;std::bitset::operator<;std::atomic::operator--http://en.cppreference.com/w/cpp/atomic/atomic/operator_arith]Š=Estd::atomic::operator++(int)http://en.cppreference.com/w/cpp/atomic/atomic/operator_arithXŠ<;std::atomic::operator++http://en.cppreference.com/w/cpp/atomic/atomic/operator_arith~Š;Y5std::discrete_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/operator%28%29GŠ:/sstd::alignment_ofhttp://en.cppreference.com/w/cpp/types/alignment_ofvŠ9K3!=(std::bernoulli_distribution)http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/operator_cmpaŠ8!3operator==http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/operator_cmpDŠ7+qstd::money_basehttp://en.cppreference.com/w/cpp/locale/money_base`Š6I std::basic_ofstream::operator=http://en.cppreference.com/w/cpp/io/basic_ofstream/operator%3DpŠ5g std::experimental::filesystem::file_time_typehttp://en.cppreference.com/w/cpp/experimental/fs/file_time_typebŠ4ioModified ECMAScript regular expression grammarhttp://en.cppreference.com/w/cpp/regex/ecmascripteŠ3a}Standard library header http://en.cppreference.com/w/cpp/header/scoped_allocatorxŠ2S/std::extreme_value_distribution:: bhttp://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/paramswŠ1Q/std::extreme_value_distribution::ahttp://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/params:Š0#estd::removehttp://en.cppreference.com/w/cpp/io/c/remove`Š/Mstd::chrono::duration::operator=http://en.cppreference.com/w/cpp/chrono/duration/operator%3DWŠ.?std::regex_traits::lengthhttp://en.cppreference.com/w/cpp/regex/regex_traits/lengthCŠ-#wstd::ignorehttp://en.cppreference.com/w/cpp/utility/tuple/ignorexŠ,_#std::basic_string_view::find_first_not_ofhttp://en.cppreference.com/w/cpp/string/basic_string_view/find_first_not_ofjŠ+Y std::filesystem::path::remove_filenamehttp://en.cppreference.com/w/cpp/filesystem/path/remove_filenameTŠ*=Copy assignment operatorhttp://en.cppreference.com/w/cpp/language/copy_assignmentDŠ)/mdelete expressionhttp://en.cppreference.com/w/cpp/language/deleteXŠ(?std::ctype::scan_ishttp://en.cppreference.com/w/cpp/locale/ctype_char/scan_nothŠ'U std::make_error_condition(std::errc)http://en.cppreference.com/w/cpp/error/errc/make_error_condition\Š&Gstd::basic_ios::operator boolhttp://en.cppreference.com/w/cpp/io/basic_ios/operator_boolWŠ%3 std::indirect_arrayhttp://en.cppreference.com/w/cpp/numeric/valarray/indirect_arrayIŠ$5qstd::ios_base::iwordhttp://en.cppreference.com/w/cpp/io/ios_base/iwordgŠ#Ostd::match_results::get_allocatorhttp://en.cppreference.com/w/cpp/regex/match_results/get_allocator )xK÷¨] ³ g  Ø ™ 6 ¿ d  { %   U šDÇC¿sí±fþLät©>½RÐxUŠt/ std::not_equal_tohttp://en.cppreference.com/w/cpp/utility/functional/not_equal_toŠsOA>>(std::uniform_int_distribution)http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/operator_ltltgtgthŠr!Aoperator<http://en.cppreference.com/w/cpp/header/experimental/anyHŠh%std::mbrtowchttp://en.cppreference.com/w/cpp/string/multibyte/mbrtowc9Šg+[Strings libraryhttp://en.cppreference.com/w/cpp/stringŠfq%std::experimental::basic_string_view::find_last_ofhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/find_last_ofIŠe-ystd::max_elementhttp://en.cppreference.com/w/cpp/algorithm/max_elementŠdystd::experimental::filesystem::filesystem_error::path2http://en.cppreference.com/w/cpp/experimental/fs/filesystem_error/pathŠcystd::experimental::filesystem::filesystem_error::path1http://en.cppreference.com/w/cpp/experimental/fs/filesystem_error/pathzŠbistd::experimental::basic_string_view::max_sizehttp://en.cppreference.com/w/cpp/experimental/basic_string_view/max_sizeSŠa7std::set::lower_boundhttp://en.cppreference.com/w/cpp/container/set/lower_boundvŠ`q Standard library header http://en.cppreference.com/w/cpp/header/experimental/string_view?Š_'kstd::negationhttp://en.cppreference.com/w/cpp/types/negationHŠ^7mC++ keywords: concepthttp://en.cppreference.com/w/cpp/keyword/conceptŠ]ystd::experimental::filesystem::directory_entry::assignhttp://en.cppreference.com/w/cpp/experimental/fs/directory_entry/assignSŠ\OkStandard library header http://en.cppreference.com/w/cpp/header/cstdlibŠ[u)std::filesystem::recursive_directory_iterator::depthhttp://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/depth\ŠZGstd::moneypunct:: do_groupinghttp://en.cppreference.com/w/cpp/locale/moneypunct/groupingXŠY?std::moneypunct::groupinghttp://en.cppreference.com/w/cpp/locale/moneypunct/groupingtŠXI1!=(std::discrete_distribution)http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/operator_cmp`ŠW!1operator==http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/operator_cmp<ŠV#istd::futurehttp://en.cppreference.com/w/cpp/thread/future<ŠU#istd::atomichttp://en.cppreference.com/w/cpp/atomic/atomicMŠT5ystd::locale::combinehttp://en.cppreference.com/w/cpp/locale/locale/combineIŠS1ustd::set_terminatehttp://en.cppreference.com/w/cpp/error/set_terminateSŠRCwstd::filesystem::path::swaphttp://en.cppreference.com/w/cpp/filesystem/path/swapQŠQKkPseudo-random number generationhttp://en.cppreference.com/w/cpp/numeric/randomHŠP7mC++ keywords: typedefhttp://en.cppreference.com/w/cpp/keyword/typedefLŠO1{std::resetiosflagshttp://en.cppreference.com/w/cpp/io/manip/resetiosflagsQŠN=ystd::basic_fstream::swaphttp://en.cppreference.com/w/cpp/io/basic_fstream/swapAŠM#sstd::wcschrhttp://en.cppreference.com/w/cpp/string/wide/wcschrnŠLM!std::geometric_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/min +±£Pÿµe! ß Ž > ö ® f  Á u  ­ B À < «<Êu¹K¥^Àþ¬Tñ“AæšG±N‹?qstd::map:: std::map::cendhttp://en.cppreference.com/w/cpp/container/map/endB‹'qstd::map::endhttp://en.cppreference.com/w/cpp/container/map/endP‹9{std::swap(std::vector)http://en.cppreference.com/w/cpp/container/vector/swap2I‹5qstd::ios_base::widthhttp://en.cppreference.com/w/cpp/io/ios_base/widthX‹?std::money_put::money_puthttp://en.cppreference.com/w/cpp/locale/money_put/money_putO‹3std::set_differencehttp://en.cppreference.com/w/cpp/algorithm/set_difference[‹Kstd::experimental::latch::latchhttp://en.cppreference.com/w/cpp/experimental/latch/latch`‹G std::condition_variable::waithttp://en.cppreference.com/w/cpp/thread/condition_variable/waitU‹9std::vector::push_backhttp://en.cppreference.com/w/cpp/container/vector/push_backO‹5}std::locale::~localehttp://en.cppreference.com/w/cpp/locale/locale/%7Elocale>‹1[std::experimental::pmr::unsynchronized_pool_resource::unsynchronized_pool_resourcehttp://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/unsynchronized_pool_resourceL‹%EXIT_FAILUREhttp://en.cppreference.com/w/cpp/utility/program/EXIT_statusL‹%EXIT_SUCCESShttp://en.cppreference.com/w/cpp/utility/program/EXIT_statusD‹}std::lesshttp://en.cppreference.com/w/cpp/utility/functional/less"‹?std::experimental::pmr::monotonic_buffer_resource::upstream_resourcehttp://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource/upstream_resourcek‹Qstd::basic_string_view::operator[]http://en.cppreference.com/w/cpp/string/basic_string_view/operator_atJ‹5sstd::basic_streambufhttp://en.cppreference.com/w/cpp/io/basic_streambufl‹Mstd::insert_iterator::operator++http://en.cppreference.com/w/cpp/iterator/insert_iterator/operator%2B%2BR‹ - std::make_sharedhttp://en.cppreference.com/w/cpp/memory/shared_ptr/make_sharedo‹ O!std::normal_distribution:: stddevhttp://en.cppreference.com/w/cpp/numeric/random/normal_distribution/paramsl‹ I!std::normal_distribution::meanhttp://en.cppreference.com/w/cpp/numeric/random/normal_distribution/paramsR‹ Awstd::filesystem::file_typehttp://en.cppreference.com/w/cpp/filesystem/file_type9‹ istd::maphttp://en.cppreference.com/w/cpp/container/map‹[7std::negative_binomial_distribution:: khttp://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/params‹Y7std::negative_binomial_distribution::phttp://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/paramsh‹Gstd::normal_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/normal_distribution/maxi‹Gstd::chi_squared_distributionhttp://en.cppreference.com/w/cpp/numeric/random/chi_squared_distributionY‹=std::forward_list::clearhttp://en.cppreference.com/w/cpp/container/forward_list/clearI‹3sstd:: std::fesetenvhttp://en.cppreference.com/w/cpp/numeric/fenv/feenvC‹'sstd::fegetenvhttp://en.cppreference.com/w/cpp/numeric/fenv/feenv\‹= %(std::chrono::duration)http://en.cppreference.com/w/cpp/chrono/duration/operator_arith4E‹ /http://en.cppreference.com/w/cpp/chrono/duration/operator_arith4EŠ *http://en.cppreference.com/w/cpp/chrono/duration/operator_arith4EŠ~ -http://en.cppreference.com/w/cpp/chrono/duration/operator_arith4MŠ} operator+http://en.cppreference.com/w/cpp/chrono/duration/operator_arith4NŠ|3}std::queue::emplacehttp://en.cppreference.com/w/cpp/container/queue/emplace?Š{+gasm declarationhttp://en.cppreference.com/w/cpp/language/asmAŠz#sstd::strstrhttp://en.cppreference.com/w/cpp/string/byte/strstrMŠy5ystd:: std::wcstoumaxhttp://en.cppreference.com/w/cpp/string/wide/wcstoimaxGŠx)ystd::wcstoimaxhttp://en.cppreference.com/w/cpp/string/wide/wcstoimaxNŠw=sstd::experimental::latchhttp://en.cppreference.com/w/cpp/experimental/latchPŠv5std::deque::max_sizehttp://en.cppreference.com/w/cpp/container/deque/max_sizeZŠu9 default initializationhttp://en.cppreference.com/w/cpp/language/default_initialization (j˜<î¥W Ð C µ  Î p  § Z õ ª KÉ„8ЈíŽLîrÞAû©f›6Ñz²jE‹G-qstd::conditionalhttp://en.cppreference.com/w/cpp/types/conditionalP‹F?uC++ concepts: BitmaskTypehttp://en.cppreference.com/w/cpp/concept/BitmaskTyper‹EU!std::back_insert_iterator::operator*http://en.cppreference.com/w/cpp/iterator/back_insert_iterator/operator%2AT‹D?}std::begin(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/begin2b‹CI std::shared_future::wait_untilhttp://en.cppreference.com/w/cpp/thread/shared_future/wait_untilb‹BQstd::filesystem::file_status::typehttp://en.cppreference.com/w/cpp/filesystem/file_status/typep‹AkStandard library header http://en.cppreference.com/w/cpp/header/experimental/optionalU‹@9std::multimap::emplacehttp://en.cppreference.com/w/cpp/container/multimap/emplace@‹?%ostd::setfillhttp://en.cppreference.com/w/cpp/io/manip/setfillO‹>;wstd::pow(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/powC‹=-mswitch statementhttp://en.cppreference.com/w/cpp/language/switch‹<+std::experimental::filesystem::directory_iterator::operatoroperator->http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/operator%2A‹;+std::experimental::filesystem::directory_iterator::operator*http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/operator%2Ay‹:mstd::uses_allocatorhttp://en.cppreference.com/w/cpp/experimental/function/uses_allocator[‹9Cstd::type_index::type_indexhttp://en.cppreference.com/w/cpp/types/type_index/type_index?‹8#ostd::fill_nhttp://en.cppreference.com/w/cpp/algorithm/fill_n\‹7Gstd::basic_stringstream::swaphttp://en.cppreference.com/w/cpp/io/basic_stringstream/swap‹6wIstd::experimental::packaged_task::get_memory_resourcehttp://en.cppreference.com/w/cpp/experimental/lib_extensions/packaged_task/get_memory_resourceE‹5)ustd::sort_heaphttp://en.cppreference.com/w/cpp/algorithm/sort_heape‹4Istd::unordered_multiset::emptyhttp://en.cppreference.com/w/cpp/container/unordered_multiset/emptyI‹31ustd:: std::scalblnhttp://en.cppreference.com/w/cpp/numeric/math/scalbnB‹2#ustd::scalbnhttp://en.cppreference.com/w/cpp/numeric/math/scalbn‹1wstd::experimental::filesystem::filesystem_error::whathttp://en.cppreference.com/w/cpp/experimental/fs/filesystem_error/what\‹07std::logical_orhttp://en.cppreference.com/w/cpp/utility/functional/logical_or_voidH‹/%std::va_listhttp://en.cppreference.com/w/cpp/utility/variadic/va_listb‹._ystd::chrono::floor(std::chrono::duration)http://en.cppreference.com/w/cpp/chrono/duration/floorJ‹-/ystd::set::emplacehttp://en.cppreference.com/w/cpp/container/set/emplace[‹,? std::priority_queue::sizehttp://en.cppreference.com/w/cpp/container/priority_queue/sizeh‹+Gstd::normal_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/normal_distribution/min[‹*O{std::vector:: std::vector::cbeginhttp://en.cppreference.com/w/cpp/container/vector/beginL‹)1{std::vector::beginhttp://en.cppreference.com/w/cpp/container/vector/begin‹( -std::experimental::filesystem::directory_entry::directory_entryhttp://en.cppreference.com/w/cpp/experimental/fs/directory_entry/directory_entry ‹'m9std::piecewise_constant_distribution:: densitieshttp://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/params ‹&k9std::piecewise_constant_distribution::intervalshttp://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/params‹%e3std::unordered_multimap::~unordered_multimaphttp://en.cppreference.com/w/cpp/container/unordered_multimap/%7Eunordered_multimapK‹$GcStandard library header http://en.cppreference.com/w/cpp/header/newF‹#5kC++ keywords: typeidhttp://en.cppreference.com/w/cpp/keyword/typeidK‹"%std::mem_funhttp://en.cppreference.com/w/cpp/utility/functional/mem_funY‹!=std::list::get_allocatorhttp://en.cppreference.com/w/cpp/container/list/get_allocatore‹ Kstd::error_condition::operator=http://en.cppreference.com/w/cpp/error/error_condition/operator%3D )Ž®eÂo ú µ D Ó b ñ € š ) · EØkŠ(ÁX•Bû§MÐy1ô§8îž<îŽ]‹pEstd::regex_traits::transformhttp://en.cppreference.com/w/cpp/regex/regex_traits/transformK‹o3wstd::thread::get_idhttp://en.cppreference.com/w/cpp/thread/thread/get_id_‹nU}std::experimental::erase (std::list)http://en.cppreference.com/w/cpp/experimental/list/eraseM‹m5ystd:: std::strtoumaxhttp://en.cppreference.com/w/cpp/string/byte/strtoimaxG‹l)ystd::strtoimaxhttp://en.cppreference.com/w/cpp/string/byte/strtoimaxl‹kKstd::discrete_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/maxJ‹j9oC++ keywords: requireshttp://en.cppreference.com/w/cpp/keyword/requires:‹i#estd::fclosehttp://en.cppreference.com/w/cpp/io/c/fcloseE‹h'wstd::iswprinthttp://en.cppreference.com/w/cpp/string/wide/iswprintT‹gCystd::filesystem::equivalenthttp://en.cppreference.com/w/cpp/filesystem/equivalentz‹fgstd::experimental::propagate_const::operator=http://en.cppreference.com/w/cpp/experimental/propagate_const/operator%3DW‹e;std::set::get_allocatorhttp://en.cppreference.com/w/cpp/container/set/get_allocatorQ‹d) ^(std::bitset)http://en.cppreference.com/w/cpp/utility/bitset/operator_logic2D‹c |http://en.cppreference.com/w/cpp/utility/bitset/operator_logic2P‹b' operator&http://en.cppreference.com/w/cpp/utility/bitset/operator_logic2‹aq%std::filesystem::recursive_directory_iterator::pophttp://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/pop:‹`!gstd::asynchttp://en.cppreference.com/w/cpp/thread/asyncf‹_c}std::literals::chrono_literals::operator"mshttp://en.cppreference.com/w/cpp/chrono/operator%22%22msd‹^Istd::timed_mutex::~timed_mutexhttp://en.cppreference.com/w/cpp/thread/timed_mutex/%7Etimed_mutex_‹]E std::enable_shared_from_thishttp://en.cppreference.com/w/cpp/memory/enable_shared_from_this‹\i-std::shared_timed_mutex::try_lock_shared_untilhttp://en.cppreference.com/w/cpp/thread/shared_timed_mutex/try_lock_shared_untilX‹[=std::numpunct::~numpuncthttp://en.cppreference.com/w/cpp/locale/numpunct/%7Enumpunctj‹ZE!std::function::operator boolhttp://en.cppreference.com/w/cpp/utility/functional/function/operator_boolj‹Yastd::experimental::filesystem::permissionshttp://en.cppreference.com/w/cpp/experimental/fs/permissionso‹XI'std::gslice_array::operator>>=http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator_aritho‹WI'std::gslice_array::operator<<=http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator_arithn‹VG'std::gslice_array::operator^=http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator_arithn‹UG'std::gslice_array::operator|=http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator_arithr‹TO'std::gslice_array::operator&=http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator_arithn‹SG'std::gslice_array::operator%=http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator_arithn‹RG'std::gslice_array::operator/=http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator_arithn‹QG'std::gslice_array::operator*=http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator_arithn‹PG'std::gslice_array::operator-=http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator_arithn‹OG'std::gslice_array::operator+=http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator_arithB‹N#ustd::lgammahttp://en.cppreference.com/w/cpp/numeric/math/lgammar‹MQ%std::bernoulli_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/resetP‹L5std::multimap::emptyhttp://en.cppreference.com/w/cpp/container/multimap/emptyQ‹K9}std::is_member_pointerhttp://en.cppreference.com/w/cpp/types/is_member_pointerL‹J;qstd::chrono::time_pointhttp://en.cppreference.com/w/cpp/chrono/time_pointF‹I!FLT_ROUNDShttp://en.cppreference.com/w/cpp/types/climits/FLT_ROUNDSO‹HKgStandard library header http://en.cppreference.com/w/cpp/header/cmath )`zêx ü ­ C ý § > Ý ˜ P í Š ú uîˆ#áO Àw ¡Î^¶k ¸Uï‘,É`fŒS std:: std::reinterpret_pointer_casthttp://en.cppreference.com/w/cpp/memory/shared_ptr/pointer_cast`ŒG std:: std::const_pointer_casthttp://en.cppreference.com/w/cpp/memory/shared_ptr/pointer_castbŒK std:: std::dynamic_pointer_casthttp://en.cppreference.com/w/cpp/memory/shared_ptr/pointer_cast[Œ= std::static_pointer_casthttp://en.cppreference.com/w/cpp/memory/shared_ptr/pointer_castcŒM std::operator<<(std::error_code)http://en.cppreference.com/w/cpp/error/error_code/operator_ltlt`ŒKstd::strstreambuf::strstreambufhttp://en.cppreference.com/w/cpp/io/strstreambuf/strstreambufPŒ?ustd::experimental::samplehttp://en.cppreference.com/w/cpp/experimental/sample]ŒKC++ concepts: TriviallyCopyablehttp://en.cppreference.com/w/cpp/concept/TriviallyCopyableHŒ){std::nearbyinthttp://en.cppreference.com/w/cpp/numeric/math/nearbyint^Œ9std::logical_andhttp://en.cppreference.com/w/cpp/utility/functional/logical_and_voidDŒ)sstd::set::swaphttp://en.cppreference.com/w/cpp/container/set/swapmŒK!std::extreme_value_distributionhttp://en.cppreference.com/w/cpp/numeric/random/extreme_value_distributionHŒ /ustd::bitset::sizehttp://en.cppreference.com/w/cpp/utility/bitset/sizeŒ s'std::experimental::propagate_const::propagate_consthttp://en.cppreference.com/w/cpp/experimental/propagate_const/propagate_constfŒ Astd::function::target_typehttp://en.cppreference.com/w/cpp/utility/functional/function/target_typejŒ Y std::experimental::shared_future::thenhttp://en.cppreference.com/w/cpp/experimental/shared_future/thenFŒ 5kC++ keywords: friendhttp://en.cppreference.com/w/cpp/keyword/friendIŒ-ystd::equal_rangehttp://en.cppreference.com/w/cpp/algorithm/equal_range@Œ'mstd::auto_ptrhttp://en.cppreference.com/w/cpp/memory/auto_ptr;Œ!istd::applyhttp://en.cppreference.com/w/cpp/utility/applyQŒ;{user-defined conversionhttp://en.cppreference.com/w/cpp/language/cast_operator?Œstry-blockhttp://en.cppreference.com/w/cpp/language/try_catchbŒI operator>>(std::basic_istream)http://en.cppreference.com/w/cpp/io/basic_istream/operator_gtgt2cŒQstd::experimental::propagate_consthttp://en.cppreference.com/w/cpp/experimental/propagate_constŒstd::experimental::swap(std::experimental::propagate_const)http://en.cppreference.com/w/cpp/experimental/propagate_const/swap2Œystd::experimental::filesystem::path::replace_extensionhttp://en.cppreference.com/w/cpp/experimental/fs/path/replace_extension ‹{/std::experimental::atomic_shared_ptr::atomic_shared_ptrhttp://en.cppreference.com/w/cpp/experimental/atomic_shared_ptr/atomic_shared_ptr`‹~E std::unique_ptr::~unique_ptrhttp://en.cppreference.com/w/cpp/memory/unique_ptr/%7Eunique_ptr`‹}Kstd::basic_streambuf::underflowhttp://en.cppreference.com/w/cpp/io/basic_streambuf/underflowE‹|'wstd::iswupperhttp://en.cppreference.com/w/cpp/string/wide/iswupperB‹{+msizeof operatorhttp://en.cppreference.com/w/cpp/language/sizeof^‹zIstd::pmr::null_memory_resourcehttp://en.cppreference.com/w/cpp/memory/null_memory_resourcef‹yKstd::istreambuf_iterator::equalhttp://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/equalS‹xGsstd::this_thread::sleep_untilhttp://en.cppreference.com/w/cpp/thread/sleep_untilC‹w+ostd::unexpectedhttp://en.cppreference.com/w/cpp/error/unexpectedg‹vKstd::unordered_multiset::key_eqhttp://en.cppreference.com/w/cpp/container/unordered_multiset/key_eqL‹u3ystd::optional::swaphttp://en.cppreference.com/w/cpp/utility/optional/swapy‹tistd::regex_token_iterator::operator operator->http://en.cppreference.com/w/cpp/regex/regex_token_iterator/operator%2Ao‹sUstd::regex_token_iterator::operator*http://en.cppreference.com/w/cpp/regex/regex_token_iterator/operator%2A ‹r{/std::experimental::basic_string_view::find_first_not_ofhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/find_first_not_of‹q]9std::mersenne_twister_engine::operator()http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/operator%28%29 *²I©i# Ü ‰ ° c  \   V  £ Tô¡©c¦Cá†B÷—?ìhòmô¨)ÔDŒC+qstd::shared_ptrhttp://en.cppreference.com/w/cpp/memory/shared_ptrRŒBAwstd::filesystem::is_sockethttp://en.cppreference.com/w/cpp/filesystem/is_socket|ŒAkstd::experimental::shared_future::shared_futurehttp://en.cppreference.com/w/cpp/experimental/shared_future/shared_futureIŒ@)}std::ratio_addhttp://en.cppreference.com/w/cpp/numeric/ratio/ratio_addvŒ?U)std::subtract_with_carry_engine::minhttp://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/minŒ>s!std::regex_token_iterator::operator operator++(int)http://en.cppreference.com/w/cpp/regex/regex_token_iterator/operator_arithsŒ=W!std::regex_token_iterator::operator++http://en.cppreference.com/w/cpp/regex/regex_token_iterator/operator_arithŒ<e-std::condition_variable::~condition_variablehttp://en.cppreference.com/w/cpp/thread/condition_variable/%7Econdition_variablePŒ;7}std::valarray::cshifthttp://en.cppreference.com/w/cpp/numeric/valarray/cshiftUŒ:5Default constructorshttp://en.cppreference.com/w/cpp/language/default_constructor]Œ9Kstd::filesystem::file_time_typehttp://en.cppreference.com/w/cpp/filesystem/file_time_typeHŒ8;ienumeration declarationhttp://en.cppreference.com/w/cpp/language/enumAŒ7+kbreak statementhttp://en.cppreference.com/w/cpp/language/breakXŒ6?std::mutex::native_handlehttp://en.cppreference.com/w/cpp/thread/mutex/native_handle_Œ59std::bad_function_callhttp://en.cppreference.com/w/cpp/utility/functional/bad_function_call`Œ4Kstd::basic_istringstream::rdbufhttp://en.cppreference.com/w/cpp/io/basic_istringstream/rdbufWŒ3;std::multimap::multimaphttp://en.cppreference.com/w/cpp/container/multimap/multimap`Œ2E std::basic_string::operator=http://en.cppreference.com/w/cpp/string/basic_string/operator%3DCŒ1'sstd::generatehttp://en.cppreference.com/w/cpp/algorithm/generatelŒ0Kstd::cauchy_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/paramŒ/y#std::experimental::pmr::memory_resource::do_deallocatehttp://en.cppreference.com/w/cpp/experimental/memory_resource/do_deallocatePŒ.5std::map::value_comphttp://en.cppreference.com/w/cpp/container/map/value_comp]Œ-S{std::multiset:: std::multiset::cendhttp://en.cppreference.com/w/cpp/container/multiset/endLŒ,1{std::multiset::endhttp://en.cppreference.com/w/cpp/container/multiset/end\Œ+Gstd::basic_ostringstream::strhttp://en.cppreference.com/w/cpp/io/basic_ostringstream/strQŒ*3std::map::operator=http://en.cppreference.com/w/cpp/container/map/operator%3DiŒ)astd::experimental::filesystem::path::clearhttp://en.cppreference.com/w/cpp/experimental/fs/path/clearQŒ(+ std::multiplieshttp://en.cppreference.com/w/cpp/utility/functional/multipliesCŒ'%ustd::strncpyhttp://en.cppreference.com/w/cpp/string/byte/strncpycŒ&Istd::notify_all_at_thread_exithttp://en.cppreference.com/w/cpp/thread/notify_all_at_thread_exitFŒ%-sstd::shared_lockhttp://en.cppreference.com/w/cpp/thread/shared_lockUŒ$A}std::tuple_sizehttp://en.cppreference.com/w/cpp/utility/pair/tuple_sizeJŒ#1wstd::codecvt_utf16http://en.cppreference.com/w/cpp/locale/codecvt_utf16YŒ"=std::istreambuf_iteratorhttp://en.cppreference.com/w/cpp/iterator/istreambuf_iteratorzŒ!Y-std::experimental::make_ostream_joinerhttp://en.cppreference.com/w/cpp/experimental/ostream_joiner/make_ostream_joinerPŒ ;ydynamic_cast conversionhttp://en.cppreference.com/w/cpp/language/dynamic_castDŒ-ostd:: std::atollhttp://en.cppreference.com/w/cpp/string/byte/atoiCŒ+ostd:: std::atolhttp://en.cppreference.com/w/cpp/string/byte/atoi=Œostd::atoihttp://en.cppreference.com/w/cpp/string/byte/atoiŒ{Ostd::chi_squared_distribution::chi_squared_distributionhttp://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/chi_squared_distributionfŒU Alternative operator representationshttp://en.cppreference.com/w/cpp/language/operator_alternativeKŒGcStandard library header http://en.cppreference.com/w/cpp/header/set (±„7å2 Ï } : ö w ý ª T ñ ; • Uù‹Ê}/¸w/Òs$Ù‡,½bÝ#±oŒkQstd::unordered_multiset::operator=http://en.cppreference.com/w/cpp/container/unordered_multiset/operator%3D6Œj)Sstd::experimental::pmr::synchronized_pool_resource::synchronized_pool_resourcehttp://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/synchronized_pool_resourceŒim'operator<<(std::experimental::basic_string_view)http://en.cppreference.com/w/cpp/experimental/basic_string_view/operator_ltltXŒhG}std::experimental::make_arrayhttp://en.cppreference.com/w/cpp/experimental/make_arraylŒgKstd::fisher_f_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/minXŒf=std::piecewise_constructhttp://en.cppreference.com/w/cpp/utility/piecewise_constructOŒe/std:: std::stoullhttp://en.cppreference.com/w/cpp/string/basic_string/stoulHŒd!std::stoulhttp://en.cppreference.com/w/cpp/string/basic_string/stoulvŒcmstd::experimental::filesystem::is_character_filehttp://en.cppreference.com/w/cpp/experimental/fs/is_character_fileoŒbUstd::regex_token_iterator::operator=http://en.cppreference.com/w/cpp/regex/regex_token_iterator/operator%3DaŒa?std::shuffle_order_enginehttp://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine\Œ`Cstd::shared_mutex::try_lockhttp://en.cppreference.com/w/cpp/thread/shared_mutex/try_lockZŒ_Istd::experimental::disjunctionhttp://en.cppreference.com/w/cpp/experimental/disjunctionEŒ^1mstd:: std::crbeginhttp://en.cppreference.com/w/cpp/iterator/rbegin>Œ]#mstd::rbeginhttp://en.cppreference.com/w/cpp/iterator/rbegintŒ\[std::condition_variable_any::wait_untilhttp://en.cppreference.com/w/cpp/thread/condition_variable_any/wait_untilKŒ[3wstd::locale::globalhttp://en.cppreference.com/w/cpp/locale/locale/globalJŒZ9ostd::experimental::lcmhttp://en.cppreference.com/w/cpp/experimental/lcmQŒY9}std::char_traits::copyhttp://en.cppreference.com/w/cpp/string/char_traits/copyjŒXSstd::basic_ostringstream::operator=http://en.cppreference.com/w/cpp/io/basic_ostringstream/operator%3DkŒWcstd::experimental::filesystem::path::assignhttp://en.cppreference.com/w/cpp/experimental/fs/path/assignYŒVI}std::swap(std::basic_ifstream)http://en.cppreference.com/w/cpp/io/basic_ifstream/swap2=ŒU!mstd::clamphttp://en.cppreference.com/w/cpp/algorithm/clamp"ŒT Gstd::pmr::synchronized_pool_resource::synchronized_pool_resourcehttp://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/synchronized_pool_resourceRŒS9std::basic_string_viewhttp://en.cppreference.com/w/cpp/string/basic_string_view^ŒRIstd::basic_istringstream::swaphttp://en.cppreference.com/w/cpp/io/basic_istringstream/swap`ŒQKstd::basic_ostringstream::rdbufhttp://en.cppreference.com/w/cpp/io/basic_ostringstream/rdbufSŒP;std::weak_ptr::weak_ptrhttp://en.cppreference.com/w/cpp/memory/weak_ptr/weak_ptrPŒO5std::multiset::emptyhttp://en.cppreference.com/w/cpp/container/multiset/emptywŒN]#std::nested_exception::~nested_exceptionhttp://en.cppreference.com/w/cpp/error/nested_exception/%7Enested_exception|ŒMg#std::experimental::ostream_joiner::operator++http://en.cppreference.com/w/cpp/experimental/ostream_joiner/operator_arithAŒL?WC-style file input/outputhttp://en.cppreference.com/w/cpp/io/c@ŒK!sstd::ilogbhttp://en.cppreference.com/w/cpp/numeric/math/ilogbOŒJ;wstd::swap(std::promise)http://en.cppreference.com/w/cpp/thread/promise/swap2`ŒIG std::unique_lock::unique_lockhttp://en.cppreference.com/w/cpp/thread/unique_lock/unique_lockXŒH?std::shared_future::validhttp://en.cppreference.com/w/cpp/thread/shared_future/validUŒG;std::shared_timed_mutexhttp://en.cppreference.com/w/cpp/thread/shared_timed_mutexOŒF+!=(std::bitset)http://en.cppreference.com/w/cpp/utility/bitset/operator_cmpJŒE!operator==http://en.cppreference.com/w/cpp/utility/bitset/operator_cmpyŒDgstd::filesystem::recursive_directory_iteratorhttp://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator (¦9ÌE æ ¤ S £  · U Ü Ž / å †ìÌ~/É:ß‹†2ê‘›:Òj&ãC%ustd::wcstoulhttp://en.cppreference.com/w/cpp/string/wide/wcstoul@1cFilesystem libraryhttp://en.cppreference.com/w/cpp/filesystemA)mstd::ptrdiff_thttp://en.cppreference.com/w/cpp/types/ptrdiff_te?std:: std::comp_ellint_1lhttp://en.cppreference.com/w/cpp/experimental/special_math/comp_ellint_1e?std:: std::comp_ellint_1fhttp://en.cppreference.com/w/cpp/experimental/special_math/comp_ellint_1^1std::comp_ellint_1http://en.cppreference.com/w/cpp/experimental/special_math/comp_ellint_1 {std::filesystem::path:: std::filesystem::path::operator string_type()http://en.cppreference.com/w/cpp/filesystem/path/nativeo w{std::filesystem::path:: std::filesystem::path::nativehttp://en.cppreference.com/w/cpp/filesystem/path/nativeV E{std::filesystem::path::c_strhttp://en.cppreference.com/w/cpp/filesystem/path/nativeE -qstd::is_functionhttp://en.cppreference.com/w/cpp/types/is_functionQ MiStandard library header http://en.cppreference.com/w/cpp/header/stringxW+std::subtract_with_carry_engine::seedhttp://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/seed{#std::experimental::observer_ptr::operator element_type*http://en.cppreference.com/w/cpp/experimental/observer_ptr/operator_pointerQ9}std::is_floating_pointhttp://en.cppreference.com/w/cpp/types/is_floating_pointX?std::atomic::is_lock_freehttp://en.cppreference.com/w/cpp/atomic/atomic/is_lock_free )std::experimental::filesystem:: std::experimental::filesystem::system_completehttp://en.cppreference.com/w/cpp/experimental/fs/absolutec[std::experimental::filesystem::absolutehttp://en.cppreference.com/w/cpp/experimental/fs/absoluteL-std:: std::stollhttp://en.cppreference.com/w/cpp/string/basic_string/stolK+std:: std::stolhttp://en.cppreference.com/w/cpp/string/basic_string/stolEstd::stoihttp://en.cppreference.com/w/cpp/string/basic_string/stolvŒwstd::basic_string_view:: std::basic_string_view::cendhttp://en.cppreference.com/w/cpp/string/basic_string_view/end\Œ~Cstd::basic_string_view::endhttp://en.cppreference.com/w/cpp/string/basic_string_view/endŒ} 3std::experimental::pmr::monotonic_buffer_resource::do_allocatehttp://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource/do_allocate\Œ|Cstd::unique_ptr::unique_ptrhttp://en.cppreference.com/w/cpp/memory/unique_ptr/unique_ptrGŒ{)ynested classeshttp://en.cppreference.com/w/cpp/language/nested_types\ŒzCstd::has_virtual_destructorhttp://en.cppreference.com/w/cpp/types/has_virtual_destructorKŒy%std::bit_xorhttp://en.cppreference.com/w/cpp/utility/functional/bit_xorvŒxkstd::experimental::erase_if (std::forward_list)http://en.cppreference.com/w/cpp/experimental/forward_list/erase_if_ŒwG std::basic_regex::basic_regexhttp://en.cppreference.com/w/cpp/regex/basic_regex/basic_regexbŒvI std::atomic_flag::test_and_sethttp://en.cppreference.com/w/cpp/atomic/atomic_flag/test_and_setŒustd::unordered_multiset:: std::unordered_multiset::cend(int)http://en.cppreference.com/w/cpp/container/unordered_multiset/end2gŒtOstd::unordered_multiset::end(int)http://en.cppreference.com/w/cpp/container/unordered_multiset/end2CŒs'sstd::find_endhttp://en.cppreference.com/w/cpp/algorithm/find_endNŒr3}std::deque::emplacehttp://en.cppreference.com/w/cpp/container/deque/emplace?Œq#ostd::samplehttp://en.cppreference.com/w/cpp/algorithm/sample\ŒpCstd::wbuffer_convert::rdbufhttp://en.cppreference.com/w/cpp/locale/wbuffer_convert/rdbufŒoSE>>(std::extreme_value_distribution)http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/operator_ltltgtgtjŒn!Eoperator<9#mstd::callochttp://en.cppreference.com/w/cpp/memory/c/callock8Wstd::pmr::memory_resource::deallocatehttp://en.cppreference.com/w/cpp/memory/memory_resource/deallocateH77mC++ concepts: PODTypehttp://en.cppreference.com/w/cpp/concept/PODType]6C std::unique_ptr::operator[]http://en.cppreference.com/w/cpp/memory/unique_ptr/operator_at5oCstd::binomial_distribution::binomial_distributionhttp://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/binomial_distribution^4C std::reverse_iterator::basehttp://en.cppreference.com/w/cpp/iterator/reverse_iterator/baseh3?#std::function::operator()http://en.cppreference.com/w/cpp/utility/functional/function/operator%28%29K2GcStandard library header http://en.cppreference.com/w/cpp/header/iosO1KgStandard library header http://en.cppreference.com/w/cpp/header/ratio~0Y5std::binomial_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/operator%28%29h/Mstd::ostreambuf_iterator::failedhttp://en.cppreference.com/w/cpp/iterator/ostreambuf_iterator/failedP.9{std::type_info::beforehttp://en.cppreference.com/w/cpp/types/type_info/before-{5std::pmr::synchronized_pool_resource::upstream_resourcehttp://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/upstream_resourcen,c std:: std::is_nothrow_default_constructiblehttp://en.cppreference.com/w/cpp/types/is_default_constructiblep+g std:: std::is_trivially_default_constructiblehttp://en.cppreference.com/w/cpp/types/is_default_constructible`*G std::is_default_constructiblehttp://en.cppreference.com/w/cpp/types/is_default_constructibleb)Qstd::chrono::duration_values::zerohttp://en.cppreference.com/w/cpp/chrono/duration_values/zero](A std::multimap::upper_boundhttp://en.cppreference.com/w/cpp/container/multimap/upper_boundY'3std::is_placeholderhttp://en.cppreference.com/w/cpp/utility/functional/is_placeholderl&Sstd::condition_variable::notify_onehttp://en.cppreference.com/w/cpp/thread/condition_variable/notify_oned%=std::function::operator=http://en.cppreference.com/w/cpp/utility/functional/function/operator%3Dj$Istd::bernoulli_distribution::phttp://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/p #{/std::experimental::basic_string_view::basic_string_viewhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/basic_string_viewV"3 >=(std::time_point)http://en.cppreference.com/w/cpp/chrono/time_point/operator_cmpD! >http://en.cppreference.com/w/cpp/chrono/time_point/operator_cmpE  <=http://en.cppreference.com/w/cpp/chrono/time_point/operator_cmpD ÙFóJï{qhYstd::numeric_limits::has_signaling_NaNhttp://en.cppreference.com/w/cpp/types/numeric_limits/has_signaling_NaNXgAstd::strstream::~strstreamhttp://en.cppreference.com/w/cpp/io/strstream/%7EstrstreamCf%ustd::isupperhttp://en.cppreference.com/w/cpp/string/byte/isupper`e;std::not_equal_tohttp://en.cppreference.com/w/cpp/utility/functional/not_equal_to_voidPd?ustd::chrono::system_clockhttp://en.cppreference.com/w/cpp/chrono/system_clockDc!{std::wctobhttp://en.cppreference.com/w/cpp/string/multibyte/wctobIb1ustd::match_resultshttp://en.cppreference.com/w/cpp/regex/match_resultsbaQstd::filesystem::path::parent_pathhttp://en.cppreference.com/w/cpp/filesystem/path/parent_path]`YuStandard library header http://en.cppreference.com/w/cpp/header/forward_listY_Astd::match_results::suffixhttp://en.cppreference.com/w/cpp/regex/match_results/suffixO^/Move constructorshttp://en.cppreference.com/w/cpp/language/move_constructorX]G}std::filesystem::copy_symlinkhttp://en.cppreference.com/w/cpp/filesystem/copy_symlink]\S{std::dynarray:: std::dynarray::cendhttp://en.cppreference.com/w/cpp/container/dynarray/endL[1{std::dynarray::endhttp://en.cppreference.com/w/cpp/container/dynarray/end^ZIstd::basic_stringbuf::overflowhttp://en.cppreference.com/w/cpp/io/basic_stringbuf/overflow:Y#estd::renamehttp://en.cppreference.com/w/cpp/io/c/renamehXCstd::slice_array::operator=http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator%3DlWKstd::discard_block_engine::seedhttp://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/seeddVKstd::allocator_traits::allocatehttp://en.cppreference.com/w/cpp/memory/allocator_traits/allocate?UwLC_TIMEhttp://en.cppreference.com/w/cpp/locale/LC_categoriesBT!wLC_NUMERIChttp://en.cppreference.com/w/cpp/locale/LC_categoriesCS#wLC_MONETARYhttp://en.cppreference.com/w/cpp/locale/LC_categories@RwLC_CTYPEhttp://en.cppreference.com/w/cpp/locale/LC_categoriesBQ!wLC_COLLATEhttp://en.cppreference.com/w/cpp/locale/LC_categories>PwLC_ALLhttp://en.cppreference.com/w/cpp/locale/LC_categoriesIOCcLow level memory managementhttp://en.cppreference.com/w/cpp/memory/newrNqstd::basic_streambuf:: std::basic_streambuf::imbuehttp://en.cppreference.com/w/cpp/io/basic_streambuf/pubimbue^MIstd::basic_streambuf::pubimbuehttp://en.cppreference.com/w/cpp/io/basic_streambuf/pubimbueYLI}std::chrono::steady_clock::nowhttp://en.cppreference.com/w/cpp/chrono/steady_clock/nowZKAstd::basic_regex constantshttp://en.cppreference.com/w/cpp/regex/basic_regex/constantsgJU std::experimental::make_ready_futurehttp://en.cppreference.com/w/cpp/experimental/make_ready_futureOI3std::partition_copyhttp://en.cppreference.com/w/cpp/algorithm/partition_copygHKstd::unordered_map::equal_rangehttp://en.cppreference.com/w/cpp/container/unordered_map/equal_rangevG[#std::enable_shared_from_this::operator=http://en.cppreference.com/w/cpp/memory/enable_shared_from_this/operator%3DHF7mC++ keywords: wchar_thttp://en.cppreference.com/w/cpp/keyword/wchar_tSE;std::remove_all_extentshttp://en.cppreference.com/w/cpp/types/remove_all_extentszDistd::experimental::observer_ptr::operator boolhttp://en.cppreference.com/w/cpp/experimental/observer_ptr/operator_boolCSE>>(std::linear_congruential_engine)http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/operator_ltltgtgtjB!Eoperator<Gstd::basic_streambuf::sungetchttp://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc?=%mstd::forwardhttp://en.cppreference.com/w/cpp/utility/forward +b¶V½F  Z Ù †  ¯ x : ë • ? ü § DÜŸZë| ž/¼MÞnþ²mÆQU¿bZŽEstd::basic_ifstream::is_openhttp://en.cppreference.com/w/cpp/io/basic_ifstream/is_openEŽ#{std::systemhttp://en.cppreference.com/w/cpp/utility/program/systemKŽ%std::bit_andhttp://en.cppreference.com/w/cpp/utility/functional/bit_andEŽ)ustd::iter_swaphttp://en.cppreference.com/w/cpp/algorithm/iter_swappŽO#std::independent_bits_engine::minhttp://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/min>Ž%kstd::codecvthttp://en.cppreference.com/w/cpp/locale/codecvtrŽ Q%std::mersenne_twister_engine::seedhttp://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/seedSŽ 5std::list::operator=http://en.cppreference.com/w/cpp/container/list/operator%3DNŽ ?qstd::set:: std::set::cendhttp://en.cppreference.com/w/cpp/container/set/endBŽ 'qstd::set::endhttp://en.cppreference.com/w/cpp/container/set/endIŽ 5qstd::basic_ios::movehttp://en.cppreference.com/w/cpp/io/basic_ios/movemŽG%std::slice_array::operator>>=http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator_arithmŽG%std::slice_array::operator<<=http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator_arithlŽE%std::slice_array::operator^=http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator_arithlŽE%std::slice_array::operator|=http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator_arithpŽM%std::slice_array::operator&=http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator_arithlŽE%std::slice_array::operator%=http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator_arithlŽE%std::slice_array::operator/=http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator_arithlŽE%std::slice_array::operator*=http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator_arithlŽE%std::slice_array::operator-=http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator_arithlE%std::slice_array::operator+=http://en.cppreference.com/w/cpp/numeric/valarray/slice_array/operator_arithB~#ustd::remquohttp://en.cppreference.com/w/cpp/numeric/math/remquo:}istd::nexthttp://en.cppreference.com/w/cpp/iterator/nexte|Istd::unordered_multiset::erasehttp://en.cppreference.com/w/cpp/container/unordered_multiset/erase`{Kstd::basic_streambuf::sputbackchttp://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackcRz={std::swap(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/swap2@y/eC++ keywords: inthttp://en.cppreference.com/w/cpp/keyword/intSx- std:: std::betalhttp://en.cppreference.com/w/cpp/experimental/special_math/betaSw- std:: std::betafhttp://en.cppreference.com/w/cpp/experimental/special_math/betaLv std::betahttp://en.cppreference.com/w/cpp/experimental/special_math/beta;u-]std:: std::wcerrhttp://en.cppreference.com/w/cpp/io/cerr4t]std::cerrhttp://en.cppreference.com/w/cpp/io/cerrUsMqoverride specifier (since C++11)http://en.cppreference.com/w/cpp/language/override|r[/std::piecewise_linear_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/maxPq5std::iterator_traitshttp://en.cppreference.com/w/cpp/iterator/iterator_traits~pS;!=(std::extreme_value_distribution)http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/operator_cmpeo!;operator==http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/operator_cmpn[7std::student_t_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/operator%28%29tmustd::experimental::swap(std::experimental::function)http://en.cppreference.com/w/cpp/experimental/function/swap2AlyINFINITYhttp://en.cppreference.com/w/cpp/numeric/math/INFINITYRk={std::basic_istringstreamhttp://en.cppreference.com/w/cpp/io/basic_istringstream]jEstd::match_results::max_sizehttp://en.cppreference.com/w/cpp/regex/match_results/max_sizeGi+wstd::generate_nhttp://en.cppreference.com/w/cpp/algorithm/generate_n )˜µpÂ… V ž C § O ô ” ( » u ´@ÏYâZÔŒ>ïªfÃoŸý£Uï˜TŽ<=std::basic_regex::getlochttp://en.cppreference.com/w/cpp/regex/basic_regex/getloccŽ;M std::rend(std::initializer_list)http://en.cppreference.com/w/cpp/utility/initializer_list/rend2KŽ:7sstd::ios_base::getlochttp://en.cppreference.com/w/cpp/io/ios_base/getlocWŽ9;std::complex::operator=http://en.cppreference.com/w/cpp/numeric/complex/operator%3DŽ87std::experimental::filesystem::recursive_directory_iterator::optionshttp://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/optionsdŽ7Sstd::experimental::future::is_readyhttp://en.cppreference.com/w/cpp/experimental/future/is_readyfŽ6K!=(std::experimental::function)http://en.cppreference.com/w/cpp/experimental/function/operator_cmpQŽ5!operator==http://en.cppreference.com/w/cpp/experimental/function/operator_cmpSŽ4?{std::atan2(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/atan2JŽ3AgFloating-point environmenthttp://en.cppreference.com/w/cpp/numeric/fenvAŽ2'ostd::optionalhttp://en.cppreference.com/w/cpp/utility/optionalBŽ1)ostd::setlocalehttp://en.cppreference.com/w/cpp/locale/setlocaleLŽ0-std:: std::stoldhttp://en.cppreference.com/w/cpp/string/basic_string/stofKŽ/+std:: std::stodhttp://en.cppreference.com/w/cpp/string/basic_string/stofEŽ.std::stofhttp://en.cppreference.com/w/cpp/string/basic_string/stof8Ž-!cstd::fputshttp://en.cppreference.com/w/cpp/io/c/fputsHŽ,-wstd::list::fronthttp://en.cppreference.com/w/cpp/container/list/frontŽ+c7std::gamma_distribution::gamma_distributionhttp://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/gamma_distributiontŽ*O+std::uniform_int_distribution:: bhttp://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/paramssŽ)M+std::uniform_int_distribution::ahttp://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/paramsnŽ(M!std::weibull_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/paramqŽ'K)std::pointer_to_binary_functionhttp://en.cppreference.com/w/cpp/utility/functional/pointer_to_binary_functionOŽ&3std::priority_queuehttp://en.cppreference.com/w/cpp/container/priority_queuelŽ%cstd::experimental::filesystem::copy_symlinkhttp://en.cppreference.com/w/cpp/experimental/fs/copy_symlinkCŽ$%ustd::wcsrchrhttp://en.cppreference.com/w/cpp/string/wide/wcsrchrjŽ#E!std::cauchy_distribution:: bhttp://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/paramsiŽ"C!std::cauchy_distribution::ahttp://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/params]Ž!Estd::swap(std::forward_list)http://en.cppreference.com/w/cpp/container/forward_list/swap2XŽ G}std::experimental::shared_ptrhttp://en.cppreference.com/w/cpp/experimental/shared_ptrUŽEystd::experimental::any::typehttp://en.cppreference.com/w/cpp/experimental/any/typeŽwKstd::independent_bits_engine::independent_bits_enginehttp://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/independent_bits_engineXŽ?std::char_traits::comparehttp://en.cppreference.com/w/cpp/string/char_traits/compare_Ž9!=(std::unordered_map)http://en.cppreference.com/w/cpp/container/unordered_map/operator_cmpSŽ!operator==http://en.cppreference.com/w/cpp/container/unordered_map/operator_cmp,ŽG!std::filesystem::directory_iterator::operator std::filesystem::directory_iterator::operator->http://en.cppreference.com/w/cpp/filesystem/directory_iterator/operator%2A|Ži!std::filesystem::directory_iterator::operator*http://en.cppreference.com/w/cpp/filesystem/directory_iterator/operator%2A:Ž%cstd::io_errchttp://en.cppreference.com/w/cpp/io/io_errcBŽ)oHistory of C++http://en.cppreference.com/w/cpp/language/historyfŽ]std::experimental::filesystem::file_sizehttp://en.cppreference.com/w/cpp/experimental/fs/file_sizeBŽ1gC++ keywords: gotohttp://en.cppreference.com/w/cpp/keyword/gotoHŽ7mstd::filesystem::pathhttp://en.cppreference.com/w/cpp/filesystem/path +Ÿ¿Fåj ƒ  À `  Í w  « M Ý ž Fú›XÏ…:Ö„¬Eó²q –TÌu£`ŸrŽgestd::experimental::pmr::null_memory_resourcehttp://en.cppreference.com/w/cpp/experimental/null_memory_resourceIŽf#std::invokehttp://en.cppreference.com/w/cpp/utility/functional/invoke@Že+istd::ostrstreamhttp://en.cppreference.com/w/cpp/io/ostrstream`Žd?Elaborated type specifierhttp://en.cppreference.com/w/cpp/language/elaborated_type_specifierlŽc[std::filesystem::path::replace_filenamehttp://en.cppreference.com/w/cpp/filesystem/path/replace_filenameTŽbCyC++ concepts: BasicLockablehttp://en.cppreference.com/w/cpp/concept/BasicLockableŽac7std::piecewise_constant_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/param?Ž`'kstd::is_arrayhttp://en.cppreference.com/w/cpp/types/is_arraytŽ_[std::condition_variable_any::notify_onehttp://en.cppreference.com/w/cpp/thread/condition_variable_any/notify_oneaŽ^I std::numeric_limits::is_iec559http://en.cppreference.com/w/cpp/types/numeric_limits/is_iec559>Ž]qstd::exp2http://en.cppreference.com/w/cpp/numeric/math/exp2>Ž\qstd::atanhttp://en.cppreference.com/w/cpp/numeric/math/atanOŽ[Gkfinal specifier (since C++11)http://en.cppreference.com/w/cpp/language/finaldŽZCstd::random_device::entropyhttp://en.cppreference.com/w/cpp/numeric/random/random_device/entropypŽYWstd::wbuffer_convert::wbuffer_converthttp://en.cppreference.com/w/cpp/locale/wbuffer_convert/wbuffer_convertbŽXI std::packaged_task::get_futurehttp://en.cppreference.com/w/cpp/thread/packaged_task/get_futureOŽW;wstd::basic_ios::copyfmthttp://en.cppreference.com/w/cpp/io/basic_ios/copyfmtaŽV?std::discard_block_enginehttp://en.cppreference.com/w/cpp/numeric/random/discard_block_engineHŽU1sstd:: std::llroundhttp://en.cppreference.com/w/cpp/numeric/math/roundGŽT/sstd:: std::lroundhttp://en.cppreference.com/w/cpp/numeric/math/round@ŽS!sstd::roundhttp://en.cppreference.com/w/cpp/numeric/math/roundCŽR%ustd::wcsncpyhttp://en.cppreference.com/w/cpp/string/wide/wcsncpy@ŽQ9[Thread support libraryhttp://en.cppreference.com/w/cpp/thread\ŽPGstd::basic_filebuf::showmanychttp://en.cppreference.com/w/cpp/io/basic_filebuf/showmanycIŽO)}Parameter packhttp://en.cppreference.com/w/cpp/language/parameter_packUŽNEystd::filesystem::path::clearhttp://en.cppreference.com/w/cpp/filesystem/path/clear<ŽM#istd::threadhttp://en.cppreference.com/w/cpp/thread/threadmŽL_ std::placeholders:: std::placeholders::_Nhttp://en.cppreference.com/w/cpp/utility/functional/placeholders[ŽK; std::placeholders:: ...http://en.cppreference.com/w/cpp/utility/functional/placeholdersmŽJ_ std::placeholders:: std::placeholders::_2http://en.cppreference.com/w/cpp/utility/functional/placeholdersYŽI7 std::placeholders::_1http://en.cppreference.com/w/cpp/utility/functional/placeholdersSŽHOkStandard library header http://en.cppreference.com/w/cpp/header/cassertHŽG3qstd::basic_ofstreamhttp://en.cppreference.com/w/cpp/io/basic_ofstreamEŽF-qstd::is_compoundhttp://en.cppreference.com/w/cpp/types/is_compound]ŽEA std::forward_list::reversehttp://en.cppreference.com/w/cpp/container/forward_list/reverseEŽD-qstd::is_integralhttp://en.cppreference.com/w/cpp/types/is_integralxŽCgstd::experimental::latch::count_down_and_waithttp://en.cppreference.com/w/cpp/experimental/latch/count_down_and_wait{ŽBK=>>(std::geometric_distribution)http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/operator_ltltgtgtfŽA!=operator<U)std::linear_congruential_engine::minhttp://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/min>Ž=5[Localization libraryhttp://en.cppreference.com/w/cpp/locale ,œŸ?Âb ª S ð ¢ c  × D  ¼ r $ Ù  <ù­Nþ§Pî©1ÇV¦?â~œFœe!;operator<ìc<q+std::pmr::monotonic_buffer_resource::do_deallocatehttp://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/do_deallocateO;KgStandard library header http://en.cppreference.com/w/cpp/header/regexA:)mstd::type_infohttp://en.cppreference.com/w/cpp/types/type_info]9;std::gamma_distributionhttp://en.cppreference.com/w/cpp/numeric/random/gamma_distribution8{Ostd::uniform_int_distribution::uniform_int_distributionhttp://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/uniform_int_distribution~7]1std::negative_binomial_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/minw6G9>>(std::poisson_distribution)http://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/operator_ltltgtgtd5!9operator<>(std::piecewise_constant_distribution)http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/operator_ltltgtgto1!Ooperator<$#mstd::quotedhttp://en.cppreference.com/w/cpp/io/manip/quoted;##gstd::is_podhttp://en.cppreference.com/w/cpp/types/is_pods"U#std::priority_queue::~priority_queuehttp://en.cppreference.com/w/cpp/container/priority_queue/%7Epriority_queueD!+qstd::lock_guardhttp://en.cppreference.com/w/cpp/thread/lock_guardT Ewstd::map:: std::map::crbeginhttp://en.cppreference.com/w/cpp/container/map/rbeginH-wstd::map::rbeginhttp://en.cppreference.com/w/cpp/container/map/rbeginV;std::bitset::operator[]http://en.cppreference.com/w/cpp/utility/bitset/operator_atE!}FE_DFL_ENVhttp://en.cppreference.com/w/cpp/numeric/fenv/FE_DFL_ENVH-wstd::set::inserthttp://en.cppreference.com/w/cpp/container/set/insert:5SInput/output libraryhttp://en.cppreference.com/w/cpp/ioE'wstd::towupperhttp://en.cppreference.com/w/cpp/string/wide/towupper_3std::piecewise_constant_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/minWG{std::experimental::any::emptyhttp://en.cppreference.com/w/cpp/experimental/any/emptybGstd::shared_future::operator=http://en.cppreference.com/w/cpp/thread/shared_future/operator%3DY?std::exception::operator=http://en.cppreference.com/w/cpp/error/exception/operator%3D$Astd::experimental::pmr::synchronized_pool_resource::upstream_resourcehttp://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/upstream_resourceyI;>>(std::fisher_f_distribution)http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/operator_ltltgtgt ,¬ªAõ‘ ª A Ø o  ´ V ¼ j  Ë Eú¤ZÚ&Ä|4í¦^Ô|)×y,Øy9ò«>¬h'std::experimental::filesystem::directory_iterator::operator=http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/incrementjgQstd::recursive_timed_mutex::unlockhttp://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/unlockDf3istd:: std::swprintfhttp://en.cppreference.com/w/cpp/io/c/fwprintfDe3istd:: std::fwprintfhttp://en.cppreference.com/w/cpp/io/c/fwprintf=d%istd::wprintfhttp://en.cppreference.com/w/cpp/io/c/fwprintf\cCstd::wbuffer_convert::statehttp://en.cppreference.com/w/cpp/locale/wbuffer_convert/stateQb3std::set::operator=http://en.cppreference.com/w/cpp/container/set/operator%3DJa1wstd::complex::imaghttp://en.cppreference.com/w/cpp/numeric/complex/imag[`? std::unordered_map::clearhttp://en.cppreference.com/w/cpp/container/unordered_map/clearO_;wstd::basic_istream::gethttp://en.cppreference.com/w/cpp/io/basic_istream/getP^?ustd::filesystem::is_otherhttp://en.cppreference.com/w/cpp/filesystem/is_otherU]7Phases of translationhttp://en.cppreference.com/w/cpp/language/translation_phases@\/eC++ keywords: forhttp://en.cppreference.com/w/cpp/keyword/forD[SIGFPEhttp://en.cppreference.com/w/cpp/utility/program/SIG_typesEZSIGABRThttp://en.cppreference.com/w/cpp/utility/program/SIG_typesDYSIGILLhttp://en.cppreference.com/w/cpp/utility/program/SIG_typesDXSIGINThttp://en.cppreference.com/w/cpp/utility/program/SIG_typesEWSIGSEGVhttp://en.cppreference.com/w/cpp/utility/program/SIG_typesEVSIGTERMhttp://en.cppreference.com/w/cpp/utility/program/SIG_types_UC std::unordered_map::reservehttp://en.cppreference.com/w/cpp/container/unordered_map/reservedTKstd::shared_mutex::shared_mutexhttp://en.cppreference.com/w/cpp/thread/shared_mutex/shared_mutexJS+}Other operatorshttp://en.cppreference.com/w/cpp/language/operator_other}Rustd::experimental::filesystem::path::remove_filenamehttp://en.cppreference.com/w/cpp/experimental/fs/path/remove_filenameGQ+wstd::accumulatehttp://en.cppreference.com/w/cpp/algorithm/accumulateSPCwstd::experimental::any::anyhttp://en.cppreference.com/w/cpp/experimental/any/anyHO7mstd::chrono::durationhttp://en.cppreference.com/w/cpp/chrono/durationNa5std::negative_binomial_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/paramFM-sFunction objectshttp://en.cppreference.com/w/cpp/utility/functionalSL?{std::basic_filebuf::closehttp://en.cppreference.com/w/cpp/io/basic_filebuf/closeOK;wstd::norm(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/normNJ=sC++ keywords: const_casthttp://en.cppreference.com/w/cpp/keyword/const_castFI5kC++ keywords: externhttp://en.cppreference.com/w/cpp/keyword/extern[HKstd::swap(std::basic_stringbuf)http://en.cppreference.com/w/cpp/io/basic_stringbuf/swap2OG7{std::future::wait_forhttp://en.cppreference.com/w/cpp/thread/future/wait_forfFQ std::chrono::duration::operator %=http://en.cppreference.com/w/cpp/chrono/duration/operator_arith3fEQ std::chrono::duration::operator /=http://en.cppreference.com/w/cpp/chrono/duration/operator_arith3fDQ std::chrono::duration::operator *=http://en.cppreference.com/w/cpp/chrono/duration/operator_arith3fCQ std::chrono::duration::operator -=http://en.cppreference.com/w/cpp/chrono/duration/operator_arith3eBO std::chrono::duration::operator+=http://en.cppreference.com/w/cpp/chrono/duration/operator_arith3|A{std::unordered_multimap:: std::unordered_multimap::cendhttp://en.cppreference.com/w/cpp/container/unordered_multimap/enda@Estd::unordered_multimap::endhttp://en.cppreference.com/w/cpp/container/unordered_multimap/endI?#std::bit_orhttp://en.cppreference.com/w/cpp/utility/functional/bit_orf>astd::time_get:: std::time_get::do_get_yearhttp://en.cppreference.com/w/cpp/locale/time_get/get_yearS=;std::time_get::get_yearhttp://en.cppreference.com/w/cpp/locale/time_get/get_year ,Å™Gî³h Æ ‹ 9 ð o $ Ú —  ¶ X ° a %¿h¸y#¨Uà0Íw ¨8Ê[ú¶oÅSAystd::hashhttp://en.cppreference.com/w/cpp/types/type_index/hashQ=ystd::basic_fstream::openhttp://en.cppreference.com/w/cpp/io/basic_fstream/openD3iC++ keywords: whilehttp://en.cppreference.com/w/cpp/keyword/whileA!uStatementshttp://en.cppreference.com/w/cpp/language/statements^=reference initializationhttp://en.cppreference.com/w/cpp/language/reference_initializationlG#std::weibull_distribution:: bhttp://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/paramskE#std::weibull_distribution::ahttp://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/paramsm Ustd::numeric_limits::has_denorm_losshttp://en.cppreference.com/w/cpp/types/numeric_limits/has_denorm_lossb I std::shared_ptr::operator boolhttp://en.cppreference.com/w/cpp/memory/shared_ptr/operator_boolg W std::is_error_code_enumhttp://en.cppreference.com/w/cpp/io/io_errc/is_error_code_enumS OkStandard library header http://en.cppreference.com/w/cpp/header/complex` Ostd::chrono::duration_values::minhttp://en.cppreference.com/w/cpp/chrono/duration_values/min\Cstd::wstring_convert::statehttp://en.cppreference.com/w/cpp/locale/wstring_convert/stateN-std::ratio_equalhttp://en.cppreference.com/w/cpp/numeric/ratio/ratio_equalrastd::experimental::source_location::columnhttp://en.cppreference.com/w/cpp/experimental/source_location/columnP?ustd::filesystem::is_emptyhttp://en.cppreference.com/w/cpp/filesystem/is_emptyxestd::experimental::ostream_joiner::operator=http://en.cppreference.com/w/cpp/experimental/ostream_joiner/operator%3DS;std::is_standard_layouthttp://en.cppreference.com/w/cpp/types/is_standard_layout<ostd::erfhttp://en.cppreference.com/w/cpp/numeric/math/erfG1qexplicit specifierhttp://en.cppreference.com/w/cpp/language/explicitcGstd::unordered_multiset::swaphttp://en.cppreference.com/w/cpp/container/unordered_multiset/swapT=std::bad_exception::whathttp://en.cppreference.com/w/cpp/error/bad_exception/whatc~Qstd::experimental::source_locationhttp://en.cppreference.com/w/cpp/experimental/source_location9}mSFINAEhttp://en.cppreference.com/w/cpp/language/sfinaeL|3ystd::default_deletehttp://en.cppreference.com/w/cpp/memory/default_deleteW{?std::exception::exceptionhttp://en.cppreference.com/w/cpp/error/exception/exceptionKzEeNull-terminated byte stringshttp://en.cppreference.com/w/cpp/string/byte[y? std::priority_queue::pushhttp://en.cppreference.com/w/cpp/container/priority_queue/pushexIstd::unordered_multimap::counthttp://en.cppreference.com/w/cpp/container/unordered_multimap/countvw]!std::scoped_allocator_adaptor::constructhttp://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/construct@v/eC++ keywords: newhttp://en.cppreference.com/w/cpp/keyword/newGu3oTypedef declarationhttp://en.cppreference.com/w/cpp/language/typedefHt7mC++ keywords: defaulthttp://en.cppreference.com/w/cpp/keyword/default~sk#std::experimental::atomic_shared_ptr::operator=http://en.cppreference.com/w/cpp/experimental/atomic_shared_ptr/operator%3DFr-sstd::atomic_flaghttp://en.cppreference.com/w/cpp/atomic/atomic_flagOq/Copy constructorshttp://en.cppreference.com/w/cpp/language/copy_constructor8pgfor loophttp://en.cppreference.com/w/cpp/language/forQo-!=(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/operator_cmpKn!operator==http://en.cppreference.com/w/cpp/numeric/complex/operator_cmpHm/ustd::future_errorhttp://en.cppreference.com/w/cpp/thread/future_error8l!cstd::fwidehttp://en.cppreference.com/w/cpp/io/c/fwideVk=std::basic_string::fronthttp://en.cppreference.com/w/cpp/string/basic_string/frontOj+std::mask_arrayhttp://en.cppreference.com/w/cpp/numeric/valarray/mask_arraydiSstd::experimental::barrier::barrierhttp://en.cppreference.com/w/cpp/experimental/barrier/barrier )m›%¾{$ Ù ƒ D á w ¸ l  § 2 ½ HÓ^åpû…°CægÈaÍt0ÏBÕme=Istd::unordered_multiset::beginhttp://en.cppreference.com/w/cpp/container/unordered_multiset/beginj<Qstd::shared_mutex::try_lock_sharedhttp://en.cppreference.com/w/cpp/thread/shared_mutex/try_lock_sharedH;/ustd::bad_weak_ptrhttp://en.cppreference.com/w/cpp/memory/bad_weak_ptr?:#ostd::uniquehttp://en.cppreference.com/w/cpp/algorithm/unique^9Istd::pmr::set_default_resourcehttp://en.cppreference.com/w/cpp/memory/set_default_resourceA8)mstd::exceptionhttp://en.cppreference.com/w/cpp/error/exceptionV75 std::ratio_not_equalhttp://en.cppreference.com/w/cpp/numeric/ratio/ratio_not_equalD6+qstd::pair::pairhttp://en.cppreference.com/w/cpp/utility/pair/pairJ59oC++ keywords: templatehttp://en.cppreference.com/w/cpp/keyword/templated4Kstd::allocator_traits::max_sizehttp://en.cppreference.com/w/cpp/memory/allocator_traits/max_sizeS3Eustd::list:: std::list::crendhttp://en.cppreference.com/w/cpp/container/list/rendF2+ustd::list::rendhttp://en.cppreference.com/w/cpp/container/list/rend|1W3std::shuffle_order_engine::operator()http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/operator%28%29Z0Astd::thread::native_handlehttp://en.cppreference.com/w/cpp/thread/thread/native_handlej/Y std::filesystem::directory_entry::pathhttp://en.cppreference.com/w/cpp/filesystem/directory_entry/path\.Gstd::hash (std::vector)http://en.cppreference.com/w/cpp/container/vector_bool/hashs-M+std::indirect_array::operator>>=http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator_ariths,M+std::indirect_array::operator<<=http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator_arithr+K+std::indirect_array::operator^=http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator_arithr*K+std::indirect_array::operator|=http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator_arithv)S+std::indirect_array::operator&=http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator_arithr(K+std::indirect_array::operator%=http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator_arithr'K+std::indirect_array::operator/=http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator_arithr&K+std::indirect_array::operator*=http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator_arithr%K+std::indirect_array::operator-=http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator_arithr$K+std::indirect_array::operator+=http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator_arithj#cstd::forward_list:: std::forward_list::cendhttp://en.cppreference.com/w/cpp/container/forward_list/endU"9std::forward_list::endhttp://en.cppreference.com/w/cpp/container/forward_list/endI!5qstd::basic_ios::inithttp://en.cppreference.com/w/cpp/io/basic_ios/initR AwC++ concepts: TrivialClockhttp://en.cppreference.com/w/cpp/concept/TrivialClockgAstd:: std::assoc_legendrelhttp://en.cppreference.com/w/cpp/experimental/special_math/assoc_legendregAstd:: std::assoc_legendrefhttp://en.cppreference.com/w/cpp/experimental/special_math/assoc_legendre`3std::assoc_legendrehttp://en.cppreference.com/w/cpp/experimental/special_math/assoc_legendre<ostd::fmahttp://en.cppreference.com/w/cpp/numeric/math/fmaSCwstd::chrono::duration::zerohttp://en.cppreference.com/w/cpp/chrono/duration/zeroH3qDeclaring functionshttp://en.cppreference.com/w/cpp/language/functionT9std::collate::~collatehttp://en.cppreference.com/w/cpp/locale/collate/%7Ecollate@%ostd::advancehttp://en.cppreference.com/w/cpp/iterator/advancedCTemplate argument deductionhttp://en.cppreference.com/w/cpp/language/template_argument_deductionsC5>>(std::gamma_distribution)http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/operator_ltltgtgtb!5operator<=(std::experimental::observer_ptr)http://en.cppreference.com/w/cpp/experimental/observer_ptr/operator_cmpLX>http://en.cppreference.com/w/cpp/experimental/observer_ptr/operator_cmpMW<=http://en.cppreference.com/w/cpp/experimental/observer_ptr/operator_cmpLVstd::unordered_multiset:: std::unordered_multiset::cbeginhttp://en.cppreference.com/w/cpp/container/unordered_multiset/begin *Z”N ð ’ 4 Ö ‹ 2 à k  Ê r · \ ¾‚$¯G ²oþ±b°\éˆ,Œ"ÚMÕE‘)ustd::push_heaphttp://en.cppreference.com/w/cpp/algorithm/push_heapu‘Y#std::unordered_multimap::hash_functionhttp://en.cppreference.com/w/cpp/container/unordered_multimap/hash_function?‘#ostd::searchhttp://en.cppreference.com/w/cpp/algorithm/searchH‘ /ustd::bitset::testhttp://en.cppreference.com/w/cpp/utility/bitset/testE‘ -qstd::max_align_thttp://en.cppreference.com/w/cpp/types/max_align_tg‘ S std::pmr::memory_resource::allocatehttp://en.cppreference.com/w/cpp/memory/memory_resource/allocate‘ 9std::experimental::pmr::unsynchronized_pool_resource::do_allocatehttp://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/do_allocateY‘ =std::deque::emplace_backhttp://en.cppreference.com/w/cpp/container/deque/emplace_back^‘E std::basic_string_view::datahttp://en.cppreference.com/w/cpp/string/basic_string_view/datap‘O#std::discrete_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/paramQ‘MiStandard library header http://en.cppreference.com/w/cpp/header/cfloat.‘Sstd::pmr::polymorphic_allocator::select_on_container_copy_constructionhttp://en.cppreference.com/w/cpp/memory/polymorphic_allocator/select_on_container_copy_constructionL‘7uconst_cast conversionhttp://en.cppreference.com/w/cpp/language/const_castJ‘/ystd::stack::emptyhttp://en.cppreference.com/w/cpp/container/stack/emptyn‘]std::experimental::propagate_const::swaphttp://en.cppreference.com/w/cpp/experimental/propagate_const/swap@‘!sstd::floorhttp://en.cppreference.com/w/cpp/numeric/math/floorT‘Mostd::regex_constants::error_typehttp://en.cppreference.com/w/cpp/regex/error_type;kstd::sorthttp://en.cppreference.com/w/cpp/algorithm/sorte~Istd::unordered_multimap::clearhttp://en.cppreference.com/w/cpp/container/unordered_multimap/clearr}O'!=(std::scoped_allocator_adaptor)http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/operator_cmp[|!'operator==http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/operator_cmp9{istd::minhttp://en.cppreference.com/w/cpp/algorithm/minZzAstd::hash::operator()http://en.cppreference.com/w/cpp/utility/hash/operator%28%29>y%kstd::num_puthttp://en.cppreference.com/w/cpp/locale/num_putXxAstd::basic_ios::~basic_ioshttp://en.cppreference.com/w/cpp/io/basic_ios/%7Ebasic_iosQw9}std::char_traits::findhttp://en.cppreference.com/w/cpp/string/char_traits/finddv?!=(std::istream_iterator)http://en.cppreference.com/w/cpp/iterator/istream_iterator/operator_cmpUu!operator==http://en.cppreference.com/w/cpp/iterator/istream_iterator/operator_cmpAt#sstd::memchrhttp://en.cppreference.com/w/cpp/string/byte/memchrZsAstd::unique_lock::try_lockhttp://en.cppreference.com/w/cpp/thread/unique_lock/try_lockUr;std::condition_variablehttp://en.cppreference.com/w/cpp/thread/condition_variablelqYstd::experimental::function::operator=http://en.cppreference.com/w/cpp/experimental/function/operator%3DVpIwstd::deque:: std::deque::crendhttp://en.cppreference.com/w/cpp/container/deque/rendHo-wstd::deque::rendhttp://en.cppreference.com/w/cpp/container/deque/rend[n= std::complex::operator/=http://en.cppreference.com/w/cpp/numeric/complex/operator_arith[m= std::complex::operator*=http://en.cppreference.com/w/cpp/numeric/complex/operator_arith[l= std::complex::operator-=http://en.cppreference.com/w/cpp/numeric/complex/operator_arith[k= std::complex::operator+=http://en.cppreference.com/w/cpp/numeric/complex/operator_arithCj+ostd::is_base_ofhttp://en.cppreference.com/w/cpp/types/is_base_ofkiqystd::filesystem::path:: std::filesystem::path::endhttp://en.cppreference.com/w/cpp/filesystem/path/beginUhEystd::filesystem::path::beginhttp://en.cppreference.com/w/cpp/filesystem/path/begin"gOstd::experimental::filesystem::path:: std::experimental::filesystem::path::operator string_type()http://en.cppreference.com/w/cpp/experimental/fs/path/native (•=ÒˆF ß „  ¼ " È [ Ô Š = ˆ 1ÈpË:ñ•:Þ‚DÆWímþ­_ª^û[‘8? std::deque::shrink_to_fithttp://en.cppreference.com/w/cpp/container/deque/shrink_to_fit`‘7I std::tuple_elementhttp://en.cppreference.com/w/cpp/container/array/tuple_elementI‘6)}std::tuple_cathttp://en.cppreference.com/w/cpp/utility/tuple/tuple_catf‘5U std::chrono::system_clock::to_time_thttp://en.cppreference.com/w/cpp/chrono/system_clock/to_time_tI‘4)}abstract classhttp://en.cppreference.com/w/cpp/language/abstract_classK‘3?kstd::isalpha(std::locale)http://en.cppreference.com/w/cpp/locale/isalphaN‘25{std::time_get_bynamehttp://en.cppreference.com/w/cpp/locale/time_get_bynamel‘1Kstd::shuffle_order_engine::basehttp://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/base}‘0M?>>(std::independent_bits_engine)http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/operator_ltltgtgtg‘/!?operator<=http://en.cppreference.com/w/cpp/utility/rel_ops/operator_cmpY‘*=std::rel_ops::operator<=http://en.cppreference.com/w/cpp/utility/rel_ops/operator_cmpX‘);std::rel_ops::operator>http://en.cppreference.com/w/cpp/utility/rel_ops/operator_cmpY‘(=std::rel_ops::operator!=http://en.cppreference.com/w/cpp/utility/rel_ops/operator_cmpF‘'+ustd::list::swaphttp://en.cppreference.com/w/cpp/container/list/swap ‘&-std::experimental::swap(std::experimental::packaged_task)http://en.cppreference.com/w/cpp/experimental/lib_extensions/packaged_task/swap2J‘%-{std::list::~listhttp://en.cppreference.com/w/cpp/container/list/%7ElistU‘$;std::uninitialized_copyhttp://en.cppreference.com/w/cpp/memory/uninitialized_copyU‘#A}std::basic_stringbuf::swaphttp://en.cppreference.com/w/cpp/io/basic_stringbuf/swapf‘"Mstd::basic_string::find_first_ofhttp://en.cppreference.com/w/cpp/string/basic_string/find_first_ofT‘!9std::future::operator=http://en.cppreference.com/w/cpp/thread/future/operator%3D1‘ cstd::piecewise_linear_distribution::piecewise_linear_distributionhttp://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/piecewise_linear_distributionJ‘1wstd::packaged_taskhttp://en.cppreference.com/w/cpp/thread/packaged_taskG‘/sstd::thread::swaphttp://en.cppreference.com/w/cpp/thread/thread/swap‘SE>>(std::subtract_with_carry_engine)http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/operator_ltltgtgtj‘!Eoperator<http://en.cppreference.com/w/cpp/memory/auto_ptr/operator%2AX‘=std::auto_ptr::operator*http://en.cppreference.com/w/cpp/memory/auto_ptr/operator%2Ad‘O std::basic_filebuf::basic_filebufhttp://en.cppreference.com/w/cpp/io/basic_filebuf/basic_filebuf?‘%mstd::declvalhttp://en.cppreference.com/w/cpp/utility/declvalG‘/sstd::thread::joinhttp://en.cppreference.com/w/cpp/thread/thread/joinh‘W std::experimental::optional::value_orhttp://en.cppreference.com/w/cpp/experimental/optional/value_orU‘5Comparison operatorshttp://en.cppreference.com/w/cpp/language/operator_comparisonh‘[std::experimental::pmr::memory_resourcehttp://en.cppreference.com/w/cpp/experimental/memory_resource *®’´X r  Ì h  ® o  Ù o * · h µ8Ô~¥ Ê{%Þ—Iï}!Ói¹[í®<‘bostd::powhttp://en.cppreference.com/w/cpp/numeric/math/powk‘aOstd::unordered_set::get_allocatorhttp://en.cppreference.com/w/cpp/container/unordered_set/get_allocator[‘`Qystd:: std::is_nothrow_destructiblehttp://en.cppreference.com/w/cpp/types/is_destructible]‘_Uystd:: std::is_trivially_destructiblehttp://en.cppreference.com/w/cpp/types/is_destructibleM‘^5ystd::is_destructiblehttp://en.cppreference.com/w/cpp/types/is_destructibleg‘]Kstd::unordered_multimap::inserthttp://en.cppreference.com/w/cpp/container/unordered_multimap/insertK‘\3wstd::exception_listhttp://en.cppreference.com/w/cpp/error/exception_listY‘[=std::list::emplace_fronthttp://en.cppreference.com/w/cpp/container/list/emplace_fronto‘Zsstd::basic_streambuf:: std::basic_streambuf::xsputnhttp://en.cppreference.com/w/cpp/io/basic_streambuf/sputnW‘YCstd::basic_streambuf::sputnhttp://en.cppreference.com/w/cpp/io/basic_streambuf/sputnK‘X%std::bit_nothttp://en.cppreference.com/w/cpp/utility/functional/bit_notD‘W+qstd::moneypuncthttp://en.cppreference.com/w/cpp/locale/moneypunctD‘V}std::bindhttp://en.cppreference.com/w/cpp/utility/functional/bindS‘U5std::vector::~vectorhttp://en.cppreference.com/w/cpp/container/vector/%7EvectorL‘T1{std::back_inserterhttp://en.cppreference.com/w/cpp/iterator/back_inserter<‘S%gstd::ungetwchttp://en.cppreference.com/w/cpp/io/c/ungetwc‘R 5std::experimental::pmr::synchronized_pool_resource::do_allocatehttp://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/do_allocatew‘Qw std::shared_ptr::operator std::shared_ptr::operator->http://en.cppreference.com/w/cpp/memory/shared_ptr/operator%2A\‘PA std::shared_ptr::operator*http://en.cppreference.com/w/cpp/memory/shared_ptr/operator%2AS‘O?{std::basic_fstream::rdbufhttp://en.cppreference.com/w/cpp/io/basic_fstream/rdbufa‘NOstd::filesystem::create_hard_linkhttp://en.cppreference.com/w/cpp/filesystem/create_hard_linkz‘M{ std::basic_string_view:: std::basic_string_view::cbeginhttp://en.cppreference.com/w/cpp/string/basic_string_view/begin`‘LG std::basic_string_view::beginhttp://en.cppreference.com/w/cpp/string/basic_string_view/beginM‘K9ustd::basic_ios::narrowhttp://en.cppreference.com/w/cpp/io/basic_ios/narrowL‘J1{std::map::max_sizehttp://en.cppreference.com/w/cpp/container/map/max_sizep‘IUstd::raw_storage_iterator::operator=http://en.cppreference.com/w/cpp/memory/raw_storage_iterator/operator%3DB‘H'qstd::set::sethttp://en.cppreference.com/w/cpp/container/set/setg‘GEstd::independent_bits_enginehttp://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine@‘F'mstd::time_gethttp://en.cppreference.com/w/cpp/locale/time_getP‘E5std::pair::operator=http://en.cppreference.com/w/cpp/utility/pair/operator%3D<‘D%gstd::getcharhttp://en.cppreference.com/w/cpp/io/c/getchar`‘C_uattribute specifier sequence(since C++11)http://en.cppreference.com/w/cpp/language/attributesT‘B1 std::at_quick_exithttp://en.cppreference.com/w/cpp/utility/program/at_quick_exita‘A[{std::collate:: std::collate::do_comparehttp://en.cppreference.com/w/cpp/locale/collate/compareO‘@7{std::collate::comparehttp://en.cppreference.com/w/cpp/locale/collate/compareQ‘?=ystd::asinh(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/asinh ‘>s7std::condition_variable_any::condition_variable_anyhttp://en.cppreference.com/w/cpp/thread/condition_variable_any/condition_variable_anyS‘=?{std::basic_istream::seekghttp://en.cppreference.com/w/cpp/io/basic_istream/seekgY‘<=std::unordered_set::swaphttp://en.cppreference.com/w/cpp/container/unordered_set/swapg‘;Ostd::numeric_limits::max_exponenthttp://en.cppreference.com/w/cpp/types/numeric_limits/max_exponentq‘:Ustd::unordered_multimap::bucket_sizehttp://en.cppreference.com/w/cpp/container/unordered_multimap/bucket_sizek‘9Ostd::unordered_multiset::max_sizehttp://en.cppreference.com/w/cpp/container/unordered_multiset/max_size ,‚”R³s, å _ Þ › 5 Æ } # ³ Z  ® ?ð¥Oé“MÝGÞu ‹9ù™M÷Œ'èŽ9ò‚m’[std::experimental::boyer_moore_searcherhttp://en.cppreference.com/w/cpp/experimental/boyer_moore_searcherD’ 3iC++ keywords: or_eqhttp://en.cppreference.com/w/cpp/keyword/or_eqR’ ;}std::bad_cast::bad_casthttp://en.cppreference.com/w/cpp/types/bad_cast/bad_castW’ Cstd::istrstream::istrstreamhttp://en.cppreference.com/w/cpp/io/istrstream/istrstream<’ %gstd::putcharhttp://en.cppreference.com/w/cpp/io/c/putcharb’ I std::char_traits::to_char_typehttp://en.cppreference.com/w/cpp/string/char_traits/to_char_typeh’Kstd::insert_iterator::operator=http://en.cppreference.com/w/cpp/iterator/insert_iterator/operator%3DS’?{std::basic_ios::basic_ioshttp://en.cppreference.com/w/cpp/io/basic_ios/basic_iosI’-ystd::swap_rangeshttp://en.cppreference.com/w/cpp/algorithm/swap_ranges]’A std::multiset::lower_boundhttp://en.cppreference.com/w/cpp/container/multiset/lower_bound=’#kstd::bitsethttp://en.cppreference.com/w/cpp/utility/bitsetO’7{std::invalid_argumenthttp://en.cppreference.com/w/cpp/error/invalid_argument’ std::experimental:: std::experimental::make_default_searcherhttp://en.cppreference.com/w/cpp/experimental/default_searchere’S std::experimental::default_searcherhttp://en.cppreference.com/w/cpp/experimental/default_searcherf’Mstd::shared_mutex::native_handlehttp://en.cppreference.com/w/cpp/thread/shared_mutex/native_handlef‘U std::filesystem::path::relative_pathhttp://en.cppreference.com/w/cpp/filesystem/path/relative_path‘~%std::filesystem::filesystem_error:: std::filesystem::filesystem_error::path2http://en.cppreference.com/w/cpp/filesystem/filesystem_error/pathm‘}]std::filesystem::filesystem_error::path1http://en.cppreference.com/w/cpp/filesystem/filesystem_error/pathC‘|%ustd::wctranshttp://en.cppreference.com/w/cpp/string/wide/wctransS‘{7std::map::equal_rangehttp://en.cppreference.com/w/cpp/container/map/equal_rangec‘zGstd::unordered_multiset::sizehttp://en.cppreference.com/w/cpp/container/unordered_multiset/sizeS‘y;std::promise::set_valuehttp://en.cppreference.com/w/cpp/thread/promise/set_valueH‘x-wstd::list::clearhttp://en.cppreference.com/w/cpp/container/list/clearL‘w1{std::list::emplacehttp://en.cppreference.com/w/cpp/container/list/emplacel‘vQstd::packaged_task::~packaged_taskhttp://en.cppreference.com/w/cpp/thread/packaged_task/%7Epackaged_taskV‘uKustd:: std::add_rvalue_referencehttp://en.cppreference.com/w/cpp/types/add_referenceP‘t?ustd::add_lvalue_referencehttp://en.cppreference.com/w/cpp/types/add_referenceV‘s1 std::bit_andhttp://en.cppreference.com/w/cpp/utility/functional/bit_and_voidm‘rgstd::unordered_map:: std::unordered_map::cendhttp://en.cppreference.com/w/cpp/container/unordered_map/endW‘q;std::unordered_map::endhttp://en.cppreference.com/w/cpp/container/unordered_map/endF‘p)wstd::bad_allochttp://en.cppreference.com/w/cpp/memory/new/bad_allocl‘o[std::regex_iterator::operatoroperator->http://en.cppreference.com/w/cpp/regex/regex_iterator/operator%2Ac‘nIstd::regex_iterator::operator*http://en.cppreference.com/w/cpp/regex/regex_iterator/operator%2A@‘m+istd::istrstreamhttp://en.cppreference.com/w/cpp/io/istrstream~‘l]1std::linear_congruential_engine::discardhttp://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/discard;‘kkstd::movehttp://en.cppreference.com/w/cpp/algorithm/moveE‘j5istd:: std::vsnprintfhttp://en.cppreference.com/w/cpp/io/c/vfprintfD‘i3istd:: std::vsprintfhttp://en.cppreference.com/w/cpp/io/c/vfprintfD‘h3istd:: std::vfprintfhttp://en.cppreference.com/w/cpp/io/c/vfprintf=‘g%istd::vprintfhttp://en.cppreference.com/w/cpp/io/c/vfprintfN‘f1std::queue::~queuehttp://en.cppreference.com/w/cpp/container/queue/%7EqueueK‘e1ystd::ctype::~ctypehttp://en.cppreference.com/w/cpp/locale/ctype/%7Ectype?‘d#ostd::rotatehttp://en.cppreference.com/w/cpp/algorithm/rotatei‘cQstd::numeric_limits::signaling_NaNhttp://en.cppreference.com/w/cpp/types/numeric_limits/signaling_NaN -„u»e   O  } ' Ý : à ‰ N  ¿ ] µl÷¥b³m,ãBÑoêˆ-ʆ<ñfÇ„@’;!=http://en.cppreference.com/w/cpp/utility/pair/operator_cmpH’:!operator==http://en.cppreference.com/w/cpp/utility/pair/operator_cmpQ’9MiStandard library header http://en.cppreference.com/w/cpp/header/random’8{%std::experimental::pmr::polymorphic_allocator::allocatehttp://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/allocateH’71sstd:: std::wcstoldhttp://en.cppreference.com/w/cpp/string/wide/wcstofG’6/sstd:: std::wcstodhttp://en.cppreference.com/w/cpp/string/wide/wcstofA’5#sstd::wcstofhttp://en.cppreference.com/w/cpp/string/wide/wcstof`’4E std::vector::referencehttp://en.cppreference.com/w/cpp/container/vector_bool/referenceX’3;std::unordered_multisethttp://en.cppreference.com/w/cpp/container/unordered_multiset_’2Mstd::experimental::shared_futurehttp://en.cppreference.com/w/cpp/experimental/shared_future’1m'std::pmr::monotonic_buffer_resource::do_is_equalhttp://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/do_is_equal_’0G std::numeric_limits::is_exacthttp://en.cppreference.com/w/cpp/types/numeric_limits/is_exactn’/M!std::geometric_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/max<’.-_Iterator libraryhttp://en.cppreference.com/w/cpp/iterator_’-;std::is_error_code_enumhttp://en.cppreference.com/w/cpp/error/error_code/is_error_code_enumF’,5kC++ keywords: bitandhttp://en.cppreference.com/w/cpp/keyword/bitand>’+%kstd::promisehttp://en.cppreference.com/w/cpp/thread/promiseC’*%ustd::wcsncmphttp://en.cppreference.com/w/cpp/string/wide/wcsncmpa’)I std::basic_istream::operator>>http://en.cppreference.com/w/cpp/io/basic_istream/operator_gtgtH’(5ostd:: std::noshowposhttp://en.cppreference.com/w/cpp/io/manip/showpos@’'%ostd::showposhttp://en.cppreference.com/w/cpp/io/manip/showposO’&3std::is_partitionedhttp://en.cppreference.com/w/cpp/algorithm/is_partitionedr’%Q%std::chi_squared_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/maxF’$#}std::wctombhttp://en.cppreference.com/w/cpp/string/multibyte/wctombS’#OkStandard library header http://en.cppreference.com/w/cpp/header/ostreamO’";wstd::abs(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/abs_’!C std::multiset::emplace_hinthttp://en.cppreference.com/w/cpp/container/multiset/emplace_hintL’ 5wstd::ctype::ishttp://en.cppreference.com/w/cpp/locale/ctype_char/is=’+cstd:: std::putchttp://en.cppreference.com/w/cpp/io/c/fputc8’!cstd::fputchttp://en.cppreference.com/w/cpp/io/c/fputcT’7std::transform_reducehttp://en.cppreference.com/w/cpp/algorithm/transform_reduceW’;std::make_move_iteratorhttp://en.cppreference.com/w/cpp/iterator/make_move_iteratorR’Awstd::experimental::barrierhttp://en.cppreference.com/w/cpp/experimental/barrierK’7sstd::ctype:: do_widenhttp://en.cppreference.com/w/cpp/locale/ctype/widenG’/sstd::ctype::widenhttp://en.cppreference.com/w/cpp/locale/ctype/widenS’/ std::gslice_arrayhttp://en.cppreference.com/w/cpp/numeric/valarray/gslice_array’s!std::experimental::swap(std::experimental::promise)http://en.cppreference.com/w/cpp/experimental/lib_extensions/promise/swap2J’/ystd::vectorhttp://en.cppreference.com/w/cpp/container/vector_boolN’3}std::multiset::findhttp://en.cppreference.com/w/cpp/container/multiset/findf’Mstd::shared_lock::try_lock_untilhttp://en.cppreference.com/w/cpp/thread/shared_lock/try_lock_untilY’Astd::exception_list::beginhttp://en.cppreference.com/w/cpp/error/exception_list/beginS’?{std::basic_ostream::writehttp://en.cppreference.com/w/cpp/io/basic_ostream/write_’Mstd::filesystem::directory_entryhttp://en.cppreference.com/w/cpp/filesystem/directory_entryU’1 std::make_optionalhttp://en.cppreference.com/w/cpp/utility/optional/make_optional’ std::experimental:: std::experimental::make_boyer_moore_searcherhttp://en.cppreference.com/w/cpp/experimental/boyer_moore_searcher /о{9ë X Í x * ó µ < â  ´ Y ì ¤ %á‹J³Rû¡0êy3Øy5ø¢Eã{Îm ߊR’j;}std::match_results::endhttp://en.cppreference.com/w/cpp/regex/match_results/end>’i)gnew expressionhttp://en.cppreference.com/w/cpp/language/newJ’h-{std::new_handlerhttp://en.cppreference.com/w/cpp/memory/new/new_handler^’gMstd::filesystem::path::root_pathhttp://en.cppreference.com/w/cpp/filesystem/path/root_pathD’fCYRegular expressions libraryhttp://en.cppreference.com/w/cpp/regexc’eQC++ concepts: RandomAccessIteratorhttp://en.cppreference.com/w/cpp/concept/RandomAccessIteratore’deystd::filesystem::swap(std::filesystem::path)http://en.cppreference.com/w/cpp/filesystem/path/swap2_’cMstd::filesystem::hard_link_counthttp://en.cppreference.com/w/cpp/filesystem/hard_link_countZ’bIstd::experimental::conjunctionhttp://en.cppreference.com/w/cpp/experimental/conjunctionS’aKoalignas specifier (since C++11)http://en.cppreference.com/w/cpp/language/alignas:’`#estd::fputwshttp://en.cppreference.com/w/cpp/io/c/fputwsA’_#sstd::strcathttp://en.cppreference.com/w/cpp/string/byte/strcat\’^Cstd::promise::set_exceptionhttp://en.cppreference.com/w/cpp/thread/promise/set_exceptionX’]=std::auto_ptr::~auto_ptrhttp://en.cppreference.com/w/cpp/memory/auto_ptr/%7Eauto_ptrC’\%ustd::wcsncathttp://en.cppreference.com/w/cpp/string/wide/wcsncatn’[M!std::chi_squared_distribution::nhttp://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/nC’Z%ustd::wmemcpyhttp://en.cppreference.com/w/cpp/string/wide/wmemcpyn’YUstd::basic_string::find_first_not_ofhttp://en.cppreference.com/w/cpp/string/basic_string/find_first_not_ofW’X=std::atomic_thread_fencehttp://en.cppreference.com/w/cpp/atomic/atomic_thread_fenceT’W9std::promise::~promisehttp://en.cppreference.com/w/cpp/thread/promise/%7Epromise^’VIstd::basic_stringstream::rdbufhttp://en.cppreference.com/w/cpp/io/basic_stringstream/rdbufO’U;wstd::basic_ios::rdstatehttp://en.cppreference.com/w/cpp/io/basic_ios/rdstateB’T!wstd::srandhttp://en.cppreference.com/w/cpp/numeric/random/srand>’S%kstd::num_gethttp://en.cppreference.com/w/cpp/locale/num_getS’REualias template (since C++11)http://en.cppreference.com/w/cpp/language/type_aliasA’Q!uType aliashttp://en.cppreference.com/w/cpp/language/type_alias|’Pc'std::condition_variable::condition_variablehttp://en.cppreference.com/w/cpp/thread/condition_variable/condition_variableE’O1mfriend declarationhttp://en.cppreference.com/w/cpp/language/friendj’NE!!=(std::istreambuf_iterator)http://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/operator_cmpX’M!!operator==http://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/operator_cmpd’LKstd:: std::const_mem_fun1_ref_thttp://en.cppreference.com/w/cpp/utility/functional/mem_fun_ref_tc’KIstd:: std::const_mem_fun_ref_thttp://en.cppreference.com/w/cpp/utility/functional/mem_fun_ref_t^’J?std:: std::mem_fun1_ref_thttp://en.cppreference.com/w/cpp/utility/functional/mem_fun_ref_tW’I1std::mem_fun_ref_thttp://en.cppreference.com/w/cpp/utility/functional/mem_fun_ref_tv’Hcstd::filesystem::directory_entry::operator=http://en.cppreference.com/w/cpp/filesystem/directory_entry/operator%3D;’G-]std:: std::wcloghttp://en.cppreference.com/w/cpp/io/clog4’F]std::cloghttp://en.cppreference.com/w/cpp/io/clogK’E3wstd::future::futurehttp://en.cppreference.com/w/cpp/thread/future/futureR’D?ystd:: std::remove_copy_ifhttp://en.cppreference.com/w/cpp/algorithm/remove_copyI’C-ystd::remove_copyhttp://en.cppreference.com/w/cpp/algorithm/remove_copy<’B#istd::localehttp://en.cppreference.com/w/cpp/locale/localeE’A'wstd::iswlowerhttp://en.cppreference.com/w/cpp/string/wide/iswlowerH’@/ustd::tuple::tuplehttp://en.cppreference.com/w/cpp/utility/tuple/tupleK’?'>=(std::pair)http://en.cppreference.com/w/cpp/utility/pair/operator_cmp?’>>http://en.cppreference.com/w/cpp/utility/pair/operator_cmp@’=<=http://en.cppreference.com/w/cpp/utility/pair/operator_cmp?’<::ctypehttp://en.cppreference.com/w/cpp/locale/ctype_char/ctypeV“3 >=(std::unique_ptr)http://en.cppreference.com/w/cpp/memory/unique_ptr/operator_cmpD“ >http://en.cppreference.com/w/cpp/memory/unique_ptr/operator_cmpE“ <=http://en.cppreference.com/w/cpp/memory/unique_ptr/operator_cmpD“  http://en.cppreference.com/w/cpp/header/cwctypen“Ustd::shared_timed_mutex::lock_sharedhttp://en.cppreference.com/w/cpp/thread/shared_timed_mutex/lock_shared “YK>>(std::piecewise_linear_distribution)http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/operator_ltltgtgtm“!Koperator<http://en.cppreference.com/w/cpp/utility/functional/bit_xor_voidT’u7std::prev_permutationhttp://en.cppreference.com/w/cpp/algorithm/prev_permutation ’t9std::experimental::filesystem::directory_iterator::directory_iteratorhttp://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/directory_iterator’s_3std::piecewise_linear_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/paramD’r+qstd::any::clearhttp://en.cppreference.com/w/cpp/utility/any/clear’qiEstd::piecewise_linear_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/operator%28%29f’pMstd::unique_lock::try_lock_untilhttp://en.cppreference.com/w/cpp/thread/unique_lock/try_lock_untilL’o3ystd::collate_bynamehttp://en.cppreference.com/w/cpp/locale/collate_bynameR’n- std::make_uniquehttp://en.cppreference.com/w/cpp/memory/unique_ptr/make_uniqueS’m?{std::basic_filebuf::imbuehttp://en.cppreference.com/w/cpp/io/basic_filebuf/imbueW’l;std::forward_list::swaphttp://en.cppreference.com/w/cpp/container/forward_list/swaph’kg}std::match_results:: std::match_results::cendhttp://en.cppreference.com/w/cpp/regex/match_results/end (§ MãšS µ S ô ‘ 1 Î h  ¼ u ' ¼ Iúj¹p'ÐfÞBë/¾Kçnfù§O“;;wstd::conj(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/conjj“:Istd::geometric_distribution::phttp://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/p“97std::experimental::filesystem::path:: std::experimental::filesystem::path::operator+=http://en.cppreference.com/w/cpp/experimental/fs/path/concatk“8cstd::experimental::filesystem::path::concathttp://en.cppreference.com/w/cpp/experimental/fs/path/concatv“7K3!=(std::student_t_distribution)http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/operator_cmpa“6!3operator==http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/operator_cmpp“5cstd::experimental::promise (concurrency TS)http://en.cppreference.com/w/cpp/experimental/concurrency/promisen“4Ostd::ostream_iterator::operator++http://en.cppreference.com/w/cpp/iterator/ostream_iterator/operator_arith[“35std:: std::legendrelhttp://en.cppreference.com/w/cpp/experimental/special_math/legendre[“25std:: std::legendrefhttp://en.cppreference.com/w/cpp/experimental/special_math/legendreT“1'std::legendrehttp://en.cppreference.com/w/cpp/experimental/special_math/legendreK“03wstd::is_fundamentalhttp://en.cppreference.com/w/cpp/types/is_fundamentalK“/'std::in_placehttp://en.cppreference.com/w/cpp/utility/optional/in_place“.s'std::experimental::source_location::source_locationhttp://en.cppreference.com/w/cpp/experimental/source_location/source_locationg“-Ostd::numeric_limits::has_infinityhttp://en.cppreference.com/w/cpp/types/numeric_limits/has_infinityT“,/ std::negatehttp://en.cppreference.com/w/cpp/utility/functional/negate_voidF“++ustd::map::emptyhttp://en.cppreference.com/w/cpp/container/map/emptyF“*)wstd::set::~sethttp://en.cppreference.com/w/cpp/container/set/%7Eset]“)Q}std::vector:: std::vector::crbeginhttp://en.cppreference.com/w/cpp/container/vector/rbeginN“(3}std::vector::rbeginhttp://en.cppreference.com/w/cpp/container/vector/rbegin “'k?std::poisson_distribution::poisson_distributionhttp://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/poisson_distributionL“&;qC++ concepts: Allocatorhttp://en.cppreference.com/w/cpp/concept/Allocatorp“%_std::experimental::shared_ptr::shared_ptrhttp://en.cppreference.com/w/cpp/experimental/shared_ptr/shared_ptrh“$_std::experimental::filesystem::space_infohttp://en.cppreference.com/w/cpp/experimental/fs/space_infoK“#?kstd::isspace(std::locale)http://en.cppreference.com/w/cpp/locale/isspaceD“"+qstd::localeconvhttp://en.cppreference.com/w/cpp/locale/localeconvU“!A}std::codecvt:: do_encodinghttp://en.cppreference.com/w/cpp/locale/codecvt/encodingQ“ 9}std::codecvt::encodinghttp://en.cppreference.com/w/cpp/locale/codecvt/encodingc“QC++ concepts: AssociativeContainerhttp://en.cppreference.com/w/cpp/concept/AssociativeContainer`“Kstd::moneypunct:: do_neg_formathttp://en.cppreference.com/w/cpp/locale/moneypunct/pos_format]“Estd::moneypunct:: neg_formathttp://en.cppreference.com/w/cpp/locale/moneypunct/pos_format`“Kstd::moneypunct:: do_pos_formathttp://en.cppreference.com/w/cpp/locale/moneypunct/pos_format\“Cstd::moneypunct::pos_formathttp://en.cppreference.com/w/cpp/locale/moneypunct/pos_format_“C std::forward_list::max_sizehttp://en.cppreference.com/w/cpp/container/forward_list/max_size“ 7std::experimental::pmr::monotonic_buffer_resource::do_deallocatehttp://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource/do_deallocateD“}std::plushttp://en.cppreference.com/w/cpp/utility/functional/plusF“5kC++ keywords: switchhttp://en.cppreference.com/w/cpp/keyword/switchg“S std::pmr::memory_resource::is_equalhttp://en.cppreference.com/w/cpp/memory/memory_resource/is_equalP“+std::lesshttp://en.cppreference.com/w/cpp/utility/functional/less_void]“A std::vector::get_allocatorhttp://en.cppreference.com/w/cpp/container/vector/get_allocator .¨9î”H Á } : ì ¯ b Ý w  ¥ T Ê /ÃoÓz,Ît;é¥W¹rÉ‚$·9Ø›c ¨a“iK std::end(std::initializer_list)http://en.cppreference.com/w/cpp/utility/initializer_list/end2T“h9std::locale::operator=http://en.cppreference.com/w/cpp/locale/locale/operator%3D5“giTypehttp://en.cppreference.com/w/cpp/language/type:“fistd::freehttp://en.cppreference.com/w/cpp/memory/c/free^“eC std::unique_lock::operator=http://en.cppreference.com/w/cpp/thread/unique_lock/operator%3DK“d'std::wcstombshttp://en.cppreference.com/w/cpp/string/multibyte/wcstombsD“c)sstd::put_moneyhttp://en.cppreference.com/w/cpp/io/manip/put_moneyS“b7std::vector::pop_backhttp://en.cppreference.com/w/cpp/container/vector/pop_back[“a? std::unordered_map::erasehttp://en.cppreference.com/w/cpp/container/unordered_map/eraseD“`1kstd:: std::copy_ifhttp://en.cppreference.com/w/cpp/algorithm/copy;“_kstd::copyhttp://en.cppreference.com/w/cpp/algorithm/copyh“^Sstd::pmr::monotonic_buffer_resourcehttp://en.cppreference.com/w/cpp/memory/monotonic_buffer_resourceD“])sstd::array::athttp://en.cppreference.com/w/cpp/container/array/atS“\5std::set_new_handlerhttp://en.cppreference.com/w/cpp/memory/new/set_new_handlerE“['wstd::iswctypehttp://en.cppreference.com/w/cpp/string/wide/iswctypeK“Z?kstd::tolower(std::locale)http://en.cppreference.com/w/cpp/locale/tolowerA“Y)mstd::result_ofhttp://en.cppreference.com/w/cpp/types/result_ofO“X3std::pointer_safetyhttp://en.cppreference.com/w/cpp/memory/gc/pointer_safety6“Wastd::putshttp://en.cppreference.com/w/cpp/io/c/putsW“V;std::multimap::max_sizehttp://en.cppreference.com/w/cpp/container/multimap/max_size[“USwstd::ctype:: std::ctype::do_tolowerhttp://en.cppreference.com/w/cpp/locale/ctype/tolowerK“T3wstd::ctype::tolowerhttp://en.cppreference.com/w/cpp/locale/ctype/tolowerV“SE{std::filesystem::resize_filehttp://en.cppreference.com/w/cpp/filesystem/resize_file=“R!mstd::equalhttp://en.cppreference.com/w/cpp/algorithm/equalY“Q=std::priority_queue::pophttp://en.cppreference.com/w/cpp/container/priority_queue/popQ“PAustd::chrono::duration::maxhttp://en.cppreference.com/w/cpp/chrono/duration/maxi“OMstd::unordered_map::emplace_hinthttp://en.cppreference.com/w/cpp/container/unordered_map/emplace_hint“N)std::filesystem:: std::filesystem::end(recursive_directory_iterator)http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/begin“Mu)std::filesystem::begin(recursive_directory_iterator)http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/beginN“L3}std::multimap::swaphttp://en.cppreference.com/w/cpp/container/multimap/swapq“KUstd::unordered_multimap::equal_rangehttp://en.cppreference.com/w/cpp/container/unordered_multimap/equal_range[“JAstd::exception::~exceptionhttp://en.cppreference.com/w/cpp/error/exception/%7Eexceptionc“IQC++ concepts: DefaultConstructiblehttp://en.cppreference.com/w/cpp/concept/DefaultConstructible“Hustd::experimental::pmr::memory_resource::do_is_equalhttp://en.cppreference.com/w/cpp/experimental/memory_resource/do_is_equalJ“G1wstd::valarray::sumhttp://en.cppreference.com/w/cpp/numeric/valarray/sum:“F#estd::tmpnamhttp://en.cppreference.com/w/cpp/io/c/tmpnamK“E%>=(std::map)http://en.cppreference.com/w/cpp/container/map/operator_cmp@“D>http://en.cppreference.com/w/cpp/container/map/operator_cmpA“C<=http://en.cppreference.com/w/cpp/container/map/operator_cmp@“B-wstd::vector::endhttp://en.cppreference.com/w/cpp/container/vector/endQ“==ystd::basic_istream::swaphttp://en.cppreference.com/w/cpp/io/basic_istream/swapp“<Wstd::shared_timed_mutex::try_lock_forhttp://en.cppreference.com/w/cpp/thread/shared_timed_mutex/try_lock_for %¼¢Cû ‰  ½ T ª K j ³ ` xØ›µ ¹/â{1¯R…¼W”Cstd::basic_streambuf::sgetnhttp://en.cppreference.com/w/cpp/io/basic_streambuf/sgetnl” Kstd::binomial_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/minz” qstd::experimental::filesystem::temp_directory_pathhttp://en.cppreference.com/w/cpp/experimental/fs/temp_directory_pathM” IeStandard library header http://en.cppreference.com/w/cpp/header/listZ” 9 Converting constructorhttp://en.cppreference.com/w/cpp/language/converting_constructor” c-std::unordered_multimap::unordered_multimaphttp://en.cppreference.com/w/cpp/container/unordered_multimap/unordered_multimapG”3ostd::basic_ios::tiehttp://en.cppreference.com/w/cpp/io/basic_ios/tied”=std::function::~functionhttp://en.cppreference.com/w/cpp/utility/functional/function/%7EfunctionJ”/ystd::dynarray::athttp://en.cppreference.com/w/cpp/container/dynarray/at”a=std::uniform_real_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/operator%28%29b”I std::shared_mutex::lock_sharedhttp://en.cppreference.com/w/cpp/thread/shared_mutex/lock_sharedk”‚'?std::experimental::filesystem::recursive_directory_iterator::operator std::experimental::filesystem::recursive_directory_iterator::operator->http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/operator%2A$”?std::experimental::filesystem::recursive_directory_iterator::operator*http://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/operator%2Ad”Kstd::basic_string_view::comparehttp://en.cppreference.com/w/cpp/string/basic_string_view/compare|”ostd::experimental::packaged_task (concurrency TS)http://en.cppreference.com/w/cpp/experimental/concurrency/packaged_task:“istd::endlhttp://en.cppreference.com/w/cpp/io/manip/endl>“~'istd::getwcharhttp://en.cppreference.com/w/cpp/io/c/getwchar\“}Gstd::pmr::new_delete_resourcehttp://en.cppreference.com/w/cpp/memory/new_delete_resource“|+std::experimental::filesystem::directory_iterator::operator=http://en.cppreference.com/w/cpp/experimental/fs/directory_iterator/operator%3DQ“{+ std::logical_orhttp://en.cppreference.com/w/cpp/utility/functional/logical_orP“z;ystd::imag(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/imag2V“y=std::is_lvalue_referencehttp://en.cppreference.com/w/cpp/types/is_lvalue_reference[“x= std::multiset::~multisethttp://en.cppreference.com/w/cpp/container/multiset/%7Emultiset“w9std::experimental::pmr::synchronized_pool_resource::do_deallocatehttp://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/do_deallocate>“v#mstd::time_thttp://en.cppreference.com/w/cpp/chrono/c/time_t\“uSyUser-defined literals (since C++11)http://en.cppreference.com/w/cpp/language/user_literal_“t9std::reference_wrapperhttp://en.cppreference.com/w/cpp/utility/functional/reference_wrapperE“s-qstd::is_unsignedhttp://en.cppreference.com/w/cpp/types/is_unsignedf“rc}std::chrono::round(std::chrono::time_point)http://en.cppreference.com/w/cpp/chrono/time_point/roundN“q5{std::kill_dependencyhttp://en.cppreference.com/w/cpp/atomic/kill_dependencyx“pcstd::basic_stringstream::basic_stringstreamhttp://en.cppreference.com/w/cpp/io/basic_stringstream/basic_stringstream“o%std::experimental::optional::operator std::experimental::optional::operator*http://en.cppreference.com/w/cpp/experimental/optional/operator%2Am“n[std::experimental::optional::operator->http://en.cppreference.com/w/cpp/experimental/optional/operator%2Ah“mW std::filesystem::path::root_directoryhttp://en.cppreference.com/w/cpp/filesystem/path/root_directoryE“l-qstd::range_errorhttp://en.cppreference.com/w/cpp/error/range_error\“k;constant initializationhttp://en.cppreference.com/w/cpp/language/constant_initialization[“jAstd::initializer_list::endhttp://en.cppreference.com/w/cpp/utility/initializer_list/end -´ŽKïŸ& Ò Œ 9 ô p ( á ~ 5 ¼ `  Á `í’5ã”K¤<À(µp%ÔtÈ*ì¥[´L”;! MATH_ERRNOhttp://en.cppreference.com/w/cpp/numeric/math/math_errhandlingU”:A}std::basic_ifstream::closehttp://en.cppreference.com/w/cpp/io/basic_ifstream/closeG”9;gstd:: std::add_volatilehttp://en.cppreference.com/w/cpp/types/add_cvD”85gstd:: std::add_consthttp://en.cppreference.com/w/cpp/types/add_cv;”7#gstd::add_cvhttp://en.cppreference.com/w/cpp/types/add_cvR”6Custd::set:: std::set::cbeginhttp://en.cppreference.com/w/cpp/container/set/beginF”5+ustd::set::beginhttp://en.cppreference.com/w/cpp/container/set/beginS”4;std::basic_string::findhttp://en.cppreference.com/w/cpp/string/basic_string/findS”3OkStandard library header http://en.cppreference.com/w/cpp/header/cstdarg]”2A std::map::insert_or_assignhttp://en.cppreference.com/w/cpp/container/map/insert_or_assignN”13}std::list::max_sizehttp://en.cppreference.com/w/cpp/container/list/max_sizeH”0){std::remainderhttp://en.cppreference.com/w/cpp/numeric/math/remainderB”/#uDestructorshttp://en.cppreference.com/w/cpp/language/destructorp”.Sstd::ostreambuf_iterator::operator=http://en.cppreference.com/w/cpp/iterator/ostreambuf_iterator/operator%3DV”-5 std::seed_seq::paramhttp://en.cppreference.com/w/cpp/numeric/random/seed_seq/param<”,!kstd::flushhttp://en.cppreference.com/w/cpp/io/manip/flushy”+I;>>(std::discrete_distribution)http://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/operator_ltltgtgte”*!;operator<http://en.cppreference.com/w/cpp/header/cucharv”]!std::basic_string_view::find_last_not_ofhttp://en.cppreference.com/w/cpp/string/basic_string_view/find_last_not_ofM”9ustd::abs(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/absY”=std::unordered_set::findhttp://en.cppreference.com/w/cpp/container/unordered_set/find@”!sstd::expm1http://en.cppreference.com/w/cpp/numeric/math/expm1o”sstd::basic_streambuf:: std::basic_streambuf::xsgetnhttp://en.cppreference.com/w/cpp/io/basic_streambuf/sgetn ){­XÁf ø — A õ < ý · p  ® b )Ô€¶@ÍP™$Ëlú§CÔz,Ùq{”d[C!=(std::negative_binomial_distribution)http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/operator_cmpi”c!Coperator==http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/operator_cmpe”ba}Standard library header http://en.cppreference.com/w/cpp/header/initializer_listP”a9{std::error_code::valuehttp://en.cppreference.com/w/cpp/error/error_code/valueK”`7sstd::basic_ios::widenhttp://en.cppreference.com/w/cpp/io/basic_ios/widenW”_;Unqualified name lookuphttp://en.cppreference.com/w/cpp/language/unqualified_lookupl”^Kstd::poisson_distribution::meanhttp://en.cppreference.com/w/cpp/numeric/random/poisson_distribution/meana”]Wstd::dynarray:: std::dynarray::cbeginhttp://en.cppreference.com/w/cpp/container/dynarray/beginP”\5std::dynarray::beginhttp://en.cppreference.com/w/cpp/container/dynarray/begino”[Sstd::unordered_set::max_load_factorhttp://en.cppreference.com/w/cpp/container/unordered_set/max_load_factor\”ZEstd::istrstream::~istrstreamhttp://en.cppreference.com/w/cpp/io/istrstream/%7EistrstreamV”Y5 std::future_categoryhttp://en.cppreference.com/w/cpp/thread/future/future_categoryr”Xi std::experimental::filesystem::last_write_timehttp://en.cppreference.com/w/cpp/experimental/fs/last_write_timeg”WOstd::numeric_limits::max_digits10http://en.cppreference.com/w/cpp/types/numeric_limits/max_digits10J”V/ystd::queue::queuehttp://en.cppreference.com/w/cpp/container/queue/queuez”Ugstd::istreambuf_iterator::operator operator->http://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/operator%2Ap”TSstd::istreambuf_iterator::operator*http://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/operator%2As”Sgstd::hash(std::experimental::propagate_const)http://en.cppreference.com/w/cpp/experimental/propagate_const/hashU”RA}std::basic_streambuf::setphttp://en.cppreference.com/w/cpp/io/basic_streambuf/setpo”QQstd::unordered_set::~unordered_sethttp://en.cppreference.com/w/cpp/container/unordered_set/%7Eunordered_setQ”P9}std::auto_ptr::releasehttp://en.cppreference.com/w/cpp/memory/auto_ptr/releaseR”O1Variadic argumentshttp://en.cppreference.com/w/cpp/language/variadic_argumentsc”NK std::ctype::classic_tablehttp://en.cppreference.com/w/cpp/locale/ctype_char/classic_tablex”MS/std::gamma_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/operator%28%29U”LA}std::strstreambuf::seekoffhttp://en.cppreference.com/w/cpp/io/strstreambuf/seekoffI”K1ustd::regex_replacehttp://en.cppreference.com/w/cpp/regex/regex_replaceg”J_std::experimental::filesystem::path::stemhttp://en.cppreference.com/w/cpp/experimental/fs/path/stemU”IA}std::basic_filebuf::setbufhttp://en.cppreference.com/w/cpp/io/basic_filebuf/setbufD”H-ostd:: std::lldivhttp://en.cppreference.com/w/cpp/numeric/math/divC”G+ostd:: std::ldivhttp://en.cppreference.com/w/cpp/numeric/math/div<”Fostd::divhttp://en.cppreference.com/w/cpp/numeric/math/div5”E#Wstd::filesystem::recursive_directory_iterator::recursive_directory_iteratorhttp://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/recursive_directory_iteratorI”D5qstd::basic_ios::fillhttp://en.cppreference.com/w/cpp/io/basic_ios/fillS”C7std::vector::capacityhttp://en.cppreference.com/w/cpp/container/vector/capacity^”B9std::logical_nothttp://en.cppreference.com/w/cpp/utility/functional/logical_not_voidk”Aestd::time_get:: std::time_get::do_date_orderhttp://en.cppreference.com/w/cpp/locale/time_get/date_orderX”@?std::time_get::date_orderhttp://en.cppreference.com/w/cpp/locale/time_get/date_order>”?qstd::modfhttp://en.cppreference.com/w/cpp/numeric/math/modfS”>?{std::strstream::strstreamhttp://en.cppreference.com/w/cpp/io/strstream/strstreamR”=- math_errhandlinghttp://en.cppreference.com/w/cpp/numeric/math/math_errhandlingP”<) MATH_ERREXCEPThttp://en.cppreference.com/w/cpp/numeric/math/math_errhandling *f–J´P í v  ¼ I û ® H ý ¤ E ô t ÅmðšFÖ—KôLäq(ÅIÈ,Ç\Ôfk•cstd::experimental::filesystem::path::stringhttp://en.cppreference.com/w/cpp/experimental/fs/path/string• YA!=(std::piecewise_linear_distribution)http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/operator_cmph• !Aoperator==http://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/operator_cmpb• M std::numpunct:: do_decimal_pointhttp://en.cppreference.com/w/cpp/locale/numpunct/decimal_point^• E std::numpunct::decimal_pointhttp://en.cppreference.com/w/cpp/locale/numpunct/decimal_point8• !cstd::fgetshttp://en.cppreference.com/w/cpp/io/c/fgets~•std::filesystem::path:: std::filesystem::path::has_root_directoryhttp://en.cppreference.com/w/cpp/filesystem/path/has_pathy•std::filesystem::path:: std::filesystem::path::has_root_namehttp://en.cppreference.com/w/cpp/filesystem/path/has_path`•Ustd::filesystem::path::has_root_pathhttp://en.cppreference.com/w/cpp/filesystem/path/has_pathF•#}std::mbtowchttp://en.cppreference.com/w/cpp/string/multibyte/mbtowcp•Ustd:: std::make_boyer_moore_searcherhttp://en.cppreference.com/w/cpp/utility/functional/boyer_moore_searchere•?std::boyer_moore_searcherhttp://en.cppreference.com/w/cpp/utility/functional/boyer_moore_searcher@•/eC++ keywords: nothttp://en.cppreference.com/w/cpp/keyword/notb•_ystd::chrono::round(std::chrono::duration)http://en.cppreference.com/w/cpp/chrono/duration/roundT•=std::regex_traits::valuehttp://en.cppreference.com/w/cpp/regex/regex_traits/valueI”-ystd::min_elementhttp://en.cppreference.com/w/cpp/algorithm/min_element<”~ostd::exphttp://en.cppreference.com/w/cpp/numeric/math/expm”}Ustd::numeric_limits::tinyness_beforehttp://en.cppreference.com/w/cpp/types/numeric_limits/tinyness_beforeQ”|MiStandard library header http://en.cppreference.com/w/cpp/header/cerrnoS”{;std::basic_string::nposhttp://en.cppreference.com/w/cpp/string/basic_string/nposz”z])std::ostream_iterator::~ostream_iteratorhttp://en.cppreference.com/w/cpp/iterator/ostream_iterator/%7Eostream_iteratorU”yA}std::strstreambuf::seekposhttp://en.cppreference.com/w/cpp/io/strstreambuf/seekposV”x1 std::modulushttp://en.cppreference.com/w/cpp/utility/functional/modulus_voidS”w?{std::strstreambuf::setbufhttp://en.cppreference.com/w/cpp/io/strstreambuf/setbuf}”ve'std::error_category::default_error_conditionhttp://en.cppreference.com/w/cpp/error/error_category/default_error_conditionN”u5{std::messages_bynamehttp://en.cppreference.com/w/cpp/locale/messages_byname\”tA std::money_put::~money_puthttp://en.cppreference.com/w/cpp/locale/money_put/%7Emoney_putV”sIwstd::array:: std::array::crendhttp://en.cppreference.com/w/cpp/container/array/rendH”r-wstd::array::rendhttp://en.cppreference.com/w/cpp/container/array/rendc”qQstd::filesystem::directory_optionshttp://en.cppreference.com/w/cpp/filesystem/directory_optionsJ”p9ostd::filesystem::permshttp://en.cppreference.com/w/cpp/filesystem/permsK”o3wstd::overflow_errorhttp://en.cppreference.com/w/cpp/error/overflow_errorp”nO#std::mersenne_twister_engine::maxhttp://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/maxG”m'{Main functionhttp://en.cppreference.com/w/cpp/language/main_functionm”lestd::experimental::filesystem::path::comparehttp://en.cppreference.com/w/cpp/experimental/fs/path/comparet”ksstd::basic_streambuf:: std::basic_streambuf::setbufhttp://en.cppreference.com/w/cpp/io/basic_streambuf/pubsetbuf`”jKstd::basic_streambuf::pubsetbufhttp://en.cppreference.com/w/cpp/io/basic_streambuf/pubsetbufa”iWstd::multimap:: std::multimap::cbeginhttp://en.cppreference.com/w/cpp/container/multimap/beginP”h5std::multimap::beginhttp://en.cppreference.com/w/cpp/container/multimap/begin@”g+ifold expressionhttp://en.cppreference.com/w/cpp/language/foldI”f5qstd::istrstream::strhttp://en.cppreference.com/w/cpp/io/istrstream/strg”e_Constructors and member initializer listshttp://en.cppreference.com/w/cpp/language/initializer_list ,i‘!¶m Î € . à j ÿ   : Þ ) â y °IÏr$Â;Ãw,é˜ôšQ¿t¾y¹iM•:Eiauto specifier (since C++11)http://en.cppreference.com/w/cpp/language/autoV•9=std::char_traits::lengthhttp://en.cppreference.com/w/cpp/string/char_traits/lengthd•8Kstd::future_error::future_errorhttp://en.cppreference.com/w/cpp/thread/future_error/future_errorB•7#ustd::islesshttp://en.cppreference.com/w/cpp/numeric/math/islessU•6QmStandard library header http://en.cppreference.com/w/cpp/header/iterator[•5Astd::type_info::~type_infohttp://en.cppreference.com/w/cpp/types/type_info/%7Etype_infoH•41sstd:: std::wcstollhttp://en.cppreference.com/w/cpp/string/wide/wcstolA•3#sstd::wcstolhttp://en.cppreference.com/w/cpp/string/wide/wcstolK•23wstd::error_categoryhttp://en.cppreference.com/w/cpp/error/error_categoryF•1)wstd::map::~maphttp://en.cppreference.com/w/cpp/container/map/%7EmapW•0Cstd::swap(std::shared_lock)http://en.cppreference.com/w/cpp/thread/shared_lock/swap2 •/Sstd::uniform_real_distribution::uniform_real_distributionhttp://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/uniform_real_distributionN•.5{std::wbuffer_converthttp://en.cppreference.com/w/cpp/locale/wbuffer_convert@•-%ostd::map::athttp://en.cppreference.com/w/cpp/container/map/atH•,/ustd::shared_mutexhttp://en.cppreference.com/w/cpp/thread/shared_mutexI•+#std::mem_fnhttp://en.cppreference.com/w/cpp/utility/functional/mem_fnu•*Y#std::unordered_multiset::get_allocatorhttp://en.cppreference.com/w/cpp/container/unordered_multiset/get_allocatorD•)3iC++ keywords: falsehttp://en.cppreference.com/w/cpp/keyword/false>•(#mstd::mktimehttp://en.cppreference.com/w/cpp/chrono/c/mktime^•'Ywstd::messages:: std::messages::do_openhttp://en.cppreference.com/w/cpp/locale/messages/openK•&3wstd::messages::openhttp://en.cppreference.com/w/cpp/locale/messages/openZ•%Estd::strstreambuf::pbackfailhttp://en.cppreference.com/w/cpp/io/strstreambuf/pbackfailw•$G9>>(std::shuffle_order_engine)http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/operator_ltltgtgtd•#!9operator< Õ z k œ Í'Ã_ =Ä`ó¿iÀ‚ÄoÃU•b1 std:: std::par_vechttp://en.cppreference.com/w/cpp/algorithm/execution_policy_tagQ•a) std:: std::parhttp://en.cppreference.com/w/cpp/algorithm/execution_policy_tagR•`+ std::sequentialhttp://en.cppreference.com/w/cpp/algorithm/execution_policy_tagU•_A}std::basic_ios::exceptionshttp://en.cppreference.com/w/cpp/io/basic_ios/exceptionsc•^Gstd::unordered_multimap::findhttp://en.cppreference.com/w/cpp/container/unordered_multimap/find;•]-]Library Conceptshttp://en.cppreference.com/w/cpp/concept%•\Wstd::extreme_value_distribution::extreme_value_distributionhttp://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/extreme_value_distributionS•[?{std::basic_ifstream::openhttp://en.cppreference.com/w/cpp/io/basic_ifstream/openS•Z;std::basic_string::backhttp://en.cppreference.com/w/cpp/string/basic_string/backu•Ymstd::experimental::filesystem::path::parent_pathhttp://en.cppreference.com/w/cpp/experimental/fs/path/parent_pathc•X[std::experimental::filesystem::is_otherhttp://en.cppreference.com/w/cpp/experimental/fs/is_otherj•WIstd::weibull_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/maxa•VOAddress of an overloaded functionhttp://en.cppreference.com/w/cpp/language/overloaded_addressv•UU)std::uniform_int_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/param`•TMstd::experimental::latch::~latchhttp://en.cppreference.com/w/cpp/experimental/latch/%7Elatcha•SEstd::multimap::get_allocatorhttp://en.cppreference.com/w/cpp/container/multimap/get_allocatorX•R=std::weak_ptr::~weak_ptrhttp://en.cppreference.com/w/cpp/memory/weak_ptr/%7Eweak_ptra•QEstd::multiset::get_allocatorhttp://en.cppreference.com/w/cpp/container/multiset/get_allocatora•P?std::poisson_distributionhttp://en.cppreference.com/w/cpp/numeric/random/poisson_distributionc•OK std::system_error::system_errorhttp://en.cppreference.com/w/cpp/error/system_error/system_error=•Nqstd::tiehttp://en.cppreference.com/w/cpp/utility/tuple/tieF•M5kC++ keywords: inlinehttp://en.cppreference.com/w/cpp/keyword/inline•Li-std::scoped_allocator_adaptor::inner_allocatorhttp://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/inner_allocatorl•KUstd::basic_iostream::~basic_iostreamhttp://en.cppreference.com/w/cpp/io/basic_iostream/%7Ebasic_iostream]•JA std::unordered_map::key_eqhttp://en.cppreference.com/w/cpp/container/unordered_map/key_eq•I3std::filesystem::directory_entry:: std::filesystem::directory_entry::symlink_statushttp://en.cppreference.com/w/cpp/filesystem/directory_entry/statusn•H]std::filesystem::directory_entry::statushttp://en.cppreference.com/w/cpp/filesystem/directory_entry/statusX•G;std::locale::operator()http://en.cppreference.com/w/cpp/locale/locale/operator%28%29f•FIstd::packaged_task::operator()http://en.cppreference.com/w/cpp/thread/packaged_task/operator%28%29m•E[>=(std::experimental::filesystem::path)http://en.cppreference.com/w/cpp/experimental/fs/path/operator_cmpG•D>http://en.cppreference.com/w/cpp/experimental/fs/path/operator_cmpH•C<=http://en.cppreference.com/w/cpp/experimental/fs/path/operator_cmpG•B5std::vector::reservehttp://en.cppreference.com/w/cpp/container/vector/reserven•=Ustd::basic_string_view::find_last_ofhttp://en.cppreference.com/w/cpp/string/basic_string_view/find_last_ofA•<;[Date and time utilitieshttp://en.cppreference.com/w/cpp/chronoU•;QmStandard library header http://en.cppreference.com/w/cpp/header/valarray )Ä’ø¡= ß { 5 Ð Œ " Ñ W  à l ¹ c »Tûa ¡Tý®`Ã\7›På‰,Äe– !;operator==http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/operator_cmpZ– = std::adjacent_differencehttp://en.cppreference.com/w/cpp/algorithm/adjacent_differenceY– ?std::uninitialized_copy_nhttp://en.cppreference.com/w/cpp/memory/uninitialized_copy_nh–_std::experimental::filesystem::is_symlinkhttp://en.cppreference.com/w/cpp/experimental/fs/is_symlinkH–-wstd::deque::swaphttp://en.cppreference.com/w/cpp/container/deque/swap– 5std::experimental::pmr::synchronized_pool_resource::do_is_equalhttp://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/do_is_equalc–Istd::basic_regex::~basic_regexhttp://en.cppreference.com/w/cpp/regex/basic_regex/%7Ebasic_regexv–[#std::ostream_iterator::ostream_iteratorhttp://en.cppreference.com/w/cpp/iterator/ostream_iterator/ostream_iteratorC–+ostd::error_codehttp://en.cppreference.com/w/cpp/error/error_coded–A>=(std::basic_string_view)http://en.cppreference.com/w/cpp/string/basic_string_view/operator_cmpK–>http://en.cppreference.com/w/cpp/string/basic_string_view/operator_cmpL–<=http://en.cppreference.com/w/cpp/string/basic_string_view/operator_cmpK•>(std::exponential_distribution)http://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/operator_ltltgtgth–A!Aoperator<+>>(std::bitset)http://en.cppreference.com/w/cpp/utility/bitset/operator_ltltgtgt2P–=!operator<>=http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith2_–|Astd::valarray::operator<<=http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith2^–{?std::valarray::operator|=http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith2b–zGstd::valarray::operator&=http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith2^–y?std::valarray::operator%=http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith2^–x?std::valarray::operator/=http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith2^–w?std::valarray::operator*=http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith2^–v?std::valarray::operator-=http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith2^–u?std::valarray::operator+=http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith2O–t;wstd::money_get:: do_gethttp://en.cppreference.com/w/cpp/locale/money_get/getK–s3wstd::money_get::gethttp://en.cppreference.com/w/cpp/locale/money_get/getB–r1gC++ concepts: Hashhttp://en.cppreference.com/w/cpp/concept/HashN–q=sstd::experimental::applyhttp://en.cppreference.com/w/cpp/experimental/apply:–p#estd::fputwchttp://en.cppreference.com/w/cpp/io/c/fputwcf–oMstd::basic_string::shrink_to_fithttp://en.cppreference.com/w/cpp/string/basic_string/shrink_to_fitl–nKstd::fisher_f_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/maxf–mMstd::allocator_traits::constructhttp://en.cppreference.com/w/cpp/memory/allocator_traits/constructU–l9std::multiset::emplacehttp://en.cppreference.com/w/cpp/container/multiset/emplaceX–kKystd::array:: std::array::cbeginhttp://en.cppreference.com/w/cpp/container/array/beginJ–j/ystd::array::beginhttp://en.cppreference.com/w/cpp/container/array/begin|–i} std::experimental::swap(std::experimental::observer_ptr)http://en.cppreference.com/w/cpp/experimental/observer_ptr/swap2 –hk=std::experimental::promise::get_memory_resourcehttp://en.cppreference.com/w/cpp/experimental/lib_extensions/promise/get_memory_resourceW–gSoStandard library header http://en.cppreference.com/w/cpp/header/algorithmB–f'qstd::iteratorhttp://en.cppreference.com/w/cpp/iterator/iteratorS–e/ >=(std::optional)http://en.cppreference.com/w/cpp/utility/optional/operator_cmpC–d >http://en.cppreference.com/w/cpp/utility/optional/operator_cmpD–c <=http://en.cppreference.com/w/cpp/utility/optional/operator_cmpC–b >(std::uniform_real_distribution)http://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/operator_ltltgtgti—%!Coperator<http://en.cppreference.com/w/cpp/header/memory_—`G std::error_condition::messagehttp://en.cppreference.com/w/cpp/error/error_condition/messagej—_Ostd::move_iterator::move_iteratorhttp://en.cppreference.com/w/cpp/iterator/move_iterator/move_iterator?—^sBit fieldhttp://en.cppreference.com/w/cpp/language/bit_fieldJ—]+}Dependent nameshttp://en.cppreference.com/w/cpp/language/dependent_name —\%std::experimental::filesystem::directory_entry::operator=http://en.cppreference.com/w/cpp/experimental/fs/directory_entry/operator%3Dz—[O7!=(std::uniform_int_distribution)http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/operator_cmpc—Z!7operator==http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/operator_cmpA—Y%qstd::bsearchhttp://en.cppreference.com/w/cpp/algorithm/bsearchn—X[std::is_error_condition_enumhttp://en.cppreference.com/w/cpp/error/errc/is_error_condition_enumn—W]std::filesystem::directory_entry::assignhttp://en.cppreference.com/w/cpp/filesystem/directory_entry/assigna—VEstd::unordered_set::max_sizehttp://en.cppreference.com/w/cpp/container/unordered_set/max_sizeS—U?{std::basic_ofstream::openhttp://en.cppreference.com/w/cpp/io/basic_ofstream/open~—Tqstd::experimental::pmr::synchronized_pool_resourcehttp://en.cppreference.com/w/cpp/experimental/synchronized_pool_resourceL—S1{std::set::key_comphttp://en.cppreference.com/w/cpp/container/set/key_compF—R+ustd::vector::athttp://en.cppreference.com/w/cpp/container/vector/atL—Q3ystd::pointer_traitshttp://en.cppreference.com/w/cpp/memory/pointer_traits?—P1aContainers libraryhttp://en.cppreference.com/w/cpp/containerB—O}SIG_ERRhttp://en.cppreference.com/w/cpp/utility/program/SIG_ERR:—N!gstd::lconvhttp://en.cppreference.com/w/cpp/locale/lconvN—M3}std::multiset::swaphttp://en.cppreference.com/w/cpp/container/multiset/swap=—L!mstd::qsorthttp://en.cppreference.com/w/cpp/algorithm/qsort]—KA std::unordered_set::buckethttp://en.cppreference.com/w/cpp/container/unordered_set/bucketT—J3std::ratio_subtracthttp://en.cppreference.com/w/cpp/numeric/ratio/ratio_subtractB—I9[std::experimental::filesystem::recursive_directory_iterator::disable_recursion_pendinghttp://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/disable_recursion_pending@—H)kThe as-if rulehttp://en.cppreference.com/w/cpp/language/as_ifd—GKstd::timed_mutex::native_handlehttp://en.cppreference.com/w/cpp/thread/timed_mutex/native_handle_—FG std::forward_list:: remove_ifhttp://en.cppreference.com/w/cpp/container/forward_list/remove[—E? std::forward_list::removehttp://en.cppreference.com/w/cpp/container/forward_list/removeW—D?std::regex_traits::getlochttp://en.cppreference.com/w/cpp/regex/regex_traits/getloc^—CGstd::basic_istream::operator=http://en.cppreference.com/w/cpp/io/basic_istream/operator%3DD—B!{std::btowchttp://en.cppreference.com/w/cpp/string/multibyte/btowcJ—A/ystd::list::uniquehttp://en.cppreference.com/w/cpp/container/list/unique[—@? std::back_insert_iteratorhttp://en.cppreference.com/w/cpp/iterator/back_insert_iteratorf—?Q std::moneypunct:: do_negative_signhttp://en.cppreference.com/w/cpp/locale/moneypunct/positive_signc—>K std::moneypunct:: negative_signhttp://en.cppreference.com/w/cpp/locale/moneypunct/positive_signf—=Q std::moneypunct:: do_positive_signhttp://en.cppreference.com/w/cpp/locale/moneypunct/positive_signb—<I std::moneypunct::positive_signhttp://en.cppreference.com/w/cpp/locale/moneypunct/positive_signP—;7}std::bitset::to_ulonghttp://en.cppreference.com/w/cpp/utility/bitset/to_ulongU—:A}std::basic_istream::gcounthttp://en.cppreference.com/w/cpp/io/basic_istream/gcount *p=æ}% ° R Ù š : Ó j ! Ü §ˆ&±]Æz/ÍmÊ…>ï„8ìu$ÄpQ˜ MiStandard library header http://en.cppreference.com/w/cpp/header/future]˜ S{std:: std::atomic_fetch_or_explicithttp://en.cppreference.com/w/cpp/atomic/atomic_fetch_orN˜ 5{std::atomic_fetch_orhttp://en.cppreference.com/w/cpp/atomic/atomic_fetch_ort˜ cstd::experimental::barrier::arrive_and_waithttp://en.cppreference.com/w/cpp/experimental/barrier/arrive_and_waitI˜ 1ustd::promise::swaphttp://en.cppreference.com/w/cpp/thread/promise/swapI˜-ystd::nth_elementhttp://en.cppreference.com/w/cpp/algorithm/nth_elementh˜Ostd::thread::hardware_concurrencyhttp://en.cppreference.com/w/cpp/thread/thread/hardware_concurrencyL˜9sstd:: std::noboolalphahttp://en.cppreference.com/w/cpp/io/manip/boolalphaD˜)sstd::boolalphahttp://en.cppreference.com/w/cpp/io/manip/boolalphaB˜)ostd::cv_statushttp://en.cppreference.com/w/cpp/thread/cv_statusH˜-wstd::deque::backhttp://en.cppreference.com/w/cpp/container/deque/backU˜Eystd::chrono::time_point::maxhttp://en.cppreference.com/w/cpp/chrono/time_point/max]˜A std::make_reverse_iteratorhttp://en.cppreference.com/w/cpp/iterator/make_reverse_iterator_˜=>=(std::error_condition)http://en.cppreference.com/w/cpp/error/error_condition/operator_cmpH—>http://en.cppreference.com/w/cpp/error/error_condition/operator_cmpI—~<=http://en.cppreference.com/w/cpp/error/error_condition/operator_cmpH—}>(std::experimental::filesystem::path)http://en.cppreference.com/w/cpp/experimental/fs/path/operator_ltltgtgtU—h!operator<http://en.cppreference.com/w/cpp/thread/future_errc/is_error_code_enumZ˜4Istd::filesystem::is_block_filehttp://en.cppreference.com/w/cpp/filesystem/is_block_file^˜3/!=(std::function)http://en.cppreference.com/w/cpp/utility/functional/function/operator_cmpW˜2!operator==http://en.cppreference.com/w/cpp/utility/functional/function/operator_cmpd˜1Kstd::is_member_function_pointerhttp://en.cppreference.com/w/cpp/types/is_member_function_pointerS˜0OkStandard library header http://en.cppreference.com/w/cpp/header/utilityM˜/1}std::inner_producthttp://en.cppreference.com/w/cpp/algorithm/inner_productU˜.Ksstd:: std::is_nothrow_swappablehttp://en.cppreference.com/w/cpp/types/is_swappableZ˜-Usstd:: std::is_nothrow_swappable_withhttp://en.cppreference.com/w/cpp/types/is_swappableM˜,;sstd:: std::is_swappablehttp://en.cppreference.com/w/cpp/types/is_swappableL˜+9sstd::is_swappable_withhttp://en.cppreference.com/w/cpp/types/is_swappablej˜*Istd::weibull_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/minU˜)A}std::basic_istream::sentryhttp://en.cppreference.com/w/cpp/io/basic_istream/sentryN˜(3}std::dynarray::fillhttp://en.cppreference.com/w/cpp/container/dynarray/fillQ˜'9}std::terminate_handlerhttp://en.cppreference.com/w/cpp/error/terminate_handler9˜&!estd::decayhttp://en.cppreference.com/w/cpp/types/decayL˜%3ystd::valarray::sizehttp://en.cppreference.com/w/cpp/numeric/valarray/sizeM˜$/std::bad_any_casthttp://en.cppreference.com/w/cpp/utility/any/bad_any_castW˜#1std::binary_negatehttp://en.cppreference.com/w/cpp/utility/functional/binary_negateI˜"?gArgument-dependent lookuphttp://en.cppreference.com/w/cpp/language/adlE˜!'wstd::wmemmovehttp://en.cppreference.com/w/cpp/string/wide/wmemmove[˜ ? std::multiset::value_comphttp://en.cppreference.com/w/cpp/container/multiset/value_compw˜G9>>(std::discard_block_engine)http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/operator_ltltgtgtd˜!9operator<http://en.cppreference.com/w/cpp/utility/functional/plus_voidL˜I9sstd:: std::noshowpointhttp://en.cppreference.com/w/cpp/io/manip/showpointD˜H)sstd::showpointhttp://en.cppreference.com/w/cpp/io/manip/showpointa˜GG std::bad_exception::operator=http://en.cppreference.com/w/cpp/error/bad_exception/operator%3DH˜F-wstd::array::datahttp://en.cppreference.com/w/cpp/container/array/dataI˜E5qstd::ios_base::flagshttp://en.cppreference.com/w/cpp/io/ios_base/flagsx˜D]%>=(std::experimental::basic_string_view)http://en.cppreference.com/w/cpp/experimental/basic_string_view/operator_cmpQ˜C%>http://en.cppreference.com/w/cpp/experimental/basic_string_view/operator_cmpR˜B%<=http://en.cppreference.com/w/cpp/experimental/basic_string_view/operator_cmpQ˜A%Kstd::discard_block_engine::basehttp://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/baseK˜=3wstd::weak_ptr::lockhttp://en.cppreference.com/w/cpp/memory/weak_ptr/lockC˜<'sstd::mismatchhttp://en.cppreference.com/w/cpp/algorithm/mismatch9˜;istd::sethttp://en.cppreference.com/w/cpp/container/set )½žOåv Å l  Å = Å s + Û „  Ë qê…2¾Ãa$Û~(ÊLö™,ÁSè¤X½_™C std::unordered_map::emplacehttp://en.cppreference.com/w/cpp/container/unordered_map/emplace6™ astd::getshttp://en.cppreference.com/w/cpp/io/c/getsI™ 1ustd::future::validhttp://en.cppreference.com/w/cpp/thread/future/validA™ #sstd::wcscpyhttp://en.cppreference.com/w/cpp/string/wide/wcscpyh™ W std::experimental::optional::optionalhttp://en.cppreference.com/w/cpp/experimental/optional/optionalk™ Sstd::numeric_limits::min_exponent10http://en.cppreference.com/w/cpp/types/numeric_limits/min_exponent10h™]std:: std::is_nothrow_copy_constructiblehttp://en.cppreference.com/w/cpp/types/is_copy_constructiblej™astd:: std::is_trivially_copy_constructiblehttp://en.cppreference.com/w/cpp/types/is_copy_constructibleZ™Astd::is_copy_constructiblehttp://en.cppreference.com/w/cpp/types/is_copy_constructibleS™OkStandard library header http://en.cppreference.com/w/cpp/header/sstream{™_)std::unordered_multiset::max_bucket_counthttp://en.cppreference.com/w/cpp/container/unordered_multiset/max_bucket_count[™Cstd::bad_typeid::bad_typeidhttp://en.cppreference.com/w/cpp/types/bad_typeid/bad_typeidS™7std::list::push_fronthttp://en.cppreference.com/w/cpp/container/list/push_frontZ™Cstd::tuple_size(std::array)http://en.cppreference.com/w/cpp/container/array/tuple_sizeF™1ostd::basic_filebufhttp://en.cppreference.com/w/cpp/io/basic_filebuf:˜#estd::rewindhttp://en.cppreference.com/w/cpp/io/c/rewind_˜~W{std::experimental::filesystem::renamehttp://en.cppreference.com/w/cpp/experimental/fs/renameX˜}=std::time_put::~time_puthttp://en.cppreference.com/w/cpp/locale/time_put/%7Etime_put˜|9std::experimental::pmr::unsynchronized_pool_resource::do_is_equalhttp://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/do_is_equalq˜{Ustd::unordered_multiset::load_factorhttp://en.cppreference.com/w/cpp/container/unordered_multiset/load_factorP˜z7}std::complex::complexhttp://en.cppreference.com/w/cpp/numeric/complex/complexb˜yQstd::experimental::optional::valuehttp://en.cppreference.com/w/cpp/experimental/optional/value˜x{std::experimental::filesystem::file_status::file_statushttp://en.cppreference.com/w/cpp/experimental/fs/file_status/file_statusW˜wCstd::basic_streambuf::sputchttp://en.cppreference.com/w/cpp/io/basic_streambuf/sputcO˜v;wstd::tanh(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/tanhd˜uKstd::shared_lock::operator boolhttp://en.cppreference.com/w/cpp/thread/shared_lock/operator_boolT˜t=std::swap(std::multiset)http://en.cppreference.com/w/cpp/container/multiset/swap2M˜s5ystd::auto_ptr::resethttp://en.cppreference.com/w/cpp/memory/auto_ptr/resetE˜r#{std::signalhttp://en.cppreference.com/w/cpp/utility/program/signalO˜q7{std::num_put::num_puthttp://en.cppreference.com/w/cpp/locale/num_put/num_putu˜pmstd::experimental::filesystem::file_status::typehttp://en.cppreference.com/w/cpp/experimental/fs/file_status/type˜oc7std::piecewise_constant_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/reset;˜nkstd::iotahttp://en.cppreference.com/w/cpp/algorithm/iotaf˜mMstd::timed_mutex::try_lock_untilhttp://en.cppreference.com/w/cpp/thread/timed_mutex/try_lock_untilV˜l;std::vector::swaphttp://en.cppreference.com/w/cpp/container/vector_bool/swapS˜k;std::atomic_flag::clearhttp://en.cppreference.com/w/cpp/atomic/atomic_flag/clearX˜j7 std::ratio_less_equalhttp://en.cppreference.com/w/cpp/numeric/ratio/ratio_less_equall˜iSstd::recursive_mutex::native_handlehttp://en.cppreference.com/w/cpp/thread/recursive_mutex/native_handleg˜h_std::experimental::filesystem::path::pathhttp://en.cppreference.com/w/cpp/experimental/fs/path/pathL˜g;qC++ keywords: protectedhttp://en.cppreference.com/w/cpp/keyword/protected_˜fE std::optional::operator boolhttp://en.cppreference.com/w/cpp/utility/optional/operator_bool 'Šž>Ûq @ Ï W ý x / × ‡  œ -ç¢^î}7ÀuËbùpãmÛ’)ñ–HêŠ]™5A std::front_insert_iteratorhttp://en.cppreference.com/w/cpp/iterator/front_insert_iterator[™4Swstd::ctype:: std::ctype::do_scan_ishttp://en.cppreference.com/w/cpp/locale/ctype/scan_isK™33wstd::ctype::scan_ishttp://en.cppreference.com/w/cpp/locale/ctype/scan_isX™2G}std::filesystem::is_directoryhttp://en.cppreference.com/w/cpp/filesystem/is_directory5™1iRAIIhttp://en.cppreference.com/w/cpp/language/raiif™0U std::experimental::observer_ptr::gethttp://en.cppreference.com/w/cpp/experimental/observer_ptr/getF™/5kC++ keywords: deletehttp://en.cppreference.com/w/cpp/keyword/delete™.%std::experimental::promise::promise (library fundamentals TS)http://en.cppreference.com/w/cpp/experimental/lib_extensions/promise/promises™-istd::experimental::filesystem::path::operator=http://en.cppreference.com/w/cpp/experimental/fs/path/operator%3D ™,std::experimental::parallel:: std::experimental::parallel::par_vechttp://en.cppreference.com/w/cpp/experimental/execution_policy_tag™+ std::experimental::parallel:: std::experimental::parallel::parhttp://en.cppreference.com/w/cpp/experimental/execution_policy_tagf™*Mstd::experimental::parallel::seqhttp://en.cppreference.com/w/cpp/experimental/execution_policy_tagf™)Estd::gamma_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/min&™(Mstd::pmr::synchronized_pool_resource::~synchronized_pool_resourcehttp://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/%7Esynchronized_pool_resourceH™'-wstd::list::erasehttp://en.cppreference.com/w/cpp/container/list/eraset™&cstd::experimental::barrier::arrive_and_drophttp://en.cppreference.com/w/cpp/experimental/barrier/arrive_and_dropC™%%ustd::iscntrlhttp://en.cppreference.com/w/cpp/string/byte/iscntrln™$I%std::binomial_distribution:: thttp://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/paramsm™#G%std::binomial_distribution::phttp://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/paramsA™"%qstd::reversehttp://en.cppreference.com/w/cpp/algorithm/reverseB™!)ostd::money_gethttp://en.cppreference.com/w/cpp/locale/money_getC™ /kUnion declarationhttp://en.cppreference.com/w/cpp/language/unionl™Kstd::binomial_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/maxx™_#std::recursive_timed_mutex::native_handlehttp://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/native_handlem™[C++ concepts: UnformattedOutputFunctionhttp://en.cppreference.com/w/cpp/concept/UnformattedOutputFunctionM™9ustd::strstream::pcounthttp://en.cppreference.com/w/cpp/io/strstream/pcountU™Ksstd:: std::atomic_load_explicithttp://en.cppreference.com/w/cpp/atomic/atomic_loadF™-sstd::atomic_loadhttp://en.cppreference.com/w/cpp/atomic/atomic_load™uoperator!= (std::experimental::pmr::memory_resource)http://en.cppreference.com/w/cpp/experimental/memory_resource/operator_eqW™!operator==http://en.cppreference.com/w/cpp/experimental/memory_resource/operator_equ™S)std::negative_binomial_distributionhttp://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distributionn™M!std::lognormal_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/maxM™9ustd::cos(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/cost™W#std::front_insert_iterator::operator=http://en.cppreference.com/w/cpp/iterator/front_insert_iterator/operator%3Dg™Astd:: std::assoc_laguerrelhttp://en.cppreference.com/w/cpp/experimental/special_math/assoc_laguerreg™Astd:: std::assoc_laguerrefhttp://en.cppreference.com/w/cpp/experimental/special_math/assoc_laguerre`™3std::assoc_laguerrehttp://en.cppreference.com/w/cpp/experimental/special_math/assoc_laguerre]™YuStandard library header http://en.cppreference.com/w/cpp/header/shared_mutex_™C std::unordered_set::emplacehttp://en.cppreference.com/w/cpp/container/unordered_set/emplace *^¾z&¹k( Ù p  ¨ < Õ f ä x 3 ¸ [ ¸sÁD㉳!­cðžEíY¨þº^Y™_=std::forward_list::mergehttp://en.cppreference.com/w/cpp/container/forward_list/mergeA™^#sstd::memsethttp://en.cppreference.com/w/cpp/string/byte/memset&™]=std::experimental::packaged_task::packaged_task (library fundamentals TS)http://en.cppreference.com/w/cpp/experimental/lib_extensions/packaged_task/packaged_taskk™\Sstd::regex_traits::translate_nocasehttp://en.cppreference.com/w/cpp/regex/regex_traits/translate_nocase@™[%ostd::reallochttp://en.cppreference.com/w/cpp/memory/c/reallocA™Z'ostd::valarrayhttp://en.cppreference.com/w/cpp/numeric/valarrayM™Y9ustd::pmr::pool_optionshttp://en.cppreference.com/w/cpp/memory/pool_optionsU™XQmStandard library header http://en.cppreference.com/w/cpp/header/optionalV™W=std::promise::get_futurehttp://en.cppreference.com/w/cpp/thread/promise/get_futureO™V;wstd::ostrstream::freezehttp://en.cppreference.com/w/cpp/io/ostrstream/freezep™Ue std::experimental::erase (std::forward_list)http://en.cppreference.com/w/cpp/experimental/forward_list/eraseG™T3ostd::basic_ios::badhttp://en.cppreference.com/w/cpp/io/basic_ios/badq™SUstd::unordered_multimap::load_factorhttp://en.cppreference.com/w/cpp/container/unordered_multimap/load_factor™R)std::experimental::filesystem::path:: std::experimental::filesystem::path::endhttp://en.cppreference.com/w/cpp/experimental/fs/path/begini™Qastd::experimental::filesystem::path::beginhttp://en.cppreference.com/w/cpp/experimental/fs/path/beging™PKstd::unordered_multiset::rehashhttp://en.cppreference.com/w/cpp/container/unordered_multiset/rehashW™OCstd::basic_filebuf::seekposhttp://en.cppreference.com/w/cpp/io/basic_filebuf/seekpos^™NE std::basic_string_view::findhttp://en.cppreference.com/w/cpp/string/basic_string_view/findz™MU1std::indirect_array::~indirect_arrayhttp://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/%7Eindirect_arrayU™LQmStandard library header http://en.cppreference.com/w/cpp/header/cstdboolW™KG{std::experimental::any::clearhttp://en.cppreference.com/w/cpp/experimental/any/clearB™J)ostd::call_oncehttp://en.cppreference.com/w/cpp/thread/call_onceM™I)std::mbstate_thttp://en.cppreference.com/w/cpp/string/multibyte/mbstate_tP™H5std::multimap::counthttp://en.cppreference.com/w/cpp/container/multimap/countZ™GEstd::basic_ofstream::is_openhttp://en.cppreference.com/w/cpp/io/basic_ofstream/is_openx™F]%std::scoped_allocator_adaptor::operator=http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/operator%3DB™E'qstd::inserterhttp://en.cppreference.com/w/cpp/iterator/inserteri™DGstd::uniform_int_distributionhttp://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution™Ck%std::pmr::unsynchronized_pool_resource::optionshttp://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/optionsl™BKstd::discrete_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/mind™Aa{std::literals::chrono_literals::operator"shttp://en.cppreference.com/w/cpp/chrono/operator%22%22si™@Ostd::forward_list:: cbefore_beginhttp://en.cppreference.com/w/cpp/container/forward_list/before_beging™?Kstd::forward_list::before_beginhttp://en.cppreference.com/w/cpp/container/forward_list/before_begin[™>? std::vector::emplace_backhttp://en.cppreference.com/w/cpp/container/vector/emplace_backf™=oqstd::filesystem:: std::filesystem::symlink_statushttp://en.cppreference.com/w/cpp/filesystem/statusL™<;qstd::filesystem::statushttp://en.cppreference.com/w/cpp/filesystem/status@™;!sstd::frexphttp://en.cppreference.com/w/cpp/numeric/math/frexpK™:3wstd::thread::threadhttp://en.cppreference.com/w/cpp/thread/thread/threadj™9E!std::gslice_array::operator=http://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/operator%3DQ™8Imstd::ctype:: std::ctype::do_ishttp://en.cppreference.com/w/cpp/locale/ctype/isA™7)mstd::ctype::ishttp://en.cppreference.com/w/cpp/locale/ctype/is?™6'kstd::is_emptyhttp://en.cppreference.com/w/cpp/types/is_empty 'n°_§L ø ™ 0 ² N ë ‡  ± T ¼ h Ìs¡JìFànŸ>æƒ ¯B×nfš]std::experimental::filesystem::file_typehttp://en.cppreference.com/w/cpp/experimental/fs/file_typehš]std:: std::is_nothrow_move_constructiblehttp://en.cppreference.com/w/cpp/types/is_move_constructiblejšastd:: std::is_trivially_move_constructiblehttp://en.cppreference.com/w/cpp/types/is_move_constructibleZšAstd::is_move_constructiblehttp://en.cppreference.com/w/cpp/types/is_move_constructibletšI1!=(std::binomial_distribution)http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/operator_cmp`š!1operator==http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/operator_cmpUš9std::map::emplace_hinthttp://en.cppreference.com/w/cpp/container/map/emplace_hint^™Gstd::basic_fstream::operator=http://en.cppreference.com/w/cpp/io/basic_fstream/operator%3Dy™~]'std::unordered_multiset::max_load_factorhttp://en.cppreference.com/w/cpp/container/unordered_multiset/max_load_factorP™}?uC++ keywords: static_casthttp://en.cppreference.com/w/cpp/keyword/static_casto™|Wstd::regex_traits::lookup_collatenamehttp://en.cppreference.com/w/cpp/regex/regex_traits/lookup_collatenamec™{K std::regex_traits::regex_traitshttp://en.cppreference.com/w/cpp/regex/regex_traits/regex_traits"™z?std::experimental::pmr::polymorphic_allocator::polymorphic_allocatorhttp://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/polymorphic_allocator[™y? std::unordered_set::erasehttp://en.cppreference.com/w/cpp/container/unordered_set/eraseP™x?ustd::experimental::not_fnhttp://en.cppreference.com/w/cpp/experimental/not_fnp™wWstd::basic_string_view::remove_prefixhttp://en.cppreference.com/w/cpp/string/basic_string_view/remove_prefix ™vy3std::pmr::monotonic_buffer_resource::upstream_resourcehttp://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/upstream_resourcec™uEstd::forward_list::operator=http://en.cppreference.com/w/cpp/container/forward_list/operator%3Di™tW C++ concepts: AllocatorAwareContainerhttp://en.cppreference.com/w/cpp/concept/AllocatorAwareContainerV™sE{C++ concepts: CopyInsertablehttp://en.cppreference.com/w/cpp/concept/CopyInsertableM™r9ustd::collate:: do_hashhttp://en.cppreference.com/w/cpp/locale/collate/hashI™q1ustd::collate::hashhttp://en.cppreference.com/w/cpp/locale/collate/hashQ™p9}std::rethrow_if_nestedhttp://en.cppreference.com/w/cpp/error/rethrow_if_nested™osGstd::bernoulli_distribution::bernoulli_distributionhttp://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/bernoulli_distributionZ™n?std::valarray::operator[]http://en.cppreference.com/w/cpp/numeric/valarray/operator_at[™m? std::deque::emplace_fronthttp://en.cppreference.com/w/cpp/container/deque/emplace_frontu™lwstd::filesystem:: std::filesystem::create_directorieshttp://en.cppreference.com/w/cpp/filesystem/create_directorya™kOstd::filesystem::create_directoryhttp://en.cppreference.com/w/cpp/filesystem/create_directory`™jE std::lock_guard::~lock_guardhttp://en.cppreference.com/w/cpp/thread/lock_guard/%7Elock_guarda™iEstd::unordered_map::max_sizehttp://en.cppreference.com/w/cpp/container/unordered_map/max_size{™hK=>>(std::lognormal_distribution)http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/operator_ltltgtgtf™g!=operator<http://en.cppreference.com/w/cpp/utility/functional/less_equal_voidQ™e9}std::rethrow_exceptionhttp://en.cppreference.com/w/cpp/error/rethrow_exceptionX™d;C++ Operator Precedencehttp://en.cppreference.com/w/cpp/language/operator_precedencef™c]std::experimental::filesystem::is_sockethttp://en.cppreference.com/w/cpp/experimental/fs/is_socketL™b;qC++ concepts: Containerhttp://en.cppreference.com/w/cpp/concept/ContainerN™a+std::quick_exithttp://en.cppreference.com/w/cpp/utility/program/quick_exitM™`1}std::unordered_maphttp://en.cppreference.com/w/cpp/container/unordered_map )º¡P ÇR ß B Û u ø ™ : Õ Z  ´ HâŸS̈EõSì…8è€ü®Qõ¨Aø¡<ºš/k%std::pmr::unsynchronized_pool_resource::releasehttp://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/releasebš.I std::match_results::operator[]http://en.cppreference.com/w/cpp/regex/match_results/operator_atTš-9std::thread::operator=http://en.cppreference.com/w/cpp/thread/thread/operator%3DFš,5kC++ keywords: doublehttp://en.cppreference.com/w/cpp/keyword/doubledš+M std::strstreambuf::~strstreambufhttp://en.cppreference.com/w/cpp/io/strstreambuf/%7EstrstreambufJš*/ystd::queue::emptyhttp://en.cppreference.com/w/cpp/container/queue/emptyYš)=std::unordered_map::sizehttp://en.cppreference.com/w/cpp/container/unordered_map/sizeZš(5std::allocate_sharedhttp://en.cppreference.com/w/cpp/memory/shared_ptr/allocate_sharedKš'3wstd::remove_pointerhttp://en.cppreference.com/w/cpp/types/remove_pointerš&std::unordered_multimap:: std::unordered_multimap::cbeginhttp://en.cppreference.com/w/cpp/container/unordered_multimap/begineš%Istd::unordered_multimap::beginhttp://en.cppreference.com/w/cpp/container/unordered_multimap/beginMš$9ustd::tan(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/tanJš#/ystd::deque::emptyhttp://en.cppreference.com/w/cpp/container/deque/emptydš"Ystd::experimental::erase_if (std::set)http://en.cppreference.com/w/cpp/experimental/set/erase_ifdš!Kstd::pointer_traits::pointer_tohttp://en.cppreference.com/w/cpp/memory/pointer_traits/pointer_toš  Cstd::pmr::monotonic_buffer_resource::monotonic_buffer_resourcehttp://en.cppreference.com/w/cpp/memory/monotonic_buffer_resource/monotonic_buffer_resourceMš)>=(std::tuple)http://en.cppreference.com/w/cpp/utility/tuple/operator_cmp@š>http://en.cppreference.com/w/cpp/utility/tuple/operator_cmpAš<=http://en.cppreference.com/w/cpp/utility/tuple/operator_cmp@šò‡3 é – % Ù ˆ , Ð p  ¸ ? ü ­ "Öu*®U®HÉx/çžVþ£_Êpú @÷±hFš\+ustd::set::counthttp://en.cppreference.com/w/cpp/container/set/countCš[%ustd::wcscspnhttp://en.cppreference.com/w/cpp/string/wide/wcscspnFšZ5kC++ keywords: returnhttp://en.cppreference.com/w/cpp/keyword/return]šYKC++ concepts: SequenceContainerhttp://en.cppreference.com/w/cpp/concept/SequenceContainerWšX?std::match_results::emptyhttp://en.cppreference.com/w/cpp/regex/match_results/emptysšW{std::filesystem::path:: std::filesystem::path::operator/=http://en.cppreference.com/w/cpp/filesystem/path/appendWšVG{std::filesystem::path::appendhttp://en.cppreference.com/w/cpp/filesystem/path/appendHšU1sstd:: std::strtoldhttp://en.cppreference.com/w/cpp/string/byte/strtofGšT/sstd:: std::strtodhttp://en.cppreference.com/w/cpp/string/byte/strtofAšS#sstd::strtofhttp://en.cppreference.com/w/cpp/string/byte/strtofXšRG}C++ concepts: ForwardIteratorhttp://en.cppreference.com/w/cpp/concept/ForwardIteratorUšQ/ >=(std::multiset)http://en.cppreference.com/w/cpp/container/multiset/operator_cmpEšP >http://en.cppreference.com/w/cpp/container/multiset/operator_cmpFšO <=http://en.cppreference.com/w/cpp/container/multiset/operator_cmpEšN http://en.cppreference.com/w/cpp/header/exceptionJšH9ostd::experimental::gcdhttp://en.cppreference.com/w/cpp/experimental/gcdVšG=std::basic_string::c_strhttp://en.cppreference.com/w/cpp/string/basic_string/c_stryšF]'std::unordered_multimap::max_load_factorhttp://en.cppreference.com/w/cpp/container/unordered_multimap/max_load_factorHšE){std::make_pairhttp://en.cppreference.com/w/cpp/utility/pair/make_pair^šDE std::basic_string::push_backhttp://en.cppreference.com/w/cpp/string/basic_string/push_backIšC)}Class templatehttp://en.cppreference.com/w/cpp/language/class_templatešB{%std::experimental::pmr::polymorphic_allocator::resourcehttp://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/resourceLšA3ystd::valarray::swaphttp://en.cppreference.com/w/cpp/numeric/valarray/swap@š@!sstd::asinhhttp://en.cppreference.com/w/cpp/numeric/math/asinhvš?S+std::indirect_array::indirect_arrayhttp://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/indirect_arrayYš>; std::atomic::operator^=http://en.cppreference.com/w/cpp/atomic/atomic/operator_arith2Yš=; std::atomic::operator|=http://en.cppreference.com/w/cpp/atomic/atomic/operator_arith2]š<C std::atomic::operator&=http://en.cppreference.com/w/cpp/atomic/atomic/operator_arith2Yš;; std::atomic::operator-=http://en.cppreference.com/w/cpp/atomic/atomic/operator_arith2Yš:; std::atomic::operator+=http://en.cppreference.com/w/cpp/atomic/atomic/operator_arith2Nš93}std::stack::emplacehttp://en.cppreference.com/w/cpp/container/stack/emplaceIš8-ystd::rotate_copyhttp://en.cppreference.com/w/cpp/algorithm/rotate_copynš7M!std::student_t_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/maxPš65std::multiset::erasehttp://en.cppreference.com/w/cpp/container/multiset/eraseGš5/sstd::future::waithttp://en.cppreference.com/w/cpp/thread/future/waitQš4MiStandard library header http://en.cppreference.com/w/cpp/header/localehš3Qstd::basic_filebuf::~basic_filebufhttp://en.cppreference.com/w/cpp/io/basic_filebuf/%7Ebasic_filebufIš25qstd::ostrstream::strhttp://en.cppreference.com/w/cpp/io/ostrstream/str`š1Kstd::codecvt:: do_always_noconvhttp://en.cppreference.com/w/cpp/locale/codecvt/always_noconv\š0Cstd::codecvt::always_noconvhttp://en.cppreference.com/w/cpp/locale/codecvt/always_noconv -‚RÁ{ Æ Z  Å r  ¸ ^  Æ Q  à c ¤Då…Aó©Pú°e¨J舿xáˆ5à‚[› ? std::forward_list::uniquehttp://en.cppreference.com/w/cpp/container/forward_list/uniqueR›+ std::to_wstringhttp://en.cppreference.com/w/cpp/string/basic_string/to_wstringP›9{std::sub_match::lengthhttp://en.cppreference.com/w/cpp/regex/sub_match/lengthV›=Storage class specifiershttp://en.cppreference.com/w/cpp/language/storage_duration8›!cstd::ftellhttp://en.cppreference.com/w/cpp/io/c/ftellY›?std::get_temporary_bufferhttp://en.cppreference.com/w/cpp/memory/get_temporary_bufferD›3iC++ keywords: catchhttp://en.cppreference.com/w/cpp/keyword/catchP›7}std::valarray::resizehttp://en.cppreference.com/w/cpp/numeric/valarray/resizes›qstd::unordered_set:: std::unordered_set::cend(int)http://en.cppreference.com/w/cpp/container/unordered_set/end2]›Estd::unordered_set::end(int)http://en.cppreference.com/w/cpp/container/unordered_set/end2_šC std::multimap::emplace_hinthttp://en.cppreference.com/w/cpp/container/multimap/emplace_hint[š~? std::forward_list::assignhttp://en.cppreference.com/w/cpp/container/forward_list/assigncš}Astd::binomial_distributionhttp://en.cppreference.com/w/cpp/numeric/random/binomial_distributionTš|3copy initializationhttp://en.cppreference.com/w/cpp/language/copy_initializationHš{-wstd::queue::pushhttp://en.cppreference.com/w/cpp/container/queue/pushGšz;gstd::this_thread::yieldhttp://en.cppreference.com/w/cpp/thread/yieldSšyAystd::hashhttp://en.cppreference.com/w/cpp/thread/thread/id/hashVšx[ecv (const and volatile) type qualifiershttp://en.cppreference.com/w/cpp/language/cvGšw/sstd::regex_searchhttp://en.cppreference.com/w/cpp/regex/regex_searchKšv-}Value categorieshttp://en.cppreference.com/w/cpp/language/value_categoryAšu'ostd::as_consthttp://en.cppreference.com/w/cpp/utility/as_const]štC std::type_index::operator>=http://en.cppreference.com/w/cpp/types/type_index/operator_cmp\šsA std::type_index::operator>http://en.cppreference.com/w/cpp/types/type_index/operator_cmp]šrC std::type_index::operator<=http://en.cppreference.com/w/cpp/types/type_index/operator_cmp\šqA std::type_index::operator ä k  Ç n ´ t »i#Îc ´`ú‚;è6Ýfú´b8×{Y›33std::unary_functionhttp://en.cppreference.com/w/cpp/utility/functional/unary_function^›2Gstd::basic_filebuf::operator=http://en.cppreference.com/w/cpp/io/basic_filebuf/operator%3DT›1=std::basic_regex::assignhttp://en.cppreference.com/w/cpp/regex/basic_regex/assigno›0I'std::pointer_to_unary_functionhttp://en.cppreference.com/w/cpp/utility/functional/pointer_to_unary_function^›/Gstd::basic_ostream::operator=http://en.cppreference.com/w/cpp/io/basic_ostream/operator%3DO›.;wstd::atan(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/atanC›-%ustd::strcollhttp://en.cppreference.com/w/cpp/string/byte/strcolli›,Mstd::forward_list::emplace_fronthttp://en.cppreference.com/w/cpp/container/forward_list/emplace_frontt›+W#std::front_insert_iterator::operator*http://en.cppreference.com/w/cpp/iterator/front_insert_iterator/operator%2AV›*=std::basic_string::emptyhttp://en.cppreference.com/w/cpp/string/basic_string/emptyT›)Cystd::filesystem::is_symlinkhttp://en.cppreference.com/w/cpp/filesystem/is_symlinkX›(G}C++ concepts: BinaryPredicatehttp://en.cppreference.com/w/cpp/concept/BinaryPredicateP›'Asstd::map:: std::map::crendhttp://en.cppreference.com/w/cpp/container/map/rendD›&)sstd::map::rendhttp://en.cppreference.com/w/cpp/container/map/rendu›%E7>>(std::normal_distribution)http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/operator_ltltgtgtc›$!7operator<http://en.cppreference.com/w/cpp/header/threadS›"OkStandard library header http://en.cppreference.com/w/cpp/header/istreamV›!1 std::bit_nothttp://en.cppreference.com/w/cpp/utility/functional/bit_not_voidh› W std::experimental::weak_ptr::weak_ptrhttp://en.cppreference.com/w/cpp/experimental/weak_ptr/weak_ptrR›AwC++ concepts: Destructiblehttp://en.cppreference.com/w/cpp/concept/DestructibleC›}RAND_MAXhttp://en.cppreference.com/w/cpp/numeric/random/RAND_MAXO›;wstd::proj(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/proja›?std::weibull_distributionhttp://en.cppreference.com/w/cpp/numeric/random/weibull_distributionR›;}std::match_results::strhttp://en.cppreference.com/w/cpp/regex/match_results/str=›!mstd::queuehttp://en.cppreference.com/w/cpp/container/queue6›'Ustd::experimental::pmr::monotonic_buffer_resource::~monotonic_buffer_resourcehttp://en.cppreference.com/w/cpp/experimental/monotonic_buffer_resource/%7Emonotonic_buffer_resourceV›=std::is_rvalue_referencehttp://en.cppreference.com/w/cpp/types/is_rvalue_referenceE›'wstd::strerrorhttp://en.cppreference.com/w/cpp/string/byte/strerrorY›CNon-static member functionshttp://en.cppreference.com/w/cpp/language/member_functionsv›[#std::istream_iterator::istream_iteratorhttp://en.cppreference.com/w/cpp/iterator/istream_iterator/istream_iteratorW›SoStandard library header http://en.cppreference.com/w/cpp/header/strstream›std::basic_string_view:: std::basic_string_view::operator basic_stringhttp://en.cppreference.com/w/cpp/string/basic_string_view/to_stringh›Ostd::basic_string_view::to_stringhttp://en.cppreference.com/w/cpp/string/basic_string_view/to_string>›qstd::tanhhttp://en.cppreference.com/w/cpp/numeric/math/tanh@›+istd::streamsizehttp://en.cppreference.com/w/cpp/io/streamsizeL›;qC++ concepts: Predicatehttp://en.cppreference.com/w/cpp/concept/Predicate`›G std::basic_string_view::rfindhttp://en.cppreference.com/w/cpp/string/basic_string_view/rfindV› 1 std::greaterhttp://en.cppreference.com/w/cpp/utility/functional/greater_voidF› #}std::gslicehttp://en.cppreference.com/w/cpp/numeric/valarray/gslice› c?std::extreme_value_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/extreme_value_distribution/operator%28%29^› Istd::ios_base::sync_with_stdiohttp://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio +¢Àj¹z0 è œ S é — 2 Ü y < â ‘ 3 Í V ±[ Ì_¾vûÂYø”­!š:è¢C›^+ostd::thread::idhttp://en.cppreference.com/w/cpp/thread/thread/idO›];wstd::acos(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/acos]›\C std::basic_regex::operator=http://en.cppreference.com/w/cpp/regex/basic_regex/operator%3D›[o)std::pmr::synchronized_pool_resource::do_allocatehttp://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/do_allocate›Z]E!=(std::piecewise_constant_distribution)http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/operator_cmpj›Y!Eoperator==http://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distribution/operator_cmpw›Xu std::unordered_map:: std::unordered_map::cbegin(int)http://en.cppreference.com/w/cpp/container/unordered_map/begin2a›WI std::unordered_map::begin(int)http://en.cppreference.com/w/cpp/container/unordered_map/begin2^›VIstd::basic_streambuf::in_availhttp://en.cppreference.com/w/cpp/io/basic_streambuf/in_availf›UMstd::atomic::is_always_lock_freehttp://en.cppreference.com/w/cpp/atomic/atomic/is_always_lock_free6›Testd::wshttp://en.cppreference.com/w/cpp/io/manip/wsx›Smstd::experimental::erase_if (std::unordered_map)http://en.cppreference.com/w/cpp/experimental/unordered_map/erase_ifE›R?_C Date and time utilitieshttp://en.cppreference.com/w/cpp/chrono/cV›Q=std::char_traits::assignhttp://en.cppreference.com/w/cpp/string/char_traits/assignE›P)ustd::partitionhttp://en.cppreference.com/w/cpp/algorithm/partitionj›OIstd::discard_block_engine::maxhttp://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/maxI›N+{Derived classeshttp://en.cppreference.com/w/cpp/language/derived_class›Ms'std::experimental::basic_string_view::remove_suffixhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/remove_suffixl›Lcstd::experimental::filesystem::is_directoryhttp://en.cppreference.com/w/cpp/experimental/fs/is_directoryI›K5qstd::ios_base::eventhttp://en.cppreference.com/w/cpp/io/ios_base/eventS›J;std::messages::messageshttp://en.cppreference.com/w/cpp/locale/messages/messagesS›I- std::logical_andhttp://en.cppreference.com/w/cpp/utility/functional/logical_andL›H;qC++ keywords: namespacehttp://en.cppreference.com/w/cpp/keyword/namespacet›Gkstd::experimental::filesystem::create_hard_linkhttp://en.cppreference.com/w/cpp/experimental/fs/create_hard_linkc›FK std::numeric_limits::is_boundedhttp://en.cppreference.com/w/cpp/types/numeric_limits/is_bounded[›E5std::binary_functionhttp://en.cppreference.com/w/cpp/utility/functional/binary_functionN›D5{std::allocator_arg_thttp://en.cppreference.com/w/cpp/memory/allocator_arg_tW›C=std::atomic_signal_fencehttp://en.cppreference.com/w/cpp/atomic/atomic_signal_fence:›Bistd::datahttp://en.cppreference.com/w/cpp/iterator/data`›AKstd::uses_allocatorhttp://en.cppreference.com/w/cpp/utility/tuple/uses_allocatorS›@OkStandard library header http://en.cppreference.com/w/cpp/header/cstddefb›?Ustd::experimental::pmr::pool_optionshttp://en.cppreference.com/w/cpp/experimental/pool_optionsO›>KgStandard library header http://en.cppreference.com/w/cpp/header/stackg›=U std::experimental::basic_string_viewhttp://en.cppreference.com/w/cpp/experimental/basic_string_viewF›<+ustd::map::counthttp://en.cppreference.com/w/cpp/container/map/countI›;;kstd:: std::defaultfloathttp://en.cppreference.com/w/cpp/io/manip/fixedE›:3kstd:: std::hexfloathttp://en.cppreference.com/w/cpp/io/manip/fixedG›97kstd:: std::scientifichttp://en.cppreference.com/w/cpp/io/manip/fixed<›8!kstd::fixedhttp://en.cppreference.com/w/cpp/io/manip/fixedb›7Qstd::experimental::latch::is_readyhttp://en.cppreference.com/w/cpp/experimental/latch/is_readyI›61ustd::aligned_unionhttp://en.cppreference.com/w/cpp/types/aligned_unionS›5Cwstd::filesystem::path::stemhttp://en.cppreference.com/w/cpp/filesystem/path/stem=›4!mstd::dequehttp://en.cppreference.com/w/cpp/container/deque -q·^Ã}. Ð o ü ’  ‚ + Ä b  Ò  *Ïy.Áh¢J¦`ü¢WµiÐp#ÞšUÁqMœ )std::mbsrtowcshttp://en.cppreference.com/w/cpp/string/multibyte/mbsrtowcsMœ '>=(std::list)http://en.cppreference.com/w/cpp/container/list/operator_cmpAœ >http://en.cppreference.com/w/cpp/container/list/operator_cmpBœ<=http://en.cppreference.com/w/cpp/container/list/operator_cmpAœ=(std::forward_list)http://en.cppreference.com/w/cpp/container/forward_list/operator_cmpIœ>http://en.cppreference.com/w/cpp/container/forward_list/operator_cmpJœ<=http://en.cppreference.com/w/cpp/container/forward_list/operator_cmpIœ::tablehttp://en.cppreference.com/w/cpp/locale/ctype_char/tableP›pAsstd::set:: std::set::crendhttp://en.cppreference.com/w/cpp/container/set/rendD›o)sstd::set::rendhttp://en.cppreference.com/w/cpp/container/set/rendF›n5kC++ keywords: structhttp://en.cppreference.com/w/cpp/keyword/struct_›m[wStandard library header http://en.cppreference.com/w/cpp/header/unordered_mapd›lO std::basic_ostream::basic_ostreamhttp://en.cppreference.com/w/cpp/io/basic_ostream/basic_ostreamT›kCystd::experimental::when_anyhttp://en.cppreference.com/w/cpp/experimental/when_any›j{?std::scoped_allocator_adaptor::scoped_allocator_adaptorhttp://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/scoped_allocator_adaptoru›igstd::regex_iterator::operator operator++(int)http://en.cppreference.com/w/cpp/regex/regex_iterator/operator_arithg›hKstd::regex_iterator::operator++http://en.cppreference.com/w/cpp/regex/regex_iterator/operator_arithp›gE-!=(std::normal_distribution)http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/operator_cmp^›f!-operator==http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/operator_cmp[›eCstd::numeric_limits::lowesthttp://en.cppreference.com/w/cpp/types/numeric_limits/lowestL›d5wstd::swap(std::list)http://en.cppreference.com/w/cpp/container/list/swap2C›c'sstd::multisethttp://en.cppreference.com/w/cpp/container/multisetJ›b9oC++ keywords: typenamehttp://en.cppreference.com/w/cpp/keyword/typenameK›a'std::mbrtoc16http://en.cppreference.com/w/cpp/string/multibyte/mbrtoc16V›`9std::deque::operator[]http://en.cppreference.com/w/cpp/container/deque/operator_atF›_1ostd::basic_ostreamhttp://en.cppreference.com/w/cpp/io/basic_ostream *»sÍ‚) ¢ - ¸ _  Ê |  Ç w  ¯ %Ær,á£*‡)Ðjùzï«]Ú¹\ xœ5Y)std::front_insert_iterator::operator++http://en.cppreference.com/w/cpp/iterator/front_insert_iterator/operator%2B%2BOœ43std::inclusive_scanhttp://en.cppreference.com/w/cpp/algorithm/inclusive_scanZœ3Estd::swap(std::basic_string)http://en.cppreference.com/w/cpp/string/basic_string/swap2_œ2G std::regex_error::regex_errorhttp://en.cppreference.com/w/cpp/regex/regex_error/regex_erroraœ1I std::numeric_limits::quiet_NaNhttp://en.cppreference.com/w/cpp/types/numeric_limits/quiet_NaNXœ0?std::allocator::allocatorhttp://en.cppreference.com/w/cpp/memory/allocator/allocator7œ/cstd::rankhttp://en.cppreference.com/w/cpp/types/rankFœ.+ustd::map::clearhttp://en.cppreference.com/w/cpp/container/map/clearKœ-3wstd::atomic::atomichttp://en.cppreference.com/w/cpp/atomic/atomic/atomicAœ,#sstd::wcsstrhttp://en.cppreference.com/w/cpp/string/wide/wcsstrœ+s-std::pmr::unsynchronized_pool_resource::do_allocatehttp://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/do_allocate|œ*kstd::istream_iterator::operator operator++(int)http://en.cppreference.com/w/cpp/iterator/istream_iterator/operator_arithnœ)Ostd::istream_iterator::operator++http://en.cppreference.com/w/cpp/iterator/istream_iterator/operator_arithcœ(K std::numeric_limits::is_integerhttp://en.cppreference.com/w/cpp/types/numeric_limits/is_integerVœ'SmC++ keywords: nullptr (since C++11)http://en.cppreference.com/w/cpp/keyword/nullptr[œ&Kstd::chrono::duration::durationhttp://en.cppreference.com/w/cpp/chrono/duration/durationœ%5std::experimental::basic_string_view:: std::experimental::basic_string_view::crbeginhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/rbeginvœ$estd::experimental::basic_string_view::rbeginhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/rbegin;œ#-]Numerics libraryhttp://en.cppreference.com/w/cpp/numericHœ"3qstd::swap(std::any)http://en.cppreference.com/w/cpp/utility/any/swap2Cœ!%ustd::strrchrhttp://en.cppreference.com/w/cpp/string/byte/strrchrQœ 9}std::shared_lock::swaphttp://en.cppreference.com/w/cpp/thread/shared_lock/swap\œCstd::basic_string::pop_backhttp://en.cppreference.com/w/cpp/string/basic_string/pop_backœ std::chrono::duration::operator std::chrono::duration::operator--http://en.cppreference.com/w/cpp/chrono/duration/operator_arith2eœO std::chrono::duration::operator++http://en.cppreference.com/w/cpp/chrono/duration/operator_arith2]œKstd::experimental::flex_barrierhttp://en.cppreference.com/w/cpp/experimental/flex_barrierMœ9ustd::ios_base::seekdirhttp://en.cppreference.com/w/cpp/io/ios_base/seekdirSœ;std::time_get::time_gethttp://en.cppreference.com/w/cpp/locale/time_get/time_get\œMstd::atomic_...http://en.cppreference.com/w/cpp/memory/shared_ptr/atomicKœ'std::mbrtoc32http://en.cppreference.com/w/cpp/string/multibyte/mbrtoc32Kœ?kstd::isdigit(std::locale)http://en.cppreference.com/w/cpp/locale/isdigitDœ)sstd::set::sizehttp://en.cppreference.com/w/cpp/container/set/sizeVœ9std::partial_sort_copyhttp://en.cppreference.com/w/cpp/algorithm/partial_sort_copyrœM)std::gslice_array::~gslice_arrayhttp://en.cppreference.com/w/cpp/numeric/valarray/gslice_array/%7Egslice_arrayrœi std::experimental::filesystem::directory_entryhttp://en.cppreference.com/w/cpp/experimental/fs/directory_entryœk-std::regex_token_iterator::regex_token_iteratorhttp://en.cppreference.com/w/cpp/regex/regex_token_iterator/regex_token_iteratorVœE{C++ concepts: FunctionObjecthttp://en.cppreference.com/w/cpp/concept/FunctionObjectHœ-wstd::map::inserthttp://en.cppreference.com/w/cpp/container/map/insertBœ#ustd::tgammahttp://en.cppreference.com/w/cpp/numeric/math/tgamma^œE std::basic_string_view::backhttp://en.cppreference.com/w/cpp/string/basic_string_view/backEœ )ustd::transformhttp://en.cppreference.com/w/cpp/algorithm/transformBœ 1gC++ keywords: boolhttp://en.cppreference.com/w/cpp/keyword/bool +…³bï›G ã Ÿ Y  É ~ ' Ï  ¾ }  ¥ 'Õ•$•.ÏVÊ`±Oâ|É|&܀ʅBœ`'qstd::distancehttp://en.cppreference.com/w/cpp/iterator/distanceOœ_KgStandard library header http://en.cppreference.com/w/cpp/header/tupleaœ^Estd::multimap::value_comparehttp://en.cppreference.com/w/cpp/container/multimap/value_compareYœ]Ssstd::num_put:: std::num_put::do_puthttp://en.cppreference.com/w/cpp/locale/num_put/putGœ\/sstd::num_put::puthttp://en.cppreference.com/w/cpp/locale/num_put/putSœ[OkStandard library header http://en.cppreference.com/w/cpp/header/climitsJœZ1wstd::messages_basehttp://en.cppreference.com/w/cpp/locale/messages_baseEœY'wstd::isxdigithttp://en.cppreference.com/w/cpp/string/byte/isxdigithœXQstd::uses_allocatorhttp://en.cppreference.com/w/cpp/container/dynarray/uses_allocatorcœWGstd::unordered_multimap::sizehttp://en.cppreference.com/w/cpp/container/unordered_multimap/sizejœVIstd::gamma_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/gamma_distribution/reset_œU?>>(std::filesystem::path)http://en.cppreference.com/w/cpp/filesystem/path/operator_ltltgtgtPœT!operator<>(std::negative_binomial_distribution)http://en.cppreference.com/w/cpp/numeric/random/negative_binomial_distribution/operator_ltltgtgtnœL!Moperator<>(std::bernoulli_distribution)http://en.cppreference.com/w/cpp/numeric/random/bernoulli_distribution/operator_ltltgtgtfœH!=operator<œFqstd::fmaxhttp://en.cppreference.com/w/cpp/numeric/math/fmaxEœE-qstd::mutex::lockhttp://en.cppreference.com/w/cpp/thread/mutex/lockxœDW+std::independent_bits_engine::discardhttp://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/discardKœC1ystd::mutex::~mutexhttp://en.cppreference.com/w/cpp/thread/mutex/%7EmutexUœBEystd::filesystem::path::emptyhttp://en.cppreference.com/w/cpp/filesystem/path/emptyTœAEwstd::set:: std::set::crbeginhttp://en.cppreference.com/w/cpp/container/set/rbeginHœ@-wstd::set::rbeginhttp://en.cppreference.com/w/cpp/container/set/rbeginFœ?1ostd:: std::imaxabshttp://en.cppreference.com/w/cpp/numeric/math/absDœ>-ostd:: std::llabshttp://en.cppreference.com/w/cpp/numeric/math/absCœ=+ostd:: std::labshttp://en.cppreference.com/w/cpp/numeric/math/absAœ<'ostd::abs(int)http://en.cppreference.com/w/cpp/numeric/math/absaœ;K std::operator<(std::error_code)http://en.cppreference.com/w/cpp/error/error_code/operator_cmpQœ:+ std::operator!=http://en.cppreference.com/w/cpp/error/error_code/operator_cmpQœ9+ std::operator==http://en.cppreference.com/w/cpp/error/error_code/operator_cmppœ8O#std::discrete_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/discrete_distribution/resetNœ73}std::list::pop_backhttp://en.cppreference.com/w/cpp/container/list/pop_backJœ69oC++ keywords: unsignedhttp://en.cppreference.com/w/cpp/keyword/unsigned +©ªAì£@ ä  Ä d í ª O  ­ X  Ê N ·VæuÙ.Ú—>¸e ¾€;ö^Ôx©n [std::pmr::operator std::pmr::operator!=http://en.cppreference.com/w/cpp/memory/memory_resource/operator_eq[ 5std::pmr::operator==http://en.cppreference.com/w/cpp/memory/memory_resource/operator_eqY Ssstd::num_get:: std::num_get::do_gethttp://en.cppreference.com/w/cpp/locale/num_get/getG/sstd::num_get::gethttp://en.cppreference.com/w/cpp/locale/num_get/get=!mstd::stackhttp://en.cppreference.com/w/cpp/container/stacksGstd::student_t_distribution::student_t_distributionhttp://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/student_t_distributionB1gstd:: std::swscanfhttp://en.cppreference.com/w/cpp/io/c/fwscanfB1gstd:: std::fwscanfhttp://en.cppreference.com/w/cpp/io/c/fwscanf;#gstd::wscanfhttp://en.cppreference.com/w/cpp/io/c/fwscanfK?kstd::toupper(std::locale)http://en.cppreference.com/w/cpp/locale/toupperV->>(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/operator_ltltgtgtP!operator<http://en.cppreference.com/w/cpp/header/experimental/filesystem]œjYuStandard library header http://en.cppreference.com/w/cpp/header/system_errorWœi;std::multimap::key_comphttp://en.cppreference.com/w/cpp/container/multimap/key_comp`œh?std:: std::comp_ellint_2lhttp://en.cppreference.com/w/cpp/numeric/special_math/comp_ellint_2`œg?std:: std::comp_ellint_2fhttp://en.cppreference.com/w/cpp/numeric/special_math/comp_ellint_2Yœf1std::comp_ellint_2http://en.cppreference.com/w/cpp/numeric/special_math/comp_ellint_2`œe]wstd::chrono::ceil(std::chrono::duration)http://en.cppreference.com/w/cpp/chrono/duration/ceilFœd5kC++ keywords: and_eqhttp://en.cppreference.com/w/cpp/keyword/and_eqRœc;}std::error_code::assignhttp://en.cppreference.com/w/cpp/error/error_code/assignfœbastd::time_get:: std::time_get::do_get_datehttp://en.cppreference.com/w/cpp/locale/time_get/get_dateSœa;std::time_get::get_datehttp://en.cppreference.com/w/cpp/locale/time_get/get_date *Œ¡Bã„: ê 7 Õ y 3 ¿ e  ­  ¿ \ ~—¯:ò¥Jå|%áHü·hߌP57}std::allocator_traitshttp://en.cppreference.com/w/cpp/memory/allocator_traits74cstd::errchttp://en.cppreference.com/w/cpp/error/errcL31{std::deque::resizehttp://en.cppreference.com/w/cpp/container/deque/resizeL21{std::vector::fronthttp://en.cppreference.com/w/cpp/container/vector/frontB11gC++ keywords: enumhttp://en.cppreference.com/w/cpp/keyword/enumI0#std::negatehttp://en.cppreference.com/w/cpp/utility/functional/negateE/'wstd::iswspacehttp://en.cppreference.com/w/cpp/string/wide/iswspaceN.3}std::multimap::sizehttp://en.cppreference.com/w/cpp/container/multimap/sizeA-#sstd::wcslenhttp://en.cppreference.com/w/cpp/string/wide/wcslenT,7std::set_intersectionhttp://en.cppreference.com/w/cpp/algorithm/set_intersectionf+Q std::moneypunct:: do_decimal_pointhttp://en.cppreference.com/w/cpp/locale/moneypunct/decimal_pointb*I std::moneypunct::decimal_pointhttp://en.cppreference.com/w/cpp/locale/moneypunct/decimal_pointX)Kystd::deque:: std::deque::cbeginhttp://en.cppreference.com/w/cpp/container/deque/beginJ(/ystd::deque::beginhttp://en.cppreference.com/w/cpp/container/deque/beginE'-qstd::add_pointerhttp://en.cppreference.com/w/cpp/types/add_pointerr&G/!=(std::weibull_distribution)http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/operator_cmp_%!/operator==http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/operator_cmp$g/std:: std::make_boyer_moore_horspool_searcherhttp://en.cppreference.com/w/cpp/utility/functional/boyer_moore_horspool_searcherw#Q/std::boyer_moore_horspool_searcherhttp://en.cppreference.com/w/cpp/utility/functional/boyer_moore_horspool_searcherj"Ustd::pmr::synchronized_pool_resourcehttp://en.cppreference.com/w/cpp/memory/synchronized_pool_resource !k?std::weibull_distribution::weibull_distributionhttp://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/weibull_distribution~ ]1std::subtract_with_carry_engine::discardhttp://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/discardi-std::scoped_allocator_adaptor::outer_allocatorhttp://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/outer_allocatorD3iC++ keywords: usinghttp://en.cppreference.com/w/cpp/keyword/using`G std::shared_ptr::owner_beforehttp://en.cppreference.com/w/cpp/memory/shared_ptr/owner_before[Astd::error_code::operator=http://en.cppreference.com/w/cpp/error/error_code/operator%3D {/std::filesystem::directory_iterator::directory_iteratorhttp://en.cppreference.com/w/cpp/filesystem/directory_iterator/directory_iteratorhMstd::experimental::make_optionalhttp://en.cppreference.com/w/cpp/experimental/optional/make_optionalJ/ystd::list::assignhttp://en.cppreference.com/w/cpp/container/list/assignW;std::dynarray::dynarrayhttp://en.cppreference.com/w/cpp/container/dynarray/dynarrayq_std::experimental::shared_ptr::operator[]http://en.cppreference.com/w/cpp/experimental/shared_ptr/operator_atC+ostd::bad_typeidhttp://en.cppreference.com/w/cpp/types/bad_typeidYI}std::swap(std::basic_ofstream)http://en.cppreference.com/w/cpp/io/basic_ofstream/swap2_MC++ concepts: EqualityComparablehttp://en.cppreference.com/w/cpp/concept/EqualityComparableUQmStandard library header http://en.cppreference.com/w/cpp/header/typeinfoX?std::basic_string::inserthttp://en.cppreference.com/w/cpp/string/basic_string/insertM7wstd:: std::fesetroundhttp://en.cppreference.com/w/cpp/numeric/fenv/feroundG+wstd::fegetroundhttp://en.cppreference.com/w/cpp/numeric/fenv/feround\= std::valarray::operator!http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith\= std::valarray::operator~http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith\ = std::valarray::operator-http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith\ = std::valarray::operator+http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith *_’Øz   B æ | ( Ò z  Å ‚ , Í w Äy½o«±QÓ_ú{8ò¤QÀ_^_Istd::basic_ostringstream::swaphttp://en.cppreference.com/w/cpp/io/basic_ostringstream/swap>^qstd::cbrthttp://en.cppreference.com/w/cpp/numeric/math/cbrtM]1}std::unordered_sethttp://en.cppreference.com/w/cpp/container/unordered_setP\=wConstraints and conceptshttp://en.cppreference.com/w/cpp/language/constraintsK[EeNull-terminated wide stringshttp://en.cppreference.com/w/cpp/string/wideCZ#wExpressionshttp://en.cppreference.com/w/cpp/language/expressions@Y!sstd::hypothttp://en.cppreference.com/w/cpp/numeric/math/hypot|X} std::basic_string_view:: std::basic_string_view::crbeginhttp://en.cppreference.com/w/cpp/string/basic_string_view/rbeginbWI std::basic_string_view::rbeginhttp://en.cppreference.com/w/cpp/string/basic_string_view/rbeginqVUstd::unordered_set::max_bucket_counthttp://en.cppreference.com/w/cpp/container/unordered_set/max_bucket_count{Ug!std::pmr::synchronized_pool_resource::optionshttp://en.cppreference.com/w/cpp/memory/synchronized_pool_resource/options]TA std::unordered_set::rehashhttp://en.cppreference.com/w/cpp/container/unordered_set/rehashSSOkStandard library header http://en.cppreference.com/w/cpp/header/cstdint R=std::experimental::pmr::unsynchronized_pool_resource::do_deallocatehttp://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/do_deallocateoQWstd::error_condition::error_conditionhttp://en.cppreference.com/w/cpp/error/error_condition/error_condition_P[wStandard library header http://en.cppreference.com/w/cpp/header/unordered_set Oq9std::recursive_timed_mutex::~recursive_timed_mutexhttp://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/%7Erecursive_timed_mutex]NEstd::basic_regex::mark_counthttp://en.cppreference.com/w/cpp/regex/basic_regex/mark_countKM/{std::forward_listhttp://en.cppreference.com/w/cpp/container/forward_listSL?{std::basic_ostream::flushhttp://en.cppreference.com/w/cpp/io/basic_ostream/flushcKO std::uses_allocatorhttp://en.cppreference.com/w/cpp/thread/promise/uses_allocatorHJ-wstd::queue::backhttp://en.cppreference.com/w/cpp/container/queue/backBI1gC++ keywords: longhttp://en.cppreference.com/w/cpp/keyword/longkHYC++ concepts: UnformattedInputFunctionhttp://en.cppreference.com/w/cpp/concept/UnformattedInputFunctionSG7std::set::upper_boundhttp://en.cppreference.com/w/cpp/container/set/upper_bound\FA std::shared_ptr::operator=http://en.cppreference.com/w/cpp/memory/shared_ptr/operator%3DSE=}std::ios_base::~ios_basehttp://en.cppreference.com/w/cpp/io/ios_base/%7Eios_base@D'mstd::try_lockhttp://en.cppreference.com/w/cpp/thread/try_lockUC7std::deque::operator=http://en.cppreference.com/w/cpp/container/deque/operator%3DZBEstd::basic_istream::readsomehttp://en.cppreference.com/w/cpp/io/basic_istream/readsomeUA?std::basic_ios::operator!http://en.cppreference.com/w/cpp/io/basic_ios/operator%21S@7std::map::upper_boundhttp://en.cppreference.com/w/cpp/container/map/upper_boundQ?=ystd::basic_ios::setstatehttp://en.cppreference.com/w/cpp/io/basic_ios/setstateg>Ostd::match_results::match_resultshttp://en.cppreference.com/w/cpp/regex/match_results/match_resultsY=Astd::match_results::lengthhttp://en.cppreference.com/w/cpp/regex/match_results/length[<= std::multiset::operator=http://en.cppreference.com/w/cpp/container/multiset/operator%3Dj;Gstd::slice_array::slice_arrayhttp://en.cppreference.com/w/cpp/numeric/valarray/slice_array/slice_arrayj:Istd::shuffle_order_engine::minhttp://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/min[9WsStandard library header http://en.cppreference.com/w/cpp/header/type_traits<8!kwhile loophttp://en.cppreference.com/w/cpp/language/whilex7W+std::exponential_distribution::lambdahttp://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/lambdak6Mstd::forward_list::~forward_listhttp://en.cppreference.com/w/cpp/container/forward_list/%7Eforward_list (µ:éZ © ; ë § M Ý ‹ 2 Ù i œ _ôñ¬V°Wv(àlÀZív/Úg!µiž]std::hash(std::experimental::shared_ptr)http://en.cppreference.com/w/cpp/experimental/shared_ptr/hashCž#wIdentifiershttp://en.cppreference.com/w/cpp/language/identifierspžO#std::fisher_f_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/paramRžAwstd::filesystem::copy_filehttp://en.cppreference.com/w/cpp/filesystem/copy_fileDž!{std::slicehttp://en.cppreference.com/w/cpp/numeric/valarray/slicetžastd::istream_iterator::operator operator->http://en.cppreference.com/w/cpp/iterator/istream_iterator/operator%2AjžMstd::istream_iterator::operator*http://en.cppreference.com/w/cpp/iterator/istream_iterator/operator%2AcžSstd::experimental::bad_array_lengthhttp://en.cppreference.com/w/cpp/memory/new/bad_array_lengthS;std::numpunct::numpuncthttp://en.cppreference.com/w/cpp/locale/numpunct/numpunctS~OkStandard library header http://en.cppreference.com/w/cpp/header/codecvtq}Ustd::unordered_multiset::equal_rangehttp://en.cppreference.com/w/cpp/container/unordered_multiset/equal_rangeE|#{std::getenvhttp://en.cppreference.com/w/cpp/utility/program/getenvK{7sstd::basic_ios::clearhttp://en.cppreference.com/w/cpp/io/basic_ios/clear zy3std::pmr::polymorphic_allocator::polymorphic_allocatorhttp://en.cppreference.com/w/cpp/memory/polymorphic_allocator/polymorphic_allocatorMy1}std::find_first_ofhttp://en.cppreference.com/w/cpp/algorithm/find_first_ofVxAExtensions for concurrencyhttp://en.cppreference.com/w/cpp/experimental/concurrencyQw9}std::weak_ptr::expiredhttp://en.cppreference.com/w/cpp/memory/weak_ptr/expiredOv/std::fetestexcepthttp://en.cppreference.com/w/cpp/numeric/fenv/fetestexceptSu?{std::basic_istream::ungethttp://en.cppreference.com/w/cpp/io/basic_istream/ungetBt)ostd::time_basehttp://en.cppreference.com/w/cpp/locale/time_base sy-std::experimental::basic_string_view::find_last_not_ofhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/find_last_not_ofrrQ%std::chi_squared_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/chi_squared_distribution/minhqQstd::basic_ostream::~basic_ostreamhttp://en.cppreference.com/w/cpp/io/basic_ostream/%7Ebasic_ostream:pistd::prevhttp://en.cppreference.com/w/cpp/iterator/prevmogstd::time_get:: std::time_get::do_get_weekdayhttp://en.cppreference.com/w/cpp/locale/time_get/get_weekdayZnAstd::time_get::get_weekdayhttp://en.cppreference.com/w/cpp/locale/time_get/get_weekdaymmYstd::make_error_code(std::future_errc)http://en.cppreference.com/w/cpp/thread/future_errc/make_error_codeVl5 std:: std::legendrelhttp://en.cppreference.com/w/cpp/numeric/special_math/legendreVk5 std:: std::legendrefhttp://en.cppreference.com/w/cpp/numeric/special_math/legendreOj' std::legendrehttp://en.cppreference.com/w/cpp/numeric/special_math/legendremikstd::match_results:: std::match_results::cbeginhttp://en.cppreference.com/w/cpp/regex/match_results/beginWh?std::match_results::beginhttp://en.cppreference.com/w/cpp/regex/match_results/beginAg#sstd::wcscathttp://en.cppreference.com/w/cpp/string/wide/wcscatMf5ystd::shared_ptr::gethttp://en.cppreference.com/w/cpp/memory/shared_ptr/getkeOstd::reverse_iterator::operator->http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator%2AjdMstd::reverse_iterator::operator*http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator%2AAcwstd::exithttp://en.cppreference.com/w/cpp/utility/program/exit bw1std::pmr::unsynchronized_pool_resource::do_deallocatehttp://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/do_deallocateNa9wstatic_cast conversionhttp://en.cppreference.com/w/cpp/language/static_castB`3astd::experimental::pmr::unsynchronized_pool_resource::~unsynchronized_pool_resourcehttp://en.cppreference.com/w/cpp/experimental/unsynchronized_pool_resource/%7Eunsynchronized_pool_resource ,s’ Áq À K È ƒ A  l  È l ý ¥ S¿h+ÃGì°p×”,¸\ù–;ËtÈ€*×saž3Wstd::multiset:: std::multiset::cbeginhttp://en.cppreference.com/w/cpp/container/multiset/beginPž25std::multiset::beginhttp://en.cppreference.com/w/cpp/container/multiset/beginSž1Iqstd:: std::is_nothrow_callablehttp://en.cppreference.com/w/cpp/types/is_callableEž0-qstd::is_callablehttp://en.cppreference.com/w/cpp/types/is_callableIž/5qstd::ios_base::pwordhttp://en.cppreference.com/w/cpp/io/ios_base/pword]ž.A std::unordered_set::key_eqhttp://en.cppreference.com/w/cpp/container/unordered_set/key_eqTž-=Move assignment operatorhttp://en.cppreference.com/w/cpp/language/move_assignmentmž,istd::basic_string:: std::basic_string::crbeginhttp://en.cppreference.com/w/cpp/string/basic_string/rbeginXž+?std::basic_string::rbeginhttp://en.cppreference.com/w/cpp/string/basic_string/rbegin`ž*?std:: std::comp_ellint_3lhttp://en.cppreference.com/w/cpp/numeric/special_math/comp_ellint_3`ž)?std:: std::comp_ellint_3fhttp://en.cppreference.com/w/cpp/numeric/special_math/comp_ellint_3Yž(1std::comp_ellint_3http://en.cppreference.com/w/cpp/numeric/special_math/comp_ellint_3qž'i std::experimental::filesystem::path::root_namehttp://en.cppreference.com/w/cpp/experimental/fs/path/root_nameež&Mstd::numeric_limits::round_errorhttp://en.cppreference.com/w/cpp/types/numeric_limits/round_error@ž%'mstd::messageshttp://en.cppreference.com/w/cpp/locale/messagesAž$1eUndefined behaviorhttp://en.cppreference.com/w/cpp/language/ubRž#Awstd::filesystem::file_sizehttp://en.cppreference.com/w/cpp/filesystem/file_size=ž"%istd::is_enumhttp://en.cppreference.com/w/cpp/types/is_enum9ž!istd::maxhttp://en.cppreference.com/w/cpp/algorithm/maxXž G}std::filesystem::copy_optionshttp://en.cppreference.com/w/cpp/filesystem/copy_optionsyžI;>>(std::binomial_distribution)http://en.cppreference.com/w/cpp/numeric/random/binomial_distribution/operator_ltltgtgtež!;operator<http://en.cppreference.com/w/cpp/header/ctimeUžA}std::swap(std::unique_ptr)http://en.cppreference.com/w/cpp/memory/unique_ptr/swap2lžcstd::experimental::filesystem::current_pathhttp://en.cppreference.com/w/cpp/experimental/fs/current_pathYžCreinterpret_cast conversionhttp://en.cppreference.com/w/cpp/language/reinterpret_castPž/operator delete[]http://en.cppreference.com/w/cpp/memory/new/operator_deleteNž+operator deletehttp://en.cppreference.com/w/cpp/memory/new/operator_deleteSž7std::multimap::inserthttp://en.cppreference.com/w/cpp/container/multimap/insert|žc'std::shared_timed_mutex::shared_timed_mutexhttp://en.cppreference.com/w/cpp/thread/shared_timed_mutex/shared_timed_mutex?žsFunctionshttp://en.cppreference.com/w/cpp/language/functionsBž1gstd:: std::vsscanfhttp://en.cppreference.com/w/cpp/io/c/vfscanfBž1gstd:: std::vfscanfhttp://en.cppreference.com/w/cpp/io/c/vfscanf;ž#gstd::vscanfhttp://en.cppreference.com/w/cpp/io/c/vfscanfržastd::experimental::basic_string_view::datahttp://en.cppreference.com/w/cpp/experimental/basic_string_view/dataZž Istd::experimental::erased_typehttp://en.cppreference.com/w/cpp/experimental/erased_typeQž =ystd::codecvt:: do_lengthhttp://en.cppreference.com/w/cpp/locale/codecvt/lengthMž 5ystd::codecvt::lengthhttp://en.cppreference.com/w/cpp/locale/codecvt/length\ž ? std::dynarray::operator[]http://en.cppreference.com/w/cpp/container/dynarray/operator_atož Qstd::unordered_map::~unordered_maphttp://en.cppreference.com/w/cpp/container/unordered_map/%7Eunordered_mapkžgC++ concepts: MoveConstructible (since C++11)http://en.cppreference.com/w/cpp/concept/MoveConstructible +©ŸS˜8 Ï ; ë †  µ J   > ê ¥ ` ɲe¸Eô{ ³aÅy&¨U=ø©Lž^-std::isunorderedhttp://en.cppreference.com/w/cpp/numeric/math/isunorderedBž])ostd::has_facethttp://en.cppreference.com/w/cpp/locale/has_facetPž\5std::set::value_comphttp://en.cppreference.com/w/cpp/container/set/value_comptž[]std::uses_allocatorhttp://en.cppreference.com/w/cpp/container/priority_queue/uses_allocatorKžZ3wstd::locale::localehttp://en.cppreference.com/w/cpp/locale/locale/localePžY/Function templatehttp://en.cppreference.com/w/cpp/language/function_template{žXostd::experimental::pmr::memory_resource::allocatehttp://en.cppreference.com/w/cpp/experimental/memory_resource/allocatePžW9{std::basic_regex::swaphttp://en.cppreference.com/w/cpp/regex/basic_regex/swapIžV#std::not_fnhttp://en.cppreference.com/w/cpp/utility/functional/not_fn@žU!sstd::atanhhttp://en.cppreference.com/w/cpp/numeric/math/atanhVžTC}std::swap(std::basic_regex)http://en.cppreference.com/w/cpp/regex/basic_regex/swap2OžS+std::in_place_thttp://en.cppreference.com/w/cpp/utility/optional/in_place_tVžR=std::packaged_task::swaphttp://en.cppreference.com/w/cpp/thread/packaged_task/swaplžQSstd::condition_variable::wait_untilhttp://en.cppreference.com/w/cpp/thread/condition_variable/wait_untilvžPestd::experimental::basic_string_view::substrhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/substrNžO3}std::dynarray::datahttp://en.cppreference.com/w/cpp/container/dynarray/datapžNO#std::independent_bits_engine::maxhttp://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/max^žM9>=(std::move_iterator)http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_cmpIžL>http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_cmpJžK<=http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_cmpQžJoperator/ystd::vector::swaphttp://en.cppreference.com/w/cpp/container/vector/swapž=[7std::geometric_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/operator%28%29bž<M std::ios_base::register_callbackhttp://en.cppreference.com/w/cpp/io/ios_base/register_callbackMž;5ystd::locale::classichttp://en.cppreference.com/w/cpp/locale/locale/classicž:-std::experimental::pmr::synchronized_pool_resource::releasehttp://en.cppreference.com/w/cpp/experimental/synchronized_pool_resource/releasefž9[std::hash http://en.cppreference.com/w/cpp/experimental/optional/hash]ž8Estd::match_results::positionhttp://en.cppreference.com/w/cpp/regex/match_results/positionyž7qstd::experimental::filesystem::path::relative_pathhttp://en.cppreference.com/w/cpp/experimental/fs/path/relative_path<ž6!kstd::ctimehttp://en.cppreference.com/w/cpp/chrono/c/ctimeIž5+{std::owner_lesshttp://en.cppreference.com/w/cpp/memory/owner_less_void^ž4E std::shared_future::wait_forhttp://en.cppreference.com/w/cpp/thread/shared_future/wait_for +w­Tó™G ú ¤ W  —  “ ( Ü € & Û o $È€)Ï‹´;ð¦Gþ¾q0ÉIÁ^ ·LâwhŸ Istd::move_iterator::operator+=http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_arithgŸGstd::move_iterator::operator+http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_arithhŸIstd::move_iterator::operator++http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_arithPŸ5std::list::pop_fronthttp://en.cppreference.com/w/cpp/container/list/pop_frontQŸ+ FLT_EVAL_METHODhttp://en.cppreference.com/w/cpp/types/climits/FLT_EVAL_METHOD`ŸOstd::experimental::future::futurehttp://en.cppreference.com/w/cpp/experimental/future/futureŸq)std:: std::hardware_constructive_interference_sizehttp://en.cppreference.com/w/cpp/thread/hardware_destructive_interference_size}Ÿc)std::hardware_destructive_interference_sizehttp://en.cppreference.com/w/cpp/thread/hardware_destructive_interference_sizedŸGstd::basic_string::operator+=http://en.cppreference.com/w/cpp/string/basic_string/operator%2B%3D>Ÿ-cC++ keywords: ifhttp://en.cppreference.com/w/cpp/keyword/ifJž9oC++ concepts: Lockablehttp://en.cppreference.com/w/cpp/concept/Lockable=ž~!mstd::arrayhttp://en.cppreference.com/w/cpp/container/arrayFž}5kC++ keywords: xor_eqhttp://en.cppreference.com/w/cpp/keyword/xor_eq\ž|Estd::ostrstream::~ostrstreamhttp://en.cppreference.com/w/cpp/io/ostrstream/%7EostrstreamGž{)ystd::iswxdigithttp://en.cppreference.com/w/cpp/string/wide/iswxdigitHžz7mC++ keywords: mutablehttp://en.cppreference.com/w/cpp/keyword/mutablevžyO/std::reference_wrapper::operator=http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/operator%3DdžxGoperator+(std::move_iterator)http://en.cppreference.com/w/cpp/iterator/move_iterator/operator%2BmžwYstd::pmr::memory_resource::do_allocatehttp://en.cppreference.com/w/cpp/memory/memory_resource/do_allocateAžv#sstd::wcstokhttp://en.cppreference.com/w/cpp/string/wide/wcstokWžuG{std::swap(std::basic_fstream)http://en.cppreference.com/w/cpp/io/basic_fstream/swap2TžtCystd::experimental::weak_ptrhttp://en.cppreference.com/w/cpp/experimental/weak_ptrEžs%yCopy elisionhttp://en.cppreference.com/w/cpp/language/copy_elisionYžrUqStandard library header http://en.cppreference.com/w/cpp/header/functionalHžq/ustd::memory_orderhttp://en.cppreference.com/w/cpp/atomic/memory_orderižpQstd::swap(std::unordered_multiset)http://en.cppreference.com/w/cpp/container/unordered_multiset/swap2Hžo-wstd::list::mergehttp://en.cppreference.com/w/cpp/container/list/mergeWžnMustd:: std::is_nothrow_assignablehttp://en.cppreference.com/w/cpp/types/is_assignableYžmQustd:: std::is_trivially_assignablehttp://en.cppreference.com/w/cpp/types/is_assignableIžl1ustd::is_assignablehttp://en.cppreference.com/w/cpp/types/is_assignablehžkSstd::basic_iostream::basic_iostreamhttp://en.cppreference.com/w/cpp/io/basic_iostream/basic_iostreamžjk3std::uses_allocatorhttp://en.cppreference.com/w/cpp/experimental/lib_extensions/promise/uses_allocatorwžiU+std::piecewise_constant_distributionhttp://en.cppreference.com/w/cpp/numeric/random/piecewise_constant_distributionnžhI%std::indirect_array::operator=http://en.cppreference.com/w/cpp/numeric/valarray/indirect_array/operator%3DLžg%std::getlinehttp://en.cppreference.com/w/cpp/string/basic_string/getlineJžf/ystd::vector::sizehttp://en.cppreference.com/w/cpp/container/vector/sizeSžeOkStandard library header http://en.cppreference.com/w/cpp/header/cstringJžd3ustd::thread::id::idhttp://en.cppreference.com/w/cpp/thread/thread/id/idOžc;wstd::log(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/logWžbG{std::swap(std::basic_filebuf)http://en.cppreference.com/w/cpp/io/basic_filebuf/swap2^ža[ustd::chrono::abs(std::chrono::duration)http://en.cppreference.com/w/cpp/chrono/duration/absVž`=std::weak_ptr::use_counthttp://en.cppreference.com/w/cpp/memory/weak_ptr/use_countPž_9{std::error_code::clearhttp://en.cppreference.com/w/cpp/error/error_code/clear +k•+À\ ½ i  × ‘ . Õ ˜ R ò | $ Ü ˆù›"¼Xã~6äR£*És'½_÷‹ÄkVŸ4=std::codecvt::max_lengthhttp://en.cppreference.com/w/cpp/locale/codecvt/max_lengthQŸ39}std::integral_constanthttp://en.cppreference.com/w/cpp/types/integral_constantpŸ2cstd:: std::parallel_vector_execution_policyhttp://en.cppreference.com/w/cpp/algorithm/execution_policy_tag_tiŸ1Ustd:: std::parallel_execution_policyhttp://en.cppreference.com/w/cpp/algorithm/execution_policy_tag_teŸ0Mstd::sequential_execution_policyhttp://en.cppreference.com/w/cpp/algorithm/execution_policy_tag_t[Ÿ/? std::unordered_set::counthttp://en.cppreference.com/w/cpp/container/unordered_set/countgŸ.Ostd::bad_exception::bad_exceptionhttp://en.cppreference.com/w/cpp/error/bad_exception/bad_exceptionIŸ--ystd::unique_copyhttp://en.cppreference.com/w/cpp/algorithm/unique_copySŸ,;std::allocator::destroyhttp://en.cppreference.com/w/cpp/memory/allocator/destroy^Ÿ+C std::atomic_flag::operator=http://en.cppreference.com/w/cpp/atomic/atomic_flag/operator%3DvŸ*U)std::exponential_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/exponential_distribution/param^Ÿ)E std::recursive_mutex::unlockhttp://en.cppreference.com/w/cpp/thread/recursive_mutex/unlockKŸ(7sstd::ios_base::xallochttp://en.cppreference.com/w/cpp/io/ios_base/xallocHŸ'){std::isgreaterhttp://en.cppreference.com/w/cpp/numeric/math/isgreaterDŸ&)sstd::localtimehttp://en.cppreference.com/w/cpp/chrono/c/localtimeOŸ%;wstd::basic_ostream::puthttp://en.cppreference.com/w/cpp/io/basic_ostream/putEŸ$-qstd::conjunctionhttp://en.cppreference.com/w/cpp/types/conjunctionbŸ#=std::greater_equalhttp://en.cppreference.com/w/cpp/utility/functional/greater_equal_voidrŸ"estd::experimental::pmr::set_default_resourcehttp://en.cppreference.com/w/cpp/experimental/set_default_resourceaŸ!I std::basic_ostream::operator<http://en.cppreference.com/w/cpp/header/experimental/dynarrayvŸ]!std::recursive_timed_mutex::try_lock_forhttp://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/try_lock_for[Ÿ= std::multimap::~multimaphttp://en.cppreference.com/w/cpp/container/multimap/%7Emultimap Ÿ}+std::experimental::pmr::polymorphic_allocator::operator=http://en.cppreference.com/w/cpp/experimental/polymorphic_allocator/operator%3DQŸ1std::islessgreaterhttp://en.cppreference.com/w/cpp/numeric/math/islessgreaterEŸ)ustd::set_unionhttp://en.cppreference.com/w/cpp/algorithm/set_unionUŸEystd::experimental::any::swaphttp://en.cppreference.com/w/cpp/experimental/any/swapsŸqstd::unordered_map:: std::unordered_map::cend(int)http://en.cppreference.com/w/cpp/container/unordered_map/end2]ŸEstd::unordered_map::end(int)http://en.cppreference.com/w/cpp/container/unordered_map/end2CŸ/kClass declarationhttp://en.cppreference.com/w/cpp/language/class:Ÿ+]Utility libraryhttp://en.cppreference.com/w/cpp/utilityVŸAExtensions for parallelismhttp://en.cppreference.com/w/cpp/experimental/parallelism`ŸG std::is_member_object_pointerhttp://en.cppreference.com/w/cpp/types/is_member_object_pointerCŸ!ystd::raisehttp://en.cppreference.com/w/cpp/utility/program/raiseEŸ'wstd::towlowerhttp://en.cppreference.com/w/cpp/string/wide/towlowerGŸ/sstd::length_errorhttp://en.cppreference.com/w/cpp/error/length_errorQŸ9}std::atomic::fetch_andhttp://en.cppreference.com/w/cpp/atomic/atomic/fetch_andUŸC{The rule of three/five/zerohttp://en.cppreference.com/w/cpp/language/rule_of_threeDŸ3iC++ keywords: floathttp://en.cppreference.com/w/cpp/keyword/floataŸ G std::scoped_allocator_adaptorhttp://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptorhŸ Istd::move_iterator::operator-=http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_arithgŸ Gstd::move_iterator::operator-http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_arithhŸ Istd::move_iterator::operator--http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_arith (‡£Uô€ < ì C ú ™ 4 ä i  ” Ëu+³Dï’2À¦`ú¬9›ª[·DŸ\ <=http://en.cppreference.com/w/cpp/container/vector/operator_cmpCŸ[ http://en.cppreference.com/w/cpp/experimental/shared_ptr/operator%2ApŸU]std::experimental::shared_ptr::operator*http://en.cppreference.com/w/cpp/experimental/shared_ptr/operator%2AKŸT version 2http://en.cppreference.com/w/cpp/experimental/lib_extensions_2cŸSO C++ standard libraries extensionshttp://en.cppreference.com/w/cpp/experimental/lib_extensions_2CŸR%ustd::isdigithttp://en.cppreference.com/w/cpp/string/byte/isdigituŸQ]std::error_code::default_error_conditionhttp://en.cppreference.com/w/cpp/error/error_code/default_error_condition`ŸPKstd::basic_streambuf::showmanychttp://en.cppreference.com/w/cpp/io/basic_streambuf/showmanyc<ŸO#istd::launchhttp://en.cppreference.com/w/cpp/thread/launchoŸN[std::uses_allocatorhttp://en.cppreference.com/w/cpp/thread/packaged_task/uses_allocator]ŸM=operator-(move_iterator)http://en.cppreference.com/w/cpp/iterator/move_iterator/operator-ZŸLEstd::strstreambuf::underflowhttp://en.cppreference.com/w/cpp/io/strstreambuf/underflowRŸK9std::bitset::to_stringhttp://en.cppreference.com/w/cpp/utility/bitset/to_stringlŸJSstd::basic_string::find_last_not_ofhttp://en.cppreference.com/w/cpp/string/basic_string/find_last_not_ofuŸIY#std::unordered_multimap::get_allocatorhttp://en.cppreference.com/w/cpp/container/unordered_multimap/get_allocatorGŸH/sstd::system_errorhttp://en.cppreference.com/w/cpp/error/system_errorSŸG?{std::basic_ifstream::swaphttp://en.cppreference.com/w/cpp/io/basic_ifstream/swapOŸF7{std::atomic::exchangehttp://en.cppreference.com/w/cpp/atomic/atomic/exchangetŸEY!std::wstring_convert::~wstring_converthttp://en.cppreference.com/w/cpp/locale/wstring_convert/%7Ewstring_convertŸDk/std::raw_storage_iterator::raw_storage_iteratorhttp://en.cppreference.com/w/cpp/memory/raw_storage_iterator/raw_storage_iteratorJŸC1wstd::future_statushttp://en.cppreference.com/w/cpp/thread/future_statusxŸBW+std::uniform_real_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/paramMŸA/Namespace aliaseshttp://en.cppreference.com/w/cpp/language/namespace_aliasbŸ@M std::numpunct:: do_thousands_sephttp://en.cppreference.com/w/cpp/locale/numpunct/thousands_sep^Ÿ?E std::numpunct::thousands_sephttp://en.cppreference.com/w/cpp/locale/numpunct/thousands_sepFŸ>-sstd::unique_lockhttp://en.cppreference.com/w/cpp/thread/unique_lock%Ÿ=Wstd::linear_congruential_engine::linear_congruential_enginehttp://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/linear_congruential_engineMŸ<9ustd::strstream::freezehttp://en.cppreference.com/w/cpp/io/strstream/freeze^Ÿ;Istd::pmr::get_default_resourcehttp://en.cppreference.com/w/cpp/memory/get_default_resourcerŸ:estd::experimental::pmr::get_default_resourcehttp://en.cppreference.com/w/cpp/experimental/get_default_resourcekŸ9Sstd::regex_traits::lookup_classnamehttp://en.cppreference.com/w/cpp/regex/regex_traits/lookup_classnameqŸ8k std::time_get:: std::time_get::do_get_monthnamehttp://en.cppreference.com/w/cpp/locale/time_get/get_monthname^Ÿ7E std::time_get::get_monthnamehttp://en.cppreference.com/w/cpp/locale/time_get/get_monthnameKŸ6/{std::reverse_copyhttp://en.cppreference.com/w/cpp/algorithm/reverse_copyZŸ5Estd::codecvt:: do_max_lengthhttp://en.cppreference.com/w/cpp/locale/codecvt/max_length *³ºf ­V ü Ÿ  » a  ³ a  ¼ E ñ Ÿ Jò”E §0§×Š(Ñw%Ô‰CÖa÷w³g U std::chrono::treat_as_floating_pointhttp://en.cppreference.com/w/cpp/chrono/treat_as_floating_pointW ;std::map::get_allocatorhttp://en.cppreference.com/w/cpp/container/map/get_allocator} M?>>(std::mersenne_twister_engine)http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/operator_ltltgtgtg !?operator<http://en.cppreference.com/w/cpp/utility/tuple/tuple_sizeTŸ{9std::num_put::~num_puthttp://en.cppreference.com/w/cpp/locale/num_put/%7Enum_put_ŸzG std::numeric_limits::infinityhttp://en.cppreference.com/w/cpp/types/numeric_limits/infinityJŸy3ustd:: std::strtoullhttp://en.cppreference.com/w/cpp/string/byte/strtoulCŸx%ustd::strtoulhttp://en.cppreference.com/w/cpp/string/byte/strtoulŸwi5std::piecewise_linear_distribution:: densitieshttp://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/paramsŸvg5std::piecewise_linear_distribution::intervalshttp://en.cppreference.com/w/cpp/numeric/random/piecewise_linear_distribution/paramstŸuI1!=(std::fisher_f_distribution)http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/operator_cmp`Ÿt!1operator==http://en.cppreference.com/w/cpp/numeric/random/fisher_f_distribution/operator_cmp8Ÿs%_C++ languagehttp://en.cppreference.com/w/cpp/languageLŸr7ustd::swap(std::tuple)http://en.cppreference.com/w/cpp/utility/tuple/swap2[Ÿq? std::unordered_set::clearhttp://en.cppreference.com/w/cpp/container/unordered_set/clearUŸp5Implicit conversionshttp://en.cppreference.com/w/cpp/language/implicit_conversionRŸo={Explicit type conversionhttp://en.cppreference.com/w/cpp/language/explicit_castOŸn;wstd::tan(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/tanQŸm=ystd::tanh(std::valarray)http://en.cppreference.com/w/cpp/numeric/valarray/tanhtŸlY!>=(std::experimental::propagate_const)http://en.cppreference.com/w/cpp/experimental/propagate_const/operator_cmpOŸk!>http://en.cppreference.com/w/cpp/experimental/propagate_const/operator_cmpPŸj!<=http://en.cppreference.com/w/cpp/experimental/propagate_const/operator_cmpOŸi!=(std::vector)http://en.cppreference.com/w/cpp/container/vector/operator_cmpCŸ] >http://en.cppreference.com/w/cpp/container/vector/operator_cmp *fŠÈ‰ Å o ( ³ O î }  º O ‹ Cé•Gœ#Û–6Ø…&¿EÿŽ ›\ÿ‰ÃfZ 0M{std::deque:: std::deque::crbeginhttp://en.cppreference.com/w/cpp/container/deque/rbeginL /1{std::deque::rbeginhttp://en.cppreference.com/w/cpp/container/deque/rbegint .S'std::uniform_real_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/uniform_real_distribution/maxs -W!std::unordered_multimap::emplace_hinthttp://en.cppreference.com/w/cpp/container/unordered_multimap/emplace_hintZ ,Astd::shared_ptr::use_counthttp://en.cppreference.com/w/cpp/memory/shared_ptr/use_count< +%gstd::setvbufhttp://en.cppreference.com/w/cpp/io/c/setvbufo *Ustd::error_category::~error_categoryhttp://en.cppreference.com/w/cpp/error/error_category/%7Eerror_category~ )m!std::experimental::flex_barrier::arrive_and_waithttp://en.cppreference.com/w/cpp/experimental/flex_barrier/arrive_and_waitn (M!std::student_t_distribution::minhttp://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/minC ''sstd::includeshttp://en.cppreference.com/w/cpp/algorithm/includesw &G9>>(std::weibull_distribution)http://en.cppreference.com/w/cpp/numeric/random/weibull_distribution/operator_ltltgtgtd %!9operator<http://en.cppreference.com/w/cpp/utility/tuple/tuple_elementa G std::basic_string::operator[]http://en.cppreference.com/w/cpp/string/basic_string/operator_atr U!std::back_insert_iterator::operator=http://en.cppreference.com/w/cpp/iterator/back_insert_iterator/operator%3DD 3iC++ keywords: shorthttp://en.cppreference.com/w/cpp/keyword/shortS  ;std::basic_string::datahttp://en.cppreference.com/w/cpp/string/basic_string/dataW  ;std::map::value_comparehttp://en.cppreference.com/w/cpp/container/map/value_compareg  U C++ concepts: FormattedInputFunctionhttp://en.cppreference.com/w/cpp/concept/FormattedInputFunction<  %gPreprocessorhttp://en.cppreference.com/w/cpp/preprocessorI  -ystd::upper_boundhttp://en.cppreference.com/w/cpp/algorithm/upper_bounds m std::experimental::filesystem::path::is_relativehttp://en.cppreference.com/w/cpp/experimental/fs/path/is_absrels m std::experimental::filesystem::path::is_absolutehttp://en.cppreference.com/w/cpp/experimental/fs/path/is_absrel )g¸e»x ¾ _ ù “ ù ¨ @ ê c  ½ j «Vå‘P ¤2©#–O·/«?Ùn ¿gU YC{Extending the namespace stdhttp://en.cppreference.com/w/cpp/language/extending_std^ X=aggregate initializationhttp://en.cppreference.com/w/cpp/language/aggregate_initializationK W+integer literalhttp://en.cppreference.com/w/cpp/language/integer_literalh VOstd::condition_variable::wait_forhttp://en.cppreference.com/w/cpp/thread/condition_variable/wait_forc UGstd::forward_list::push_fronthttp://en.cppreference.com/w/cpp/container/forward_list/push_fronti TMstd::unordered_set::emplace_hinthttp://en.cppreference.com/w/cpp/container/unordered_set/emplace_hint Sg+std::packaged_task::make_ready_at_thread_exithttp://en.cppreference.com/w/cpp/thread/packaged_task/make_ready_at_thread_exit Rs'std::experimental::basic_string_view::find_first_ofhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/find_first_ofN Q7ystd::swap(std::queue)http://en.cppreference.com/w/cpp/container/queue/swap2D P+qstd:: std::fabshttp://en.cppreference.com/w/cpp/numeric/math/fabsD O+qstd::abs(float)http://en.cppreference.com/w/cpp/numeric/math/fabs  N std::experimental:: std::experimental::reinterpret_pointer_casthttp://en.cppreference.com/w/cpp/experimental/shared_ptr/pointer_cast Mstd::experimental:: std::experimental::const_pointer_casthttp://en.cppreference.com/w/cpp/experimental/shared_ptr/pointer_cast Lstd::experimental:: std::experimental::dynamic_pointer_casthttp://en.cppreference.com/w/cpp/experimental/shared_ptr/pointer_casto KYstd::experimental::static_pointer_casthttp://en.cppreference.com/w/cpp/experimental/shared_ptr/pointer_castb JI std::wstring_convert::to_byteshttp://en.cppreference.com/w/cpp/locale/wstring_convert/to_bytesD I}std::not1http://en.cppreference.com/w/cpp/utility/functional/not1> Hqstd::logbhttp://en.cppreference.com/w/cpp/numeric/math/logbQ G;{std::filesystem::u8pathhttp://en.cppreference.com/w/cpp/filesystem/path/u8pathn FI%std::random_device::operator()http://en.cppreference.com/w/cpp/numeric/random/random_device/operator%28%29R E- std::get_deleterhttp://en.cppreference.com/w/cpp/memory/shared_ptr/get_deleterZ DAstd::allocator::deallocatehttp://en.cppreference.com/w/cpp/memory/allocator/deallocate_ CU}std:: std::atomic_fetch_add_explicithttp://en.cppreference.com/w/cpp/atomic/atomic_fetch_addP B7}std::atomic_fetch_addhttp://en.cppreference.com/w/cpp/atomic/atomic_fetch_add_ A=std::normal_distributionhttp://en.cppreference.com/w/cpp/numeric/random/normal_distributionA @#sstd::memcmphttp://en.cppreference.com/w/cpp/string/byte/memcmp ?Parallelized version of existing algorithms (parallelism TS)http://en.cppreference.com/w/cpp/experimental/parallelism/existingS >?{std::basic_fstream::closehttp://en.cppreference.com/w/cpp/io/basic_fstream/closee =Istd::forward_list::erase_afterhttp://en.cppreference.com/w/cpp/container/forward_list/erase_afterN <7ystd::swap(std::deque)http://en.cppreference.com/w/cpp/container/deque/swap2 ; /std::experimental::filesystem::recursive_directory_iterator::pophttp://en.cppreference.com/w/cpp/experimental/fs/recursive_directory_iterator/popc :=std:: std::riemann_zetalhttp://en.cppreference.com/w/cpp/experimental/special_math/riemann_zetac 9=std:: std::riemann_zetafhttp://en.cppreference.com/w/cpp/experimental/special_math/riemann_zeta\ 8/std::riemann_zetahttp://en.cppreference.com/w/cpp/experimental/special_math/riemann_zetaX 73std::function::swaphttp://en.cppreference.com/w/cpp/utility/functional/function/swap\ 6[qImplementation defined behavior controlhttp://en.cppreference.com/w/cpp/preprocessor/impl@ 5/eC++ keywords: tryhttp://en.cppreference.com/w/cpp/keyword/tryS 4- std::logical_nothttp://en.cppreference.com/w/cpp/utility/functional/logical_notQ 39}std::atomic::fetch_addhttp://en.cppreference.com/w/cpp/atomic/atomic/fetch_addP 2;yNon-static data membershttp://en.cppreference.com/w/cpp/language/data_membersE 1?_Input/output manipulatorshttp://en.cppreference.com/w/cpp/io/manip *_¬Qý³v- å 9 ú À k  È e ÷ ¤ EÇHÈU¥?ÈBØ~©V°@Áo ½_[¡Kstd::experimental::future::thenhttp://en.cppreference.com/w/cpp/experimental/future/then`¡I std::basic_ifstream::operator=http://en.cppreference.com/w/cpp/io/basic_ifstream/operator%3DL¡5wstd::type_info::namehttp://en.cppreference.com/w/cpp/types/type_info/nameO¡7{std::char_traits::eofhttp://en.cppreference.com/w/cpp/string/char_traits/eof| g#std::basic_ostringstream::basic_ostringstreamhttp://en.cppreference.com/w/cpp/io/basic_ostringstream/basic_ostringstreamm ~K!std::linear_congruential_enginehttp://en.cppreference.com/w/cpp/numeric/random/linear_congruential_enginea }OC++ standard libraries extensionshttp://en.cppreference.com/w/cpp/experimental/lib_extensions? |)igoto statementhttp://en.cppreference.com/w/cpp/language/gotoP {5std::multiset::counthttp://en.cppreference.com/w/cpp/container/multiset/countq zi std::experimental::filesystem::path::root_pathhttp://en.cppreference.com/w/cpp/experimental/fs/path/root_path^ yWystd::regex_constants::match_flag_typehttp://en.cppreference.com/w/cpp/regex/match_flag_typeW xCstd::basic_istream::putbackhttp://en.cppreference.com/w/cpp/io/basic_istream/putbackg w_std::experimental::filesystem::path::swaphttp://en.cppreference.com/w/cpp/experimental/fs/path/swap vs#std::raw_storage_iterator::operator operator++(int)http://en.cppreference.com/w/cpp/memory/raw_storage_iterator/operator_aritht uW#std::raw_storage_iterator::operator++http://en.cppreference.com/w/cpp/memory/raw_storage_iterator/operator_arithc teustd::sub_match::operator std::sub_match::strhttp://en.cppreference.com/w/cpp/regex/sub_match/str[ sUustd::sub_match::operator string_typehttp://en.cppreference.com/w/cpp/regex/sub_match/strO r;wstd::ios_base::fmtflagshttp://en.cppreference.com/w/cpp/io/ios_base/fmtflagsp q]std::experimental::filesystem::path::...http://en.cppreference.com/w/cpp/experimental/fs/path/generic_string} pwstd::experimental::filesystem::path::generic_u8stringhttp://en.cppreference.com/w/cpp/experimental/fs/path/generic_string| oustd::experimental::filesystem::path::generic_wstringhttp://en.cppreference.com/w/cpp/experimental/fs/path/generic_string{ nsstd::experimental::filesystem::path::generic_stringhttp://en.cppreference.com/w/cpp/experimental/fs/path/generic_string\ m7std::function::assignhttp://en.cppreference.com/w/cpp/utility/functional/function/assignP l5std::multimap::clearhttp://en.cppreference.com/w/cpp/container/multimap/cleark kSstd::error_condition::operator boolhttp://en.cppreference.com/w/cpp/error/error_condition/operator_bool` jG std::char_traits::to_int_typehttp://en.cppreference.com/w/cpp/string/char_traits/to_int_typeO iKgStandard library header http://en.cppreference.com/w/cpp/header/queueN h3}std::vector::inserthttp://en.cppreference.com/w/cpp/container/vector/insertR gCustd::map:: std::map::cbeginhttp://en.cppreference.com/w/cpp/container/map/beginF f+ustd::map::beginhttp://en.cppreference.com/w/cpp/container/map/begin estd::unordered_multimap:: std::unordered_multimap::cend(int)http://en.cppreference.com/w/cpp/container/unordered_multimap/end2g dOstd::unordered_multimap::end(int)http://en.cppreference.com/w/cpp/container/unordered_multimap/end2< c'edo-while loophttp://en.cppreference.com/w/cpp/language/doT b=std::error_code::messagehttp://en.cppreference.com/w/cpp/error/error_code/messageR aIoalignof operator (since C++11)http://en.cppreference.com/w/cpp/language/alignofE `-qstd::future::gethttp://en.cppreference.com/w/cpp/thread/future/getF _-sstd::char_traitshttp://en.cppreference.com/w/cpp/string/char_traits: ^istd::setwhttp://en.cppreference.com/w/cpp/io/manip/setwG ]/sstd::mutex::mutexhttp://en.cppreference.com/w/cpp/thread/mutex/mutexQ \=ystd::basic_ostream::swaphttp://en.cppreference.com/w/cpp/io/basic_ostream/swapX [7 direct initializationhttp://en.cppreference.com/w/cpp/language/direct_initializationQ Z=ystd::swap(std::weak_ptr)http://en.cppreference.com/w/cpp/memory/weak_ptr/swap2 &×¾^ߤ9 Ø V ¹ 8 Ò ~ % ‰ 0  PÔXåž^¡KÔNóm(ß~»Yø–-×S¡);std::future::wait_untilhttp://en.cppreference.com/w/cpp/thread/future/wait_untilf¡(Istd::unordered_map::operator[]http://en.cppreference.com/w/cpp/container/unordered_map/operator_at_¡'E std::shared_ptr::operator >=http://en.cppreference.com/w/cpp/memory/shared_ptr/operator_cmp^¡&C std::shared_ptr::operator >http://en.cppreference.com/w/cpp/memory/shared_ptr/operator_cmp_¡%E std::shared_ptr::operator <=http://en.cppreference.com/w/cpp/memory/shared_ptr/operator_cmp^¡$C std::shared_ptr::operator ¡Aqstd::fminhttp://en.cppreference.com/w/cpp/numeric/math/fmin^¡@E std::unique_ptr::get_deleterhttp://en.cppreference.com/w/cpp/memory/unique_ptr/get_deleterC¡?%ustd::wcsxfrmhttp://en.cppreference.com/w/cpp/string/wide/wcsxfrmQ¡>9}std::atomic::fetch_xorhttp://en.cppreference.com/w/cpp/atomic/atomic/fetch_xorR¡=9std::optional::emplacehttp://en.cppreference.com/w/cpp/utility/optional/emplace_¡<U}std::dynarray:: std::dynarray::crendhttp://en.cppreference.com/w/cpp/container/dynarray/rendN¡;3}std::dynarray::rendhttp://en.cppreference.com/w/cpp/container/dynarray/rendn¡:e std::experimental::filesystem::is_block_filehttp://en.cppreference.com/w/cpp/experimental/fs/is_block_fileq¡9Ustd::unordered_map::insert_or_assignhttp://en.cppreference.com/w/cpp/container/unordered_map/insert_or_assignf¡8c}C++ concepts: NullablePointer (since C++11)http://en.cppreference.com/w/cpp/concept/NullablePointere¡7Istd::move_iterator::operator[]http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_at¡6o3std::recursive_timed_mutex::recursive_timed_mutexhttp://en.cppreference.com/w/cpp/thread/recursive_timed_mutex/recursive_timed_mutexC¡5%ustd::isalphahttp://en.cppreference.com/w/cpp/string/byte/isalphaF¡4#}std::mbrlenhttp://en.cppreference.com/w/cpp/string/multibyte/mbrlenY¡3=std::forward_list::emptyhttp://en.cppreference.com/w/cpp/container/forward_list/emptyd¡2?>=(std::reverse_iterator)http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_cmpL¡1>http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_cmpM¡0<=http://en.cppreference.com/w/cpp/iterator/reverse_iterator/operator_cmpT¡/operator=(std::dynarray)http://en.cppreference.com/w/cpp/container/dynarray/operator_cmpE¡m >http://en.cppreference.com/w/cpp/container/dynarray/operator_cmpF¡l <=http://en.cppreference.com/w/cpp/container/dynarray/operator_cmpE¡k http://en.cppreference.com/w/cpp/header/ciso646W¡[Cstd::basic_filebuf::is_openhttp://en.cppreference.com/w/cpp/io/basic_filebuf/is_opene¡ZIstd::move_iterator::operator->http://en.cppreference.com/w/cpp/iterator/move_iterator/operator%2Ad¡YGstd::move_iterator::operator*http://en.cppreference.com/w/cpp/iterator/move_iterator/operator%2AS¡XOkStandard library header http://en.cppreference.com/w/cpp/header/clocale_¡WC std::unordered_set::reservehttp://en.cppreference.com/w/cpp/container/unordered_set/reserve\¡VA std::money_get::~money_gethttp://en.cppreference.com/w/cpp/locale/money_get/%7Emoney_get¡Us'std::experimental::basic_string_view::remove_prefixhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/remove_prefixO¡T;wstd::ios_base::openmodehttp://en.cppreference.com/w/cpp/io/ios_base/openmodeS¡S?{std::basic_istream::tellghttp://en.cppreference.com/w/cpp/io/basic_istream/tellg ,n™,ÁO û ° ^  œ  ² 1 á ” Q Ü ” Sü¯V”'Ïp Æn ³Gî­`Òw+Ö‘%¡n0¢''MC++ referencehttp://en.cppreference.com/w/cpp¢&[7std::lognormal_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/lognormal_distribution/operator%28%29i¢%Sstd::auto_ptr::operator auto_ptrhttp://en.cppreference.com/w/cpp/memory/auto_ptr/operator_auto_ptrB¢$'qstd::get_timehttp://en.cppreference.com/w/cpp/io/manip/get_timeR¢#5std::partition_pointhttp://en.cppreference.com/w/cpp/algorithm/partition_pointI¢"-yBoolean literalshttp://en.cppreference.com/w/cpp/language/bool_literalX¢!?std::basic_string::resizehttp://en.cppreference.com/w/cpp/string/basic_string/resizeE¢ %yMemory modelhttp://en.cppreference.com/w/cpp/language/memory_modelC¢%ustd::isspacehttp://en.cppreference.com/w/cpp/string/byte/isspaceJ¢1wstd::shared_futurehttp://en.cppreference.com/w/cpp/thread/shared_future>¢qstd::sinhhttp://en.cppreference.com/w/cpp/numeric/math/sinhV¢9std::declare_reachablehttp://en.cppreference.com/w/cpp/memory/gc/declare_reachablei¢Mstd::unordered_multimap::emplacehttp://en.cppreference.com/w/cpp/container/unordered_multimap/emplacej¢Istd::student_t_distribution::nhttp://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/nK¢%std::greaterhttp://en.cppreference.com/w/cpp/utility/functional/greaterU¢/ std::unary_negatehttp://en.cppreference.com/w/cpp/utility/functional/unary_negateW¢Cstd::basic_streambuf::pbumphttp://en.cppreference.com/w/cpp/io/basic_streambuf/pbumpM¢'std::functionhttp://en.cppreference.com/w/cpp/utility/functional/function\¢Gstd::basic_istringstream::strhttp://en.cppreference.com/w/cpp/io/basic_istringstream/strU¢A}std::basic_ofstream::rdbufhttp://en.cppreference.com/w/cpp/io/basic_ofstream/rdbufj¢eStandard library header http://en.cppreference.com/w/cpp/header/condition_variableq¢]std::pmr::memory_resource::do_deallocatehttp://en.cppreference.com/w/cpp/memory/memory_resource/do_deallocateK¢7sstd::strstream::rdbufhttp://en.cppreference.com/w/cpp/io/strstream/rdbufV¢E{std::filesystem::file_statushttp://en.cppreference.com/w/cpp/filesystem/file_statusJ¢9oC++ concepts: Erasablehttp://en.cppreference.com/w/cpp/concept/ErasableT¢3Overload resolutionhttp://en.cppreference.com/w/cpp/language/overload_resolution>¢ qstd::asinhttp://en.cppreference.com/w/cpp/numeric/math/asinE¢ 1mFilesystem libraryhttp://en.cppreference.com/w/cpp/experimental/fsr¢ Q%std::geometric_distribution::paramhttp://en.cppreference.com/w/cpp/numeric/random/geometric_distribution/param@¢ 'mstd::weak_ptrhttp://en.cppreference.com/w/cpp/memory/weak_ptrJ¢ /ystd::list::splicehttp://en.cppreference.com/w/cpp/container/list/spliceM¢9ustd::log(std::complex)http://en.cppreference.com/w/cpp/numeric/complex/log~¢e)std::enable_shared_from_this::weak_from_thishttp://en.cppreference.com/w/cpp/memory/enable_shared_from_this/weak_from_thisS¢7std::tuple::operator=http://en.cppreference.com/w/cpp/utility/tuple/operator%3D¢u=std::condition_variable_any::~condition_variable_anyhttp://en.cppreference.com/w/cpp/thread/condition_variable_any/%7Econdition_variable_anyc¢Qstd::chrono::high_resolution_clockhttp://en.cppreference.com/w/cpp/chrono/high_resolution_clockY¢Astd::match_results::formathttp://en.cppreference.com/w/cpp/regex/match_results/formatO¢7{std:: std::nexttowardhttp://en.cppreference.com/w/cpp/numeric/math/nextafterH¢){std::nextafterhttp://en.cppreference.com/w/cpp/numeric/math/nextafterQ¢9}std::atomic::fetch_subhttp://en.cppreference.com/w/cpp/atomic/atomic/fetch_subo¡Qstd::unordered_multimap::operator=http://en.cppreference.com/w/cpp/container/unordered_multimap/operator%3Dh¡~Gstd::cauchy_distribution::maxhttp://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/maxj¡}astd::experimental::filesystem::resize_filehttp://en.cppreference.com/w/cpp/experimental/fs/resize_filed¡|Gstd::transform_inclusive_scanhttp://en.cppreference.com/w/cpp/algorithm/transform_inclusive_scan +izºV é t  Í ` ó †  ¬ ; Î aó…•Eü‹0چ̃:ñ¨[É5ã‹N½iQ¢RCsstd::experimental::dynarrayhttp://en.cppreference.com/w/cpp/container/dynarrayT¢Q7std::stable_partitionhttp://en.cppreference.com/w/cpp/algorithm/stable_partition7¢PkPImplhttp://en.cppreference.com/w/cpp/language/pimpl:¢O!gstd::mutexhttp://en.cppreference.com/w/cpp/thread/mutexU¢N-|| std::valarrayhttp://en.cppreference.com/w/cpp/numeric/valarray/operator_arith3O¢M!&&http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith3G¢L>>http://en.cppreference.com/w/cpp/numeric/valarray/operator_arith3G¢K<E)std::is_error_condition_enumhttp://en.cppreference.com/w/cpp/error/error_condition/is_error_condition_enumF¢=-sstd::timed_mutexhttp://en.cppreference.com/w/cpp/thread/timed_mutexM¢<1}std::copy_backwardhttp://en.cppreference.com/w/cpp/algorithm/copy_backward¢;g/std::istreambuf_iterator::istreambuf_iteratorhttp://en.cppreference.com/w/cpp/iterator/istreambuf_iterator/istreambuf_iteratorg¢:Kstd::unordered_multiset::inserthttp://en.cppreference.com/w/cpp/container/unordered_multiset/insertk¢9E#std::mask_array::operator>>=http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator_arithk¢8E#std::mask_array::operator<<=http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator_arithj¢7C#std::mask_array::operator^=http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator_arithj¢6C#std::mask_array::operator|=http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator_arithn¢5K#std::mask_array::operator&=http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator_arithj¢4C#std::mask_array::operator%=http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator_arithj¢3C#std::mask_array::operator/=http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator_arithj¢2C#std::mask_array::operator*=http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator_arithj¢1C#std::mask_array::operator-=http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator_arithj¢0C#std::mask_array::operator+=http://en.cppreference.com/w/cpp/numeric/valarray/mask_array/operator_arithC¢/%ustd::tolowerhttp://en.cppreference.com/w/cpp/string/byte/tolower^¢.Mstd::filesystem::path::extensionhttp://en.cppreference.com/w/cpp/filesystem/path/extensionr¢-astd::experimental::optional::operator boolhttp://en.cppreference.com/w/cpp/experimental/optional/operator_boolj¢,_std::experimental::erase_if (std::vector)http://en.cppreference.com/w/cpp/experimental/vector/erase_ifa¢+Estd::priority_queue::emplacehttp://en.cppreference.com/w/cpp/container/priority_queue/emplace]¢*Estd::error_category::messagehttp://en.cppreference.com/w/cpp/error/error_category/message]¢)A std::priority_queue::emptyhttp://en.cppreference.com/w/cpp/container/priority_queue/empty¢(i-std::enable_shared_from_this::shared_from_thishttp://en.cppreference.com/w/cpp/memory/enable_shared_from_this/shared_from_this +y´9ÑY — & Ø ƒ . å Ž ( Ú N ô ž d ²[ù·m×p uÈŒIFá3ì›,ÅyI¢}1ustd::messages::gethttp://en.cppreference.com/w/cpp/locale/messages/getd¢|O std::basic_istream::basic_istreamhttp://en.cppreference.com/w/cpp/io/basic_istream/basic_istreaml¢{Kstd::normal_distribution::resethttp://en.cppreference.com/w/cpp/numeric/random/normal_distribution/resetN¢z5{std::time_put_bynamehttp://en.cppreference.com/w/cpp/locale/time_put_bynameD¢y+qstd::hash::hashhttp://en.cppreference.com/w/cpp/utility/hash/hashZ¢xWqC++ keywords: constexpr (since C++11)http://en.cppreference.com/w/cpp/keyword/constexprN¢w7ystd::swap(std::array)http://en.cppreference.com/w/cpp/container/array/swap2b¢vI std::shared_lock::try_lock_forhttp://en.cppreference.com/w/cpp/thread/shared_lock/try_lock_forF¢u5kC++ keywords: statichttp://en.cppreference.com/w/cpp/keyword/statict¢tgstd::experimental::pmr::polymorphic_allocatorhttp://en.cppreference.com/w/cpp/experimental/polymorphic_allocator@¢s/estd:: std::sscanfhttp://en.cppreference.com/w/cpp/io/c/fscanf@¢r/estd:: std::fscanfhttp://en.cppreference.com/w/cpp/io/c/fscanf9¢q!estd::scanfhttp://en.cppreference.com/w/cpp/io/c/fscanfT¢pCystd::experimental::to_arrayhttp://en.cppreference.com/w/cpp/experimental/to_arrayS¢o;std::future_error::codehttp://en.cppreference.com/w/cpp/thread/future_error/code¢n}5std::filesystem::recursive_directory_iterator::operator=http://en.cppreference.com/w/cpp/filesystem/recursive_directory_iterator/operator%3Dd¢mKstd::unique_lock::operator boolhttp://en.cppreference.com/w/cpp/thread/unique_lock/operator_boold¢la{C++ concepts: MoveAssignable (since C++11)http://en.cppreference.com/w/cpp/concept/MoveAssignable¢kw?std::uses_allocatorhttp://en.cppreference.com/w/cpp/experimental/lib_extensions/packaged_task/uses_allocatorG¢j;gEmpty base optimizationhttp://en.cppreference.com/w/cpp/language/ebo?¢i'kstd::is_consthttp://en.cppreference.com/w/cpp/types/is_const_¢h7>>(std::basic_string)http://en.cppreference.com/w/cpp/string/basic_string/operator_ltltgtgtT¢g!operator<::scan_ishttp://en.cppreference.com/w/cpp/locale/ctype_char/scan_is¢ag;std::cauchy_distribution::cauchy_distributionhttp://en.cppreference.com/w/cpp/numeric/random/cauchy_distribution/cauchy_distributionK¢`?kstd::iscntrl(std::locale)http://en.cppreference.com/w/cpp/locale/iscntrlc¢_;std::float_denorm_stylehttp://en.cppreference.com/w/cpp/types/numeric_limits/float_denorm_styleT¢^Gustd::deque:: std::deque::cendhttp://en.cppreference.com/w/cpp/container/deque/endF¢]+ustd::deque::endhttp://en.cppreference.com/w/cpp/container/deque/endR¢\1std:: std::expintlhttp://en.cppreference.com/w/cpp/numeric/special_math/expintR¢[1std:: std::expintfhttp://en.cppreference.com/w/cpp/numeric/special_math/expintK¢Z#std::expinthttp://en.cppreference.com/w/cpp/numeric/special_math/expintn¢Yc std::experimental::erase_if (std::multimap)http://en.cppreference.com/w/cpp/experimental/multimap/erase_if¢Xc-std::unordered_multiset::unordered_multisethttp://en.cppreference.com/w/cpp/container/unordered_multiset/unordered_multiset=¢Wostd::atofhttp://en.cppreference.com/w/cpp/string/byte/atofu¢Vq std::atomic:: std::atomic::compare_exchange_stronghttp://en.cppreference.com/w/cpp/atomic/atomic/compare_exchangee¢UQ std::atomic::compare_exchange_weakhttp://en.cppreference.com/w/cpp/atomic/atomic/compare_exchangex¢TW+std::linear_congruential_engine::seedhttp://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/seedI¢S1ustd::runtime_errorhttp://en.cppreference.com/w/cpp/error/runtime_error )Œ°\ • ñ ´ q ! Ä m  ¼ 6 ª 2 Ê k ÖŒ¸[ÄPâ|¼hÞašDÜ–)ìŒ]£&? std::bad_array_new_lengthhttp://en.cppreference.com/w/cpp/memory/new/bad_array_new_length:£%#estd::ferrorhttp://en.cppreference.com/w/cpp/io/c/ferrorj£$Ostd::basic_string_view::operator=http://en.cppreference.com/w/cpp/string/basic_string_view/operator%3DC£#%ustd::isblankhttp://en.cppreference.com/w/cpp/string/byte/isblanke£"Istd::unordered_multiset::clearhttp://en.cppreference.com/w/cpp/container/unordered_multiset/clearS£!;std::make_exception_ptrhttp://en.cppreference.com/w/cpp/error/make_exception_ptrs£ _std::pmr::polymorphic_allocator::resourcehttp://en.cppreference.com/w/cpp/memory/polymorphic_allocator/resourceN£5{std::numpunct_bynamehttp://en.cppreference.com/w/cpp/locale/numpunct_bynamez£U1std::normal_distribution::operator()http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/operator%28%29:£istd::endshttp://en.cppreference.com/w/cpp/io/manip/endsJ£9ostd::experimental::anyhttp://en.cppreference.com/w/cpp/experimental/anyQ£9}std::shared_lock::lockhttp://en.cppreference.com/w/cpp/thread/shared_lock/lockP£/std::ratio_dividehttp://en.cppreference.com/w/cpp/numeric/ratio/ratio_dividej£Istd::discard_block_engine::minhttp://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/minc£K std::numeric_limits::denorm_minhttp://en.cppreference.com/w/cpp/types/numeric_limits/denorm_mink£[ std::make_error_condition(std::io_errc)http://en.cppreference.com/w/cpp/io/io_errc/make_error_conditionq£mC++ concepts: EmplaceConstructible (since C++11)http://en.cppreference.com/w/cpp/concept/EmplaceConstructible£9std::pmr::unsynchronized_pool_resource::upstream_resourcehttp://en.cppreference.com/w/cpp/memory/unsynchronized_pool_resource/upstream_resourceZ£Estd::basic_stringstream::strhttp://en.cppreference.com/w/cpp/io/basic_stringstream/strE£'wstd::iswdigithttp://en.cppreference.com/w/cpp/string/wide/iswdigit£c?std::linear_congruential_engine::operator()http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/operator%28%29G£%}std::longjmphttp://en.cppreference.com/w/cpp/utility/program/longjmpD£)sstd::map::swaphttp://en.cppreference.com/w/cpp/container/map/swapK£AiC numeric limits interfacehttp://en.cppreference.com/w/cpp/types/climits\£Gstd::basic_filebuf::pbackfailhttp://en.cppreference.com/w/cpp/io/basic_filebuf/pbackfaile£ Cstd::lognormal_distributionhttp://en.cppreference.com/w/cpp/numeric/random/lognormal_distributionu£ astd::pmr::polymorphic_allocator::constructhttp://en.cppreference.com/w/cpp/memory/polymorphic_allocator/construct£ g;std::normal_distribution::normal_distributionhttp://en.cppreference.com/w/cpp/numeric/random/normal_distribution/normal_distribution£ q%std::filesystem::directory_entry::replace_filenamehttp://en.cppreference.com/w/cpp/filesystem/directory_entry/replace_filename]£ S{std:: std::atomic_exchange_explicithttp://en.cppreference.com/w/cpp/atomic/atomic_exchangeN£5{std::atomic_exchangehttp://en.cppreference.com/w/cpp/atomic/atomic_exchangeT£Kqnoexcept operator (since C++11)http://en.cppreference.com/w/cpp/language/noexceptZ£IC++ concepts: SharedTimedMutexhttp://en.cppreference.com/w/cpp/concept/SharedTimedMutexM£'std::equal_tohttp://en.cppreference.com/w/cpp/utility/functional/equal_to@£%ostd::asctimehttp://en.cppreference.com/w/cpp/chrono/c/asctime:£koffsetofhttp://en.cppreference.com/w/cpp/types/offsetof £7std::experimental::observer_ptr::operator std::experimental::observer_ptr::operator->http://en.cppreference.com/w/cpp/experimental/observer_ptr/operator%2At£astd::experimental::observer_ptr::operator*http://en.cppreference.com/w/cpp/experimental/observer_ptr/operator%2AM£7wSource file inclusionhttp://en.cppreference.com/w/cpp/preprocessor/includeQ¢MiStandard library header http://en.cppreference.com/w/cpp/header/limitsM¢~9ustd::messages:: do_gethttp://en.cppreference.com/w/cpp/locale/messages/get ò¤/ò:£)#estd::setbufhttp://en.cppreference.com/w/cpp/io/c/setbufr£(astd::experimental::basic_string_view::findhttp://en.cppreference.com/w/cpp/experimental/basic_string_view/findY£'=std::unordered_set::sizehttp://en.cppreference.com/w/cpp/container/unordered_set/sizecppman-0.4.8/cppman/lib/pager.sh0000755000175000017500000000346012707131531020113 0ustar aitjcizeaitjcize00000000000000#!/usr/bin/env bash # # pager.sh # # Copyright (C) 2010 - 2016 Wei-Ning Huang (AZ) # All Rights reserved. # # This file is part of cppman. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # # Script arguments: # $1: pager type # $2: page path # $3: column # $4: vim config # $5: page name get_dev_type() { dev=ascii for var in $LC_ALL $LANG; do if [ -n "`echo $var | sed 's/-//g' | grep -i utf8`" ]; then dev=utf8 break fi done echo $dev } output_dev=$(get_dev_type) pager_type=$1 page_path=$2 col=$3 vim_config=$4 page_name=$5 render() { gunzip -c "$page_path" | \ groff -t -c -m man -T$output_dev -rLL=${col}n -rLT=${col}n 2>/dev/null } remove_escape() { escape=$(echo -e '\033') sed "s/$escape\[[^m]*m//g" | col -x -b } if [ "$pager_type" == "vim" ]; then if ! which vim >/dev/null 2>&1; then pager_type=less fi fi case $pager_type in system) [ -z "$PAGER" ] && PAGER=less render | $PAGER ;; vim) render | remove_escape | \ vim -R -c "let g:page_name=\"$page_name\"" -S $vim_config - ;; less) render | less ;; pipe) render | remove_escape esac cppman-0.4.8/cppman/environ.py0000644000175000017500000000303312707131531017736 0ustar aitjcizeaitjcize00000000000000# -*- coding: utf-8 -*- # # environ.py # # Copyright (C) 2010 - 2015 Wei-Ning Huang (AZ) # All Rights reserved. # # This file is part of cppman. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # import os from cppman import get_lib_path from cppman.config import Config HOME = os.path.expanduser('~') man_dir = HOME + '/.local/share/man/' config_dir = HOME + '/.config/cppman/' config_file = config_dir + 'cppman.cfg' config = Config(config_file) try: os.makedirs(config_dir) except: pass index_db_re = os.path.normpath(os.path.join(config_dir, 'index.db')) index_db = index_db_re if os.path.exists(index_db_re) \ else get_lib_path('index.db') pager = config.Pager pager_config = get_lib_path('cppman.vim') pager_script = get_lib_path('pager.sh') source = config.Source if source not in config.SOURCES: source = config.SOURCES[0] config.Source = source cppman-0.4.8/cppman/config.py0000644000175000017500000000543212651075645017543 0ustar aitjcizeaitjcize00000000000000# -*- coding: utf-8 -*- # # config.py # # Copyright (C) 2010 - 2015 Wei-Ning Huang (AZ) # All Rights reserved. # # This file is part of cppman. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # import configparser import os class Config(object): PAGERS = ['vim', 'less', 'system'] SOURCES = ['cplusplus.com', 'cppreference.com'] DEFAULTS = { 'Source': 'cplusplus.com', 'UpdateManPath': 'false', 'Pager': 'vim' } def __init__(self, configfile): self._configfile = configfile if not os.path.exists(configfile): self.set_default() else: self._config = configparser.RawConfigParser() self._config.read(self._configfile) def __getattr__(self, name): try: value = self._config.get('Settings', name) except configparser.NoOptionError: value = self.DEFAULTS[name] setattr(self, name, value) self._config.read(self._configfile) return self.parse_bool(value) def __setattr__(self, name, value): if not name.startswith('_'): self._config.set('Settings', name, value) self.save() self.__dict__[name] = self.parse_bool(value) def set_default(self): """Set config to default.""" try: os.makedirs(os.path.dirname(self._configfile)) except: pass self._config = configparser.RawConfigParser() self._config.add_section('Settings') for key, val in self.DEFAULTS.items(): self._config.set('Settings', key, val) with open(self._configfile, 'w') as f: self._config.write(f) def save(self): """Store config back to file.""" try: os.makedirs(os.path.dirname(self._configfile)) except: pass with open(self._configfile, 'w') as f: self._config.write(f) def parse_bool(self, val): if type(val) == str: if val.lower() == 'true': return True elif val.lower() == 'false': return False return val cppman-0.4.8/cppman/main.pyc0000644000175000017500000002351412707101117017350 0ustar aitjcizeaitjcize00000000000000ó +|Wc@s¶ddlZddlZddlZddlZddlZddlZddlZddlZddlZ ddl m Z ddl m Z ddl mZdefd„ƒYZdS(iÿÿÿÿN(tenviron(tutil(tCrawlertCppmancBsŒeZdZedd„Zd„Zd„Zd„Zd„Zd„Z d„Z d „Z d „Z d „Z ed „Zd „Zd„ZRS(sManage cpp man pages, indexesiÿÿÿÿcCsVtj|ƒtƒ|_||_d|_d|_||_g|_ dg|_ dS(Ns/http://www.cplusplus.com/reference/string/swap/( Rt__init__tsettresultstforcedtNonet success_countt failure_countt force_columnst blacklisttname_exceptions(tselfRR ((s)/home/aitjcize/Work/cppman/cppman/main.pyR*s       cCs^tjd|ƒjdƒ}tjdd|ƒ}tjdd|ƒ}tjdd|ƒ}|S( s$Extract man page name from web page.s]*>(.+?)is <([^>]+)>ts>t>s<t<(tretsearchtgrouptsub(Rtdatatname((s)/home/aitjcize/Work/cppman/cppman/main.pyt extract_name8s c Cs…ytjtjƒWnnXtjtjƒ|_|jjƒ|_|jj dƒ|jj dƒz yÝ|j dƒ|j t j ƒ|jdƒx*|jD]\}}|jd||ƒqŸW|jjƒ|jj dƒjƒ}x÷|D]ï\}}|jj d|ƒjƒ}xÄ|D]¼\}}||jkr|jdƒrQ|d n|}y#tjd ||ƒjd ƒ} Wn,tk r¨tjd |ƒjd ƒ} nXd || f} |jj d| ||fƒqqWqîW|jjƒtƒ|_|jddƒx*|jD]\}}|jd||ƒqW|jjƒWn'tk rntjtjƒt‚nXWd|jjƒXdS(s?Rebuild index database from cplusplus.com and cppreference.com.sBCREATE TABLE "cplusplus.com" (name VARCHAR(255), url VARCHAR(255))sECREATE TABLE "cppreference.com" (name VARCHAR(255), url VARCHAR(255))s$\.(jpg|jpeg|gif|png|js|css|swf|svg)$s#http://www.cplusplus.com/reference/s cplusplus.comsSSELECT name, COUNT(name) AS NON FROM "cplusplus.com" GROUP BY NAME HAVING (NON > 1)s5SELECT name, url FROM "cplusplus.com" WHERE name="%s"sstd::is /([^/]+)/%s/$is/([^/]+)/[^/]+/$s%s (%s)s=UPDATE "cplusplus.com" SET name="%s", url="%s" WHERE url="%s"s http://en.cppreference.com/w/cpps/w/cppscppreference.comN(tostremoveRt index_db_retsqlite3tconnecttdb_conntcursort db_cursortexecutetadd_url_filtertset_follow_modeRt F_SAME_PATHtcrawlRt insert_indextcommittfetchallR t startswithRRRt ExceptionRtKeyboardInterrupttclose( RRturlt duplicatestnumtdumptntutn2Rtnew_name((s)/home/aitjcize/Work/cppman/cppman/main.pyt rebuild_index@sP    #     cCs`|j|jkrLd|jGH|j|jƒ}|jj||jfƒnd|jGHdSdS(scallback to insert indexsIndexing '%s' ...s"Skipping blacklisted page '%s' ...N(R-R RttextRtaddR(RtdocR((s)/home/aitjcize/Work/cppman/cppman/main.pytprocess_document~s   cCsº|jdƒ}t|ƒdkr‚tjd|dƒ}|r‚|jdƒ}|jdƒ|dscCs,|j|ƒ}tjjtj||dƒS(Ns.3.gz(RuRRJR\RRI(RROR((s)/home/aitjcize/Work/cppman/cppman/main.pyR[As(t__name__t __module__t__doc__RTRRR5R9R&RYRPRpR‡RR’RSRuR[(((s)/home/aitjcize/Work/cppman/cppman/main.pyR(s  >  7   5   (RfRcRRRnRRRvturllib.requestR_tcppmanRRtcppman.crawlerRR(((s)/home/aitjcize/Work/cppman/cppman/main.pyts         cppman-0.4.8/cppman/environ.pyc0000644000175000017500000000201312527364535020112 0ustar aitjcizeaitjcize00000000000000ó ‹g8Tc@s]ddlZddlmZddlmZejjdƒZedZedZ e dZ ee ƒZ yej e ƒWnnXejj ejje dƒƒZejjeƒr¼en edƒZed ƒZe jd kròed ƒZn*e jd kred ƒZn edƒZe jZee jkrMe jdZee _nedƒZdS(iÿÿÿÿN(t get_lib_path(tConfigt~s/.local/share/man/s/.config/cppman/s cppman.cfgsindex.dbs cppman.vimtvims pager_vim.shtlesss pager_less.shspager_system.shis render.sh(tostcppmanRt cppman.configRtpatht expandusertHOMEtman_dirt config_dirt config_filetconfigtmakedirstnormpathtjoint index_db_retexiststindex_dbt pager_configtpagertSourcetsourcetSOURCEStrenderer(((s,/home/aitjcize/Work/cppman/cppman/environ.pyts2     !      cppman-0.4.8/cppman/formatter/0000755000175000017500000000000012707135217017715 5ustar aitjcizeaitjcize00000000000000cppman-0.4.8/cppman/formatter/tableparser.py0000644000175000017500000001372312707131531022574 0ustar aitjcizeaitjcize00000000000000# -*- coding: utf-8 -*- # # tableparser.py - format html from cplusplus.com to groff syntax # # Copyright (C) 2010 - 2015 Wei-Ning Huang (AZ) # All Rights reserved. # # This file is part of cppman. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # import io import platform import re NODE = re.compile(r'<\s*([^/]\w*)\s?(.*?)>(.*?)<\s*/\1.*?>', re.S) ATTR = re.compile(r'\s*(\w+?)\s*=\s*([\'"])((?:\\.|(?!\2).)*)\2') class Node(object): def __init__(self, parent, name, attr_list, body): self.parent = parent self.name = name self.body = body self.attr = dict((x[0], x[2]) for x in ATTR.findall(attr_list)) if self.name in ['th', 'td']: self.text = self.strip_tags(self.body) self.children = [] else: self.text = '' self.children = [Node(self, *g) for g in NODE.findall(self.body)] def __repr__(self): return "" % self.name def strip_tags(self, html): if type(html) != str: html = html.group(3) return NODE.sub(self.strip_tags, html) def traverse(self, depth=0): print('%s%s: %s %s' % (' ' * depth, self.name, self.attr, self.text)) for c in self.children: c.traverse(depth + 2) def get_row_width(self): total = 0 assert self.name == 'tr' for c in self.children: if 'colspan' in c.attr: total += int(c.attr['colspan']) else: total += 1 return total def scan_format(self, index=0, width=0, rowspan=None): if rowspan is None: rowspan = {} format_str = '' expand_char = 'x' if platform.system() != 'Darwin' else '' if self.name in ['th', 'td']: extend = ((width == 3 and index == 1) or (width != 3 and width < 5 and index == width - 1)) if self.name == 'th': format_str += 'c%s ' % (expand_char if extend else '') else: format_str += 'l%s ' % (expand_char if extend else '') if 'colspan' in self.attr: for i in range(int(self.attr['colspan']) - 1): format_str += 's ' if 'rowspan' in self.attr and int(self.attr['rowspan']) > 1: rowspan[index] = int(self.attr['rowspan']) - 1 if self.name == 'tr' and len(rowspan) > 0: ci = 0 for i in range(width): if i in rowspan: format_str += '^ ' if rowspan[i] == 1: del rowspan[i] else: rowspan[i] -= 1 else: # There is a row span, but the current number of column is # not enough. Pad empty node when this happens. if ci >= len(self.children): self.children.append(Node(self, 'td', '', '')) format_str += self.children[ci].scan_format(i, width, rowspan) ci += 1 else: if self.children and self.children[0].name == 'tr': width = self.children[0].get_row_width() for i, c in enumerate(self.children): format_str += c.scan_format(i, width, rowspan) if self.name == 'table': format_str += '.\n' elif self.name == 'tr': format_str += '\n' return format_str def gen(self, fd, index=0, last=False, rowspan=None): if rowspan is None: rowspan = {} if self.name == 'table': fd.write('.TS\n') fd.write('allbox tab(|);\n') fd.write(self.scan_format()) elif self.name in ['th', 'td']: fd.write('T{\n%s' % self.text) if 'rowspan' in self.attr and int(self.attr['rowspan']) > 1: rowspan[index] = int(self.attr['rowspan']) - 1 else: fd.write(self.text) if self.name == 'tr' and len(rowspan) > 0: total = len(rowspan) + len(self.children) ci = 0 for i in range(total): if i in rowspan: fd.write('\^%s' % ('|' if i < total - 1 else '')) if rowspan[i] == 1: del rowspan[i] else: rowspan[i] -= 1 else: # There is a row span, but the current number of column is # not enough. Pad empty node when this happens. if ci >= len(self.children): self.children.append(Node(self, 'td', '', '')) self.children[ci].gen(fd, i, i == total - 1, rowspan) ci += 1 else: for i, c in enumerate(self.children): c.gen(fd, i, i == len(self.children) - 1, rowspan) if self.name == 'table': fd.write('.TE\n') fd.write('.sp\n.sp\n') elif self.name == 'tr': fd.write('\n') elif self.name in ['th', 'td']: fd.write('\nT}%s' % ('|' if not last else '')) def parse_table(html): root = Node(None, 'root', '', html) fd = io.StringIO() root.gen(fd) return fd.getvalue() cppman-0.4.8/cppman/formatter/test.txt0000644000175000017500000007717512707134342021454 0ustar aitjcizeaitjcize00000000000000 vector - C++ Reference
class template
<vector>

std::vector

template < class T, class Alloc = allocator<T> > class vector; // generic template
Vector
Vectors are sequence containers representing arrays that can change in size.

Just like arrays, vectors use contiguous storage locations for their elements, which means that their elements can also be accessed using offsets on regular pointers to its elements, and just as efficiently as in arrays. But unlike arrays, their size can change dynamically, with their storage being handled automatically by the container.

Internally, vectors use a dynamically allocated array to store their elements. This array may need to be reallocated in order to grow in size when new elements are inserted, which implies allocating a new array and moving all elements to it. This is a relatively expensive task in terms of processing time, and thus, vectors do not reallocate each time an element is added to the container.

Instead, vector containers may allocate some extra storage to accommodate for possible growth, and thus the container may have an actual capacity greater than the storage strictly needed to contain its elements (i.e., its size). Libraries can implement different strategies for growth to balance between memory usage and reallocations, but in any case, reallocations should only happen at logarithmically growing intervals of size so that the insertion of individual elements at the end of the vector can be provided with amortized constant time complexity (see push_back).

Therefore, compared to arrays, vectors consume more memory in exchange for the ability to manage storage and grow dynamically in an efficient way.

Compared to the other dynamic sequence containers (deques, lists and forward_lists), vectors are very efficient accessing its elements (just like arrays) and relatively efficient adding or removing elements from its end. For operations that involve inserting or removing elements at positions other than the end, they perform worse than the others, and have less consistent iterators and references than lists and forward_lists.

Container properties

Sequence
Elements in sequence containers are ordered in a strict linear sequence. Individual elements are accessed by their position in this sequence.
Dynamic array
Allows direct access to any element in the sequence, even through pointer arithmetics, and provides relatively fast addition/removal of elements at the end of the sequence.
Allocator-aware
The container uses an allocator object to dynamically handle its storage needs.

Template parameters

T
Type of the elements.
Only if T is guaranteed to not throw while moving, implementations can optimize to move elements instead of copying them during reallocations.
Aliased as member type vector::value_type.
Alloc
Type of the allocator object used to define the storage allocation model. By default, the allocator class template is used, which defines the simplest memory allocation model and is value-independent.
Aliased as member type vector::allocator_type.

Member types

member typedefinitionnotes
value_typeThe first template parameter (T)
allocator_typeThe second template parameter (Alloc)defaults to: allocator<value_type>
referenceallocator_type::referencefor the default allocator: value_type&
const_referenceallocator_type::const_referencefor the default allocator: const value_type&
pointerallocator_type::pointerfor the default allocator: value_type*
const_pointerallocator_type::const_pointerfor the default allocator: const value_type*
iteratora random access iterator to value_typeconvertible to const_iterator
const_iteratora random access iterator to const value_type
reverse_iteratorreverse_iterator<iterator>
const_reverse_iteratorreverse_iterator<const_iterator>
difference_typea signed integral type, identical to: iterator_traits<iterator>::difference_typeusually the same as ptrdiff_t
size_typean unsigned integral type that can represent any non-negative value of difference_typeusually the same as size_t
member typedefinitionnotes
value_typeThe first template parameter (T)
allocator_typeThe second template parameter (Alloc)defaults to: allocator<value_type>
referencevalue_type&
const_referenceconst value_type&
pointerallocator_traits<allocator_type>::pointerfor the default allocator: value_type*
const_pointerallocator_traits<allocator_type>::const_pointerfor the default allocator: const value_type*
iteratora random access iterator to value_typeconvertible to const_iterator
const_iteratora random access iterator to const value_type
reverse_iteratorreverse_iterator<iterator>
const_reverse_iteratorreverse_iterator<const_iterator>
difference_typea signed integral type, identical to:
iterator_traits<iterator>::difference_type
usually the same as ptrdiff_t
size_typean unsigned integral type that can represent any non-negative value of difference_typeusually the same as size_t

Member functions


Iterators:

Capacity:

Element access:

Modifiers:

Allocator:

Non-member function overloads


Template specializations

cppman-0.4.8/cppman/formatter/cppreference.py0000644000175000017500000002731212707131531022730 0ustar aitjcizeaitjcize00000000000000# -*- coding: utf-8 -*- # # formatter.py - format html from cplusplus.com to groff syntax # # Copyright (C) 2010 - 2015 Wei-Ning Huang (AZ) # All Rights reserved. # # This file is part of cppman. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # import datetime import re import string import urllib.request from functools import partial from cppman.util import html2man, fixupHTML from cppman.formatter.tableparser import parse_table def member_table_def(g): tbl = parse_table('%s
' % str(g.group(3))) # Escape column with '.' as prefix tbl = re.compile(r'T{\n(\..*?)\nT}', re.S).sub(r'T{\n\E \1\nT}', tbl) return '\n.IP "%s"\n%s\n%s\n' % (g.group(1), g.group(2), tbl) def member_type_function(g): head = re.sub(r'<.*?>', '', g.group(1)).strip() tail = '' cppvertag = re.search('^(.*)(\[(?:(?:since|until) )?C\+\+\d+\])$', head) if cppvertag: head = cppvertag.group(1).strip() tail = ' ' + cppvertag.group(2) if ',' in head: head = ', '.join([x.strip() + '(3)' for x in head.split(',')]) else: head = head.strip() + '(3)' return '\n.IP "%s"\n%s\n' % (head + tail, g.group(2)) NAV_BAR_END = '
.?
' # Format replacement RE list # The '.SE' pseudo macro is described in the function: html2groff rps = [ # Workaround: remove

in t-dcl (r'(.*?)', lambda g: re.sub('

', '', g.group(1)), re.S), # Header, Name (r'(.*?)', r'\n.TH "{{name}}" 3 "%s" "cppreference.com" "C++ Programmer\'s Manual"\n' r'\n.SH "NAME"\n{{name}} {{shortdesc}}\n.SE\n' % datetime.date.today(), re.S), # Defined in header (r'

]*>.*?' + NAV_BAR_END + r'.*?' r'Defined in header (.*?)(.*?)', r'\n.SH "SYNOPSIS"\n#include \1\n.sp\n' r'.nf\n\2\n.fi\n.SE\n' r'\n.SH "DESCRIPTION"\n', re.S), (r'
]*>.*?' + NAV_BAR_END + r'(.*?)', r'\n.SH "SYNOPSIS"\n.nf\n\1\n.fi\n.SE\n' r'\n.SH "DESCRIPTION"\n', re.S), # (r'
]*>.*?' + NAV_BAR_END + r'(.*?)', r'\n.SH "DESCRIPTION"\n\1\n', re.S), # access specifiers (r'
]*>.*?' + NAV_BAR_END + r'(.*?)\s*\([0-9]+\)\s*', r'', 0), # Section headers (r'
.*?

.*?Inherited from\s*(.*?)\s*

', r'\n.SE\n.IEND\n.IBEGIN \1\n', re.S), # Remove tags (r'.*? ?', r'', re.S), (r'[edit]', r'', re.S), (r'\[edit\]', r'', re.S), (r'
.*?
', r'', 0), (r'
.*?
', r'', 0), (r'
]*>.*?
', r'', re.S), (r']*>.*?', r'', re.S), (r'
.*?
', r'', re.S), (r'.*?', r'', re.S), # C++11/14 (r'\(((?:since|until) C\+\+\d+)\)', r' [\1]', re.S), (r'\((C\+\+\d+)\)', r' [\1]', re.S), # Subsections (r']*>\s*(.*)', r'\n.SS "\1"\n', 0), # Group t-lines (r'', r'', re.S), (r'(?:.+?)+', lambda x: re.sub('\s*\s*', r', ', x.group(0)), re.S), # Member type & function second col is group see basic_fstream for example (r'\s*?((?:(?!).)*?)\s*?' r'((?:(?!).)*?)]*>((?:(?!).)*?)' r'(?:(?!).)*?\s*?', member_table_def, re.S), # Section headers (r'.*

(.+?)

', r'\n.SE\n.SH "\1"\n', 0), # Member type & function (r'\n?\s*(.*?)\n?.*?\s*(.*?).*?', member_type_function, re.S), # Parameters (r'.*?\s*(.*?)\n?.*?.*?.*?' r'\s*(.*?).*?', r'\n.IP "\1"\n\2\n', re.S), # 'ul' tag (r'
    ', r'\n.RS 2\n', 0), (r'
', r'\n.RE\n.sp\n', 0), # 'li' tag (r'
  • \s*(.+?)
  • ', r'\n.IP \[bu] 3\n\1\n', re.S), # 'pre' tag (r']*>(.+?)', r'\n.in +2n\n.nf\n\1\n.fi\n.in\n', re.S), # Footer (r'
    ', r'\n.SE\n.IEND\n.SH "REFERENCE"\n' r'cppreference.com, 2015 - All rights reserved.', re.S), # C++ version tag (r'
    ]*>', r'.sp\n\1\n', 0), # Output (r'

    Output:\n?

    ', r'\n.sp\nOutput:\n', re.S), # Paragraph (r'

    (.*?)

    ', r'\n\1\n.sp\n', re.S), (r'
    (.*?)
    ', r'\n\1\n.sp\n', re.S), (r'
    (.*?)
    ', r'\n.RS\n\1\n.RE\n.sp\n', re.S), # 'br' tag (r'
    ', r'\n.br\n', 0), (r'\n.br\n.br\n', r'\n.sp\n', 0), # 'dd' 'dt' tag (r'
    (.+?)
    \s*
    (.+?)
    ', r'\n.IP "\1"\n\2\n', re.S), # Bold (r'(.+?)', r'\n.B \1\n', 0), # Any other tags (r']*>[^<]*', r'', 0), (r'<.*?>', r'', re.S), # Escape (r'^#', r'\#', 0), (r' ', ' ', 0), (r'&#(\d+);', lambda g: chr(int(g.group(1))), 0), # Misc (r'<', r'<', 0), (r'>', r'>', 0), (r'"', r'"', 0), (r'&', r'&', 0), (r' ', r' ', 0), (r'\\([^\^nE])', r'\\\\\1', 0), (r'>/">', r'', 0), (r'/">', r'', 0), # Remove empty sections (r'\n.SH (.+?)\n+.SE', r'', 0), # Remove empty lines (r'\n\s*\n+', r'\n', 0), (r'\n\n+', r'\n', 0), # Preserve \n" in EXAMPLE (r'\\n', r'\en', 0), # Remove leading whitespace (r'^\s+', r'', re.S), # Trailing white-spaces (r'\s+\n', r'\n', re.S), # Remove extra whitespace and newline in .SH/SS/IP section (r'.(SH|SS|IP) "\s*(.*?)\s*\n?"', r'.\1 "\2"', 0), # Remove extra whitespace before .IP bullet (r'(.IP \\\\\[bu\] 3)\n\s*(.*?)\n', r'\1\n\2\n', 0), # Remove extra '\n' before C++ version Tag (don't do it in table) (r'(?'):] data = data[:data.index('
    ') + 25] except ValueError: pass # Remove non-printable characters data = ''.join([x for x in data if x in string.printable]) for table in re.findall( r']*>.*?
    ', data, re.S): tbl = parse_table(table) # Escape column with '.' as prefix tbl = re.compile(r'T{\n(\..*?)\nT}', re.S).sub(r'T{\n\E \1\nT}', tbl) data = data.replace(table, tbl) # Pre replace all for rp in rps: data = re.compile(rp[0], rp[2]).sub(rp[1], data) # Remove non-printable characters data = ''.join([x for x in data if x in string.printable]) # Upper case all section headers for st in re.findall(r'.SH .*\n', data): data = data.replace(st, st.upper()) # Add tags to member/inherited member functions # e.g. insert -> vector::insert # # .SE is a pseudo macro I created which means 'SECTION END' # The reason I use it is because I need a marker to know where section # ends. # re.findall find patterns which does not overlap, which means if I do # this: secs = re.findall(r'\n\.SH "(.+?)"(.+?)\.SH', data, re.S) # re.findall will skip the later .SH tag and thus skip the later section. # To fix this, '.SE' is used to mark the end of the section so the next # '.SH' can be find by re.findall try: idx = data.index('.IEND') except ValueError: idx = None def add_header_multi(prefix, g): if ',' in g.group(1): res = ', '.join(['%s::%s' % (prefix, x.strip()) for x in g.group(1).split(',')]) else: res = '%s::%s' % (prefix, g.group(1)) return '\n.IP "%s"' % res if idx: class_name = name if class_name.startswith('std::'): normalized_class_name = class_name[len('std::'):] else: normalized_class_name = class_name class_member_content = data[:idx] secs = re.findall(r'\.SH "(.+?)"(.+?)\.SE', class_member_content, re.S) for sec, content in secs: # Member functions if ('MEMBER' in sec and 'NON-MEMBER' not in sec and 'INHERITED' not in sec and sec != 'MEMBER TYPES'): content2 = re.sub(r'\n\.IP "([^:]+?)"', partial(add_header_multi, class_name), content) # Replace (constructor) (destructor) content2 = re.sub(r'\(constructor\)', r'%s' % normalized_class_name, content2) content2 = re.sub(r'\(destructor\)', r'~%s' % normalized_class_name, content2) data = data.replace(content, content2) blocks = re.findall(r'\.IBEGIN\s*(.+?)\s*\n(.+?)\.IEND', data, re.S) for inherited_class, content in blocks: content2 = re.sub(r'\.SH "(.+?)"', r'\n.SH "\1 INHERITED FROM %s"' % inherited_class.upper(), content) data = data.replace(content, content2) secs = re.findall(r'\.SH "(.+?)"(.+?)\.SE', content, re.S) for sec, content in secs: # Inherited member functions if 'MEMBER' in sec and \ sec != 'MEMBER TYPES': content2 = re.sub(r'\n\.IP "(.+)"', partial(add_header_multi, inherited_class), content) data = data.replace(content, content2) # Remove unneeded pseudo macro data = re.sub('(?:\n.SE|.IBEGIN.*?\n|\n.IEND)', '', data) # Replace all macros desc_re = re.search(r'.SH "DESCRIPTION"\n.*?([^\n\s].*?)\n', data) shortdesc = '' # not empty description if desc_re and not desc_re.group(1).startswith('.SH'): shortdesc = '- ' + desc_re.group(1) def dereference(g): d = dict(name=name, shortdesc=shortdesc) if g.group(1) in d: return d[g.group(1)] data = re.sub('{{(.*?)}}', dereference, data) return data def func_test(): """Test if there is major format changes in cplusplus.com""" ifs = urllib.request.urlopen('http://en.cppreference.com/w/cpp/container/vector') result = html2groff(fixupHTML(ifs.read()), 'std::vector') assert '.SH "NAME"' in result assert '.SH "SYNOPSIS"' in result assert '.SH "DESCRIPTION"' in result def test(): """Simple Text""" ifs = urllib.request.urlopen('http://en.cppreference.com/w/cpp/container/vector') print(html2groff(fixupHTML(ifs.read()), 'std::vector'), end=' ') #with open('test.html') as ifs: # data = fixupHTML(ifs.read()) # print html2groff(data, 'std::vector'), if __name__ == '__main__': test() cppman-0.4.8/cppman/formatter/test.html0000644000175000017500000007245212323765377021606 0ustar aitjcizeaitjcize00000000000000 <atomic> - C++ Reference
    header

    <atomic>

    Atomic
    Atomic types are types that encapsulate a value whose access is guaranteed to not cause data races and can be used to synchronize memory accesses among different threads.

    This header declares two C++ classes, atomic and atomic_flag, that implement all the features of atomic types in self-contained classes. The header also declares an entire set of C-style types and functions compatible with the atomic support in C.

    Classes


    Types


    C-style atomic types

    The following atomic types are also defined in this header; each with the same behavior as the respective instantiation of atomic for the listed contained type.
    contained typeatomic typedescription
    boolatomic_bool
    charatomic_charatomics for fundamental integral types.
    These are either typedefs of the corresponding full specialization of the atomic class template or a base class of such specialization.
    signed charatomic_schar
    unsigned charatomic_uchar
    shortatomic_short
    unsigned shortatomic_ushort
    intatomic_int
    unsigned intatomic_uint
    longatomic_long
    unsigned longatomic_ulong
    long longatomic_llong
    unsigned long longatomic_ullong
    wchar_tatomic_wchar_t
    char16_tatomic_char16_t
    char32_tatomic_char32_t
    intmax_tatomic_intmax_tatomics for width-based integrals (those defined in <cinttypes>).
    Each of these is either an alias of one of the above atomics for fundamental integral types or of a full specialization of the atomic class template with an extended integral type.

    Where N is one in 8, 16, 32, 64, or any other type width supported by the library.
    uintmax_tatomic_uintmax_t
    int_leastN_tatomic_int_leastN_t
    uint_leastN_tatomic_uint_leastN_t
    int_fastN_tatomic_int_fastN_t
    uint_fastN_tatomic_uint_fastN_t
    intptr_tatomic_intptr_t
    uintptr_tatomic_uintptr_t
    size_tatomic_size_t
    ptrdiff_tatomic_ptrdiff_t

    Functions


    Functions for atomic objects (C-style)


    Functions for atomic flags (C-style)


    Macro functions


    Macro constants

    macrorelative to typesdefined as
    ATOMIC_BOOL_LOCK_FREEbool0 if the types are never lock-free.
    1 it the types are sometimes lock-free.
    2 if the types are always lock-free.

    Consistent with the value returned by atomic::is_lock_free.
    ATOMIC_CHAR_LOCK_FREEchar
    signed char
    unsigned char
    ATOMIC_SHORT_LOCK_FREEshort
    unsigned short
    ATOMIC_INT_LOCK_FREEint
    unsigned int
    ATOMIC_LONG_LOCK_FREElong
    unsigned long
    ATOMIC_LLONG_LOCK_FREElong long
    unsigned long long
    ATOMIC_WCHAR_T_LOCK_FREEwchar_t
    ATOMIC_CHAR16_T_LOCK_FREEchar16_t
    ATOMIC_CHAR32_T_LOCK_FREEchar32_t
    ATOMIC_POINTER_LOCK_FREEU*
    (for any type U)
    cppman-0.4.8/cppman/formatter/cplusplus.py0000644000175000017500000002167012707135132022323 0ustar aitjcizeaitjcize00000000000000# -*- coding: utf-8 -*- # # formatter.py - format html from cplusplus.com to groff syntax # # Copyright (C) 2010 - 2015 Wei-Ning Huang (AZ) # All Rights reserved. # # This file is part of cppman. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # import datetime import re import urllib.request from cppman.util import html2man, fixupHTML from cppman.formatter.tableparser import parse_table # Format replacement RE list # The '.SE' pseudo macro is described in the function: html2groff pre_rps = [ # Snippet, ugly hack: we don't want to treat code listing as table (r'(.*?)
    ', r'\n.in +2n\n\1\n.in\n.sp\n', re.S), ] rps = [ # Header, Name (r'\s*
    ]*>(.*?)\s*
    \s*' r'
    ]*>(.*?)
    \s*' r'

    (.*?)

    \s*
    ]*>' r'(.*?)
    \s*
    ]*>(.*?)
    ', r'.TH "\3" 3 "%s" "cplusplus.com" "C++ Programmer\'s Manual"\n' r'\n.SH "NAME"\n\3 - \5\n' r'\n.SE\n.SH "TYPE"\n\1\n' r'\n.SE\n.SH "SYNOPSIS"\n#include \2\n.sp\n\4\n' r'\n.SE\n.SH "DESCRIPTION"\n' % datetime.date.today(), re.S), (r'\s*
    ]*>(.*?)\s*
    \s*' r'
    ]*>(.*?)
    \s*' r'

    (.*?)

    \s*' r'
    ]*>(.*?)
    ', r'.TH "\3" 3 "%s" "cplusplus.com" "C++ Programmer\'s Manual"\n' r'\n.SH "NAME"\n\3 - \4\n' r'\n.SE\n.SH "TYPE"\n\1\n' r'\n.SE\n.SH "SYNOPSIS"\n#include \2\n.sp\n' r'\n.SE\n.SH "DESCRIPTION"\n' % datetime.date.today(), re.S), (r'\s*
    ]*>(.*?)\s*
    \s*

    (.*?)

    \s*' r'
    ]*>(.*?)
    ', r'.TH "\2" 3 "%s" "cplusplus.com" "C++ Programmer\'s Manual"\n' r'\n.SH "NAME"\n\2 - \3\n' r'\n.SE\n.SH "TYPE"\n\1\n' r'\n.SE\n.SH "DESCRIPTION"\n' % datetime.date.today(), re.S), (r'\s*
    ]*>(.*?)\s*
    \s*

    (.*?)

    \s*' r'
    ]*>(.*?)
    \s*
    ]*>' '(.*?)
    ', r'.TH "\2" 3 "%s" "cplusplus.com" "C++ Programmer\'s Manual"\n' r'\n.SH "NAME"\n\2 - \4\n' r'\n.SE\n.SH "TYPE"\n\1\n' r'\n.SE\n.SH "DESCRIPTION"\n' % datetime.date.today(), re.S), (r'\s*
    ]*>(.*?)\s*
    \s*

    (.*?)

    \s*' r'
    ]*>(.*?)
    \s*' r'
    ]*>(.*?)
    ', r'.TH "\2" 3 "%s" "cplusplus.com" "C++ Programmer\'s Manual"\n' r'\n.SH "NAME"\n\2 - \4\n' r'\n.SE\n.SH "TYPE"\n\1\n' r'\n.SE\n.SH "SYNOPSIS"\n\3\n' r'\n.SE\n.SH "DESCRIPTION"\n' % datetime.date.today(), re.S), (r']*>', r' [C++11]', re.S), # Remove empty #include (r'#include \n.sp\n', r'', 0), # Remove empty sections (r'\n.SH (.+?)\n+.SE', r'', 0), # Section headers (r'.*

    (.+?)

    ', r'\n.SE\n.SH "\1"\n', 0), # 'ul' tag (r'
      ', r'\n.RS 2\n', 0), (r'
    ', r'\n.RE\n.sp\n', 0), # 'li' tag (r'
  • \s*(.+?)
  • ', r'\n.IP \[bu] 3\n\1\n', re.S), # 'pre' tag (r']*>(.+?)', r'\n.nf\n\1\n.fi\n', re.S), # Subsections (r'(.+?):
    ', r'.SS \1\n', 0), # Member functions / See Also table # Without C++11 tag (r'', r'\n.IP "\1(3)"\n\2 (\3)\n', re.S), # With C++11 tag (r'', r'\n.IP "\1(3) [\2]"\n\3 (\4)\n', re.S), # Footer (r'
    .*$', r'\n.SE\n.SH "REFERENCE"\n' r'cplusplus.com, 2000-2015 - All rights reserved.', re.S), # C++ version tag (r']*>', r'.sp\n\1\n', 0), # 'br' tag (r'
    ', r'\n.br\n', 0), (r'\n.br\n.br\n', r'\n.sp\n', 0), # 'dd' 'dt' tag (r'
    (.+?)
    \s*
    (.+?)
    ', r'.IP "\1"\n\2\n', re.S), # Bold (r'(.+?)', r'\n.B \1\n', 0), # Remove row number in EXAMPLE (r'.*?', r'', re.S), # Any other tags (r']*>[^<]*', r'', 0), (r'<.*?>', r'', re.S), # Misc (r'<', r'<', 0), (r'>', r'>', 0), (r'"', r'"', 0), (r'&', r'&', 0), (r' ', r' ', 0), (r'\\([^\^nE])', r'\\\\\1', 0), (r'>/">', r'', 0), (r'/">', r'', 0), # Remove empty lines (r'\n\s*\n+', r'\n', 0), (r'\n\n+', r'\n', 0), # Preserve \n" in EXAMPLE (r'\\n', r'\en', 0), ] def escape_pre_section(table): """Escape
     seciton in table."""
        def replace_newline(g):
            return g.group(1).replace('\n', '\n.br\n')
    
        return re.sub('(.*?)
    ', replace_newline, table, flags=re.S) def html2groff(data, name): """Convert HTML text from cplusplus.com to Groff-formated text.""" # Remove sidebar try: data = data[data.index('
    '):] except ValueError: pass # Pre replace all for rp in pre_rps: data = re.compile(rp[0], rp[2]).sub(rp[1], data) for table in re.findall(r'.*?', data, re.S): tbl = parse_table(escape_pre_section(table)) # Escape column with '.' as prefix tbl = re.compile(r'T{\n(\..*?)\nT}', re.S).sub(r'T{\n\E \1\nT}', tbl) data = data.replace(table, tbl) # Replace all for rp in rps: data = re.compile(rp[0], rp[2]).sub(rp[1], data) # Upper case all section headers for st in re.findall(r'.SH .*\n', data): data = data.replace(st, st.upper()) # Add tags to member/inherited member functions # e.g. insert -> vector::insert # # .SE is a pseudo macro I created which means 'SECTION END' # The reason I use it is because I need a marker to know where section # ends. # re.findall find patterns which does not overlap, which means if I do # this: secs = re.findall(r'\n\.SH "(.+?)"(.+?)\.SH', data, re.S) # re.findall will skip the later .SH tag and thus skip the later section. # To fix this, '.SE' is used to mark the end of the section so the next # '.SH' can be find by re.findall page_type = re.search(r'\n\.SH "TYPE"\n(.+?)\n', data) if page_type and 'class' in page_type.group(1): class_name = re.search(r'\n\.SH "NAME"\n(?:.*::)?(.+?) ', data).group(1) secs = re.findall(r'\n\.SH "(.+?)"(.+?)\.SE', data, re.S) for sec, content in secs: # Member functions if ('MEMBER' in sec and 'NON-MEMBER' not in sec and 'INHERITED' not in sec and sec != 'MEMBER TYPES'): content2 = re.sub(r'\n\.IP "([^:]+?)"', r'\n.IP "%s::\1"' % class_name, content) # Replace (constructor) (destructor) content2 = re.sub(r'\(constructor\)', r'%s' % class_name, content2) content2 = re.sub(r'\(destructor\)', r'~%s' % class_name, content2) data = data.replace(content, content2) # Inherited member functions elif 'MEMBER' in sec and 'INHERITED' in sec: inherit = re.search(r'.+?INHERITED FROM (.+)', sec).group(1).lower() content2 = re.sub(r'\n\.IP "(.+)"', r'\n.IP "%s::\1"' % inherit, content) data = data.replace(content, content2) # Remove pseudo macro '.SE' data = data.replace('\n.SE', '') return data def func_test(): """Test if there is major format changes in cplusplus.com""" ifs = urllib.request.urlopen('http://www.cplusplus.com/printf') result = html2groff(fixupHTML(ifs.read()), 'printf') assert '.SH "NAME"' in result assert '.SH "TYPE"' in result assert '.SH "DESCRIPTION"' in result def test(): """Simple Text""" ifs = urllib.request.urlopen('http://www.cplusplus.com/vector') print(html2groff(fixupHTML(ifs.read()), 'std::vector'), end=' ') # with open('test.html') as ifs: # print html2groff(fixupHTML(ifs.read()), 'std::vector'), if __name__ == '__main__': test() cppman-0.4.8/cppman/formatter/.swp0000600000175000017500000003000012707133163020506 0ustar aitjcizeaitjcize00000000000000b0VIM 7.4–7aitjcizeazslaptop U3210#"! Utpad t °¬éåáÒ·‹uNL4è · µ ¥ u t cplusplus.com, 2000-2015 - All rights reserved..SH "REFERENCE")Extract formatted input (public member function.IP "istream::operator>>(3)")Write block of data (public member function.IP "ostream::write(3)")Put character (public member function.IP "ostream::put(3)")Insert characters (public member function.IP "operator<< (ostream)".SH "SEE ALSO".br.brAny exception thrown by an internal operation is caught and handled by the function, setting badbit. If badbit was set on the last call to exceptions, the function rethrows the caught exception..brtate flag is not goodbit and member exceptions was set to throw for that state.cppman-0.4.8/cppman/formatter/.test.txt.swp0000644000175000017500000004000012707131356022315 0ustar aitjcizeaitjcize00000000000000b0VIM 7.4G±Wùr$¶$aitjcizeazslaptop~aitjcize/Work/cppman/cppman/formatter/test.txt 3210#"! Utp^ÿÿÿÿÿÿÿÿ1_þÿÿÿÿÿÿÿýÿÿÿÿÿÿÿ=¨üÿÿÿÿÿÿÿ1åûÿÿÿÿÿÿÿ(úÿÿÿÿÿÿÿ0>Mnad)½^ðãže½~A!Û Í   n 9 à ©  y o n N . Á ¥ ¡ — ˆ w c   Ò t l e T O " ç ¬ …  x 3 , %   åÓ»sSþôíæÑ½•Ž\UΙ…@ë·Ž\2ÿÔ¨wLÖ“QÓ¬ŒFñ½¼ostream& operator<< (unsigned short val);ostream& operator<< (short val);ostream& operator<< (bool val);
    arithmetic types (1)
    ostream& operator<< (ios_base& (*pf)(ios_base&));ostream& operator<< (ios& (*pf)(ios&));ostream& operator<< (ostream& (*pf)(ostream&));manipulators (3)
    ostream& operator<< (streambuf* sb );
    stream buffers (2)
    ostream& operator<< (void* val);ostream& operator<< (long double val);ostream& operator<< (double val);ostream& operator<< (float val);ostream& operator<< (unsigned long val);ostream& operator<< (long val);ostream& operator<< (unsigned int val);ostream& operator<< (int val);ostream& operator<< (unsigned short val);ostream& operator<< (short val);ostream& operator<< (bool val);
    arithmetic types (1)

    std::ostream::operator<<

    <ostream> <iostream>
    public member function
    googletag.cmd.push(function() { googletag.display('div-gpt-ad-1427191279638-0'); });});googletag.enableServices();googletag.defineSlot('/32882001/L', [728, 90], 'div-gpt-ad-1427191279638-0').addService(googletag.pubads());googletag.cmd.push(function() {})();node.parentNode.insertBefore(gads, node);var node = document.getElementsByTagName('script')[0];'//www.googletagservices.com/tag/js/gpt.js';gads.src = (useSSL ? 'https:' : 'http:') + var useSSL = 'https:' == document.location.protocol;gads.type = 'text/javascript';gads.async = true;var gads = document.createElement('script');(function() {googletag.cmd = googletag.cmd || [];var googletag = googletag || {};ostream::operator<< - C++ Referencead¡ñMŸ”އ=ûö…Û l a ( » / Æ Y ì  t 7 ¶ « q  ¥š”s]9 ìÕ¾¸®PF9ûçÏÈÁÀ ›G0,½ie`º°™nON@åq ñð//-->})(); var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;(function() {_gaq.push(['_trackPageview']);_gaq.push(['_setAccount', 'UA-521783-1']);var _gaq = _gaq || []; ready(); function docdel() { if (confirm('WARNING: You are about to delete this page. Confirm?')) window.location='/reference/delete.cgi?a=ostream+ostream+operator%3C%3C'; } }); } el.appendChild(btn('Delete Page','Delete Page','delete','javascript:docdel()')); el.appendChild(btn('Edit Page','Edit Page','edit','/reference/edit.cgi?a=ostream+ostream+operator%3C%3C')); if (us.auth(4096)) { el=document.getElementById('CH_bb'); el.innerHTML=''; onSession ( function(us) {google_ad_height = 60;google_ad_width = 234;google_ad_slot = "7445514729";google_ad_client = "ca-pub-7688470879129516";googletag.cmd.push(function() { googletag.display('div-gpt-ad-1427191279638-0'); });});googletag.enableServices();googletag.defineSlot('/32882001/L', [728, 90], 'div-gpt-ad-1427191279638-0').addService(googletag.pubads());googletag.cmd.push(function() {})();node.parentNode.insertBefore(gads, node);var node = document.getElementsByTagName('script')[0];'//www.googletagservices.com/tag/js/gpt.js';gads.src = (useSSL ? 'https:' : 'http:') + var useSSL = 'https:' == document.location.protocol;gads.type = 'text/javascript';gads.async = true;var gads = document.createElement('script');(function() {googletag.cmd = googletag.cmd || [];var googletag = googletag || {};ostream::operator<< - C++ Referenceadî B龟ž5Áicb\RJBA//-->})(); var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;(function() {_gaq.push(['_trackPageview']);_gaq.push(['_setAccount', 'UA-521783-1']);var _gaq = _gaq || [];cppman-0.4.8/cppman/formatter/__init__.py0000644000175000017500000000000012651075645022022 0ustar aitjcizeaitjcize00000000000000cppman-0.4.8/cppman/crawler.pyc0000644000175000017500000002025212527364535020076 0ustar aitjcizeaitjcize00000000000000ó Š_òTc@sÚddlmZddlZddlZddlZddlmZmZejddkr|ddl Z ddl m Z n.ddl Z e jZ ddl mZej Z defd „ƒYZd efd „ƒYZdS( iÿÿÿÿ(tprint_functionN(tThreadtLockii(tquote(tparsetDocumentcBseZd„ZRS(cCse||_d|krdn|jdƒd|_|j|_|jƒ|_t|jƒƒ|_dS(Nt?tiÿÿÿÿ( turltsplittquerytstatustreadttexttdictt getheaderstheaders(tselftresR((s,/home/aitjcize/Work/cppman/cppman/crawler.pyt__init__.s  ( (t__name__t __module__R(((s,/home/aitjcize/Work/cppman/cppman/crawler.pyR-stCrawlercBsªeZedƒ\ZZZZd„Zd„Zd„Z d„Z d„Z d„Z d„Z d„Zdd „Zd „Zd „Zd „Zd „Zd„Zd„ZRS(icCsŽd|_i|_tƒ|_g|_d|_d|_d|_t |_ |j |_ d|_ g|_d|_tƒ|_tƒ|_dS(Niis (text/html)s^(#|javascript:|mailto:)(tNonethosttvisitedtsetttargetstthreadst concurrencytmax_outstandingt max_depthtFalsetinclude_hashtagt F_SAME_HOSTt follow_modetcontent_type_filtert url_filterst prefix_filterRt targets_locktconcurrency_lock(R((s,/home/aitjcize/Work/cppman/cppman/crawler.pyR9s             cCsddj|ƒ|_dS(Ns(%s)t|(tjoinR$(Rtcf((s,/home/aitjcize/Work/cppman/cppman/crawler.pytset_content_type_filterKscCs|jj|ƒdS(N(R%tappend(Rtuf((s,/home/aitjcize/Work/cppman/cppman/crawler.pytadd_url_filterNscCs(|dkrtdƒ‚n||_dS(Nisinvalid follow mode.(t RuntimeErrorR#(Rtmode((s,/home/aitjcize/Work/cppman/cppman/crawler.pytset_follow_modeQs cCs ||_dS(N(R(Rtlevel((s,/home/aitjcize/Work/cppman/cppman/crawler.pytset_concurrency_levelVscCs ||_dS(N(R(RR((s,/home/aitjcize/Work/cppman/cppman/crawler.pyt set_max_depthYscCs ||_dS(N(R!(Rtinclude((s,/home/aitjcize/Work/cppman/cppman/crawler.pytset_include_hashtag\scCstd|j|jƒdS(NtGET(tprintR R(Rtdoc((s,/home/aitjcize/Work/cppman/cppman/crawler.pytprocess_document_scCs ||_tjd|ƒ}|jdƒ|_|jdƒ|_|jdƒ|_tjj|jƒ|_ |jdƒ|_ |r||_ n|j j |ƒ|j ƒxr|jryDx=|jD]2}|jdƒ|jƒsÀ|jj|ƒqÀqÀWWqªtk rtjdƒqªXqªWdS(Ns!(https?://)([^/]+)([^\?]*)(\?.*)?iiii(troot_urltretmatchtgrouptprotoRtpathtostdirnametdir_pathR Rtaddt_spawn_new_workerRR*tisAlivetremovetKeyboardInterrupttsystexit(RRRAtrxtt((s,/home/aitjcize/Work/cppman/cppman/crawler.pytcrawlcs&       cCsP|jdƒ}t|ƒdkr%|Stjd|ƒr;|Sdj|dƒSdS(Nt.is^[0-9]+(?:\.[0-9]+){3}$i(R tlenR=R>R*(RRtparts((s,/home/aitjcize/Work/cppman/cppman/crawler.pyt _url_domain|s cCstj|j|ƒrdSx'|jD]}tj||ƒr#dSq#W|jsdtjdd|ƒ}ntjd|ƒ}|jdƒ}|jdƒ}|jdƒr²|jdƒnd}t |jdƒƒdkrâ|jdƒnd }t j j |ƒ} tjd |ƒ}|jdƒdk } |jdƒr?|jdƒn|} |jdƒrc|jdƒn|} |jdƒr‡|jdƒn|} |jd ƒr´t |jd ƒd ƒn|}|jd ƒrát |jd ƒdƒnd}t j j |ƒ}| r4|jd ƒ r4t j jt j j| |ƒƒ}n| | | ||}|j|jkr`|S|j|jkr›|j|jƒ|j| ƒkr—|SdS|j|jkrÄ|j| krÀ|SdS|j|jkr|j| krû|j|jƒrû|SdSndS(Ns (%23|#).*$Rs,(https?://)([^/:]+)(:[0-9]+)?([^\?]*)(\?.*)?iiiiit/s/((https?://)([^/:]+)(:[0-9]+)?)?([^\?]*)(\?.*)?is/%is?=&%(R=tsearchR&RR%R!tsubR>R?RPRBRARCRt startswithtnormpathR*R#tF_ANYt F_SAME_DOMAINRRRR"t F_SAME_PATHRD(RRtlinktfRLt url_prototurl_hostturl_portturl_patht url_dir_patht link_full_urlt link_protot link_hostt link_portt link_patht link_queryt link_dir_pathtlink_url((s,/home/aitjcize/Work/cppman/cppman/crawler.pyt _follow_link…sH $0$$$--$cCs;t|jddƒj|jdƒjdƒjdƒƒdS(NthttpsthttpRRSi(RPtreplaceR<trstripR (RR((s,/home/aitjcize/Work/cppman/cppman/crawler.pyt _calc_depthµscCs}|s dS|jr/|j|ƒ|jkr/dS|jjƒ||jkr\|jjƒdS|jj|ƒ|jjƒdS(N(RRoR'tacquireRtreleaseRRE(Rttarget((s,/home/aitjcize/Work/cppman/cppman/crawler.pyt _add_targetºs!  cCsn|jjƒ|jd7_td|jd|jfƒ}t|_|jj|ƒ|j ƒ|jj ƒdS(NiRrtargs( R(RpRRt_workertTruetdaemonRR-tstartRq(RRM((s,/home/aitjcize/Work/cppman/cppman/crawler.pyRFÈs   c CsYx)|jr+yÄ|jjƒ|jjƒ}t|j|<|jjƒtjd|ƒ}|j dƒ}|j dƒ}t j |ddƒ}|j d|ƒ|j ƒ}|jdksÄ|jdkrò|j||jd ƒƒ}|j|ƒwny(tj|j|jd ƒƒswnWntk r0wnXt||ƒ} |j| ƒtjd | jtjƒ} tt| ƒƒ} x3| D]+} |j|| jƒƒ}|j|ƒqW|j|jkrÏ|jƒnWqt k räPqt j!t"fk r'|jjƒ|jj#|ƒ|jjƒqXqW|j$jƒ|jd8_|j$jƒdS( Nshttps?://([^/]+)(.*)iittimeouti R8i-i.tlocations Content-Typeshref\s*=\s*['"]\s*([^'"]+)['"](%RR'RptpopRvRRqR=R>R?thttplibtHTTPConnectiontrequestt getresponseR Rjt getheaderRsRTR$t TypeErrorRR;tfindallR tStlistRtstripRRRFtKeyErrort HTTPExceptiontEnvironmentErrorRER(( RtsidRRLRRAtconnRtrlinkR:tlinksR[((s,/home/aitjcize/Work/cppman/cppman/crawler.pyRuÑsT             N(RRtrangeRXRYR"RZRR,R/R2R4R5R7R;RRNRRRjRoRsRFRu(((s,/home/aitjcize/Work/cppman/cppman/crawler.pyR6s           0   (t __future__RRBR=RJt threadingRRt version_infoR|turllibRt http.clientRltclientRtobjectRR(((s,/home/aitjcize/Work/cppman/cppman/crawler.pyts        cppman-0.4.8/cppman/__init__.pyc0000644000175000017500000000066312661607165020200 0ustar aitjcizeaitjcize00000000000000ó ¥{¤Vc@s+ddlZejjeƒZd„ZdS(iÿÿÿÿNcCstjjtd|ƒS(Ntlib(tostpathtjoint package_dir(tfilename((s-/home/aitjcize/Work/cppman/cppman/__init__.pyt get_lib_paths(RRtdirnamet__file__RR(((s-/home/aitjcize/Work/cppman/cppman/__init__.pyts cppman-0.4.8/cppman/config.pyc0000644000175000017500000000541212527364535017705 0ustar aitjcizeaitjcize00000000000000ó "_òTc@sfddlZddlZejddkr:ddlZnddlZeZdefd„ƒYZdS(iÿÿÿÿNiitConfigcBsteZdddgZddgZidd6dd6dd6Zd „Zd „Zd „Zd „Zd „Z d„Z RS(tvimtlesstsystems cplusplus.comscppreference.comtSourcetfalset UpdateManPathtPagercCsN||_tjj|ƒs(|jƒn"tjƒ|_|jj|jƒdS(N( t _configfiletostpathtexistst set_defaultt ConfigParsertRawConfigParsert_configtread(tselft configfile((s+/home/aitjcize/Work/cppman/cppman/config.pyt__init__-s   cCsmy|jjd|ƒ}WnDtjk r_|j|}t|||ƒ|jj|jƒnX|j|ƒS(NtSettings( RtgetR t NoOptionErrortDEFAULTStsetattrRRt parse_bool(Rtnametvalue((s+/home/aitjcize/Work/cppman/cppman/config.pyt __getattr__6s cCsL|jdƒs2|jjd||ƒ|jƒn|j|ƒ|j|s   cppman-0.4.8/cppman/main.py0000644000175000017500000002655312707135034017220 0ustar aitjcizeaitjcize00000000000000# -*- coding: utf-8 -*- # # main.py # # Copyright (C) 2010 - 2015 Wei-Ning Huang (AZ) # All Rights reserved. # # This file is part of cppman. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # import gzip import importlib import os import re import shutil import sqlite3 import subprocess import sys import urllib.request from cppman import environ from cppman import util from cppman.crawler import Crawler class Cppman(Crawler): """Manage cpp man pages, indexes""" def __init__(self, forced=False, force_columns=-1): Crawler.__init__(self) self.results = set() self.forced = forced self.success_count = None self.failure_count = None self.force_columns = force_columns self.blacklist = [ ] self.name_exceptions = [ 'http://www.cplusplus.com/reference/string/swap/' ] def extract_name(self, data): """Extract man page name from web page.""" name = re.search(']*>(.+?)', data).group(1) name = re.sub(r'<([^>]+)>', r'', name) name = re.sub(r'>', r'>', name) name = re.sub(r'<', r'<', name) return name def rebuild_index(self): """Rebuild index database from cplusplus.com and cppreference.com.""" try: os.remove(environ.index_db_re) except: pass self.db_conn = sqlite3.connect(environ.index_db_re) self.db_cursor = self.db_conn.cursor() self.db_cursor.execute('CREATE TABLE "cplusplus.com" ' '(name VARCHAR(255), url VARCHAR(255))') self.db_cursor.execute('CREATE TABLE "cppreference.com" ' '(name VARCHAR(255), url VARCHAR(255))') try: self.add_url_filter('\.(jpg|jpeg|gif|png|js|css|swf|svg)$') self.set_follow_mode(Crawler.F_SAME_PATH) # cplusplus.com self.crawl('http://www.cplusplus.com/reference/') for name, url in self.results: self.insert_index('cplusplus.com', name, url) self.db_conn.commit() # Rename duplicate entries duplicates = self.db_cursor.execute('SELECT name, COUNT(name) ' 'AS NON ' 'FROM "cplusplus.com" ' 'GROUP BY NAME ' 'HAVING (NON > 1)').fetchall() for name, num in duplicates: dump = self.db_cursor.execute('SELECT name, url FROM ' '"cplusplus.com" WHERE name="%s"' % name).fetchall() for n, u in dump: if u not in self.name_exceptions: n2 = n[5:] if n.startswith('std::') else n try: group = re.search('/([^/]+)/%s/$' % n2, u).group(1) except Exception: group = re.search('/([^/]+)/[^/]+/$', u).group(1) new_name = '%s (%s)' % (n, group) self.db_cursor.execute('UPDATE "cplusplus.com" ' 'SET name="%s", url="%s" ' 'WHERE url="%s"' % (new_name, u, u)) self.db_conn.commit() # cppreference.com self.results = set() self.crawl('http://en.cppreference.com/w/cpp', '/w/cpp') for name, url in self.results: self.insert_index('cppreference.com', name, url) self.db_conn.commit() except KeyboardInterrupt: os.remove(environ.index_db_re) raise KeyboardInterrupt finally: self.db_conn.close() def process_document(self, doc): """callback to insert index""" if doc.url not in self.blacklist: print("Indexing '%s' ..." % doc.url) name = self.extract_name(doc.text) self.results.add((name, doc.url)) else: print("Skipping blacklisted page '%s' ..." % doc.url) return None def insert_index(self, table, name, url): """callback to insert index""" names = name.split(',') if len(names) > 1: m = re.match(r'^\s*(.*?::(?:operator)?)([^:]*)\s*$', names[0]) if m: prefix = m.group(1) names[0] = m.group(2) names = [prefix + n for n in names] for n in names: self.db_cursor.execute( 'INSERT INTO "%s" (name, url) VALUES ("%s", "%s")' % (table, n.strip(), url)) def cache_all(self): """Cache all available man pages""" print('By default, cppman fetches pages on-the-fly if corresponding ' 'page is not found in the cache. The "cache-all" option is only ' 'useful if you want to view man pages offline. ' 'Caching all contents will take several minutes, ' 'do you want to continue [y/N]?') respond = input() if respond.lower() not in ['y', 'ye', 'yes']: raise KeyboardInterrupt try: os.makedirs(environ.man_dir) except: pass self.success_count = 0 self.failure_count = 0 if not os.path.exists(environ.index_db): raise RuntimeError("can't find index.db") conn = sqlite3.connect(environ.index_db) cursor = conn.cursor() source = environ.config.source print('Caching manpages from %s ...' % source) data = cursor.execute('SELECT * FROM "%s"' % source).fetchall() for name, url in data: retries = 3 print('Caching %s ...' % name) while retries > 0: try: self.cache_man_page(source, url, name) except Exception: print('Retrying ...') retries -= 1 else: break if retries == 0: print('Error caching %s ...' % name) self.failure_count += 1 else: self.success_count += 1 conn.close() print('\n%d manual pages cached successfully.' % self.success_count) print('%d manual pages failed to cache.' % self.failure_count) self.update_mandb(False) def cache_man_page(self, source, url, name): """callback to cache new man page""" # Skip if already exists, override if forced flag is true outname = self.get_page_path(source, name) if os.path.exists(outname) and not self.forced: return try: os.makedirs(os.path.join(environ.man_dir, source)) except OSError: pass # There are often some errors in the HTML, for example: missing closing # tag. We use fixupHTML to fix this. data = util.fixupHTML(urllib.request.urlopen(url).read()) formatter = importlib.import_module('cppman.formatter.%s' % source[:-4]) groff_text = formatter.html2groff(data, name) with gzip.open(outname, 'w') as f: f.write(groff_text.encode('utf-8')) def clear_cache(self): """Clear all cache in man3""" shutil.rmtree(environ.man_dir) def man(self, pattern): """Call viewer.sh to view man page""" try: avail = os.listdir(os.path.join(environ.man_dir, environ.source)) except OSError: avail = [] if not os.path.exists(environ.index_db): raise RuntimeError("can't find index.db") conn = sqlite3.connect(environ.index_db) cursor = conn.cursor() # Try direct match try: page_name, url = cursor.execute( 'SELECT name,url FROM "%s" ' 'WHERE name="%s" ORDER BY LENGTH(name)' % (environ.source, pattern)).fetchone() except TypeError: # Try standard library try: page_name, url = cursor.execute( 'SELECT name,url FROM "%s" ' 'WHERE name="std::%s" ORDER BY LENGTH(name)' % (environ.source, pattern)).fetchone() except TypeError: try: page_name, url = cursor.execute( 'SELECT name,url FROM "%s" ' 'WHERE name LIKE "%%%s%%" ORDER BY LENGTH(name)' % (environ.source, pattern)).fetchone() except TypeError: raise RuntimeError('No manual entry for ' + pattern) finally: conn.close() page_filename = self.get_normalized_page_name(page_name) if self.forced or page_filename + '.3.gz' not in avail: self.cache_man_page(environ.source, url, page_name) pager_type = environ.pager if sys.stdout.isatty() else 'pipe' # Call viewer columns = (util.get_width() if self.force_columns == -1 else self.force_columns) pid = os.fork() if pid == 0: os.execl('/bin/sh', '/bin/sh', environ.pager_script, pager_type, self.get_page_path(environ.source, page_name), str(columns), environ.pager_config, page_name) return pid def find(self, pattern): """Find pages in database.""" if not os.path.exists(environ.index_db): raise RuntimeError("can't find index.db") conn = sqlite3.connect(environ.index_db) cursor = conn.cursor() selected = cursor.execute( 'SELECT * FROM "%s" WHERE name ' 'LIKE "%%%s%%" ORDER BY LENGTH(name)' % (environ.source, pattern)).fetchall() pat = re.compile('(%s)' % pattern, re.I) if selected: for name, url in selected: if os.isatty(sys.stdout.fileno()): print(pat.sub(r'\033[1;31m\1\033[0m', name)) else: print(name) else: raise RuntimeError('%s: nothing appropriate.' % pattern) def update_mandb(self, quiet=True): """Update mandb.""" if not environ.config.UpdateManPath: return print('\nrunning mandb...') cmd = 'mandb %s' % (' -q' if quiet else '') subprocess.Popen(cmd, shell=True).wait() def get_normalized_page_name(self, name): return name.replace('/', '_') def get_page_path(self, source, name): name = self.get_normalized_page_name(name) return os.path.join(environ.man_dir, source, name + '.3.gz') cppman-0.4.8/cppman/crawler.py0000644000175000017500000002052212707131531017717 0ustar aitjcizeaitjcize00000000000000# -*- coding: utf-8 -*- # # crawler.py # # Copyright (C) 2010 - 2016 Wei-Ning Huang (AZ) # All Rights reserved. # # This file is part of cppman. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # from __future__ import print_function import os import re import sys from threading import Thread, Lock if sys.version_info < (3, 0): import httplib from urllib import quote else: import http.client as httplib from urllib.parse import quote class Document(object): def __init__(self, res, url): self.url = url self.query = '' if '?' not in url else url.split('?')[-1] self.status = res.status self.text = res.read() self.headers = dict(res.getheaders()) if sys.version_info >= (3, 0): self.text = self.text.decode() class Crawler(object): F_ANY, F_SAME_DOMAIN, F_SAME_HOST, F_SAME_PATH = list(range(4)) def __init__(self): self.host = None self.visited = {} self.targets = set() self.threads = [] self.concurrency = 0 self.max_outstanding = 16 self.max_depth = 0 self.include_hashtag = False self.follow_mode = self.F_SAME_HOST self.content_type_filter = '(text/html)' self.url_filters = [] self.prefix_filter = '^(#|javascript:|mailto:)' self.targets_lock = Lock() self.concurrency_lock = Lock() def set_content_type_filter(self, cf): self.content_type_filter = '(%s)' % ('|'.join(cf)) def add_url_filter(self, uf): self.url_filters.append(uf) def set_follow_mode(self, mode): if mode > 5: raise RuntimeError('invalid follow mode.') self.follow_mode = mode def set_concurrency_level(self, level): self.max_outstanding = level def set_max_depth(self, max_depth): self.max_depth = max_depth def set_include_hashtag(self, include): self.include_hashtag = include def process_document(self, doc): print('GET', doc.status, doc.url) # to do stuff with url depth use self._calc_depth(doc.url) def crawl(self, url, path=None): self.root_url = url rx = re.match('(https?://)([^/]+)([^\?]*)(\?.*)?', url) self.proto = rx.group(1) self.host = rx.group(2) self.path = rx.group(3) self.dir_path = os.path.dirname(self.path) self.query = rx.group(4) if path: self.dir_path = path self.targets.add(url) self._spawn_new_worker() while self.threads: try: for t in self.threads: t.join(1) if not t.isAlive(): self.threads.remove(t) except KeyboardInterrupt: sys.exit(1) def _url_domain(self, host): parts = host.split('.') if len(parts) <= 2: return host elif re.match('^[0-9]+(?:\.[0-9]+){3}$', host): # IP return host else: return '.'.join(parts[1:]) def _follow_link(self, url, link): # Skip prefix if re.search(self.prefix_filter, link): return None # Filter url for f in self.url_filters: if re.search(f, link): return None if not self.include_hashtag: link = re.sub(r'(%23|#).*$', '', link) rx = re.match('(https?://)([^/:]+)(:[0-9]+)?([^\?]*)(\?.*)?', url) url_proto = rx.group(1) url_host = rx.group(2) url_port = rx.group(3) if rx.group(3) else '' url_path = rx.group(4) if len(rx.group(4)) > 0 else '/' url_dir_path = os.path.dirname(url_path) rx = re.match('((https?://)([^/:]+)(:[0-9]+)?)?([^\?]*)(\?.*)?', link) link_full_url = rx.group(1) is not None link_proto = rx.group(2) if rx.group(2) else url_proto link_host = rx.group(3) if rx.group(3) else url_host link_port = rx.group(4) if rx.group(4) else url_port link_path = quote(rx.group(5), '/%') if rx.group(5) else url_path link_query = quote(rx.group(6), '?=&%') if rx.group(6) else '' link_dir_path = os.path.dirname(link_path) if not link_full_url and not link.startswith('/'): link_path = os.path.normpath(os.path.join(url_dir_path, link_path)) link_url = link_proto + link_host + link_port + link_path + link_query if self.follow_mode == self.F_ANY: return link_url elif self.follow_mode == self.F_SAME_DOMAIN: return link_url if self._url_domain(self.host) == \ self._url_domain(link_host) else None elif self.follow_mode == self.F_SAME_HOST: return link_url if self.host == link_host else None elif self.follow_mode == self.F_SAME_PATH: if self.host == link_host and \ link_dir_path.startswith(self.dir_path): return link_url else: return None def _calc_depth(self, url): # calculate url depth return len(url.replace('https', 'http').replace( self.root_url, '').rstrip('/').split('/')) - 1 def _add_target(self, target): if not target: return if self.max_depth and self._calc_depth(target) > self.max_depth: return with self.targets_lock: if target in self.visited: return self.targets.add(target) def _spawn_new_worker(self): with self.concurrency_lock: self.concurrency += 1 t = Thread(target=self._worker, args=(self.concurrency,)) t.daemon = True self.threads.append(t) t.start() def _worker(self, sid): while self.targets: try: with self.targets_lock: url = self.targets.pop() self.visited[url] = True rx = re.match('(https?)://([^/]+)(.*)', url) protocol = rx.group(1) host = rx.group(2) path = rx.group(3) if protocol == 'http': conn = httplib.HTTPConnection(host, timeout=10) else: conn = httplib.HTTPSConnection(host, timeout=10) conn.request('GET', path) res = conn.getresponse() if res.status == 404: continue if res.status == 301 or res.status == 302: rlink = self._follow_link(url, res.getheader('location')) self._add_target(rlink) continue # Check content type try: if not re.search( self.content_type_filter, res.getheader('Content-Type')): continue except TypeError: # getheader result is None continue doc = Document(res, url) self.process_document(doc) # Make unique list links = re.findall( '''href\s*=\s*['"]\s*([^'"]+)['"]''', doc.text, re.S) links = list(set(links)) for link in links: rlink = self._follow_link(url, link.strip()) self._add_target(rlink) if self.concurrency < self.max_outstanding: self._spawn_new_worker() except KeyError: # Pop from an empty set break except (httplib.HTTPException, EnvironmentError): with self.targets_lock: self.targets.add(url) with self.concurrency_lock: self.concurrency -= 1 cppman-0.4.8/cppman/__init__.py0000644000175000017500000000172312651075645020034 0ustar aitjcizeaitjcize00000000000000# -*- coding: utf-8 -*- # # __init__.py # # Copyright (C) 2010 - 2015 Wei-Ning Huang (AZ) # All Rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # import os package_dir = os.path.dirname(__file__) def get_lib_path(filename): return os.path.join(package_dir, 'lib', filename) cppman-0.4.8/misc/0000755000175000017500000000000012707135217015367 5ustar aitjcizeaitjcize00000000000000cppman-0.4.8/misc/cppman.10000644000175000017500000000453112707131531016725 0ustar aitjcizeaitjcize00000000000000.TH CPPMAN 1 "MAY 2010" Linux "User Manuals" .SH NAME cppman - C++ manual page viewer / fetcher .SH SYNOPSIS .B cppman [ .I OPTIONS... .B ] PAGE... .SH DESCRIPTION cppman generates C++ manual pages from cplusplus.com and provide a man\-like interface to view man pages. .sp By default, cppman fetches man pages on-the-fly, by running the command 'cppman \-c', all available manpages are cached, making offline browsing possible. This is also required if you want to use the system 'man' command. .SS Browsing man pages cppman uses Vi Improved as a pager. .br Press 'q' to leave pager. Press 'K' on an entry like 'vector::insert(3)' links you to the manual page of vector::insert, like a hyperlink. .SS man compatibility cppman automatically adds '~/.local/share/man' to '~/.manpath', so the cached man pages can also be viewed with 'man' command. Note that to view uncached man pages, you still need to run 'cppman'. .SH OPTIONS .IP "\-s SOURCE, \-\-source=SOURCE" Select source, either 'cppreference.com' or 'cplusplus.com'. Default is 'cplusplus.com'. .IP "\-c, \-\-cache\-all" cache all available man pages from cplusplus.com to enable offline browsing .IP "\-C, \-\-clear\-cache" clear all cached files .IP "\-f KEYWORD, \-\-find\-page=KEYWORD" find man page .IP "\-o, \-\-force\-update" force cppman to update existing cache when '\-\-cache\-all' or browsing man pages that were already cached .IP "\-m MANDB, \-\-use\-mandb=MANDB" Accepts 'true' or 'false'. If true, cppman adds manpage path to mandb so that you can view C++ manpages with `man' command. The default value is 'false'. .IP "\-p PAGER, \-\-pager=PAGER" Select pager to use, accepts 'vim' or 'less'. The default value is 'vim'. .IP "\-r, \-\-rebuild\-index" rebuild index database from cplusplus.com .IP "\-v, \-\-version" show version information .IP "\-h, \-\-help" show this help message and exit .SH NOTE All contents should be cached by the user, cppman does not contain any pre\[hy]cached contents. .sp Do not distribute the cached man pages without the permission of cplusplus.com. .SH BUGS Although I spend a lot of time checking the format, there are still pages that won't display correctly. .br Feel free to report bugs at: .sp https://github.com/aitjcize/cppman/issues or .br mailto:aitjcize@gmail.com. .sp Please include the page name in the bug report. .SH AUTHOR Wei\[hy]Ning Huang (AZ) cppman-0.4.8/PKG-INFO0000644000175000017500000000073312707135217015534 0ustar aitjcizeaitjcize00000000000000Metadata-Version: 1.1 Name: cppman Version: 0.4.8 Summary: C++ 98/11/14 manual pages for Linux/MacOS Home-page: https://github.com/aitjcize/cppman Author: Wei-Ning Huang (AZ) Author-email: aitjcize@gmail.com License: GPL Description: UNKNOWN Platform: UNKNOWN Classifier: Programming Language :: Python :: 3.3 Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3 :: Only Classifier: Topic :: Software Development :: Documentation cppman-0.4.8/MANIFEST.in0000644000175000017500000000024212651075645016176 0ustar aitjcizeaitjcize00000000000000include bin/* include cppman/* include cppman/formatter/* include misc/* include README.rst include AUTHORS include COPYING include ChangeLog include MANIFEST.in cppman-0.4.8/setup.py0000644000175000017500000000210312707135135016141 0ustar aitjcizeaitjcize00000000000000#!/usr/bin/env python from distutils.core import setup _package_data = [ 'lib/index.db', 'lib/pager.sh', 'lib/cppman.vim' ] _data_files = [ ('share/doc/cppman', ['README.rst', 'AUTHORS', 'COPYING', 'ChangeLog']), ('share/man/man1', ['misc/cppman.1']) ] setup( name = 'cppman', version = '0.4.8', description = 'C++ 98/11/14 manual pages for Linux/MacOS', author = 'Wei-Ning Huang (AZ)', author_email = 'aitjcize@gmail.com', url = 'https://github.com/aitjcize/cppman', license = 'GPL', packages = ['cppman', 'cppman.formatter'], package_data = {'cppman': _package_data}, data_files = _data_files, scripts = ['bin/cppman'], install_requires=['beautifulsoup4', 'html5lib'], classifiers = [ 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Software Development :: Documentation', ], )