├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── beatmap.osu ├── omppc.lua ├── test.bat └── test.lua /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lua51.dll 3 | luajit.exe 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.stickyTabStops": true, 3 | "editor.formatOnSave": true, 4 | "editor.detectIndentation": false, 5 | "editor.insertSpaces": false, 6 | "Lua.runtime.version": "LuaJIT" 7 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # omppc 2 | osu!mania performance points (and starrate) calculator 3 | luajit required (for bit operations) 4 | ``` 5 | Usage: luajit omppc.lua [OPTIONS] 6 | 7 | -b set path to .osu file 8 | -m set mods in AABB..ZZ format (e.g. EZNFFL) or number 9 | -s set score 10 | -v set verbose mode 11 | -j set json mode 12 | 13 | Examples: 14 | luajit omppc.lua -b /path/to/file.osu -s 1000000 15 | omppc.lua -b /path/to/file.osu -s 1000000 16 | omppc.lua -b "/path with spaces/to/file.osu" -s 1000000 17 | omppc.lua -b /path/to/file.osu -s 500000 -m EZDT -v 18 | omppc.lua -b map.osu -s 500000 -m 64 -j 19 | ``` 20 | -------------------------------------------------------------------------------- /beatmap.osu: -------------------------------------------------------------------------------- 1 | osu file format v14 2 | 3 | [General] 4 | AudioFilename: Doppelganger.mp3 5 | AudioLeadIn: 0 6 | PreviewTime: 19648 7 | Countdown: 0 8 | SampleSet: None 9 | StackLeniency: 0.7 10 | Mode: 3 11 | LetterboxInBreaks: 0 12 | SpecialStyle: 0 13 | WidescreenStoryboard: 0 14 | 15 | [Editor] 16 | Bookmarks: 791,4219,11076,19648,29933,37648,44505,54790,61648,66790,75362,83076,89933,93362,109648,116505,124219,134505,144790 17 | DistanceSpacing: 2 18 | BeatDivisor: 4 19 | GridSize: 4 20 | TimelineZoom: 2.299999 21 | 22 | [Metadata] 23 | Title:Doppelganger 24 | TitleUnicode:Doppelganger 25 | Artist:LeaF 26 | ArtistUnicode:LeaF 27 | Creator:Jinjin 28 | Version:jakads' Extra 29 | Source:BMS 30 | Tags:bms of fighters 2013 bof frenz come to an end einsamkeit jakads lude evening 31 | BeatmapID:1023967 32 | BeatmapSetID:407153 33 | 34 | [Difficulty] 35 | HPDrainRate:8 36 | CircleSize:7 37 | OverallDifficulty:8 38 | ApproachRate:5 39 | SliderMultiplier:1.4 40 | SliderTickRate:1 41 | 42 | [Events] 43 | //Background and Video events 44 | 0,0,"doppelganger bg new.jpg",0,0 45 | //Break Periods 46 | //Storyboard Layer 0 (Background) 47 | //Storyboard Layer 1 (Fail) 48 | //Storyboard Layer 2 (Pass) 49 | //Storyboard Layer 3 (Foreground) 50 | //Storyboard Sound Samples 51 | 52 | [TimingPoints] 53 | 791,214.285714285714,4,3,0,30,1,0 54 | 898,-10000,4,3,0,30,0,0 55 | 1058,-33.3333333333333,4,3,0,30,0,0 56 | 1112,-10000,4,3,0,30,0,0 57 | 1273,-33.3333333333333,4,3,0,30,0,0 58 | 1326,-10000,4,3,0,30,0,0 59 | 1487,-33.3333333333333,4,3,0,30,0,0 60 | 1540,-10000,4,3,0,30,0,0 61 | 1701,-40,4,3,0,30,0,0 62 | 1755,-250,4,3,0,30,0,0 63 | 1808,-66.6666666666667,4,3,0,30,0,0 64 | 1862,-250,4,3,0,30,0,0 65 | 1915,-66.6666666666667,4,3,0,30,0,0 66 | 1969,-250,4,3,0,30,0,0 67 | 2023,-66.6666666666667,4,3,0,30,0,0 68 | 2076,-100,4,3,0,30,0,0 69 | 2719,-66.6666666666667,4,3,0,30,0,0 70 | 2773,-250,4,3,0,30,0,0 71 | 2826,-100,4,3,0,30,0,0 72 | 3469,-62.5,4,3,0,30,0,0 73 | 3523,-250,4,3,0,30,0,0 74 | 3576,-55.5555555555556,4,3,0,30,0,0 75 | 3630,-250,4,3,0,30,0,0 76 | 3683,-50,4,3,0,30,0,0 77 | 3737,-250,4,3,0,30,0,0 78 | 3790,-90.9090909090909,4,3,0,30,0,0 79 | 4005,-89.2857142857143,4,3,0,30,0,0 80 | 4058,-87.719298245614,4,3,0,30,0,0 81 | 4112,-86.2068965517241,4,3,0,30,0,0 82 | 4165,-84.7457627118644,4,3,0,30,0,0 83 | 4219,-76.9230769230769,4,3,0,30,0,0 84 | 4246,-100,4,3,0,30,0,0 85 | 4433,-76.9230769230769,4,3,0,30,0,0 86 | 4460,-100,4,3,0,30,0,0 87 | 4648,-76.9230769230769,4,3,0,30,0,0 88 | 4674,-100,4,3,0,30,0,0 89 | 4862,-76.9230769230769,4,3,0,30,0,0 90 | 4889,-100,4,3,0,30,0,0 91 | 5076,-76.9230769230769,4,3,0,30,0,0 92 | 5103,-100,4,3,0,30,0,0 93 | 5290,-76.9230769230769,4,3,0,30,0,0 94 | 5317,-100,4,3,0,30,0,0 95 | 5505,-76.9230769230769,4,3,0,30,0,0 96 | 5532,-100,4,3,0,30,0,0 97 | 5719,-76.9230769230769,4,3,0,30,0,0 98 | 5746,-100,4,3,0,30,0,0 99 | 5933,-102.040816326531,4,3,0,30,0,0 100 | 5987,-104.166666666667,4,3,0,30,0,0 101 | 6040,-105.263157894737,4,3,0,30,0,0 102 | 6094,-106.382978723404,4,3,0,30,0,0 103 | 6148,-107.52688172043,4,3,0,30,0,0 104 | 6201,-108.695652173913,4,3,0,30,0,0 105 | 6255,-109.89010989011,4,3,0,30,0,0 106 | 6308,-111.111111111111,4,3,0,30,0,0 107 | 7005,-109.89010989011,4,3,0,30,0,0 108 | 7058,-108.695652173913,4,3,0,30,0,0 109 | 7112,-107.52688172043,4,3,0,30,0,0 110 | 7165,-106.382978723404,4,3,0,30,0,0 111 | 7219,-105.263157894737,4,3,0,30,0,0 112 | 7273,-104.166666666667,4,3,0,30,0,0 113 | 7326,-103.092783505155,4,3,0,30,0,0 114 | 7380,-102.040816326531,4,3,0,30,0,0 115 | 7433,-71.4285714285714,4,3,0,30,0,0 116 | 7460,-333.333333333333,4,3,0,30,0,0 117 | 7487,-71.4285714285714,4,3,0,30,0,0 118 | 7514,-333.333333333333,4,3,0,30,0,0 119 | 7540,-71.4285714285714,4,3,0,30,0,0 120 | 7567,-333.333333333333,4,3,0,30,0,0 121 | 7594,-71.4285714285714,4,3,0,30,0,0 122 | 7621,-333.333333333333,4,3,0,30,0,0 123 | 7648,-76.9230769230769,4,3,0,30,0,0 124 | 7674,-100,4,3,0,30,0,0 125 | 7862,-76.9230769230769,4,3,0,30,0,0 126 | 7889,-100,4,3,0,30,0,0 127 | 8076,-76.9230769230769,4,3,0,30,0,0 128 | 8103,-100,4,3,0,30,0,0 129 | 8290,-76.9230769230769,4,3,0,30,0,0 130 | 8317,-100,4,3,0,30,0,0 131 | 8505,-76.9230769230769,4,3,0,30,0,0 132 | 8532,-100,4,3,0,30,0,0 133 | 8719,-76.9230769230769,4,3,0,30,0,0 134 | 8746,-100,4,3,0,30,0,0 135 | 8933,-76.9230769230769,4,3,0,30,0,0 136 | 8960,-100,4,3,0,30,0,0 137 | 9148,-76.9230769230769,4,3,0,30,0,0 138 | 9174,-100,4,3,0,30,0,0 139 | 9362,-108.695652173913,4,3,0,30,0,0 140 | 9469,-107.52688172043,4,3,0,30,0,0 141 | 9576,-106.382978723404,4,3,0,30,0,0 142 | 9683,-105.263157894737,4,3,0,30,0,0 143 | 9790,-104.166666666667,4,3,0,30,0,0 144 | 9898,-103.092783505155,4,3,0,30,0,0 145 | 9951,-102.040816326531,4,3,0,30,0,0 146 | 10005,-101.010101010101,4,3,0,30,0,0 147 | 10058,-100,4,3,0,30,0,0 148 | 10112,-99.009900990099,4,3,0,30,0,0 149 | 10165,-98.0392156862745,4,3,0,30,0,0 150 | 10219,-86.9565217391304,4,3,0,30,0,0 151 | 10273,-97.0873786407767,4,3,0,30,0,0 152 | 10433,-84.7457627118644,4,3,0,30,0,0 153 | 10487,-96.1538461538461,4,3,0,30,0,0 154 | 10648,-81.9672131147541,4,3,0,30,0,0 155 | 10701,-95.2380952380952,4,3,0,30,0,0 156 | 10862,-93.4579439252336,4,3,0,30,0,0 157 | 10915,-91.743119266055,4,3,0,30,0,0 158 | 10969,-90.0900900900901,4,3,0,30,0,0 159 | 11023,-88.4955752212389,4,3,0,30,0,0 160 | 11076,-100,4,3,0,30,0,0 161 | 14505,-55.5555555555556,4,3,0,30,0,0 162 | 14558,-100,4,3,0,30,0,0 163 | 15576,-66.6666666666667,4,3,0,30,0,0 164 | 15603,-200,4,3,0,30,0,0 165 | 15630,-66.6666666666667,4,3,0,30,0,0 166 | 15657,-200,4,3,0,30,0,0 167 | 15683,-66.6666666666667,4,3,0,30,0,0 168 | 15710,-200,4,3,0,30,0,0 169 | 15737,-66.6666666666667,4,3,0,30,0,0 170 | 15764,-200,4,3,0,30,0,0 171 | 15790,-66.6666666666667,4,3,0,30,0,0 172 | 15817,-200,4,3,0,30,0,0 173 | 15844,-66.6666666666667,4,3,0,30,0,0 174 | 15871,-200,4,3,0,30,0,0 175 | 15898,-66.6666666666667,4,3,0,30,0,0 176 | 15924,-200,4,3,0,30,0,0 177 | 15951,-66.6666666666667,4,3,0,30,0,0 178 | 15978,-200,4,3,0,30,0,0 179 | 16005,-50,4,3,0,30,0,0 180 | 16058,-125,4,3,0,30,0,0 181 | 16219,-50,4,3,0,30,0,0 182 | 16273,-125,4,3,0,30,0,0 183 | 16540,-55.5555555555556,4,3,0,30,0,0 184 | 16594,-125,4,3,0,30,0,0 185 | 16862,-50,4,3,0,30,0,0 186 | 16915,-125,4,3,0,30,0,0 187 | 17183,-50,4,3,0,30,0,0 188 | 17237,-125,4,3,0,30,0,0 189 | 17505,-33.3333333333333,4,3,0,30,0,0 190 | 17558,-200,4,3,0,30,0,0 191 | 17933,-100,4,3,0,30,0,0 192 | 17987,-98.0392156862745,4,3,0,30,0,0 193 | 18040,-96.1538461538461,4,3,0,30,0,0 194 | 18094,-94.3396226415094,4,3,0,30,0,0 195 | 18148,-92.5925925925926,4,3,0,30,0,0 196 | 18201,-90.9090909090909,4,3,0,30,0,0 197 | 18255,-89.2857142857143,4,3,0,30,0,0 198 | 18683,-90.0900900900901,4,3,0,30,0,0 199 | 18737,-91.743119266055,4,3,0,30,0,0 200 | 18790,-93.4579439252336,4,3,0,30,0,0 201 | 18844,-95.2380952380952,4,3,0,30,0,0 202 | 18898,-97.0873786407767,4,3,0,30,0,0 203 | 18951,-100,4,3,0,30,0,0 204 | 19005,-105.263157894737,4,3,0,30,0,0 205 | 19219,-108.695652173913,4,3,0,30,0,0 206 | 19433,-111.111111111111,4,3,0,30,0,0 207 | 19648,-113.636363636364,4,3,0,30,0,0 208 | 21362,-111.111111111111,4,3,0,30,0,0 209 | 22219,-109.89010989011,4,3,0,30,0,0 210 | 23076,-108.695652173913,4,3,0,30,0,0 211 | 23933,-107.52688172043,4,3,0,30,0,0 212 | 24790,-106.382978723404,4,3,0,30,0,0 213 | 25648,-105.263157894737,4,3,0,30,0,0 214 | 26505,-104.166666666667,4,3,0,30,0,0 215 | 27362,-90.9090909090909,4,3,0,30,0,0 216 | 27415,-103.092783505155,4,3,0,30,0,0 217 | 27576,-55.5555555555556,4,3,0,30,0,0 218 | 27612,-333.333333333333,4,3,0,30,0,0 219 | 27648,-55.5555555555556,4,3,0,30,0,0 220 | 27683,-333.333333333333,4,3,0,30,0,0 221 | 27719,-55.5555555555556,4,3,0,30,0,0 222 | 27755,-333.333333333333,4,3,0,30,0,0 223 | 27790,-103.092783505155,4,3,0,30,0,0 224 | 28219,-102.040816326531,4,3,0,30,0,0 225 | 28326,-88.4955752212389,4,3,0,30,0,0 226 | 28380,-102.040816326531,4,3,0,30,0,0 227 | 28487,-88.4955752212389,4,3,0,30,0,0 228 | 28540,-102.040816326531,4,3,0,30,0,0 229 | 28648,-50,4,3,0,30,0,0 230 | 28674,-500,4,3,0,30,0,0 231 | 28701,-50,4,3,0,30,0,0 232 | 28728,-500,4,3,0,30,0,0 233 | 28755,-50,4,3,0,30,0,0 234 | 28782,-500,4,3,0,30,0,0 235 | 28808,-50,4,3,0,30,0,0 236 | 28835,-500,4,3,0,30,0,0 237 | 28862,-102.040816326531,4,3,0,30,0,0 238 | 29076,-48.780487804878,4,3,0,30,0,0 239 | 29103,-526.315789473684,4,3,0,30,0,0 240 | 29130,-48.780487804878,4,3,0,30,0,0 241 | 29157,-526.315789473684,4,3,0,30,0,0 242 | 29183,-48.780487804878,4,3,0,30,0,0 243 | 29210,-526.315789473684,4,3,0,30,0,0 244 | 29237,-48.780487804878,4,3,0,30,0,0 245 | 29264,-526.315789473684,4,3,0,30,0,0 246 | 29290,-101.010101010101,4,3,0,30,0,0 247 | 29505,-47.6190476190476,4,3,0,30,0,0 248 | 29532,-555.555555555556,4,3,0,30,0,0 249 | 29558,-47.6190476190476,4,3,0,30,0,0 250 | 29585,-555.555555555556,4,3,0,30,0,0 251 | 29612,-47.6190476190476,4,3,0,30,0,0 252 | 29639,-555.555555555556,4,3,0,30,0,0 253 | 29665,-47.6190476190476,4,3,0,30,0,0 254 | 29692,-555.555555555556,4,3,0,30,0,0 255 | 29719,-100,4,3,0,30,0,0 256 | 29933,-10,4,3,0,30,0,0 257 | 29947,-200,4,3,0,30,0,0 258 | 29987,-100,4,3,0,30,0,0 259 | 30362,-66.6666666666667,4,3,0,30,0,0 260 | 30415,-200,4,3,0,30,0,0 261 | 30469,-66.6666666666667,4,3,0,30,0,0 262 | 30523,-200,4,3,0,30,0,0 263 | 30576,-66.6666666666667,4,3,0,30,0,0 264 | 30630,-200,4,3,0,30,0,0 265 | 30683,-66.6666666666667,4,3,0,30,0,0 266 | 30737,-200,4,3,0,30,0,0 267 | 30790,-66.6666666666667,4,3,0,30,0,0 268 | 30844,-200,4,3,0,30,0,0 269 | 30898,-66.6666666666667,4,3,0,30,0,0 270 | 30951,-200,4,3,0,30,0,0 271 | 31005,-66.6666666666667,4,3,0,30,0,0 272 | 31058,-200,4,3,0,30,0,0 273 | 31112,-100,4,3,0,30,0,0 274 | 31648,-57.1428571428571,4,3,0,30,0,0 275 | 31808,-100,4,3,0,30,0,0 276 | 31969,-57.1428571428571,4,3,0,30,0,0 277 | 32130,-100,4,3,0,30,0,0 278 | 32290,-57.1428571428571,4,3,0,30,0,0 279 | 32451,-100,4,3,0,30,0,0 280 | 32612,-57.1428571428571,4,3,0,30,0,0 281 | 32773,-100,4,3,0,30,0,0 282 | 32933,-57.1428571428571,4,3,0,30,0,0 283 | 33415,-100,4,3,0,30,0,0 284 | 33576,-57.1428571428571,4,3,0,30,0,0 285 | 33630,-100,4,3,0,30,0,0 286 | 33790,-57.1428571428571,4,3,0,30,0,0 287 | 33844,-100,4,3,0,30,0,0 288 | 34005,-57.1428571428571,4,3,0,30,0,0 289 | 34058,-100,4,3,0,30,0,0 290 | 34219,-57.1428571428571,4,3,0,30,0,0 291 | 34380,-100,4,3,0,30,0,0 292 | 34540,-57.1428571428571,4,3,0,30,0,0 293 | 34701,-100,4,3,0,30,0,0 294 | 34862,-57.1428571428571,4,3,0,30,0,0 295 | 35023,-100,4,3,0,30,0,0 296 | 35183,-57.1428571428571,4,3,0,30,0,0 297 | 35344,-100,4,3,0,30,0,0 298 | 35505,-95.2380952380952,4,3,0,30,0,0 299 | 37648,-66.6666666666667,4,3,0,30,0,0 300 | 37701,-100,4,3,0,30,0,0 301 | 38076,-66.6666666666667,4,3,0,30,0,0 302 | 38130,-200,4,3,0,30,0,0 303 | 38183,-66.6666666666667,4,3,0,30,0,0 304 | 38237,-200,4,3,0,30,0,0 305 | 38290,-66.6666666666667,4,3,0,30,0,0 306 | 38344,-200,4,3,0,30,0,0 307 | 38398,-66.6666666666667,4,3,0,30,0,0 308 | 38451,-200,4,3,0,30,0,0 309 | 38505,-100,4,3,0,30,0,0 310 | 38880,-25,4,3,0,30,0,0 311 | 38907,-333.333333333333,4,3,0,30,0,0 312 | 38934,-200,4,3,0,30,0,0 313 | 38961,-133.333333333333,4,3,0,30,0,0 314 | 38987,-100,4,3,0,30,0,0 315 | 39362,-99.009900990099,4,3,0,30,0,0 316 | 39415,-98.0392156862745,4,3,0,30,0,0 317 | 39469,-97.0873786407767,4,3,0,30,0,0 318 | 39523,-96.1538461538461,4,3,0,30,0,0 319 | 39576,-95.2380952380952,4,3,0,30,0,0 320 | 39630,-94.3396226415094,4,3,0,30,0,0 321 | 39683,-93.4579439252336,4,3,0,30,0,0 322 | 39737,-92.5925925925926,4,3,0,30,0,0 323 | 39790,-90.9090909090909,4,3,0,30,0,0 324 | 39844,-100,4,3,0,30,0,0 325 | 40648,-62.5,4,3,0,30,0,0 326 | 40701,-100,4,3,0,30,0,0 327 | 41076,-66.6666666666667,4,3,0,30,0,0 328 | 41183,-200,4,3,0,30,0,0 329 | 41290,-66.6666666666667,4,3,0,30,0,0 330 | 41398,-200,4,3,0,30,0,0 331 | 41505,-100,4,3,0,30,0,0 332 | 42790,-99.009900990099,4,3,0,30,0,0 333 | 42844,-98.0392156862745,4,3,0,30,0,0 334 | 42898,-97.0873786407767,4,3,0,30,0,0 335 | 42951,-96.1538461538461,4,3,0,30,0,0 336 | 43005,-95.2380952380952,4,3,0,30,0,0 337 | 43058,-94.3396226415094,4,3,0,30,0,0 338 | 43112,-93.4579439252336,4,3,0,30,0,0 339 | 43165,-92.5925925925926,4,3,0,30,0,0 340 | 43219,-90.9090909090909,4,3,0,30,0,0 341 | 43273,-100,4,3,0,30,0,0 342 | 43540,-58.8235294117647,4,3,0,30,0,0 343 | 43594,-142.857142857143,4,3,0,30,0,0 344 | 43755,-66.6666666666667,4,3,0,30,0,0 345 | 43808,-200,4,3,0,30,0,0 346 | 43862,-71.4285714285714,4,3,0,30,0,0 347 | 43969,-200,4,3,0,30,0,0 348 | 44076,-74.0740740740741,4,3,0,30,0,0 349 | 44183,-200,4,3,0,30,0,0 350 | 44290,-76.9230769230769,4,3,0,30,0,0 351 | 44398,-200,4,3,0,30,0,0 352 | 44505,-100,4,3,0,30,0,0 353 | 44719,-76.9230769230769,4,3,0,30,0,0 354 | 44773,-100,4,3,0,30,0,0 355 | 46112,-66.6666666666667,4,3,0,30,0,0 356 | 46165,-125,4,3,0,30,0,0 357 | 46219,-100,4,3,0,30,0,0 358 | 46326,-66.6666666666667,4,3,0,30,0,0 359 | 46380,-125,4,3,0,30,0,0 360 | 46433,-100,4,3,0,30,0,0 361 | 46540,-66.6666666666667,4,3,0,30,0,0 362 | 46594,-125,4,3,0,30,0,0 363 | 46648,-100,4,3,0,30,0,0 364 | 46862,-33.3333333333333,4,3,0,30,0,0 365 | 46915,-142.857142857143,4,3,0,30,0,0 366 | 47076,-52.6315789473684,4,3,0,30,0,0 367 | 47090,-1000,4,3,0,30,0,0 368 | 47103,-52.6315789473684,4,3,0,30,0,0 369 | 47116,-1000,4,3,0,30,0,0 370 | 47130,-52.6315789473684,4,3,0,30,0,0 371 | 47143,-1000,4,3,0,30,0,0 372 | 47157,-52.6315789473684,4,3,0,30,0,0 373 | 47170,-1000,4,3,0,30,0,0 374 | 47183,-52.6315789473684,4,3,0,30,0,0 375 | 47197,-1000,4,3,0,30,0,0 376 | 47210,-52.6315789473684,4,3,0,30,0,0 377 | 47224,-1000,4,3,0,30,0,0 378 | 47237,-52.6315789473684,4,3,0,30,0,0 379 | 47250,-1000,4,3,0,30,0,0 380 | 47264,-52.6315789473684,4,3,0,30,0,0 381 | 47277,-1000,4,3,0,30,0,0 382 | 47290,-52.6315789473684,4,3,0,30,0,0 383 | 47304,-1000,4,3,0,30,0,0 384 | 47317,-52.6315789473684,4,3,0,30,0,0 385 | 47331,-1000,4,3,0,30,0,0 386 | 47344,-52.6315789473684,4,3,0,30,0,0 387 | 47357,-1000,4,3,0,30,0,0 388 | 47371,-52.6315789473684,4,3,0,30,0,0 389 | 47384,-1000,4,3,0,30,0,0 390 | 47398,-52.6315789473684,4,3,0,30,0,0 391 | 47411,-1000,4,3,0,30,0,0 392 | 47424,-52.6315789473684,4,3,0,30,0,0 393 | 47438,-1000,4,3,0,30,0,0 394 | 47451,-52.6315789473684,4,3,0,30,0,0 395 | 47465,-1000,4,3,0,30,0,0 396 | 47478,-52.6315789473684,4,3,0,30,0,0 397 | 47491,-1000,4,3,0,30,0,0 398 | 47505,-62.5,4,3,0,30,0,0 399 | 47558,-111.111111111111,4,3,0,30,0,0 400 | 47719,-62.5,4,3,0,30,0,0 401 | 47773,-111.111111111111,4,3,0,30,0,0 402 | 47933,-90.9090909090909,4,3,0,30,0,0 403 | 48362,-71.4285714285714,4,3,0,30,0,0 404 | 48415,-166.666666666667,4,3,0,30,0,0 405 | 48469,-71.4285714285714,4,3,0,30,0,0 406 | 48523,-166.666666666667,4,3,0,30,0,0 407 | 48576,-71.4285714285714,4,3,0,30,0,0 408 | 48630,-166.666666666667,4,3,0,30,0,0 409 | 48683,-71.4285714285714,4,3,0,30,0,0 410 | 48737,-166.666666666667,4,3,0,30,0,0 411 | 48790,-100,4,3,0,30,0,0 412 | 49112,-58.8235294117647,4,3,0,30,0,0 413 | 49165,-200,4,3,0,30,0,0 414 | 49219,-58.8235294117647,4,3,0,30,0,0 415 | 49273,-200,4,3,0,30,0,0 416 | 49326,-58.8235294117647,4,3,0,30,0,0 417 | 49380,-200,4,3,0,30,0,0 418 | 49433,-66.6666666666667,4,3,0,30,0,0 419 | 49487,-100,4,3,0,30,0,0 420 | 50076,-71.4285714285714,4,3,0,30,0,0 421 | 50130,-111.111111111111,4,3,0,30,0,0 422 | 50237,-71.4285714285714,4,3,0,30,0,0 423 | 50290,-111.111111111111,4,3,0,30,0,0 424 | 50398,-71.4285714285714,4,3,0,30,0,0 425 | 50451,-200,4,3,0,30,0,0 426 | 50505,-66.6666666666667,4,3,0,30,0,0 427 | 50558,-100,4,3,0,30,0,0 428 | 50933,-66.6666666666667,4,3,0,30,0,0 429 | 50987,-100,4,3,0,30,0,0 430 | 51362,-99.009900990099,4,3,0,30,0,0 431 | 51576,-98.0392156862745,4,3,0,30,0,0 432 | 51790,-97.0873786407767,4,3,0,30,0,0 433 | 52005,-96.1538461538461,4,3,0,30,0,0 434 | 52219,-95.2380952380952,4,3,0,30,0,0 435 | 52433,-94.3396226415094,4,3,0,30,0,0 436 | 53826,-33.3333333333333,4,3,0,30,0,0 437 | 53880,-125,4,3,0,30,0,0 438 | 54040,-100,4,3,0,30,0,0 439 | 55648,-117.647058823529,4,3,0,30,0,0 440 | 56505,-100,4,3,0,30,0,0 441 | 56933,-117.647058823529,4,3,0,30,0,0 442 | 57362,-100,4,3,0,30,0,0 443 | 57790,-117.647058823529,4,3,0,30,0,0 444 | 58219,-100,4,3,0,30,0,0 445 | 58433,-111.111111111111,4,3,0,30,0,0 446 | 58648,-100,4,3,0,30,0,0 447 | 58862,-111.111111111111,4,3,0,30,0,0 448 | 59076,-100,4,3,0,30,0,0 449 | 59290,-111.111111111111,4,3,0,30,0,0 450 | 59719,-100,4,3,0,30,0,0 451 | 60790,-66.6666666666667,4,3,0,30,0,0 452 | 60844,-111.111111111111,4,3,0,30,0,0 453 | 61005,-66.6666666666667,4,3,0,30,0,0 454 | 61058,-111.111111111111,4,3,0,30,0,0 455 | 61219,-66.6666666666667,4,3,0,30,0,0 456 | 61273,-119.047619047619,4,3,0,30,0,0 457 | 63362,-100,4,3,0,30,0,0 458 | 65076,-83.3333333333333,4,3,0,30,0,0 459 | 65148,-100,4,3,0,30,0,0 460 | 65290,-83.3333333333333,4,3,0,30,0,0 461 | 65362,-100,4,3,0,30,0,0 462 | 65505,-83.3333333333333,4,3,0,30,0,0 463 | 65576,-100,4,3,0,30,0,0 464 | 65719,-83.3333333333333,4,3,0,30,0,0 465 | 65790,-100,4,3,0,30,0,0 466 | 65933,-83.3333333333333,4,3,0,30,0,0 467 | 66005,-100,4,3,0,30,0,0 468 | 66148,-83.3333333333333,4,3,0,30,0,0 469 | 66219,-100,4,3,0,30,0,0 470 | 66362,-83.3333333333333,4,3,0,30,0,0 471 | 66433,-100,4,3,0,30,0,0 472 | 66576,-83.3333333333333,4,3,0,30,0,0 473 | 66648,-100,4,3,0,30,0,0 474 | 66790,-66.6666666666667,4,3,0,30,0,0 475 | 66898,-200,4,3,0,30,0,0 476 | 67005,-64.5161290322581,4,3,0,30,0,0 477 | 67112,-200,4,3,0,30,0,0 478 | 67219,-62.5,4,3,0,30,0,0 479 | 67326,-200,4,3,0,30,0,0 480 | 67433,-60.6060606060606,4,3,0,30,0,0 481 | 67540,-200,4,3,0,30,0,0 482 | 67648,-100,4,3,0,30,0,0 483 | 68290,-52.6315789473684,4,3,0,30,0,0 484 | 68304,-1000,4,3,0,30,0,0 485 | 68317,-52.0833333333333,4,3,0,30,0,0 486 | 68331,-714.285714285714,4,3,0,30,0,0 487 | 68344,-51.5463917525773,4,3,0,30,0,0 488 | 68357,-555.555555555556,4,3,0,30,0,0 489 | 68371,-51.0204081632653,4,3,0,30,0,0 490 | 68384,-454.545454545455,4,3,0,30,0,0 491 | 68398,-50.5050505050505,4,3,0,30,0,0 492 | 68411,-384.615384615385,4,3,0,30,0,0 493 | 68424,-50,4,3,0,30,0,0 494 | 68438,-333.333333333333,4,3,0,30,0,0 495 | 68451,-49.5049504950495,4,3,0,30,0,0 496 | 68465,-294.117647058824,4,3,0,30,0,0 497 | 68478,-49.0196078431373,4,3,0,30,0,0 498 | 68491,-263.157894736842,4,3,0,30,0,0 499 | 68505,-100,4,3,0,30,0,0 500 | 70540,-66.6666666666667,4,3,0,30,0,0 501 | 70594,-100,4,3,0,30,0,0 502 | 72790,-71.4285714285714,4,3,0,30,0,0 503 | 72898,-200,4,3,0,30,0,0 504 | 73005,-66.6666666666667,4,3,0,30,0,0 505 | 73058,-200,4,3,0,30,0,0 506 | 73112,-71.4285714285714,4,3,0,30,0,0 507 | 73219,-200,4,3,0,30,0,0 508 | 73326,-100,4,3,0,30,0,0 509 | 73969,-33.3333333333333,4,3,0,30,0,0 510 | 74023,-200,4,3,0,30,0,0 511 | 74183,-100,4,3,0,30,0,0 512 | 75362,-111.111111111111,4,3,0,30,0,0 513 | 76219,-66.6666666666667,4,3,0,30,0,0 514 | 76273,-111.111111111111,4,3,0,30,0,0 515 | 76648,-66.6666666666667,4,3,0,30,0,0 516 | 76701,-111.111111111111,4,3,0,30,0,0 517 | 77076,-66.6666666666667,4,3,0,30,0,0 518 | 77130,-111.111111111111,4,3,0,30,0,0 519 | 77505,-66.6666666666667,4,3,0,30,0,0 520 | 77558,-111.111111111111,4,3,0,30,0,0 521 | 77933,-66.6666666666667,4,3,0,30,0,0 522 | 77987,-111.111111111111,4,3,0,30,0,0 523 | 78362,-66.6666666666667,4,3,0,30,0,0 524 | 78415,-111.111111111111,4,3,0,30,0,0 525 | 78790,-66.6666666666667,4,3,0,30,0,0 526 | 78844,-111.111111111111,4,3,0,30,0,0 527 | 79219,-66.6666666666667,4,3,0,30,0,0 528 | 79273,-111.111111111111,4,3,0,30,0,0 529 | 79648,-66.6666666666667,4,3,0,30,0,0 530 | 79701,-111.111111111111,4,3,0,30,0,0 531 | 80076,-66.6666666666667,4,3,0,30,0,0 532 | 80130,-111.111111111111,4,3,0,30,0,0 533 | 80505,-66.6666666666667,4,3,0,30,0,0 534 | 80558,-111.111111111111,4,3,0,30,0,0 535 | 80933,-66.6666666666667,4,3,0,30,0,0 536 | 80987,-111.111111111111,4,3,0,30,0,0 537 | 81362,-66.6666666666667,4,3,0,30,0,0 538 | 81469,-200,4,3,0,30,0,0 539 | 81576,-66.6666666666667,4,3,0,30,0,0 540 | 81630,-200,4,3,0,30,0,0 541 | 81683,-71.4285714285714,4,3,0,30,0,0 542 | 81790,-166.666666666667,4,3,0,30,0,0 543 | 81862,-100,4,3,0,30,0,0 544 | 82862,-66.6666666666667,4,3,0,30,0,0 545 | 82889,-200,4,3,0,30,0,0 546 | 82915,-66.6666666666667,4,3,0,30,0,0 547 | 82942,-200,4,3,0,30,0,0 548 | 82969,-66.6666666666667,4,3,0,30,0,0 549 | 82996,-200,4,3,0,30,0,0 550 | 83023,-66.6666666666667,4,3,0,30,0,0 551 | 83049,-200,4,3,0,30,0,0 552 | 83076,-100,4,3,0,30,0,0 553 | 83933,-113.636363636364,4,3,0,30,0,0 554 | 84362,-71.4285714285714,4,3,0,30,0,0 555 | 84415,-111.111111111111,4,3,0,30,0,0 556 | 84576,-66.6666666666667,4,3,0,30,0,0 557 | 84630,-111.111111111111,4,3,0,30,0,0 558 | 84790,-100,4,3,0,30,0,0 559 | 85219,-92.5925925925926,4,3,0,30,0,0 560 | 85433,-89.2857142857143,4,3,0,30,0,0 561 | 85648,-95.2380952380952,4,3,0,30,0,0 562 | 85969,-94.3396226415094,4,3,0,30,0,0 563 | 86076,-92.5925925925926,4,3,0,30,0,0 564 | 86183,-90.9090909090909,4,3,0,30,0,0 565 | 86290,-89.2857142857143,4,3,0,30,0,0 566 | 86344,-87.719298245614,4,3,0,30,0,0 567 | 86398,-86.2068965517241,4,3,0,30,0,0 568 | 86451,-84.7457627118644,4,3,0,30,0,0 569 | 86505,-100,4,3,0,30,0,0 570 | 86933,-86.9565217391304,4,3,0,30,0,0 571 | 87040,-111.111111111111,4,3,0,30,0,0 572 | 87148,-86.9565217391304,4,3,0,30,0,0 573 | 87255,-125,4,3,0,30,0,0 574 | 87362,-111.111111111111,4,3,0,30,0,0 575 | 87576,-105.263157894737,4,3,0,30,0,0 576 | 87630,-100,4,3,0,30,0,0 577 | 87683,-95.2380952380952,4,3,0,30,0,0 578 | 87737,-90.9090909090909,4,3,0,30,0,0 579 | 87790,-100,4,3,0,30,0,0 580 | 88005,-83.3333333333333,4,3,0,30,0,0 581 | 88219,-100,4,3,0,30,0,0 582 | 88648,-108.695652173913,4,3,0,30,0,0 583 | 89076,-54.054054054054,4,3,0,30,0,0 584 | 89183,-200,4,3,0,30,0,0 585 | 89290,-54.054054054054,4,3,0,30,0,0 586 | 89398,-200,4,3,0,30,0,0 587 | 89505,-100,4,3,0,30,0,0 588 | 91755,-62.5,4,3,0,30,0,0 589 | 91862,-125,4,3,0,30,0,0 590 | 92076,-100,4,3,0,30,0,0 591 | 92183,-62.5,4,3,0,30,0,0 592 | 92290,-125,4,3,0,30,0,0 593 | 92505,-100,4,3,0,30,0,0 594 | 92933,-50,4,3,0,30,0,0 595 | 93040,-100,4,3,0,30,0,0 596 | 93255,-142.857142857143,4,3,0,30,0,0 597 | 93362,-100,4,3,0,30,0,0 598 | 93790,-76.9230769230769,4,3,0,30,0,0 599 | 93898,-100,4,3,0,30,0,0 600 | 94112,-76.9230769230769,4,3,0,30,0,0 601 | 94219,-100,4,3,0,30,0,0 602 | 95076,-52.6315789473684,4,3,0,30,0,0 603 | 95090,-1000,4,3,0,30,0,0 604 | 95103,-52.6315789473684,4,3,0,30,0,0 605 | 95116,-1000,4,3,0,30,0,0 606 | 95130,-52.6315789473684,4,3,0,30,0,0 607 | 95143,-1000,4,3,0,30,0,0 608 | 95157,-52.6315789473684,4,3,0,30,0,0 609 | 95170,-1000,4,3,0,30,0,0 610 | 95183,-52.6315789473684,4,3,0,30,0,0 611 | 95197,-1000,4,3,0,30,0,0 612 | 95210,-52.6315789473684,4,3,0,30,0,0 613 | 95224,-1000,4,3,0,30,0,0 614 | 95237,-52.6315789473684,4,3,0,30,0,0 615 | 95250,-1000,4,3,0,30,0,0 616 | 95264,-52.6315789473684,4,3,0,30,0,0 617 | 95277,-1000,4,3,0,30,0,0 618 | 95290,-100,4,3,0,30,0,0 619 | 95505,-66.6666666666667,4,3,0,30,0,0 620 | 95558,-200,4,3,0,30,0,0 621 | 95612,-66.6666666666667,4,3,0,30,0,0 622 | 95665,-200,4,3,0,30,0,0 623 | 95719,-66.6666666666667,4,3,0,30,0,0 624 | 95773,-200,4,3,0,30,0,0 625 | 95826,-20,4,3,0,30,0,0 626 | 95933,-142.857142857143,4,3,0,30,0,0 627 | 96148,-100,4,3,0,30,0,0 628 | 96790,-52.6315789473684,4,3,0,30,0,0 629 | 96804,-1000,4,3,0,30,0,0 630 | 96817,-52.6315789473684,4,3,0,30,0,0 631 | 96831,-1000,4,3,0,30,0,0 632 | 96844,-52.6315789473684,4,3,0,30,0,0 633 | 96857,-1000,4,3,0,30,0,0 634 | 96871,-52.6315789473684,4,3,0,30,0,0 635 | 96884,-1000,4,3,0,30,0,0 636 | 96898,-52.6315789473684,4,3,0,30,0,0 637 | 96911,-1000,4,3,0,30,0,0 638 | 96924,-52.6315789473684,4,3,0,30,0,0 639 | 96938,-1000,4,3,0,30,0,0 640 | 96951,-52.6315789473684,4,3,0,30,0,0 641 | 96965,-1000,4,3,0,30,0,0 642 | 96978,-52.6315789473684,4,3,0,30,0,0 643 | 96991,-1000,4,3,0,30,0,0 644 | 97005,-100,4,3,0,30,0,0 645 | 97540,-50,4,3,0,30,0,0 646 | 97701,-166.666666666667,4,3,0,30,0,0 647 | 97862,-50,4,3,0,30,0,0 648 | 98023,-166.666666666667,4,3,0,30,0,0 649 | 98183,-50,4,3,0,30,0,0 650 | 98344,-166.666666666667,4,3,0,30,0,0 651 | 98505,-100,4,3,0,30,0,0 652 | 99255,-62.5,4,3,0,30,0,0 653 | 99308,-200,4,3,0,30,0,0 654 | 99362,-62.5,4,3,0,30,0,0 655 | 99469,-166.666666666667,4,3,0,30,0,0 656 | 99576,-100,4,3,0,30,0,0 657 | 101076,-83.3333333333333,4,3,0,30,0,0 658 | 101130,-100,4,3,0,30,0,0 659 | 101290,-80,4,3,0,30,0,0 660 | 101344,-105.263157894737,4,3,0,30,0,0 661 | 101612,-76.9230769230769,4,3,0,30,0,0 662 | 101665,-100,4,3,0,30,0,0 663 | 103326,-66.6666666666667,4,3,0,30,0,0 664 | 103380,-200,4,3,0,30,0,0 665 | 103433,-100,4,3,0,30,0,0 666 | 104290,-71.4285714285714,4,3,0,30,0,0 667 | 104344,-100,4,3,0,30,0,0 668 | 104933,-71.4285714285714,4,3,0,30,0,0 669 | 104987,-166.666666666667,4,3,0,30,0,0 670 | 105040,-71.4285714285714,4,3,0,30,0,0 671 | 105094,-166.666666666667,4,3,0,30,0,0 672 | 105148,-71.4285714285714,4,3,0,30,0,0 673 | 105201,-166.666666666667,4,3,0,30,0,0 674 | 105255,-71.4285714285714,4,3,0,30,0,0 675 | 105308,-166.666666666667,4,3,0,30,0,0 676 | 105362,-100,4,3,0,30,0,0 677 | 106005,-12.5,4,3,0,30,0,0 678 | 106058,-142.857142857143,4,3,0,30,0,0 679 | 106433,-100,4,3,0,30,0,0 680 | 107398,-20,4,3,0,30,0,0 681 | 107451,-142.857142857143,4,3,0,30,0,0 682 | 107719,-100,4,3,0,30,0,0 683 | 108683,-20,4,3,0,30,0,0 684 | 108737,-142.857142857143,4,3,0,30,0,0 685 | 109005,-100,4,3,0,30,0,0 686 | 109648,-10,4,3,0,30,0,0 687 | 109674,-208.333333333333,4,3,0,30,0,0 688 | 109755,-200,4,3,0,30,0,0 689 | 109862.142857143,-195.046439628483,4,3,0,30,0,0 690 | 109969.285714286,-190.332326283988,4,3,0,30,0,0 691 | 110076.428571429,-185.840707964602,4,3,0,30,0,0 692 | 110183.571428571,-181.556195965418,4,3,0,30,0,0 693 | 110290.714285714,-177.464788732394,4,3,0,30,0,0 694 | 110397.857142857,-173.553719008264,4,3,0,30,0,0 695 | 110505,-169.811320754717,4,3,0,30,0,0 696 | 110612.142857143,-166.22691292876,4,3,0,30,0,0 697 | 110719.285714286,-162.790697674419,4,3,0,30,0,0 698 | 110826.428571429,-159.493670886076,4,3,0,30,0,0 699 | 110933.571428571,-156.327543424318,4,3,0,30,0,0 700 | 111040.714285714,-153.284671532847,4,3,0,30,0,0 701 | 111147.857142857,-150.35799522673,4,3,0,30,0,0 702 | 111255,-147.540983606557,4,3,0,30,0,0 703 | 111362.142857143,-144.827586206897,4,3,0,30,0,0 704 | 111469.285714286,-142.212189616253,4,3,0,30,0,0 705 | 111576.428571429,-139.689578713969,4,3,0,30,0,0 706 | 111683.571428571,-137.254901960784,4,3,0,30,0,0 707 | 111790.714285714,-134.903640256959,4,3,0,30,0,0 708 | 111897.857142857,-132.631578947368,4,3,0,30,0,0 709 | 112005,-130.434782608696,4,3,0,30,0,0 710 | 112112.142857143,-128.309572301426,4,3,0,30,0,0 711 | 112219.285714286,-126.25250501002,4,3,0,30,0,0 712 | 112326.428571429,-124.260355029586,4,3,0,30,0,0 713 | 112433.571428571,-122.330097087379,4,3,0,30,0,0 714 | 112540.714285714,-120.458891013384,4,3,0,30,0,0 715 | 112647.857142857,-118.64406779661,4,3,0,30,0,0 716 | 112755,-116.883116883117,4,3,0,30,0,0 717 | 112862.142857143,-115.173674588665,4,3,0,30,0,0 718 | 112969.285714286,-113.513513513514,4,3,0,30,0,0 719 | 113076.428571429,-111.90053285968,4,3,0,30,0,0 720 | 113183.571428571,-110.332749562172,4,3,0,30,0,0 721 | 113290.714285714,-108.80829015544,4,3,0,30,0,0 722 | 113397.857142857,-107.32538330494,4,3,0,30,0,0 723 | 113505,-105.882352941176,4,3,0,30,0,0 724 | 113612.142857143,-104.477611940299,4,3,0,30,0,0 725 | 113719.285714286,-103.109656301146,4,3,0,30,0,0 726 | 113826.428571429,-101.777059773829,4,3,0,30,0,0 727 | 113933.571428571,-100.478468899522,4,3,0,30,0,0 728 | 114040.714285714,-99.2125984251969,4,3,0,30,0,0 729 | 114147.857142857,-97.9782270606532,4,3,0,30,0,0 730 | 114255,-96.7741935483871,4,3,0,30,0,0 731 | 114362.142857143,-95.5993930197269,4,3,0,30,0,0 732 | 114469.285714286,-94.4527736131934,4,3,0,30,0,0 733 | 114576.428571429,-93.3333333333333,4,3,0,30,0,0 734 | 114683.571428571,-92.2401171303075,4,3,0,30,0,0 735 | 114790.714285714,-91.1722141823444,4,3,0,30,0,0 736 | 114897.857142857,-90.1287553648069,4,3,0,30,0,0 737 | 115005,-89.1089108910891,4,3,0,30,0,0 738 | 115112.142857143,-88.1118881118881,4,3,0,30,0,0 739 | 115219.285714286,-87.1369294605809,4,3,0,30,0,0 740 | 115326.428571429,-86.1833105335157,4,3,0,30,0,0 741 | 115433.571428571,-85.2503382949932,4,3,0,30,0,0 742 | 115540.714285714,-84.3373493975904,4,3,0,30,0,0 743 | 115647.857142857,-83.4437086092715,4,3,0,30,0,0 744 | 115755,-82.5688073394495,4,3,0,30,0,0 745 | 115862.142857143,-81.7120622568093,4,3,0,30,0,0 746 | 115969.285714286,-80.8729139922978,4,3,0,30,0,0 747 | 116076.428571429,-80.0508259212198,4,3,0,30,0,0 748 | 116183.571428571,-79.2452830188679,4,3,0,30,0,0 749 | 116290.714285714,-78.4557907845579,4,3,0,30,0,0 750 | 116397.857142857,-77.6818742293465,4,3,0,30,0,0 751 | 116505,-100,4,3,0,30,0,0 752 | 122505,-55.5555555555556,4,3,0,30,0,0 753 | 122612,-200,4,3,0,30,0,0 754 | 122719,-100,4,3,0,30,0,0 755 | 124005,-80,4,3,0,30,0,0 756 | 124112,-100,4,3,0,30,0,0 757 | 124219,-100,4,3,0,30,0,1 758 | 141362,-10,4,3,0,30,0,0 759 | 141389,-142.857142857143,4,3,0,30,0,0 760 | 142219,-140.845070422535,4,3,0,30,0,0 761 | 142379.6875,-139.471533642059,4,3,0,30,0,0 762 | 142486.8125,-137.094710786093,4,3,0,30,0,0 763 | 142540.375,-135.507092949397,4,3,0,30,0,0 764 | 142593.9375,-133.677584056163,4,3,0,30,0,0 765 | 142647.5,-131.627056672761,4,3,0,30,0,0 766 | 142701.0625,-129.377874361955,4,3,0,30,0,0 767 | 142754.625,-126.95334023936,4,3,0,30,0,0 768 | 142808.1875,-124.377169447698,4,3,0,30,0,0 769 | 142861.75,-121.673003802281,4,3,0,30,0,0 770 | 142915.3125,-118.863982252947,4,3,0,30,0,0 771 | 142968.875,-115.972376024322,4,3,0,30,0,0 772 | 143022.4375,-113.019292746457,4,3,0,30,0,0 773 | 143076,-110.024449877751,4,3,0,30,0,0 774 | 143129.5625,-107.006014443954,4,3,0,30,0,0 775 | 143183.125,-103.980503655565,4,3,0,30,0,0 776 | 143236.6875,-100.962739315434,4,3,0,30,0,0 777 | 143290.25,-97.9658480168719,4,3,0,30,0,0 778 | 143343.8125,-95.0012988458826,4,3,0,30,0,0 779 | 143397.375,-92.0789705059548,4,3,0,30,0,0 780 | 143450.9375,-89.2072403445939,4,3,0,30,0,0 781 | 143504.5,-86.3930885529158,4,3,0,30,0,0 782 | 143558.0625,-83.642211726609,4,3,0,30,0,0 783 | 143611.625,-80.9591409335601,4,3,0,30,0,0 784 | 143665.1875,-78.3473603672532,4,3,0,30,0,0 785 | 143718.75,-75.8094235325085,4,3,0,30,0,0 786 | 143772.3125,-73.3470646848528,4,3,0,30,0,0 787 | 143825.875,-70.9613039139594,4,3,0,30,0,0 788 | 143879.4375,-68.6525448223049,4,3,0,30,0,0 789 | 143933,-66.4206642066421,4,3,0,30,0,0 790 | 143986.5625,-64.2650935107318,4,3,0,30,0,0 791 | 144040.125,-62.1848920940978,4,3,0,30,0,0 792 | 144093.6875,-60.1788125654614,4,3,0,30,0,0 793 | 144147.25,-58.2453585729887,4,3,0,30,0,0 794 | 144200.8125,-56.3828355378272,4,3,0,30,0,0 795 | 144254.375,-54.5893948727669,4,3,0,30,0,0 796 | 144307.9375,-52.863072253082,4,3,0,30,0,0 797 | 144361.5,-51.2018205091737,4,3,0,30,0,0 798 | 144415.0625,-49.603537696751,4,3,0,30,0,0 799 | 144468.625,-48.0660908749531,4,3,0,30,0,0 800 | 144522.1875,-46.5873360900203,4,3,0,30,0,0 801 | 144575.75,-45.1651350249349,4,3,0,30,0,0 802 | 144629.3125,-43.7973687362064,4,3,0,30,0,0 803 | 144682.875,-42.4819488594039,4,3,0,30,0,0 804 | 144736.4375,-41.2168266263562,4,3,0,30,0,0 805 | 144790,-40,4,3,0,30,0,0 806 | 807 | 808 | [HitObjects] 809 | 36,192,791,5,0,0:0:0:8: 810 | 109,192,791,1,0,0:0:0:60:KickMid.wav 811 | 256,192,791,1,4,0:0:0:30: 812 | 329,192,791,1,2,0:0:0:30: 813 | 109,192,898,1,0,0:0:0:60:KickMid.wav 814 | 36,192,898,1,0,0:0:0:8: 815 | 329,192,898,1,4,0:0:0:30: 816 | 256,192,898,1,2,0:0:0:30: 817 | 109,192,1112,1,0,0:0:0:8: 818 | 182,192,1112,1,0,0:0:0:60:KickMid.wav 819 | 329,192,1112,1,4,0:0:0:30: 820 | 402,192,1112,1,2,0:0:0:30: 821 | 475,192,1326,1,0,0:0:0:8: 822 | 402,192,1326,1,4,0:0:0:30: 823 | 256,192,1326,1,2,0:0:0:30: 824 | 182,192,1326,1,0,0:0:0:60:KickMid.wav 825 | 182,192,1540,1,0,0:0:0:8: 826 | 109,192,1540,1,0,0:0:0:60:KickMid.wav 827 | 329,192,1540,1,4,0:0:0:30: 828 | 402,192,1540,1,2,0:0:0:30: 829 | 36,192,1755,1,0,0:0:0:8: 830 | 329,192,1755,1,0,0:0:0:60:KickMid.wav 831 | 182,192,1755,1,2,0:0:0:30: 832 | 256,192,1755,1,4,0:0:0:30: 833 | 329,192,1862,1,2,0:0:0:30: 834 | 36,192,1862,1,0,0:0:0:60:KickMid.wav 835 | 182,192,1862,1,0,0:0:0:8: 836 | 256,192,1862,1,4,0:0:0:30: 837 | 36,192,1969,1,0,0:0:0:8: 838 | 182,192,1969,1,0,0:0:0:60:KickMid.wav 839 | 329,192,1969,1,2,0:0:0:30: 840 | 256,192,1969,1,4,0:0:0:8: 841 | 36,192,2076,1,0,0:0:0:8: 842 | 182,192,2076,1,0,0:0:0:60:KickMid.wav 843 | 329,192,2076,1,2,0:0:0:30: 844 | 256,192,2076,1,4,0:0:0:30: 845 | 475,192,2183,1,0,0:0:0:20: 846 | 402,192,2237,1,0,0:0:0:20: 847 | 329,192,2290,1,0,0:0:0:8: 848 | 256,192,2290,1,0,0:0:0:60:KickMid.wav 849 | 182,192,2290,1,0,0:0:0:8: 850 | 109,192,2290,1,4,0:0:0:30: 851 | 36,192,2398,1,0,0:0:0:20: 852 | 109,192,2505,1,0,0:0:0:8: 853 | 182,192,2505,1,0,0:0:0:60:KickMid.wav 854 | 475,192,2505,1,4,0:0:0:30: 855 | 402,192,2505,1,2,0:0:0:30: 856 | 329,192,2612,1,0,0:0:0:20: 857 | 256,192,2719,1,0,0:0:0:8: 858 | 109,192,2719,1,0,0:0:0:60:KickMid.wav 859 | 36,192,2719,1,4,0:0:0:30: 860 | 402,192,2719,1,2,0:0:0:30: 861 | 36,192,2826,1,0,0:0:0:8: 862 | 109,192,2826,1,0,0:0:0:60:KickMid.wav 863 | 256,192,2826,1,4,0:0:0:30: 864 | 402,192,2826,1,2,0:0:0:30: 865 | 475,192,2933,1,0,0:0:0:20: 866 | 329,192,3040,1,0,0:0:0:60:KickMid.wav 867 | 182,192,3040,1,4,0:0:0:30: 868 | 109,192,3040,1,0,0:0:0:8: 869 | 402,192,3040,1,0,0:0:0:8: 870 | 36,192,3148,1,0,0:0:0:20: 871 | 402,192,3255,1,0,0:0:0:8: 872 | 256,192,3255,1,4,0:0:0:30: 873 | 475,192,3255,1,0,0:0:0:60:KickMid.wav 874 | 109,192,3255,1,2,0:0:0:30: 875 | 182,192,3362,1,0,0:0:0:13: 876 | 329,192,3362,1,0,0:0:0:13: 877 | 36,192,3469,1,8,0:0:0:30: 878 | 256,192,3469,1,0,0:0:0:13: 879 | 475,192,3469,1,0,0:0:0:13: 880 | 475,192,3576,1,8,0:0:0:30: 881 | 256,192,3576,1,0,0:0:0:13: 882 | 36,192,3576,1,0,0:0:0:13: 883 | 36,192,3683,1,8,0:0:0:30: 884 | 256,192,3683,1,0,0:0:0:13: 885 | 475,192,3683,1,0,0:0:0:13: 886 | 475,192,3790,1,4,0:0:0:30: 887 | 109,192,3790,1,2,0:0:0:30: 888 | 402,192,3790,1,0,0:0:0:8: 889 | 36,192,3790,1,0,0:0:0:60:KickMid.wav 890 | 182,192,3844,1,0,0:0:0:0: 891 | 329,192,3898,1,0,0:0:0:20: 892 | 475,192,3951,1,0,0:0:0:20: 893 | 36,192,4005,1,0,0:0:0:20: 894 | 182,192,4058,1,0,0:0:0:20: 895 | 329,192,4112,1,0,0:0:0:20: 896 | 475,192,4165,1,0,0:0:0:20: 897 | 256,192,4219,1,0,0:0:0:60:CymbalFSU.wav 898 | 109,192,4219,1,0,0:0:0:60:KickMid.wav 899 | 36,192,4219,1,2,0:0:0:30: 900 | 182,192,4219,1,0,0:0:0:60:DeepBassKick.wav 901 | 402,192,4219,1,4,0:0:0:30: 902 | 329,192,4326,1,0,0:0:0:40: 903 | 109,192,4433,1,0,0:0:0:60:KickMid.wav 904 | 475,192,4433,1,0,0:0:0:8: 905 | 402,192,4433,1,0,0:0:0:8: 906 | 36,192,4433,1,0,0:0:0:8: 907 | 182,192,4540,1,0,0:0:0:40: 908 | 475,192,4648,1,0,0:0:0:60:KickMid.wav 909 | 256,192,4648,1,0,0:0:0:8: 910 | 402,192,4648,1,0,0:0:0:8: 911 | 329,192,4648,1,0,0:0:0:8: 912 | 109,192,4755,1,0,0:0:0:20: 913 | 36,192,4755,1,0,0:0:0:20: 914 | 329,192,4862,1,0,0:0:0:60:KickMid.wav 915 | 475,192,4862,1,0,0:0:0:13: 916 | 402,192,4862,1,0,0:0:0:13: 917 | 256,192,4969,1,0,0:0:0:20: 918 | 36,192,4969,1,0,0:0:0:20: 919 | 109,192,5076,1,0,0:0:0:60:KickMid.wav 920 | 329,192,5076,1,0,0:0:0:10: 921 | 475,192,5076,1,0,0:0:0:10: 922 | 402,192,5183,1,0,0:0:0:20: 923 | 182,192,5183,1,0,0:0:0:20: 924 | 256,192,5290,1,0,0:0:0:8: 925 | 36,192,5290,1,0,0:0:0:60:KickMid.wav 926 | 475,192,5290,1,0,0:0:0:8: 927 | 109,192,5290,1,0,0:0:0:8: 928 | 329,192,5398,1,0,0:0:0:40: 929 | 402,192,5505,1,0,0:0:0:60:KickMid.wav 930 | 256,192,5505,1,0,0:0:0:8: 931 | 182,192,5505,1,0,0:0:0:8: 932 | 475,192,5505,1,0,0:0:0:8: 933 | 36,192,5612,1,0,0:0:0:40: 934 | 109,192,5719,1,0,0:0:0:8: 935 | 329,192,5719,1,0,0:0:0:8: 936 | 182,192,5719,1,0,0:0:0:60:KickMid.wav 937 | 402,192,5719,1,0,0:0:0:8: 938 | 475,192,5826,1,0,0:0:0:40: 939 | 36,192,5933,128,0,7433:0:0:0:10: 940 | 329,192,5933,1,0,0:0:0:10: 941 | 256,192,5933,1,4,0:0:0:30: 942 | 109,192,5933,1,0,0:0:0:10: 943 | 182,192,6040,1,2,0:0:0:30: 944 | 475,192,6148,1,4,0:0:0:30: 945 | 402,192,6148,1,0,0:0:0:13: 946 | 256,192,6148,1,0,0:0:0:13: 947 | 329,192,6255,1,2,0:0:0:30: 948 | 182,192,6362,1,0,0:0:0:13: 949 | 109,192,6362,1,4,0:0:0:30: 950 | 402,192,6362,1,0,0:0:0:13: 951 | 475,192,6469,1,2,0:0:0:30: 952 | 329,192,6576,1,0,0:0:0:13: 953 | 402,192,6576,1,4,0:0:0:30: 954 | 182,192,6576,1,0,0:0:0:13: 955 | 256,192,6683,1,0,0:0:0:20: 956 | 182,192,6790,1,0,0:0:0:13: 957 | 329,192,6790,1,4,0:0:0:30: 958 | 475,192,6790,1,0,0:0:0:13: 959 | 109,192,6898,1,0,0:0:0:20: 960 | 182,192,7005,1,0,0:0:0:10: 961 | 256,192,7005,1,4,0:0:0:30: 962 | 402,192,7005,1,0,0:0:0:10: 963 | 475,192,7112,1,2,0:0:0:30: 964 | 329,192,7219,1,0,0:0:0:10: 965 | 256,192,7219,1,4,0:0:0:30: 966 | 109,192,7219,1,0,0:0:0:10: 967 | 182,192,7326,1,2,0:0:0:30: 968 | 402,192,7433,1,0,0:0:0:13: 969 | 329,192,7433,1,0,0:0:0:60:KickMid.wav 970 | 182,192,7487,1,0,0:0:0:13: 971 | 109,192,7487,1,0,0:0:0:60:KickMid.wav 972 | 329,192,7540,1,0,0:0:0:60:KickMid.wav 973 | 402,192,7540,1,0,0:0:0:13: 974 | 182,192,7594,1,0,0:0:0:13: 975 | 109,192,7594,1,0,0:0:0:60:KickMid.wav 976 | 256,192,7648,1,0,0:0:0:60:KickMid.wav 977 | 329,192,7648,1,0,0:0:0:60:DeepBassKick.wav 978 | 402,192,7648,1,4,0:0:0:30: 979 | 475,192,7648,1,0,0:0:0:60:CymbalFSU.wav 980 | 36,192,7648,1,0,0:0:0:0: 981 | 182,192,7755,1,0,0:0:0:40: 982 | 109,192,7862,1,0,0:0:0:8: 983 | 475,192,7862,1,0,0:0:0:60:KickMid.wav 984 | 36,192,7862,1,0,0:0:0:8: 985 | 329,192,7862,1,0,0:0:0:8: 986 | 256,192,7969,1,0,0:0:0:40: 987 | 109,192,8076,1,0,0:0:0:60:KickMid.wav 988 | 36,192,8076,1,0,0:0:0:8: 989 | 329,192,8076,1,0,0:0:0:8: 990 | 402,192,8076,1,0,0:0:0:8: 991 | 182,192,8183,1,0,0:0:0:20: 992 | 475,192,8183,1,0,0:0:0:20: 993 | 329,192,8290,1,0,0:0:0:60:KickMid.wav 994 | 36,192,8290,1,0,0:0:0:13: 995 | 256,192,8290,1,0,0:0:0:13: 996 | 475,192,8398,1,0,0:0:0:20: 997 | 402,192,8398,1,0,0:0:0:20: 998 | 329,192,8505,1,0,0:0:0:60:KickMid.wav 999 | 182,192,8505,1,0,0:0:0:13: 1000 | 109,192,8505,1,0,0:0:0:13: 1001 | 36,192,8612,1,0,0:0:0:20: 1002 | 256,192,8612,1,0,0:0:0:20: 1003 | 182,192,8719,1,0,0:0:0:8: 1004 | 402,192,8719,1,0,0:0:0:8: 1005 | 475,192,8719,1,0,0:0:0:60:KickMid.wav 1006 | 329,192,8719,1,0,0:0:0:8: 1007 | 109,192,8826,1,0,0:0:0:40: 1008 | 256,192,8933,1,0,0:0:0:8: 1009 | 475,192,8933,1,0,0:0:0:8: 1010 | 36,192,8933,1,0,0:0:0:60:KickMid.wav 1011 | 182,192,8933,1,0,0:0:0:8: 1012 | 402,192,9040,1,0,0:0:0:40: 1013 | 109,192,9148,1,0,0:0:0:8: 1014 | 329,192,9148,1,0,0:0:0:8: 1015 | 182,192,9148,1,0,0:0:0:60:KickMid.wav 1016 | 36,192,9148,1,0,0:0:0:8: 1017 | 256,192,9255,1,0,0:0:0:40: 1018 | 475,192,9362,128,0,10219:0:0:0:10: 1019 | 402,192,9362,1,0,0:0:0:10: 1020 | 182,192,9362,1,4,0:0:0:30: 1021 | 109,192,9362,1,0,0:0:0:10: 1022 | 36,192,9469,1,2,0:0:0:30: 1023 | 182,192,9576,1,0,0:0:0:20: 1024 | 329,192,9576,1,4,0:0:0:30: 1025 | 256,192,9576,1,0,0:0:0:0: 1026 | 109,192,9683,1,0,0:0:0:20: 1027 | 402,192,9790,1,0,0:0:0:13: 1028 | 36,192,9790,1,4,0:0:0:30: 1029 | 256,192,9790,1,0,0:0:0:13: 1030 | 329,192,9898,1,0,0:0:0:20: 1031 | 182,192,10005,1,0,0:0:0:13: 1032 | 256,192,10005,1,4,0:0:0:30: 1033 | 402,192,10005,1,0,0:0:0:13: 1034 | 109,192,10112,1,2,0:0:0:30: 1035 | 256,192,10219,1,0,0:0:0:60:KickMid.wav 1036 | 36,192,10219,1,0,0:0:0:60:CymbalFSU.wav 1037 | 329,192,10219,1,0,0:0:0:60:DeepBassKick.wav 1038 | 402,192,10219,128,0,10433:0:0:0:8: 1039 | 109,192,10273,1,0,0:0:0:40: 1040 | 182,192,10326,1,0,0:0:0:20: 1041 | 256,192,10380,1,0,0:0:0:40: 1042 | 109,192,10433,1,0,0:0:0:60:DeepBassKick.wav 1043 | 36,192,10433,1,0,0:0:0:60:KickMid.wav 1044 | 329,192,10433,1,0,0:0:0:8: 1045 | 475,192,10433,128,0,10648:0:0:0:60:CymbalFSU.wav 1046 | 182,192,10487,1,0,0:0:0:40: 1047 | 256,192,10540,1,0,0:0:0:20: 1048 | 329,192,10594,1,0,0:0:0:40: 1049 | 182,192,10648,1,0,0:0:0:60:KickMid.wav 1050 | 402,192,10648,1,0,0:0:0:60:DeepBassKick.wav 1051 | 36,192,10648,128,0,11076:0:0:0:60:CymbalFSU.wav 1052 | 109,192,10648,1,0,0:0:0:8: 1053 | 256,192,10701,1,0,0:0:0:40: 1054 | 329,192,10755,1,0,0:0:0:40: 1055 | 402,192,10808,1,0,0:0:0:40: 1056 | 256,192,10862,1,0,0:0:0:20: 1057 | 329,192,10915,1,0,0:0:0:20: 1058 | 402,192,10969,1,0,0:0:0:20: 1059 | 475,192,11023,1,0,0:0:0:20: 1060 | 329,192,11076,1,0,0:0:0:8: 1061 | 256,192,11076,1,0,0:0:0:8: 1062 | 182,192,11076,1,0,0:0:0:60:KickMid.wav 1063 | 109,192,11076,1,4,0:0:0:30: 1064 | 402,192,11183,1,2,0:0:0:30: 1065 | 182,192,11290,128,0,11398:0:0:0:60:KickMid.wav 1066 | 109,192,11290,1,4,0:0:0:30: 1067 | 36,192,11290,1,0,0:0:0:8: 1068 | 475,192,11290,1,0,0:0:0:8: 1069 | 329,192,11398,1,2,0:0:0:30: 1070 | 256,192,11505,128,0,11612:0:0:0:60:KickMid.wav 1071 | 109,192,11505,1,4,0:0:0:30: 1072 | 402,192,11505,1,0,0:0:0:8: 1073 | 475,192,11505,1,0,0:0:0:8: 1074 | 36,192,11612,1,2,0:0:0:30: 1075 | 329,192,11719,128,4,11826:0:0:0:30: 1076 | 182,192,11719,1,0,0:0:0:8: 1077 | 475,192,11719,1,0,0:0:0:8: 1078 | 256,192,11719,1,0,0:0:0:60:KickMid.wav 1079 | 109,192,11826,1,2,0:0:0:30: 1080 | 402,192,11933,128,0,12040:0:0:0:8: 1081 | 36,192,11933,1,0,0:0:0:60:KickMid.wav 1082 | 256,192,11933,1,0,0:0:0:8: 1083 | 475,192,11933,1,4,0:0:0:30: 1084 | 182,192,12040,1,2,0:0:0:30: 1085 | 329,192,12148,128,4,12255:0:0:0:30: 1086 | 109,192,12148,1,0,0:0:0:8: 1087 | 36,192,12148,1,0,0:0:0:8: 1088 | 256,192,12148,1,0,0:0:0:60:KickMid.wav 1089 | 475,192,12255,1,2,0:0:0:30: 1090 | 256,192,12362,128,0,12469:0:0:0:8: 1091 | 182,192,12362,1,4,0:0:0:30: 1092 | 402,192,12362,1,0,0:0:0:60:KickMid.wav 1093 | 329,192,12362,1,0,0:0:0:8: 1094 | 36,192,12469,1,2,0:0:0:30: 1095 | 182,192,12576,128,0,12683:0:0:0:8: 1096 | 256,192,12576,1,0,0:0:0:8: 1097 | 475,192,12576,1,0,0:0:0:60:KickMid.wav 1098 | 402,192,12576,1,4,0:0:0:30: 1099 | 109,192,12683,1,2,0:0:0:30: 1100 | 402,192,12790,1,0,0:0:0:60:KickMid.wav 1101 | 329,192,12790,1,0,0:0:0:8: 1102 | 36,192,12790,1,0,0:0:0:8: 1103 | 256,192,12790,1,4,0:0:0:30: 1104 | 182,192,12898,1,2,0:0:0:30: 1105 | 109,192,13005,128,0,13112:0:0:0:8: 1106 | 329,192,13005,1,0,0:0:0:8: 1107 | 475,192,13005,1,0,0:0:0:8: 1108 | 402,192,13005,1,0,0:0:0:60:KickMid.wav 1109 | 256,192,13112,1,2,0:0:0:30: 1110 | 182,192,13219,128,0,13326:0:0:0:8: 1111 | 36,192,13219,1,0,0:0:0:8: 1112 | 475,192,13219,1,0,0:0:0:60:KickMid.wav 1113 | 402,192,13219,1,4,0:0:0:30: 1114 | 329,192,13326,1,2,0:0:0:30: 1115 | 256,192,13433,128,0,13540:0:0:0:8: 1116 | 109,192,13433,1,0,0:0:0:60:KickMid.wav 1117 | 36,192,13433,1,4,0:0:0:30: 1118 | 475,192,13433,1,0,0:0:0:8: 1119 | 402,192,13540,1,2,0:0:0:30: 1120 | 329,192,13648,128,0,13755:0:0:0:60:KickMid.wav 1121 | 182,192,13648,1,4,0:0:0:30: 1122 | 109,192,13648,1,0,0:0:0:8: 1123 | 36,192,13648,1,0,0:0:0:8: 1124 | 402,192,13755,1,2,0:0:0:30: 1125 | 256,192,13862,128,0,13969:0:0:0:8: 1126 | 329,192,13862,1,0,0:0:0:60:KickMid.wav 1127 | 36,192,13862,1,4,0:0:0:30: 1128 | 475,192,13862,1,0,0:0:0:8: 1129 | 109,192,13969,1,2,0:0:0:30: 1130 | 182,192,14076,128,0,14183:0:0:0:8: 1131 | 256,192,14076,1,0,0:0:0:8: 1132 | 36,192,14076,1,0,0:0:0:60:KickMid.wav 1133 | 475,192,14076,1,4,0:0:0:30: 1134 | 329,192,14183,1,2,0:0:0:30: 1135 | 109,192,14290,128,0,14398:0:0:0:8: 1136 | 402,192,14290,1,0,0:0:0:8: 1137 | 182,192,14290,1,0,0:0:0:8: 1138 | 475,192,14290,1,0,0:0:0:60:KickMid.wav 1139 | 329,192,14398,1,0,0:0:0:13: 1140 | 256,192,14398,1,4,0:0:0:30: 1141 | 36,192,14398,1,0,0:0:0:0: 1142 | 182,192,14505,1,0,0:0:0:60:KickMid.wav 1143 | 109,192,14505,1,0,0:0:0:8: 1144 | 402,192,14505,1,4,0:0:0:30: 1145 | 475,192,14505,128,0,14719:0:0:0:8: 1146 | 256,192,14719,1,0,0:0:0:40: 1147 | 182,192,14746,1,0,0:0:0:40: 1148 | 109,192,14773,1,0,0:0:0:20: 1149 | 36,192,14799,1,0,0:0:0:40: 1150 | 475,192,14826,1,0,0:0:0:40: 1151 | 402,192,14853,1,0,0:0:0:40: 1152 | 329,192,14880,1,0,0:0:0:20: 1153 | 256,192,14907,1,0,0:0:0:40: 1154 | 182,192,14933,1,2,0:0:0:30: 1155 | 475,192,14987,1,2,0:0:0:30: 1156 | 109,192,15040,1,0,0:0:0:13: 1157 | 256,192,15040,1,0,0:0:0:13: 1158 | 402,192,15094,1,0,0:0:0:20: 1159 | 36,192,15148,1,0,0:0:0:20: 1160 | 329,192,15201,1,0,0:0:0:20: 1161 | 109,192,15255,1,0,0:0:0:20: 1162 | 402,192,15308,1,0,0:0:0:20: 1163 | 182,192,15362,1,0,0:0:0:20: 1164 | 256,192,15415,1,0,0:0:0:20: 1165 | 329,192,15469,1,0,0:0:0:20: 1166 | 402,192,15523,1,0,0:0:0:20: 1167 | 36,192,15576,1,0,0:0:0:13: 1168 | 182,192,15576,1,4,0:0:0:30: 1169 | 329,192,15630,1,0,0:0:0:20: 1170 | 475,192,15630,1,4,0:0:0:30: 1171 | 36,192,15683,1,4,0:0:0:30: 1172 | 182,192,15683,1,0,0:0:0:13: 1173 | 329,192,15737,1,4,0:0:0:30: 1174 | 475,192,15737,1,0,0:0:0:20: 1175 | 36,192,15790,1,4,0:0:0:30: 1176 | 109,192,15790,1,0,0:0:0:10: 1177 | 475,192,15844,1,0,0:0:0:13: 1178 | 402,192,15844,1,4,0:0:0:30: 1179 | 109,192,15898,1,0,0:0:0:13: 1180 | 36,192,15898,1,0,0:0:0:13: 1181 | 402,192,15951,1,4,0:0:0:30: 1182 | 475,192,15951,1,0,0:0:0:13: 1183 | 329,192,16005,1,0,0:0:0:60:DeepBassKick.wav 1184 | 256,192,16005,1,4,0:0:0:30: 1185 | 182,192,16005,1,2,0:0:0:30: 1186 | 109,192,16005,1,0,0:0:0:60:CymbalFSU.wav 1187 | 402,192,16219,128,4,16487:0:0:0:30: 1188 | 475,192,16219,128,0,16487:0:0:0:60:CymbalFSU.wav 1189 | 109,192,16219,1,0,0:0:0:60:DeepBassKick.wav 1190 | 36,192,16219,1,0,0:0:0:8: 1191 | 182,192,16540,1,0,0:0:0:60:DeepBassKick.wav 1192 | 329,192,16540,128,0,16808:0:0:0:8: 1193 | 256,192,16540,128,0,16808:0:0:0:60:CymbalFSU.wav 1194 | 256,192,16862,128,0,17130:0:0:0:8: 1195 | 36,192,16862,1,0,0:0:0:60:CymbalFSU.wav 1196 | 182,192,16862,128,0,17130:0:0:0:60:DeepBassKick.wav 1197 | 402,192,16862,1,4,0:0:0:30: 1198 | 36,192,17183,128,0,17451:0:0:0:8: 1199 | 109,192,17183,128,0,17451:0:0:0:8: 1200 | 329,192,17183,1,0,0:0:0:60:DeepBassKick.wav 1201 | 475,192,17183,1,0,0:0:0:60:CymbalFSU.wav 1202 | 475,192,17505,128,0,17933:0:0:0:10: 1203 | 36,192,17505,1,0,0:0:0:10: 1204 | 109,192,17505,1,0,0:0:0:30:DeepBassKick.wav 1205 | 109,192,17933,1,2,0:0:0:30: 1206 | 182,192,17933,1,0,0:0:0:60:CymbalFSU.wav 1207 | 256,192,17933,1,0,0:0:0:60:DeepBassKick.wav 1208 | 36,192,17933,128,4,19005:0:0:0:30: 1209 | 329,192,17987,1,0,0:0:0:0: 1210 | 402,192,18040,1,0,0:0:0:20: 1211 | 475,192,18094,1,0,0:0:0:20: 1212 | 109,192,18148,1,0,0:0:0:20: 1213 | 182,192,18201,1,0,0:0:0:20: 1214 | 256,192,18255,1,0,0:0:0:20: 1215 | 329,192,18308,1,0,0:0:0:20: 1216 | 402,192,18362,1,0,0:0:0:20: 1217 | 475,192,18415,1,0,0:0:0:20: 1218 | 402,192,18469,1,0,0:0:0:20: 1219 | 329,192,18523,1,0,0:0:0:20: 1220 | 256,192,18576,1,0,0:0:0:20: 1221 | 182,192,18630,1,0,0:0:0:20: 1222 | 109,192,18683,1,0,0:0:0:20: 1223 | 475,192,18737,1,0,0:0:0:20: 1224 | 329,192,18790,1,0,0:0:0:20: 1225 | 182,192,18844,1,0,0:0:0:20: 1226 | 402,192,18898,1,0,0:0:0:20: 1227 | 256,192,18951,1,0,0:0:0:20: 1228 | 109,192,19005,128,0,19112:0:0:0:20: 1229 | 256,192,19112,128,0,19219:0:0:0:20: 1230 | 402,192,19219,128,0,19433:0:0:0:20: 1231 | 256,192,19433,128,0,19648:0:0:0:20: 1232 | 182,192,19648,1,0,0:0:0:60:CymbalFSU.wav 1233 | 329,192,19648,1,0,0:0:0:60:DeepBassKick.wav 1234 | 475,192,19648,1,8,0:0:0:30: 1235 | 36,192,19648,128,0,19862:0:0:0:0: 1236 | 475,192,19862,128,0,20023:0:0:0:20: 1237 | 475,192,20076,128,0,20290:0:0:0:20: 1238 | 402,192,20290,128,0,20505:0:0:0:20: 1239 | 329,192,20505,128,0,20719:0:0:0:20: 1240 | 182,192,20719,128,0,20826:0:0:0:20: 1241 | 109,192,20826,128,0,20933:0:0:0:20: 1242 | 182,192,20933,128,0,21148:0:0:0:20: 1243 | 36,192,21148,128,0,21362:0:0:0:20: 1244 | 182,192,21362,128,0,21576:0:0:0:20: 1245 | 36,192,21576,128,0,21790:0:0:0:20: 1246 | 182,192,21790,128,0,22005:0:0:0:20: 1247 | 256,192,22005,128,0,22112:0:0:0:20: 1248 | 329,192,22112,128,0,22219:0:0:0:20: 1249 | 402,192,22219,128,0,22433:0:0:0:20: 1250 | 182,192,22433,128,0,22540:0:0:0:20: 1251 | 109,192,22540,128,0,22594:0:0:0:20: 1252 | 109,192,22648,128,0,22862:0:0:0:20: 1253 | 182,192,22862,128,0,22969:0:0:0:20: 1254 | 256,192,22969,128,0,23076:0:0:0:20: 1255 | 329,192,23076,128,0,23290:0:0:0:20: 1256 | 109,192,23290,128,0,23505:0:0:0:20: 1257 | 329,192,23505,128,0,23719:0:0:0:20: 1258 | 475,192,23719,128,0,23826:0:0:0:20: 1259 | 402,192,23826,128,0,23933:0:0:0:20: 1260 | 329,192,23933,128,0,24148:0:0:0:20: 1261 | 402,192,24148,128,0,24362:0:0:0:20: 1262 | 109,192,24362,128,0,24576:0:0:0:20: 1263 | 182,192,24576,128,0,24683:0:0:0:20: 1264 | 256,192,24683,128,0,24790:0:0:0:20: 1265 | 329,192,24790,128,0,25005:0:0:0:20: 1266 | 36,192,25005,128,0,25219:0:0:0:20: 1267 | 329,192,25219,128,0,25326:0:0:0:20: 1268 | 182,192,25326,128,0,25433:0:0:0:20: 1269 | 475,192,25433,128,0,25540:0:0:0:20: 1270 | 402,192,25540,128,0,25648:0:0:0:20: 1271 | 256,192,25648,128,0,25862:0:0:0:20: 1272 | 329,192,25862,128,0,26076:0:0:0:20: 1273 | 182,192,26076,128,0,26290:0:0:0:20: 1274 | 36,192,26290,128,0,26505:0:0:0:20: 1275 | 402,192,26505,128,0,26719:0:0:0:20: 1276 | 109,192,26719,128,0,26933:0:0:0:20: 1277 | 182,192,26933,128,0,27148:0:0:0:20: 1278 | 329,192,27148,128,0,27362:0:0:0:20: 1279 | 256,192,27362,128,0,27576:0:0:0:20: 1280 | 329,192,27576,1,0,0:0:0:20: 1281 | 182,192,27576,1,0,0:0:0:20: 1282 | 402,192,27648,1,0,0:0:0:40: 1283 | 109,192,27648,1,0,0:0:0:0: 1284 | 329,192,27719,1,0,0:0:0:20: 1285 | 182,192,27719,1,0,0:0:0:20: 1286 | 256,192,27790,128,0,28005:0:0:0:20: 1287 | 402,192,27898,1,0,0:0:0:0: 1288 | 182,192,28005,128,0,28165:0:0:0:20: 1289 | 182,192,28219,128,0,28433:0:0:0:20: 1290 | 329,192,28326,1,0,0:0:0:0: 1291 | 402,192,28380,1,0,0:0:0:0: 1292 | 36,192,28433,128,0,28648:0:0:0:20: 1293 | 475,192,28433,1,0,0:0:0:20: 1294 | 329,192,28487,1,0,0:0:0:0: 1295 | 402,192,28540,1,0,0:0:0:0: 1296 | 109,192,28648,128,0,28862:0:0:0:20: 1297 | 256,192,28648,1,0,0:0:0:20: 1298 | 182,192,28701,1,0,0:0:0:0: 1299 | 475,192,28755,1,0,0:0:0:0: 1300 | 402,192,28808,1,0,0:0:0:0: 1301 | 329,192,28862,128,0,29076:0:0:0:20: 1302 | 256,192,28862,1,0,0:0:0:20: 1303 | 256,192,29076,128,0,29505:0:0:0:13: 1304 | 109,192,29076,1,0,0:0:0:13: 1305 | 402,192,29130,1,0,0:0:0:40: 1306 | 109,192,29183,1,0,0:0:0:40: 1307 | 402,192,29237,1,0,0:0:0:40: 1308 | 182,192,29505,128,0,29933:0:0:0:13: 1309 | 329,192,29505,1,0,0:0:0:13: 1310 | 36,192,29558,1,0,0:0:0:40: 1311 | 329,192,29612,1,0,0:0:0:40: 1312 | 36,192,29665,1,0,0:0:0:40: 1313 | 109,192,29933,1,0,0:0:0:60:CymbalFSU.wav 1314 | 36,192,29933,1,0,0:0:0:60:DeepBassKick.wav 1315 | 256,192,29933,1,0,0:0:0:60:KickMid.wav 1316 | 329,192,29933,1,0,0:0:0:8: 1317 | 475,192,29933,1,0,0:0:0:8: 1318 | 109,192,30148,1,0,0:0:0:60:KickMid.wav 1319 | 182,192,30148,1,0,0:0:0:10: 1320 | 402,192,30148,1,0,0:0:0:10: 1321 | 329,192,30148,1,0,0:0:0:10: 1322 | 475,192,30362,1,0,0:0:0:60:KickMid.wav 1323 | 402,192,30362,1,0,0:0:0:8: 1324 | 329,192,30362,1,0,0:0:0:8: 1325 | 256,192,30362,1,0,0:0:0:8: 1326 | 182,192,30469,1,0,0:0:0:13: 1327 | 109,192,30469,1,0,0:0:0:60:KickMid.wav 1328 | 36,192,30469,1,0,0:0:0:13: 1329 | 329,192,30576,1,0,0:0:0:8: 1330 | 402,192,30576,1,0,0:0:0:60:KickMid.wav 1331 | 475,192,30576,1,0,0:0:0:8: 1332 | 256,192,30576,1,0,0:0:0:8: 1333 | 182,192,30683,1,0,0:0:0:13: 1334 | 109,192,30683,1,0,0:0:0:13: 1335 | 36,192,30683,1,0,0:0:0:60:KickMid.wav 1336 | 329,192,30790,1,0,0:0:0:60:KickMid.wav 1337 | 402,192,30790,1,0,0:0:0:8: 1338 | 475,192,30790,1,0,0:0:0:8: 1339 | 256,192,30790,1,0,0:0:0:8: 1340 | 475,192,30898,1,0,0:0:0:60:KickMid.wav 1341 | 402,192,30898,1,0,0:0:0:8: 1342 | 329,192,30898,1,0,0:0:0:8: 1343 | 256,192,30898,1,0,0:0:0:8: 1344 | 182,192,31005,1,0,0:0:0:60:KickMid.wav 1345 | 109,192,31005,1,0,0:0:0:13: 1346 | 36,192,31005,1,0,0:0:0:13: 1347 | 475,192,31112,128,0,31433:0:0:0:10: 1348 | 329,192,31112,1,0,0:0:0:60:KickMid.wav 1349 | 402,192,31112,1,0,0:0:0:10: 1350 | 256,192,31112,1,0,0:0:0:10: 1351 | 256,192,31326,1,0,0:0:0:13: 1352 | 182,192,31326,1,0,0:0:0:60:KickMid.wav 1353 | 109,192,31326,1,0,0:0:0:13: 1354 | 329,192,31433,128,0,31576:0:0:0:10: 1355 | 36,192,31648,128,0,31915:0:0:0:60:CymbalFSU.wav 1356 | 109,192,31648,1,0,0:0:0:60:DeepBassKick.wav 1357 | 182,192,31648,1,0,0:0:0:60:KickMid.wav 1358 | 256,192,31648,1,0,0:0:0:8: 1359 | 182,192,31969,1,0,0:0:0:60:CymbalFSU.wav 1360 | 256,192,31969,1,0,0:0:0:60:DeepBassKick.wav 1361 | 329,192,31969,1,0,0:0:0:60:KickMid.wav 1362 | 109,192,31969,128,0,32237:0:0:0:8: 1363 | 182,192,32290,128,0,32558:0:0:0:60:CymbalFSU.wav 1364 | 256,192,32290,1,0,0:0:0:60:DeepBassKick.wav 1365 | 329,192,32290,1,0,0:0:0:60:KickMid.wav 1366 | 402,192,32290,1,0,0:0:0:8: 1367 | 475,192,32612,128,0,32880:0:0:0:60:CymbalFSU.wav 1368 | 402,192,32612,1,0,0:0:0:60:DeepBassKick.wav 1369 | 329,192,32612,1,0,0:0:0:60:KickMid.wav 1370 | 256,192,32612,1,0,0:0:0:8: 1371 | 182,192,32933,1,0,0:0:0:60:KickMid.wav 1372 | 256,192,32933,1,0,0:0:0:60:DeepBassKick.wav 1373 | 402,192,32933,128,0,33523:0:0:0:8: 1374 | 329,192,32933,1,0,0:0:0:60:CymbalFSU.wav 1375 | 329,192,33576,128,0,33737:0:0:0:8: 1376 | 109,192,33576,1,0,0:0:0:60:CymbalFSU.wav 1377 | 182,192,33576,1,0,0:0:0:60:DeepBassKick.wav 1378 | 475,192,33576,1,0,0:0:0:60:KickMid.wav 1379 | 256,192,33790,128,0,33951:0:0:0:8: 1380 | 109,192,33790,1,0,0:0:0:60:CymbalFSU.wav 1381 | 36,192,33790,1,0,0:0:0:60:DeepBassKick.wav 1382 | 402,192,33790,1,0,0:0:0:60:KickMid.wav 1383 | 182,192,34005,128,0,34165:0:0:0:8: 1384 | 329,192,34005,1,0,0:0:0:60:KickMid.wav 1385 | 475,192,34005,1,0,0:0:0:60:DeepBassKick.wav 1386 | 36,192,34005,1,0,0:0:0:60:CymbalFSU.wav 1387 | 109,192,34219,128,0,34487:0:0:0:8: 1388 | 256,192,34219,1,0,0:0:0:60:CymbalFSU.wav 1389 | 402,192,34219,1,0,0:0:0:60:DeepBassKick.wav 1390 | 475,192,34219,1,0,0:0:0:60:KickMid.wav 1391 | 182,192,34540,128,0,34808:0:0:0:8: 1392 | 36,192,34540,1,0,0:0:0:60:DeepBassKick.wav 1393 | 329,192,34540,1,0,0:0:0:60:CymbalFSU.wav 1394 | 402,192,34540,1,0,0:0:0:60:KickMid.wav 1395 | 256,192,34862,128,0,35130:0:0:0:8: 1396 | 475,192,34862,1,0,0:0:0:60:CymbalFSU.wav 1397 | 402,192,34862,1,0,0:0:0:60:DeepBassKick.wav 1398 | 109,192,34862,1,0,0:0:0:60:KickMid.wav 1399 | 475,192,35183,128,0,35451:0:0:0:8: 1400 | 182,192,35183,1,0,0:0:0:60:CymbalFSU.wav 1401 | 36,192,35183,1,0,0:0:0:60:KickMid.wav 1402 | 329,192,35183,1,0,0:0:0:60:DeepBassKick.wav 1403 | 36,192,35505,128,0,37165:0:0:0:8: 1404 | 109,192,35505,1,0,0:0:0:60:KickMid.wav 1405 | 256,192,35505,1,0,0:0:0:60:CymbalFSU.wav 1406 | 402,192,35505,1,0,0:0:0:60:DeepBassKick.wav 1407 | 109,192,35933,1,0,0:0:0:40: 1408 | 182,192,35933,1,0,0:0:0:0: 1409 | 256,192,35987,1,0,0:0:0:40: 1410 | 329,192,36040,1,0,0:0:0:40: 1411 | 402,192,36094,1,0,0:0:0:40: 1412 | 109,192,36148,1,0,0:0:0:20: 1413 | 475,192,36148,1,0,0:0:0:20: 1414 | 182,192,36201,1,0,0:0:0:40: 1415 | 256,192,36255,1,0,0:0:0:40: 1416 | 329,192,36308,1,0,0:0:0:40: 1417 | 475,192,36362,1,0,0:0:0:20: 1418 | 402,192,36362,1,0,0:0:0:20: 1419 | 109,192,36415,1,0,0:0:0:40: 1420 | 256,192,36469,1,0,0:0:0:40: 1421 | 182,192,36469,1,0,0:0:0:0: 1422 | 329,192,36523,1,0,0:0:0:40: 1423 | 402,192,36576,1,0,0:0:0:20: 1424 | 475,192,36576,1,0,0:0:0:20: 1425 | 256,192,36630,1,0,0:0:0:40: 1426 | 109,192,36683,1,0,0:0:0:20: 1427 | 182,192,36683,1,0,0:0:0:20: 1428 | 402,192,36737,1,0,0:0:0:40: 1429 | 475,192,36790,1,0,0:0:0:20: 1430 | 329,192,36790,1,0,0:0:0:20: 1431 | 182,192,36844,1,0,0:0:0:40: 1432 | 256,192,36898,1,0,0:0:0:20: 1433 | 109,192,36898,1,0,0:0:0:20: 1434 | 329,192,36951,1,0,0:0:0:40: 1435 | 475,192,37005,1,0,0:0:0:20: 1436 | 402,192,37005,1,0,0:0:0:20: 1437 | 182,192,37058,1,0,0:0:0:40: 1438 | 256,192,37112,1,0,0:0:0:20: 1439 | 329,192,37165,1,0,0:0:0:40: 1440 | 36,192,37219,1,0,0:0:0:20: 1441 | 109,192,37273,1,0,0:0:0:40: 1442 | 182,192,37326,1,0,0:0:0:20: 1443 | 256,192,37380,1,0,0:0:0:40: 1444 | 475,192,37433,1,0,0:0:0:20: 1445 | 402,192,37487,1,0,0:0:0:40: 1446 | 329,192,37540,1,0,0:0:0:40: 1447 | 256,192,37594,1,0,0:0:0:40: 1448 | 182,192,37648,1,0,0:0:0:60:CymbalFSU.wav 1449 | 109,192,37648,1,0,0:0:0:60:DeepBassKick.wav 1450 | 36,192,37648,1,0,0:0:0:60:KickMid.wav 1451 | 475,192,37648,128,0,37862:0:0:0:8: 1452 | 402,192,37648,1,0,0:0:0:8: 1453 | 402,192,37862,1,0,0:0:0:10: 1454 | 256,192,37862,1,0,0:0:0:60:KickMid.wav 1455 | 329,192,37862,1,0,0:0:0:10: 1456 | 36,192,37862,128,0,38076:0:0:0:10: 1457 | 109,192,38076,1,0,0:0:0:8: 1458 | 182,192,38076,1,0,0:0:0:60:KickMid.wav 1459 | 256,192,38076,1,0,0:0:0:8: 1460 | 475,192,38076,1,0,0:0:0:8: 1461 | 329,192,38183,1,0,0:0:0:13: 1462 | 402,192,38183,1,0,0:0:0:13: 1463 | 182,192,38290,1,0,0:0:0:8: 1464 | 109,192,38290,1,0,0:0:0:60:KickMid.wav 1465 | 36,192,38290,1,0,0:0:0:8: 1466 | 475,192,38290,1,0,0:0:0:8: 1467 | 329,192,38398,1,0,0:0:0:13: 1468 | 256,192,38398,1,0,0:0:0:13: 1469 | 182,192,38505,128,0,38719:0:0:0:8: 1470 | 109,192,38505,1,0,0:0:0:60:KickMid.wav 1471 | 402,192,38505,1,0,0:0:0:8: 1472 | 475,192,38505,1,0,0:0:0:8: 1473 | 329,192,38612,1,0,0:0:0:40: 1474 | 402,192,38665,1,0,0:0:0:20: 1475 | 256,192,38719,1,0,0:0:0:10: 1476 | 36,192,38719,1,0,0:0:0:10: 1477 | 475,192,38719,1,0,0:0:0:60:KickMid.wav 1478 | 109,192,38719,1,0,0:0:0:10: 1479 | 182,192,38826,1,0,0:0:0:13: 1480 | 402,192,38880,1,0,0:0:0:0: 1481 | 256,192,39040,1,0,0:0:0:10: 1482 | 109,192,39040,1,0,0:0:0:10: 1483 | 36,192,39040,1,0,0:0:0:10: 1484 | 329,192,39040,1,0,0:0:0:10: 1485 | 36,192,39148,128,0,39362:0:0:0:10: 1486 | 109,192,39148,128,0,39362:0:0:0:10: 1487 | 256,192,39148,1,0,0:0:0:60:KickMid.wav 1488 | 329,192,39148,1,0,0:0:0:10: 1489 | 475,192,39362,1,0,0:0:0:60:KickMid.wav 1490 | 402,192,39362,1,0,0:0:0:13: 1491 | 329,192,39389,1,0,0:0:0:0: 1492 | 256,192,39415,1,0,0:0:0:60:KickMid.wav 1493 | 182,192,39415,1,0,0:0:0:13: 1494 | 36,192,39469,1,0,0:0:0:13: 1495 | 109,192,39469,1,0,0:0:0:60:KickMid.wav 1496 | 475,192,39523,1,0,0:0:0:40: 1497 | 256,192,39576,1,0,0:0:0:60:KickMid.wav 1498 | 182,192,39576,1,0,0:0:0:13: 1499 | 402,192,39630,1,0,0:0:0:40: 1500 | 36,192,39683,1,0,0:0:0:60:KickMid.wav 1501 | 109,192,39683,1,0,0:0:0:13: 1502 | 329,192,39737,1,0,0:0:0:40: 1503 | 182,192,39790,1,0,0:0:0:60:DeepBassKick.wav 1504 | 256,192,39790,1,0,0:0:0:60:CymbalFSU.wav 1505 | 475,192,39790,1,0,0:0:0:60:KickMid.wav 1506 | 402,192,39898,1,0,0:0:0:20: 1507 | 256,192,39951,1,0,0:0:0:40: 1508 | 109,192,40005,1,0,0:0:0:13: 1509 | 36,192,40005,1,0,0:0:0:13: 1510 | 329,192,40112,1,0,0:0:0:60:KickMid.wav 1511 | 402,192,40112,1,0,0:0:0:20: 1512 | 475,192,40112,1,0,0:0:0:0: 1513 | 256,192,40165,1,0,0:0:0:40: 1514 | 182,192,40219,1,0,0:0:0:60:CymbalFSU.wav 1515 | 109,192,40219,1,0,0:0:0:60:KickMid.wav 1516 | 36,192,40219,1,0,0:0:0:60:DeepBassKick.wav 1517 | 329,192,40326,1,0,0:0:0:10: 1518 | 475,192,40326,128,0,40648:0:0:0:10: 1519 | 256,192,40380,1,0,0:0:0:0: 1520 | 182,192,40433,1,0,0:0:0:20: 1521 | 402,192,40433,128,0,40648:0:0:0:20: 1522 | 109,192,40433,1,0,0:0:0:0: 1523 | 329,192,40540,128,0,40648:0:0:0:20: 1524 | 256,192,40648,1,0,0:0:0:60:CymbalFSU.wav 1525 | 109,192,40648,1,0,0:0:0:60:DeepBassKick.wav 1526 | 36,192,40648,1,0,0:0:0:60:KickMid.wav 1527 | 182,192,40648,1,0,0:0:0:8: 1528 | 182,192,40862,1,0,0:0:0:20: 1529 | 329,192,40862,1,0,0:0:0:20: 1530 | 109,192,41076,1,0,0:0:0:60:CymbalFSU.wav 1531 | 256,192,41076,1,0,0:0:0:60:DeepBassKick.wav 1532 | 475,192,41076,1,0,0:0:0:8: 1533 | 402,192,41076,1,0,0:0:0:60:KickMid.wav 1534 | 36,192,41076,1,0,0:0:0:0: 1535 | 109,192,41290,1,0,0:0:0:8: 1536 | 182,192,41290,1,0,0:0:0:60:DeepBassKick.wav 1537 | 329,192,41290,1,0,0:0:0:60:CymbalFSU.wav 1538 | 402,192,41290,1,0,0:0:0:60:KickMid.wav 1539 | 182,192,41505,1,0,0:0:0:60:CymbalFSU.wav 1540 | 475,192,41505,1,0,0:0:0:60:KickMid.wav 1541 | 36,192,41505,1,0,0:0:0:8: 1542 | 109,192,41505,1,0,0:0:0:8: 1543 | 182,192,41612,1,0,0:0:0:20: 1544 | 109,192,41612,1,0,0:0:0:60:KickMid.wav 1545 | 475,192,41719,1,0,0:0:0:10: 1546 | 36,192,41719,1,0,0:0:0:60:KickMid.wav 1547 | 329,192,41719,1,0,0:0:0:10: 1548 | 402,192,41719,1,0,0:0:0:10: 1549 | 402,192,41826,1,0,0:0:0:20: 1550 | 329,192,41826,1,0,0:0:0:60:KickMid.wav 1551 | 256,192,41933,1,0,0:0:0:13: 1552 | 475,192,41933,1,0,0:0:0:60:KickMid.wav 1553 | 109,192,41933,1,0,0:0:0:13: 1554 | 36,192,41933,1,0,0:0:0:0: 1555 | 182,192,42040,1,0,0:0:0:20: 1556 | 36,192,42040,1,0,0:0:0:20: 1557 | 329,192,42148,128,0,42362:0:0:0:60:KickMid.wav 1558 | 402,192,42148,1,0,0:0:0:10: 1559 | 256,192,42148,1,0,0:0:0:10: 1560 | 475,192,42148,1,0,0:0:0:10: 1561 | 109,192,42255,1,0,0:0:0:60:KickMid.wav 1562 | 256,192,42362,128,0,42469:0:0:0:10: 1563 | 182,192,42362,1,0,0:0:0:60:KickMid.wav 1564 | 475,192,42362,1,0,0:0:0:10: 1565 | 402,192,42362,1,0,0:0:0:10: 1566 | 36,192,42469,1,0,0:0:0:20: 1567 | 109,192,42469,1,0,0:0:0:20: 1568 | 182,192,42576,128,0,42790:0:0:0:10: 1569 | 329,192,42576,1,0,0:0:0:60:KickMid.wav 1570 | 402,192,42576,1,0,0:0:0:10: 1571 | 475,192,42576,1,0,0:0:0:10: 1572 | 475,192,42683,1,0,0:0:0:60:KickMid.wav 1573 | 402,192,42683,1,0,0:0:0:20: 1574 | 329,192,42683,1,0,0:0:0:0: 1575 | 329,192,42790,1,0,0:0:0:10: 1576 | 475,192,42790,1,0,0:0:0:10: 1577 | 256,192,42790,1,0,0:0:0:60:KickMid.wav 1578 | 36,192,42790,1,0,0:0:0:10: 1579 | 109,192,42844,1,0,0:0:0:40: 1580 | 182,192,42898,1,0,0:0:0:20: 1581 | 256,192,42951,1,0,0:0:0:40: 1582 | 109,192,43005,1,0,0:0:0:10: 1583 | 36,192,43005,1,0,0:0:0:60:KickMid.wav 1584 | 329,192,43005,1,0,0:0:0:10: 1585 | 402,192,43005,1,0,0:0:0:10: 1586 | 182,192,43058,1,0,0:0:0:40: 1587 | 256,192,43112,1,0,0:0:0:20: 1588 | 329,192,43165,1,0,0:0:0:20: 1589 | 109,192,43219,1,0,0:0:0:10: 1590 | 36,192,43219,1,0,0:0:0:10: 1591 | 402,192,43219,1,0,0:0:0:10: 1592 | 475,192,43219,1,0,0:0:0:60:KickMid.wav 1593 | 182,192,43326,1,0,0:0:0:13: 1594 | 329,192,43326,1,0,0:0:0:13: 1595 | 256,192,43326,1,0,0:0:0:60:KickMid.wav 1596 | 256,192,43433,1,0,0:0:0:13: 1597 | 329,192,43433,1,0,0:0:0:13: 1598 | 182,192,43433,1,0,0:0:0:60:KickMid.wav 1599 | 109,192,43540,1,0,0:0:0:60:KickMid.wav 1600 | 256,192,43540,1,0,0:0:0:13: 1601 | 402,192,43540,1,0,0:0:0:13: 1602 | 182,192,43755,1,0,0:0:0:60:DeepBassKick.wav 1603 | 36,192,43755,1,0,0:0:0:60:KickMid.wav 1604 | 329,192,43755,1,0,0:0:0:60:CymbalFSU.wav 1605 | 402,192,43755,1,0,0:0:0:8: 1606 | 182,192,43862,1,0,0:0:0:60:CymbalFSU.wav 1607 | 109,192,43862,1,0,0:0:0:60:DeepBassKick.wav 1608 | 329,192,43862,1,0,0:0:0:60:KickMid.wav 1609 | 475,192,43862,1,0,0:0:0:8: 1610 | 256,192,44076,1,0,0:0:0:60:CymbalFSU.wav 1611 | 329,192,44076,1,0,0:0:0:60:DeepBassKick.wav 1612 | 402,192,44076,1,0,0:0:0:8: 1613 | 182,192,44076,1,0,0:0:0:60:KickMid.wav 1614 | 329,192,44290,1,0,0:0:0:60:CymbalFSU.wav 1615 | 256,192,44290,1,0,0:0:0:60:DeepBassKick.wav 1616 | 182,192,44290,1,0,0:0:0:60:KickMid.wav 1617 | 109,192,44290,1,0,0:0:0:8: 1618 | 329,192,44505,1,0,0:0:0:10: 1619 | 256,192,44505,1,0,0:0:0:10: 1620 | 402,192,44532,1,0,0:0:0:40: 1621 | 475,192,44558,1,0,0:0:0:40: 1622 | 36,192,44585,1,0,0:0:0:40: 1623 | 109,192,44612,1,0,0:0:0:40: 1624 | 182,192,44639,1,0,0:0:0:40: 1625 | 329,192,44665,1,0,0:0:0:40: 1626 | 402,192,44692,1,0,0:0:0:40: 1627 | 475,192,44719,1,0,0:0:0:60:KickMid.wav 1628 | 256,192,44719,1,0,0:0:0:60:DeepBassKick.wav 1629 | 109,192,44719,1,0,0:0:0:60:CymbalFSU.wav 1630 | 36,192,44719,1,0,0:0:0:0: 1631 | 402,192,44933,1,0,0:0:0:10: 1632 | 109,192,44933,1,0,0:0:0:60:KickMid.wav 1633 | 256,192,44933,1,0,0:0:0:10: 1634 | 475,192,44933,1,0,0:0:0:10: 1635 | 329,192,44987,1,0,0:0:0:20: 1636 | 182,192,45040,1,0,0:0:0:20: 1637 | 36,192,45094,1,0,0:0:0:20: 1638 | 402,192,45148,128,0,45255:0:0:0:13: 1639 | 475,192,45148,128,0,45255:0:0:0:13: 1640 | 329,192,45148,1,0,0:0:0:60:KickMid.wav 1641 | 36,192,45255,1,0,0:0:0:60:KickMid.wav 1642 | 109,192,45255,1,0,0:0:0:20: 1643 | 182,192,45282,1,0,0:0:0:40: 1644 | 256,192,45308,1,0,0:0:0:40: 1645 | 329,192,45335,1,0,0:0:0:40: 1646 | 402,192,45362,1,0,0:0:0:20: 1647 | 475,192,45362,1,0,0:0:0:20: 1648 | 36,192,45469,1,0,0:0:0:60:KickMid.wav 1649 | 109,192,45469,1,0,0:0:0:13: 1650 | 256,192,45469,1,0,0:0:0:13: 1651 | 329,192,45469,1,0,0:0:0:0: 1652 | 109,192,45576,1,0,0:0:0:13: 1653 | 182,192,45576,1,0,0:0:0:13: 1654 | 402,192,45576,1,0,0:0:0:60:KickMid.wav 1655 | 329,192,45576,128,0,45683:0:0:0:0: 1656 | 475,192,45683,128,0,45790:0:0:0:20: 1657 | 36,192,45790,1,0,0:0:0:20: 1658 | 109,192,45790,1,0,0:0:0:20: 1659 | 182,192,45898,1,0,0:0:0:20: 1660 | 256,192,45898,1,0,0:0:0:20: 1661 | 329,192,46005,128,0,46112:0:0:0:20: 1662 | 402,192,46005,128,0,46112:0:0:0:20: 1663 | 109,192,46219,1,0,0:0:0:10: 1664 | 36,192,46219,1,0,0:0:0:60:KickMid.wav 1665 | 182,192,46273,1,0,0:0:0:60:KickMid.wav 1666 | 256,192,46273,1,0,0:0:0:13: 1667 | 329,192,46326,1,0,0:0:0:60:KickMid.wav 1668 | 402,192,46326,1,0,0:0:0:13: 1669 | 475,192,46326,1,0,0:0:0:13: 1670 | 475,192,46433,1,0,0:0:0:10: 1671 | 402,192,46433,1,0,0:0:0:60:KickMid.wav 1672 | 329,192,46487,1,0,0:0:0:60:KickMid.wav 1673 | 256,192,46487,1,0,0:0:0:13: 1674 | 182,192,46540,1,0,0:0:0:60:KickMid.wav 1675 | 109,192,46540,1,0,0:0:0:13: 1676 | 36,192,46540,1,0,0:0:0:13: 1677 | 329,192,46648,1,0,0:0:0:60:KickMid.wav 1678 | 256,192,46648,1,0,0:0:0:0: 1679 | 402,192,46701,1,0,0:0:0:60:KickMid.wav 1680 | 475,192,46701,1,0,0:0:0:0: 1681 | 36,192,46755,1,0,0:0:0:13: 1682 | 109,192,46755,1,0,0:0:0:60:KickMid.wav 1683 | 182,192,46782,1,0,0:0:0:40: 1684 | 256,192,46808,1,0,0:0:0:40: 1685 | 329,192,46835,1,0,0:0:0:40: 1686 | 402,192,46862,1,0,0:0:0:60:KickMid.wav 1687 | 475,192,46862,1,0,0:0:0:10: 1688 | 256,192,47076,1,0,0:0:0:0: 1689 | 329,192,47076,1,0,0:0:0:0: 1690 | 36,192,47076,1,0,0:0:0:0: 1691 | 402,192,47130,1,0,0:0:0:0: 1692 | 475,192,47130,1,0,0:0:0:0: 1693 | 182,192,47183,1,0,0:0:0:0: 1694 | 109,192,47183,1,0,0:0:0:0: 1695 | 329,192,47237,1,0,0:0:0:0: 1696 | 256,192,47237,1,0,0:0:0:0: 1697 | 402,192,47290,1,0,0:0:0:0: 1698 | 475,192,47290,1,0,0:0:0:0: 1699 | 109,192,47344,1,0,0:0:0:0: 1700 | 36,192,47344,1,0,0:0:0:0: 1701 | 256,192,47398,1,0,0:0:0:0: 1702 | 182,192,47398,1,0,0:0:0:0: 1703 | 329,192,47451,1,0,0:0:0:0: 1704 | 402,192,47451,1,0,0:0:0:0: 1705 | 36,192,47505,128,0,47665:0:0:0:8: 1706 | 109,192,47505,128,0,47665:0:0:0:60:CymbalFSU.wav 1707 | 182,192,47505,128,0,47665:0:0:0:60:KickMid.wav 1708 | 475,192,47505,1,0,0:0:0:60:DeepBassKick.wav 1709 | 329,192,47719,128,0,47880:0:0:0:60:KickMid.wav 1710 | 402,192,47719,128,0,47880:0:0:0:8: 1711 | 475,192,47719,128,0,47880:0:0:0:60:DeepBassKick.wav 1712 | 36,192,47719,1,0,0:0:0:60:CymbalFSU.wav 1713 | 475,192,47933,1,0,0:0:0:60:DeepBassKick.wav 1714 | 402,192,47933,1,0,0:0:0:8: 1715 | 256,192,47933,1,0,0:0:0:60:KickMid.wav 1716 | 109,192,47933,128,0,48148:0:0:0:60:CymbalFSU.wav 1717 | 329,192,48040,1,0,0:0:0:40: 1718 | 402,192,48148,128,0,48362:0:0:0:8: 1719 | 475,192,48148,1,0,0:0:0:60:CymbalFSU.wav 1720 | 182,192,48148,1,0,0:0:0:60:KickMid.wav 1721 | 36,192,48148,1,0,0:0:0:60:DeepBassKick.wav 1722 | 256,192,48255,1,0,0:0:0:40: 1723 | 109,192,48362,1,0,0:0:0:60:KickMid.wav 1724 | 36,192,48362,1,0,0:0:0:8: 1725 | 329,192,48362,1,0,0:0:0:8: 1726 | 182,192,48362,1,0,0:0:0:8: 1727 | 36,192,48469,1,0,0:0:0:20: 1728 | 109,192,48469,1,0,0:0:0:20: 1729 | 329,192,48576,1,0,0:0:0:60:KickMid.wav 1730 | 475,192,48576,1,0,0:0:0:8: 1731 | 182,192,48576,1,0,0:0:0:8: 1732 | 402,192,48576,1,0,0:0:0:8: 1733 | 475,192,48683,1,0,0:0:0:20: 1734 | 402,192,48683,1,0,0:0:0:20: 1735 | 329,192,48790,1,0,0:0:0:8: 1736 | 182,192,48790,128,0,49005:0:0:0:8: 1737 | 109,192,48790,128,0,49005:0:0:0:60:KickMid.wav 1738 | 36,192,48790,128,0,49005:0:0:0:8: 1739 | 256,192,49112,1,0,0:0:0:10: 1740 | 329,192,49112,1,0,0:0:0:10: 1741 | 402,192,49112,1,0,0:0:0:60:KickMid.wav 1742 | 475,192,49112,1,0,0:0:0:10: 1743 | 402,192,49219,1,0,0:0:0:60:KickMid.wav 1744 | 329,192,49219,1,0,0:0:0:10: 1745 | 256,192,49219,1,0,0:0:0:10: 1746 | 182,192,49219,1,0,0:0:0:10: 1747 | 329,192,49326,1,0,0:0:0:60:KickMid.wav 1748 | 256,192,49326,1,0,0:0:0:10: 1749 | 182,192,49326,1,0,0:0:0:10: 1750 | 109,192,49326,1,0,0:0:0:10: 1751 | 256,192,49433,1,0,0:0:0:60:KickMid.wav 1752 | 109,192,49433,1,0,0:0:0:8: 1753 | 182,192,49433,1,0,0:0:0:8: 1754 | 36,192,49433,1,0,0:0:0:8: 1755 | 329,192,49648,1,0,0:0:0:8: 1756 | 402,192,49648,1,0,0:0:0:8: 1757 | 475,192,49648,1,0,0:0:0:8: 1758 | 182,192,49648,1,0,0:0:0:60:KickMid.wav 1759 | 182,192,49755,1,0,0:0:0:60:CymbalFSU.wav 1760 | 109,192,49755,1,0,0:0:0:60:DeepBassKick.wav 1761 | 36,192,49755,1,0,0:0:0:60:KickMid.wav 1762 | 329,192,49755,1,0,0:0:0:8: 1763 | 475,192,49969,1,0,0:0:0:10: 1764 | 402,192,49969,1,0,0:0:0:10: 1765 | 329,192,49996,1,0,0:0:0:40: 1766 | 256,192,50023,1,0,0:0:0:40: 1767 | 182,192,50049,1,0,0:0:0:40: 1768 | 109,192,50076,1,0,0:0:0:60:CymbalFSU.wav 1769 | 36,192,50076,1,0,0:0:0:60:DeepBassKick.wav 1770 | 402,192,50076,1,0,0:0:0:60:KickMid.wav 1771 | 475,192,50076,1,0,0:0:0:60:KickMid.wav 1772 | 36,192,50237,1,0,0:0:0:60:CymbalFSU.wav 1773 | 182,192,50237,1,0,0:0:0:60:DeepBassKick.wav 1774 | 329,192,50237,1,0,0:0:0:60:KickMid.wav 1775 | 475,192,50237,1,0,0:0:0:8: 1776 | 402,192,50398,1,0,0:0:0:8: 1777 | 329,192,50398,1,0,0:0:0:60:CymbalFSU.wav 1778 | 182,192,50398,1,0,0:0:0:60:DeepBassKick.wav 1779 | 109,192,50398,1,0,0:0:0:60:KickMid.wav 1780 | 36,192,50505,128,0,50880:0:0:0:60:CymbalFSU.wav 1781 | 109,192,50505,128,0,50880:0:0:0:60:KickMid.wav 1782 | 256,192,50505,1,0,0:0:0:60:DeepBassKick.wav 1783 | 329,192,50505,1,0,0:0:0:8: 1784 | 402,192,50612,1,0,0:0:0:40: 1785 | 475,192,50612,1,0,0:0:0:0: 1786 | 475,192,50719,1,0,0:0:0:40: 1787 | 402,192,50719,1,0,0:0:0:0: 1788 | 402,192,50933,1,0,0:0:0:60:CymbalFSU.wav 1789 | 475,192,50933,1,0,0:0:0:60:KickMid.wav 1790 | 182,192,50933,128,0,51308:0:0:0:60:DeepBassKick.wav 1791 | 109,192,50933,128,0,51308:0:0:0:8: 1792 | 36,192,51362,1,0,0:0:0:60:CymbalFSU.wav 1793 | 475,192,51362,1,0,0:0:0:60:KickMid.wav 1794 | 182,192,51362,1,0,0:0:0:60:DeepBassKick.wav 1795 | 256,192,51362,1,0,0:0:0:8: 1796 | 402,192,51469,1,0,0:0:0:0: 1797 | 329,192,51523,1,0,0:0:0:15: 1798 | 109,192,51523,1,0,0:0:0:15: 1799 | 256,192,51576,1,0,0:0:0:15: 1800 | 182,192,51630,1,0,0:0:0:15: 1801 | 402,192,51630,1,0,0:0:0:15: 1802 | 109,192,51683,1,0,0:0:0:15: 1803 | 329,192,51683,1,0,0:0:0:15: 1804 | 36,192,51737,1,0,0:0:0:15: 1805 | 182,192,51790,1,0,0:0:0:15: 1806 | 402,192,51790,1,0,0:0:0:15: 1807 | 256,192,51844,1,0,0:0:0:15: 1808 | 475,192,51844,1,0,0:0:0:15: 1809 | 329,192,51898,1,0,0:0:0:15: 1810 | 36,192,51898,1,0,0:0:0:15: 1811 | 402,192,51951,1,0,0:0:0:15: 1812 | 109,192,51951,1,0,0:0:0:15: 1813 | 475,192,52005,1,0,0:0:0:15: 1814 | 182,192,52005,1,0,0:0:0:15: 1815 | 256,192,52058,1,0,0:0:0:15: 1816 | 329,192,52112,1,0,0:0:0:15: 1817 | 402,192,52112,1,0,0:0:0:15: 1818 | 36,192,52219,1,0,0:0:0:15: 1819 | 109,192,52219,1,0,0:0:0:15: 1820 | 182,192,52246,1,0,0:0:0:15: 1821 | 256,192,52273,1,0,0:0:0:15: 1822 | 329,192,52299,1,0,0:0:0:15: 1823 | 402,192,52326,1,0,0:0:0:15: 1824 | 475,192,52326,1,0,0:0:0:15: 1825 | 36,192,52433,1,0,0:0:0:15: 1826 | 182,192,52433,1,0,0:0:0:15: 1827 | 109,192,52433,1,0,0:0:0:15: 1828 | 256,192,52487,1,0,0:0:0:0: 1829 | 329,192,52540,1,0,0:0:0:15: 1830 | 402,192,52648,1,0,0:0:0:15: 1831 | 475,192,52648,1,0,0:0:0:15: 1832 | 329,192,52674,1,0,0:0:0:15: 1833 | 256,192,52701,1,0,0:0:0:15: 1834 | 182,192,52728,1,0,0:0:0:15: 1835 | 109,192,52755,1,0,0:0:0:15: 1836 | 36,192,52782,1,0,0:0:0:15: 1837 | 475,192,52808,1,0,0:0:0:15: 1838 | 402,192,52835,1,0,0:0:0:15: 1839 | 329,192,52862,1,0,0:0:0:15: 1840 | 256,192,52862,1,0,0:0:0:15: 1841 | 182,192,52915,1,0,0:0:0:15: 1842 | 109,192,52915,1,0,0:0:0:15: 1843 | 402,192,52969,1,0,0:0:0:15: 1844 | 475,192,52969,1,0,0:0:0:15: 1845 | 329,192,53023,1,0,0:0:0:15: 1846 | 256,192,53076,1,0,0:0:0:15: 1847 | 182,192,53076,1,0,0:0:0:15: 1848 | 36,192,53130,1,0,0:0:0:15: 1849 | 109,192,53183,1,0,0:0:0:15: 1850 | 329,192,53183,1,0,0:0:0:15: 1851 | 182,192,53237,1,0,0:0:0:15: 1852 | 402,192,53237,1,0,0:0:0:15: 1853 | 256,192,53290,1,0,0:0:0:15: 1854 | 475,192,53290,1,0,0:0:0:15: 1855 | 182,192,53398,1,0,0:0:0:15: 1856 | 36,192,53398,1,0,0:0:0:15: 1857 | 475,192,53451,1,0,0:0:0:15: 1858 | 329,192,53451,1,0,0:0:0:15: 1859 | 36,192,53505,1,0,0:0:0:15: 1860 | 109,192,53532,1,0,0:0:0:15: 1861 | 182,192,53558,1,0,0:0:0:15: 1862 | 256,192,53585,1,0,0:0:0:15: 1863 | 329,192,53612,1,0,0:0:0:15: 1864 | 402,192,53612,1,0,0:0:0:15: 1865 | 475,192,53612,1,0,0:0:0:15: 1866 | 36,192,53719,1,0,0:0:0:10: 1867 | 109,192,53719,1,0,0:0:0:10: 1868 | 182,192,53719,1,0,0:0:0:60:KickMid.wav 1869 | 329,192,53773,1,0,0:0:0:13: 1870 | 475,192,53773,1,0,0:0:0:13: 1871 | 402,192,53773,1,0,0:0:0:60:KickMid.wav 1872 | 182,192,53826,1,0,0:0:0:10: 1873 | 109,192,53826,1,0,0:0:0:60:KickMid.wav 1874 | 36,192,53826,1,0,0:0:0:10: 1875 | 329,192,54040,1,0,0:0:0:8: 1876 | 256,192,54040,1,0,0:0:0:8: 1877 | 36,192,54040,128,0,54362:0:0:0:60:KickMid.wav 1878 | 182,192,54040,1,0,0:0:0:8: 1879 | 402,192,54148,1,0,0:0:0:60:KickMid.wav 1880 | 475,192,54148,1,0,0:0:0:60:CymbalFSU.wav 1881 | 109,192,54148,128,0,54362:0:0:0:8: 1882 | 329,192,54148,1,0,0:0:0:60:DeepBassKick.wav 1883 | 475,192,54362,128,0,54790:0:0:0:8: 1884 | 329,192,54362,1,0,0:0:0:60:KickMid.wav 1885 | 256,192,54362,1,0,0:0:0:60:CymbalFSU.wav 1886 | 182,192,54362,1,0,0:0:0:60:DeepBassKick.wav 1887 | 402,192,54576,128,0,54790:0:0:0:20: 1888 | 109,192,54576,1,0,0:0:0:20: 1889 | 36,192,54790,1,0,0:0:0:60:KickMid.wav 1890 | 182,192,54790,1,4,0:0:0:30: 1891 | 256,192,54790,1,0,0:0:0:60:CymbalFSU.wav 1892 | 329,192,54790,1,0,0:0:0:60:DeepBassKick.wav 1893 | 475,192,55005,1,0,0:0:0:40: 1894 | 475,192,55219,1,0,0:0:0:40: 1895 | 402,192,55433,1,0,0:0:0:40: 1896 | 329,192,55648,128,8,56076:0:0:0:30: 1897 | 256,192,55862,128,8,56076:0:0:0:30: 1898 | 109,192,55969,128,8,56076:0:0:0:30: 1899 | 182,192,56076,128,8,56505:0:0:0:30: 1900 | 36,192,56290,128,8,56505:0:0:0:30: 1901 | 475,192,56505,1,0,0:0:0:20: 1902 | 109,192,56719,1,0,0:0:0:40: 1903 | 182,192,56933,128,8,57362:0:0:0:30: 1904 | 329,192,57148,128,8,57362:0:0:0:30: 1905 | 402,192,57255,128,8,57362:0:0:0:30: 1906 | 475,192,57362,1,0,0:0:0:20: 1907 | 256,192,57576,1,0,0:0:0:40: 1908 | 109,192,57683,1,0,0:0:0:40: 1909 | 36,192,57790,128,8,58219:0:0:0:30: 1910 | 182,192,58005,128,8,58219:0:0:0:30: 1911 | 329,192,58112,128,8,58219:0:0:0:30: 1912 | 475,192,58219,1,0,0:0:0:20: 1913 | 109,192,58433,128,8,58648:0:0:0:30: 1914 | 475,192,58648,1,0,0:0:0:20: 1915 | 329,192,58862,128,8,59076:0:0:0:30: 1916 | 182,192,58969,128,8,59076:0:0:0:30: 1917 | 475,192,59076,1,0,0:0:0:20: 1918 | 256,192,59290,128,8,59719:0:0:0:30: 1919 | 109,192,59505,128,8,59719:0:0:0:30: 1920 | 329,192,59719,1,0,0:0:0:20: 1921 | 402,192,59826,1,0,0:0:0:40: 1922 | 475,192,59933,1,0,0:0:0:10: 1923 | 182,192,59933,1,0,0:0:0:10: 1924 | 36,192,59933,1,0,0:0:0:10: 1925 | 256,192,59933,1,0,0:0:0:60:KickMid.wav 1926 | 329,192,60040,1,0,0:0:0:40: 1927 | 182,192,60148,1,0,0:0:0:60:KickMid.wav 1928 | 109,192,60148,1,0,0:0:0:10: 1929 | 36,192,60148,1,0,0:0:0:10: 1930 | 402,192,60148,128,8,60362:0:0:0:30: 1931 | 256,192,60255,1,0,0:0:0:40: 1932 | 109,192,60362,1,0,0:0:0:10: 1933 | 36,192,60362,1,0,0:0:0:10: 1934 | 329,192,60362,1,0,0:0:0:60:KickMid.wav 1935 | 475,192,60362,1,0,0:0:0:10: 1936 | 182,192,60469,1,0,0:0:0:40: 1937 | 402,192,60469,1,0,0:0:0:0: 1938 | 36,192,60576,1,0,0:0:0:10: 1939 | 256,192,60576,1,0,0:0:0:60:KickMid.wav 1940 | 329,192,60576,1,0,0:0:0:10: 1941 | 475,192,60576,1,0,0:0:0:10: 1942 | 182,192,60683,1,0,0:0:0:40: 1943 | 402,192,60683,1,0,0:0:0:0: 1944 | 475,192,60790,128,0,61005:0:0:0:60:KickMid.wav 1945 | 256,192,60790,1,0,0:0:0:60:CymbalFSU.wav 1946 | 329,192,60790,1,0,0:0:0:60:DeepBassKick.wav 1947 | 109,192,60790,1,0,0:0:0:8: 1948 | 36,192,61005,128,0,61219:0:0:0:60:DeepBassKick.wav 1949 | 256,192,61005,1,0,0:0:0:8: 1950 | 182,192,61005,1,0,0:0:0:60:CymbalFSU.wav 1951 | 402,192,61005,1,0,0:0:0:60:KickMid.wav 1952 | 256,192,61219,128,0,61540:0:0:0:60:DeepBassKick.wav 1953 | 109,192,61219,1,0,0:0:0:60:CymbalFSU.wav 1954 | 182,192,61219,1,0,0:0:0:8: 1955 | 329,192,61219,1,0,0:0:0:60:KickMid.wav 1956 | 402,192,61219,1,0,0:0:0:8: 1957 | 475,192,61648,128,0,61862:0:0:0:20: 1958 | 36,192,61862,128,0,62076:0:0:0:20: 1959 | 182,192,62076,128,0,62290:0:0:0:20: 1960 | 329,192,62290,128,0,62505:0:0:0:20: 1961 | 256,192,62505,128,0,62719:0:0:0:20: 1962 | 329,192,62719,128,0,62790:0:0:0:20: 1963 | 402,192,62790,128,0,62862:0:0:0:20: 1964 | 329,192,62862,128,0,62933:0:0:0:20: 1965 | 256,192,62933,128,0,63148:0:0:0:20: 1966 | 182,192,63148,128,0,63362:0:0:0:20: 1967 | 109,192,63362,1,0,0:0:0:60:CymbalFSU.wav 1968 | 36,192,63362,1,0,0:0:0:60:DeepBassKick.wav 1969 | 329,192,63362,1,0,0:0:0:60:KickMid.wav 1970 | 402,192,63362,1,0,0:0:0:8: 1971 | 256,192,63469,1,0,0:0:0:20: 1972 | 182,192,63576,1,0,0:0:0:60:DeepBassKick.wav 1973 | 109,192,63576,1,0,0:0:0:60:CymbalFSU.wav 1974 | 402,192,63576,1,0,0:0:0:8: 1975 | 475,192,63576,1,0,0:0:0:60:KickMid.wav 1976 | 329,192,63683,1,0,0:0:0:20: 1977 | 256,192,63790,1,0,0:0:0:60:DeepBassKick.wav 1978 | 475,192,63790,1,0,0:0:0:60:KickMid.wav 1979 | 36,192,63790,1,0,0:0:0:60:CymbalFSU.wav 1980 | 402,192,63790,1,0,0:0:0:8: 1981 | 182,192,63898,1,0,0:0:0:20: 1982 | 256,192,63951,1,0,0:0:0:40: 1983 | 475,192,64005,1,0,0:0:0:60:KickMid.wav 1984 | 329,192,64005,1,0,0:0:0:60:DeepBassKick.wav 1985 | 36,192,64005,1,0,0:0:0:60:CymbalFSU.wav 1986 | 109,192,64005,1,0,0:0:0:8: 1987 | 402,192,64112,1,0,0:0:0:20: 1988 | 329,192,64165,1,0,0:0:0:40: 1989 | 36,192,64219,1,0,0:0:0:60:DeepBassKick.wav 1990 | 256,192,64219,1,0,0:0:0:60:CymbalFSU.wav 1991 | 109,192,64219,1,0,0:0:0:60:KickMid.wav 1992 | 182,192,64219,1,0,0:0:0:8: 1993 | 329,192,64326,1,0,0:0:0:20: 1994 | 402,192,64326,1,0,0:0:0:20: 1995 | 182,192,64380,1,0,0:0:0:20: 1996 | 109,192,64380,1,0,0:0:0:20: 1997 | 329,192,64433,1,0,0:0:0:20: 1998 | 402,192,64433,1,0,0:0:0:20: 1999 | 36,192,64540,1,0,0:0:0:20: 2000 | 182,192,64540,1,0,0:0:0:20: 2001 | 256,192,64648,1,0,0:0:0:8: 2002 | 329,192,64648,1,0,0:0:0:8: 2003 | 475,192,64648,1,0,0:0:0:8: 2004 | 109,192,64648,1,0,0:0:0:60:KickMid.wav 2005 | 475,192,64755,1,0,0:0:0:20: 2006 | 402,192,64755,1,0,0:0:0:20: 2007 | 329,192,64808,1,0,0:0:0:20: 2008 | 256,192,64808,1,0,0:0:0:20: 2009 | 36,192,64862,1,0,0:0:0:13: 2010 | 109,192,64880,1,0,0:0:0:0: 2011 | 182,192,64898,1,0,0:0:0:0: 2012 | 256,192,64915,1,0,0:0:0:40: 2013 | 329,192,64933,1,0,0:0:0:20: 2014 | 402,192,64933,1,0,0:0:0:20: 2015 | 475,192,64933,1,0,0:0:0:0: 2016 | 182,192,65005,1,0,0:0:0:20: 2017 | 109,192,65005,1,0,0:0:0:20: 2018 | 36,192,65005,1,0,0:0:0:0: 2019 | 475,192,65076,1,0,0:0:0:60:CymbalFSU.wav 2020 | 402,192,65076,1,0,0:0:0:60:KickMid.wav 2021 | 329,192,65076,1,0,0:0:0:8: 2022 | 256,192,65076,1,0,0:0:0:60:DeepBassKick.wav 2023 | 36,192,65219,1,0,0:0:0:20: 2024 | 109,192,65219,1,0,0:0:0:20: 2025 | 182,192,65290,1,0,0:0:0:60:KickMid.wav 2026 | 256,192,65290,1,0,0:0:0:60:DeepBassKick.wav 2027 | 329,192,65290,1,0,0:0:0:8: 2028 | 402,192,65290,1,0,0:0:0:60:CymbalFSU.wav 2029 | 475,192,65433,1,0,0:0:0:20: 2030 | 36,192,65433,1,0,0:0:0:20: 2031 | 109,192,65505,1,0,0:0:0:60:DeepBassKick.wav 2032 | 182,192,65505,1,0,0:0:0:60:CymbalFSU.wav 2033 | 256,192,65505,1,0,0:0:0:8: 2034 | 329,192,65505,1,0,0:0:0:60:KickMid.wav 2035 | 402,192,65648,1,0,0:0:0:20: 2036 | 475,192,65648,1,0,0:0:0:20: 2037 | 182,192,65719,1,0,0:0:0:60:DeepBassKick.wav 2038 | 109,192,65719,1,0,0:0:0:8: 2039 | 36,192,65719,1,0,0:0:0:60:CymbalFSU.wav 2040 | 256,192,65719,1,0,0:0:0:60:KickMid.wav 2041 | 329,192,65862,1,0,0:0:0:20: 2042 | 402,192,65862,1,0,0:0:0:20: 2043 | 182,192,65933,1,0,0:0:0:60:KickMid.wav 2044 | 36,192,65933,1,0,0:0:0:60:CymbalFSU.wav 2045 | 109,192,65933,1,0,0:0:0:60:DeepBassKick.wav 2046 | 475,192,65933,1,0,0:0:0:8: 2047 | 329,192,66076,1,0,0:0:0:20: 2048 | 256,192,66076,1,0,0:0:0:20: 2049 | 475,192,66148,1,0,0:0:0:8: 2050 | 36,192,66148,1,0,0:0:0:60:CymbalFSU.wav 2051 | 402,192,66148,1,0,0:0:0:60:DeepBassKick.wav 2052 | 109,192,66148,1,0,0:0:0:60:KickMid.wav 2053 | 182,192,66290,1,0,0:0:0:20: 2054 | 256,192,66290,1,0,0:0:0:20: 2055 | 402,192,66362,1,0,0:0:0:60:DeepBassKick.wav 2056 | 475,192,66362,1,0,0:0:0:60:KickMid.wav 2057 | 329,192,66362,1,0,0:0:0:60:CymbalFSU.wav 2058 | 36,192,66362,1,0,0:0:0:8: 2059 | 182,192,66505,1,0,0:0:0:20: 2060 | 109,192,66505,1,0,0:0:0:20: 2061 | 402,192,66576,1,0,0:0:0:60:KickMid.wav 2062 | 256,192,66576,1,0,0:0:0:8: 2063 | 475,192,66576,1,0,0:0:0:60:CymbalFSU.wav 2064 | 329,192,66576,1,0,0:0:0:60:DeepBassKick.wav 2065 | 36,192,66719,1,0,0:0:0:20: 2066 | 109,192,66719,1,0,0:0:0:20: 2067 | 256,192,66790,1,0,0:0:0:8: 2068 | 329,192,66790,1,0,0:0:0:8: 2069 | 402,192,66790,1,0,0:0:0:60:KickMid.wav 2070 | 475,192,66790,1,0,0:0:0:8: 2071 | 402,192,67005,1,0,0:0:0:8: 2072 | 329,192,67005,1,0,0:0:0:8: 2073 | 256,192,67005,1,0,0:0:0:60:KickMid.wav 2074 | 182,192,67005,1,0,0:0:0:8: 2075 | 329,192,67219,1,0,0:0:0:8: 2076 | 256,192,67219,1,0,0:0:0:8: 2077 | 182,192,67219,1,0,0:0:0:60:KickMid.wav 2078 | 109,192,67219,1,0,0:0:0:8: 2079 | 256,192,67433,1,0,0:0:0:8: 2080 | 182,192,67433,1,0,0:0:0:60:KickMid.wav 2081 | 109,192,67433,1,0,0:0:0:8: 2082 | 36,192,67433,1,0,0:0:0:8: 2083 | 109,192,67648,128,0,68076:0:0:0:6: 2084 | 36,192,67648,128,0,68076:0:0:0:6: 2085 | 402,192,67648,128,0,68076:0:0:0:60:KickMid.wav 2086 | 475,192,67648,128,0,68076:0:0:0:6: 2087 | 256,192,68076,1,0,0:0:0:13: 2088 | 182,192,68076,1,0,0:0:0:13: 2089 | 329,192,68130,1,0,0:0:0:40: 2090 | 182,192,68183,1,0,0:0:0:40: 2091 | 329,192,68237,1,0,0:0:0:40: 2092 | 182,192,68290,1,0,0:0:0:20: 2093 | 329,192,68344,1,0,0:0:0:20: 2094 | 182,192,68398,1,0,0:0:0:20: 2095 | 329,192,68451,1,0,0:0:0:20: 2096 | 182,192,68505,1,0,0:0:0:60:CymbalFSU.wav 2097 | 109,192,68505,1,0,0:0:0:60:DeepBassKick.wav 2098 | 36,192,68505,1,0,0:0:0:60:KickMid.wav 2099 | 475,192,68505,1,0,0:0:0:0: 2100 | 475,192,68612,1,0,0:0:0:13: 2101 | 402,192,68612,1,0,0:0:0:13: 2102 | 329,192,68665,1,0,0:0:0:40: 2103 | 109,192,68719,1,0,0:0:0:13: 2104 | 36,192,68719,1,0,0:0:0:13: 2105 | 182,192,68773,1,0,0:0:0:40: 2106 | 402,192,68826,1,0,0:0:0:13: 2107 | 329,192,68826,1,0,0:0:0:13: 2108 | 256,192,68880,1,0,0:0:0:40: 2109 | 36,192,68933,1,0,0:0:0:60:KickMid.wav 2110 | 475,192,68933,1,0,0:0:0:10: 2111 | 402,192,68933,1,0,0:0:0:10: 2112 | 109,192,68933,1,0,0:0:0:10: 2113 | 109,192,69040,1,0,0:0:0:10: 2114 | 36,192,69040,1,0,0:0:0:10: 2115 | 402,192,69040,1,0,0:0:0:10: 2116 | 475,192,69040,1,0,0:0:0:60:KickMid.wav 2117 | 36,192,69148,1,0,0:0:0:60:DeepBassKick.wav 2118 | 109,192,69148,1,0,0:0:0:60:CymbalFSU.wav 2119 | 402,192,69148,1,0,0:0:0:10: 2120 | 475,192,69148,1,0,0:0:0:60:KickMid.wav 2121 | 475,192,69362,1,0,0:0:0:60:CymbalFSU.wav 2122 | 402,192,69362,1,0,0:0:0:10: 2123 | 256,192,69362,1,0,0:0:0:60:KickMid.wav 2124 | 182,192,69362,1,0,0:0:0:60:DeepBassKick.wav 2125 | 109,192,69469,1,0,0:0:0:20: 2126 | 36,192,69576,1,0,0:0:0:60:KickMid.wav 2127 | 182,192,69576,1,0,0:0:0:13: 2128 | 329,192,69576,1,0,0:0:0:13: 2129 | 109,192,69683,1,0,0:0:0:8: 2130 | 256,192,69683,1,0,0:0:0:60:CymbalFSU.wav 2131 | 36,192,69683,1,0,0:0:0:60:DeepBassKick.wav 2132 | 329,192,69683,1,0,0:0:0:60:KickMid.wav 2133 | 402,192,69790,1,0,0:0:0:20: 2134 | 329,192,69898,1,0,0:0:0:60:KickMid.wav 2135 | 475,192,69898,1,0,0:0:0:13: 2136 | 182,192,69898,1,0,0:0:0:13: 2137 | 36,192,70005,1,0,0:0:0:10: 2138 | 402,192,70005,1,0,0:0:0:60:KickMid.wav 2139 | 109,192,70032,1,0,0:0:0:40: 2140 | 182,192,70058,1,0,0:0:0:30: 2141 | 256,192,70085,1,0,0:0:0:40: 2142 | 329,192,70112,1,0,0:0:0:13: 2143 | 36,192,70112,1,0,0:0:0:13: 2144 | 402,192,70139,1,0,0:0:0:40: 2145 | 475,192,70165,1,0,0:0:0:40: 2146 | 109,192,70219,1,0,0:0:0:60:KickMid.wav 2147 | 182,192,70219,1,0,0:0:0:13: 2148 | 256,192,70246,1,0,0:0:0:40: 2149 | 329,192,70273,1,0,0:0:0:40: 2150 | 402,192,70299,1,0,0:0:0:40: 2151 | 475,192,70326,1,0,0:0:0:13: 2152 | 36,192,70326,1,0,0:0:0:60:KickMid.wav 2153 | 182,192,70380,1,0,0:0:0:20: 2154 | 256,192,70380,1,0,0:0:0:20: 2155 | 109,192,70433,1,0,0:0:0:13: 2156 | 402,192,70433,1,0,0:0:0:13: 2157 | 329,192,70433,1,0,0:0:0:60:KickMid.wav 2158 | 256,192,70540,1,0,0:0:0:60:DeepBassKick.wav 2159 | 182,192,70540,1,0,0:0:0:8: 2160 | 36,192,70540,1,0,0:0:0:60:CymbalFSU.wav 2161 | 475,192,70540,1,0,0:0:0:60:KickMid.wav 2162 | 402,192,70755,1,0,0:0:0:20: 2163 | 475,192,70755,1,0,0:0:0:60:KickMid.wav 2164 | 329,192,70782,1,0,0:0:0:40: 2165 | 256,192,70808,1,0,0:0:0:40: 2166 | 182,192,70835,1,0,0:0:0:40: 2167 | 109,192,70862,1,0,0:0:0:10: 2168 | 36,192,70862,1,0,0:0:0:10: 2169 | 402,192,70862,1,0,0:0:0:60:KickMid.wav 2170 | 475,192,70862,128,0,71076:0:0:0:10: 2171 | 329,192,71076,1,0,0:0:0:60:KickMid.wav 2172 | 36,192,71076,1,0,0:0:0:60:CymbalFSU.wav 2173 | 256,192,71076,1,0,0:0:0:60:DeepBassKick.wav 2174 | 109,192,71076,1,0,0:0:0:8: 2175 | 182,192,71183,1,0,0:0:0:20: 2176 | 402,192,71183,1,0,0:0:0:20: 2177 | 329,192,71290,1,0,0:0:0:60:KickMid.wav 2178 | 256,192,71290,1,0,0:0:0:60:CymbalFSU.wav 2179 | 36,192,71290,1,0,0:0:0:60:DeepBassKick.wav 2180 | 475,192,71290,1,0,0:0:0:8: 2181 | 182,192,71398,1,0,0:0:0:20: 2182 | 109,192,71398,1,0,0:0:0:20: 2183 | 475,192,71505,1,0,0:0:0:10: 2184 | 256,192,71505,1,0,0:0:0:10: 2185 | 402,192,71505,1,0,0:0:0:60:KickMid.wav 2186 | 329,192,71558,1,0,0:0:0:20: 2187 | 182,192,71558,1,0,0:0:0:20: 2188 | 256,192,71612,1,0,0:0:0:60:CymbalFSU.wav 2189 | 109,192,71612,1,0,0:0:0:60:KickMid.wav 2190 | 36,192,71612,1,0,0:0:0:60:DeepBassKick.wav 2191 | 475,192,71612,1,0,0:0:0:8: 2192 | 329,192,71719,1,0,0:0:0:20: 2193 | 402,192,71719,1,0,0:0:0:20: 2194 | 36,192,71826,1,0,0:0:0:60:KickMid.wav 2195 | 109,192,71826,1,0,0:0:0:10: 2196 | 256,192,71826,1,0,0:0:0:10: 2197 | 182,192,71880,1,0,0:0:0:20: 2198 | 329,192,71880,1,0,0:0:0:20: 2199 | 256,192,71933,1,0,0:0:0:60:DeepBassKick.wav 2200 | 402,192,71933,1,0,0:0:0:60:CymbalFSU.wav 2201 | 36,192,71933,1,0,0:0:0:60:KickMid.wav 2202 | 475,192,71933,128,0,72308:0:0:0:8: 2203 | 182,192,72094,1,0,0:0:0:13: 2204 | 109,192,72094,1,0,0:0:0:13: 2205 | 182,192,72201,1,0,0:0:0:13: 2206 | 109,192,72201,1,0,0:0:0:13: 2207 | 36,192,72362,128,0,72737:0:0:0:60:KickMid.wav 2208 | 182,192,72362,1,0,0:0:0:60:CymbalFSU.wav 2209 | 256,192,72362,1,0,0:0:0:60:DeepBassKick.wav 2210 | 402,192,72362,1,0,0:0:0:8: 2211 | 329,192,72469,1,0,0:0:0:20: 2212 | 475,192,72469,1,0,0:0:0:20: 2213 | 256,192,72523,1,0,0:0:0:13: 2214 | 109,192,72523,1,0,0:0:0:13: 2215 | 36,192,72790,1,0,0:0:0:60:CymbalFSU.wav 2216 | 109,192,72790,1,0,0:0:0:60:DeepBassKick.wav 2217 | 182,192,72790,1,0,0:0:0:60:KickMid.wav 2218 | 402,192,72790,1,0,0:0:0:8: 2219 | 329,192,72898,1,0,0:0:0:40: 2220 | 182,192,73005,1,0,0:0:0:60:KickMid.wav 2221 | 109,192,73005,1,0,0:0:0:8: 2222 | 36,192,73005,1,0,0:0:0:8: 2223 | 475,192,73005,1,0,0:0:0:8: 2224 | 36,192,73112,1,0,0:0:0:60:CymbalFSU.wav 2225 | 329,192,73112,1,0,0:0:0:60:DeepBassKick.wav 2226 | 402,192,73112,1,0,0:0:0:8: 2227 | 475,192,73112,1,0,0:0:0:60:KickMid.wav 2228 | 182,192,73219,1,0,0:0:0:40: 2229 | 109,192,73326,1,0,0:0:0:8: 2230 | 329,192,73326,1,0,0:0:0:8: 2231 | 402,192,73326,1,0,0:0:0:8: 2232 | 475,192,73326,1,0,0:0:0:60:KickMid.wav 2233 | 182,192,73433,1,0,0:0:0:60:KickMid.wav 2234 | 256,192,73433,1,0,0:0:0:20: 2235 | 329,192,73460,1,0,0:0:0:0: 2236 | 402,192,73487,1,0,0:0:0:40: 2237 | 475,192,73514,1,0,0:0:0:0: 2238 | 109,192,73540,1,0,0:0:0:20: 2239 | 182,192,73540,1,0,0:0:0:20: 2240 | 256,192,73567,1,0,0:0:0:0: 2241 | 329,192,73594,1,0,0:0:0:40: 2242 | 36,192,73648,1,0,0:0:0:13: 2243 | 109,192,73648,1,0,0:0:0:13: 2244 | 182,192,73674,1,0,0:0:0:40: 2245 | 256,192,73701,1,0,0:0:0:40: 2246 | 329,192,73728,1,0,0:0:0:40: 2247 | 402,192,73755,1,0,0:0:0:20: 2248 | 475,192,73755,1,0,0:0:0:20: 2249 | 109,192,73808,1,0,0:0:0:20: 2250 | 36,192,73808,1,0,0:0:0:20: 2251 | 402,192,73862,1,0,0:0:0:60:KickMid.wav 2252 | 475,192,73862,1,0,0:0:0:13: 2253 | 329,192,73969,1,0,0:0:0:60:CymbalFSU.wav 2254 | 182,192,73969,1,0,0:0:0:8: 2255 | 36,192,73969,1,0,0:0:0:60:DeepBassKick.wav 2256 | 109,192,73969,1,0,0:0:0:60:KickMid.wav 2257 | 475,192,74183,1,0,0:0:0:60:KickMid.wav 2258 | 402,192,74183,1,0,0:0:0:13: 2259 | 329,192,74210,1,0,0:0:0:40: 2260 | 256,192,74237,1,0,0:0:0:20: 2261 | 182,192,74264,1,0,0:0:0:40: 2262 | 109,192,74290,1,0,0:0:0:20: 2263 | 36,192,74290,128,0,74398:0:0:0:20: 2264 | 36,192,74505,1,0,0:0:0:60:KickMid.wav 2265 | 109,192,74505,1,0,0:0:0:8: 2266 | 256,192,74505,1,0,0:0:0:60:CymbalFSU.wav 2267 | 402,192,74505,1,0,0:0:0:60:DeepBassKick.wav 2268 | 182,192,74612,1,0,0:0:0:40: 2269 | 109,192,74719,1,0,0:0:0:60:CymbalFSU.wav 2270 | 256,192,74719,1,0,0:0:0:60:KickMid.wav 2271 | 402,192,74719,1,0,0:0:0:8: 2272 | 475,192,74719,1,0,0:0:0:60:DeepBassKick.wav 2273 | 329,192,74826,1,0,0:0:0:40: 2274 | 475,192,74933,1,0,0:0:0:60:KickMid.wav 2275 | 109,192,74933,1,0,0:0:0:13: 2276 | 36,192,74933,1,0,0:0:0:13: 2277 | 402,192,74933,1,0,0:0:0:0: 2278 | 182,192,74987,1,0,0:0:0:20: 2279 | 329,192,74987,1,0,0:0:0:20: 2280 | 475,192,75040,1,0,0:0:0:8: 2281 | 36,192,75040,1,0,0:0:0:60:KickMid.wav 2282 | 402,192,75040,1,0,0:0:0:60:DeepBassKick.wav 2283 | 109,192,75040,1,0,0:0:0:60:CymbalFSU.wav 2284 | 256,192,75040,1,0,0:0:0:0: 2285 | 109,192,75255,1,0,0:0:0:60:KickMid.wav 2286 | 402,192,75255,1,0,0:0:0:20: 2287 | 182,192,75255,1,0,0:0:0:0: 2288 | 329,192,75255,1,0,0:0:0:0: 2289 | 182,192,75362,1,0,0:0:0:8: 2290 | 36,192,75362,1,0,0:0:0:60:KickMid.wav 2291 | 256,192,75362,1,0,0:0:0:60:DeepBassKick.wav 2292 | 329,192,75362,1,0,0:0:0:60:CymbalFSU.wav 2293 | 475,192,75362,1,0,0:0:0:8: 2294 | 329,192,75576,1,0,0:0:0:20: 2295 | 402,192,75683,1,0,0:0:0:20: 2296 | 475,192,75790,1,0,0:0:0:13: 2297 | 182,192,75790,1,0,0:0:0:13: 2298 | 109,192,76005,1,0,0:0:0:13: 2299 | 402,192,76005,1,0,0:0:0:13: 2300 | 329,192,76219,1,0,0:0:0:60:KickMid.wav 2301 | 256,192,76219,1,8,0:0:0:50: 2302 | 36,192,76219,1,0,0:0:0:8: 2303 | 475,192,76433,1,0,0:0:0:20: 2304 | 182,192,76648,1,4,0:0:0:30: 2305 | 109,192,76648,1,0,0:0:0:8: 2306 | 475,192,76648,1,0,0:0:0:8: 2307 | 402,192,76862,1,0,0:0:0:20: 2308 | 329,192,77076,1,0,0:0:0:8: 2309 | 109,192,77076,1,8,0:0:0:30: 2310 | 36,192,77076,1,0,0:0:0:8: 2311 | 256,192,77290,1,0,0:0:0:20: 2312 | 109,192,77398,1,0,0:0:0:20: 2313 | 182,192,77505,1,4,0:0:0:50: 2314 | 402,192,77505,1,0,0:0:0:8: 2315 | 475,192,77505,1,0,0:0:0:8: 2316 | 36,192,77719,1,0,0:0:0:20: 2317 | 182,192,77933,1,0,0:0:0:8: 2318 | 256,192,77933,1,0,0:0:0:8: 2319 | 475,192,77933,1,8,0:0:0:50: 2320 | 36,192,78148,1,0,0:0:0:20: 2321 | 182,192,78362,1,0,0:0:0:8: 2322 | 402,192,78362,1,4,0:0:0:50: 2323 | 329,192,78362,1,0,0:0:0:8: 2324 | 256,192,78576,1,0,0:0:0:20: 2325 | 329,192,78683,1,0,0:0:0:20: 2326 | 402,192,78790,1,0,0:0:0:8: 2327 | 182,192,78790,1,8,0:0:0:30: 2328 | 36,192,78790,1,0,0:0:0:8: 2329 | 329,192,79005,1,0,0:0:0:20: 2330 | 256,192,79112,1,0,0:0:0:20: 2331 | 182,192,79219,1,0,0:0:0:8: 2332 | 109,192,79219,1,4,0:0:0:50: 2333 | 36,192,79219,1,0,0:0:0:8: 2334 | 256,192,79433,1,0,0:0:0:20: 2335 | 329,192,79540,1,0,0:0:0:20: 2336 | 402,192,79648,1,0,0:0:0:8: 2337 | 182,192,79648,1,0,0:0:0:8: 2338 | 109,192,79648,1,8,0:0:0:50: 2339 | 256,192,79862,1,0,0:0:0:20: 2340 | 402,192,80076,1,0,0:0:0:8: 2341 | 36,192,80076,1,4,0:0:0:50: 2342 | 182,192,80076,1,0,0:0:0:8: 2343 | 475,192,80290,1,0,0:0:0:20: 2344 | 402,192,80398,1,0,0:0:0:20: 2345 | 329,192,80505,1,8,0:0:0:50: 2346 | 256,192,80505,1,0,0:0:0:8: 2347 | 109,192,80505,1,0,0:0:0:8: 2348 | 402,192,80719,1,0,0:0:0:20: 2349 | 256,192,80933,1,4,0:0:0:50: 2350 | 182,192,80933,1,0,0:0:0:8: 2351 | 36,192,80933,1,0,0:0:0:8: 2352 | 329,192,81148,1,0,0:0:0:20: 2353 | 402,192,81255,1,0,0:0:0:20: 2354 | 475,192,81362,1,0,0:0:0:60:KickMid.wav 2355 | 256,192,81362,1,0,0:0:0:8: 2356 | 182,192,81362,1,0,0:0:0:60:DeepBassKick.wav 2357 | 36,192,81362,1,0,0:0:0:60:CymbalFSU.wav 2358 | 475,192,81576,1,0,0:0:0:60:CymbalFSU.wav 2359 | 402,192,81576,1,0,0:0:0:60:KickMid.wav 2360 | 256,192,81576,1,0,0:0:0:8: 2361 | 182,192,81576,1,0,0:0:0:60:DeepBassKick.wav 2362 | 402,192,81683,1,0,0:0:0:60:DeepBassKick.wav 2363 | 475,192,81683,1,0,0:0:0:60:CymbalFSU.wav 2364 | 109,192,81683,1,0,0:0:0:60:KickMid.wav 2365 | 36,192,81683,1,0,0:0:0:8: 2366 | 256,192,81862,1,0,0:0:0:8: 2367 | 402,192,81862,1,0,0:0:0:60:KickMid.wav 2368 | 329,192,81862,1,0,0:0:0:8: 2369 | 109,192,81933,1,0,0:0:0:13: 2370 | 36,192,81933,1,0,0:0:0:13: 2371 | 182,192,81933,1,0,0:0:0:60:KickMid.wav 2372 | 329,192,82005,1,0,0:0:0:60:KickMid.wav 2373 | 475,192,82005,1,0,0:0:0:13: 2374 | 402,192,82005,1,0,0:0:0:13: 2375 | 256,192,82076,1,0,0:0:0:13: 2376 | 182,192,82076,1,0,0:0:0:60:KickMid.wav 2377 | 109,192,82076,1,0,0:0:0:13: 2378 | 329,192,82148,1,0,0:0:0:13: 2379 | 475,192,82148,1,0,0:0:0:13: 2380 | 402,192,82148,1,0,0:0:0:60:KickMid.wav 2381 | 256,192,82219,1,0,0:0:0:8: 2382 | 109,192,82219,1,0,0:0:0:60:DeepBassKick.wav 2383 | 36,192,82219,1,0,0:0:0:60:KickMid.wav 2384 | 182,192,82219,1,0,0:0:0:60:CymbalFSU.wav 2385 | 182,192,82362,1,0,0:0:0:60:KickMid.wav 2386 | 109,192,82362,1,0,0:0:0:8: 2387 | 36,192,82362,1,0,0:0:0:8: 2388 | 256,192,82433,1,0,0:0:0:8: 2389 | 329,192,82433,1,0,0:0:0:60:KickMid.wav 2390 | 475,192,82433,1,0,0:0:0:60:DeepBassKick.wav 2391 | 402,192,82433,1,0,0:0:0:60:CymbalFSU.wav 2392 | 182,192,82540,1,0,0:0:0:20: 2393 | 109,192,82648,1,0,0:0:0:60:KickMid.wav 2394 | 36,192,82648,1,0,0:0:0:8: 2395 | 402,192,82648,1,0,0:0:0:60:CymbalFSU.wav 2396 | 475,192,82648,1,0,0:0:0:60:DeepBassKick.wav 2397 | 475,192,82862,1,0,0:0:0:60:KickMid.wav 2398 | 402,192,82862,1,0,0:0:0:10: 2399 | 329,192,82862,1,0,0:0:0:10: 2400 | 182,192,82915,1,0,0:0:0:60:KickMid.wav 2401 | 109,192,82915,1,0,0:0:0:13: 2402 | 329,192,82969,1,0,0:0:0:60:KickMid.wav 2403 | 402,192,82969,1,0,0:0:0:13: 2404 | 182,192,83023,1,0,0:0:0:60:KickMid.wav 2405 | 109,192,83023,1,0,0:0:0:13: 2406 | 402,192,83076,1,0,0:0:0:60:KickMid.wav 2407 | 475,192,83076,1,0,0:0:0:60:CymbalFSU.wav 2408 | 256,192,83076,1,0,0:0:0:10: 2409 | 329,192,83076,1,0,0:0:0:60:DeepBassKick.wav 2410 | 109,192,83183,1,0,0:0:0:20: 2411 | 36,192,83183,1,0,0:0:0:20: 2412 | 329,192,83290,1,0,0:0:0:8: 2413 | 402,192,83290,1,0,0:0:0:60:KickMid.wav 2414 | 475,192,83290,1,0,0:0:0:8: 2415 | 182,192,83398,1,0,0:0:0:20: 2416 | 109,192,83398,1,0,0:0:0:20: 2417 | 36,192,83505,1,0,0:0:0:8: 2418 | 402,192,83505,1,0,0:0:0:60:KickMid.wav 2419 | 475,192,83505,1,0,0:0:0:8: 2420 | 256,192,83612,1,0,0:0:0:20: 2421 | 182,192,83612,1,0,0:0:0:20: 2422 | 109,192,83719,1,0,0:0:0:60:KickMid.wav 2423 | 36,192,83719,1,0,0:0:0:8: 2424 | 475,192,83719,1,0,0:0:0:8: 2425 | 329,192,83826,1,0,0:0:0:20: 2426 | 256,192,83826,1,0,0:0:0:20: 2427 | 36,192,83933,128,0,84362:0:0:0:10: 2428 | 475,192,83933,1,0,0:0:0:10: 2429 | 109,192,84148,128,0,84362:0:0:0:10: 2430 | 402,192,84148,1,0,0:0:0:10: 2431 | 182,192,84255,128,0,84362:0:0:0:10: 2432 | 329,192,84255,1,0,0:0:0:10: 2433 | 256,192,84362,1,0,0:0:0:10: 2434 | 475,192,84362,1,0,0:0:0:10: 2435 | 256,192,84576,1,0,0:0:0:10: 2436 | 36,192,84576,1,0,0:0:0:10: 2437 | 36,192,84790,1,0,0:0:0:60:KickMid.wav 2438 | 109,192,84790,1,0,0:0:0:60:DeepBassKick.wav 2439 | 475,192,84790,1,0,0:0:0:60:CymbalFSU.wav 2440 | 182,192,84817,1,0,0:0:0:0: 2441 | 256,192,84844,1,0,0:0:0:0: 2442 | 329,192,84871,1,0,0:0:0:0: 2443 | 402,192,84898,1,0,0:0:0:20: 2444 | 36,192,85005,1,0,0:0:0:60:KickMid.wav 2445 | 182,192,85005,1,0,0:0:0:8: 2446 | 475,192,85005,1,0,0:0:0:8: 2447 | 256,192,85005,1,0,0:0:0:8: 2448 | 329,192,85112,1,0,0:0:0:20: 2449 | 402,192,85112,1,0,0:0:0:20: 2450 | 475,192,85219,128,0,85433:0:0:0:60:KickMid.wav 2451 | 109,192,85219,1,0,0:0:0:8: 2452 | 36,192,85219,1,0,0:0:0:8: 2453 | 402,192,85326,1,0,0:0:0:60:KickMid.wav 2454 | 329,192,85326,1,0,0:0:0:20: 2455 | 109,192,85380,1,0,0:0:0:60:KickMid.wav 2456 | 182,192,85380,1,0,0:0:0:0: 2457 | 329,192,85433,128,0,85648:0:0:0:10: 2458 | 402,192,85433,1,0,0:0:0:60:KickMid.wav 2459 | 256,192,85433,1,0,0:0:0:10: 2460 | 109,192,85540,1,0,0:0:0:13: 2461 | 36,192,85540,1,0,0:0:0:60:KickMid.wav 2462 | 182,192,85594,1,0,0:0:0:60:KickMid.wav 2463 | 256,192,85594,1,0,0:0:0:0: 2464 | 109,192,85648,1,0,0:0:0:8: 2465 | 36,192,85648,1,0,0:0:0:60:KickMid.wav 2466 | 402,192,85648,1,0,0:0:0:60:DeepBassKick.wav 2467 | 475,192,85648,1,0,0:0:0:60:CymbalFSU.wav 2468 | 109,192,85808,1,0,0:0:0:8: 2469 | 36,192,85808,1,0,0:0:0:60:DeepBassKick.wav 2470 | 402,192,85808,1,0,0:0:0:60:KickMid.wav 2471 | 475,192,85808,1,0,0:0:0:60:CymbalFSU.wav 2472 | 402,192,85969,1,0,0:0:0:60:CymbalFSU.wav 2473 | 329,192,85969,1,0,0:0:0:60:DeepBassKick.wav 2474 | 182,192,85969,1,0,0:0:0:60:KickMid.wav 2475 | 109,192,85969,1,0,0:0:0:8: 2476 | 182,192,86076,1,0,0:0:0:60:CymbalFSU.wav 2477 | 109,192,86076,1,0,0:0:0:8: 2478 | 329,192,86076,1,0,0:0:0:60:DeepBassKick.wav 2479 | 402,192,86076,1,0,0:0:0:60:KickMid.wav 2480 | 402,192,86183,1,0,0:0:0:60:CymbalFSU.wav 2481 | 329,192,86183,1,0,0:0:0:60:DeepBassKick.wav 2482 | 182,192,86183,1,0,0:0:0:8: 2483 | 109,192,86183,1,0,0:0:0:60:KickMid.wav 2484 | 402,192,86290,1,0,0:0:0:8: 2485 | 475,192,86290,1,0,0:0:0:8: 2486 | 256,192,86290,1,0,0:0:0:60:KickMid.wav 2487 | 329,192,86344,1,0,0:0:0:20: 2488 | 182,192,86398,1,0,0:0:0:10: 2489 | 109,192,86398,1,0,0:0:0:10: 2490 | 36,192,86398,1,0,0:0:0:60:KickMid.wav 2491 | 256,192,86424,1,0,0:0:0:40: 2492 | 329,192,86451,1,0,0:0:0:40: 2493 | 402,192,86478,1,0,0:0:0:40: 2494 | 475,192,86505,1,0,0:0:0:60:KickMid.wav 2495 | 182,192,86505,1,0,0:0:0:60:DeepBassKick.wav 2496 | 109,192,86505,1,0,0:0:0:8: 2497 | 36,192,86505,1,0,0:0:0:60:CymbalFSU.wav 2498 | 256,192,86612,1,0,0:0:0:20: 2499 | 36,192,86719,128,0,86933:0:0:0:13: 2500 | 329,192,86719,1,0,0:0:0:13: 2501 | 402,192,86719,1,0,0:0:0:13: 2502 | 402,192,86826,1,0,0:0:0:13: 2503 | 329,192,86826,1,0,0:0:0:13: 2504 | 182,192,86933,128,0,87148:0:0:0:10: 2505 | 329,192,86933,1,0,0:0:0:10: 2506 | 402,192,86933,1,0,0:0:0:10: 2507 | 475,192,87148,128,0,87362:0:0:0:10: 2508 | 256,192,87148,1,0,0:0:0:10: 2509 | 109,192,87148,1,0,0:0:0:60:KickMid.wav 2510 | 36,192,87148,1,0,0:0:0:10: 2511 | 329,192,87255,128,0,87362:0:0:0:10: 2512 | 256,192,87362,128,0,87576:0:0:0:10: 2513 | 182,192,87362,1,0,0:0:0:60:KickMid.wav 2514 | 109,192,87362,1,0,0:0:0:10: 2515 | 402,192,87362,1,0,0:0:0:10: 2516 | 329,192,87469,1,0,0:0:0:13: 2517 | 475,192,87469,1,0,0:0:0:13: 2518 | 182,192,87523,1,0,0:0:0:20: 2519 | 36,192,87523,1,0,0:0:0:20: 2520 | 402,192,87576,128,0,87790:0:0:0:13: 2521 | 329,192,87576,1,0,0:0:0:13: 2522 | 36,192,87790,1,0,0:0:0:60:KickMid.wav 2523 | 329,192,87790,1,0,0:0:0:10: 2524 | 475,192,87790,1,0,0:0:0:10: 2525 | 109,192,87817,1,0,0:0:0:40: 2526 | 182,192,87844,1,0,0:0:0:40: 2527 | 256,192,87871,1,0,0:0:0:40: 2528 | 329,192,87898,1,0,0:0:0:40: 2529 | 402,192,87924,1,0,0:0:0:40: 2530 | 475,192,87951,1,0,0:0:0:40: 2531 | 36,192,88005,1,0,0:0:0:20: 2532 | 109,192,88023,1,0,0:0:0:0: 2533 | 182,192,88040,1,0,0:0:0:0: 2534 | 256,192,88058,1,0,0:0:0:40: 2535 | 329,192,88076,1,0,0:0:0:0: 2536 | 402,192,88094,1,0,0:0:0:0: 2537 | 475,192,88112,1,0,0:0:0:40: 2538 | 36,192,88130,1,0,0:0:0:0: 2539 | 109,192,88148,1,0,0:0:0:0: 2540 | 182,192,88165,1,0,0:0:0:40: 2541 | 256,192,88219,1,0,0:0:0:60:DeepBassKick.wav 2542 | 329,192,88219,1,0,0:0:0:60:KickMid.wav 2543 | 402,192,88219,1,0,0:0:0:60:CymbalFSU.wav 2544 | 475,192,88219,1,0,0:0:0:10: 2545 | 109,192,88326,1,0,0:0:0:20: 2546 | 36,192,88326,1,0,0:0:0:20: 2547 | 182,192,88433,1,0,0:0:0:60:CymbalFSU.wav 2548 | 256,192,88433,1,0,0:0:0:8: 2549 | 329,192,88433,1,0,0:0:0:60:KickMid.wav 2550 | 402,192,88433,1,0,0:0:0:60:DeepBassKick.wav 2551 | 475,192,88540,1,0,0:0:0:20: 2552 | 109,192,88540,1,0,0:0:0:20: 2553 | 329,192,88648,128,0,88755:0:0:0:10: 2554 | 36,192,88648,1,0,0:0:0:60:KickMid.wav 2555 | 256,192,88648,1,0,0:0:0:10: 2556 | 475,192,88755,128,0,88862:0:0:0:60:KickMid.wav 2557 | 182,192,88755,1,0,0:0:0:10: 2558 | 402,192,88755,1,0,0:0:0:10: 2559 | 36,192,88862,128,0,88969:0:0:0:10: 2560 | 329,192,88862,1,0,0:0:0:60:KickMid.wav 2561 | 109,192,88862,1,0,0:0:0:10: 2562 | 256,192,88969,1,0,0:0:0:60:KickMid.wav 2563 | 182,192,88969,128,0,89076:0:0:0:10: 2564 | 475,192,88969,1,0,0:0:0:10: 2565 | 329,192,89076,1,0,0:0:0:60:KickMid.wav 2566 | 402,192,89076,1,0,0:0:0:60:DeepBassKick.wav 2567 | 109,192,89076,1,0,0:0:0:60:CymbalFSU.wav 2568 | 36,192,89076,1,0,0:0:0:8: 2569 | 109,192,89290,1,0,0:0:0:8: 2570 | 182,192,89290,1,0,0:0:0:60:KickMid.wav 2571 | 402,192,89290,1,0,0:0:0:60:CymbalFSU.wav 2572 | 475,192,89290,1,0,0:0:0:60:DeepBassKick.wav 2573 | 36,192,89505,1,0,0:0:0:60:CymbalFSU.wav 2574 | 109,192,89505,1,0,0:0:0:60:KickMid.wav 2575 | 402,192,89505,1,0,0:0:0:60:DeepBassKick.wav 2576 | 475,192,89505,1,0,0:0:0:8: 2577 | 182,192,89558,1,0,0:0:0:20: 2578 | 256,192,89612,1,0,0:0:0:20: 2579 | 329,192,89665,1,0,0:0:0:20: 2580 | 475,192,89719,1,0,0:0:0:13: 2581 | 402,192,89719,1,0,0:0:0:13: 2582 | 109,192,89773,1,0,0:0:0:13: 2583 | 36,192,89773,1,0,0:0:0:13: 2584 | 402,192,89826,1,0,0:0:0:13: 2585 | 475,192,89826,1,0,0:0:0:13: 2586 | 109,192,89880,1,0,0:0:0:13: 2587 | 36,192,89880,1,0,0:0:0:13: 2588 | 475,192,89933,128,0,90790:0:0:0:13: 2589 | 329,192,89933,1,0,0:0:0:13: 2590 | 402,192,89933,1,0,0:0:0:13: 2591 | 256,192,90040,1,0,0:0:0:20: 2592 | 402,192,90148,1,0,0:0:0:20: 2593 | 329,192,90148,1,0,0:0:0:20: 2594 | 182,192,90255,1,0,0:0:0:20: 2595 | 329,192,90362,1,0,0:0:0:20: 2596 | 402,192,90362,1,0,0:0:0:20: 2597 | 109,192,90469,1,0,0:0:0:20: 2598 | 329,192,90576,1,0,0:0:0:20: 2599 | 402,192,90576,1,0,0:0:0:20: 2600 | 36,192,90683,1,0,0:0:0:20: 2601 | 256,192,90790,128,0,90844:0:0:0:8: 2602 | 182,192,90790,128,0,90844:0:0:0:8: 2603 | 329,192,90898,128,0,90951:0:0:0:10: 2604 | 402,192,90898,128,0,90951:0:0:0:10: 2605 | 182,192,91005,128,0,91058:0:0:0:8: 2606 | 109,192,91005,128,0,91058:0:0:0:8: 2607 | 36,192,91005,128,0,91058:0:0:0:8: 2608 | 329,192,91112,128,0,91165:0:0:0:10: 2609 | 402,192,91112,128,0,91165:0:0:0:10: 2610 | 182,192,91219,128,0,91273:0:0:0:8: 2611 | 109,192,91219,128,0,91273:0:0:0:8: 2612 | 36,192,91219,128,0,91273:0:0:0:8: 2613 | 402,192,91326,128,0,91380:0:0:0:10: 2614 | 329,192,91326,128,0,91380:0:0:0:10: 2615 | 36,192,91433,128,0,91487:0:0:0:8: 2616 | 109,192,91433,128,0,91487:0:0:0:8: 2617 | 182,192,91433,128,0,91487:0:0:0:8: 2618 | 329,192,91540,128,0,91594:0:0:0:10: 2619 | 402,192,91540,128,0,91594:0:0:0:10: 2620 | 256,192,91648,1,0,0:0:0:8: 2621 | 182,192,91648,1,0,0:0:0:8: 2622 | 109,192,91648,1,0,0:0:0:8: 2623 | 36,192,91648,1,0,0:0:0:60:KickMid.wav 2624 | 329,192,91755,1,0,0:0:0:8: 2625 | 402,192,91755,1,0,0:0:0:8: 2626 | 475,192,91755,128,0,92076:0:0:0:8: 2627 | 256,192,92076,1,0,0:0:0:8: 2628 | 182,192,92076,1,0,0:0:0:8: 2629 | 109,192,92076,1,0,0:0:0:8: 2630 | 36,192,92076,1,0,0:0:0:60:KickMid.wav 2631 | 402,192,92183,128,0,92505:0:0:0:8: 2632 | 329,192,92183,1,0,0:0:0:8: 2633 | 475,192,92183,128,0,92505:0:0:0:8: 2634 | 256,192,92505,1,0,0:0:0:8: 2635 | 182,192,92505,1,0,0:0:0:8: 2636 | 109,192,92505,1,0,0:0:0:8: 2637 | 36,192,92505,1,0,0:0:0:60:KickMid.wav 2638 | 329,192,92612,128,0,92880:0:0:0:8: 2639 | 402,192,92612,128,0,92880:0:0:0:8: 2640 | 475,192,92612,128,0,92880:0:0:0:8: 2641 | 36,192,92612,1,0,0:0:0:8: 2642 | 109,192,92719,1,0,0:0:0:20: 2643 | 182,192,92826,1,0,0:0:0:20: 2644 | 36,192,92933,128,0,93362:0:0:0:8: 2645 | 329,192,92933,128,0,93040:0:0:0:0: 2646 | 402,192,92933,128,0,93148:0:0:0:0: 2647 | 475,192,92933,128,0,93255:0:0:0:0: 2648 | 182,192,93362,1,0,0:0:0:13: 2649 | 329,192,93362,1,0,0:0:0:13: 2650 | 475,192,93362,1,0,0:0:0:60:KickMid.wav 2651 | 182,192,93790,1,0,0:0:0:60:DeepBassKick.wav 2652 | 109,192,93790,1,0,0:0:0:60:CymbalFSU.wav 2653 | 36,192,93790,128,0,94326:0:0:0:60:KickMid.wav 2654 | 475,192,94112,128,0,94326:0:0:0:13: 2655 | 329,192,94112,1,0,0:0:0:13: 2656 | 402,192,94112,1,0,0:0:0:13: 2657 | 36,192,94433,128,0,95076:0:0:0:20: 2658 | 109,192,94433,1,0,0:0:0:60:KickMid.wav 2659 | 402,192,94433,1,0,0:0:0:0: 2660 | 109,192,94648,128,0,94862:0:0:0:40: 2661 | 182,192,94755,128,0,94862:0:0:0:40: 2662 | 256,192,94862,128,0,95076:0:0:0:40: 2663 | 329,192,94969,128,0,95076:0:0:0:40: 2664 | 475,192,95076,1,0,0:0:0:13: 2665 | 402,192,95076,1,0,0:0:0:60:KickMid.wav 2666 | 182,192,95112,1,0,0:0:0:20: 2667 | 109,192,95112,1,0,0:0:0:60:KickMid.wav 2668 | 256,192,95148,1,0,0:0:0:20: 2669 | 329,192,95148,1,0,0:0:0:60:KickMid.wav 2670 | 109,192,95219,1,0,0:0:0:13: 2671 | 36,192,95219,1,0,0:0:0:60:KickMid.wav 2672 | 256,192,95290,1,0,0:0:0:10: 2673 | 329,192,95290,1,0,0:0:0:10: 2674 | 402,192,95290,1,0,0:0:0:60:KickMid.wav 2675 | 109,192,95398,1,0,0:0:0:10: 2676 | 182,192,95398,1,0,0:0:0:10: 2677 | 256,192,95398,1,0,0:0:0:60:KickMid.wav 2678 | 109,192,95505,1,0,0:0:0:8: 2679 | 402,192,95505,1,0,0:0:0:8: 2680 | 475,192,95505,1,0,0:0:0:60:KickMid.wav 2681 | 36,192,95505,1,0,0:0:0:8: 2682 | 182,192,95612,1,0,0:0:0:20: 2683 | 256,192,95612,1,0,0:0:0:60:KickMid.wav 2684 | 329,192,95612,1,0,0:0:0:0: 2685 | 109,192,95719,1,0,0:0:0:60:KickMid.wav 2686 | 36,192,95719,1,0,0:0:0:8: 2687 | 402,192,95719,1,0,0:0:0:8: 2688 | 475,192,95719,1,0,0:0:0:8: 2689 | 329,192,95826,1,0,0:0:0:20: 2690 | 256,192,95826,1,0,0:0:0:60:KickMid.wav 2691 | 182,192,95826,1,0,0:0:0:0: 2692 | 256,192,96148,1,0,0:0:0:8: 2693 | 109,192,96148,1,0,0:0:0:60:KickMid.wav 2694 | 475,192,96148,1,0,0:0:0:60:CymbalFSU.wav 2695 | 402,192,96148,1,0,0:0:0:60:DeepBassKick.wav 2696 | 402,192,96469,1,0,0:0:0:60:CymbalFSU.wav 2697 | 256,192,96469,1,0,0:0:0:60:DeepBassKick.wav 2698 | 109,192,96469,1,0,0:0:0:8: 2699 | 36,192,96469,1,0,0:0:0:60:KickMid.wav 2700 | 36,192,96790,1,0,0:0:0:60:KickMid.wav 2701 | 109,192,96790,1,0,0:0:0:10: 2702 | 475,192,96790,1,0,0:0:0:10: 2703 | 402,192,96817,1,0,0:0:0:40: 2704 | 329,192,96844,1,0,0:0:0:40: 2705 | 256,192,96871,1,0,0:0:0:40: 2706 | 182,192,96898,1,0,0:0:0:60:KickMid.wav 2707 | 109,192,96898,1,0,0:0:0:20: 2708 | 402,192,96951,1,0,0:0:0:20: 2709 | 475,192,96951,1,0,0:0:0:60:KickMid.wav 2710 | 329,192,97005,1,0,0:0:0:10: 2711 | 256,192,97005,1,0,0:0:0:10: 2712 | 36,192,97005,1,0,0:0:0:60:KickMid.wav 2713 | 182,192,97112,128,0,97433:0:0:0:40: 2714 | 329,192,97219,1,0,0:0:0:20: 2715 | 402,192,97219,1,0,0:0:0:20: 2716 | 402,192,97433,1,0,0:0:0:20: 2717 | 329,192,97433,1,0,0:0:0:20: 2718 | 36,192,97540,1,0,0:0:0:60:DeepBassKick.wav 2719 | 475,192,97540,1,0,0:0:0:60:CymbalFSU.wav 2720 | 256,192,97540,1,0,0:0:0:60:KickMid.wav 2721 | 402,192,97540,1,0,0:0:0:8: 2722 | 475,192,97862,1,0,0:0:0:60:DeepBassKick.wav 2723 | 329,192,97862,1,0,0:0:0:60:CymbalFSU.wav 2724 | 182,192,97862,1,0,0:0:0:60:KickMid.wav 2725 | 36,192,97862,1,0,0:0:0:8: 2726 | 256,192,98183,1,0,0:0:0:60:KickMid.wav 2727 | 109,192,98183,1,0,0:0:0:60:DeepBassKick.wav 2728 | 36,192,98183,1,0,0:0:0:8: 2729 | 475,192,98183,1,0,0:0:0:60:CymbalFSU.wav 2730 | 36,192,98505,128,0,98719:0:0:0:13: 2731 | 109,192,98558,128,0,98719:0:0:0:40: 2732 | 182,192,98612,128,0,98719:0:0:0:40: 2733 | 256,192,98665,128,0,98719:0:0:0:40: 2734 | 475,192,98719,128,0,98933:0:0:0:40: 2735 | 402,192,98773,128,0,98933:0:0:0:40: 2736 | 329,192,98826,128,0,98933:0:0:0:40: 2737 | 256,192,98880,128,0,98933:0:0:0:40: 2738 | 36,192,98933,1,0,0:0:0:20: 2739 | 109,192,98987,1,0,0:0:0:20: 2740 | 182,192,99040,1,0,0:0:0:20: 2741 | 256,192,99094,1,0,0:0:0:20: 2742 | 329,192,99148,1,0,0:0:0:20: 2743 | 402,192,99201,1,0,0:0:0:20: 2744 | 475,192,99255,1,0,0:0:0:60:DeepBassKick.wav 2745 | 182,192,99255,1,0,0:0:0:10: 2746 | 109,192,99255,1,0,0:0:0:60:KickMid.wav 2747 | 36,192,99255,1,0,0:0:0:10: 2748 | 36,192,99362,1,0,0:0:0:10: 2749 | 182,192,99362,1,0,0:0:0:60:DeepBassKick.wav 2750 | 109,192,99362,1,0,0:0:0:60:KickMid.wav 2751 | 475,192,99362,1,0,0:0:0:10: 2752 | 402,192,99576,1,0,0:0:0:10: 2753 | 329,192,99576,1,0,0:0:0:60:DeepBassKick.wav 2754 | 256,192,99576,1,0,0:0:0:10: 2755 | 182,192,99576,1,0,0:0:0:60:KickMid.wav 2756 | 182,192,99898,1,0,0:0:0:60:CymbalFSU.wav 2757 | 109,192,99898,1,0,0:0:0:60:DeepBassKick.wav 2758 | 402,192,99898,1,0,0:0:0:10: 2759 | 475,192,99898,1,0,0:0:0:60:KickMid.wav 2760 | 329,192,100005,1,0,0:0:0:20: 2761 | 256,192,100005,1,0,0:0:0:20: 2762 | 475,192,100219,1,0,0:0:0:10: 2763 | 36,192,100219,1,0,0:0:0:60:KickMid.wav 2764 | 182,192,100219,1,0,0:0:0:10: 2765 | 402,192,100326,1,0,0:0:0:20: 2766 | 256,192,100326,1,0,0:0:0:60:KickMid.wav 2767 | 329,192,100326,1,0,0:0:0:0: 2768 | 182,192,100380,1,0,0:0:0:60:KickMid.wav 2769 | 109,192,100380,1,0,0:0:0:20: 2770 | 36,192,100380,1,0,0:0:0:0: 2771 | 329,192,100433,1,0,0:0:0:60:KickMid.wav 2772 | 475,192,100433,1,0,0:0:0:13: 2773 | 402,192,100433,1,0,0:0:0:13: 2774 | 256,192,100540,1,0,0:0:0:10: 2775 | 182,192,100540,1,0,0:0:0:10: 2776 | 109,192,100540,1,0,0:0:0:60:KickMid.wav 2777 | 475,192,100755,1,0,0:0:0:13: 2778 | 402,192,100755,1,0,0:0:0:13: 2779 | 475,192,100862,128,0,101076:0:0:0:13: 2780 | 402,192,100862,128,0,101076:0:0:0:13: 2781 | 329,192,100969,1,0,0:0:0:40: 2782 | 256,192,100969,1,0,0:0:0:0: 2783 | 182,192,101076,128,0,101290:0:0:0:13: 2784 | 109,192,101076,1,0,0:0:0:13: 2785 | 36,192,101290,128,0,101505:0:0:0:60:KickMid.wav 2786 | 256,192,101290,1,0,0:0:0:10: 2787 | 329,192,101290,1,0,0:0:0:10: 2788 | 182,192,101505,1,0,0:0:0:40: 2789 | 256,192,101612,128,0,101826:0:0:0:10: 2790 | 109,192,101612,128,0,101826:0:0:0:10: 2791 | 402,192,101612,1,0,0:0:0:60:KickMid.wav 2792 | 182,192,101933,1,0,0:0:0:13: 2793 | 475,192,101933,1,0,0:0:0:60:CymbalFSU.wav 2794 | 36,192,101933,1,0,0:0:0:13: 2795 | 256,192,101987,1,0,0:0:0:0: 2796 | 329,192,102040,1,0,0:0:0:0: 2797 | 402,192,102094,1,0,0:0:0:0: 2798 | 475,192,102148,128,0,102255:0:0:0:13: 2799 | 256,192,102148,128,0,102255:0:0:0:13: 2800 | 109,192,102255,1,0,0:0:0:20: 2801 | 36,192,102255,1,0,0:0:0:60:KickMid.wav 2802 | 256,192,102362,128,0,102469:0:0:0:13: 2803 | 475,192,102362,128,0,102469:0:0:0:13: 2804 | 182,192,102469,1,0,0:0:0:60:KickMid.wav 2805 | 109,192,102469,1,0,0:0:0:13: 2806 | 36,192,102469,1,0,0:0:0:13: 2807 | 256,192,102576,128,0,102683:0:0:0:13: 2808 | 475,192,102576,128,0,102683:0:0:0:13: 2809 | 329,192,102683,128,0,102898:0:0:0:60:KickMid.wav 2810 | 182,192,102683,128,0,102898:0:0:0:8: 2811 | 109,192,102683,1,0,0:0:0:8: 2812 | 402,192,102683,1,0,0:0:0:8: 2813 | 256,192,102898,1,0,0:0:0:0: 2814 | 182,192,103005,128,0,103219:0:0:0:60:KickMid.wav 2815 | 329,192,103005,128,0,103219:0:0:0:8: 2816 | 475,192,103005,1,0,0:0:0:8: 2817 | 36,192,103005,1,0,0:0:0:8: 2818 | 256,192,103219,1,0,0:0:0:0: 2819 | 109,192,103326,1,0,0:0:0:8: 2820 | 36,192,103326,1,0,0:0:0:60:KickMid.wav 2821 | 402,192,103326,1,0,0:0:0:8: 2822 | 475,192,103326,1,0,0:0:0:8: 2823 | 475,192,103433,1,0,0:0:0:8: 2824 | 329,192,103433,1,0,0:0:0:60:KickMid.wav 2825 | 182,192,103433,1,0,0:0:0:60:CymbalFSU.wav 2826 | 36,192,103433,1,0,0:0:0:60:DeepBassKick.wav 2827 | 256,192,103648,128,0,104290:0:0:0:60:DeepBassKick.wav 2828 | 402,192,103648,1,0,0:0:0:6: 2829 | 109,192,103648,1,0,0:0:0:60:KickMid.wav 2830 | 182,192,103648,128,0,103862:0:0:0:60:CymbalFSU.wav 2831 | 329,192,103862,128,0,104076:0:0:0:20: 2832 | 109,192,103969,1,0,0:0:0:20: 2833 | 402,192,103969,1,0,0:0:0:20: 2834 | 182,192,104076,128,0,104290:0:0:0:20: 2835 | 109,192,104290,1,0,0:0:0:8: 2836 | 402,192,104290,1,0,0:0:0:8: 2837 | 36,192,104505,1,0,0:0:0:60:KickMid.wav 2838 | 109,192,104505,1,0,0:0:0:8: 2839 | 475,192,104505,1,0,0:0:0:8: 2840 | 402,192,104576,1,0,0:0:0:20: 2841 | 329,192,104576,1,0,0:0:0:20: 2842 | 182,192,104648,1,0,0:0:0:20: 2843 | 256,192,104648,1,0,0:0:0:20: 2844 | 36,192,104719,1,0,0:0:0:8: 2845 | 402,192,104719,1,0,0:0:0:8: 2846 | 475,192,104719,1,0,0:0:0:60:KickMid.wav 2847 | 329,192,104790,1,0,0:0:0:20: 2848 | 256,192,104790,1,0,0:0:0:20: 2849 | 182,192,104862,1,0,0:0:0:20: 2850 | 109,192,104862,1,0,0:0:0:20: 2851 | 402,192,104933,1,0,0:0:0:10: 2852 | 329,192,104933,1,0,0:0:0:10: 2853 | 256,192,105040,1,0,0:0:0:13: 2854 | 182,192,105040,1,0,0:0:0:13: 2855 | 36,192,105040,1,0,0:0:0:60:KickMid.wav 2856 | 109,192,105148,1,0,0:0:0:10: 2857 | 256,192,105148,1,0,0:0:0:10: 2858 | 329,192,105148,1,0,0:0:0:60:KickMid.wav 2859 | 182,192,105255,1,0,0:0:0:10: 2860 | 329,192,105255,1,0,0:0:0:10: 2861 | 402,192,105255,1,0,0:0:0:60:KickMid.wav 2862 | 256,192,105362,1,0,0:0:0:60:KickMid.wav 2863 | 402,192,105362,1,0,0:0:0:60:CymbalFSU.wav 2864 | 475,192,105362,1,0,0:0:0:60:DeepBassKick.wav 2865 | 36,192,105389,1,0,0:0:0:0: 2866 | 109,192,105415,1,0,0:0:0:0: 2867 | 182,192,105442,1,0,0:0:0:0: 2868 | 475,192,105469,1,0,0:0:0:0: 2869 | 402,192,105496,1,0,0:0:0:0: 2870 | 329,192,105523,1,0,0:0:0:0: 2871 | 256,192,105549,1,0,0:0:0:0: 2872 | 182,192,105576,1,0,0:0:0:0: 2873 | 36,192,105576,1,0,0:0:0:0: 2874 | 475,192,105612,1,0,0:0:0:0: 2875 | 402,192,105648,1,0,0:0:0:0: 2876 | 329,192,105683,1,0,0:0:0:0: 2877 | 109,192,105683,1,0,0:0:0:0: 2878 | 182,192,105737,1,0,0:0:0:0: 2879 | 36,192,105790,1,0,0:0:0:60:KickMid.wav 2880 | 256,192,105790,1,0,0:0:0:10: 2881 | 402,192,105790,1,0,0:0:0:0: 2882 | 256,192,106005,1,0,0:0:0:60:KickMid.wav 2883 | 475,192,106005,1,0,0:0:0:10: 2884 | 109,192,106005,1,0,0:0:0:0: 2885 | 402,192,106433,128,0,106755:0:0:0:60:DeepBassKick.wav 2886 | 475,192,106433,128,0,106755:0:0:0:8: 2887 | 329,192,106433,1,0,0:0:0:60:CymbalFSU.wav 2888 | 256,192,106433,1,0,0:0:0:60:KickMid.wav 2889 | 329,192,106755,128,0,107076:0:0:0:60:DeepBassKick.wav 2890 | 256,192,106755,128,0,107076:0:0:0:8: 2891 | 182,192,106755,1,0,0:0:0:60:CymbalFSU.wav 2892 | 109,192,106755,1,0,0:0:0:60:KickMid.wav 2893 | 182,192,107076,128,0,107290:0:0:0:60:DeepBassKick.wav 2894 | 109,192,107076,128,0,107290:0:0:0:8: 2895 | 36,192,107076,1,0,0:0:0:60:CymbalFSU.wav 2896 | 475,192,107076,1,0,0:0:0:60:KickMid.wav 2897 | 402,192,107290,1,0,0:0:0:20: 2898 | 329,192,107290,1,0,0:0:0:60:KickMid.wav 2899 | 182,192,107398,1,0,0:0:0:20: 2900 | 109,192,107398,1,0,0:0:0:20: 2901 | 256,192,107719,1,0,0:0:0:10: 2902 | 182,192,107719,1,0,0:0:0:10: 2903 | 109,192,107933,1,0,0:0:0:60:DeepBassKick.wav 2904 | 36,192,107933,1,0,0:0:0:60:KickMid.wav 2905 | 475,192,107933,1,0,0:0:0:60:CymbalFSU.wav 2906 | 256,192,107933,128,0,108255:0:0:0:10: 2907 | 329,192,108255,128,0,108576:0:0:0:40: 2908 | 109,192,108255,1,0,0:0:0:0: 2909 | 402,192,108576,128,0,108683:0:0:0:13: 2910 | 182,192,108576,1,0,0:0:0:13: 2911 | 256,192,108683,1,0,0:0:0:20: 2912 | 109,192,109005,1,0,0:0:0:60:CymbalFSU.wav 2913 | 36,192,109005,1,0,0:0:0:8: 2914 | 475,192,109005,1,0,0:0:0:60:KickMid.wav 2915 | 402,192,109005,1,0,0:0:0:60:DeepBassKick.wav 2916 | 329,192,109058,1,0,0:0:0:40: 2917 | 256,192,109112,1,0,0:0:0:40: 2918 | 182,192,109165,1,0,0:0:0:40: 2919 | 329,192,109219,1,0,0:0:0:40: 2920 | 256,192,109273,1,0,0:0:0:40: 2921 | 182,192,109326,1,0,0:0:0:40: 2922 | 109,192,109380,1,0,0:0:0:40: 2923 | 256,192,109433,1,0,0:0:0:40: 2924 | 182,192,109487,1,0,0:0:0:40: 2925 | 109,192,109540,1,0,0:0:0:40: 2926 | 36,192,109594,1,0,0:0:0:40: 2927 | 475,192,109648,128,0,116505:0:0:0:13: 2928 | 329,192,109648,1,0,0:0:0:60:KickMid.wav 2929 | 402,192,109648,1,0,0:0:0:60:DeepBassKick.wav 2930 | 182,192,110076,1,0,0:0:0:60:DeepBassKick.wav 2931 | 109,192,110076,1,0,0:0:0:20: 2932 | 256,192,110290,1,0,0:0:0:40: 2933 | 109,192,110505,1,8,0:0:0:50: 2934 | 36,192,110505,1,0,0:0:0:20: 2935 | 329,192,110933,1,0,0:0:0:40: 2936 | 182,192,111148,1,0,0:0:0:60:DeepBassKick.wav 2937 | 109,192,111148,1,0,0:0:0:20: 2938 | 256,192,111362,1,0,0:0:0:60:KickMid.wav 2939 | 402,192,111362,1,0,0:0:0:13: 2940 | 182,192,111790,1,0,0:0:0:60:DeepBassKick.wav 2941 | 109,192,111790,1,0,0:0:0:20: 2942 | 329,192,112005,1,0,0:0:0:40: 2943 | 109,192,112219,1,0,0:0:0:20: 2944 | 36,192,112219,1,8,0:0:0:50: 2945 | 329,192,112648,1,0,0:0:0:20: 2946 | 402,192,112648,1,0,0:0:0:60:DeepBassKick.wav 2947 | 256,192,113076,1,0,0:0:0:60:DeepBassKick.wav 2948 | 182,192,113076,1,0,0:0:0:10: 2949 | 329,192,113505,1,0,0:0:0:20: 2950 | 402,192,113505,1,0,0:0:0:60:DeepBassKick.wav 2951 | 109,192,113719,1,0,0:0:0:40: 2952 | 329,192,113933,1,8,0:0:0:50: 2953 | 256,192,113933,1,0,0:0:0:20: 2954 | 36,192,114362,1,0,0:0:0:40: 2955 | 329,192,114576,1,0,0:0:0:60:DeepBassKick.wav 2956 | 402,192,114576,1,0,0:0:0:20: 2957 | 256,192,114790,1,0,0:0:0:60:KickMid.wav 2958 | 182,192,114790,1,0,0:0:0:13: 2959 | 329,192,115219,1,0,0:0:0:60:DeepBassKick.wav 2960 | 402,192,115219,1,0,0:0:0:20: 2961 | 109,192,115433,1,0,0:0:0:40: 2962 | 329,192,115648,1,8,0:0:0:50: 2963 | 256,192,115648,1,0,0:0:0:20: 2964 | 182,192,116076,1,0,0:0:0:20: 2965 | 36,192,116076,1,0,0:0:0:60:DeepBassKick.wav 2966 | 329,192,116719,1,0,0:0:0:20: 2967 | 402,192,116826,1,0,0:0:0:20: 2968 | 475,192,116933,1,0,0:0:0:20: 2969 | 402,192,117148,1,0,0:0:0:20: 2970 | 256,192,117362,1,0,0:0:0:20: 2971 | 36,192,117362,128,0,118219:0:0:0:20: 2972 | 109,192,117362,1,0,0:0:0:0: 2973 | 475,192,117576,1,0,0:0:0:20: 2974 | 475,192,117790,1,0,0:0:0:20: 2975 | 109,192,117790,1,0,0:0:0:0: 2976 | 402,192,118005,1,0,0:0:0:20: 2977 | 329,192,118219,1,0,0:0:0:20: 2978 | 256,192,118219,128,0,119076:0:0:0:0: 2979 | 182,192,118433,1,0,0:0:0:20: 2980 | 109,192,118540,1,0,0:0:0:20: 2981 | 182,192,118648,1,0,0:0:0:20: 2982 | 36,192,118862,1,0,0:0:0:20: 2983 | 182,192,119076,1,0,0:0:0:20: 2984 | 402,192,119076,128,0,119933:0:0:0:0: 2985 | 36,192,119290,1,0,0:0:0:20: 2986 | 182,192,119505,1,0,0:0:0:20: 2987 | 256,192,119719,1,0,0:0:0:20: 2988 | 329,192,119826,1,0,0:0:0:20: 2989 | 109,192,119933,128,0,120790:0:0:0:20: 2990 | 475,192,119933,1,0,0:0:0:0: 2991 | 329,192,120148,1,0,0:0:0:20: 2992 | 182,192,120255,1,0,0:0:0:20: 2993 | 182,192,120362,1,0,0:0:0:20: 2994 | 256,192,120576,1,0,0:0:0:20: 2995 | 402,192,120683,1,0,0:0:0:20: 2996 | 475,192,120790,1,0,0:0:0:20: 2997 | 329,192,120790,128,0,121648:0:0:0:0: 2998 | 182,192,121005,1,0,0:0:0:20: 2999 | 475,192,121219,1,0,0:0:0:20: 3000 | 402,192,121433,1,0,0:0:0:20: 3001 | 256,192,121540,1,0,0:0:0:20: 3002 | 475,192,121648,128,0,122451:0:0:0:20: 3003 | 182,192,121648,1,0,0:0:0:0: 3004 | 256,192,121862,1,0,0:0:0:20: 3005 | 109,192,122076,1,0,0:0:0:20: 3006 | 182,192,122290,1,0,0:0:0:20: 3007 | 256,192,122398,1,0,0:0:0:20: 3008 | 475,192,122505,1,0,0:0:0:60:CymbalFSU.wav 3009 | 402,192,122505,1,0,0:0:0:8: 3010 | 329,192,122505,1,0,0:0:0:60:DeepBassKick.wav 3011 | 36,192,122505,1,0,0:0:0:60:KickMid.wav 3012 | 329,192,122719,1,0,0:0:0:60:KickMid.wav 3013 | 182,192,122719,1,0,0:0:0:8: 3014 | 109,192,122719,1,0,0:0:0:60:DeepBassKick.wav 3015 | 36,192,122719,1,0,0:0:0:60:CymbalFSU.wav 3016 | 256,192,122862,1,0,0:0:0:60:KickMid.wav 3017 | 402,192,122862,1,0,0:0:0:13: 3018 | 475,192,122862,1,0,0:0:0:13: 3019 | 329,192,122933,1,0,0:0:0:10: 3020 | 182,192,122933,1,0,0:0:0:60:KickMid.wav 3021 | 109,192,122933,1,0,0:0:0:10: 3022 | 36,192,123005,1,0,0:0:0:13: 3023 | 256,192,123005,1,0,0:0:0:60:KickMid.wav 3024 | 475,192,123005,1,0,0:0:0:13: 3025 | 402,192,123076,1,0,0:0:0:60:KickMid.wav 3026 | 329,192,123076,1,0,0:0:0:13: 3027 | 182,192,123076,1,0,0:0:0:13: 3028 | 256,192,123148,1,0,0:0:0:60:DeepBassKick.wav 3029 | 109,192,123148,1,0,0:0:0:8: 3030 | 36,192,123148,1,0,0:0:0:60:KickMid.wav 3031 | 475,192,123148,1,0,0:0:0:60:CymbalFSU.wav 3032 | 182,192,123290,1,0,0:0:0:10: 3033 | 402,192,123290,1,0,0:0:0:10: 3034 | 36,192,123290,1,0,0:0:0:60:KickMid.wav 3035 | 256,192,123362,1,0,0:0:0:60:CymbalFSU.wav 3036 | 329,192,123362,1,0,0:0:0:60:KickMid.wav 3037 | 475,192,123362,1,0,0:0:0:8: 3038 | 109,192,123362,1,0,0:0:0:60:DeepBassKick.wav 3039 | 402,192,123505,1,0,0:0:0:10: 3040 | 475,192,123505,1,0,0:0:0:10: 3041 | 182,192,123505,1,0,0:0:0:60:KickMid.wav 3042 | 329,192,123576,1,0,0:0:0:8: 3043 | 256,192,123576,1,0,0:0:0:60:DeepBassKick.wav 3044 | 109,192,123576,1,0,0:0:0:60:KickMid.wav 3045 | 36,192,123576,1,0,0:0:0:60:CymbalFSU.wav 3046 | 182,192,123719,1,0,0:0:0:60:KickMid.wav 3047 | 109,192,123719,1,0,0:0:0:10: 3048 | 329,192,123719,1,0,0:0:0:10: 3049 | 256,192,123790,128,0,124219:0:0:0:60:DeepBassKick.wav 3050 | 402,192,123790,1,0,0:0:0:60:KickMid.wav 3051 | 475,192,123790,1,0,0:0:0:60:CymbalFSU.wav 3052 | 36,192,123790,1,0,0:0:0:8: 3053 | 182,192,124005,128,0,124219:0:0:0:60:DeepBassKick.wav 3054 | 329,192,124005,1,0,0:0:0:8: 3055 | 402,192,124005,1,0,0:0:0:60:KickMid.wav 3056 | 475,192,124005,1,0,0:0:0:8: 3057 | 36,192,124219,1,0,0:0:0:60:KickMid.wav 3058 | 109,192,124219,1,0,0:0:0:6: 3059 | 329,192,124219,1,0,0:0:0:60:CymbalFSU.wav 3060 | 402,192,124219,1,0,0:0:0:6: 3061 | 475,192,124219,1,0,0:0:0:60:DeepBassKick.wav 3062 | 256,192,124326,1,0,0:0:0:60:KickMid.wav 3063 | 182,192,124326,1,0,0:0:0:20: 3064 | 109,192,124433,1,0,0:0:0:60:KickMid.wav 3065 | 36,192,124433,1,0,0:0:0:8: 3066 | 402,192,124433,1,0,0:0:0:8: 3067 | 475,192,124433,1,0,0:0:0:60:DeepBassKick.wav 3068 | 329,192,124540,1,0,0:0:0:60:KickMid.wav 3069 | 256,192,124540,1,0,0:0:0:20: 3070 | 182,192,124648,1,0,0:0:0:8: 3071 | 109,192,124648,1,0,0:0:0:60:DeepBassKick.wav 3072 | 402,192,124648,1,0,0:0:0:60:KickMid.wav 3073 | 475,192,124648,1,0,0:0:0:8: 3074 | 329,192,124755,1,0,0:0:0:60:KickMid.wav 3075 | 36,192,124755,1,0,0:0:0:20: 3076 | 109,192,124808,1,0,0:0:0:20: 3077 | 402,192,124808,1,0,0:0:0:20: 3078 | 329,192,124862,1,0,0:0:0:60:DeepBassKick.wav 3079 | 182,192,124862,1,0,0:0:0:60:KickMid.wav 3080 | 475,192,124862,1,0,0:0:0:8: 3081 | 256,192,124862,1,0,0:0:0:8: 3082 | 36,192,124969,1,0,0:0:0:20: 3083 | 109,192,124969,1,0,0:0:0:60:KickMid.wav 3084 | 182,192,125076,1,0,0:0:0:60:DeepBassKick.wav 3085 | 256,192,125076,1,0,0:0:0:8: 3086 | 402,192,125076,1,0,0:0:0:8: 3087 | 475,192,125076,1,0,0:0:0:60:KickMid.wav 3088 | 329,192,125183,1,0,0:0:0:60:KickMid.wav 3089 | 109,192,125183,1,0,0:0:0:20: 3090 | 182,192,125237,1,0,0:0:0:20: 3091 | 402,192,125237,1,0,0:0:0:20: 3092 | 256,192,125290,1,0,0:0:0:60:KickMid.wav 3093 | 36,192,125290,1,0,0:0:0:8: 3094 | 475,192,125290,1,0,0:0:0:8: 3095 | 109,192,125290,1,0,0:0:0:60:DeepBassKick.wav 3096 | 182,192,125398,1,0,0:0:0:8: 3097 | 109,192,125398,1,0,0:0:0:60:KickMid.wav 3098 | 329,192,125398,1,0,0:0:0:8: 3099 | 402,192,125398,1,0,0:0:0:60:DeepBassKick.wav 3100 | 256,192,125505,1,0,0:0:0:60:DeepBassKick.wav 3101 | 36,192,125505,1,0,0:0:0:60:KickMid.wav 3102 | 402,192,125505,1,0,0:0:0:8: 3103 | 475,192,125505,1,0,0:0:0:8: 3104 | 329,192,125612,1,0,0:0:0:60:KickMid.wav 3105 | 182,192,125612,1,0,0:0:0:20: 3106 | 256,192,125719,1,0,0:0:0:8: 3107 | 109,192,125719,1,0,0:0:0:8: 3108 | 36,192,125719,1,0,0:0:0:60:KickMid.wav 3109 | 475,192,125719,1,0,0:0:0:60:DeepBassKick.wav 3110 | 329,192,125826,1,0,0:0:0:60:KickMid.wav 3111 | 182,192,125826,1,0,0:0:0:20: 3112 | 109,192,125933,1,0,0:0:0:8: 3113 | 402,192,125933,1,0,0:0:0:8: 3114 | 475,192,125933,1,0,0:0:0:60:DeepBassKick.wav 3115 | 36,192,125933,1,0,0:0:0:60:KickMid.wav 3116 | 256,192,126040,1,0,0:0:0:60:KickMid.wav 3117 | 329,192,126040,1,0,0:0:0:20: 3118 | 475,192,126148,1,0,0:0:0:8: 3119 | 109,192,126148,1,0,0:0:0:60:KickMid.wav 3120 | 36,192,126148,1,0,0:0:0:8: 3121 | 402,192,126148,1,0,0:0:0:60:DeepBassKick.wav 3122 | 182,192,126201,1,0,0:0:0:0: 3123 | 256,192,126201,1,0,0:0:0:0: 3124 | 329,192,126255,1,0,0:0:0:20: 3125 | 402,192,126255,1,0,0:0:0:60:KickMid.wav 3126 | 109,192,126308,1,0,0:0:0:20: 3127 | 36,192,126308,1,0,0:0:0:20: 3128 | 256,192,126362,1,0,0:0:0:60:DeepBassKick.wav 3129 | 182,192,126362,1,0,0:0:0:60:KickMid.wav 3130 | 329,192,126362,1,0,0:0:0:8: 3131 | 475,192,126362,1,0,0:0:0:8: 3132 | 109,192,126469,1,0,0:0:0:60:KickMid.wav 3133 | 36,192,126469,1,0,0:0:0:20: 3134 | 36,192,126576,1,0,0:0:0:8: 3135 | 182,192,126576,1,0,0:0:0:8: 3136 | 109,192,126576,1,0,0:0:0:60:DeepBassKick.wav 3137 | 475,192,126576,1,0,0:0:0:60:KickMid.wav 3138 | 402,192,126603,1,0,0:0:0:0: 3139 | 329,192,126630,1,0,0:0:0:0: 3140 | 256,192,126657,1,0,0:0:0:0: 3141 | 36,192,126683,1,0,0:0:0:60:DeepBassKick.wav 3142 | 109,192,126683,1,0,0:0:0:8: 3143 | 182,192,126683,1,0,0:0:0:60:KickMid.wav 3144 | 475,192,126710,1,0,0:0:0:0: 3145 | 402,192,126737,1,0,0:0:0:0: 3146 | 329,192,126764,1,0,0:0:0:0: 3147 | 182,192,126790,1,0,0:0:0:8: 3148 | 109,192,126790,1,0,0:0:0:60:DeepBassKick.wav 3149 | 36,192,126790,1,0,0:0:0:8: 3150 | 256,192,126790,1,0,0:0:0:60:KickMid.wav 3151 | 475,192,126844,1,0,0:0:0:0: 3152 | 402,192,126898,1,0,0:0:0:60:KickMid.wav 3153 | 329,192,126898,1,0,0:0:0:20: 3154 | 256,192,126951,1,0,0:0:0:20: 3155 | 182,192,126951,1,0,0:0:0:20: 3156 | 109,192,127005,1,0,0:0:0:8: 3157 | 36,192,127005,1,0,0:0:0:60:DeepBassKick.wav 3158 | 475,192,127005,1,0,0:0:0:8: 3159 | 402,192,127005,1,0,0:0:0:60:KickMid.wav 3160 | 329,192,127112,1,0,0:0:0:60:DeepBassKick.wav 3161 | 402,192,127112,1,0,0:0:0:8: 3162 | 109,192,127112,1,0,0:0:0:60:KickMid.wav 3163 | 182,192,127112,1,0,0:0:0:8: 3164 | 182,192,127219,1,0,0:0:0:8: 3165 | 402,192,127219,1,0,0:0:0:8: 3166 | 329,192,127219,1,0,0:0:0:60:DeepBassKick.wav 3167 | 109,192,127219,1,0,0:0:0:60:KickMid.wav 3168 | 256,192,127326,1,0,0:0:0:20: 3169 | 475,192,127326,1,0,0:0:0:60:KickMid.wav 3170 | 402,192,127380,1,0,0:0:0:0: 3171 | 182,192,127380,1,0,0:0:0:0: 3172 | 329,192,127433,1,0,0:0:0:8: 3173 | 256,192,127433,1,0,0:0:0:60:KickMid.wav 3174 | 109,192,127433,1,0,0:0:0:60:DeepBassKick.wav 3175 | 36,192,127433,1,0,0:0:0:8: 3176 | 182,192,127540,1,0,0:0:0:8: 3177 | 329,192,127540,1,0,0:0:0:60:KickMid.wav 3178 | 402,192,127540,1,0,0:0:0:8: 3179 | 109,192,127540,1,0,0:0:0:60:DeepBassKick.wav 3180 | 402,192,127648,1,0,0:0:0:60:KickMid.wav 3181 | 182,192,127648,1,0,0:0:0:8: 3182 | 475,192,127648,1,0,0:0:0:8: 3183 | 256,192,127648,1,0,0:0:0:60:DeepBassKick.wav 3184 | 109,192,127755,1,0,0:0:0:20: 3185 | 36,192,127755,1,0,0:0:0:60:KickMid.wav 3186 | 182,192,127808,1,0,0:0:0:40: 3187 | 475,192,127862,1,0,0:0:0:8: 3188 | 256,192,127862,1,0,0:0:0:60:KickMid.wav 3189 | 329,192,127862,1,0,0:0:0:8: 3190 | 402,192,127862,1,0,0:0:0:60:DeepBassKick.wav 3191 | 109,192,127915,1,0,0:0:0:40: 3192 | 36,192,127915,1,0,0:0:0:0: 3193 | 402,192,127969,1,0,0:0:0:20: 3194 | 475,192,127969,1,0,0:0:0:60:KickMid.wav 3195 | 329,192,128076,1,0,0:0:0:60:KickMid.wav 3196 | 256,192,128076,1,0,0:0:0:8: 3197 | 182,192,128076,1,0,0:0:0:8: 3198 | 109,192,128076,1,0,0:0:0:60:DeepBassKick.wav 3199 | 402,192,128183,1,0,0:0:0:60:KickMid.wav 3200 | 475,192,128183,1,0,0:0:0:20: 3201 | 182,192,128290,1,0,0:0:0:60:KickMid.wav 3202 | 256,192,128290,1,0,0:0:0:60:DeepBassKick.wav 3203 | 329,192,128290,1,0,0:0:0:8: 3204 | 402,192,128290,1,0,0:0:0:8: 3205 | 329,192,128398,1,0,0:0:0:60:DeepBassKick.wav 3206 | 182,192,128398,1,0,0:0:0:60:KickMid.wav 3207 | 256,192,128398,1,0,0:0:0:8: 3208 | 109,192,128398,1,0,0:0:0:8: 3209 | 256,192,128505,1,0,0:0:0:8: 3210 | 109,192,128505,1,0,0:0:0:8: 3211 | 182,192,128505,1,0,0:0:0:60:KickMid.wav 3212 | 36,192,128505,1,0,0:0:0:60:DeepBassKick.wav 3213 | 402,192,128612,1,0,0:0:0:20: 3214 | 475,192,128612,1,0,0:0:0:60:KickMid.wav 3215 | 329,192,128719,1,0,0:0:0:8: 3216 | 256,192,128719,1,0,0:0:0:60:DeepBassKick.wav 3217 | 36,192,128719,1,0,0:0:0:8: 3218 | 475,192,128719,1,0,0:0:0:60:KickMid.wav 3219 | 182,192,128773,1,0,0:0:0:40: 3220 | 402,192,128773,1,0,0:0:0:0: 3221 | 329,192,128826,1,0,0:0:0:60:KickMid.wav 3222 | 109,192,128826,1,0,0:0:0:20: 3223 | 256,192,128880,1,0,0:0:0:20: 3224 | 36,192,128880,1,0,0:0:0:20: 3225 | 109,192,128933,1,0,0:0:0:8: 3226 | 475,192,128933,1,0,0:0:0:60:DeepBassKick.wav 3227 | 402,192,128933,1,0,0:0:0:8: 3228 | 182,192,128933,1,0,0:0:0:60:KickMid.wav 3229 | 329,192,128987,1,0,0:0:0:40: 3230 | 256,192,129040,1,0,0:0:0:60:KickMid.wav 3231 | 182,192,129040,1,0,0:0:0:20: 3232 | 182,192,129148,1,0,0:0:0:8: 3233 | 109,192,129148,1,0,0:0:0:60:DeepBassKick.wav 3234 | 36,192,129148,1,0,0:0:0:60:KickMid.wav 3235 | 475,192,129148,128,0,129362:0:0:0:8: 3236 | 36,192,129255,1,0,0:0:0:60:KickMid.wav 3237 | 109,192,129255,1,0,0:0:0:8: 3238 | 182,192,129255,1,0,0:0:0:8: 3239 | 402,192,129255,128,0,129362:0:0:0:60:DeepBassKick.wav 3240 | 329,192,129362,1,0,0:0:0:60:KickMid.wav 3241 | 182,192,129362,1,0,0:0:0:8: 3242 | 109,192,129362,1,0,0:0:0:8: 3243 | 36,192,129362,1,0,0:0:0:60:DeepBassKick.wav 3244 | 256,192,129469,1,0,0:0:0:20: 3245 | 402,192,129469,1,0,0:0:0:60:KickMid.wav 3246 | 329,192,129576,1,0,0:0:0:60:DeepBassKick.wav 3247 | 109,192,129576,1,0,0:0:0:8: 3248 | 36,192,129576,1,0,0:0:0:8: 3249 | 475,192,129576,1,0,0:0:0:60:KickMid.wav 3250 | 256,192,129683,1,0,0:0:0:60:KickMid.wav 3251 | 182,192,129683,1,0,0:0:0:13: 3252 | 36,192,129790,1,0,0:0:0:60:KickMid.wav 3253 | 402,192,129790,1,0,0:0:0:60:DeepBassKick.wav 3254 | 475,192,129790,1,0,0:0:0:8: 3255 | 329,192,129790,1,0,0:0:0:8: 3256 | 256,192,129898,1,0,0:0:0:8: 3257 | 182,192,129898,1,0,0:0:0:60:KickMid.wav 3258 | 329,192,129898,1,0,0:0:0:60:DeepBassKick.wav 3259 | 109,192,129898,1,0,0:0:0:8: 3260 | 256,192,130005,1,0,0:0:0:60:KickMid.wav 3261 | 36,192,130005,1,0,0:0:0:8: 3262 | 402,192,130005,1,0,0:0:0:60:DeepBassKick.wav 3263 | 475,192,130005,1,0,0:0:0:8: 3264 | 329,192,130112,1,0,0:0:0:60:DeepBassKick.wav 3265 | 109,192,130112,1,0,0:0:0:60:KickMid.wav 3266 | 182,192,130112,1,0,0:0:0:8: 3267 | 36,192,130112,1,0,0:0:0:8: 3268 | 475,192,130219,128,0,130433:0:0:0:8: 3269 | 36,192,130219,1,0,0:0:0:60:DeepBassKick.wav 3270 | 182,192,130219,1,0,0:0:0:60:KickMid.wav 3271 | 109,192,130219,1,0,0:0:0:8: 3272 | 329,192,130326,1,0,0:0:0:60:KickMid.wav 3273 | 256,192,130326,1,0,0:0:0:20: 3274 | 36,192,130433,128,0,130648:0:0:0:8: 3275 | 109,192,130433,1,0,0:0:0:60:KickMid.wav 3276 | 329,192,130433,1,0,0:0:0:60:DeepBassKick.wav 3277 | 402,192,130433,1,0,0:0:0:8: 3278 | 182,192,130540,1,0,0:0:0:60:KickMid.wav 3279 | 256,192,130540,1,0,0:0:0:20: 3280 | 475,192,130648,128,0,130862:0:0:0:8: 3281 | 109,192,130648,1,0,0:0:0:8: 3282 | 182,192,130648,1,0,0:0:0:60:DeepBassKick.wav 3283 | 402,192,130648,1,0,0:0:0:60:KickMid.wav 3284 | 329,192,130755,1,0,0:0:0:60:KickMid.wav 3285 | 256,192,130755,1,0,0:0:0:20: 3286 | 402,192,130755,1,0,0:0:0:0: 3287 | 182,192,130862,1,0,0:0:0:60:KickMid.wav 3288 | 109,192,130862,1,0,0:0:0:10: 3289 | 36,192,130862,1,0,0:0:0:60:DeepBassKick.wav 3290 | 329,192,130915,1,0,0:0:0:60:KickMid.wav 3291 | 402,192,130915,1,0,0:0:0:13: 3292 | 475,192,130915,1,0,0:0:0:13: 3293 | 182,192,130969,1,0,0:0:0:60:KickMid.wav 3294 | 109,192,130969,1,0,0:0:0:10: 3295 | 36,192,130969,1,0,0:0:0:10: 3296 | 329,192,131023,1,0,0:0:0:60:KickMid.wav 3297 | 402,192,131023,1,0,0:0:0:13: 3298 | 475,192,131023,1,0,0:0:0:13: 3299 | 256,192,131076,1,0,0:0:0:60:DeepBassKick.wav 3300 | 182,192,131076,1,0,0:0:0:10: 3301 | 109,192,131076,1,0,0:0:0:60:KickMid.wav 3302 | 36,192,131076,1,0,0:0:0:60:CymbalFSU.wav 3303 | 329,192,131183,1,0,0:0:0:60:KickMid.wav 3304 | 475,192,131183,1,0,0:0:0:20: 3305 | 256,192,131290,1,0,0:0:0:60:KickMid.wav 3306 | 109,192,131290,1,0,0:0:0:8: 3307 | 36,192,131290,1,0,0:0:0:8: 3308 | 402,192,131290,1,0,0:0:0:60:DeepBassKick.wav 3309 | 182,192,131398,1,0,0:0:0:60:KickMid.wav 3310 | 329,192,131398,1,0,0:0:0:20: 3311 | 109,192,131505,1,0,0:0:0:8: 3312 | 256,192,131505,1,0,0:0:0:8: 3313 | 402,192,131505,1,0,0:0:0:60:KickMid.wav 3314 | 475,192,131505,1,0,0:0:0:60:DeepBassKick.wav 3315 | 182,192,131612,1,0,0:0:0:20: 3316 | 36,192,131612,1,0,0:0:0:60:KickMid.wav 3317 | 256,192,131719,1,0,0:0:0:8: 3318 | 109,192,131719,1,0,0:0:0:8: 3319 | 329,192,131719,1,0,0:0:0:60:KickMid.wav 3320 | 475,192,131719,1,0,0:0:0:60:DeepBassKick.wav 3321 | 402,192,131826,1,0,0:0:0:60:KickMid.wav 3322 | 182,192,131826,1,0,0:0:0:20: 3323 | 109,192,131933,1,0,0:0:0:60:KickMid.wav 3324 | 36,192,131933,1,0,0:0:0:8: 3325 | 256,192,131933,1,0,0:0:0:60:DeepBassKick.wav 3326 | 329,192,131933,1,0,0:0:0:8: 3327 | 402,192,132040,1,0,0:0:0:20: 3328 | 475,192,132040,1,0,0:0:0:60:KickMid.wav 3329 | 182,192,132148,1,0,0:0:0:10: 3330 | 329,192,132148,1,0,0:0:0:60:KickMid.wav 3331 | 109,192,132148,1,0,0:0:0:10: 3332 | 36,192,132148,1,0,0:0:0:60:DeepBassKick.wav 3333 | 402,192,132219,1,0,0:0:0:60:KickMid.wav 3334 | 475,192,132219,1,0,0:0:0:13: 3335 | 256,192,132219,1,0,0:0:0:60:DeepBassKick.wav 3336 | 329,192,132290,1,0,0:0:0:13: 3337 | 109,192,132290,1,0,0:0:0:60:KickMid.wav 3338 | 36,192,132290,1,0,0:0:0:60:DeepBassKick.wav 3339 | 256,192,132362,1,0,0:0:0:60:DeepBassKick.wav 3340 | 182,192,132362,1,0,0:0:0:8: 3341 | 402,192,132362,1,0,0:0:0:60:KickMid.wav 3342 | 475,192,132362,1,0,0:0:0:8: 3343 | 109,192,132469,1,0,0:0:0:60:KickMid.wav 3344 | 36,192,132469,1,0,0:0:0:20: 3345 | 182,192,132576,1,0,0:0:0:60:KickMid.wav 3346 | 256,192,132576,1,0,0:0:0:8: 3347 | 329,192,132576,1,0,0:0:0:60:DeepBassKick.wav 3348 | 402,192,132576,1,0,0:0:0:8: 3349 | 36,192,132683,1,0,0:0:0:60:KickMid.wav 3350 | 475,192,132683,1,0,0:0:0:20: 3351 | 402,192,132790,1,0,0:0:0:60:KickMid.wav 3352 | 256,192,132790,1,0,0:0:0:60:DeepBassKick.wav 3353 | 182,192,132790,1,0,0:0:0:8: 3354 | 109,192,132790,1,0,0:0:0:8: 3355 | 329,192,132898,1,0,0:0:0:60:KickMid.wav 3356 | 402,192,132951,1,0,0:0:0:20: 3357 | 475,192,132951,1,0,0:0:0:20: 3358 | 182,192,133005,1,0,0:0:0:8: 3359 | 109,192,133005,1,0,0:0:0:8: 3360 | 36,192,133005,1,0,0:0:0:60:KickMid.wav 3361 | 256,192,133005,1,0,0:0:0:60:DeepBassKick.wav 3362 | 475,192,133058,1,0,0:0:0:20: 3363 | 402,192,133058,1,0,0:0:0:20: 3364 | 329,192,133112,1,0,0:0:0:60:KickMid.wav 3365 | 475,192,133219,1,0,0:0:0:8: 3366 | 36,192,133219,1,0,0:0:0:8: 3367 | 256,192,133219,1,0,0:0:0:60:DeepBassKick.wav 3368 | 402,192,133219,1,0,0:0:0:60:KickMid.wav 3369 | 182,192,133273,1,0,0:0:0:40: 3370 | 109,192,133326,1,0,0:0:0:60:KickMid.wav 3371 | 329,192,133326,1,0,0:0:0:20: 3372 | 402,192,133380,1,0,0:0:0:40: 3373 | 475,192,133433,1,0,0:0:0:8: 3374 | 256,192,133433,1,0,0:0:0:8: 3375 | 182,192,133433,1,0,0:0:0:60:DeepBassKick.wav 3376 | 36,192,133433,1,0,0:0:0:60:KickMid.wav 3377 | 109,192,133540,1,0,0:0:0:60:KickMid.wav 3378 | 329,192,133540,1,0,0:0:0:20: 3379 | 475,192,133648,1,0,0:0:0:10: 3380 | 402,192,133648,1,0,0:0:0:60:KickMid.wav 3381 | 329,192,133648,1,0,0:0:0:60:DeepBassKick.wav 3382 | 182,192,133701,1,0,0:0:0:60:KickMid.wav 3383 | 109,192,133701,1,0,0:0:0:13: 3384 | 402,192,133755,1,0,0:0:0:60:KickMid.wav 3385 | 475,192,133755,1,0,0:0:0:13: 3386 | 329,192,133755,1,0,0:0:0:13: 3387 | 182,192,133808,1,0,0:0:0:60:KickMid.wav 3388 | 109,192,133808,1,0,0:0:0:13: 3389 | 256,192,133862,1,0,0:0:0:10: 3390 | 402,192,133862,1,0,0:0:0:60:DeepBassKick.wav 3391 | 475,192,133862,1,0,0:0:0:10: 3392 | 329,192,133862,1,0,0:0:0:60:KickMid.wav 3393 | 182,192,133969,1,0,0:0:0:60:KickMid.wav 3394 | 36,192,134076,1,0,0:0:0:10: 3395 | 109,192,134076,1,0,0:0:0:60:DeepBassKick.wav 3396 | 182,192,134076,1,0,0:0:0:60:KickMid.wav 3397 | 402,192,134130,1,0,0:0:0:60:KickMid.wav 3398 | 329,192,134130,1,0,0:0:0:13: 3399 | 109,192,134183,1,0,0:0:0:13: 3400 | 36,192,134183,1,0,0:0:0:13: 3401 | 182,192,134183,1,0,0:0:0:60:KickMid.wav 3402 | 329,192,134237,1,0,0:0:0:13: 3403 | 402,192,134237,1,0,0:0:0:60:KickMid.wav 3404 | 36,192,134290,1,0,0:0:0:10: 3405 | 182,192,134290,1,0,0:0:0:60:KickMid.wav 3406 | 256,192,134290,1,0,0:0:0:60:DeepBassKick.wav 3407 | 109,192,134290,1,0,0:0:0:10: 3408 | 329,192,134398,1,0,0:0:0:60:KickMid.wav 3409 | 475,192,134505,1,0,0:0:0:8: 3410 | 182,192,134505,1,0,0:0:0:60:DeepBassKick.wav 3411 | 36,192,134505,1,0,0:0:0:60:CymbalFSU.wav 3412 | 402,192,134505,1,0,0:0:0:60:KickMid.wav 3413 | 109,192,134505,1,0,0:0:0:8: 3414 | 329,192,134612,1,0,0:0:0:60:KickMid.wav 3415 | 256,192,134665,1,0,0:0:0:40: 3416 | 182,192,134665,1,0,0:0:0:0: 3417 | 109,192,134719,1,0,0:0:0:60:KickMid.wav 3418 | 36,192,134719,1,0,0:0:0:8: 3419 | 475,192,134719,1,0,0:0:0:60:DeepBassKick.wav 3420 | 402,192,134719,1,0,0:0:0:8: 3421 | 182,192,134826,1,0,0:0:0:60:KickMid.wav 3422 | 256,192,134826,1,0,0:0:0:13: 3423 | 475,192,134933,1,0,0:0:0:10: 3424 | 36,192,134933,1,0,0:0:0:60:KickMid.wav 3425 | 256,192,134933,1,0,0:0:0:60:DeepBassKick.wav 3426 | 402,192,134987,1,0,0:0:0:60:KickMid.wav 3427 | 182,192,134987,1,0,0:0:0:20: 3428 | 109,192,135040,1,0,0:0:0:60:KickMid.wav 3429 | 329,192,135040,1,0,0:0:0:13: 3430 | 36,192,135094,1,0,0:0:0:20: 3431 | 256,192,135094,1,0,0:0:0:60:KickMid.wav 3432 | 402,192,135148,1,0,0:0:0:60:KickMid.wav 3433 | 475,192,135148,1,0,0:0:0:60:DeepBassKick.wav 3434 | 182,192,135148,128,0,135362:0:0:0:8: 3435 | 109,192,135255,1,0,0:0:0:20: 3436 | 329,192,135255,1,0,0:0:0:60:KickMid.wav 3437 | 475,192,135362,1,0,0:0:0:60:CymbalFSU.wav 3438 | 402,192,135362,1,0,0:0:0:60:DeepBassKick.wav 3439 | 256,192,135362,1,0,0:0:0:8: 3440 | 329,192,135362,1,0,0:0:0:8: 3441 | 36,192,135362,1,0,0:0:0:60:KickMid.wav 3442 | 182,192,135469,1,0,0:0:0:60:KickMid.wav 3443 | 329,192,135523,1,0,0:0:0:20: 3444 | 402,192,135523,1,0,0:0:0:20: 3445 | 256,192,135576,1,0,0:0:0:8: 3446 | 109,192,135576,1,0,0:0:0:8: 3447 | 36,192,135576,1,0,0:0:0:60:KickMid.wav 3448 | 182,192,135576,1,0,0:0:0:60:DeepBassKick.wav 3449 | 475,192,135683,1,0,0:0:0:60:KickMid.wav 3450 | 402,192,135683,1,0,0:0:0:13: 3451 | 329,192,135737,1,0,0:0:0:20: 3452 | 256,192,135737,1,0,0:0:0:60:KickMid.wav 3453 | 109,192,135790,1,0,0:0:0:10: 3454 | 36,192,135790,1,0,0:0:0:60:DeepBassKick.wav 3455 | 182,192,135790,1,0,0:0:0:60:KickMid.wav 3456 | 475,192,135844,1,0,0:0:0:20: 3457 | 402,192,135844,1,0,0:0:0:60:KickMid.wav 3458 | 329,192,135898,1,0,0:0:0:13: 3459 | 256,192,135898,1,0,0:0:0:60:KickMid.wav 3460 | 182,192,135951,1,0,0:0:0:20: 3461 | 109,192,135951,1,0,0:0:0:20: 3462 | 475,192,136005,128,0,136219:0:0:0:60:DeepBassKick.wav 3463 | 36,192,136005,1,0,0:0:0:8: 3464 | 402,192,136005,1,0,0:0:0:8: 3465 | 329,192,136005,1,0,0:0:0:60:KickMid.wav 3466 | 182,192,136112,1,0,0:0:0:60:KickMid.wav 3467 | 256,192,136112,1,0,0:0:0:20: 3468 | 182,192,136219,1,0,0:0:0:60:CymbalFSU.wav 3469 | 109,192,136219,1,0,0:0:0:8: 3470 | 36,192,136219,1,0,0:0:0:8: 3471 | 329,192,136219,1,0,0:0:0:60:KickMid.wav 3472 | 402,192,136219,1,0,0:0:0:60:DeepBassKick.wav 3473 | 256,192,136326,1,0,0:0:0:13: 3474 | 475,192,136326,1,0,0:0:0:60:KickMid.wav 3475 | 402,192,136433,1,0,0:0:0:60:KickMid.wav 3476 | 329,192,136433,1,0,0:0:0:8: 3477 | 36,192,136433,1,0,0:0:0:8: 3478 | 109,192,136433,1,0,0:0:0:60:DeepBassKick.wav 3479 | 182,192,136540,1,0,0:0:0:60:KickMid.wav 3480 | 256,192,136540,1,0,0:0:0:13: 3481 | 475,192,136648,1,0,0:0:0:10: 3482 | 36,192,136648,1,0,0:0:0:60:KickMid.wav 3483 | 256,192,136648,1,0,0:0:0:60:DeepBassKick.wav 3484 | 109,192,136701,1,0,0:0:0:60:KickMid.wav 3485 | 329,192,136701,1,0,0:0:0:20: 3486 | 182,192,136755,1,0,0:0:0:60:KickMid.wav 3487 | 402,192,136755,1,0,0:0:0:13: 3488 | 256,192,136808,1,0,0:0:0:20: 3489 | 475,192,136808,1,0,0:0:0:60:KickMid.wav 3490 | 109,192,136862,1,0,0:0:0:60:DeepBassKick.wav 3491 | 329,192,136862,128,0,137076:0:0:0:8: 3492 | 36,192,136862,1,0,0:0:0:60:KickMid.wav 3493 | 402,192,136969,1,0,0:0:0:60:KickMid.wav 3494 | 182,192,136969,1,0,0:0:0:20: 3495 | 182,192,137076,1,0,0:0:0:60:KickMid.wav 3496 | 109,192,137076,1,0,0:0:0:8: 3497 | 36,192,137076,1,0,0:0:0:60:CymbalFSU.wav 3498 | 256,192,137076,1,0,0:0:0:60:DeepBassKick.wav 3499 | 475,192,137076,1,0,0:0:0:8: 3500 | 402,192,137183,1,0,0:0:0:13: 3501 | 329,192,137183,1,0,0:0:0:60:KickMid.wav 3502 | 256,192,137237,1,0,0:0:0:20: 3503 | 182,192,137237,1,0,0:0:0:20: 3504 | 109,192,137290,1,0,0:0:0:60:KickMid.wav 3505 | 36,192,137290,1,0,0:0:0:60:DeepBassKick.wav 3506 | 402,192,137290,1,0,0:0:0:8: 3507 | 475,192,137290,1,0,0:0:0:8: 3508 | 329,192,137398,1,0,0:0:0:13: 3509 | 256,192,137398,1,0,0:0:0:60:KickMid.wav 3510 | 182,192,137451,1,0,0:0:0:20: 3511 | 109,192,137451,1,0,0:0:0:60:KickMid.wav 3512 | 329,192,137505,1,0,0:0:0:60:KickMid.wav 3513 | 402,192,137505,1,0,0:0:0:60:DeepBassKick.wav 3514 | 36,192,137505,1,0,0:0:0:10: 3515 | 256,192,137558,1,0,0:0:0:20: 3516 | 182,192,137558,1,0,0:0:0:60:KickMid.wav 3517 | 402,192,137612,1,0,0:0:0:60:KickMid.wav 3518 | 475,192,137612,1,0,0:0:0:13: 3519 | 329,192,137665,1,0,0:0:0:60:KickMid.wav 3520 | 256,192,137665,1,0,0:0:0:20: 3521 | 182,192,137719,1,0,0:0:0:8: 3522 | 109,192,137719,1,0,0:0:0:60:DeepBassKick.wav 3523 | 36,192,137719,128,0,137933:0:0:0:60:KickMid.wav 3524 | 475,192,137719,1,0,0:0:0:8: 3525 | 256,192,137826,1,0,0:0:0:20: 3526 | 329,192,137826,1,0,0:0:0:60:KickMid.wav 3527 | 475,192,137933,1,0,0:0:0:60:DeepBassKick.wav 3528 | 256,192,137933,1,0,0:0:0:8: 3529 | 329,192,137933,1,0,0:0:0:8: 3530 | 402,192,137933,1,0,0:0:0:60:CymbalFSU.wav 3531 | 182,192,137933,1,0,0:0:0:60:KickMid.wav 3532 | 36,192,137987,1,0,0:0:0:20: 3533 | 109,192,137987,1,0,0:0:0:60:KickMid.wav 3534 | 329,192,138040,1,0,0:0:0:60:KickMid.wav 3535 | 402,192,138040,1,0,0:0:0:13: 3536 | 475,192,138040,1,0,0:0:0:0: 3537 | 256,192,138094,1,0,0:0:0:20: 3538 | 182,192,138094,1,0,0:0:0:60:KickMid.wav 3539 | 109,192,138148,1,0,0:0:0:60:KickMid.wav 3540 | 36,192,138148,1,0,0:0:0:60:DeepBassKick.wav 3541 | 475,192,138148,128,0,138362:0:0:0:8: 3542 | 402,192,138148,1,0,0:0:0:8: 3543 | 329,192,138255,1,0,0:0:0:20: 3544 | 256,192,138255,1,0,0:0:0:60:KickMid.wav 3545 | 329,192,138362,1,0,0:0:0:60:DeepBassKick.wav 3546 | 256,192,138362,1,0,0:0:0:8: 3547 | 36,192,138362,1,0,0:0:0:8: 3548 | 109,192,138362,1,0,0:0:0:60:KickMid.wav 3549 | 182,192,138362,1,0,0:0:0:60:CymbalFSU.wav 3550 | 475,192,138415,1,0,0:0:0:20: 3551 | 402,192,138415,1,0,0:0:0:60:KickMid.wav 3552 | 182,192,138469,1,0,0:0:0:60:KickMid.wav 3553 | 109,192,138469,1,0,0:0:0:13: 3554 | 36,192,138469,1,0,0:0:0:0: 3555 | 256,192,138523,1,0,0:0:0:60:KickMid.wav 3556 | 329,192,138523,1,0,0:0:0:20: 3557 | 36,192,138576,128,0,138790:0:0:0:60:KickMid.wav 3558 | 475,192,138576,1,0,0:0:0:8: 3559 | 402,192,138576,1,0,0:0:0:8: 3560 | 109,192,138576,1,0,0:0:0:60:DeepBassKick.wav 3561 | 256,192,138683,1,0,0:0:0:20: 3562 | 182,192,138683,1,0,0:0:0:60:KickMid.wav 3563 | 256,192,138790,1,0,0:0:0:60:DeepBassKick.wav 3564 | 329,192,138790,1,0,0:0:0:8: 3565 | 475,192,138790,1,0,0:0:0:60:CymbalFSU.wav 3566 | 109,192,138790,1,0,0:0:0:60:KickMid.wav 3567 | 402,192,138790,1,0,0:0:0:8: 3568 | 402,192,138898,1,0,0:0:0:60:KickMid.wav 3569 | 475,192,138898,1,0,0:0:0:0: 3570 | 182,192,139005,1,0,0:0:0:8: 3571 | 109,192,139005,1,0,0:0:0:60:KickMid.wav 3572 | 36,192,139005,1,0,0:0:0:8: 3573 | 256,192,139005,1,0,0:0:0:60:DeepBassKick.wav 3574 | 329,192,139040,1,0,0:0:0:40: 3575 | 402,192,139076,1,0,0:0:0:40: 3576 | 36,192,139112,1,0,0:0:0:20: 3577 | 475,192,139112,1,0,0:0:0:60:KickMid.wav 3578 | 109,192,139112,1,0,0:0:0:0: 3579 | 182,192,139112,1,0,0:0:0:0: 3580 | 329,192,139165,1,0,0:0:0:20: 3581 | 256,192,139165,1,0,0:0:0:20: 3582 | 36,192,139219,1,0,0:0:0:60:KickMid.wav 3583 | 109,192,139219,1,0,0:0:0:60:DeepBassKick.wav 3584 | 402,192,139219,1,0,0:0:0:8: 3585 | 475,192,139219,128,0,139433:0:0:0:8: 3586 | 329,192,139326,1,0,0:0:0:60:KickMid.wav 3587 | 256,192,139326,1,0,0:0:0:0: 3588 | 36,192,139433,1,0,0:0:0:60:DeepBassKick.wav 3589 | 109,192,139433,1,0,0:0:0:60:CymbalFSU.wav 3590 | 182,192,139433,1,0,0:0:0:60:KickMid.wav 3591 | 256,192,139460,1,0,0:0:0:40: 3592 | 329,192,139487,1,0,0:0:0:40: 3593 | 402,192,139487,1,0,0:0:0:40: 3594 | 475,192,139514,1,0,0:0:0:13: 3595 | 36,192,139540,1,0,0:0:0:13: 3596 | 109,192,139540,1,0,0:0:0:13: 3597 | 182,192,139540,1,0,0:0:0:0: 3598 | 256,192,139567,1,0,0:0:0:40: 3599 | 329,192,139594,1,0,0:0:0:40: 3600 | 402,192,139594,1,0,0:0:0:0: 3601 | 475,192,139621,1,0,0:0:0:40: 3602 | 182,192,139648,1,0,0:0:0:60:CymbalFSU.wav 3603 | 109,192,139648,1,0,0:0:0:60:KickMid.wav 3604 | 36,192,139648,128,0,139862:0:0:0:60:DeepBassKick.wav 3605 | 256,192,139862,128,0,140076:0:0:0:40: 3606 | 475,192,139969,1,0,0:0:0:40: 3607 | 402,192,140023,1,0,0:0:0:0: 3608 | 182,192,140076,128,0,140290:0:0:0:10: 3609 | 109,192,140076,1,0,0:0:0:10: 3610 | 36,192,140076,1,0,0:0:0:60:DeepBassKick.wav 3611 | 329,192,140076,1,0,0:0:0:60:KickMid.wav 3612 | 109,192,140290,128,0,140505:0:0:0:40: 3613 | 402,192,140505,128,0,140719:0:0:0:40: 3614 | 475,192,140505,128,0,141362:0:0:0:0: 3615 | 256,192,140612,128,0,140826:0:0:0:40: 3616 | 329,192,140719,128,0,140933:0:0:0:40: 3617 | 182,192,140826,128,0,141040:0:0:0:40: 3618 | 256,192,140933,128,0,141148:0:0:0:40: 3619 | 109,192,141040,128,0,141255:0:0:0:40: 3620 | 182,192,141148,128,0,141362:0:0:0:20: 3621 | 36,192,141255,128,0,141362:0:0:0:40: 3622 | 109,192,141790,1,0,0:0:0:60:KickMid.wav 3623 | 36,192,141790,1,0,0:0:0:60:CymbalFSU.wav 3624 | 402,192,141790,1,0,0:0:0:8: 3625 | 475,192,141790,1,0,0:0:0:60:DeepBassKick.wav 3626 | 256,192,141790,128,0,144790:0:0:0:8: 3627 | 182,192,142219,1,0,0:0:0:40: 3628 | 329,192,142648,1,0,0:0:0:40: 3629 | 182,192,143076,1,0,0:0:0:40: 3630 | 329,192,143505,1,0,0:0:0:40: 3631 | 182,192,143933,1,0,0:0:0:40: 3632 | 329,192,144362,1,0,0:0:0:40: 3633 | 36,192,144790,128,0,144951:0:0:0:0: 3634 | 109,192,144790,128,0,144951:0:0:0:0: 3635 | 182,192,144790,128,0,144951:0:0:0:0: 3636 | 329,192,144790,128,0,144951:0:0:0:0: 3637 | 402,192,144790,128,0,144951:0:0:0:0: 3638 | 475,192,144790,128,0,144951:0:0:0:0: 3639 | -------------------------------------------------------------------------------- /omppc.lua: -------------------------------------------------------------------------------- 1 | local Class = {} 2 | 3 | Class.new = function(self, object) 4 | object = object or {} 5 | 6 | setmetatable(object, self) 7 | self.__index = self 8 | 9 | return object 10 | end 11 | 12 | local Mods = Class:new() 13 | 14 | Mods.scoreRate = 1 15 | Mods.timeRate = 1 16 | Mods.odRate = 1 17 | 18 | Mods.parse = function(self, mods) 19 | self.modsData = mods 20 | if tonumber(mods) then 21 | self:parseNumber(tonumber(mods)) 22 | elseif type(mods) == "string" then 23 | self:parseString(mods) 24 | end 25 | return self 26 | end 27 | 28 | Mods.parseString = function(self, modsString) 29 | if modsString:find("EZ") then 30 | self.Easy = true 31 | self.scoreRate = self.scoreRate * 0.5 32 | self.odRate = 0.5 33 | end 34 | if modsString:find("NF") then 35 | self.NoFail = true 36 | self.scoreRate = self.scoreRate * 0.5 37 | end 38 | if modsString:find("HT") then 39 | self.HalfTime = true 40 | self.scoreRate = self.scoreRate * 0.5 41 | self.timeRate = 3/4 42 | end 43 | if modsString:find("DT") then 44 | self.DoubleTime = true 45 | self.timeRate = 3/2 46 | end 47 | end 48 | 49 | Mods.parseNumber = function(self, modsNumber) 50 | if bit.band(modsNumber, 2) == 2 then 51 | self.Easy = true 52 | self.scoreRate = self.scoreRate * 0.5 53 | self.odRate = 0.5 54 | end 55 | if bit.band(modsNumber, 1) == 1 then 56 | self.NoFail = true 57 | self.scoreRate = self.scoreRate * 0.5 58 | end 59 | if bit.band(modsNumber, 256) == 256 then 60 | self.HalfTime = true 61 | self.scoreRate = self.scoreRate * 0.5 62 | self.timeRate = 3/4 63 | end 64 | if bit.band(modsNumber, 64) == 64 then 65 | self.DoubleTime = true 66 | self.timeRate = 3/2 67 | end 68 | end 69 | 70 | local Note = Class:new() 71 | 72 | Note.parse = function(self, line, keymode) 73 | local x, startTime = line:match("^(%d-),%d-,(%d-),.+$") 74 | local endTime = line:match("^.+,(%d-):.+:.+:.+:.+:.-$") 75 | 76 | self.key = math.ceil(x / 512 * keymode) 77 | self.keymode = keymode 78 | 79 | self.startTime = tonumber(startTime) 80 | self.endTime = tonumber(endTime) or self.startTime 81 | 82 | self.heldUntil = {} 83 | self.individualStrains = {} 84 | 85 | for i = 1, keymode do 86 | self.individualStrains[i] = 0 87 | self.heldUntil[i] = 0 88 | end 89 | 90 | return self 91 | end 92 | 93 | Note.INDIVIDUAL_DECAY_BASE = 0.125 94 | Note.OVERALL_DECAY_BASE = 0.30 95 | 96 | Note.overallStrain = 1 97 | 98 | Note.getIndividualStrain = function(self) 99 | return self.individualStrains[self.key] 100 | end 101 | 102 | Note.setIndividualStrain = function(self, value) 103 | self.individualStrains[self.key] = value 104 | end 105 | 106 | Note.calculateStrains = function(self, pNote, timeRate) 107 | local addition = 1 108 | local timeElapsed = (self.startTime - pNote.startTime) / timeRate 109 | local individualDecay = math.pow(self.INDIVIDUAL_DECAY_BASE, timeElapsed / 1000) 110 | local overallDecay = math.pow(self.OVERALL_DECAY_BASE, timeElapsed / 1000) 111 | 112 | local holdFactor = 1 113 | local holdAddition = 0 114 | 115 | for i = 1, self.keymode do 116 | self.heldUntil[i] = pNote.heldUntil[i] 117 | 118 | if self.startTime < self.heldUntil[i] and self.endTime > self.heldUntil[i] then 119 | holdAddition = 1 120 | end 121 | if self.endTime == self.heldUntil[i] then 122 | holdAddition = 0 123 | end 124 | if self.heldUntil[i] > self.endTime then 125 | holdFactor = 1.25 126 | end 127 | end 128 | self.heldUntil[self.key] = self.endTime 129 | 130 | for i = 1, self.keymode do 131 | self.individualStrains[i] = pNote.individualStrains[i] * individualDecay 132 | end 133 | self:setIndividualStrain(self:getIndividualStrain() + 2 * holdFactor) 134 | 135 | self.overallStrain = pNote.overallStrain * overallDecay + (addition + holdAddition) * holdFactor 136 | end 137 | 138 | local Beatmap = Class:new() 139 | 140 | Beatmap.parse = function(self, beatmapString) 141 | self.noteData = {} 142 | 143 | local blockName 144 | for line in string.gmatch(beatmapString .. "\n", "(.-)\n") do 145 | line = line:match("^%s*(.-)%s*$") 146 | if line:find("^%[") then 147 | blockName = line:match("^%[(.*)%]") 148 | elseif blockName == "General" or blockName == "Difficulty" then 149 | if line:match("^Mode:") then 150 | self.mode = tonumber(line:match(":(%d+)$")) 151 | elseif line:match("^OverallDifficulty") then 152 | self.od = tonumber(line:match(":(.+)$")) 153 | elseif line:match("^CircleSize") then 154 | self.keymode = tonumber(line:match(":(.+)$")) 155 | end 156 | elseif blockName == "HitObjects" and not line:match("^%s*$") then 157 | table.insert(self.noteData, Note:new():parse(line, self.keymode)) 158 | end 159 | end 160 | table.sort(self.noteData, function(a, b) return a.startTime < b.startTime end) 161 | self.noteCount = #self.noteData 162 | 163 | return self 164 | end 165 | 166 | Beatmap.getOD = function(self) 167 | return self.od * self.mods.odRate 168 | end 169 | 170 | Beatmap.STAR_SCALING_FACTOR = 0.018 171 | 172 | Beatmap.calculateStarRate = function(self) 173 | self:calculateStrainValues() 174 | self.starRate = self:calculateDifficulty() * self.STAR_SCALING_FACTOR 175 | end 176 | 177 | Beatmap.getStarRate = function(self) 178 | return self.starRate 179 | end 180 | 181 | Beatmap.calculateStrainValues = function(self) 182 | local cNote = self.noteData[1] 183 | local nNote 184 | 185 | for i = 2, #self.noteData do 186 | nNote = self.noteData[i] 187 | nNote:calculateStrains(cNote, self.mods.timeRate) 188 | cNote = nNote 189 | end 190 | end 191 | 192 | Beatmap.STRAIN_STEP = 400 193 | Beatmap.DECAY_WEIGHT = 0.9 194 | 195 | Beatmap.calculateDifficulty = function(self) 196 | local actualStrainStep = self.STRAIN_STEP * self.mods.timeRate 197 | 198 | local highestStrains = {} 199 | local intervalEndTime = actualStrainStep 200 | local maximumStrain = 0 201 | 202 | local pNote 203 | for _, note in ipairs(self.noteData) do 204 | while note.startTime > intervalEndTime do 205 | table.insert(highestStrains, maximumStrain) 206 | if not pNote then 207 | maximumStrain = 0 208 | else 209 | local individualDecay = math.pow(note.INDIVIDUAL_DECAY_BASE, (intervalEndTime - pNote.startTime) / 1000) 210 | local overallDecay = math.pow(note.OVERALL_DECAY_BASE, (intervalEndTime - pNote.startTime) / 1000) 211 | maximumStrain = pNote:getIndividualStrain() * individualDecay + pNote.overallStrain * overallDecay 212 | end 213 | 214 | intervalEndTime = intervalEndTime + actualStrainStep 215 | end 216 | 217 | local strain = note:getIndividualStrain() + note.overallStrain 218 | if strain > maximumStrain then 219 | maximumStrain = strain 220 | end 221 | 222 | pNote = note 223 | end 224 | 225 | local difficulty = 0 226 | local weight = 1 227 | table.sort(highestStrains, function(a, b) return a > b end) 228 | 229 | for _, strain in ipairs(highestStrains) do 230 | difficulty = difficulty + weight * strain 231 | weight = weight * self.DECAY_WEIGHT 232 | end 233 | 234 | return difficulty 235 | end 236 | 237 | local Calculator = Class:new() 238 | 239 | Calculator.computeTotalValue = function(self) 240 | local multiplier = 0.8 241 | 242 | if self.mods.NoFail then 243 | multiplier = multiplier * 0.90 244 | end 245 | if self.mods.Easy then 246 | multiplier = multiplier * 0.50 247 | end 248 | 249 | self.realScore = self.score / self.mods.scoreRate 250 | self:computeStrainValue() 251 | self:computeAccValue() 252 | 253 | self.totalValue = math.pow(math.pow(self.strainValue, 1.1) + math.pow(self.accValue, 1.1), 1 / 1.1) * multiplier 254 | end 255 | 256 | Calculator.computeStrainValue = function(self) 257 | if self.mods.scoreRate <= 0 then 258 | self.strainValue = 0 259 | return 260 | end 261 | 262 | local score = self.realScore 263 | 264 | self.strainValue = math.pow(5 * math.max(1, self.beatmap:getStarRate() / 0.2) - 4, 2.2) / 135 265 | self.strainValue = self.strainValue * (1 + 0.1 * math.min(1, self.beatmap.noteCount / 1500)) 266 | 267 | if score <= 500000 then 268 | self.strainValue = 0 269 | elseif score <= 600000 then 270 | self.strainValue = self.strainValue * ((score - 500000) / 100000 * 0.3) 271 | elseif score <= 700000 then 272 | self.strainValue = self.strainValue * (0.3 + (score - 600000) / 100000 * 0.25) 273 | elseif score <= 800000 then 274 | self.strainValue = self.strainValue * (0.55 + (score - 700000) / 100000 * 0.20) 275 | elseif score <= 900000 then 276 | self.strainValue = self.strainValue * (0.75 + (score - 800000) / 100000 * 0.15) 277 | else 278 | self.strainValue = self.strainValue * (0.9 + (score - 900000) / 100000 * 0.1) 279 | end 280 | end 281 | 282 | Calculator.computeAccValue = function(self) 283 | local hitWindow300 = 34 + 3 * (math.min(10, math.max(0, 10 - self.beatmap.od))) 284 | if hitWindow300 <= 0 then 285 | self.accValue = 0 286 | return 287 | end 288 | 289 | self.accValue = math.max(0, 0.2 - ((hitWindow300 - 34) * 0.006667)) * self.strainValue * math.pow((math.max(0, self.realScore - 960000) / 40000), 1.1) 290 | end 291 | 292 | local PlayData = Class:new() 293 | 294 | PlayData.process = function(self) 295 | self.mods = Mods:new():parse(self.modsData) 296 | 297 | self.beatmap = Beatmap:new() 298 | self.beatmap.mods = self.mods 299 | self.beatmap:parse(self.beatmapString) 300 | self.beatmap:calculateStarRate() 301 | 302 | self.calculator = Calculator:new() 303 | self.calculator.beatmap = self.beatmap 304 | self.calculator.score = self.score 305 | self.calculator.mods = self.mods 306 | self.calculator:computeTotalValue() 307 | end 308 | 309 | PlayData.getData = function(self) 310 | return { 311 | modsData = self.mods.modsData, 312 | scoreRate = self.mods.scoreRate, 313 | timeRate = self.mods.timeRate, 314 | odRate = self.mods.odRate, 315 | starRate = self.beatmap.starRate, 316 | noteCount = self.beatmap.noteCount, 317 | scaledOD = self.beatmap:getOD(), 318 | od = self.beatmap.od, 319 | score = self.score, 320 | realScore = self.calculator.realScore, 321 | strainValue = self.calculator.strainValue, 322 | accValue = self.calculator.accValue, 323 | pp = self.calculator.totalValue 324 | } 325 | end 326 | 327 | PlayData.getJSON = function(self) 328 | local data = self:getData() 329 | 330 | local out = {} 331 | out[1] = "{" 332 | for key, value in pairs(data) do 333 | out[#out + 1] = "\"" .. key .. "\":" 334 | if type(value) == "number" then 335 | out[#out + 1] = value .. "," 336 | elseif type(value) == "string" then 337 | out[#out + 1] = "\"" .. value .. "\"," 338 | end 339 | end 340 | out[#out] = out[#out]:sub(1, -2) .. "}" 341 | 342 | return table.concat(out) 343 | end 344 | 345 | if arg and arg[0] and arg[0]:find("omppc%.lua$") then 346 | local input = {} 347 | 348 | for i = 1, #arg do 349 | local cArg = arg[i] 350 | local nArg = arg[i + 1] 351 | 352 | if cArg:match("^%-") then 353 | local key = cArg:match("^%-(.*)$") 354 | 355 | if key == "b" then 356 | input.path = nArg 357 | elseif key == "m" then 358 | input.mods = nArg 359 | elseif key == "s" then 360 | input.score = tonumber(nArg) 361 | elseif key == "v" then 362 | input.verbose = true 363 | elseif key == "j" then 364 | input.json = true 365 | end 366 | 367 | i = i + 2 368 | end 369 | end 370 | 371 | local file = io.open(input.path, "r") 372 | 373 | local playData = PlayData:new() 374 | playData.modsData = input.mods 375 | playData.beatmapString = file:read("*a") 376 | playData.score = input.score 377 | playData:process() 378 | 379 | file:close() 380 | 381 | local data = playData:getData() 382 | 383 | if input.verbose then 384 | print( 385 | ([[ 386 | Mods info 387 | mods %8s 388 | scoreRate %8.2f 389 | timeRate %8.2f 390 | odRate %8.2f 391 | Beatmap info: 392 | starRate %8.2f 393 | noteCount %8d 394 | scaled OD %8.1f 395 | real OD %8.1f 396 | Play info 397 | scaled score %8d 398 | real score %8d 399 | strainValue %8.2f 400 | accValue %8.2f 401 | PP %8.2f 402 | ]] 403 | ):format( 404 | data.modsData, 405 | data.scoreRate, 406 | data.timeRate, 407 | data.odRate, 408 | data.starRate, 409 | data.noteCount, 410 | data.scaledOD, 411 | data.od, 412 | data.score, 413 | data.realScore, 414 | data.strainValue, 415 | data.accValue, 416 | data.pp 417 | ) 418 | ) 419 | elseif input.json then 420 | print(playData:getJSON()) 421 | else 422 | print(data.pp) 423 | end 424 | 425 | return 426 | end 427 | 428 | return { 429 | Class = Class, 430 | Mods = Mods, 431 | Note = Note, 432 | PlayData = PlayData, 433 | Beatmap = Beatmap, 434 | Calculator = Calculator 435 | } 436 | -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- 1 | luajit omppc.lua -b "beatmap.osu" -s 855970 -m DT 2 | luajit omppc.lua -b "beatmap.osu" -s 855970 -m 64 -v 3 | luajit omppc.lua -b "beatmap.osu" -s 855970 -m DT -j 4 | luajit test.lua 5 | pause -------------------------------------------------------------------------------- /test.lua: -------------------------------------------------------------------------------- 1 | local omppc = require("omppc") 2 | 3 | local file = io.open("beatmap.osu", "r") 4 | 5 | local playData = omppc.PlayData:new() 6 | playData.modsData = "DT" 7 | playData.beatmapString = file:read("*all") 8 | playData.score = 855970 9 | playData:process() 10 | 11 | file:close() 12 | 13 | local data = playData:getData() 14 | 15 | print(data.pp) 16 | assert(math.floor(data.pp) == 1095) 17 | print("test complete") 18 | --------------------------------------------------------------------------------