diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2023-12-03 07:45:53 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2023-12-03 07:45:53 +0100 |
| commit | dd7a4efc643c20c56b845aa11af1fec4b0760d92 (patch) | |
| tree | b3e213c7ba4dbff04691f41bd80975bfd1eb600e | |
| download | aoc2023.nes-dd7a4efc643c20c56b845aa11af1fec4b0760d92.tar.gz aoc2023.nes-dd7a4efc643c20c56b845aa11af1fec4b0760d92.zip | |
First day of advent of code
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | LICENSE | 674 | ||||
| -rw-r--r-- | Makefile | 24 | ||||
| -rw-r--r-- | include/apu.s | 6 | ||||
| -rw-r--r-- | include/globals.s | 39 | ||||
| -rw-r--r-- | include/oam.s | 13 | ||||
| -rw-r--r-- | include/ppu.s | 27 | ||||
| -rw-r--r-- | include/reset.s | 63 | ||||
| -rw-r--r-- | src/1.s | 1231 |
9 files changed, 2078 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..89f9ac0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +out/ @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> + 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. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + 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 <https://www.gnu.org/licenses/>. + +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: + + <program> Copyright (C) <year> <name of author> + 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 +<https://www.gnu.org/licenses/>. + + 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 +<https://www.gnu.org/licenses/why-not-lgpl.html>. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..15c6c3c --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ +CC65 ?= cl65 +CCOPTS ?= --target nes +QUIET = @echo ' ' CC65 $@; + + +.PHONY: all +all: clean deps build + +.PHONY: clean +clean: + @rm -rf out + @mkdir out + @find . -type f -name "*.o" -delete + @find . -type f -name "*.nes" -delete + +.PHONY: deps +deps: + @which $(CC65) >/dev/null 2>/dev/null || (echo "ERROR: $(CC65) not found." && false) + +.PHONY: build +build: out/1.nes + +out/%.nes: src/%.s + $(QUIET) $(CC65) $(CCOPTS) $< -o $@ diff --git a/include/apu.s b/include/apu.s new file mode 100644 index 0000000..32ccff2 --- /dev/null +++ b/include/apu.s @@ -0,0 +1,6 @@ +.segment "CODE" + +.scope APU + DMC = $4010 + FRAME_COUNTER = $4017 +.endscope diff --git a/include/globals.s b/include/globals.s new file mode 100644 index 0000000..41d3e6c --- /dev/null +++ b/include/globals.s @@ -0,0 +1,39 @@ +.scope Globals + ;;; + ;; Temporary values. + + m_tmp_1 = $00 + m_tmp_2 = $01 + m_tmp_3 = $02 + m_tmp_4 = $03 + m_tmp_5 = $04 + + ;; Bit map to be used as flags during execution. + m_flags = $20 + + ;; Initialize global variables. + .proc init + lda #0 + sta m_tmp_1 + sta m_tmp_2 + sta m_tmp_3 + sta m_tmp_4 + sta m_tmp_5 + sta m_flags + rts + .endproc +.endscope + +;; SET_RENDER_FLAG sets the render bit on Globals::m_flags to 1. +.macro SET_RENDER_FLAG + lda #%10000000 + ora Globals::m_flags + sta Globals::m_flags +.endmacro + +;; UNSET_RENDER_FLAG sets the render bit on Globals::m_flags to 0. +.macro UNSET_RENDER_FLAG + lda #%01111111 + and Globals::m_flags + sta Globals::m_flags +.endmacro diff --git a/include/oam.s b/include/oam.s new file mode 100644 index 0000000..ecd1b7d --- /dev/null +++ b/include/oam.s @@ -0,0 +1,13 @@ +.segment "CODE" + +.scope OAM + ADDR = $2003 + DMA = $4014 +.endscope + +.macro OAM_WRITE_SPRITES + lda #$00 + sta OAM::ADDR + lda #$02 + sta OAM::DMA +.endmacro diff --git a/include/ppu.s b/include/ppu.s new file mode 100644 index 0000000..23fd978 --- /dev/null +++ b/include/ppu.s @@ -0,0 +1,27 @@ +.segment "CODE" + +.scope PPU + CONTROL = $2000 + MASK = $2001 + STATUS = $2002 + SCROLL = $2005 + ADDRESS = $2006 + DATA = $2007 +.endscope + +.macro PPU_ADDR address + lda #.HIBYTE(address) + sta PPU::ADDRESS + lda #.LOBYTE(address) + sta PPU::ADDRESS +.endmacro + +;; WRITE_PPU_DATA is a macro that will write into PPU::ADDRESS the given address +;; and into PPU::DATA the given byte value. +.macro WRITE_PPU_DATA address, value + bit PPU::STATUS + + PPU_ADDR address + lda #value + sta PPU::DATA +.endmacro diff --git a/include/reset.s b/include/reset.s new file mode 100644 index 0000000..e68d3db --- /dev/null +++ b/include/reset.s @@ -0,0 +1,63 @@ +;; Common `reset` procedure for NROM "games". Check `basics/sprite.s` on +;; @mssola/NES for a proper explanation on the code (will be open soon, +;; promise!). +reset: + sei + cld + + ldx #$40 + stx $4017 + + ldx #$ff + txs + + inx + stx $2000 + stx $2001 + stx $4010 + +@vblankwait1: + bit $2002 + bpl @vblankwait1 + + ldx #0 + lda #0 +@ram_reset_loop: + sta $000, x + sta $100, x + sta $300, x + sta $400, x + sta $500, x + sta $600, x + sta $700, x + inx + bne @ram_reset_loop + + lda #$ef +@sprite_reset_loop: + sta $200, x + inx + bne @sprite_reset_loop + + lda #$00 + sta $2003 + lda #$02 + sta $4014 + +@vblankwait2: + bit $2002 + bpl @vblankwait2 + + lda #$3F + sta $2006 + lda #$00 + sta $2006 + + lda #$0F + ldx #$20 +@palettes_reset_loop: + sta $2007 + dex + bne @palettes_reset_loop + + jmp main @@ -0,0 +1,1231 @@ +;;; +;; Day 1 https://adventofcode.com/2023/day/1 +;; +;; This program then iterates over the array on `data` and computes the value on +;; each row, then accumulating it into a sum variable. This variable is stored +;; as a 16-bit number on $08-$09. In order to see the actual result, in FCEUX, +;; for example, you need to go to `Tools -> RAM Watch`, and set a watch on +;; address $08 which is unsigned and 2-bytes long. This will show you the end +;; result after a couple of seconds (yes, it's a big ass computation for poor +;; old NES, and it's quite fast considering that we are not rendering anything +;; on screen!). The result must be: `54953`. + +;; Luckily for us, good ol' NROM can fit the data set for this exercise :D +.segment "HEADER" + .byte 'N', 'E', 'S', $1A + + .byte $02 + .byte $01 + + .byte $00 + .byte $00 + +.segment "VECTORS" + .addr nmi, reset, irq + +.segment "CHARS" +.segment "STARTUP" +.segment "CODE" + +.include "../include/apu.s" +.include "../include/oam.s" +.include "../include/ppu.s" +.include "../include/reset.s" +.include "../include/globals.s" + +;; "Variables" used by this program. +.scope Vars + ;; After each iteration, this will hold the tenth of the number that has + ;; been computed. + m_tenth = $00 + + ;; After each iteration, this will hold the unit of the number that has been + ;; computed. + m_unit = $01 + + ;; The address where the current data row is located. This address will be + ;; incremented on each loop iteration so it always points to the first item + ;; of the needed row. + ;; + ;; NOTE: this is a full address and, therefore, is 16-bit. Because of this + ;; this is actually stored at $03-$04. + m_address = $03 + + ;; Used for temporary computations. + m_tmp = $05 + + ;; $08-$09 is a 16-bit number that accumulates the value being computed by + ;; this program. + m_sum = $08 + + ;; Zeroes out all variables and sets the base address for the data on + ;; `m_address`. + .proc init + lda #0 + sta Vars::m_tenth + sta Vars::m_unit + sta Vars::m_tmp + sta Vars::m_sum + sta Vars::m_sum + 1 + + lda #.LOBYTE(data) + sta Vars::m_address + lda #.HIBYTE(data) + sta Vars::m_address + 1 + + rts + .endproc +.endscope + +;; The main function will be called at the end of the `reset` vector as defined +;; in `include/reset.s`. +.proc main + cli + + lda #%10010000 + sta PPU::CONTROL + lda #%00011110 + sta PPU::MASK + + ;; Initialize variables being used for this program. + jsr Vars::init + + ;; This program uses two flags: + ;; - 7 (`render`): whether NMI-code can render stuff on screen. Unused but + ;; reserved out of habit. + ;; - 6 (`done`): whether the computation has been done. + lda #0 + sta Globals::m_flags + +@loop: + jsr compute_next + jmp @loop +.endproc + +;; Iterate over the row pointed by `m_address` and compute its value. The tenth +;; of the number will be stored into `m_tenth` and the unit on `m_unit`. +.proc compute + ;; $FF is the safeguard value, which simply means "not set yet". See code + ;; below. + ldy #$FF + sty Vars::m_tenth + sty Vars::m_unit +@loop: + ;; `m_address` has the base address for the current row and `y` is the index + ;; on it. Thus, the byte for this iteration is located by loading the base + ;; address plus the index. Each row is guaranteed to end with a zero value. + ;; Hence, if the load instruction sets the zero flag, then it means that we + ;; are done. + iny + lda (Vars::m_address), y + bne @do + rts +@do: + ;; The data is stored in plain ASCII. Thus, a numeric value must be between + ;; 48 to 57 exactly. The value is therefore computed by subtracting 48 and + ;; ensuring the it holds a value of 0-9 when doing so. If this is not the + ;; case, then we can go into the next iteration. + sec + sbc #48 + bcc @loop + cmp #10 + bcs @loop + + ;; Hey, this is actually a numeric value! Now check if `m_tenth` had already + ;; been set by a previous iteration (see $FF as a safeguard at the start of + ;; this function). If this is not the case, then we need to set this value + ;; as both the unit and the tenth (if only one number is seen on a row, then + ;; it has to be computed as both the unit and the tenth according to the + ;; enunciate). Otherwise, if the tenth had already been set, then just set + ;; the unit. + ldx Vars::m_tenth + cpx #$FF + bne @unit + sta Vars::m_tenth +@unit: + sta Vars::m_unit + jmp @loop +.endproc + +;; Compute the value from the row pointed by the address on `m_address`. After +;; that, accumulate this value into `m_sum` and finally move the `m_address` +;; address to the next row. This function will also set the `done` flag whenever +;; we reach the $ED control byte. +.proc compute_next + ;; Skip everything if the `done` flag is set. + bit Globals::m_flags + bvs @end + + ;; Call `compute` and `accumulate_number`, which work in tandem in order to + ;; fetch the value for the current row and add it into the `m_sum` + ;; accumulator. + jsr compute + jsr accumulate_number + + ;; The `compute` routine has set `y` to the amount of bytes that were + ;; traversed for the current row. Hence, if we want to move into the next + ;; row, just increase this value by one and add it to the 16-bit address on + ;; `m_address`. During the next iteration, `m_address` will already point to + ;; the first byte from the next row after this. + iny + tya + clc + adc Vars::m_address + sta Vars::m_address + lda #0 + adc Vars::m_address + 1 + sta Vars::m_address + 1 + + ;; Speaking of which: after computing our new 16-bit address, did we get a + ;; value of `$ED` which signals the end of input? If so, then set the `done` + ;; flag, so next iterations won't get into any of this logic. + ldy #0 + lda (Vars::m_address), y + cmp #$ED + bne @end + + lda #%01000000 + ora Globals::m_flags + sta Globals::m_flags +@end: + rts +.endproc + +;; Assuming that `m_tenth` contains the current tenth of the number to be added +;; and `m_unit` the unit, assemble this number and add it to the `m_sum` +;; accumulator. +.proc accumulate_number + ;; First of all multiply the value on `m_tenth` by 10 (done by adding + ;; m_tenth*2 + m_tenth*8). + lda Vars::m_tenth + asl + sta Vars::m_tmp + asl + asl + clc + adc Vars::m_tmp + + ;; And now just add this value with the units on `m_unit`. After this `a` + ;; holds the value to be accumulated. + clc + adc Vars::m_unit + + ;; Finally, add the computed value into the 16-bit sum value. + clc + adc Vars::m_sum + 1 + sta Vars::m_sum + 1 + lda #0 + adc Vars::m_sum + sta Vars::m_sum + + rts +.endproc + +;; Unused. +nmi: +irq: + rti + +.segment "RODATA" +data: + .asciiz "9cbncbxclbvkmfzdnldc" + .asciiz "jjn1drdffhs" + .asciiz "3six7" + .asciiz "38rgtnqqxtc" + .asciiz "rxszdkkv3j8kjhbm" + .asciiz "54nzzddht8ninelrkkseightseven6" + .asciiz "6fourmnvkgnthjtnjqkr" + .asciiz "nineninezsstmkone4sjnlbldcrj4eight" + .asciiz "3rdnfkvrx4twoqgeightqkgmn" + .asciiz "6mlhponeglrzrvbsseven" + .asciiz "five8spgxz8" + .asciiz "3three2dfourfour58" + .asciiz "9q" + .asciiz "two45" + .asciiz "five8mpkpdfiveeightfourseven" + .asciiz "93threefive3three92" + .asciiz "6jdzeightnineone1sclhzrnrjxfive" + .asciiz "6nseven16lbztpbbzthree8five" + .asciiz "eight6mntljvbfrmftsffchsix4" + .asciiz "4twosixvnhjl" + .asciiz "8d" + .asciiz "eightsevenvqvzlqxkbm6rqhsgqpnine7twonex" + .asciiz "seven96" + .asciiz "ck8tv6" + .asciiz "2mcddqpnbxssmrc6" + .asciiz "zsfbkrjjqpbbone6six2" + .asciiz "fourone8hfrkxrr" + .asciiz "7ninetphdpcx" + .asciiz "9gcn9six4mfnjgtcdc" + .asciiz "6onevsevenseven4three" + .asciiz "ldssggpknine7" + .asciiz "twolltbfkhltwo892jngx" + .asciiz "rsh1five3ninefourmfk" + .asciiz "xtrh534nqxr" + .asciiz "ggllvfjthreefcckbninekspmf6bnpkvt2" + .asciiz "kng16" + .asciiz "kqgthcleightsixeight96nine69" + .asciiz "nchcdqbsxmeighttwo65onevtqrznxmnl" + .asciiz "chphzzqb6threeqhspbgkrn6" + .asciiz "8threevbqxl4" + .asciiz "99eight2hgdvcqdqxsnmkxctskvxxvqxjt" + .asciiz "9qb95oneightsf" + .asciiz "tfmpcthbdbnzhldnbj96" + .asciiz "9mzbn" + .asciiz "twoseven9rmssixbvbjpsbjbh3two" + .asciiz "7fcmfjjrtz5six4" + .asciiz "hpspsgtfxvxtmdsqcninelcjhfb2mhffpvxkdxdlvkqxnine" + .asciiz "fivexrhxhtfivesevenone3d" + .asciiz "jvc6twofourbgfgrthree9fourmhz" + .asciiz "8xfvjdqlgfrlhzds4" + .asciiz "5271ninexfthree" + .asciiz "fbm1jd3onenine" + .asciiz "2jm7fchdklthreedzfg" + .asciiz "6lgrrzfkj" + .asciiz "eight6sixthree" + .asciiz "eightsixzng8dxxnfbqdjkjt1two" + .asciiz "fivesix92j" + .asciiz "1kfrjjq" + .asciiz "tjjthblvjfspbcshfivesix5fivesixf" + .asciiz "nrlx5vqzcfive" + .asciiz "doneightthtpmjlzhgpxdc18229twofive" + .asciiz "6shtlqlbsxnine7snthree" + .asciiz "oneonengtbjmlq4" + .asciiz "sixhxvzpshrhbbk3qdxrbq" + .asciiz "23onezbvbrlnseven239" + .asciiz "one883mztbhfvqqq3srfptz" + .asciiz "zxlglzxgkltc8four6kzmqf5eightstzlqcvxt" + .asciiz "3four452jclt" + .asciiz "sixmone3phrxxdninetwosix" + .asciiz "3nine39" + .asciiz "578nine4" + .asciiz "442ffhxfrxb" + .asciiz "shnnn3nqcgfbgpzzfrtchbseven5dk3" + .asciiz "ninenine5xrxrhcr" + .asciiz "ninefourdlckvqzz6oneseven" + .asciiz "fivetwoqcnqhbs9" + .asciiz "2sevenbgp8one" + .asciiz "twohqbp7fnndbjpn" + .asciiz "2nctn1pbbxmns" + .asciiz "46fourhjppdlkr" + .asciiz "cbfour3seven7dctlone" + .asciiz "sevenjxbbplfour488trzv" + .asciiz "5qqfb9twooneonethree" + .asciiz "7zzlgxrfmlpxrbbnjt7five5mxhd4" + .asciiz "99vdnnzcdsqxgbonefoursevenjjjgc1" + .asciiz "4threeeighttkqdxnkrgblvnine5" + .asciiz "sevendtlm5onetwo" + .asciiz "threeonejvxqb15nnjndprnn5cdxb9" + .asciiz "hkr1mtcmqqqsixxbfjnlqqlb" + .asciiz "six2five3jkknzf5" + .asciiz "9xgkspdhrfivesix15zj" + .asciiz "nsztwo4jxfzxbtrsjjnj8" + .asciiz "1twofive2sixqxxrjpgbdfive" + .asciiz "41sixgmgxzdseveneightmnmxj3" + .asciiz "8qrvxvfourseven1" + .asciiz "lms268eight" + .asciiz "7ninethreeksjz" + .asciiz "qeightwobrfvcssthreeeight3167" + .asciiz "ninetwoone532fqhggszllnfcmfs6" + .asciiz "838lcrhzs2" + .asciiz "ninedjpteighthqrgvklln3cxbt" + .asciiz "8lfxxeightone4526six" + .asciiz "1lmvvbl" + .asciiz "fvkxpcjm7tzzgkxfqoneeightone7nbxzskngd5" + .asciiz "twompjtfbt2" + .asciiz "twoeight4six" + .asciiz "zmpml5six54fourfour" + .asciiz "pndklmzmsseven9pncxgjrnine1three7pkjvv" + .asciiz "88kggbsqnfjngqffkbp5fivetwo5" + .asciiz "1xrvkpqvspt" + .asciiz "1eightxhpd5bsctj3three" + .asciiz "twothreexjvsxklsxeight4twofour" + .asciiz "tvqsngkbl7eightzxhxjmrhgs" + .asciiz "5zkxqxx" + .asciiz "7eightfour" + .asciiz "3pjsrdp" + .asciiz "fivermk75ninetghvdrltz" + .asciiz "prfthbhsftpmfcn7ronesix" + .asciiz "three9pvxmhkscqv" + .asciiz "sixninetqhj5two" + .asciiz "nsoneight3eight" + .asciiz "nineqdprvhtqb4fbone98nineeight" + .asciiz "ktfgnssfourdqktfflninephpntvmmm139" + .asciiz "qvxfzrdnineonenkpgxnnmqpsxrlcvjq5onehx" + .asciiz "cq57sixeightwosvx" + .asciiz "225vntfqdzqjgmtkdgbxrsr6three" + .asciiz "56981stx6xdjkhnvgq" + .asciiz "xksevendzeight2sixone" + .asciiz "863" + .asciiz "onethreetwofive5sevenfdmrmczlqs" + .asciiz "28qcdzgrbdkh" + .asciiz "6two43four" + .asciiz "fourseven4" + .asciiz "1jgone" + .asciiz "qmpsfscxxtsix872" + .asciiz "6sixthreeeight" + .asciiz "1bzxjhv2x" + .asciiz "onecs5one7five" + .asciiz "vr4phpdtmk3fivebtltwom" + .asciiz "4onefourqqrpvxn1two" + .asciiz "3sixsixjkfssevennpjfzhhsg1eightgj" + .asciiz "seven1eightsevennspvrr9" + .asciiz "5fiveseven7ninepkzzj" + .asciiz "xkjpxsqsfiveeightjgv2onelhdqjd2" + .asciiz "sone7rhbtvlttsix" + .asciiz "vrc6five6" + .asciiz "twoseven7" + .asciiz "onetwo9onehndznine" + .asciiz "5six6sixr" + .asciiz "vfiveeight6hdxnpfktttstnvhjks46" + .asciiz "fiveninefour8zpptwoonefjzvmnhnvq" + .asciiz "five53" + .asciiz "seventpfztfccgm8bxjsjxgmz" + .asciiz "eighttwo4tktgpbj" + .asciiz "6426" + .asciiz "jjkfournqbdqkddhlninekvd56bdshtbvn" + .asciiz "onefive1onehkhsix" + .asciiz "7sevenm9twofourqp" + .asciiz "26sevenseven3twonelq" + .asciiz "46threethree9seven" + .asciiz "9pnzsix648kgngnpxttzlqlmnine" + .asciiz "seven7onenine" + .asciiz "two3mtklsvrrbthtxsrgrtwo" + .asciiz "gkpfrq4vfddfqxzppmvthree733" + .asciiz "fq2qbmone" + .asciiz "threecvone7eightsevenxnmfbtp" + .asciiz "fivetmbnqlchhtqmbcsssvxjzvlxdvznlbfive7" + .asciiz "fvqzlcp5" + .asciiz "qhgjmzntonefnlxfqqrxx5three7twofr" + .asciiz "rczhlkcqpfkgcjmcggztjlqsgxmdxstwo88bdxmqjvlfl" + .asciiz "npqxcdnhltbjmpjvdvfvvthreennsnbfljq2" + .asciiz "four9gl" + .asciiz "gjrf94three14" + .asciiz "5xrpnzlneightsevenlkkltrpsqgzbzffpjhrkc" + .asciiz "twozmxqcsgkvjtkshttglxcx234xtzhht5" + .asciiz "fournine3rkxhdvjlzfour" + .asciiz "4onesnfive1sixeightwof" + .asciiz "threeone6sjnfive" + .asciiz "4ninefournrphscbjjc" + .asciiz "6xsvn6twofourseven4four" + .asciiz "khbqhgqpph5krdsrs35kfbnqdbb6" + .asciiz "7kdn5" + .asciiz "4scmksvgl8twoltonetwofivejl" + .asciiz "mmmkthreedmflzpmxqtccfz7" + .asciiz "lbkdqjfcf58hpdtgjnnvhsixfive" + .asciiz "chfbqldb52qkpzlkx" + .asciiz "98gbxklnbcb" + .asciiz "ghqrqplpone2ljzseven9" + .asciiz "fxqfour2njrxrz79" + .asciiz "rcbcmlvqc57btvhphxqbxvxxkjtlcvjffgxsdtjfb" + .asciiz "crgvfkklfivesixsevenngm52jl" + .asciiz "8rhvh5gdvx24" + .asciiz "qcnlc62" + .asciiz "pmcdbsvzgtqgczdvzln6" + .asciiz "fivernine29" + .asciiz "skslcfqkgk47four" + .asciiz "9twonine5sevenone" + .asciiz "ccltdxdfksnninekpzccsvtgrtseighteight9pgvlbkvs" + .asciiz "1nine7dqxdgknlz75" + .asciiz "fourninebbpthvqntf6759foursix" + .asciiz "qsvpn4mvhxgmzsevenpnkmtzrg" + .asciiz "82fqxx6oneg" + .asciiz "sixhnrk34" + .asciiz "nine5five6dkqxmnc" + .asciiz "qhdzhhqfbfjnfmglvxctkjm59" + .asciiz "1threeeightbchlm" + .asciiz "1drjnqoneninennhqt" + .asciiz "56six6two76bs" + .asciiz "7onefoursixhkhpdns" + .asciiz "4threectphcxfmmksdcsvhgfx" + .asciiz "5jsqbninelphjdmsnjl9eightql" + .asciiz "5vkkmjkrxpntmgfkfxmg4" + .asciiz "6sjxrtfnjkthree" + .asciiz "pmeight418" + .asciiz "vgldhpczvgr2twofour784" + .asciiz "5ndkknqfjjxfiveddfiveb" + .asciiz "five1tmv" + .asciiz "four37fourninethree34" + .asciiz "rcnvxqrsevenjttxd9fiverqzblpnrcjhbc4" + .asciiz "tdhvhhjxbbmjnls1vn8six" + .asciiz "two4three9" + .asciiz "2ckvlpznbqbqblqbr" + .asciiz "6nineseven8zfqfptcjxtfmmkqpj" + .asciiz "2jdxnqttrjvhmbbxqqmeight" + .asciiz "zloneightjzsxtsxhbgtwokdfour2pqmfkkqksxlfv" + .asciiz "8sixfive3" + .asciiz "qxgzh3gdjmdqlpdnfgdxvbblpnqtsevenseveneighthvmqqdmr" + .asciiz "8jjmbqnfive3bbxdzctxxn9five" + .asciiz "fivethree38four" + .asciiz "pdzbkmcvhbvfivexv5five5hzvvg4" + .asciiz "4eightkmsrlqsfcnmzvprdf4rcxxqtvpqcfjfptmk" + .asciiz "twortrlbqqkrnqgxhgseven5" + .asciiz "8sevenltzbjsfjxdkdjncm" + .asciiz "1nineqqbjsoneeightmzvfn" + .asciiz "threeeightsevenfour3jhkcthree" + .asciiz "nine265sixthree" + .asciiz "nnmbqhf6three" + .asciiz "4one5fivefivehbfktxgrdkdrgp" + .asciiz "twothreetwoseventwo8" + .asciiz "bkggrdbngtjfmhone6fmvfzpjldzb" + .asciiz "bpbg4tjqnine56zklbtkzlrs3" + .asciiz "4twokmxgqbgqgsseven8oneseven" + .asciiz "hvdv74ninej" + .asciiz "dfknvxfmczqrgdbqsph823" + .asciiz "3twoeightnine" + .asciiz "foursixeightbfhlczrpjfxfive7two" + .asciiz "fcpkrvmtzxkrfsmqcbzeight7gfourfbkthreeoneightvm" + .asciiz "four18vgkmj2gxmtxsbnvxthree" + .asciiz "415threecshnzmmx" + .asciiz "sevenseven44lkfourgmqtrs" + .asciiz "jnzsqsgznvcnjjfbblkteight8" + .asciiz "497three5eight8d" + .asciiz "88onethreexzsbgprp1" + .asciiz "eightszseven9htqlxb" + .asciiz "1lqqgzdrxt4qlqklftlsqzm" + .asciiz "rqbjqpfhzfeight6oneonelllcmbrdxqhmttptg" + .asciiz "fpqxqfourthreefqgdsmhjfk2rmb4" + .asciiz "qnshr9threeonefour" + .asciiz "xshsbkqxpltjsd2fivexvtrmnlpvtwo" + .asciiz "446" + .asciiz "nine2pvn12five7" + .asciiz "fourfourninemvfvztpkbb9nine" + .asciiz "3fhtlpone7965four" + .asciiz "qkpdgtrfprttrzc69" + .asciiz "1mfsltcsxvlcxfzdh3" + .asciiz "fgjfltjcsnps8three" + .asciiz "tbeightdsdtzmncv5pdcsk" + .asciiz "rsjvlhxtn7six" + .asciiz "7mdtl" + .asciiz "four3three6sgxdtdmtnfive3" + .asciiz "3eightninenineeightlxtqtspmklrxbknftrbh" + .asciiz "onenine92sixrnine6tggjndsrfd" + .asciiz "oneqdfhrfzlteighttftvfcrmmzz43lbmlbg" + .asciiz "35bthreernjskthzrs1two" + .asciiz "threesixeight7rjpcxnzmzfgngjpkk6eight" + .asciiz "six9ninerxfnldpsevenone1threenine" + .asciiz "5sixhjzkknthreenxklxbvgxfouroneseven" + .asciiz "1zkx93two9sixseven8" + .asciiz "sixtwocdnqdn2vdbnblzlvffmrninetzdtdpjjsrsix" + .asciiz "twoeighteight437nrscj" + .asciiz "six31vtcphkpltgbcprdhvdfivefoureightwonvh" + .asciiz "8pz" + .asciiz "hzrggpcmpnqzzgnxjfqrlllgnqks496five" + .asciiz "7glkjtgbsnqhnplzcp9rllkkznffnznngthree4seven" + .asciiz "one7fivetwo45" + .asciiz "4nxzxtnhb5foureighttwo" + .asciiz "threeone56lgzgdklhtwo" + .asciiz "rjnmxbflvn5oneightpj" + .asciiz "fs7tpvvf" + .asciiz "fhfkcx1hnzzjjh" + .asciiz "6onexqrfvldeightfourkcvpngj" + .asciiz "1threeeightxxcnjfl3zbxfgmfsx" + .asciiz "9327six" + .asciiz "three5p86sixcxdsjjvn9eight" + .asciiz "four1cfrxsdgnjtwo" + .asciiz "rxjmtgsixone87" + .asciiz "49sevennbgqf" + .asciiz "sixone42" + .asciiz "three3jblhchr" + .asciiz "hlroneight3hsjhkl" + .asciiz "sgtrvtcq22" + .asciiz "8seven985" + .asciiz "qrhnjnkstwo4fourthree" + .asciiz "8phnkkdrghbmtql" + .asciiz "two9sixncgqpsseventhreefourthree" + .asciiz "one3six3" + .asciiz "1nine4rtvxxgddzhf2" + .asciiz "2cfp84" + .asciiz "khgkvntthree2" + .asciiz "vsznj15ninehhlfiveone" + .asciiz "mmrxqjbjmrtwo7" + .asciiz "oneone7ninekmzgq" + .asciiz "eightone84lzktckgrbkzjzkqqxlgqn" + .asciiz "btzdblrrpfxljsix69" + .asciiz "82sixseven" + .asciiz "two5nineseveneight2eighttlmvfkf" + .asciiz "vlbnccpl1" + .asciiz "four5gsbz7" + .asciiz "418ncqrk651" + .asciiz "bkbbncm9eight6eightnine" + .asciiz "3sksvljxpkz4vcxsdnztfxeight8" + .asciiz "fivecfrlnh51glx2dsjqseven" + .asciiz "hnflgpth64threefour" + .asciiz "mjxthlr1six4tdplzrnhklnz" + .asciiz "ddrkrnssxtlkhbrjvkxpb39" + .asciiz "2tfoureightgvnl" + .asciiz "79six" + .asciiz "sixvktfvkmv5xhfgnine" + .asciiz "86szmzzfntxxltmkffnczrjvthreethreethree4" + .asciiz "threethree1sixdkmjpmxtwoonezktwo" + .asciiz "tlp189jnmskmcnkhvmn65" + .asciiz "41nqvvc" + .asciiz "4xrlpc7c82oneightk" + .asciiz "six1threecxxtttdthreeeightjc" + .asciiz "gbhkzvnrxfourndtfc6" + .asciiz "fivesevengjmnbpdvcdeight6vj6" + .asciiz "vfjdp8" + .asciiz "8dfrttfrtrtfour35" + .asciiz "887" + .asciiz "714eight1tdnt29" + .asciiz "xbmhsbn3" + .asciiz "gjktjcn3kf" + .asciiz "1327five1eighttwobfhtqcjjms" + .asciiz "pc615" + .asciiz "one1rthreefive" + .asciiz "fcjsktwo9" + .asciiz "lhgqvtxcntrljlnhdllthree1" + .asciiz "5xxmtwo1dkjpchmzfz9mndbrcbzkh6" + .asciiz "6zxdxzxt62three37" + .asciiz "cveightwo6" + .asciiz "ninezdvzbkggh4one63" + .asciiz "three7fivesix" + .asciiz "3vcdrd881vlmglkfone" + .asciiz "2ninenjcvq4" + .asciiz "5jltkfhl5onehthree3" + .asciiz "8eight4rgfrhseven" + .asciiz "6vqjgxltqd18two7onelkmc" + .asciiz "xffld1jjlqxfz7xjvxfspzrkztsdtsone" + .asciiz "9szzhnfpssevenoneeightfour42two" + .asciiz "four91mfnrxkcckd6vbhtxvvmzhpqqrkzxv" + .asciiz "eight2three6ksfive" + .asciiz "94eightslkpbf5zc5tm" + .asciiz "4twottthree91sevenone" + .asciiz "kjgfgq226fiveseven2" + .asciiz "kjrrgfmthree36ck" + .asciiz "sevensixfour24one8" + .asciiz "dqj8eightthreeqzcz8" + .asciiz "xtwo5pcdl3eight7" + .asciiz "one131xnghfczdpvsczkrxhjt3" + .asciiz "j4qqx" + .asciiz "hncrcntcmmpkn6sixzvjzkgr7" + .asciiz "9nnzltv7mclrhhgnmq2nine2" + .asciiz "6sixeight9" + .asciiz "5jgnhjmdc6xsdsl1five" + .asciiz "onerdtqzhpbdflxvrhnpjqdqzn39" + .asciiz "rcroneighttvnfcngrfblvmeight7sevenonevknxtpfour3" + .asciiz "mcfjn569" + .asciiz "44" + .asciiz "84six" + .asciiz "nineeight3" + .asciiz "one916" + .asciiz "eightfourseven5four" + .asciiz "nine1gpmqdxkzmr6six" + .asciiz "two4fouronesevensix1nscgll1" + .asciiz "eightthree44vxbjmvbpfleightvgbjxcgrjonesix" + .asciiz "6vmgscbtpsnkktmbdjpmmlv" + .asciiz "1one1" + .asciiz "ttwo9sevenninetwothreephpfrtjztn" + .asciiz "cxlzcpdd32dhvvcsgdcc49rhhrqpkxtwo" + .asciiz "8fourkkrbjsqt" + .asciiz "rxndgg4lhkcphmtmjvtqkc9qsevenpcmftwo" + .asciiz "jpgrzfvdx3858fourthreesix7" + .asciiz "7krxc9mjhgtonetqd" + .asciiz "eight2qhspjfm" + .asciiz "gsxplbone2pffltsp4two" + .asciiz "hqtwonethree939zknfxrqjpn4x" + .asciiz "eightsevenone4sevenmhxbbqrtwopgvvgn" + .asciiz "6three5tlffrcdszg384" + .asciiz "frqhjmqntneightxgtldk9qpdnncxgnmqzbzkqsxz5" + .asciiz "vsf42twolzmftmbbb346" + .asciiz "7eight47" + .asciiz "9four94kpmvbtblbxthreefourone" + .asciiz "2eightctvgglxjgxvghmsbbfivedbnn" + .asciiz "qxkvzrpkj79lkqtt" + .asciiz "jfjgzhrkpc77nine4nine8" + .asciiz "prqrpms3ninefiveqnhtngpbsix" + .asciiz "gqxbtbtvdoneznqsfpf9threelmhn" + .asciiz "four7sixjrrpqdjtbsfivetvcngclhrprmhftwo" + .asciiz "9sevenntmbflxvf1eight3nine9four" + .asciiz "twoqgxklrmdzntrbtvcfsix6" + .asciiz "zzt8kt2" + .asciiz "ninethddninexszntlm9jnqnbpb4" + .asciiz "lcsfourxdsk9297" + .asciiz "f2v96nqfour" + .asciiz "2tqsdl" + .asciiz "7onethreegeight" + .asciiz "47q667gtgj2sm" + .asciiz "8four7sevenfseveneightninettlqkc" + .asciiz "5ppkgf" + .asciiz "61threetwohxlxzbrlfjk" + .asciiz "6fcfbvhpzgl57" + .asciiz "five2tjkc5three5onepqlgv7" + .asciiz "five925ltvrgpzm" + .asciiz "jjstljfs47threebcg" + .asciiz "37seven" + .asciiz "8three47eight2pqxcvbn9" + .asciiz "threeeightrdndbtfpbszscbqzlhtq84" + .asciiz "xvqtwoeight4twoone2seven" + .asciiz "fourpcqvbcfvz8onefivev7xvtxdpbnone" + .asciiz "3956fivethree" + .asciiz "sevenlmsksix55" + .asciiz "eightnine17" + .asciiz "5hgqmlb" + .asciiz "eight91pfnngffzl8dxvlnnninektlmqq6" + .asciiz "5one8two9hh7" + .asciiz "qfourlvclhf8four" + .asciiz "9cfgrkdmeight" + .asciiz "foursevennvxcmjzzpjtwoone4onezlht" + .asciiz "njpjsceighthqqeight33two8ppjf" + .asciiz "four5djlmjfive99eightonefour" + .asciiz "jcf2s6gmzrnjrjkvfkgone6kbhjc" + .asciiz "threeninedbskzbqlb8jpnine7" + .asciiz "onekbddzcdx5eighttwo3" + .asciiz "3xms" + .asciiz "mmvvxmpthreesixone96" + .asciiz "3djjfsixtwo7threeeight1" + .asciiz "339" + .asciiz "3seven6" + .asciiz "six48nine533oneightv" + .asciiz "dkvvxngfrvhktzx3sixvqtkpqztzs49" + .asciiz "1three5ldzvllvqeight" + .asciiz "9hn8mdcpvzqlzctwo922" + .asciiz "164k7" + .asciiz "sixsix4c1tnkmzkqconejvdkcdfntpfkpsdm" + .asciiz "31qvdnvdqthreetwofour8two" + .asciiz "htwone6fkzkrdfcpqlnxlone" + .asciiz "2875" + .asciiz "6eighthj" + .asciiz "7lcchpx3x96fivefoursix" + .asciiz "kone1ptnkjhks65sixrsseight" + .asciiz "23sixninefour5" + .asciiz "xdnzfbpq2" + .asciiz "hbznxkpmktwo3six6sevenfourfive" + .asciiz "tbbcrzdtfive42eightsixfourthree" + .asciiz "5mjgvsrrdlnrvlr6ninevlzrksfj2five" + .asciiz "cftlmrsptdjtsndl2eight" + .asciiz "snmkjqprhk57ninetm383six" + .asciiz "krxqxdgdp7fkgtmdtbx11fivenqncrnhcone" + .asciiz "3sixmcfnf" + .asciiz "7jkfgvjlbkfvlmf9" + .asciiz "sixgljmbvxoneseveneightpfvvnl8" + .asciiz "523eight6" + .asciiz "seventwoone3rnxghtb9sixbkqch" + .asciiz "5hjzzvkbls9qrcqtrrk19hbrhszxfive" + .asciiz "8kbhdp483four" + .asciiz "seven7five1" + .asciiz "dklfjdmzc15zchbgmbqkgzgkn1sixsixeightwovz" + .asciiz "8sixqbpgkppjktwooneninethree" + .asciiz "seven16" + .asciiz "sdqvhfour2glrqkmj5fiveonegzqsdtgqskjcmgg" + .asciiz "twofiveoneseven1rqjvrrxtwonen" + .asciiz "rmgdlx9cskhdjlmtwobvpnjrcxbfftd5" + .asciiz "93mcfoursix4" + .asciiz "gst66jphtlbtngqdqdnonefoursevenseven" + .asciiz "seventwotntksixjrczhp557" + .asciiz "svjgzfkbj3five" + .asciiz "threeninetgqdgnmr1xxnxfxlninertwo" + .asciiz "jjhpnine33hjnine" + .asciiz "twojgcp9" + .asciiz "vgkbmkzrbbvlhv267" + .asciiz "fournine1eightfourcdvvdgkmkndbkrheightone" + .asciiz "1onefourthreecqbffjdvtzbxdc" + .asciiz "mmgvhrmftnmtdkqgf29" + .asciiz "7qnsfqj3one" + .asciiz "qhr933three5" + .asciiz "pqblftsix3" + .asciiz "one7sgsqvszkd6ztwovcrmqbjthdthree" + .asciiz "1qgqtnfive487czvxsjk" + .asciiz "37jrggmdknnine" + .asciiz "3sevenfour7sblhjqg9fourgchqkdg" + .asciiz "nfxdxlssvgxxvzgksrkxqtwoffpphxdqjzh9seven" + .asciiz "4qjhllxzdb8sgbgksxbblsmftd" + .asciiz "twofivegddmhcplptf13five" + .asciiz "twosix55" + .asciiz "3zcftpvkbmzpffpjrfouroneseven" + .asciiz "6vpsixhprqhzthree" + .asciiz "eight7ninemsmfbnqkzmqfd" + .asciiz "nbrtxpkpb1733" + .asciiz "nine33jbrkqlnf1" + .asciiz "14lgl" + .asciiz "eightjjvclfxp9" + .asciiz "fivetnmksk8cp6" + .asciiz "dpxcqhbkvlhccb1fntmcrjjgccnszct" + .asciiz "lbjppg3hrgpzstfqgbcrzbmn66two" + .asciiz "dxbxkzmpzzthreestcvtvhftgzctnvnshzgqtbgxlrqkthreefgxdrfmm7" + .asciiz "31lklpfour" + .asciiz "nineonezcmrfppsvbg7seven316" + .asciiz "9cxgcgjsd8ctgbh7" + .asciiz "9vdnine4five" + .asciiz "2jfkrtdxvzq" + .asciiz "qgzgclpt8jltqzkpvddtm" + .asciiz "614two" + .asciiz "pjb92two5sevenfkb6three" + .asciiz "twosix766five71" + .asciiz "86vbnpsixthreetwonevng" + .asciiz "onel2one" + .asciiz "4ninesevenpgbqgpfgkfzdsixmmfive4" + .asciiz "7xgcmqfqmk7twothreeninepdt5" + .asciiz "sdonefour77one" + .asciiz "fourmfhmsznxffzpgdonegck6nine6" + .asciiz "rxjspvttx6nine1knbsl" + .asciiz "pljd3fourone8" + .asciiz "8onevhpeightz94seven" + .asciiz "jtmdhqjn5eight" + .asciiz "onefshb1sixone2b" + .asciiz "seventwo4gnrsrpnfppseven2" + .asciiz "147fourfour" + .asciiz "9hfjjmgrzntssjpxcvbzpvmqzgsd54twonine" + .asciiz "mprnmlhxsdtntbknine1" + .asciiz "98onefivethreesix" + .asciiz "gd6ninejhsrhsevenksvkcone5" + .asciiz "fourd9xkcsrncpdsbqhcqg34twoneb" + .asciiz "pbx74kfivefourvmslqvfbml" + .asciiz "dmxmpl71" + .asciiz "594shxctmq6qkmnbrm" + .asciiz "5qrhd8jmmthjkdzhrxf6two" + .asciiz "four4six4three" + .asciiz "hlrsmmjjvshzztxrnznmseveneightfive9sjddhlfvftbtd" + .asciiz "fivesbcklfdrvz4pcxsvdcqpeightgj1tqkfnv8" + .asciiz "tthree4one9" + .asciiz "nine4sevensixone" + .asciiz "eight5threethreesevendrctkthree2" + .asciiz "4ngzcbtwo451bpvbtqdvk" + .asciiz "9two1tdjdlrflshfourjlkdctfp" + .asciiz "sevenseven6132sxqfspmvxjfvh" + .asciiz "fourfour28562" + .asciiz "seven6gsevenrtcsldgztqthree" + .asciiz "sixtfmvfnkqxlp3sfsmdlfgh5nine" + .asciiz "tjeightwornmddbpcsckjrzdtvzrxfivef4" + .asciiz "gcv42jfcdftseven1" + .asciiz "166eight73" + .asciiz "5tlcxlscsgmrznhlgfgkqdpksjllz" + .asciiz "2one7twofivesevenqxrdvbczfmt" + .asciiz "1bdqfdmtfrtx2svdltfzknnqssvxvsdkzvd3six" + .asciiz "rzztvfourfive754fournine" + .asciiz "71vfsixrjhdqqj" + .asciiz "one63csbsvkqmkjt" + .asciiz "3seven4fourthreeseven36" + .asciiz "bmkr6threefour" + .asciiz "5fmr6four6mxqj" + .asciiz "3five1one93" + .asciiz "5nrtfrdhfv4mkkhnine4" + .asciiz "mklgxhrpp3two" + .asciiz "hpfrfpkddsdqfgbhtgfourthreetvdvjrfr5" + .asciiz "five6ttmzjcs" + .asciiz "tlbzoneninesixsevenpddssz2" + .asciiz "prceightwo1" + .asciiz "vvktl7eightltmtpfcrkndtkglhndhvrbtfv6tjgrzqv2" + .asciiz "sjpzgmvmddttrcmnvzseventwocgzc4" + .asciiz "seventvxrsbbbzrkfbkbcrbdsdtv456" + .asciiz "ttwone12threesix" + .asciiz "85nine" + .asciiz "hdgxncxv83" + .asciiz "58sqpgnine" + .asciiz "65mpmptlg" + .asciiz "threefourxvmdkhlqd2three8xfphd8" + .asciiz "rdptwo22threergcfdntchfqbsseven" + .asciiz "98jbmmhznxvrqkdxseven1onem9" + .asciiz "eighttwo1twothree3sixjbjqgzx9" + .asciiz "9klnfhhx" + .asciiz "7three7five" + .asciiz "jlvrcqflvfivenine7cnx" + .asciiz "fourrr2ktmdqhsteightwot" + .asciiz "bkjgtqxg9fivenrsktmkmxcfbg4" + .asciiz "eightjj95six" + .asciiz "6threeonebmpqrnqgdqlkkqc" + .asciiz "seven5bbzlsnvjchbjgxh" + .asciiz "lbsptf1threefour9" + .asciiz "37threeeightcgfxdonebhkrdnfive4" + .asciiz "379263" + .asciiz "24vmbb" + .asciiz "9v" + .asciiz "1seven15" + .asciiz "slxpsix3threeeight64jlrnkmkrqr" + .asciiz "ninedjlvkxqh24" + .asciiz "sneightpssteightpdfzqjcjgsmseven7one" + .asciiz "sevenninehf6bxjtfntwo" + .asciiz "four2cknjgdkbqdvl4" + .asciiz "qxrzdhsjjkmtggt42" + .asciiz "tgsjddrgtkthreefzlvgrsix32onetwo" + .asciiz "3zldxonenrghfnhhmptbpgcl973" + .asciiz "8ckzrgrzbone4sixdspxtwo" + .asciiz "xvxzprh1mbpspkrv" + .asciiz "lgchfzs6sixthreeksix3khvhldq" + .asciiz "sixonefour2mxslvpdhk7" + .asciiz "6sixsixbghxppnztxfive" + .asciiz "jpdbbeight57seven" + .asciiz "2onethree61jtnjjcq" + .asciiz "63lfsznprjddqpfourcrkthree" + .asciiz "ninepqmvc2xtwotcjcfcvht" + .asciiz "1bcrpone" + .asciiz "pntsrhj725xblt2seven" + .asciiz "12nine1" + .asciiz "8twooneseven22" + .asciiz "hfrbxdlfzmjvdslseventhmtqzbtcmsqbeight5fiveqlglhclrh" + .asciiz "three6htff5nlzslroneightxm" + .asciiz "hzcdc6threeseveneightmckdvg4" + .asciiz "tgpjgvlq6nineseven8six2foureightwozbz" + .asciiz "three83bbbfsg" + .asciiz "75bpmqvdseventwo9four" + .asciiz "2nine8vjdcgvfns" + .asciiz "rjndbbfmppgd67eight3hztlrqv6" + .asciiz "onefourfour6" + .asciiz "two5six1" + .asciiz "954ninetghsfnnine12cmp" + .asciiz "6one8nfzstqlfive" + .asciiz "seven1sevenjrslmhrfivexsk" + .asciiz "nineqjgmh1onekqblsvjkdn2five" + .asciiz "eight94mzsevenvtkkv1cdqgv" + .asciiz "xsix4sixnine" + .asciiz "3pbxzxrsd" + .asciiz "77four9" + .asciiz "8zcthreethreeninettdb" + .asciiz "c4eightsevenxqnhvclfour" + .asciiz "gxbkjmfhhzlzrbzcmjmmnqxlsevenninefour4jcbgttq" + .asciiz "9zptjlhzkls1fdfzxvpssleightsdcmfour" + .asciiz "8oneone9one" + .asciiz "1threefive4zkslknvmr" + .asciiz "9seven4jninesix834" + .asciiz "sixdpgkdnnt4kjzgrjtcqlqq" + .asciiz "1qmcgnclrdqrc" + .asciiz "5xhlzgzpzbgzjcsthreefive" + .asciiz "mrgcpmnnsixeightfrtjfourjlbcdt3" + .asciiz "129twokqmtmdj" + .asciiz "fourskzt382mnznt17eightwocx" + .asciiz "9hnx914mtsnhnxtgn6" + .asciiz "81psmkhzk3fiveltthree" + .asciiz "lhbtwonetwo3dvrtmpjxk" + .asciiz "x859zhjsbzjpjrtrp6" + .asciiz "73mqrrpdrs" + .asciiz "43d73rbddvrz" + .asciiz "rnmrrcndm6" + .asciiz "x6rrnsmpgqmp3three1" + .asciiz "pbtnndfj2onetrvmvcftf4" + .asciiz "four6rfoursixfour5three" + .asciiz "69nine2szkcnjbmcvjtbjbgnmssghfdlninetwo" + .asciiz "one92phhclzfsfxqg" + .asciiz "hzc2" + .asciiz "fivethree8threedttx" + .asciiz "pjdkcdbxt5" + .asciiz "trgggsgx92six" + .asciiz "9ninethreeknlvmb" + .asciiz "eighttbbxhxcmrjqxkbjrdcjv5nineeighttffour" + .asciiz "9cghvbkpmkt" + .asciiz "sevenzhlcljtqcntthp7rr2" + .asciiz "3fxgjqpbp" + .asciiz "7nineqxqvhgf1plh4" + .asciiz "2fivethreeeightsixfiveqz" + .asciiz "twoeight8" + .asciiz "fvvjphpmqffqjchvtfivemseven8jmlrk6troneightvf" + .asciiz "three46" + .asciiz "tktkqsqskrpxl7thfrqnpdkzcjxvfmmbfourone" + .asciiz "9twosxgk" + .asciiz "g3scthxjb33nppgcone" + .asciiz "mxmr17fvcgh4nine" + .asciiz "vz82" + .asciiz "2threefivenineeightqmjlcsbqrcg4" + .asciiz "xptfourthree7mcfeight" + .asciiz "bdthlfbqbczmlh56" + .asciiz "onesixlpqxqlkxxkqldhd5twop36" + .asciiz "seventvptphkhhjvslhtphntwo2cfnn358" + .asciiz "shjlthfxpfive4rzm6eight" + .asciiz "three565nine4" + .asciiz "xfjoneightsix47sevendvtxtfive6" + .asciiz "9717one" + .asciiz "rkmhlxzpxgfourthree7qhh69pfds" + .asciiz "3threepvknzvbmbrvljtcx13three2" + .asciiz "1zbhchxzlccgfvbdtlmfr" + .asciiz "28hqpxjvxcmnqtxhhgninethree" + .asciiz "eight3phxhpsxnz6nvgqznb9h9" + .asciiz "2klvscxmt94fourthreekgmqgjbhnzrxtwo" + .asciiz "7eighthmbvjlfseven5" + .asciiz "k45ls" + .asciiz "1qkvvbvsixsix8threeshqknine" + .asciiz "4928plcrzs6" + .asciiz "gsskhbkmfzq8" + .asciiz "6crvcnine3six7eight1six" + .asciiz "fourfive311" + .asciiz "lqdjctn82sevenjdm6twoonesix" + .asciiz "8three8pqhmjjc" + .asciiz "hgn6mnpmdmcpzceighteightnxkvjjfrninejmpkrfzcgv3" + .asciiz "ln7pqvg3sevenkqtztcpjrxeight" + .asciiz "dqbrjj9fourseven" + .asciiz "4sevenone16" + .asciiz "9cxtchrmsd3fflmkdzdgp" + .asciiz "6349" + .asciiz "sixsevenlqgzcsvnd1" + .asciiz "kjfcbgeightthreejvqgk874" + .asciiz "2vkrvzpmfv4eightwob" + .asciiz "mhjrqbvlmgsixthree74" + .asciiz "fivekldbzshd37" + .asciiz "seven11fourcgvnqr7four" + .asciiz "fztzttvmx4vtwoone288" + .asciiz "5fivevlbqczq1" + .asciiz "twoncljq5" + .asciiz "jljz388kklzbronetmmf" + .asciiz "92twonmjmkhgqfhx66" + .asciiz "2rh9nine14seven98" + .asciiz "7hgzjblbxpkltmjmlpscd4svtwo1two" + .asciiz "xcchzd8fourhkrstwo9three" + .asciiz "lxgxlsdkvcfxsclj4cqzjgjgvtmkjlhxfnmfc3" + .asciiz "86hzhn8eight6" + .asciiz "qhsevenvpg4hzffldbrvpxxpthreeqpvvdndv" + .asciiz "five6eight15" + .asciiz "mhl8rcdkxx8" + .asciiz "3sevenv" + .asciiz "one131eight86fourk" + .asciiz "7hsnjrnlcnb8twosevennineeight1" + .asciiz "2khhfivejgbknv65" + .asciiz "8lmfd298dlnmszrrfive" + .asciiz "one5ppczgjzzsix" + .asciiz "nine6fchgqxsdjhqtwoqpqffhn6ncjxx" + .asciiz "bfivehtndrmm62" + .asciiz "829fourbjpmbfqkqgsixtwo" + .asciiz "xvcdsix3five" + .asciiz "sixhqthreeninethree7" + .asciiz "gpsdvj3zpztgcndvcxz12" + .asciiz "seven3fglvdzxzcqfive7four9five" + .asciiz "3five4gzgjbpptwo" + .asciiz "nine44four8" + .asciiz "4143two" + .asciiz "fourpcjhfjrxdhvzf2dkmszvtjx" + .asciiz "ninecrxdkznbg8p72nine2" + .asciiz "sevenrbzhktn7five7sixvklcksmb" + .asciiz "rndrrfhvl4zscdjmxcbrfvrxxjxcc1jjfsjntxzqp6eight" + .asciiz "sbnkdhrjrthreecvxqrfxccdpmqsix5jjpkrxfqlnxbzlzskcfgr" + .asciiz "two4xdtsdjtneight" + .asciiz "teightwo5k4eightmtheight" + .asciiz "eightzlc6lgtgxsvckm56" + .asciiz "qzrzhnchttjnjxjnine4seven611" + .asciiz "ninefiveninefqtd37eighthzghljhhv9" + .asciiz "bcbbbneight1rqjtnnzrv" + .asciiz "ninegldjhplfthreetnqcbrllpvjtlthn9xkbqkfourthree" + .asciiz "nineeight4" + .asciiz "4zvghdrbl7onemsbffzkjrb265" + .asciiz "lthreesix7two" + .asciiz "vvkfivefmkdsbst66" + .asciiz "3rxdgrfgdtwofourseven" + .asciiz "onegzbdndnqkkckpsh1vftnlhnqjcvrm4" + .asciiz "gpjld3lcvtzckpqrdghlpz" + .asciiz "3ngvnzone3" + .asciiz "sixfive8eightnine" + .asciiz "tscdrcsvztsnktrj495sg" + .asciiz "9twojbzsqv64smmhbqc" + .asciiz "8ninefour" + .asciiz "ttlrjjxm41four" + .asciiz "qtwonekvlm9tnmzlvpzzs1" + .asciiz "twotwo1fiveninelcl" + .asciiz "8rfvffourtwotwosixpqmthjsrgj3" + .asciiz "nineeight2seven" + .asciiz "n9" + .asciiz "two7fivenrgdqshs" + .asciiz "nine5foureightwom" + .asciiz "4tworvqpsxzhn" + .asciiz "18ghsmdrjlq8rfpmvqtgcl3fournine" + .asciiz "8three7qfskg" + .asciiz "nine82" + .asciiz "41zb5" + .asciiz "5cdpnqzfbthree" + .asciiz "247pgfzbhpbkxsk88three" + .asciiz "xsnjsqrrpck8two7" + .asciiz "qmlbtk79vqnzqv" + .asciiz "pkcmsixjhqtfzvjv23" + .asciiz "1nine1lnzeightlpxpssdgtsgbvqmftmnv2" + .asciiz "threefourhkfckgvqn721" + .asciiz "onethreegzninenineone31" + .asciiz "kttwo4gcpxpvrp" + .asciiz "4six4632" + .asciiz "7vmkqlqfbbzkksix3" + .asciiz "jsixpckt8six142nine" + .asciiz "two753six22f" + .asciiz "twotwokjgftjhnhp6onefour7hqzlcbkz8" + .asciiz "ghmjbfv49pls68" + .asciiz "three1889twogbcjkkzc6seven" + .asciiz "twothreethreevkmlsplbgninenine4six" + .asciiz "seven7vhjqfmklxsvc" + .asciiz "pxnxlqg91" + .asciiz "fzrbbvfsqrgcgsjjrd5" + .asciiz "skcm59mfgkjvcffourhqzsbpt12five" + .asciiz "three9eightvfksbfcf18vlvgsixnine" + .asciiz "oneonefour9eight" + .asciiz "zjrxbvxtjbqtqqeight75rf" + .asciiz "flk6gjsixtwo74five" + .asciiz "4jncmngfmqxs1four9" + .asciiz "1fivefivefournine58" + .asciiz "274" + .asciiz "gjjzjfplnninetwofourlgpjfpnkhsixthree3" + .asciiz "4jnthree75tdxnhpm7bv" + .asciiz "three82jgvgjthreev" + .asciiz "sevenfour8" + .asciiz "threeqfrhnkfkj2jhzllpn" + .asciiz "one859one" + .asciiz "8xtnbtqqh41fourmgxzpdv957" + .asciiz "37126" + .asciiz "zzsixsevenfrszzvchj9hxhdcxmxqqckclmfm" + .asciiz "sixsix79nine" + .asciiz "s2mkfdqmcznztqtgddtwo" + .asciiz "hpvpdczjvkf8two" + .asciiz "6two73hdnbrkgblgfiveblgzksljjjskfpthree" + .asciiz "7kndzrhvcnstgfxjlff9twoninervrknsffmfzmdhtth" + .asciiz "three81kqcfplcf7" + .asciiz "fivegtfbnspddkeightmmv4bzksixeighteight" + .asciiz "596ninefqrfvpfs" + .asciiz "sfpzkhxqp7" + .asciiz "kqd5" + .asciiz "1sevenljlmfh6" + .asciiz "75sevenxpzv8ngffsnm8" + .asciiz "rxqnshcskglgkrlhzone4" + .asciiz "1threespckmrpdnxfoursgqsevennnrhjkcrlbnine" + .asciiz "hffpvhxzznnkg86one61two" + .asciiz "7bqm5sevenkdnmqpqfvvtbsct" + .asciiz "3sevensixnineone5nine" + .asciiz "two1five23dgmqsgzftflfmjseven" + .asciiz "jzmltz1jtlnsbgtsix" + .asciiz "nine1sevenjltnln8fivenine" + .asciiz "svmzvnr8tfxqlxnc1" + .asciiz "sixrmcsqtphlk5" + .asciiz "fourjnpshskvmsqscq8threethree8six" + .asciiz "3threetrqfhnbtsbckkvf" + .asciiz "5fcmhxjhpr75zkcbqgltq93zcdm" + .asciiz "eightlzjjtzk3xlbvgnsfoureight8" + .asciiz "hrrxxnj6nine1two" + .asciiz "zbnj6txxhqgdtq21fvcjxvkkrsrrdmkrmvtbjhs" + .asciiz "threex86three" + .asciiz "onesevenone6four6twogjtqp" + .asciiz "92onethree52" + .asciiz "qgzcfour9eightbsrseven5" + .asciiz "rnrlmtqdqlb6" + .asciiz "sixeightzgbf788five" + .asciiz "sixgnlbxrfrc1jseightsixeight" + .asciiz "nzxgkcfive44tkblnn58jbmdg" + .asciiz "49fivefgsk" + .asciiz "one8zqztmlmss6fiveznccsnnnzqk" + .asciiz "6fivesevenfiveqrvlmdjvjxzvsix" + .asciiz "sxdgthcx9" + .asciiz "93qlthreefivezmk" + .asciiz "xvsrgcsqbsqhdnqhbmcgn39ninesixszgtlslqb5" + .asciiz "7sevenfourrpfqkkrm5" + .asciiz "vcmfthdpkzsjpjt5six" + .asciiz "zqtrk35lvsg1jkdfour5" + .asciiz "7threegqzhcnxcmcrpgjkttbmxq5" + .asciiz "2four25seveneight9" + .asciiz "3h" + .asciiz "xcspfcvfive37three7three" + .asciiz "nbsnvhg197csnine8gfttndsf" + .asciiz "xzztbq981vfbcmrv6ddrhrnprrnj" + .asciiz "5kv672fpd" + .asciiz "two2nine4fourl9foursix" + .asciiz "ghngfb2four67qsfhpsb" + .asciiz "4ninetwobcr49sixfive5" + .asciiz "2threethree7onefour4" + .asciiz "824zpsjjm" + .asciiz "four6twosevenqbmzone4fourph" + .asciiz "ctvmbrvksix18kz" + .asciiz "eightfive9twokrpsltfhkjkjkdqlszzs4glxxtgktsx" + .asciiz "2two7hxrncxqeight" + .asciiz "6121two46" + .asciiz "fivefourthreefivemkmb5fourmqfhmlrxmm" + .asciiz "fiveonefivevbtbzrone9tsix" + .asciiz "oneonethree5sgs9" + .asciiz "cdvrrsm53qfvdzhvnlprvfjcx" + .asciiz "jtflvmkdnineone62klbvbzzltscsvmbsbp7" + .asciiz "3mjmrxl3fourqfqhrknblcthreelfmm" + .asciiz "seven1vjlvfmh5flmnhfzsixfbdsjdkxqhvmj" + .asciiz "sixfourninefiveoneklpsgrtthree5zcpxs" + .asciiz "eight73pjvcbb" + .asciiz "gdgbgzdlgjt9hklsxglkrtwo1nchtbvltmxnzn" + .asciiz "87sixkfmrdmdx" + .asciiz "jrpjxhqkleightttpkqqrtzvb5threerx" + .asciiz "xdrjhrrnmnblnbtone8one" + .asciiz "618gnvslkkmm8" + .asciiz "tqrctvjjdone39" + .asciiz "6zs9lninekjbrm1twosix" + .asciiz "23mxsmvfthreefourkhvxmqg" + .asciiz "onemkhn4seven3mtphqnqb" + .asciiz "one5foursevenfivezpgvjmdhl" + .asciiz "2mskpg1threevdjjlzbrbsevengfgmqvd" + .asciiz "1hrrxgxgzhj2eightfive" + .asciiz "rlleightwo2vfq" + .asciiz "2gss" + .asciiz "4lndrzf7vcfffcb" + .asciiz "four5one" + .asciiz "three5lxddbbpccp6kkpgxm" + .asciiz "sixcbqfivesixzfgbzszq3tqcfqk" + .asciiz "8xpsixrcfoursixfkxh" + .asciiz "rqrtwojhcfive89fourthree" + .asciiz "5ninesixknjmlcjmnsmv2" + .asciiz "18zgjpthfsix2ncmdfkcsq3" + .asciiz "tsxbfgzhjr55seventhreesxnnjhninefive" + .asciiz "three61rqljxqdbch" + .asciiz "threelhqzdvxnsgkmthmbd7" + .asciiz "54two5dnhx5" + .asciiz "btc4ggbfmtfscgzfourtwothreeqptmrn" + .asciiz "rvqkbtvg331nine" + .asciiz "2fourkrgdhvkgzrhvqonefive" + .asciiz "7twoxkcpbfxthree" + .asciiz "bmzczfl54oneeightqslllrcjkm" + .asciiz "sbjgbkn89" + .asciiz "9rpq83seven" + .asciiz "fiveqmqklgxkqrrckkjqsxkkfjzzdml87seven" + .asciiz "74one27" + .asciiz "45four3" + .asciiz "pbhcrscll27five5" + .asciiz "7bbmjqlxv1dbdsvsc" + .asciiz "sevenrhqt9sixthreethree" + .asciiz "4sr8five" + .asciiz "kc1" + .asciiz "1eightlkjrvmpt4sixtwo" + .asciiz "1oneddzcqhmgd6" + .asciiz "feight6tmqcj4four" + .asciiz "five9mj7mgjqfhshvhxskjsix8" + .asciiz "six99eightg42" + .asciiz "vfhvmxnvhxnonekrhfzqpseven27" + .asciiz "866three" + .asciiz "eight5one118" + .asciiz "clqlseveneight8dbrqdlcf7" + .asciiz "9mnlgvcfmlrsrxfp7six" + .asciiz "8mzlgnnqddptwoone" + .asciiz "3bqckbeighteightthreesevensltsixf" + .asciiz "eightfive37688eighteightwof" + .asciiz "sixfour2one4zzqtdp" + .asciiz "mkx1twofourxseven67" + .asciiz "1jhcktvgninethreexdmfqdbjxltzj7rhkdbvf3" + .asciiz "two16" + .asciiz "5443" + .asciiz "1three52nine7threemszlkc" + .asciiz "jsgqfbhmcmtjmxkq1brl9eight6" + .asciiz "fzvgmbbeight8" + .asciiz "861snhtzkvcpnr4" + .asciiz "b6kpxgcv71six1" + .asciiz "c5four7vcnqhd84threefsklxc" + .asciiz "lcpdthree2three9three" + .asciiz "kljtp912sevenctg" + .asciiz "241zlv59sevenqdbvddmrhtfgrhxgxmb" + .asciiz "hksp3gdmcldnvbts1" + .asciiz "xvcpr86btlptpnphhsix5fivenine" + .asciiz "fivehgtmtxtwothree1seven" + .asciiz "fpjpnrtpthreegjmfsjpcsix4twoonejqrr9" + .asciiz "2hsrckv4639six3" + .asciiz "fourtwofour3" + .asciiz "2kggzqfourfourseven" + .asciiz "three526seven6gbmjbqkncg" + .asciiz "crstsqhvt98rhzvhsshthreebj" + .asciiz "xbhcfqvplfive9one77" + .asciiz "7256hlnmqlhth" + .asciiz "5rttvcfhbjzoneqdbhvtwoneb" + .asciiz "7mxgmsvxzzsevenclzbcq3twos" + .asciiz "xcmpjgk9" + .asciiz "eight5cnntwopzjrmgbhq" + .asciiz "rvbfnddhg25lpthcsfxfdkmseven" + .asciiz "eight82cppmnpvkvthreesevenseven8h" + .asciiz "fourhmpknkfdtwogfhrgthree84" + .asciiz "6six3599fivejhmjzdzsr" + .asciiz "sevenbngxnjljfivegcvtmnt5k1" + .asciiz "twoone58nine" + .asciiz "29jfctbqssvrtwothreeg" + .asciiz "84kkjdjjp" + .asciiz "threektqgtgcrccbsnsqpcfxtb3vxtdfour2hgvdg" + .asciiz "6fivejttmkvvpntvqlfpbjbcfkcztltwosix" + .asciiz "twoseven7qkhzqlx9four" + .asciiz "ktnxrj2sixsevenrcnqbksgbgdfxrdqgz" + .asciiz "236four" + .asciiz "grbhpnjrtvrbslnfgthree47vbpncxqfourfp" + .asciiz "5sevenkrlmnrjsix4" + .asciiz "5fivekgsxtbvkk" + .asciiz "2two4" + .asciiz "lkrjlsz7mgv9525p1" + .asciiz "nineonebmfdxxfqvvkrblrd9" + .asciiz "5six6cvmqttbsxkzg" + .asciiz "42seven13four4" + .byte $ED |
